Replace "struct continuation" mechanism by something more extensible
[external/binutils.git] / gdb / ChangeLog
1 2015-09-09  Pedro Alves  <palves@redhat.com>
2
3         * Makefile.in (COMMON_OBS): Add thread-fsm.o.
4         * breakpoint.c (handle_jit_event): Print debug output.
5         (bpstat_what): Split event callback handling to ...
6         (bpstat_run_callbacks): ... this new function.
7         (momentary_bkpt_print_it): No longer handle bp_finish here.
8         * breakpoint.h (bpstat_run_callbacks): Declare.
9         * gdbthread.h (struct thread_info) <step_multi>: Delete field.
10         <thread_fsm>: New field.
11         (thread_cancel_execution_command): Declare.
12         * infcmd.c: Include thread-fsm.h.
13         (struct step_command_fsm): New.
14         (step_command_fsm_ops): New global.
15         (new_step_command_fsm, step_command_fsm_prepare): New functions.
16         (step_1): Adjust to use step_command_fsm_prepare and
17         prepare_one_step.
18         (struct step_1_continuation_args): Delete.
19         (step_1_continuation): Delete.
20         (step_command_fsm_should_stop): New function.
21         (step_once): Delete.
22         (step_command_fsm_clean_up, step_command_fsm_async_reply_reason)
23         (prepare_one_step): New function, based on step_once.
24         (until_next_command): Remove step_multi reference.
25         (struct return_value_info): New.
26         (print_return_value): Rename to ...
27         (print_return_value_1): ... this.  New struct return_value_info
28         parameter.  Adjust.
29         (print_return_value): Reimplement as wrapper around
30         print_return_value_1.
31         (struct finish_command_fsm): New.
32         (finish_command_continuation): Delete.
33         (finish_command_fsm_ops): New global.
34         (new_finish_command_fsm, finish_command_fsm_should_stop): New
35         functions.
36         (finish_command_fsm_clean_up, finish_command_fsm_return_value):
37         New.
38         (finish_command_continuation_free_arg): Delete.
39         (finish_command_fsm_async_reply_reason): New.
40         (finish_backward, finish_forward): Change symbol parameter to a
41         finish_command_fsm.  Adjust.
42         (finish_command): Create a finish_command_fsm.  Adjust.
43         * infrun.c: Include "thread-fsm.h".
44         (clear_proceed_status_thread): Delete the thread's FSM.
45         (infrun_thread_stop_requested_callback): Cancel the thread's
46         execution command.
47         (clean_up_just_stopped_threads_fsms): New function.
48         (fetch_inferior_event): Handle the event_thread's should_stop
49         method saying the command isn't done yet.
50         (process_event_stop_test): Run breakpoint callbacks here.
51         (print_stop_event): Rename to ...
52         (print_stop_location): ... this.
53         (restore_current_uiout_cleanup): New function.
54         (print_stop_event): Reimplement.
55         (normal_stop): No longer notify the end_stepping_range observers
56         here handle "step N" nor "finish" here.  No longer call
57         print_stop_event here.
58         * infrun.h (struct return_value_info): Forward declare.
59         (print_return_value): Declare.
60         (print_stop_event): Change prototype.
61         * thread-fsm.c: New file.
62         * thread-fsm.h: New file.
63         * thread.c: Include "thread-fsm.h".
64         (thread_cancel_execution_command): New function.
65         (clear_thread_inferior_resources): Call it.
66         * cli/cli-interp.c (cli_on_normal_stop): New function.
67         (cli_interpreter_init): Install cli_on_normal_stop as normal_stop
68         observer.
69         * mi/mi-interp.c: Include "thread-fsm.h".
70         (restore_current_uiout_cleanup): Delete.
71         (mi_on_normal_stop): If the thread has an FSM associated, and it
72         finished, ask it for the async-reply-reason to print.  Always call
73         print_stop_event here, regardless of the top-level interpreter.
74         Check bpstat_what to tell whether an asynchronous breakpoint hit
75         triggered.
76         * tui/tui-interp.c (tui_on_normal_stop): New function.
77         (tui_init): Install tui_on_normal_stop as normal_stop observer.
78
79 2015-09-09  Pedro Alves  <palves@redhat.com>
80
81         * breakpoint.c (bpstat_do_actions_1, until_break_command): Don't
82         check whether the target can async.
83         * inf-loop.c (inferior_event_handler): Only call target_async if
84         the target can async.
85         * infcall.c: Include top.h and interps.h.
86         (run_inferior_call): For the interpreter to sync mode while
87         running the infcall.  Call wait_sync_command_done instead of
88         wait_for_inferior plus normal_stop.
89         * infcmd.c (prepare_execution_command): Don't check whether the
90         target can async when running in the foreground.
91         (step_1): Delete synchronous case handling.
92         (step_once): Always install a continuation, even in sync mode.
93         (until_next_command, finish_forward): Don't check whether the
94         target can async.
95         (attach_command_post_wait, notice_new_inferior): Always install a
96         continuation, even in sync mode.
97         * infrun.c (mark_infrun_async_event_handler): New function.
98         (proceed): In sync mode, mark infrun's event source instead of
99         waiting for events here.
100         (fetch_inferior_event): If the target can't async, do a blocking
101         wait.
102         (prepare_to_wait): In sync mode, mark infrun's event source.
103         (infrun_async_inferior_event_handler): No longer bail out if the
104         target can't async.
105         * infrun.h (mark_infrun_async_event_handler): New declaration.
106         * linux-nat.c (linux_nat_wait_1): Remove calls to
107         set_sigint_trap/clear_sigint_trap.
108         (linux_nat_terminal_inferior): No longer check whether the target
109         can async.
110         * mi/mi-interp.c (mi_on_sync_execution_done): Update and simplify
111         comment.
112         (mi_execute_command_input_handler): No longer check whether the
113         target is async.  Update and simplify comment.
114         * target.c (default_target_wait): New function.
115         * target.h (struct target_ops) <to_wait>: Now defaults to
116         default_target_wait.
117         (default_target_wait): Declare.
118         * top.c (wait_sync_command_done): New function, factored out from
119         ...
120         (maybe_wait_sync_command_done): ... this.
121         * top.h (wait_sync_command_done): Declare.
122         * target-delegates.c: Regenerate.
123
124 2015-09-09  Markus Metzger  <markus.t.metzger@intel.com>
125
126         * nat/linux-btrace.h (struct btrace_target_info) <ptr_bits>: Remove.
127         * nat/linux-btrace.c: Include filestuff.h and inttypes.h.
128         Remove include of sys/utsname.h.
129         (linux_determine_kernel_ptr_bits): Remove.
130         (linux_determine_kernel_start): New.
131         (perf_event_is_kernel_addr): Remove tinfo argument.  Update users.
132         Update check.
133         (perf_event_skip_bts_record): Remove tinfo argument.  Update users.
134         (linux_enable_bts, linux_enable_pt): Remove tinfo->ptr_bits
135         initialization.
136         * x86-linux-nat.c (x86_linux_enable_btrace): Remove ptr_bits
137         assignment.
138
139 2015-09-07  Pedro Alves  <palves@redhat.com>
140
141         * guile/guile-internal.h (as_a_scm_t_subr): New.
142         * guile/guile.c (misc_guile_functions): Use it.
143         * guile/scm-arch.c (arch_functions): Use it.
144         * guile/scm-block.c (block_functions, gdbscm_initialize_blocks):
145         Use it.
146         * guile/scm-breakpoint.c (breakpoint_functions): Use it.
147         * guile/scm-cmd.c (command_functions): Use it.
148         * guile/scm-disasm.c (disasm_functions): Use it.
149         * guile/scm-exception.c (exception_functions)
150         (private_exception_functions): Use it.
151         * guile/scm-frame.c (frame_functions)
152         * guile/scm-gsmob.c (gsmob_functions): Use it.
153         * guile/scm-iterator.c (iterator_functions): Use it.
154         * guile/scm-lazy-string.c (lazy_string_functions): Use it.
155         * guile/scm-math.c (math_functions): Use it.
156         * guile/scm-objfile.c (objfile_functions): Use it.
157         * guile/scm-param.c (parameter_functions): Use it.
158         * guile/scm-ports.c (port_functions, private_port_functions): Use
159         it.
160         * guile/scm-pretty-print.c (pretty_printer_functions): Use it.
161         * guile/scm-progspace.c (pspace_functions): Use it.
162         * guile/scm-string.c (string_functions): Use it.
163         * guile/scm-symbol.c (symbol_functions): Use it.
164         * guile/scm-symtab.c (symtab_functions): Use it.
165         * guile/scm-type.c (type_functions, gdbscm_initialize_types): Use
166         it.
167         * guile/scm-value.c (value_functions): Use it.
168
169 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
170
171         * tui/tui-data.c (win_with_focus): Remove cast of NULL pointer.
172         (tui_next_win): Likewise.
173         (tui_prev_win): Likewise.
174         (tui_partial_win_by_name): Likewise.
175         (tui_init_generic_part): Likewise.
176         (init_content_element): Likewise.
177         (tui_del_window): Likewise.
178         (tui_free_window): Likewise.
179         (tui_del_data_windows): Likewise.
180         (tui_free_data_content): Likewise.
181         * tui/tui-layout.c (make_source_or_disasm_window): Likewise.
182         * tui/tui-regs.c (tui_show_register_group): Likewise.
183         * tui/tui-win.c (tui_resize_all): Likewise.
184         (tui_set_focus): Likewise.
185         (tui_set_win_height): Likewise.
186         (make_invisible_and_set_new_height): Likewise.
187         * tui/tui-windata.c (tui_delete_data_content_windows): Likewise.
188         * tui/tui-wingeneral.c (make_visible): Likewise.
189
190 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
191
192         * cli/cli-decode.c (find_cmd): Remove cast of NULL pointer.
193
194 2015-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
195
196         * c-valprint.c (print_unpacked_pointer): Remove cast of NULL
197         pointer.
198         * dbxread.c (dbx_end_psymtab): Likewise.
199         * gnu-nat.c (gnu_write_inferior): Likewise.
200         * mdebugread.c (cross_ref): Likewise.
201         * p-valprint.c (pascal_val_print): Likewise.
202         * xcoffread.c (xcoff_end_psymtab): Likewise.
203
204 2015-09-04  Yao Qi  <yao.qi@linaro.org>
205
206         * NEWS: Mention the aarch64 multi-arch debugging support.
207
208 2015-09-03  Pierre-Marie de Rodat  <derodat@adacore.com>
209
210         * ada-lang.c (ada_language_arch_info): Create a TYPE_CODE_CHAR
211         type instead of a TYPE_CODE_INT one for the string_char_type
212         and the ada_primitive_type_char types.
213
214 2015-09-03  Yao Qi  <yao.qi@linaro.org>
215
216         * aarch64-linux-nat.c (aarch64_linux_region_ok_for_hw_watchpoint):
217         Move code to aarch64_linux_region_ok_for_watchpoint.  Call
218         aarch64_linux_region_ok_for_watchpoint.
219         * nat/aarch64-linux-hw-point.c (aarch64_linux_region_ok_for_watchpoint):
220         New function.
221         * nat/aarch64-linux-hw-point.h (aarch64_linux_region_ok_for_watchpoint):
222         Declare it.
223
224 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
225
226         * gdb_obstack.h (obstack_strdup): Declare.
227         * gdb_obstack.c (obstack_strdup): Define.
228         * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
229         * gdbarch.c: Regenerate.
230         * gdbarch.h: Regenerate.
231         * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
232
233 2015-09-02  Patrick Palka  <patrick@parcs.ath.cx>
234
235         * gdbtypes.c (copy_type_recursive): Update documentation.
236
237 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
238
239         * solib-svr4.c (solib_event_probe_action): Initialize 'probe_argc'
240         as zero.
241
242 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
243
244         * solib-svr4.c (svr4_handle_solib_event): Initialize 'val' as NULL
245
246 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
247
248         * solib-svr4.c (solib_event_probe_action): Call
249         get_probe_argument_count using TRY...CATCH.
250         (svr4_handle_solib_event): Likewise, for evaluate_probe_argument.
251
252 2015-09-01  Sergio Durigan Junior  <sergiodj@redhat.com>
253
254         * probe.h (struct probe_ops) <get_probe_argument_count,
255         evaluate_probe_argument, enable_probe, disable_probe>: Mention in
256         the comment that the function can throw an exception.
257         (get_probe_argument_count): Likewise.
258         (evaluate_probe_argument): Likewise.
259         * stap-probe.c (stap_get_opcode): Call error instead of
260         internal_error.
261         (stap_get_expected_argument_type): Likewise.  Add argument
262         'probe'.  Improve error message by mentioning the probe's name.
263         (stap_parse_probe_arguments): Adjust call to
264         stap_get_expected_argument_type.
265         (stap_get_arg): Add comment.  Assert that 'probe->args_parsed' is
266         not zero.  Call internal_error if GDB requests an argument but the
267         probe has no arguments.
268
269 2015-09-01  Pierre-Marie de Rodat  <derodat@adacore.com>
270
271         * ada-lang.c (ada_resolve_function): Do not ask the user what
272         match to use when in completion mode.
273
274 2015-08-31  Andrew Burgess  <andrew.burgess@embecosm.com>
275
276         * tui/tui-data.c (tui_win_name): Make local variable const, remove
277         cast of NULL.
278
279 2015-08-31  Max Filippov  <jcmvbkbc@gmail.com>
280
281         * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Initialize
282         call_abi using XSHAL_ABI macro.
283
284 2015-08-29  Doug Evans  <xdje42@gmail.com>
285
286         * symtab.h (struct symbol): Tweak comment.
287
288 2015-08-29  Patrick Palka  <patrick@parcs.ath.cx>
289
290         * gdbtypes.c (alloc_type_arch): Allocate the type on the given
291         gdbarch obstack instead of on the heap.  Update commentary
292         accordingly.
293
294 2015-08-28  Joel Brobecker  <brobecker@adacore.com>
295
296         GDB 7.10 released.
297
298 2015-08-28  Simon Marchi  <simon.marchi@ericsson.com>
299
300         * NEWS: Update entry about non-8-bits addressable memory.
301
302 2015-08-28  Ulrich Weigand  <uweigand@de.ibm.com>
303
304         Revert:
305         2014-11-06  Doug Evans  <xdje42@gmail.com>
306         * solib.c (solib_global_lookup): Fetch arch from objfile,
307         not target_gdbarch.
308
309 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
310
311         * ppc-linux-tdep.c (ppc_linux_spe_context_lookup): Do not
312         attempt to relocate a TLS variable offset.
313
314 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
315
316         * spu-multiarch.c (parse_spufs_run): Bail out if inferior is not
317         registered yet.  Set inferior_ptid while calling target_read_memory.
318
319 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
320
321         * nat/linux-ptrace.h (GDB_ARCH_TRAP_BRKPT): Replace by ...
322         (GDB_ARCH_IS_TRAP_BRKPT): ... this.  Add __powerpc__ case.
323         * linux-nat.c (check_stopped_by_breakpoint): Use
324         GDB_ARCH_IS_TRAP_BRKPT instead of GDB_ARCH_TRAP_BRKPT.
325
326 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
327
328         * linux-thread-db.c (thread_db_get_thread_local_address): If the
329         thread was not yet discovered, use thread_from_lwp instead of
330         calling thread_db_find_new_threads_1.
331
332 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
333
334         * m88k-tdep.c (m88k_analyze_prologue): Fix inverted allocation
335         statements.
336
337 2015-08-27  Simon Marchi  <simon.marchi@ericsson.com>
338
339         * NEWS: Document support for non-8-bits addressable memory.
340
341 2015-08-27  Pedro Alves  <palves@redhat.com>
342
343         * configure.ac: Remove AC_TYPE_SIGNAL call.
344         * configure, config.in: Regenerate.
345
346 2015-08-27  Pedro Alves  <palves@redhat.com>
347
348         * cp-support.c (gdb_demangle): Use sighandler_t.  Remove cast.
349         * extension-priv.h: Include signal.h.
350         (struct signal_handler) <handler>: Change type to sighandler_t.
351         * extension.c (install_gdb_sigint_handler): Use sighandler_t.
352         * inflow.c (sigint_ours, sigquit_ours): Change type to
353         sighandler_t.
354         (child_terminal_inferior): Remove casts.
355         (child_terminal_ours_1, new_tty): Use sighandler_t.  Remove casts.
356         (osig): Change type to sighandler_t.
357         * nto-procfs.c (ofunc): Change type to sighandler_t.
358         (procfs_wait): Remove casts.
359         * remote-m32r-sdi.c (m32r_wait, m32r_load): Use sighandler_t.
360         * remote-sim.c (gdbsim_wait): Use sighandler_t.
361         * utils.c (wait_to_die_with_timeout): Use sighandler_t.
362
363 2015-08-27  Pedro Alves  <palves@redhat.com>
364
365         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add signal-h.
366         * gnulib/aclocal.m4: Renegerate.
367         * gnulib/config.in: Renegerate.
368         * gnulib/configure: Renegerate.
369         * gnulib/import/Makefile.am: Update.
370         * gnulib/import/Makefile.in: Regenerate.
371         * gnulib/import/m4/gnulib-cache.m4: Update.
372         * gnulib/import/m4/gnulib-comp.m4: Update.
373         * gnulib/import/m4/signal_h.m4: New file.
374         * gnulib/import/signal.in.h: New file.
375
376 2015-08-27  Pedro Alves  <palves@redhat.com>
377
378         * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE)
379         (MIN_MEMORY_PACKET_SIZE): New.
380         (MAX_REMOTE_PACKET_SIZE, MIN_REMOTE_PACKET_SIZE): Delete.
381         (get_memory_packet_size): Adjust.  No longer limit the max packet
382         size.
383         (set_memory_packet_size): Adjust, and remove dead code.
384         (remote_check_symbols): Use xmalloc and a cleanup instead of
385         alloca.
386         (remote_packet_size): No longer cap the packet size.
387         (putpkt_binary): Use xmalloc and a cleanup instead of alloca.
388
389 2015-08-26  Luis Machado  <lgustavo@codesourcery.com>
390
391         * compile/compile.c (compile_to_object): Mention language in
392         error message.
393
394 2015-08-26  Patrick Palka  <patrick@parcs.ath.cx>
395
396         * target.c (target_pre_inferior): Unset attach_flag.
397
398 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
399
400         * gdbarch.sh (append_name): Fix type in XRESIZEVEC.
401         * gdbarch.c: Re-generate.
402
403 2015-08-26  Simon Marchi  <simon.marchi@ericsson.com>
404
405         * aarch64-linux-nat.c (aarch64_add_process): Replace xmalloc-family
406         function with the XNEW-family equivalent.
407         * aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
408         * ada-exp.y (write_ambiguous_var): Likewise.
409         * ada-lang.c (resolve_subexp): Likewise.
410         (user_select_syms): Likewise.
411         (assign_aggregate): Likewise.
412         (ada_evaluate_subexp): Likewise.
413         (cache_symbol): Likewise.
414         * addrmap.c (allocate_key): Likewise.
415         (addrmap_create_mutable): Likewise.
416         * aix-thread.c (sync_threadlists): Likewise.
417         * alpha-tdep.c (alpha_push_dummy_call): Likewise.
418         (alpha_gdbarch_init): Likewise.
419         * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
420         * arm-linux-nat.c (arm_linux_add_process): Likewise.
421         * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
422         * arm-tdep.c (push_stack_item): Likewise.
423         (arm_displaced_step_copy_insn): Likewise.
424         (arm_gdbarch_init): Likewise.
425         (_initialize_arm_tdep): Likewise.
426         * avr-tdep.c (push_stack_item): Likewise.
427         * ax-general.c (new_agent_expr): Likewise.
428         * block.c (block_initialize_namespace): Likewise.
429         * breakpoint.c (alloc_counted_command_line): Likewise.
430         (update_dprintf_command_list): Likewise.
431         (parse_breakpoint_sals): Likewise.
432         (decode_static_tracepoint_spec): Likewise.
433         (until_break_command): Likewise.
434         (clear_command): Likewise.
435         (update_global_location_list): Likewise.
436         (get_breakpoint_objfile_data) Likewise.
437         * btrace.c (ftrace_new_function): Likewise.
438         (btrace_set_insn_history): Likewise.
439         (btrace_set_call_history): Likewise.
440         * buildsym.c (add_symbol_to_list): Likewise.
441         (record_pending_block): Likewise.
442         (start_subfile): Likewise.
443         (start_buildsym_compunit): Likewise.
444         (push_subfile): Likewise.
445         (end_symtab_get_static_block): Likewise.
446         (buildsym_init): Likewise.
447         * cli/cli-cmds.c (source_command): Likewise.
448         * cli/cli-decode.c (add_cmd): Likewise.
449         * cli/cli-script.c (build_command_line): Likewise.
450         (setup_user_args): Likewise.
451         (realloc_body_list): Likewise.
452         (process_next_line): Likewise.
453         (copy_command_lines): Likewise.
454         * cli/cli-setshow.c (do_set_command): Likewise.
455         * coff-pe-read.c (read_pe_exported_syms): Likewise.
456         * coffread.c (coff_locate_sections): Likewise.
457         (coff_symtab_read): Likewise.
458         (coff_read_struct_type): Likewise.
459         * common/cleanups.c (make_my_cleanup2): Likewise.
460         * common/common-exceptions.c (throw_it): Likewise.
461         * common/filestuff.c (make_cleanup_close): Likewise.
462         * common/format.c (parse_format_string): Likewise.
463         * common/queue.h (DEFINE_QUEUE_P): Likewise.
464         * compile/compile-object-load.c (munmap_list_add): Likewise.
465         (compile_object_load): Likewise.
466         * compile/compile-object-run.c (compile_object_run): Likewise.
467         * compile/compile.c (append_args): Likewise.
468         * corefile.c (specify_exec_file_hook): Likewise.
469         * cp-support.c (make_symbol_overload_list): Likewise.
470         * cris-tdep.c (push_stack_item): Likewise.
471         (cris_gdbarch_init): Likewise.
472         * ctf.c (ctf_trace_file_writer_new): Likewise.
473         * dbxread.c (init_header_files): Likewise.
474         (add_new_header_file): Likewise.
475         (init_bincl_list): Likewise.
476         (dbx_end_psymtab): Likewise.
477         (start_psymtab): Likewise.
478         (dbx_end_psymtab): Likewise.
479         * dcache.c (dcache_init): Likewise.
480         * dictionary.c (dict_create_hashed): Likewise.
481         (dict_create_hashed_expandable): Likewise.
482         (dict_create_linear): Likewise.
483         (dict_create_linear_expandable): Likewise.
484         * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
485         * dummy-frame.c (register_dummy_frame_dtor): Likewise.
486         * dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
487         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
488         (decode_frame_entry_1): Likewise.
489         * dwarf2expr.c (new_dwarf_expr_context): Likewise.
490         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
491         * dwarf2read.c (dwarf2_has_info): Likewise.
492         (create_signatured_type_table_from_index): Likewise.
493         (dwarf2_read_index): Likewise.
494         (dw2_get_file_names_reader): Likewise.
495         (create_all_type_units): Likewise.
496         (read_cutu_die_from_dwo): Likewise.
497         (init_tu_and_read_dwo_dies): Likewise.
498         (init_cutu_and_read_dies): Likewise.
499         (create_all_comp_units): Likewise.
500         (queue_comp_unit): Likewise.
501         (inherit_abstract_dies): Likewise.
502         (read_call_site_scope): Likewise.
503         (dwarf2_add_field): Likewise.
504         (dwarf2_add_typedef): Likewise.
505         (dwarf2_add_member_fn): Likewise.
506         (attr_to_dynamic_prop): Likewise.
507         (abbrev_table_alloc_abbrev): Likewise.
508         (abbrev_table_read_table): Likewise.
509         (add_include_dir): Likewise.
510         (add_file_name): Likewise.
511         (dwarf_decode_line_header): Likewise.
512         (dwarf2_const_value_attr): Likewise.
513         (dwarf_alloc_block): Likewise.
514         (parse_macro_definition): Likewise.
515         (set_die_type): Likewise.
516         (write_psymtabs_to_index): Likewise.
517         (create_cus_from_index): Likewise.
518         (dwarf2_create_include_psymtab): Likewise.
519         (process_psymtab_comp_unit_reader): Likewise.
520         (build_type_psymtab_dependencies): Likewise.
521         (read_comp_units_from_section): Likewise.
522         (compute_compunit_symtab_includes): Likewise.
523         (create_dwo_unit_in_dwp_v1): Likewise.
524         (create_dwo_unit_in_dwp_v2): Likewise.
525         (read_func_scope): Likewise.
526         (process_structure_scope): Likewise.
527         (mark_common_block_symbol_computed): Likewise.
528         (load_partial_dies): Likewise.
529         (dwarf2_symbol_mark_computed): Likewise.
530         * elfread.c (elf_symfile_segments): Likewise.
531         (elf_read_minimal_symbols): Likewise.
532         * environ.c (make_environ): Likewise.
533         * eval.c (evaluate_subexp_standard): Likewise.
534         * event-loop.c (create_file_handler): Likewise.
535         (create_async_signal_handler): Likewise.
536         (create_async_event_handler): Likewise.
537         (create_timer): Likewise.
538         * exec.c (build_section_table): Likewise.
539         * fbsd-nat.c (fbsd_remember_child): Likewise.
540         * fork-child.c (fork_inferior): Likewise.
541         * frv-tdep.c (new_variant): Likewise.
542         * gdbarch.sh (gdbarch_alloc): Likewise.
543         (append_name): Likewise.
544         * gdbtypes.c (rank_function): Likewise.
545         (copy_type_recursive): Likewise.
546         (add_dyn_prop): Likewise.
547         * gnu-nat.c (make_proc): Likewise.
548         (make_inf): Likewise.
549         (gnu_write_inferior): Likewise.
550         * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
551         (build_std_type_info_type): Likewise.
552         * guile/scm-param.c (compute_enum_list): Likewise.
553         * guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
554         * guile/scm-value.c (gdbscm_value_call): Likewise.
555         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
556         * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
557         (read_unwind_info): Likewise.
558         * ia64-tdep.c (ia64_gdbarch_init): Likewise.
559         * infcall.c (dummy_frame_context_saver_setup): Likewise.
560         (call_function_by_hand_dummy): Likewise.
561         * infcmd.c (step_once): Likewise.
562         (finish_forward): Likewise.
563         (attach_command): Likewise.
564         (notice_new_inferior): Likewise.
565         * inferior.c (add_inferior_silent): Likewise.
566         * infrun.c (add_displaced_stepping_state): Likewise.
567         (save_infcall_control_state): Likewise.
568         (save_inferior_ptid): Likewise.
569         (_initialize_infrun): Likewise.
570         * jit.c (bfd_open_from_target_memory): Likewise.
571         (jit_gdbarch_data_init): Likewise.
572         * language.c (add_language): Likewise.
573         * linespec.c (decode_line_2): Likewise.
574         * linux-nat.c (add_to_pid_list): Likewise.
575         (add_initial_lwp): Likewise.
576         * linux-thread-db.c (add_thread_db_info): Likewise.
577         (record_thread): Likewise.
578         (info_auto_load_libthread_db): Likewise.
579         * m32c-tdep.c (m32c_gdbarch_init): Likewise.
580         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
581         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
582         * m88k-tdep.c (m88k_analyze_prologue): Likewise.
583         * macrocmd.c (macro_define_command): Likewise.
584         * macroexp.c (gather_arguments): Likewise.
585         * macroscope.c (sal_macro_scope): Likewise.
586         * macrotab.c (new_macro_table): Likewise.
587         * mdebugread.c (push_parse_stack): Likewise.
588         (parse_partial_symbols): Likewise.
589         (parse_symbol): Likewise.
590         (psymtab_to_symtab_1): Likewise.
591         (new_block): Likewise.
592         (new_psymtab): Likewise.
593         (mdebug_build_psymtabs): Likewise.
594         (add_pending): Likewise.
595         (elfmdebug_build_psymtabs): Likewise.
596         * mep-tdep.c (mep_gdbarch_init): Likewise.
597         * mi/mi-main.c (mi_execute_command): Likewise.
598         * mi/mi-parse.c (mi_parse_argv): Likewise.
599         * minidebug.c (lzma_open): Likewise.
600         * minsyms.c (terminate_minimal_symbol_table): Likewise.
601         * mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
602         * mips-tdep.c (mips_gdbarch_init): Likewise.
603         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
604         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
605         * mt-tdep.c (mt_registers_info): Likewise.
606         * nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
607         * nat/linux-btrace.c (linux_enable_bts): Likewise.
608         (linux_enable_pt): Likewise.
609         * nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
610         (linux_xfer_osdata_processgroups): Likewise.
611         * nios2-tdep.c (nios2_gdbarch_init): Likewise.
612         * nto-procfs.c (procfs_meminfo): Likewise.
613         * objc-lang.c (start_msglist): Likewise.
614         (selectors_info): Likewise.
615         (classes_info): Likewise.
616         (find_methods): Likewise.
617         * objfiles.c (allocate_objfile): Likewise.
618         (update_section_map): Likewise.
619         * osabi.c (gdbarch_register_osabi): Likewise.
620         (gdbarch_register_osabi_sniffer): Likewise.
621         * parse.c (start_arglist): Likewise.
622         * ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
623         (hwdebug_insert_point): Likewise.
624         * printcmd.c (display_command): Likewise.
625         (ui_printf): Likewise.
626         * procfs.c (create_procinfo): Likewise.
627         (load_syscalls): Likewise.
628         (proc_get_LDT_entry): Likewise.
629         (proc_update_threads): Likewise.
630         * prologue-value.c (make_pv_area): Likewise.
631         (pv_area_store): Likewise.
632         * psymtab.c (extend_psymbol_list): Likewise.
633         (init_psymbol_list): Likewise.
634         (allocate_psymtab): Likewise.
635         * python/py-inferior.c (add_thread_object): Likewise.
636         * python/py-param.c (compute_enum_values): Likewise.
637         * python/py-value.c (valpy_call): Likewise.
638         * python/py-varobj.c (py_varobj_iter_next): Likewise.
639         * python/python.c (ensure_python_env): Likewise.
640         * record-btrace.c (record_btrace_start_replaying): Likewise.
641         * record-full.c (record_full_reg_alloc): Likewise.
642         (record_full_mem_alloc): Likewise.
643         (record_full_end_alloc): Likewise.
644         (record_full_core_xfer_partial): Likewise.
645         * regcache.c (get_thread_arch_aspace_regcache): Likewise.
646         * remote-fileio.c (remote_fileio_init_fd_map): Likewise.
647         * remote-notif.c (remote_notif_state_allocate): Likewise.
648         * remote.c (demand_private_info): Likewise.
649         (remote_notif_stop_alloc_reply): Likewise.
650         (remote_enable_btrace): Likewise.
651         * reverse.c (save_bookmark_command): Likewise.
652         * rl78-tdep.c (rl78_gdbarch_init): Likewise.
653         * rx-tdep.c (rx_gdbarch_init): Likewise.
654         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
655         * ser-go32.c (dos_get_tty_state): Likewise.
656         (dos_copy_tty_state): Likewise.
657         * ser-mingw.c (ser_windows_open): Likewise.
658         (ser_console_wait_handle): Likewise.
659         (ser_console_get_tty_state): Likewise.
660         (make_pipe_state): Likewise.
661         (net_windows_open): Likewise.
662         * ser-unix.c (hardwire_get_tty_state): Likewise.
663         (hardwire_copy_tty_state): Likewise.
664         * solib-aix.c (solib_aix_new_lm_info): Likewise.
665         * solib-dsbt.c (dsbt_current_sos): Likewise.
666         (dsbt_relocate_main_executable): Likewise.
667         * solib-frv.c (frv_current_sos): Likewise.
668         (frv_relocate_main_executable): Likewise.
669         * solib-spu.c (spu_bfd_fopen): Likewise.
670         * solib-svr4.c (lm_info_read): Likewise.
671         (svr4_copy_library_list): Likewise.
672         (svr4_default_sos): Likewise.
673         * source.c (find_source_lines): Likewise.
674         (line_info): Likewise.
675         (add_substitute_path_rule): Likewise.
676         * spu-linux-nat.c (spu_bfd_open): Likewise.
677         * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
678         * stabsread.c (dbx_lookup_type): Likewise.
679         (read_type): Likewise.
680         (read_member_functions): Likewise.
681         (read_struct_fields): Likewise.
682         (read_baseclasses): Likewise.
683         (read_args): Likewise.
684         (_initialize_stabsread): Likewise.
685         * stack.c (func_command): Likewise.
686         * stap-probe.c (handle_stap_probe): Likewise.
687         * symfile.c (addrs_section_sort): Likewise.
688         (addr_info_make_relative): Likewise.
689         (load_section_callback): Likewise.
690         (add_symbol_file_command): Likewise.
691         (init_filename_language_table): Likewise.
692         * symtab.c (create_filename_seen_cache): Likewise.
693         (sort_search_symbols_remove_dups): Likewise.
694         (search_symbols): Likewise.
695         * target.c (make_cleanup_restore_target_terminal): Likewise.
696         * thread.c (new_thread): Likewise.
697         (enable_thread_stack_temporaries): Likewise.
698         (make_cleanup_restore_current_thread): Likewise.
699         (thread_apply_all_command): Likewise.
700         * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
701         * top.c (gdb_readline_wrapper): Likewise.
702         * tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
703         * tracepoint.c (trace_find_line_command): Likewise.
704         (all_tracepoint_actions_and_cleanup): Likewise.
705         (make_cleanup_restore_current_traceframe): Likewise.
706         (get_uploaded_tp): Likewise.
707         (get_uploaded_tsv): Likewise.
708         * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
709         (tui_alloc_win_info): Likewise.
710         (tui_alloc_content): Likewise.
711         (tui_add_content_elements): Likewise.
712         * tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
713         (tui_set_disassem_content): Likewise.
714         * ui-file.c (ui_file_new): Likewise.
715         (stdio_file_new): Likewise.
716         (tee_file_new): Likewise.
717         * utils.c (make_cleanup_restore_integer): Likewise.
718         (add_internal_problem_command): Likewise.
719         * v850-tdep.c (v850_gdbarch_init): Likewise.
720         * valops.c (find_oload_champ): Likewise.
721         * value.c (allocate_value_lazy): Likewise.
722         (record_latest_value): Likewise.
723         (create_internalvar): Likewise.
724         * varobj.c (install_variable): Likewise.
725         (new_variable): Likewise.
726         (new_root_variable): Likewise.
727         (cppush): Likewise.
728         (_initialize_varobj): Likewise.
729         * windows-nat.c (windows_make_so): Likewise.
730         * x86-nat.c (x86_add_process): Likewise.
731         * xcoffread.c (arrange_linetable): Likewise.
732         (allocate_include_entry): Likewise.
733         (process_linenos): Likewise.
734         (SYMBOL_DUP): Likewise.
735         (xcoff_start_psymtab): Likewise.
736         (xcoff_end_psymtab): Likewise.
737         * xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
738         * xtensa-tdep.c (xtensa_register_type): Likewise.
739         * gdbarch.c: Regenerate.
740         * gdbarch.h: Regenerate.
741
742 2015-08-25  Don Breazeal  <donb@codesourcery.com>
743
744         * infrun.c (follow_exec): Re-order operations for
745         handling follow-exec-mode "new".
746         (handle_inferior_event_1): Assign ecs->event_thread
747         to the current thread.
748         * remote.c (get_remote_arch_state): Add an assertion.
749
750 2015-08-26  Pedro Alves  <palves@redhat.com>
751
752         * MAINTAINERS: Add Markus Metzger as btrace maintainer.
753
754 2015-08-25  Pedro Alves  <palves@redhat.com>
755
756         PR gdb/18804
757         * defs.h (maybe_quit): Declare.
758         (QUIT): Now calls maybe_quit.
759         * event-loop.c (clear_async_signal_handler)
760         (async_signal_handler_is_marked): New functions.
761         * event-loop.h (async_signal_handler_is_marked)
762         (clear_async_signal_handler): New declarations.
763         * remote.c (remote_check_pending_interrupt): New function.
764         (interrupt_query): Use make_cleanup_restore_target_terminal.  No
765         longer check whether the target is async.  If waiting for a stop
766         reply, and a Ctrl-C as been sent to the target, offer to
767         disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
768         Otherwise do not disconnect and throw a quit.
769         (_initialize_remote): Install remote_check_pending_interrupt as
770         to_check_pending_interrupt.
771         * target.c (target_check_pending_interrupt): New function.
772         * target.h (struct target_ops) <to_check_pending_interrupt>: New
773         field.
774         (target_check_pending_interrupt): New declaration.
775         * utils.c (maybe_quit): New function.
776         * target-delegates.c: Regenerate.
777
778 2015-08-25  Yao Qi  <yao.qi@linaro.org>
779
780         * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
781         Rename local variable pid to tid, and get lwpid of lwp.  Update
782         debug output.
783
784 2015-08-25  Pierre-Marie de Rodat  <derodat@adacore.com>
785
786         * ada-lang.c (ada_read_var_value): Add a var_block argument
787         and pass it to default_read_var_value.
788         * block.c (block_static_link): New accessor.
789         * block.h (block_static_link): Declare it.
790         * buildsym.c (finish_block_internal): Add a static_link
791         argument.  If there is a static link, associate it to the new
792         block.
793         (finish_block): Add a static link argument and pass it to
794         finish_block_internal.
795         (end_symtab_get_static_block): Update calls to finish_block and
796         to finish_block_internal.
797         (end_symtab_with_blockvector): Update call to
798         finish_block_internal.
799         * buildsym.h: Forward-declare struct dynamic_prop.
800         (struct context_stack): Add a static_link field.
801         (finish_block): Add a static link argument.
802         * c-exp.y: Remove an obsolete comment (evaluation of variables
803         already start from the selected frame, and now they climb *up*
804         the call stack) and propagate the block information to the
805         produced expression.
806         * d-exp.y: Likewise.
807         * f-exp.y: Likewise.
808         * go-exp.y: Likewise.
809         * jv-exp.y: Likewise.
810         * m2-exp.y: Likewise.
811         * p-exp.y: Likewise.
812         * coffread.c (coff_symtab_read): Update calls to finish_block.
813         * dbxread.c (process_one_symbol): Likewise.
814         * xcoffread.c (read_xcoff_symtab): Likewise.
815         * compile/compile-c-symbols.c (convert_one_symbol): Promote the
816         "sym" parameter to struct block_symbol, update its uses and pass
817         its block to calls to read_var_value.
818         (convert_symbol_sym): Update the calls to convert_one_symbol.
819         * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
820         call to read_var_value.
821         * dwarf2loc.c (block_op_get_frame_base): New.
822         (dwarf2_block_frame_base_locexpr_funcs): Implement the
823         get_frame_base method.
824         (dwarf2_block_frame_base_loclist_funcs): Likewise.
825         (dwarf2locexpr_baton_eval): Add a frame argument and use it
826         instead of the selected frame in order to evaluate the
827         expression.
828         (dwarf2_evaluate_property): Add a frame argument.  Update call
829         to dwarf2_locexpr_baton_eval to provide a frame in available and
830         to handle the absence of address stack.
831         * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
832         * dwarf2read.c (attr_to_dynamic_prop): Add a forward
833         declaration.
834         (read_func_scope): Record any available static link description.
835         Update call to finish_block.
836         (read_lexical_block_scope): Update call to finish_block.
837         * findvar.c (follow_static_link): New.
838         (get_hosting_frame): New.
839         (default_read_var_value): Add a var_block argument.  Use
840         get_hosting_frame to handle non-local references.
841         (read_var_value): Add a var_block argument and pass it to the
842         LA_READ_VAR_VALUE method.
843         * gdbtypes.c (resolve_dynamic_range): Update calls to
844         dwarf2_evaluate_property.
845         (resolve_dynamic_type_internal): Likewise.
846         * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
847         read_var_value, passing it the block coming from symbol lookup.
848         * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
849         read_var_value (TODO).
850         * infcmd.c (finish_command_continuation): Update call to
851         read_var_value, passing it the block coming from symbol lookup.
852         * infrun.c (insert_exception_resume_breakpoint): Likewise.
853         * language.h (struct language_defn): Add a var_block argument to
854         the LA_READ_VAR_VALUE method.
855         * objfiles.c (struct static_link_htab_entry): New.
856         (static_link_htab_entry_hash): New.
857         (static_link_htab_entry_eq): New.
858         (objfile_register_static_link): New.
859         (objfile_lookup_static_link): New.
860         (free_objfile): Free the STATIC_LINKS hashed map if needed.
861         * objfiles.h: Include hashtab.h.
862         (struct objfile): Add a static_links field.
863         (objfile_register_static_link): New.
864         (objfile_lookup_static_link): New.
865         * printcmd.c (print_variable_and_value): Update call to
866         read_var_value.
867         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
868         * python/py-frame.c (frapy_read_var): Update call to
869         read_var_value, passing it the block coming from symbol lookup.
870         * python/py-framefilter.c (extract_sym): Add a sym_block
871         parameter and set the pointed value to NULL (TODO).
872         (enumerate_args): Update call to extract_sym.
873         (enumerate_locals): Update calls to extract_sym and to
874         read_var_value.
875         * python/py-symbol.c (sympy_value): Update call to
876         read_var_value (TODO).
877         * stack.c (read_frame_local): Update call to read_var_value.
878         (read_frame_arg): Likewise.
879         (return_command): Likewise.
880         * symtab.h (struct symbol_block_ops): Add a get_frame_base
881         method.
882         (struct symbol): Add a block field.
883         (SYMBOL_BLOCK): New accessor.
884         * valops.c (value_of_variable): Remove frame/block handling and
885         pass the block argument to read_var_value, which does this job
886         now.
887         (value_struct_elt_for_reference): Update calls to
888         read_var_value.
889         (value_of_this): Pass the block found to read_var_value.
890         * value.h (read_var_value): Add a var_block argument.
891         (default_read_var_value): Likewise.
892
893 2015-08-25  Yao Qi  <yao.qi@linaro.org>
894
895         * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
896         * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
897         * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
898
899 2015-08-25  Yao Qi  <yao.qi@linaro.org>
900
901         * Makefile.in (aarch64-liunx.o): New rule.
902         (HFILES_NO_SRCDIR): Add aarch64-linux.h.
903         * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
904         * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
905         * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
906         extern.
907         (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
908         * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
909         * nat/aarch64-linux.c: New file.
910         * nat/aarch64-linux.h: New file.
911
912 2015-08-25  Yao Qi  <yao.qi@linaro.org>
913
914         * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
915         lwp_arch_private_info and ptid_of_lwp.
916
917 2015-08-25  Yao Qi  <yao.qi@linaro.org>
918
919         * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
920         Move it to nat/aarch64-linux-hw-point.c.
921         (debug_reg_change_callback): Likewise.
922         (aarch64_notify_debug_reg_change): :Likewise.
923         * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
924         (aarch64_dr_update_callback_param): New.
925         (debug_reg_change_callback): New function.
926         (aarch64_notify_debug_reg_change): Likewise.
927         * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
928         Remove the declaration.
929
930 2015-08-25  Yao Qi  <yao.qi@linaro.org>
931
932         * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
933         Call current_lwp_ptid.
934
935 2015-08-25  Yao Qi  <yao.qi@linaro.org>
936
937         * aarch64-linux-nat.c (debug_reg_change_callback): Use
938         debug_printf.
939
940 2015-08-25  Yao Qi  <yao.qi@linaro.org>
941
942         * aarch64-linux-nat.c (debug_reg_change_callback): Call
943         ptid_get_pid rather than ptid_get_lwp.
944
945 2015-08-24  Pedro Alves  <palves@redhat.com>
946
947         * NEWS (New commands): Mention set/show remote
948         multiprocess-extensions-packet.
949         * remote.c (remote_query_supported): Only tell the server to use
950         the multiprocess extensions if the user hasn't force-disabled them
951         with "set remote multiprocess-extensions-packet off".
952
953 2015-08-24  Pedro Alves  <palves@redhat.com>
954
955         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
956         1029a8112290f6eee9d7878a391c49db42c999bd.
957         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
958         Regenerate.
959         * gnulib/import/Makefile.am: Update.
960         * gnulib/import/Makefile.in: Update.
961         * gnulib/import/alloca.in.h: Update.
962         * gnulib/import/basename-lgpl.c: Update.
963         * gnulib/import/canonicalize-lgpl.c: Update.
964         * gnulib/import/config.charset: Update.
965         * gnulib/import/dirent.in.h: Update.
966         * gnulib/import/dirfd.c: Update.
967         * gnulib/import/dirname-lgpl.c: Update.
968         * gnulib/import/dirname.h: Update.
969         * gnulib/import/dosname.h: Update.
970         * gnulib/import/errno.in.h: Update.
971         * gnulib/import/extra/snippet/arg-nonnull.h: Update.
972         * gnulib/import/extra/snippet/c++defs.h: Update.
973         * gnulib/import/extra/snippet/warn-on-use.h: Update.
974         * gnulib/import/extra/update-copyright: Update.
975         * gnulib/import/float+.h: Update.
976         * gnulib/import/float.c: Update.
977         * gnulib/import/float.in.h: Update.
978         * gnulib/import/fnmatch.c: Update.
979         * gnulib/import/fnmatch.in.h: Update.
980         * gnulib/import/fnmatch_loop.c: Update.
981         * gnulib/import/fpucw.h: Update.
982         * gnulib/import/frexp.c: Update.
983         * gnulib/import/frexpl.c: Update.
984         * gnulib/import/gettimeofday.c: Update.
985         * gnulib/import/inttypes.in.h: Update.
986         * gnulib/import/isnan.c: Update.
987         * gnulib/import/isnand-nolibm.h: Update.
988         * gnulib/import/isnand.c: Update.
989         * gnulib/import/isnanl-nolibm.h: Update.
990         * gnulib/import/isnanl.c: Update.
991         * gnulib/import/itold.c: Update.
992         * gnulib/import/localcharset.c: Update.
993         * gnulib/import/localcharset.h: Update.
994         * gnulib/import/lstat.c: Update.
995         * gnulib/import/m4/00gnulib.m4: Update.
996         * gnulib/import/m4/absolute-header.m4: Update.
997         * gnulib/import/m4/alloca.m4: Update.
998         * gnulib/import/m4/canonicalize.m4: Update.
999         * gnulib/import/m4/codeset.m4: Update.
1000         * gnulib/import/m4/configmake.m4: Update.
1001         * gnulib/import/m4/dirent_h.m4: Update.
1002         * gnulib/import/m4/dirfd.m4: Update.
1003         * gnulib/import/m4/dirname.m4: Update.
1004         * gnulib/import/m4/double-slash-root.m4: Update.
1005         * gnulib/import/m4/eealloc.m4: Update.
1006         * gnulib/import/m4/errno_h.m4: Update.
1007         * gnulib/import/m4/exponentd.m4: Update.
1008         * gnulib/import/m4/exponentl.m4: Update.
1009         * gnulib/import/m4/extensions.m4: Update.
1010         * gnulib/import/m4/extern-inline.m4: Update.
1011         * gnulib/import/m4/fcntl-o.m4: Update.
1012         * gnulib/import/m4/float_h.m4: Update.
1013         * gnulib/import/m4/fnmatch.m4: Update.
1014         * gnulib/import/m4/fpieee.m4: Update.
1015         * gnulib/import/m4/frexp.m4: Update.
1016         * gnulib/import/m4/frexpl.m4: Update.
1017         * gnulib/import/m4/gettimeofday.m4: Update.
1018         * gnulib/import/m4/glibc21.m4: Update.
1019         * gnulib/import/m4/gnulib-cache.m4: Update.
1020         * gnulib/import/m4/gnulib-common.m4: Update.
1021         * gnulib/import/m4/gnulib-comp.m4: Update.
1022         * gnulib/import/m4/gnulib-tool.m4: Update.
1023         * gnulib/import/m4/include_next.m4: Update.
1024         * gnulib/import/m4/inttypes-pri.m4: Update.
1025         * gnulib/import/m4/inttypes.m4: Update.
1026         * gnulib/import/m4/isnand.m4: Update.
1027         * gnulib/import/m4/isnanl.m4: Update.
1028         * gnulib/import/m4/largefile.m4: Update.
1029         * gnulib/import/m4/localcharset.m4: Update.
1030         * gnulib/import/m4/locale-fr.m4: Update.
1031         * gnulib/import/m4/locale-ja.m4: Update.
1032         * gnulib/import/m4/locale-zh.m4: Update.
1033         * gnulib/import/m4/longlong.m4: Update.
1034         * gnulib/import/m4/lstat.m4: Update.
1035         * gnulib/import/m4/malloc.m4: Update.
1036         * gnulib/import/m4/malloca.m4: Update.
1037         * gnulib/import/m4/math_h.m4: Update.
1038         * gnulib/import/m4/mbrtowc.m4: Update.
1039         * gnulib/import/m4/mbsinit.m4: Update.
1040         * gnulib/import/m4/mbsrtowcs.m4: Update.
1041         * gnulib/import/m4/mbstate_t.m4: Update.
1042         * gnulib/import/m4/memchr.m4: Update.
1043         * gnulib/import/m4/memmem.m4: Update.
1044         * gnulib/import/m4/mmap-anon.m4: Update.
1045         * gnulib/import/m4/multiarch.m4: Update.
1046         * gnulib/import/m4/nocrash.m4: Update.
1047         * gnulib/import/m4/off_t.m4: Update.
1048         * gnulib/import/m4/pathmax.m4: Update.
1049         * gnulib/import/m4/readlink.m4: Update.
1050         * gnulib/import/m4/rename.m4: Update.
1051         * gnulib/import/m4/rmdir.m4: Update.
1052         * gnulib/import/m4/ssize_t.m4: Update.
1053         * gnulib/import/m4/stat.m4: Update.
1054         * gnulib/import/m4/stdbool.m4: Update.
1055         * gnulib/import/m4/stddef_h.m4: Update.
1056         * gnulib/import/m4/stdint.m4: Update.
1057         * gnulib/import/m4/stdio_h.m4: Update.
1058         * gnulib/import/m4/stdlib_h.m4: Update.
1059         * gnulib/import/m4/string_h.m4: Update.
1060         * gnulib/import/m4/strstr.m4: Update.
1061         * gnulib/import/m4/strtok_r.m4: Update.
1062         * gnulib/import/m4/sys_socket_h.m4: Update.
1063         * gnulib/import/m4/sys_stat_h.m4: Update.
1064         * gnulib/import/m4/sys_time_h.m4: Update.
1065         * gnulib/import/m4/sys_types_h.m4: Update.
1066         * gnulib/import/m4/time_h.m4: Update.
1067         * gnulib/import/m4/unistd_h.m4: Update.
1068         * gnulib/import/m4/warn-on-use.m4: Update.
1069         * gnulib/import/m4/wchar_h.m4: Update.
1070         * gnulib/import/m4/wchar_t.m4: Update.
1071         * gnulib/import/m4/wctype_h.m4: Update.
1072         * gnulib/import/m4/wint_t.m4: Update.
1073         * gnulib/import/malloc.c: Update.
1074         * gnulib/import/malloca.c: Update.
1075         * gnulib/import/malloca.h: Update.
1076         * gnulib/import/math.in.h: Update.
1077         * gnulib/import/mbrtowc.c: Update.
1078         * gnulib/import/mbsinit.c: Update.
1079         * gnulib/import/mbsrtowcs-impl.h: Update.
1080         * gnulib/import/mbsrtowcs-state.c: Update.
1081         * gnulib/import/mbsrtowcs.c: Update.
1082         * gnulib/import/memchr.c: Update.
1083         * gnulib/import/memmem.c: Update.
1084         * gnulib/import/pathmax.h: Update.
1085         * gnulib/import/readlink.c: Update.
1086         * gnulib/import/ref-add.sin: Update.
1087         * gnulib/import/ref-del.sin: Update.
1088         * gnulib/import/rename.c: Update.
1089         * gnulib/import/rmdir.c: Update.
1090         * gnulib/import/same-inode.h: Update.
1091         * gnulib/import/stat.c: Update.
1092         * gnulib/import/stdbool.in.h: Update.
1093         * gnulib/import/stddef.in.h: Update.
1094         * gnulib/import/stdint.in.h: Update.
1095         * gnulib/import/stdio.c: Update.
1096         * gnulib/import/stdio.in.h: Update.
1097         * gnulib/import/stdlib.in.h: Update.
1098         * gnulib/import/str-two-way.h: Update.
1099         * gnulib/import/streq.h: Update.
1100         * gnulib/import/string.in.h: Update.
1101         * gnulib/import/stripslash.c: Update.
1102         * gnulib/import/strnlen1.c: Update.
1103         * gnulib/import/strnlen1.h: Update.
1104         * gnulib/import/strstr.c: Update.
1105         * gnulib/import/strtok_r.c: Update.
1106         * gnulib/import/sys_stat.in.h: Update.
1107         * gnulib/import/sys_time.in.h: Update.
1108         * gnulib/import/sys_types.in.h: Update.
1109         * gnulib/import/time.in.h: Update.
1110         * gnulib/import/unistd.in.h: Update.
1111         * gnulib/import/verify.h: Update.
1112         * gnulib/import/wchar.in.h: Update.
1113         * gnulib/import/wctype.in.h: Update.
1114         * gnulib/import/gettimeofday.c: New file.
1115         * gnulib/import/m4/absolute-header.m4: New file.
1116         * gnulib/import/m4/gettimeofday.m4: New file.
1117         * gnulib/import/m4/sys_socket_h.m4: New file.
1118         * gnulib/import/m4/sys_time_h.m4: New file.
1119         * gnulib/import/stdio.c: Delete file.
1120         * gnulib/import/sys_time.in.h: New file.
1121
1122 2015-08-24  Pedro Alves  <palves@redhat.com>
1123
1124         * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
1125         * common/gdb_sys_time.h: New file.
1126         * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
1127         * gdb_select.h: Likewise.
1128         * gdb_usleep.c: Likewise.
1129         * maint.c: Likewise.
1130         * mi/mi-main.c: Likewise.
1131         * mi/mi-parse.h: Likewise.
1132         * remote-fileio.c: Likewise.
1133         * remote-m32r-sdi.c: Likewise.
1134         * remote.c: Likewise.
1135         * ser-base.c: Likewise.
1136         * ser-pipe.c: Likewise.
1137         * ser-tcp.c: Likewise.
1138         * ser-unix.c: Likewise.
1139         * symfile.c: Likewise.
1140         * symfile.c: Likewise.  Rename OSIZE to SIZE throughout.
1141         * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
1142         * utils.c: Likewise.
1143
1144 2015-08-24  Pedro Alves  <palves@redhat.com>
1145
1146         * NEWS: Mention removed support for the various ROM monitors.
1147         * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
1148         ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
1149         * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
1150         gdb_target_obs.
1151         (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
1152         gdb_target_obs.
1153         (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
1154         dsrec.o from gdb_target_obs.
1155         (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
1156         from gdb_target_obs.
1157         (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
1158         gdb_target_obs.
1159         (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
1160         dink32-rom.o from gdb_target_obs.
1161         (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
1162         (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
1163         * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
1164         monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
1165
1166 2015-08-21  Pedro Alves  <palves@redhat.com>
1167
1168         * frame.c (null_frame_id): Explicitly zero-initialize.
1169
1170 2015-08-21  Tom Tromey  <tromey@redhat.com>
1171
1172         * dwarf2read.c (struct dwarf2_section_info): Rename field
1173         'asection' to 'section'.
1174         (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
1175         (dwarf2_locate_sections, dwarf2_locate_sections)
1176         (locate_dwz_sections, locate_v1_virtual_dwo_sections)
1177         (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
1178         (dwarf2_locate_v2_dwp_sections): Adjust.
1179
1180 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1181
1182         * top.h (gdb_in_secondary_prompt_p): Declare.
1183         * top.c (gdb_secondary_prompt_depth): Define.
1184         (gdb_in_secondary_prompt_p): Define.
1185         (gdb_readline_wrapper_cleanup): Decrement
1186         gdb_secondary_prompt_depth.
1187         (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
1188         * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
1189         are in a secondary prompt.
1190
1191 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1192
1193         * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
1194         emit the newline.
1195
1196 2015-08-21  Gary Benson  <gbenson@redhat.com>
1197
1198         * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
1199
1200 2015-08-21  Gary Benson  <gbenson@redhat.com>
1201
1202         * target.h (struct target_ops) <to_fileio_open>: New argument
1203         warn_if_slow.  Update comment.  All implementations updated.
1204         (target_fileio_open_warn_if_slow): New declaration.
1205         * target.c (target_fileio_open): Renamed as...
1206         (target_fileio_open_1): ...this.  New argument warn_if_slow.
1207         Pass warn_if_slow to implementation.  Update debug printing.
1208         (target_fileio_open): New function.
1209         (target_fileio_open_warn_if_slow): Likewise.
1210         * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
1211         target_fileio_open_warn_if_slow.
1212
1213 2015-08-21  Gary Benson  <gbenson@redhat.com>
1214
1215         * nat/linux-namespaces.c (linux_mntns_access_fs):
1216         Do not overwrite old_chain.
1217
1218 2015-08-20  Max Filippov  <jcmvbkbc@gmail.com>
1219
1220         * arch/xtensa.h: New file.
1221         * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
1222         (ps_get_thread_area): New function.
1223         * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
1224         set_gdbarch_fetch_tls_load_module_address to enable TLS support.
1225         * xtensa-tdep.c (osabi.h): New #include.
1226         (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
1227         xtensa-specific hooks.
1228         * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
1229         member and move the structure to arch/xtensa.h.
1230
1231 2015-08-21  Pedro Alves  <palves@redhat.com>
1232
1233         * remote.c (struct readahead_cache): New.
1234         (struct remote_state) <readahead_cache>: New field.
1235         (remote_open_1): Invalidate the cache.
1236         (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
1237         functions.
1238         (remote_hostio_pwrite): Invalidate the readahead cache.
1239         (remote_hostio_pread): Rename to ...
1240         (remote_hostio_pread_vFile): ... this.
1241         (remote_hostio_pread_from_cache): New function.
1242         (remote_hostio_pread): Reimplement.
1243         (remote_hostio_close): Invalidate the readahead cache.
1244
1245 2015-08-21  Marcin CieÅ›lak <saper@saper.info>  (tiny patch)
1246
1247         PR build/18843
1248         * procfs.c: Include "filestuff.h".
1249
1250 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
1251
1252         * tui/tui-data.h (tui_command_info): Remove fields cur_line and
1253         curch.
1254         * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
1255         cur_line or curch, instead call wmove().
1256         (init_win_info) [CMD_WIN]: Likewise.
1257         * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
1258         instead call getcury().
1259         (tui_redisplay_readline): Don't set cur_line or curch.
1260         (tui_mld_erase_entire_line): Don't read cur_line, instead call
1261         getcury().
1262         (tui_cont_sig): Remove call to wmove.
1263         (tui_getc): Don't read cur_line or curch, instead call getcury()
1264         or getyx().  Don't set curch.
1265         * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
1266         set cur_line or curch.  Always move cursor to (0,0).
1267
1268 2015-08-20  Pedro Alves  <palves@redhat.com>
1269
1270         * infrun.c (print_target_wait_results): Make extern.
1271         * infrun.h (print_target_wait_results): Declare.
1272         * remote.c (set_stop_requested_callback): Delete.
1273         (process_initial_stop_replies): New function.
1274         (remote_start_remote): Use it.
1275         (stop_reply_queue_length): New function.
1276
1277 2015-08-20  Pedro Alves  <palves@redhat.com>
1278
1279         * dwarf2read.c (process_full_comp_unit): To tell whether
1280         start_subfile managed to deduce a language, test for
1281         language_unknown instead of language_c.
1282
1283 2015-08-20  Pierre-Marie de Rodat  <derodat@adacore.com>
1284
1285         * ada-lex.l: Reset the start condition to INITIAL in the rule that
1286         matches attributes.
1287
1288 2015-08-19  Kevin Buettner  <kevinb@redhat.com>
1289
1290         * dwarf2read.c (dwarf2_string_attr): New function.
1291         (lookup_dwo_unit, process_psymtab_comp_unit_reader)
1292         (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
1293         (read_call_site_scope, namespace_name, guess_full_die_structure_name)
1294         (anonymous_struct_prefix, prepare_one_comp_unit): Use
1295         dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
1296
1297 2015-08-18  Doug Evans  <dje@google.com>
1298             Adrian Sendroiu <adrian.sendroiu@freescale.com>
1299
1300         PR mi/18833
1301         * cli/cli-logging.c (pop_output_files): Don't restore redirection
1302         if MI-like.
1303         * mi/mi-out.c: #include "vec.h".
1304         (ui_filep): New type.
1305         (DEV_VEC_P (ui_filep)): New type.
1306         (struct ui_out_data) <buffer, original_buffer>: Delete.
1307         (struct ui_out_data) <streams>: New member.
1308         (mi_ui_out_impl): Add data_destroy field.
1309         (mi_field_string, mi_field_fmt): Update.
1310         (mi_flush, mi_redirect, field_separator): Update.
1311         (mi_open, mi_close): Update.
1312         (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
1313         (mi_out_data_ctor, mi_out_data_dtor): New functions.
1314         (mi_out_new): Call mi_out_data_ctor.
1315
1316 2015-08-18  Sandra Loosemore  <sandra@codesourcery.com>
1317
1318         * remote.c (strprefix): New.
1319         (remote_parse_stop_reply): Use strprefix instead of strncmp
1320         to ensure exact match of keyword.
1321
1322 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1323
1324         * gdb_bfd.c (debug_bfd_cache): New variable.
1325         (show_bfd_cache_debug): New function.
1326         (gdb_bfd_open): Add debug logging.
1327         (gdb_bfd_ref): Likewise.
1328         (gdb_bfd_unref): Likewise.
1329         (_initialize_gdb_bfd): Add new set/show command.
1330         * NEWS: Mention new command.
1331
1332 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1333
1334         * gdb_bfd.c (bfd_sharing): New variable.
1335         (show_bfd_sharing): New function.
1336         (gdb_bfd_open): Check bfd_sharing variable.
1337         (_initialize_gdb_bfd): Add new set/show command.
1338         * NEWS: Mention new command.
1339
1340 2015-08-18  Andrew Burgess  <andrew.burgess@embecosm.com>
1341
1342         * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
1343         field.
1344         (struct gdb_bfd_cache_search): Likewise.
1345         (eq_bfd): Compare the size, inode, and device id fields.
1346         (gdb_bfd_open): Initialise the size, inode, and device id fields.
1347         (gdb_bfd_ref): Likewise.
1348         (gdb_bfd_unref): Likewise.
1349
1350 2015-08-18  Pedro Alves  <palves@redhat.com>
1351
1352         * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
1353         target implements to_always_non_stop_p, call it.
1354         * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
1355         (x86_linux_create_target): Install it as to_always_non_stop_p
1356         method.
1357
1358 2015-08-17  Doug Evans  <dje@google.com>
1359
1360         * ui-out.c (default_ui_out_impl): Add comment.
1361
1362 2015-08-17  Iain Buclaw  <ibuclaw@gdcproject.org>
1363
1364         * d-exp.y (type_aggregate_p): New function.
1365         (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
1366         (classify_inner_name): Likewise.
1367         * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
1368
1369 2015-08-15  Doug Evans  <xdje42@gmail.com>
1370
1371         * psymtab.c (add_psymbol_to_bcache): Remove "val" arg.  All callers
1372         updated.
1373         (add_psymbol_to_list): Ditto.
1374
1375 2015-08-15  Doug Evans  <xdje42@gmail.com>
1376
1377         * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab.  All callers
1378         updated.  Call end_psymtab_common.
1379         * dwarf2read.c (process_psymtab_comp_unit_reader): Call
1380         end_psymtab_common.
1381         (build_type_psymtabs_reader): Ditto.
1382         * psympriv.h (sort_pst_symbols): Delete.
1383         (end_psymtab_common): Declare.
1384         * psymtab.c (sort_pst_symbols): Make static.
1385         (end_psymtab_common): New function.
1386         * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
1387
1388 2015-08-15  Doug Evans  <xdje42@gmail.com>
1389
1390         * defs.h (LANGUAGE_BITS): Define.
1391         * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
1392         (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
1393         * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
1394         (minimal_symbol_type): Add nr_minsym_types.
1395         (MINSYM_TYPE_BITS): Define.
1396         (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
1397         (domain_enum_tag): Add NR_DOMAINS.
1398         (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
1399         (SYMBOL_ACLASS_BITS): Define from 6 to 5.
1400
1401 2015-08-15  Doug Evans  <xdje42@gmail.com>
1402
1403         * objfiles.h: Whitespace cleanup.
1404         * psympriv.h: Whitespace cleanup.
1405         * psymtab.c: Whitespace/coding convention cleanup.
1406
1407 2015-08-15  Patrick Palka  <patrick@parcs.ath.cx>
1408
1409         * inferior.c (detach_inferior_command): Don't call
1410         any_thread_of_process when pid is 0.
1411         (kill_inferior_command): Likewise.
1412
1413 2015-08-14  Doug Evans  <xdje42@gmail.com>
1414
1415         PR gdb/11833
1416         * NEWS: Document new /s modifier for the disassemble command.
1417         * cli/cli-cmds.c (disassemble_command): Add support for /s.
1418         (_initialize_cli_cmds): Update online docs of disassemble command.
1419         * disasm.c: #include "source.h".
1420         (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
1421         All uses updated.
1422         (dis_line_entry): New struct.
1423         (hash_dis_line_entry, eq_dis_line_entry): New functions.
1424         (allocate_dis_line_table): New functions.
1425         (maybe_add_dis_line_entry, line_has_code_p): New functions.
1426         (dump_insns): New arg end_pc.  All callers updated.
1427         (do_mixed_source_and_assembly_deprecated): Renamed from
1428         do_mixed_source_and_assembly.  All callers updated.
1429         (do_mixed_source_and_assembly): New function.
1430         (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
1431         * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
1432         DISASSEMBLY_SOURCE.  All uses updated.
1433         (DISASSEMBLY_SOURCE): New macro.
1434         * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
1435
1436 2015-08-14  Keith Seitz  <keiths@redhat.com>
1437
1438         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
1439         `typename' to `type_name' to avoid C++ reserved word.
1440
1441 2015-08-14  Keith Seitz  <keiths@redhat.com>
1442
1443         * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
1444         (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
1445         silence ARI errors.
1446
1447 2015-08-14  Iain Buclaw  <ibuclaw@gdcproject.org>
1448
1449         * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
1450         xstrprintf instead of malloc and sprintf.
1451         (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
1452         (lex_one_token): Likewise.
1453
1454 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
1455
1456         * solib-svr4.c (read_program_header): Add base_addr argument to
1457         report the runtime address of the segment.
1458         (find_program_interpreter): Update read_program_header call to pass
1459         a NULL pointer for the new argument.
1460         (scan_dyntag): Add ptr_addr argument to report the runtime address
1461         of the tag payload.
1462         (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
1463         read_program_header to get the base address of the dynamic segment.
1464         (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
1465         read_program_header.
1466         (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
1467
1468 2015-08-14  Matthew Fortune  <matthew.fortune@imgtec.com>
1469
1470         * MAINTAINERS (Write After Approval): Add Matthew Fortune.
1471
1472 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
1473
1474         * d-exp.y (%union): Add voidval.
1475         (%token): Add UNKNOWN_NAME as a token to represent an unclassified
1476         name in the lexing stage.
1477         (PostfixExpression): Move symbol completion handling in grammar here
1478         from PrimaryExpression.
1479         (PrimaryExpression): Move routines to handle resolving identifier
1480         tokens in the grammar here from push_expression_name.
1481         (IdentifierExp): Remove the handling of alternating '.' and identifier
1482         tokens.
1483         (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
1484         (BasicType): Remove C-style typename rules.
1485         (d_type_from_name, d_module_from_name, push_variable)
1486         (push_fieldnames, push_type_name, push_module_name)
1487         (push_expression_name): Remove.
1488         (lex_one_token): Rename from yylex.  Replace pstate with par_state.
1489         (token_and_value): New type.
1490         (token_fifo, popping, name_obstack): New globals.
1491         (classify_name): New function.
1492         (classify_inner_name): Likewise.
1493         (yylex): Likewise.
1494         (d_parse): Initialize token_fifo, popping and name_obstack.
1495
1496 2015-08-13  Iain Buclaw  <ibuclaw@gdcproject.org>
1497
1498         * Makefile.in (SFILES): Add d-namespace.c.
1499         (COMMON_OBS): Add d-namespace.o.
1500         * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
1501         la_lookup_symbol_nonlocal callback function pointer.
1502         * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
1503         (d_lookup_nested_symbol): New declaration.
1504         * d-namespace.c: New file.
1505
1506 2015-08-13  Pedro Alves  <palves@redhat.com>
1507
1508         * python/py-unwind.c (pyuw_sniffer): Install the invalidate
1509         cleanup after the decref cleanup, not before.
1510
1511 2015-08-13  Pierre-Marie de Rodat  <derodat@adacore.com>
1512
1513         * ada-lang.c: Include namespace.h
1514         (aux_add_nonlocal_symbols): Fix a function name in comment.
1515         (ada_add_block_renamings): New.
1516         (add_nonlocal_symbols): Add global renamings handling.
1517         (ada_lookup_symbol_list_worker): Move the symbol lookup part
1518         to...
1519         (ada_add_all_symbols): ... this new function.
1520         (ada_add_block_symbols): Try to match the input name against the
1521         "using directives list", perform a recursive symbol lookup on
1522         the matched declarations.
1523         * block.h (struct block): Move the_namespace to top-level as
1524         namespace_info. Remove the language_specific field.
1525         (BLOCK_NAMESPACE): Update access to the namespace_info field.
1526         * buildsym.h (using_directives): Rename into...
1527         (local_using_directives): ... this.
1528         (global_using_directives): New.
1529         (struct context_stack): Rename the using_directives field into
1530         local_using_directives.
1531         * buildsym.c (finish_block_internal): Deal with the proper
1532         using directives repository (local or global).
1533         (prepare_for_building): Reset local_using_directives. Assert
1534         that there is no pending global using directive.
1535         (reset_symtab_globals): Reset global_using_directives and
1536         local_using_directives.
1537         (end_symtab_get_static_block): Don't ignore symtabs that have
1538         only using directives.
1539         (push_context): Update references to local_using_directives.
1540         (buildsym_init): Do not reset using_directives.
1541         * cp-support.c: Include namespace.h.
1542         * cp-support.h (struct using_direct): Move to namespace.h.
1543         (cp_add_using_directives): Move to namespace.h.
1544         * cp-namespace.c: Include namespace.h
1545         (cp_add_using_directive): Move to namespace.c, rename it to
1546         add_using_directive, add a "using_directives" argument and use
1547         it as the pending using directives repository.  All callers
1548         updated.
1549         * dwarf2read.c (using_directives): New.
1550         (read_import_statement): Call using_directives.
1551         (read_func_scope): Update references to local_using_directives.
1552         (read_lexical_block_scope): Likewise.
1553         (read_namespace): Update the heading comment, call
1554         using_directives.
1555         * namespace.h: New file.
1556         * namespace.c: New file.
1557         * Makefile.in (SFILES): Add namespace.c.
1558         (COMMON_OBS): Add namespace.o
1559
1560 2015-08-12  Joel Brobecker  <brobecker@adacore.com>
1561
1562         * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
1563         compute RETADDR.
1564
1565 2015-08-12  Keith Seitz  <keiths@redhat.com>
1566
1567         * break-catch-throw.c (re_set_exception_catchpoint) Rename
1568         reserved C++ keyword "explicit" to "explicit_loc".
1569         * breakpoint.c (create_overlay_event_breakpoint)
1570         (create_longjmp_master_breakpoint)
1571         (create_std_terminate_master_breakpoint)
1572         (create_exception_master_breakpoint, update_static_tracepoint):
1573         Rename reserved C++ keyword "explicit" to "explicit_loc".
1574         * completer.c (collect_explicit_location_matches)
1575         (explicit_location_completer): Rename reserved C++ keyword
1576         "explicit" to "explicit_loc".
1577         * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
1578         (canonicalize_linespec, create_sals_line_offset)
1579         (convert_linespec_to_sals, convert_explicit_location_to_sals)
1580         (event_location_to_sals, decode_objc): Rename reserved C++ keyword
1581         "explicit" to "explicit_loc".
1582         * location.c (struct event_location) <explicit>: Rename to
1583         "explicit_loc".
1584         (initialize_explicit_location, new_explicit_location)
1585         (explicit_location_to_string_internal, explicit_location_to_linespec):
1586         Rename reserved C++ keyword "explicit" to "explicit_loc".
1587         * location.h (explicit_location_to_string)
1588         (explicit_location_to_linespec, initialize_explicit_location)
1589         (new_explicit_location): Rename reserved C++ keyword "explicit"
1590         to "explicit_loc".
1591         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
1592         keyword "explicit" to "explicit_loc".
1593
1594 2015-08-12  Keith Seitz  <keiths@redhat.com>
1595
1596         * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
1597         and only call decode_line_1 when it is non-NULL.
1598
1599 2015-08-12  Luis Machado  <lgustavo@codesourcery.com>
1600
1601         * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
1602         location address is not meaningful.
1603         (breakpoint_address_is_meaningful): Update comment.
1604
1605 2015-08-11  Keith Seitz  <keiths@redhat.com>
1606
1607         * NEWS: Mention explicit locations.
1608         * breakpoint.c [LOCATION_HELP_STRING]: New macro.
1609         [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
1610         (_initialize_breakpoint): Update documentation for
1611         "clear", "break", "trace", "strace", "ftrace", and "dprintf".
1612
1613 2015-08-11  Keith Seitz  <keiths@redhat.com>
1614
1615         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
1616         explicit locations, options "--source", "--function",
1617         "--label", and "--line".
1618
1619 2015-08-11  Keith Seitz  <keiths@redhat.com>
1620
1621         * completer.c: Include location.h.
1622         (enum match_type): New enum.
1623         (location_completer): Rename to ...
1624         (linespec_completer): ... this.
1625         (collect_explicit_location_matches, backup_text_ptr)
1626         (explicit_location_completer): New functions.
1627         (location_completer): "New" function; handle linespec
1628         and explicit location completions.
1629         (complete_line_internal): Remove all location completer-specific
1630         handling.
1631         * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
1632         (find_toplevel_char): Export.
1633         (linespec_parse_line_offset): Export.
1634         Issue error if STRING is not numerical.
1635         (gdb_get_linespec_parser_quote_characters): New function.
1636         * linespec.h (linespec_parse_line_offset): Declare.
1637         (get_gdb_linespec_parser_quote_characters): Declare.
1638         (is_ada_operator): Declare.
1639         (find_toplevel_char): Declare.
1640         (linespec_lexer_lex_keyword): Declare.
1641         * location.c (explicit_to_event_location): New function.
1642         (explicit_location_lex_one): New function.
1643         (string_to_explicit_location): New function.
1644         (string_to_event_location): Handle explicit locations.
1645         * location.h (explicit_to_event_location): Declare.
1646         (string_to_explicit_location): Declare.
1647
1648 2015-08-11  Keith Seitz  <keiths@redhat.com>
1649
1650         * break-catch-throw.c (re_set_exception_catchpoint): Convert
1651         linespec into explicit location.
1652         * breakpoint.c (create_overlay_breakpoint)
1653         (create_longjmp_master_breakpoint)
1654         (create_std_terminate_master_breakpoint)
1655         (create_exception_master_breakpoint): Convert linespec into explicit
1656         location.
1657         (update_static_tracepoint): Convert linespec into explicit location.
1658         * linespec.c (enum offset_relative_sign, struct line_offset): Move
1659         location.h.
1660         (struct linespec) <expression, expr_pc, source_filename>
1661         <function_name, label_name, line_offset>: Replace with ...
1662         <explicit>: ... this.
1663         <is_linespec>: New member.
1664         (PARSER_EXPLICIT): New accessor macro.
1665         (undefined_label_error): New function.
1666         (source_file_not_found_error): New function.
1667         (linespec_parse_basic): The parser result is now an explicit location.
1668         Use PARSER_EXPLICIT to access it.
1669         Use undefined_label_error.
1670         (canonicalize_linespec): Convert canonical linespec into explicit
1671         location.
1672         Move string representation of location to explicit_location_to_linespec
1673         and use it and explicit_location_to_string to save string
1674         representations of the canonical location.
1675         (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
1676         explicit location.  Update all references.
1677         (convert_explicit_location_to_sals): New function.
1678         (parse_linespec): Use PARSER_EXPLICIT to access the parser
1679         result's explicit location.
1680         (linespec_state_constructor): Initialize is_linespec.
1681         Use PARSER_EXPLICIT.
1682         (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
1683         result.
1684         (event_location_to_sals): For linespec locations, set is_linespec.
1685         Handle explicit locations.
1686         (decode_objc): 'ls' contains an explicit location now. Update all
1687         references.
1688         (symtabs_from_filename): Use source_file_not_found_error.
1689         * location.c (struct event_location.u) <explicit>: New member.
1690         (initialize_explicit_location): New function.
1691         (initialize_event_location): Initialize explicit locations.
1692         (new_explicit_location, get_explicit_location)
1693         (get_explicit_location_const): New functions.
1694         (explicit_to_string_internal): New function; most of contents moved
1695         from canonicalize_linespec.
1696         (explicit_location_to_string): New function.
1697         (explicit_location_to_linespec): New function.
1698         (copy_event_location, delete_event_location)
1699         (event_location_to_string_const, event_location_empty_p): Handle
1700         explicit locations.
1701         * location.h (enum offset_relative_sign, struct line_offset): Move
1702         here from linespec.h.
1703         (enum event_location_type): Add EXPLICIT_LOCATION.
1704         (struct explicit_location): New structure.
1705         (explicit_location_to_string): Declare.
1706         (explicit_location_to_linespec): Declare.
1707         (new_explicit_location, get_explicit_locationp
1708         (get_explicit_location_const, initialize_explicit_location): Declare.
1709
1710 2015-08-11  Keith Seitz  <keiths@redhat.com>
1711
1712         * break-catch-throw.c (re_set_exception_catchpoint): Convert
1713         linespec for stap probe to probe location.
1714         * breakpoint.c (create_longjmp_master_breakpoint)
1715         (create_exception_master_breakpoint): Likewise.
1716         (break_command_1): Remove local variable `arg_cp'.
1717         Check location type to set appropriate breakpoint ops methods.
1718         (trace_command): Likewise.
1719         * linespec.c (event_location_to_sals): Assert on probe locations.
1720         * location.c (EL_PROBE): Add macro definition.
1721         (new_probe_location, get_probe_location): New functions.
1722         (copy_event_location, delete_event_location, event_location_to_string)
1723         (string_to_event_location, event_location_empty_p): Handle probe
1724         locations.
1725         * location.h (enum event_location_type): Add PROBE_LOCATION.
1726         (new_probe_location, get_probe_location): Declare.
1727         * probe.c (parse_probes): Assert that LOCATION is a probe location.
1728         Convert linespec into probe location.
1729
1730 2015-08-11  Keith Seitz  <keiths@redhat.com>
1731
1732         * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
1733         Convert linespec to address location.
1734         * linespec.c (canonicalize_linespec): Do not handle address
1735         locations here.
1736         (convert_address_location_to_sals): New function; contents moved
1737         from ...
1738         (convert_linespc_to_sals): ... here.
1739         (parse_linespec): Remove address locations from linespec grammar.
1740         Remove handling of address locations.
1741         (linespec_lex_to_end): Remove handling of address linespecs.
1742         (event_location_to_sals): Handle ADDRESS_LOCATION.
1743         (linespec_expression_to_pc): Export.
1744         * linespec.h (linespec_expression_to_pc): Add declaration.
1745         * location.c (struct event_location.u) <address>: New member.
1746         (new_address_location, get_address_location): New functions.
1747         (copy_event_location, delete_event_location, event_location_to_string)
1748         (string_to_event_location, event_location_empty_p): Handle address
1749         locations.
1750         * location.h (enum event_location_type): Add ADDRESS_LOCATION.
1751         (new_address_location, get_address_location): Declare.
1752         * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
1753         to address location.
1754         * spu-tdep.c (spu_catch_start): Likewise.
1755
1756 2015-08-11  Keith Seitz  <keiths@redhat.com>
1757
1758         * ax-gdb.c: Include location.h.
1759         (agent_command_1) Use linespec location instead of address
1760         string.
1761         * break-catch-throw.c: Include location.h.
1762         (re_set_exception_catchpoint): Use linespec locations instead
1763         of address strings.
1764         * breakpoint.c: Include location.h.
1765         (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
1766         (create_std_terminate_master_breakpoint)
1767         (create_exception_master_breakpoint, update_breakpoints_after_exec):
1768         Use linespec location instead of address string.
1769         (print_breakpoint_location):  Use locations and
1770         event_location_to_string.
1771         Print extra_string for pending locations for non-MI streams.
1772         (print_one_breakpoint_location): Use locations and
1773         event_location_to_string.
1774         (init_raw_breakpoint_without_location): Initialize b->location.
1775         (create_thread_event_breakpoint): Use linespec location instead of
1776         address string.
1777         (init_breakpoint_sal): Likewise.
1778         Only save extra_string if it is non-NULL and not the empty string.
1779         Use event_location_to_string instead of `addr_string'.
1780         Constify `p' and `endp'.
1781         Use skip_spaces_const/skip_space_const instead of non-const versions.
1782         Copy the location into the breakpoint.
1783         If LOCATION is NULL, save the breakpoint address as a linespec location
1784         instead of an address string.
1785         (create_breakpoint_sal): Change `addr_string' parameter to a struct
1786         event_location. All uses updated.
1787         (create_breakpoints_sal): Likewise for local variable `addr_string'.
1788         (parse_breakpoint_sals): Use locations instead of address strings.
1789         Remove check for empty linespec with conditional.
1790         Refactor.
1791         (decode_static_tracepoint_spec): Make argument const and update
1792         function.
1793         (create_breakpoint): Change `arg' to a struct event_location and
1794         rename.
1795         Remove `copy_arg' and `addr_start'.
1796         If EXTRA_STRING is empty, set it to NULL.
1797         Don't populate `canonical' for pending breakpoints.
1798         Pass `extra_string' to find_condition_and_thread.
1799         Clear `extra_string' if `rest' was NULL.
1800         Do not error with "garbage after location" if setting a dprintf
1801         breakpoint.
1802         Copy the location into the breakpoint instead of an address string.
1803         (break_command_1): Use string_to_event_location and pass this to
1804         create_breakpoint instead of an address string.
1805         Check against `arg_cp' for a probe linespec.
1806         (dprintf_command): Use string_to_event_location and pass this to
1807         create_breakpoint instead of an address string.
1808         Throw an exception if no format string was specified.
1809         (print_recreate_ranged_breakpoint): Use event_location_to_string
1810         instead of address strings.
1811         (break_range_command, until_break_command)
1812         (init_ada_exception_breakpoint): Use locations instead
1813         of address strings.
1814         (say_where): Print out extra_string for pending locations.
1815         (base_breakpoint_dtor): Delete `location' and `location_range_end' of
1816         the breakpoint.
1817         (base_breakpoint_create_sals_from_location): Use struct event_location
1818         instead of address string.
1819         Remove `addr_start' and `copy_arg' parameters.
1820         (base_breakpoint_decode_location): Use struct event_location instead of
1821         address string.
1822         (bkpt_re_set): Use locations instead of address strings.
1823         Use event_location_empty_p to check for unset location.
1824         (bkpt_print_recreate): Use event_location_to_string instead of
1825         an address string.
1826         Print out extra_string for pending locations.
1827         (bkpt_create_sals_from_location, bkpt_decode_location)
1828         (bkpt_probe_create_sals_from_location): Use struct event_location
1829         instead of address string.
1830         (bkpt_probe_decode_location): Use struct event_location instead of
1831         address string.
1832         (tracepoint_print_recreate): Use event_location_to_string to
1833         recreate the tracepoint.
1834         (tracepoint_create_sals_from_location, tracepoint_decode_location)
1835         (tracepoint_probe_create_sals_from_location)
1836         (tracepoint_probe_decode_location): Use struct event_location
1837         instead of address string.
1838         (dprintf_print_recreate): Use event_location_to_string to recreate
1839         the dprintf.
1840         (dprintf_re_set): Remove check for valid/missing format string.
1841         (strace_marker_create_sals_from_location)
1842         (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
1843         (update_static_tracepoint): Use struct event_location instead of
1844         address string.
1845         (location_to_sals): Likewise.
1846         Pass `extra_string' to find_condition_and_thread.
1847         For newly resolved pending breakpoint locations, clear the location's
1848         string representation.
1849         Assert that the breakpoint's condition string is NULL when
1850         condition_not_parsed.
1851         (breakpoint_re_set_default, create_sals_from_location_default)
1852         (decode_location_default, trace_command, ftrace_command)
1853         (strace_command, create_tracepoint_from_upload): Use locations
1854         instead of address strings.
1855         * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
1856         Use struct event_location instead of address string.
1857         Update all uses.
1858         <decode_location>: Likewise.
1859         (struct breakpoint) <addr_string>: Change to struct event_location
1860         and rename `location'.
1861         <addr_string_range_end>: Change to struct event_location and rename
1862         `location_range_end'.
1863         (create_breakpoint): Use struct event_location instead of address
1864         string.
1865         * cli/cli-cmds.c: Include location.h.
1866         (edit_command, list_command): Use locations instead of address strings.
1867         * elfread.c: Include location.h.
1868         (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
1869         * guile/scm-breakpoint.c: Include location.h.
1870         (bpscm_print_breakpoint_smob): Use event_location_to_string.
1871         (gdbscm_register_breakpoint): Use locations instead of address
1872         strings.
1873         * linespec.c: Include location.h.
1874         (struct ls_parser) <stream>: Change to const char *.
1875         (PARSER_STREAM): Update.
1876         (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
1877         keywords must be followed by whitespace.
1878         (canonicalize_linespec): Save a linespec location into `canonical'.
1879         Save a canonical linespec into `canonical'.
1880         (parse_linespec): Change `argptr' to const char * and rename `arg'.
1881         All uses updated.
1882         Update function description.
1883         (linespec_parser_new): Initialize `parser'.
1884         Update initialization of  parsing stream.
1885         (event_location_to_sals): New function.
1886         (decode_line_full): Change `argptr' to a struct event_location and
1887         rename it `location'.
1888         Use locations instead of address strings.
1889         Call event_location_to_sals instead of parse_linespec.
1890         (decode_line_1): Likewise.
1891         (decode_line_with_current_source, decode_line_with_last_displayed)
1892         Use locations instead of address strings.
1893         (decode_objc): Likewise.
1894         Change `argptr' to const char * and rename `arg'.
1895         (destroy_linespec_result): Delete the linespec result's location
1896         instead of freeing the address string.
1897         * linespec.h (struct linespec_result) <addr_string>: Change to
1898         struct event_location and rename to ...
1899         <location>: ... this.
1900         (decode_line_1, decode_line_full): Change `argptr' to struct
1901         event_location.  All callers updated.
1902         * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
1903         (mi_cmd_break_insert_1): Use locations instead of address strings.
1904         Throw an error if there was "garbage" at the end of the specified
1905         linespec.
1906         * probe.c: Include location.h.
1907         (parse_probes): Change `argptr' to struct event_location.
1908         Use event locations instead of address strings.
1909         * probe.h (parse_probes): Change `argptr' to struct event_location.
1910         * python/py-breakpoint.c: Include location.h.
1911         (bppy_get_location): Constify local variable `str'.
1912         Use event_location_to_string.
1913         (bppy_init): Use locations instead of address strings.
1914         * python/py-finishbreakpoint.c: Include location.h.
1915         (bpfinishpy_init): Remove local variable `addr_str'.
1916         Use locations instead of address strings.
1917         * python/python.c: Include location.h.
1918         (gdbpy_decode_line): Use locations instead of address strings.
1919         * remote.c: Include location.h.
1920         (remote_download_tracepoint): Use locations instead of address
1921         strings.
1922         * spu-tdep.c: Include location.h.
1923         (spu_catch_start): Remove local variable `buf'.
1924         Use locations instead of address strings.
1925         * tracepoint.c: Include location.h.
1926         (scope_info): Use locations instead of address strings.
1927         (encode_source_string): Constify parameter `src'.
1928         * tracepoint.h (encode_source_string): Likewise.
1929
1930 2015-08-11  Keith Seitz  <keiths@redhat.com>
1931
1932         * Makefile.in (SFILES): Add location.c.
1933         (HFILES_NO_SRCDIR): Add location.h.
1934         (COMMON_OBS): Add location.o.
1935         * linespec.c (linespec_lex_to_end): New function.
1936         * linespec.h (linespec_lex_to_end): Declare.
1937         * location.c: New file.
1938         * location.h: New file.
1939
1940 2015-08-11  Keith Seitz  <keiths@redhat.com>
1941
1942         * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
1943         Renamed to create_sals_from_location.
1944         <decode_linespec>: Renamed to decode_location.
1945         Update all callers.
1946         * breakpoint.c (create_sals_from_address_default): Renamed to ...
1947         (create_sals_from_location_default): ... this.
1948         (addr_string_to_sals): Renamed to ...
1949         (location_to_sals): ... this.
1950         (decode_linespec_default): Renamed to ...
1951         (decode_location_default): ... this.
1952         (base_breakpoint_create_sals_from_address): Renamed to ...
1953         (base_breakpoint_create_sals_from_location): ... this.
1954         (bkpt_create_sals_from_address): Renamed to ...
1955         (bkpt_create_sals_from_location): ... this.
1956         (bkpt_decode_linespec): Renamed to ...
1957         (bkpt_decode_location): ... this.
1958         (bkpt_probe_create_sals_from_address): Renamed to ...
1959         (bkpt_probe_create_sals_from_location): ... this.
1960         (tracepoint_create_sals_from_address): Renamed to ...
1961         (tracepoint_create_sals_from_location): ... this.
1962         (tracepoint_decode_linespec): Renamed to ...
1963         (tracepoint_decode_location): ... this.
1964         (tracepoint_probe_create_sals_from_address): Renamed to ...
1965         (tracepoint_probe_create_sals_from_location): ... this.
1966         (tracepoint_probe_decode_linespec): Renamed to ...
1967         (tracepoint_probe_decode_location): ... this.
1968         (strace_marker_create_sals_from_address): Renamed to ...
1969         (strace_marker_create_sals_from_location): ... this.
1970         (decode_linespec_default): Renamed to ...
1971         (decode_location_default): ... this.
1972
1973 2015-08-10  Doug Evans  <dje@google.com>
1974             Keith Seitz  <keiths@redhat.com>
1975
1976         PR gdb/17960
1977         * symtab.c (make_file_symbol_completion_list_1): Renamed from
1978         make_file_symbol_completion_list and made static.
1979         (make_file_symbol_completion_list): New function.
1980
1981 2015-08-10  Joel Brobecker  <brobecker@adacore.com>
1982
1983         * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
1984         trailing new-line at end of warning message.
1985         (proceed): Add i18n marker to error messages.
1986
1987 2015-08-07  Pedro Alves  <palves@redhat.com>
1988
1989         * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
1990
1991 2015-08-07  Pedro Alves  <palves@redhat.com>
1992
1993         * s390-linux-tdep.c (is_non_branch_ril)
1994         (s390_displaced_step_copy_insn): New functions.
1995         (s390_displaced_step_fixup): Update comment.
1996         (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
1997         gdbarch_displaced_step_copy_insn hook.
1998
1999 2015-08-07  Pedro Alves  <palves@redhat.com>
2000
2001         * infrun.c (displaced_step_prepare_throw): Return -1 if
2002         gdbarch_displaced_step_copy_insn returns NULL.  Update intro
2003         comment.
2004         * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
2005         (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
2006         in file.
2007         (ppc_displaced_step_copy_insn): New function.
2008         (ppc_displaced_step_fixup): Update comment.
2009         (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
2010         gdbarch_displaced_step_copy_insn hook.
2011         * gdbarch.sh (displaced_step_copy_insn): Document what happens on
2012         NULL return.
2013         * gdbarch.h: Regenerate.
2014
2015 2015-08-07  Pedro Alves  <palves@redhat.com>
2016
2017         * inferior.h (struct inferior) <displaced_stepping_failed>: New
2018         field.
2019         * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
2020         Return false if dispaced stepping failed before.
2021         (resume): Pass the current inferior to
2022         use_displaced_stepping_now_p.  Wrap displaced_step_prepare in
2023         TRY/CATCH.  If we get a MEMORY_ERROR, set the inferior's
2024         displaced_stepping_failed flag, and fall back to an in-line
2025         step-over.
2026
2027 2015-08-07  Pedro Alves  <palves@redhat.com>
2028
2029         * darwin-nat.c (darwin_stop): Rename to ...
2030         (darwin_interrupt): ... this.
2031         (_initialize_darwin_inferior): Adjust.
2032         * gnu-nat.c (gnu_stop): Delete.
2033         (gnu_target): Don't install gnu_stop.
2034         * inf-ptrace.c (inf_ptrace_stop): Rename to ...
2035         (inf_ptrace_interrupt): ... this.
2036         (inf_ptrace_target): Adjust.
2037         * infcmd.c (interrupt_target_1): Use target_interrupt instead of
2038         target_stop.
2039         * linux-nat (linux_nat_stop): Rename to ...
2040         (linux_nat_interrupt): ... this.
2041         (linux_nat_stop): Reimplement.
2042         (linux_nat_add_target): Install linux_nat_interrupt.
2043         * nto-procfs.c (nto_interrupt_twice): Rename to ...
2044         (nto_handle_sigint_twice): ... this.
2045         (nto_interrupt): Rename to ...
2046         (nto_handle_sigint): ... this.  Call target_interrupt instead of
2047         target_stop.
2048         (procfs_wait): Adjust.
2049         (procfs_stop): Rename to ...
2050         (procfs_interrupt): ... this.
2051         (init_procfs_targets): Adjust.
2052         * procfs.c (procfs_stop): Rename to ...
2053         (procfs_interrupt): ... this.
2054         (procfs_target): Adjust.
2055         * remote-m32r-sdi.c (m32r_stop): Rename to ...
2056         (m32r_interrupt): ... this.
2057         (init_m32r_ops): Adjust.
2058         * remote-sim.c (gdbsim_stop_inferior): Rename to ...
2059         (gdbsim_interrupt_inferior): ... this.
2060         (gdbsim_stop): Rename to ...
2061         (gdbsim_interrupt): ... this.
2062         (gdbsim_cntrl_c): Adjust.
2063         (init_gdbsim_ops): Adjust.
2064         * remote.c (sync_remote_interrupt): Adjust comments.
2065         (remote_stop_as): Rename to ...
2066         (remote_interrupt_as): ... this.
2067         (remote_stop): Adjust comment.
2068         (remote_interrupt): New function.
2069         (init_remote_ops): Install remote_interrupt.
2070         * target.c (target_interrupt): New function.
2071         * target.h (struct target_ops) <to_interrupt>: New field.
2072         (target_interrupt): New declaration.
2073         * windows-nat.c (windows_stop): Rename to ...
2074         (windows_interrupt): ... this.
2075         * target-delegates.c: Regenerate.
2076
2077 2015-08-07  Pedro Alves  <palves@redhat.com>
2078
2079         * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
2080         threads" as alternative to "switching back to stepped thread".
2081
2082 2015-08-07  Pedro Alves  <palves@redhat.com>
2083
2084         * NEWS: Mention "maint set/show target-non-stop".
2085         * breakpoint.c (update_global_location_list): Check
2086         target_is_non_stop_p instead of non_stop.
2087         * infcmd.c (attach_command_post_wait, attach_command): Likewise.
2088         * infrun.c (show_can_use_displaced_stepping)
2089         (can_use_displaced_stepping_p, start_step_over_inferior):
2090         Likewise.
2091         (internal_resume_ptid): New function.
2092         (resume): Use it.
2093         (proceed): Check target_is_non_stop_p instead of non_stop.  If in
2094         all-stop mode but the target is always in non-stop mode, start all
2095         the other threads that are implicitly resumed too.
2096         (for_each_just_stopped_thread, fetch_inferior_event)
2097         (adjust_pc_after_break, stop_all_threads): Check
2098         target_is_non_stop_p instead of non_stop.
2099         (handle_inferior_event): Likewise.  Handle detach-fork in all-stop
2100         with the target always in non-stop mode.
2101         (handle_signal_stop) <random signal>: Check target_is_non_stop_p
2102         instead of non_stop.
2103         (switch_back_to_stepped_thread): Check target_is_non_stop_p
2104         instead of non_stop.
2105         (keep_going_stepped_thread): Use internal_resume_ptid.
2106         (stop_waiting): If in all-stop mode, and the target is in non-stop
2107         mode, stop all threads.
2108         (keep_going_pass): Likewise, when starting a new in-line step-over
2109         sequence.
2110         * linux-nat.c (get_pending_status, select_event_lwp)
2111         (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
2112         target_is_non_stop_p instead of non_stop.
2113         (linux_nat_always_non_stop_p): New function.
2114         (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
2115         (linux_nat_add_target): Install linux_nat_always_non_stop_p.
2116         * target-delegates.c: Regenerate.
2117         * target.c (target_is_non_stop_p): New function.
2118         (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
2119         (maint_set_target_non_stop_command)
2120         (maint_show_target_non_stop_command): New functions.
2121         (_initilize_target): Install "maint set/show target-non-stop"
2122         commands.
2123         * target.h (struct target_ops) <to_always_non_stop_p>: New field.
2124         (target_non_stop_enabled): New declaration.
2125         (target_is_non_stop_p): New declaration.
2126
2127 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
2128
2129         * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
2130         has a pending status, return true.
2131         * gdbthread.h: Include target/waitstatus.h.
2132         (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
2133         stop_pc>: New fields.
2134         (struct thread_info) <resumed>: New field.
2135         (set_resumed): Declare.
2136         * infrun.c: Include "event-loop.h".
2137         (infrun_async_inferior_event_token, infrun_is_async): New globals.
2138         (infrun_async): New function.
2139         (clear_step_over_info): Add debug output.
2140         (displaced_step_in_progress_any_inferior): New function.
2141         (displaced_step_fixup): New returns int.
2142         (start_step_over): Handle in-line step-overs too.  Assert the
2143         thread is marked resumed.
2144         (resume_cleanups): Clear the thread's resumed flag.
2145         (resume): Set the thread's resumed flag.  Return early if the
2146         thread has a pending status.  Allow stepping a breakpoint with no
2147         signal.
2148         (proceed): Adjust to check 'resumed' instead of 'executing'.
2149         (clear_proceed_status_thread): If the thread has a pending status,
2150         and that status is a finished step, discard the pending status.
2151         (clear_proceed_status): Don't clear step_over_info here.
2152         (random_pending_event_thread, do_target_wait): New functions.
2153         (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
2154         do_target_wait.
2155         (wait_one): New function.
2156         (THREAD_STOPPED_BY): New macro.
2157         (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
2158         (thread_stopped_by_hw_breakpoint): New functions.
2159         (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
2160         functions.
2161         (handle_inferior_event): Also call set_resumed(false) on all
2162         threads implicitly stopped by the event.
2163         (restart_threads, resumed_thread_with_pending_status): New
2164         functions.
2165         (finish_step_over): If we were doing an in-line step-over before,
2166         and no longer are after trying to start a new step-over, restart
2167         all threads.  If we have multiple threads with pending events,
2168         save the current event and go through the event loop again.
2169         (handle_signal_stop): Return early if finish_step_over returns
2170         false.
2171         <random signal>: If we get a signal while stepping over a
2172         breakpoint in-line in non-stop mode, restart all threads.  Clear
2173         step_over_info before delivering the signal.
2174         (keep_going_stepped_thread): Use internal_error instead of
2175         gdb_assert.  Mark the thread as resumed.
2176         (keep_going_pass_signal): Assert the thread isn't already resumed.
2177         If some other thread is doing an in-line step-over, defer the
2178         resume.  If we just started a new in-line step-over, stop all
2179         threads.  Don't clear step_over_info.
2180         (infrun_async_inferior_event_handler): New function.
2181         (_initialize_infrun): Create async event handler with
2182         infrun_async_inferior_event_handler as callback.
2183         (infrun_async): New declaration.
2184         * target.c (target_async): New function.
2185         * target.h (target_async): Declare macro and readd as function
2186         declaration.
2187         * target/waitstatus.h (enum target_stop_reason)
2188         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
2189         * thread.c (new_thread): Clear the new waitstatus field.
2190         (set_resumed): New function.
2191
2192 2015-08-07  Pedro Alves  <palves@redhat.com>
2193
2194         * infrun.c (keep_going_stepped_thread): New function, factored out
2195         from ...
2196         (switch_back_to_stepped_thread): ... here.
2197
2198 2015-08-07  Pedro Alves  <palves@redhat.com>
2199
2200         * infrun.c (currently_stepping): Extend intro comment.
2201         * target.h (target_resume): Extend intro comment.
2202
2203 2015-08-07  Pedro Alves  <palves@redhat.com>
2204
2205         * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
2206         of inferior_ptid.  If the stepped thread vanished, return 0
2207         instead of resuming here.  Use reset_ecs.  Print the prev_pc and
2208         the current stop_pc in log message.  Clear trap_expected if the
2209         thread advanced.  Don't pass currently_stepping to
2210         do_target_resume.
2211
2212 2015-08-07  Pedro Alves  <palves@redhat.com>
2213
2214         * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
2215         * infrun.c (struct execution_control_state): Move higher up in the
2216         file.
2217         (reset_ecs): New function.
2218         (start_step_over): Now returns int.  Rewrite to use
2219         keep_going_pass_signal instead of manually starting a displaced step.
2220         (resume): Don't call set_running here.  If displaced stepping
2221         can't start now, clear trap_expected.
2222         (find_thread_needs_step_over): Delete function.
2223         (proceed): Set up finish_thread_state_cleanup.  Call set_running.
2224         If the current thread needs a step over, push it in the step-over
2225         chain.  Don't set insert breakpoints nor call resume directly
2226         here.  Instead rewrite to use start_step_over and
2227         keep_going_pass_signal.
2228         (finish_step_over): New function.
2229         (handle_signal_stop): Call finish_step_over instead of
2230         start_step_over.
2231         (switch_back_to_stepped_thread): If the event thread needs another
2232         step-over do that first.  Use start_step_over.
2233         (keep_going_pass_signal): New function, factored out from ...
2234         (keep_going): ... here.
2235         (_initialize_infrun): Comment moved here.
2236         * thread.c (set_running_thread): New function.
2237         (set_running, finish_thread_state): Use set_running_thread.
2238
2239 2015-08-07  Pedro Alves  <palves@redhat.com>
2240
2241         * gdbthread.h (struct thread_info) <step_over_prev,
2242         step_over_next>: New fields.
2243         (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
2244         (thread_step_over_chain_next, thread_is_in_step_over_chain): New
2245         declarations.
2246         * infrun.c (struct displaced_step_request): Delete.
2247         (struct displaced_step_inferior_state) <step_request_queue>:
2248         Delete field.
2249         (displaced_step_prepare): Assert that trap_expected is set.  Use
2250         thread_step_over_chain_enqueue.  Split starting a new displaced
2251         step to ...
2252         (start_step_over): ... this new function.
2253         (resume): Assert the thread isn't waiting for a step over already.
2254         (proceed): Assert the thread isn't waiting for a step over
2255         already.
2256         (infrun_thread_stop_requested): Adjust to remove threads from the
2257         embedded step-over chain.
2258         (handle_inferior_event) <fork/vfork>: Call start_step_over after
2259         displaced_step_fixup.
2260         (handle_signal_stop): Call start_step_over after
2261         displaced_step_fixup.
2262         * infrun.h (step_over_queue_head): New declaration.
2263         * thread.c (step_over_chain_enqueue, step_over_chain_remove)
2264         (thread_step_over_chain_next, thread_is_in_step_over_chain)
2265         (thread_step_over_chain_enqueue)
2266         (thread_step_over_chain_remove): New functions.
2267         (delete_thread_1): Remove thread from the step-over chain.
2268
2269 2015-08-07  Pedro Alves  <palves@redhat.com>
2270
2271         * infrun.c (thread_still_needs_step_over): Rename to ...
2272         (thread_still_needs_step_over_bp): ... this.
2273         (enum step_over_what): New.
2274         (thread_still_needs_step_over): Reimplement.
2275
2276 2015-08-07  Pedro Alves  <palves@redhat.com>
2277
2278         * remote.c (remote_wait_as): If not waiting for a stop reply,
2279         return TARGET_WAITKIND_NO_RESUMED.  If TARGET_WNOHANG is
2280         requested, don't block waiting forever.
2281
2282 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
2283
2284         * infrun.c (adjust_pc_after_break): Now takes thread_info and
2285         waitstatus pointers instead of an ecs.  Adjust.
2286         (handle_inferior_event): Adjust caller.
2287
2288 2015-08-07  Pedro Alves  <palves@redhat.com>
2289
2290         * infrun.c (handle_inferior_event): If we get
2291         TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
2292         mode, mark all threads of the exiting process as not-executing.
2293         (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
2294         TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
2295         exiting process, if inferior_ptid still points at a process.
2296         * thread.c (struct current_thread_cleanup) <next>: New field.
2297         (current_thread_cleanup_chain): New global.
2298         (restore_current_thread_ptid_changed): New function.
2299         (restore_current_thread_cleanup_dtor): Remove the cleanup from the
2300         current_thread_cleanup_chain list.
2301         (make_cleanup_restore_current_thread): Add the cleanup data to the
2302         current_thread_cleanup_chain list.
2303         (_initialize_thread): Install restore_current_thread_ptid_changed
2304         as thread_ptid_changed observer.
2305
2306 2015-08-07  Joel Brobecker  <brobecker@adacore.com>
2307
2308         * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
2309         data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
2310         smaller than expected.
2311
2312 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
2313
2314         * stack.c (get_frame_language): Moved ...
2315         * frame.c (get_frame_language): ... to here.
2316         * language.h (get_frame_language): Declaration moved to frame.h.
2317         * frame.h: Add language.h include, for language enum.
2318         (get_frame_language): Declaration moved from language.h.
2319         * language.c: Add frame.h include.
2320         * top.c: Add frame.h include.
2321         * symtab.h (struct obj_section): Declare.
2322         (struct cmd_list_element): Declare.
2323
2324 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
2325
2326         * language.c (show_language_command): Find selected frame before
2327         asking for the language of that frame.
2328         (set_language_command): Likewise.
2329         * language.h (get_frame_language): Add frame parameter.
2330         * stack.c (get_frame_language): Add frame parameter, assert
2331         parameter is not NULL, update comment and reindent.
2332         * top.c (check_frame_language_change): Pass the selected frame
2333         into get_frame_language.
2334
2335 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
2336
2337         * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
2338         (pt_btrace_insn_flags): New.
2339         (ftrace_add_pt): Call pt_btrace_insn_flags.
2340         * btrace.h (btrace_insn_flag): New.
2341         (btrace_insn) <flags>: New.
2342         * record-btrace.c (btrace_insn_history): Print insn prefix.
2343         * NEWS: Announce it.
2344
2345 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
2346
2347         * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
2348         * configure: Regenerate.
2349
2350 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
2351
2352         * Makefile.in (LIBICONV): Define.
2353         (CLIBS): Add LIBICONV.
2354         * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
2355         * configure: Regenerate.
2356
2357 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
2358             Pedro Alves  <palves@redhat.com>
2359
2360         * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
2361         (arm_set_abi): Likewise.
2362         * ax-general.c (ax_print): Likewise.
2363         * c-exp.y (exp : string_exp): Likewise.
2364         * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
2365         (do_compile_dwarf_expr_to_c): Likewise.
2366         * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
2367         Likewise.
2368         * dwarf2expr.c (execute_stack_op): Likewise.
2369         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
2370         (disassemble_dwarf_expression): Likewise.
2371         * dwarf2read.c (dwarf2_add_member_fn): Likewise.
2372         (read_array_order): Likewise.
2373         (abbrev_table_read_table): Likewise.
2374         (read_attribute_value): Likewise.
2375         (skip_unknown_opcode): Likewise.
2376         (dwarf_decode_macro_bytes): Likewise.
2377         (dwarf_decode_macros): Likewise.
2378         * eval.c (value_f90_subarray): Likewise.
2379         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
2380         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
2381         * infrun.c (handle_command): Likewise.
2382         * memory-map.c (memory_map_start_memory): Likewise.
2383         * osabi.c (set_osabi): Likewise.
2384         * parse.c (operator_length_standard): Likewise.
2385         * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
2386         single return point.
2387         * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
2388         * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
2389         (gdbpy_lookup_global_symbol): Likewise.
2390         * record-full.c (record_full_restore): Likewise.
2391         * regcache.c (regcache_register_status): Likewise.
2392         (regcache_raw_read): Likewise.
2393         (regcache_cooked_read): Likewise.
2394         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
2395         * symtab.c (initialize_ordinary_address_classes): Likewise.
2396         * target-debug.h (target_debug_print_signals): Likewise.
2397         * utils.c (do_restore_current_language): Likewise.
2398
2399 2015-08-06  Clem Dickey  <clemd@acm.org>
2400
2401         PR python/17136
2402         * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
2403
2404 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
2405
2406         * complaints.c (enum complaint_series): Add newlines and remove
2407         out of date comment.
2408         (struct complaints) <series>: Change type to enum
2409         complaint_series and remove out of date comment.
2410         (symfile_complaint_hook): Use equivalent enum value
2411         ISOLATED_MESSAGE instead of 0.
2412
2413 2015-08-06  Pedro Alves  <palves@redhat.com>
2414
2415         * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
2416         returned > 0.
2417
2418 2015-08-06  Pierre Langlois  <pierre.langlois@arm.com>
2419
2420         * common/agent.c (symbol_list) <required>: Remove.
2421
2422 2015-08-06  Pedro Alves  <palves@redhat.com>
2423
2424         * target/waitstatus.h (enum target_stop_reason)
2425         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
2426
2427 2015-08-05  Pedro Alves  <palves@redhat.com>
2428             Joel Brobecker  <brobecker@adacore.com>
2429
2430         * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
2431         <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
2432         case where BS->STOP is not set.
2433
2434 2015-08-05  Ulrich Weigand  <uweigand@de.ibm.com>
2435
2436         * nat/gdb_thread_db.h: Add copyright header.
2437         Protect against multiple inclusion.
2438
2439 2015-08-05  Yao Qi  <yao.qi@linaro.org>
2440
2441         * aarch64-linux-nat.c (get_thread_id): Remove.
2442         (debug_reg_change_callback): Call ptid_get_lwp instead of
2443         get_thread_id.
2444         (fetch_gregs_from_thread): Likewise.
2445         (store_gregs_to_thread): Likewise.
2446         (fetch_fpregs_from_thread): Likewise.
2447         (store_fpregs_to_thread): Likewise.
2448         (aarch64_linux_get_debug_reg_capacity): Likewise.
2449         * arm-linux-nat.c (get_thread_id): Remove.
2450         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
2451         * xtensa-linux-nat.c (get_thread_id): Remove.
2452         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
2453         * arm-linux-nat.c (get_thread_id): Remove.
2454         (GET_THREAD_ID): Remove.
2455         (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
2456         (store_fpregs, fetch_regs, store_regs): Likewise.
2457         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
2458         (fetch_vfp_regs, store_vfp_regs): Likewise.
2459         (arm_linux_read_description): Likewise.
2460         (arm_linux_get_hwbp_cap): Likewise.
2461         * xtensa-linux-nat.c (get_thread_id): Remove.
2462         (GET_THREAD_ID): Remove.
2463         (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
2464         GET_THREAD_ID.
2465
2466 2015-08-04  Ciro Santilli  <ciro.santilli@gmail.com>  (obvious patch)
2467
2468         * python/py-linetable.c: Fix case of Linetable to LineTable
2469         in docstrings and code comments.
2470         * python/py-symtab.c: Same.
2471
2472 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2473
2474         * infcmd.c (signal_command): Call do_cleanups for args_chain.
2475
2476 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2477
2478         PR gdb/18767
2479         * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
2480         use.
2481
2482 2015-08-04  Pedro Alves  <palves@redhat.com>
2483
2484         * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
2485         (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
2486         (td_ta_event_addr_ftype, td_ta_set_event_ftype)
2487         (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
2488         (td_thr_validate_ftype, td_thr_get_info_ftype)
2489         (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
2490         (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
2491         New typedefs.
2492         * linux-thread-db.c (struct thread_db_info): Use new typedefs.
2493         (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
2494         local macros and use them instead of verbose_dlsym and dlsym
2495         calls.
2496
2497 2015-08-03  Sandra Loosemore  <sandra@codesourcery.com>
2498
2499         * nios2-tdep.h: Include opcode/nios2.h here.
2500         (NIOS2_CDX_OPCODE_SIZE): New.
2501         (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
2502         * nios2-tdep.c: Don't include opcode/nios2.h here.
2503         (nios2_fetch_insn): For R2, try reading 2-byte instruction if
2504         4-byte read fails.
2505         (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
2506         (nios2_match_addi, nios2_match_orhi): Likewise.
2507         (nios2_match_stw, nios2_match_ldw): Likewise.
2508         (nios2_match_rdctl): Likewise.
2509         (nios2_match_stwm, nios2_match_ldwm): New.
2510         (nios2_match_branch): Add cases for R2 encodings.
2511         (nios2_match_jmpi, nios2_match_calli): Likewise.
2512         (nios2_match_jmpr, nios2_match_callr): Likewise.
2513         (nios2_match_break, nios2_match_trap): Likewise.
2514         (nios2_in_epilogue_p): Add R2 support.
2515         (nios2_analyze_prologue): Update comments.  Recognize R2 CDX
2516         prologues.
2517         (nios2_breakpoint_from_pc): Handle R2 instructions.
2518         (nios2_get_next_pc): Likewise.  Adjust call to
2519         tdep->syscall_next_pc.
2520         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
2521         Renamed from nios2_linux_rt_sigreturn_tramp_frame.  Use
2522         instruction field macros instead of literal hex values.
2523         (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
2524         (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
2525         Use size field from OP instead of assuming all instructions
2526         are the same size.
2527         (nios2_linux_init_abi): Register appropriate unwinder for mach.
2528
2529 2015-08-03  Ulrich Weigand  <uweigand@de.ibm.com>
2530
2531         * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
2532         variable warning with some compilers.
2533
2534 2015-08-03  Yao Qi  <yao.qi@linaro.org>
2535
2536         * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
2537         in comment.  Replace "rw" with "type".
2538         (arm_linux_remove_watchpoint): Change type of "rw" to
2539         "enum target_hw_bp_type".
2540
2541 2015-08-02  Pierre-Marie de Rodat  <derodat@adacore.com>
2542
2543         * alpha-mdebug-tdep.c (find_proc_desc): Update call to
2544         lookup_symbol.
2545         * ft32-tdep.c (ft32_skip_prologue): Likewise.
2546         * moxie-tdep.c (moxie_skip_prologue): Likewise.
2547         * mt-tdep.c (mt_skip_prologue): Likewise.
2548         * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
2549
2550 2015-08-01  Pierre-Marie de Rodat  <derodat@adacore.com>
2551
2552         * ada-exp.y (write_object_renaming): Replace struct
2553         ada_symbol_info with struct block_symbol.  Update field
2554         references accordingly.
2555         (block_lookup, select_possible_type_sym): Likewise.
2556         (find_primitive_type): Likewise.  Also update call to
2557         ada_lookup_symbol to extract the symbol itself.
2558         (write_var_or_type, write_name_assoc): Likewise.
2559         * ada-lang.h (struct ada_symbol_info): Remove.
2560         (ada_lookup_symbol_list): Replace struct ada_symbol_info with
2561         struct block_symbol.
2562         (ada_lookup_encoded_symbol, user_select_syms): Likewise.
2563         (ada_lookup_symbol): Return struct block_symbol instead of a
2564         mere symbol.
2565         * ada-lang.c (defns_collected): Replace struct ada_symbol_info
2566         with struct block_symbol.
2567         (resolve_subexp, ada_resolve_function, sort_choices,
2568         user_select_syms, is_nonfunction, add_defn_to_vec,
2569         num_defns_collected, defns_collected,
2570         symbols_are_identical_enums, remove_extra_symbols,
2571         remove_irrelevant_renamings, add_lookup_symbol_list_worker,
2572         ada_lookup_symbol_list, ada_iterate_over_symbols,
2573         ada_lookup_encoded_symbol, get_var_value): Likewise.
2574         (ada_lookup_symbol): Return a block_symbol instead of a mere
2575         symbol.  Replace struct ada_symbol_info with struct
2576         block_symbol.
2577         (ada_lookup_symbol_nonlocal): Likewise.
2578         (standard_lookup): Make block passing explicit through
2579         lookup_symbol_in_language.
2580         * ada-tasks.c (get_tcb_types_info): Update the calls to
2581         lookup_symbol_in_language to extract the mere symbol out of the
2582         returned value.
2583         (ada_tasks_inferior_data_sniffer): Likewise.
2584         * ax-gdb.c (gen_static_field): Likewise for the call to
2585         lookup_symbol.
2586         (gen_maybe_namespace_elt): Deal with struct block_symbol from
2587         lookup functions.
2588         (gen_expr): Likewise.
2589         * c-exp.y: Likewise.  Remove uses of block_found.
2590         (lex_one_token, classify_inner_name, c_print_token): Likewise.
2591         (classify_name): Likewise.  Rename the "sym" local variable to
2592         "bsym".
2593         * c-valprint.c (print_unpacked_pointer): Likewise.
2594         * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
2595         "sym" parameter from struct symbol * to struct block_symbol.
2596         Use it to remove uses of block_found.  Deal with struct
2597         block_symbol from lookup functions.
2598         (gcc_convert_symbol): Likewise.  Update the call to
2599         convert_symbol_sym.
2600         * compile/compile-object-load.c (compile_object_load): Deal with
2601         struct block_symbol from lookup functions.
2602         * cp-namespace.c (cp_lookup_nested_symbol_1,
2603         cp_lookup_nested_symbol, cp_lookup_bare_symbol,
2604         cp_search_static_and_baseclasses,
2605         cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
2606         cp_lookup_symbol_imports_or_template,
2607         cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
2608         lookup_namespace_scope, cp_lookup_nonlocal,
2609         find_symbol_in_baseclass): Return struct block_symbol instead of
2610         mere symbols and deal with struct block_symbol from lookup
2611         functions.
2612         * cp-support.c (inspect_type, replace_typedefs,
2613         cp_lookup_rtti_type): Deal with struct block_symbol from
2614         lookup functions.
2615         * cp-support.h (cp_lookup_symbol_nonlocal,
2616         cp_lookup_symbol_from_namespace,
2617         cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
2618         Return struct block_symbol instead of mere symbols.
2619         * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
2620         push_module_name):
2621         Deal with struct block_symbol from lookup functions.  Remove
2622         uses of block_found.
2623         * eval.c (evaluate_subexp_standard): Update call to
2624         cp_lookup_symbol_namespace.
2625         * f-exp.y: Deal with struct block_symbol from lookup functions.
2626         Remove uses of block_found.
2627         (yylex): Likewise.
2628         * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
2629         lookup_enum, lookup_template_type, check_typedef): Deal with
2630         struct block_symbol from lookup functions.
2631         * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
2632         * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
2633         (gdbscm_lookup_global_symbol): Likewise.
2634         * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
2635         * go-exp.y: Likewise.  Remove uses of block_found.
2636         (package_name_p, classify_packaged_name, classify_name):
2637         Likewise.
2638         * infrun.c (insert_exception_resume_breakpoint): Likewise.
2639         * jv-exp.y (push_variable): Likewise.
2640         * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
2641         * language.c (language_bool_type): Likewise.
2642         * language.h (struct language_defn): Update
2643         la_lookup_symbol_nonlocal to return a struct block_symbol rather
2644         than a mere symbol.
2645         * linespec.c (find_label_symbols): Deal with struct block_symbol
2646         from lookup functions.
2647         * m2-exp.y: Likewise.  Remove uses of block_found.
2648         (yylex): Likewise.
2649         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2650         * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
2651         * p-exp.y: Likewise.  Remove uses of block_found.
2652         (yylex): Likewise.
2653         * p-valprint.c (pascal_val_print): Likewise.
2654         * parse.c (write_dollar_variable): Likewise.  Remove uses of
2655         block_found.
2656         * parser-defs.h (struct symtoken): Turn the SYM field into a
2657         struct block_symbol.
2658         * printcmd.c (address_info): Deal with struct block_symbol from
2659         lookup functions.
2660         * python/py-frame.c (frapy_read_var): Likewise.
2661         * python/py-symbol.c (gdbpy_lookup_symbol,
2662         gdbpy_lookup_global_symbol): Likewise.
2663         * skip.c (skip_function_command): Likewise.
2664         * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
2665         block_symbol instead of a mere symbol.
2666         * solib-spu.c (spu_lookup_lib_symbol): Likewise.
2667         * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
2668         * solib.c (solib_global_lookup): Likewise.
2669         * solist.h (solib_global_lookup): Likewise.
2670         (struct target_so_ops): Update lookup_lib_global_symbol to
2671         return a struct block_symbol rather than a mere symbol.
2672         * source.c (select_source_symtab): Deal with struct block_symbol
2673         from lookup functions.
2674         * stack.c (print_frame_args, iterate_over_block_arg_vars):
2675         Likewise.
2676         * symfile.c (set_initial_language): Likewise.
2677         * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
2678         block_symbol.
2679         (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
2680         (struct symbol_cache_slot): Turn the FOUND field into a struct
2681         block_symbol.
2682         (block_found): Remove.
2683         (eq_symbol_entry): Update to deal with struct block_symbol in
2684         cache slots.
2685         (symbol_cache_lookup): Return a struct block_symbol rather than
2686         a mere symbol.
2687         (symbol_cache_mark_found): Add a BLOCK parameter to fill
2688         appropriately the cache slots.  Update callers.
2689         (symbol_cache_dump): Update cache slots handling to the type
2690         change.
2691         (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
2692         lookup_symbol_aux, lookup_local_symbol,
2693         lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
2694         lookup_symbol_in_objfile_symtabs,
2695         lookup_symbol_in_objfile_from_linkage_name,
2696         lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
2697         lookup_symbol_in_static_block, lookup_static_symbol,
2698         lookup_global_symbol):
2699         Return a struct block_symbol rather than a mere symbol.  Deal
2700         with struct block_symbol from other lookup functions.  Remove
2701         uses of block_found.
2702         (lookup_symbol_in_block): Remove uses of block_found.
2703         (struct global_sym_lookup_data): Turn the RESULT field into a
2704         struct block_symbol.
2705         (lookup_symbol_global_iterator_cb): Update references to the
2706         RESULT field.
2707         (search_symbols): Deal with struct block_symbol from lookup
2708         functions.
2709         * symtab.h (struct block_symbol): New structure.
2710         (block_found): Remove.
2711         (lookup_symbol_in_language, lookup_symbol,
2712         basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
2713         lookup_static_symbol, lookup_global_symbol, lookup_language_this,
2714         lookup_global_symbol_from_objfile): Return a struct block_symbol
2715         rather than just a mere symbol.  Update comments to remove
2716         mentions of block_found.
2717         * valops.c (find_function_in_inferior,
2718         value_struct_elt_for_reference, value_maybe_namespace_elt,
2719         value_of_this):  Deal with struct block_symbol from lookup
2720         functions.
2721         * value.c (value_static_field, value_fn_field): Likewise.
2722
2723 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
2724
2725         * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
2726         instead of integer.
2727
2728 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
2729             Pedro Alves  <palves@redhat.com>
2730
2731         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
2732         type or value instead of integer.
2733         (aarch64_linux_insert_watchpoint): Likewise.
2734         (aarch64_linux_remove_watchpoint): Likewise.
2735         * ada-lang.c (ada_op_print_tab): Likewise.
2736         * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
2737         (amd64_linux_syscall_record_common): Likewise.
2738         * arch-utils.c (target_byte_order_user): Likewise.
2739         (default_byte_order): Likewise.
2740         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
2741         (arm_linux_get_hwbp_type): Likewise.
2742         (arm_linux_hw_watchpoint_initialize): Likewise.
2743         (arm_linux_insert_watchpoint): Likewise.
2744         * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
2745         (arm_linux_syscall_record): Likewise.
2746         * breakpoint.c (update_watchpoint): Likewise.
2747         (breakpoint_here_p): Likewise.
2748         (bpstat_print): Likewise.
2749         (enable_breakpoint_disp): Likewise.
2750         * c-lang.c (c_op_print_tab): Likewise.
2751         * cli/cli-decode.c (add_info_alias): Likewise.
2752         * d-lang.c (d_op_print_tab): Likewise.
2753         * eval.c (evaluate_subexp_standard): Likewise.
2754         * f-exp.y (dot_ops): Likewise.
2755         (f77_keywords): Likewise.
2756         * f-lang.c (f_op_print_tab): Likewise.
2757         * go-lang.c (go_op_print_tab): Likewise.
2758         * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
2759         * guile/scm-cmd.c (gdbscm_make_command): Likewise.
2760         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
2761         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
2762         * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
2763         (struct scm_from_stringn_data): Likewise.
2764         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
2765         * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
2766         (ia64_linux_remove_watchpoint): Likewise.
2767         (ia64_linux_can_use_hw_breakpoint): Likewise.
2768         * infrun.c (print_stop_event): Likewise.
2769         * jv-lang.c (java_op_print_tab): Likewise.
2770         * linux-nat.c (linux_proc_xfer_partial): Likewise.
2771         * linux-nat.h (struct lwp_info): Likewise.
2772         * linux-thread-db.c (enable_thread_event): Likewise.
2773         * m2-lang.c (m2_op_print_tab): Likewise.
2774         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
2775         (mi_cmd_stack_list_variables): Likewise.
2776         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
2777         * mi/mi-out.c (mi_table_begin): Likewise.
2778         (mi_table_header): Likewise.
2779         * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
2780         (mips_linux_insert_watchpoint): Likewise.
2781         (mips_linux_remove_watchpoint): Likewise.
2782         * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
2783         * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
2784         (mips_linux_watch_type_to_irw): Likewise.
2785         * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2786         (procfs_insert_hw_watchpoint): Likewise.
2787         (procfs_remove_hw_watchpoint): Likewise.
2788         (procfs_hw_watchpoint): Likewise.
2789         (procfs_can_use_hw_breakpoint): Likewise.
2790         (procfs_remove_hw_watchpoint): Likewise.
2791         (procfs_insert_hw_watchpoint): Likewise.
2792         * p-lang.c (pascal_op_print_tab): Likewise.
2793         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
2794         * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
2795         * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
2796         * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2797         (procfs_insert_watchpoint): Likewise.
2798         (procfs_remove_watchpoint): Likewise.
2799         * psymtab.c (recursively_search_psymtabs): Likewise.
2800         * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
2801         (m32r_insert_watchpoint): Likewise.
2802         * remote-mips.c (mips_can_use_watchpoint): Likewise.
2803         (mips_insert_watchpoint): Likewise.
2804         (mips_remove_watchpoint): Likewise.
2805         * remote.c (watchpoint_to_Z_packet): Likewise.
2806         (remote_insert_watchpoint): Likewise.
2807         (remote_remove_watchpoint): Likewise.
2808         (remote_check_watch_resources): Likewise.
2809         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
2810         (s390_remove_watchpoint): Likewise.
2811         (s390_can_use_hw_breakpoint): Likewise.
2812         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
2813         * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
2814         * target.h (struct target_ops): Likewise.
2815         * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
2816         * ui-out.c (struct ui_out_hdr): Likewise.
2817         (append_header_to_list): Likewise.
2818         (get_next_header): Likewise.
2819         (verify_field): Likewise.
2820         (ui_out_begin): Likewise.
2821         (ui_out_field_int): Likewise.
2822         (ui_out_field_fmt_int): Likewise.
2823         (ui_out_field_skip): Likewise.
2824         (ui_out_field_string): Likewise.
2825         (ui_out_field_fmt): Likewise.
2826         * varobj.c (new_variable): Likewise.
2827         * x86-nat.c (x86_insert_watchpoint): Likewise.
2828         (x86_remove_watchpoint): Likewise.
2829         (x86_can_use_hw_breakpoint): Likewise.
2830         * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
2831         * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
2832         previously anonymous enumeration type..
2833         * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
2834         value.
2835         * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
2836         (target_debug_print_enum_bptype): New.
2837         * target-delegates.c: Regenerate.
2838
2839 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
2840
2841         * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
2842         already says and disallow non-stack memory writes in the prologue.
2843
2844 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
2845
2846         * nios2-tdep.c (nios2_analyze_prologue): Update comments to
2847         reflect how current GCC emits stack overflow checks.  Match
2848         both trap and break instructions for backward compatbility.
2849         Disallow other trap and break instructions in the prologue.
2850
2851 2015-07-30  Pedro Alves  <palves@redhat.com>
2852
2853         PR threads/18600
2854         * linux-nat.c (wait_lwp): Report to the core when thread group
2855         leader exits.
2856
2857 2015-07-30  Pedro Alves  <palves@redhat.com>
2858             Simon Marchi  <simon.marchi@ericsson.com>
2859
2860         PR threads/18600
2861         * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
2862         mark the new thread as resumed.  Remove STOPPING parameter.
2863         (wait_lwp): Adjust call to linux_handle_extended_wait.
2864         (linux_nat_filter_event): Adjust call to
2865         linux_handle_extended_wait.
2866         (resume_stopped_resumed_lwps): Add debug output.
2867
2868 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
2869
2870         * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
2871         isize argument.
2872         * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
2873         * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
2874         gdbarch_fast_tracepoint_valid_at.
2875         * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
2876         * gdbarch.h: Regenerate.
2877         * gdbarch.c: Regenerate.
2878         * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
2879         argument.  Do not set it.
2880         * remote.c (remote_download_tracepoint): Adjust call to
2881         gdbarch_fast_tracepoint_valid_at.  Call gdb_insn_length to get
2882         the instruction length.
2883
2884 2015-07-30  Yao Qi  <yao.qi@linaro.org>
2885
2886         * arm-tdep.h (enum gdb_regnum): Move it to ...
2887         * arch/arm.h: ... here.  New file.
2888         * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
2889
2890 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
2891
2892         * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
2893         Change its type to int *.
2894         (decode_br): Rename link argument to is_blr.  Change its type to
2895         int *.
2896         (decode_cb): Rename op argument to is_cbnz.  Change its type to
2897         int *.
2898         (decode_tb): Rename op argument to is_tbnz.  Change its type to
2899         int *.  Set is_tbnz to either 1 or 0.
2900         (aarch64_analyze_prologue): Change type of is_link to int.  Add
2901         new variables is_cbnz and is_tbnz.  Adjust call to
2902         aarch64_decode_cb and aarch64_decode_tb.
2903
2904 2015-07-29  Simon Marchi  <simon.marchi@ericsson.com>
2905
2906         * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
2907         parameter.
2908         (mips_linux_new_thread): Likewise.
2909         * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
2910
2911 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
2912
2913         * top.c: Include "tui/tui.h".
2914         (undo_terminal_modifications_before_exit): New static function.
2915         (quit_force): Use it.
2916
2917 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
2918
2919         * target.c (terminal_state): Initialize to terminal_is_ours.
2920
2921 2015-07-29  Yao Qi  <yao.qi@linaro.org>
2922
2923         PR record/18691
2924         * dcache.c (dcache_read_memory_partial): Call
2925         raw_memory_xfer_partial.
2926         * target.c (raw_memory_xfer_partial): Make it non-static.
2927         * target.h (raw_memory_xfer_partial): Declare.
2928
2929 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
2930
2931         * c-valprint.c (c_val_print_array): Consider addressable memory
2932         unit size.
2933         (c_val_print_ptr): Likewise.
2934         (c_val_print_int): Likewise.
2935         * findvar.c (read_frame_register_value): Likewise.
2936         * valarith.c (find_size_for_pointer_math): Likewise.
2937         (value_ptrdiff): Likewise.
2938         (value_subscripted_rvalue): Likewise.
2939         * valops.c (read_value_memory): Likewise (and rename variables).
2940         (value_assign): Likewise.
2941         (value_repeat): Likewise.
2942         (value_array): Likewise.
2943         (value_slice): Likewise.
2944         * valprint.c (generic_val_print_ptr): Likewise.
2945         (generic_val_print_enum): Likewise.
2946         (generic_val_print_bool): Likewise.
2947         (generic_val_print_int): Likewise.
2948         (generic_val_print_char): Likewise.
2949         (generic_val_print_float): Likewise.
2950         (generic_val_print_decfloat): Likewise.
2951         (generic_val_print_complex): Likewise.
2952         (val_print_scalar_formatted): Likewise.
2953         (val_print_array_elements): Likewise.
2954         * value.c (set_value_parent): Likewise.
2955         (value_contents_copy_raw): Likewise.
2956         (set_internalvar_component): Likewise.
2957         (value_primitive_field): Likewise.
2958         (value_fetch_lazy): Likewise.
2959         * value.h (read_value_memory): Update comment.
2960
2961 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
2962
2963         * value.c (get_value_arch): New function.
2964         * value.h (get_value_arch): New declaration.
2965
2966 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
2967
2968         * value.c (struct value): Update comments.
2969
2970 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
2971
2972         * gdbtypes.c (type_length_units): New function.
2973         * gdbtypes.h (type_length_units): New declaration.
2974         (struct type) <length>: Update comment.
2975
2976 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
2977
2978         * valprint.c (generic_val_print): Factor out complex
2979         printing code to ...
2980         (generic_val_print_complex): ... this new function.
2981
2982 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
2983
2984         * valprint.c (generic_val_print): Factor out decfloat
2985         printing code to ...
2986         (generic_val_print_decfloat): ... this new function.
2987
2988 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
2989
2990         * valprint.c (generic_val_print): Factor out float
2991         printing code to ...
2992         (generic_val_print_float): ... this new function.
2993
2994 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
2995
2996         * valprint.c (generic_val_print): Factor out char
2997         printing code to ...
2998         (generic_val_print_char): ... this new function.
2999
3000 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3001
3002         * valprint.c (generic_val_print): Factor out integer
3003         printing code to ...
3004         (generic_val_print_int): ... this new function.
3005
3006 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3007
3008         * valprint.c (generic_val_print): Factor out bool
3009         printing code to ...
3010         (generic_val_print_bool): ... this new function.
3011
3012 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3013
3014         * valprint.c (generic_val_print): Factor out function/method
3015         printing code to ...
3016         (generic_val_print_func): ... this new function.
3017
3018 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3019
3020         * valprint.c (generic_val_print): Factor out flags
3021         printing code to ...
3022         (generic_val_print_flags): ... this new function.
3023
3024 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3025
3026         * valprint.c (generic_val_print): Factor out enum
3027         printing code to ...
3028         (generic_val_print_enum): ... this new function.
3029
3030 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3031
3032         * valprint.c (generic_val_print): Factor out reference
3033         printing code to ...
3034         (generic_val_print_ref): ... this new function.
3035
3036 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3037
3038         * valprint.c (generic_val_print): Factor out memberptr
3039         printing code to ...
3040         (generic_val_print_memberptr): ... this new function.
3041
3042 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3043
3044         * valprint.c (generic_val_print): Factor out pointer
3045         printing code to ...
3046         (generic_val_print_ptr): ... this new function.
3047
3048 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3049
3050         * valprint.c (generic_val_print): Factor out array
3051         printing code to ...
3052         (generic_val_print_array): ... this new function.
3053
3054 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
3055
3056         * valprint.c (generic_val_print): Factor out
3057         print_unpacked_pointer code to ...
3058         (print_unpacked_pointer): ... this new function.
3059
3060 2015-07-27  Patrick Palka  <patrick@parcs.ath.cx>
3061
3062         * event-top.c (handle_sigterm): Don't inspect
3063         target_can_async_p.  Always set the quit flag and always mark
3064         the async signal handler.
3065
3066 2015-07-27  Yao Qi  <yao.qi@linaro.org>
3067
3068         * Makefile.in (REMOTE_EXAMPLES): Remove it.
3069
3070 2015-07-25  Kevin Buettner  <kevinb@redhat.com>
3071
3072         * remote.c (read_ptid): Return null_ptid when no thread id
3073         is found.
3074         (remote_current_thread): Add log warning for malformed
3075         qC reply.
3076         (remote_start_remote): Add log warning when current thread
3077         not found.
3078
3079 2015-07-24  Pedro Alves  <palves@redhat.com>
3080
3081         * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
3082         (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
3083         forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
3084
3085 2015-07-24  Pedro Alves  <palves@redhat.com>
3086
3087         PR gdb/18717
3088         * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
3089         is resumed, and extend the debug log.
3090
3091 2015-07-24  Pedro Alves  <palves@redhat.com>
3092
3093         * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
3094
3095 2015-07-24  Pedro Alves  <palves@redhat.com>
3096
3097         * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
3098         sys/ptrace.h.
3099         * alpha-linux-nat.c: Likewise.
3100         * amd64-linux-nat.c: Likewise.
3101         * arm-linux-nat.c: Likewise.
3102         * hppa-linux-nat.c: Likewise.
3103         * i386-linux-nat.c: Likewise.
3104         * ia64-linux-nat.c: Likewise.
3105         * linux-fork.c: Likewise.
3106         * linux-nat.c: Likewise.
3107         * m32r-linux-nat.c: Likewise.
3108         * m68klinux-nat.c: Likewise.
3109         * mips-linux-nat.c: Likewise.
3110         * nat/linux-btrace.c: Likewise.
3111         * nat/linux-ptrace.c: Likewise.
3112         * nat/linux-ptrace.h
3113         * nat/mips-linux-watch.c: Likewise.
3114         * nat/x86-linux-dregs.c: Likewise.
3115         * ppc-linux-nat.c: Likewise.
3116         * s390-linux-nat.c: Likewise.
3117         * spu-linux-nat.c: Likewise.
3118         * tilegx-linux-nat.c: Likewise.
3119         * x86-linux-nat.c: Likewise.
3120         * xtensa-linux-nat.c: Likewise.
3121
3122 2015-07-24  Pedro Alves  <palves@redhat.com>
3123
3124         * ptrace.m4 (ptrace tests): Test in C++ mode.  Try with 'enum
3125         __ptrace_request as first parameter type instead of int.
3126         (PTRACE_TYPE_ARG1): Define.
3127         * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
3128         that casts first argument to PTRACE_TYPE_ARG1.
3129         * config.in: Regenerate.
3130         * configure: Regenerate.
3131
3132 2015-07-24  Pedro Alves  <palves@redhat.com>
3133
3134         * gdb_ptrace.h: Move ...
3135         * nat/gdb_ptrace.h: ... here.
3136         * inf-ptrace.c: Adjust.
3137
3138 2015-07-24  Pedro Alves  <palves@redhat.com>
3139
3140         * acinclude.m4: Include ptrace.m4.
3141         * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
3142         * ptrace.m4: ... to this new file.
3143
3144 2015-07-23  Doug Evans  <dje@google.com>
3145
3146         * dwarf2read.c (dwarf2_per_cu_data): Add comment.
3147         (load_cu): Handle dummy CUs.
3148         (dw2_do_instantiate_symtab, process_queuef): Ditto.
3149         (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
3150
3151 2015-07-23  Ciro Santilli  <ciro.santilli@gmail.com>  (tiny patch)
3152
3153         * py-linetable.c (ltpy_get_all_source_lines): Adjust function
3154         documentation to say that it returns a list rather than
3155         a FrozenSet.
3156         (linetable_object_methods): Update the docstring of the
3157         "source_line" entry.
3158
3159 2015-07-23  Pierre-Marie de Rodat  <derodat@adacore.com>
3160
3161         * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
3162         type to the recursive call instead of the original (maybe
3163         TYPE_CODE_TYPEDEF) type.
3164
3165 2015-07-23  Yao Qi  <yao.qi@linaro.org>
3166
3167         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
3168         TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
3169         If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
3170
3171 2015-07-21  Yao Qi  <yao.qi@linaro.org>
3172
3173         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
3174         Move it to nat/aarch64-linux-hw-point.c.
3175         (aarch64_linux_child_post_startup_inferior): Update.
3176         * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
3177         New function.
3178         * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
3179         Declare it.
3180
3181 2015-07-21  Markus Metzger  <markus.t.metzger@intel.com>
3182
3183         * common/btrace-common.c (btrace_data_append): Change case label.
3184
3185 2015-07-20  Yao Qi  <yao.qi@linaro.org>
3186
3187         * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
3188         Re-indent the code.
3189         * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
3190         "unsigned long long".
3191
3192 2015-07-18  Kevin Buettner  <kevinb@redhat.com>
3193
3194         * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
3195         to be set for SEC_ALLOC sections too.
3196
3197 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3198
3199         * Makefile.in (HFILES_NO_SRCDIR): Add
3200         nat/aarch64-linux-hw-point.h.
3201         (aarch64-linux-hw-point.o): New rule.
3202         * nat/aarch64-linux-hw-point.h: New file.
3203         * nat/aarch64-linux-hw-point.c: New file.
3204         * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
3205         (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
3206         (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
3207         (AARCH64_HWP_ALIGNMENT): Likewise.
3208         (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
3209         (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
3210         (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
3211         (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
3212         (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
3213         (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
3214         (struct aarch64_debug_reg_state): Likewise.
3215         (struct arch_lwp_info): Likewise.
3216         (aarch64_linux_set_debug_regs): Likewise.
3217         (aarch64_notify_debug_reg_change): Remove static.
3218         (aarch64_align_watchpoint): Likewise.
3219         (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
3220         (aarch64_watchpoint_length): Likewise.
3221         (aarch64_point_encode_ctrl_reg): Likewise
3222         (aarch64_point_is_aligned): Likewise.
3223         (aarch64_dr_state_insert_one_point): Likewise.
3224         (aarch64_dr_state_remove_one_point): Likewise.
3225         (aarch64_handle_breakpoint): Likewise.
3226         (aarch64_handle_aligned_watchpoint): Likewise.
3227         (aarch64_handle_unaligned_watchpoint): Likewise.
3228         (aarch64_handle_watchpoint): Likewise.
3229         * config/aarch64/linux.mh (NAT_FILE): Add
3230         aarch64-linux-hw-point.o.
3231
3232 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3233
3234         * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
3235         state and don't call aarch64_get_debug_reg_state.  All callers
3236         update.
3237         (aarch64_linux_insert_hw_breakpoint): Call
3238         aarch64_get_debug_reg_state earlier.
3239         (aarch64_linux_remove_hw_breakpoint): Likewise.
3240         (aarch64_handle_aligned_watchpoint): Add argument state and
3241         don't call aarch64_get_debug_reg_state.  All callers update.
3242         (aarch64_handle_unaligned_watchpoint): Likewise.
3243         (aarch64_handle_watchpoint): Add argument state.
3244         (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
3245         earlier.
3246         (aarch64_linux_remove_watchpoint): Likewise.
3247
3248 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3249
3250         * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
3251         debug_printf.
3252         (aarch64_handle_unaligned_watchpoint): Likewise.
3253
3254 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3255
3256         * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
3257         argument type's type to 'enum target_hw_bp_type'.
3258         (aarch64_dr_state_remove_one_point): Likewise.
3259         (aarch64_handle_breakpoint): Likewise.
3260         (aarch64_linux_insert_hw_breakpoint): Likewise.
3261         (aarch64_linux_remove_hw_breakpoint): Likewise.
3262         (aarch64_handle_aligned_watchpoint): Likewise.
3263
3264 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3265
3266         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
3267         ptid_get_pid instead of get_thread_id.
3268
3269 2015-07-17  Yao Qi  <yao.qi@linaro.org>
3270
3271         * remote.c (get_current_thread): Initialise ptid to null_ptid.
3272         (add_current_inferior_and_thread): Don't initialise ptid.
3273
3274 2015-07-16  Pierre Langlois  <pierre.langlois@arm.com>
3275
3276         * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
3277         unavailable if invalid.
3278
3279 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
3280
3281         Revert the previous 6 commits:
3282         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
3283         Move gdb_regex* to common/
3284         Prepare linux_find_memory_regions_full & co. for move
3285         Move linux_find_memory_regions_full & co.
3286         gdbserver build-id attribute generator
3287         Validate symbol file using build-id
3288
3289 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3290             Jan Kratochvil  <jan.kratochvil@redhat.com>
3291
3292         Validate symbol file using build-id.
3293         * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
3294         and 'show validate-build-id'.  Add build-id attribute.
3295         * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
3296         * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
3297         * solib-frv.c (_initialize_frv_solib): Ditto.
3298         * solib-spu.c (set_spu_solib_ops): Ditto.
3299         * solib-svr4.c: Include rsp-low.h.
3300         (NOTE_GNU_BUILD_ID_NAME): New define.
3301         (svr4_validate): New function.
3302         (svr4_copy_library_list): Duplicate field build_id.
3303         (library_list_start_library): Parse 'build-id' attribute.
3304         (svr4_library_attributes): Add 'build-id' attribute.
3305         (_initialize_svr4_solib): Assign validate value.
3306         * solib-target.c (solib.h): Include.
3307         (_initialize_solib_target): Assign validate value.
3308         * solib.c (validate_build_id, show_validate_build_id): New.
3309         (solib_map_sections): Use ops->validate.
3310         (clear_so): Free build_id.
3311         (default_solib_validate): New function.
3312         (_initialize_solib): Add "validate-build-id".
3313         * solib.h (default_solib_validate): New declaration.
3314         * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
3315         (target_so_ops): New field 'validate'.
3316
3317 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3318             Jan Kratochvil  <jan.kratochvil@redhat.com>
3319
3320         gdbserver build-id attribute generator.
3321         * features/library-list-svr4.dtd (library-list-svr4): New
3322         'build-id' attribute.
3323
3324 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3325             Jan Kratochvil  <jan.kratochvil@redhat.com>
3326
3327         Move linux_find_memory_regions_full & co.
3328         * linux-tdep.c (nat/linux-maps.h): Include.
3329         (gdb_regex.h): Remove the include.
3330         (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
3331         (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
3332         (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
3333         (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
3334         * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
3335         and target/target.h.
3336         (struct smaps_vmflags, read_mapping, decode_vmflags)
3337         (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
3338         (linux_find_memory_regions_full): Move from linux-tdep.c.
3339         * nat/linux-maps.h (read_mapping): New declaration.
3340         (linux_find_memory_region_ftype, enum filterflags): Moved from
3341         linux-tdep.c.
3342         (linux_find_memory_regions_full): New declaration.
3343         * target.c (target/target-utils.h): Include.
3344         (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
3345         (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
3346         definitions to target/target-utils.c.
3347         * target.h (target_fileio_read_stralloc): Move it to target/target.h.
3348         * target/target-utils.c (read_alloc, read_stralloc): Move definitions
3349         from target.c.
3350         * target/target-utils.h (read_alloc_pread_ftype): New typedef.
3351         (read_alloc): New declaration.
3352         (read_stralloc_func_ftype): New typedef.
3353         (read_stralloc): New declaration.
3354         * target/target.h (target_fileio_read_stralloc): Move it from target.h.
3355
3356 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3357             Jan Kratochvil  <jan.kratochvil@redhat.com>
3358
3359         Prepare linux_find_memory_regions_full & co. for move.
3360         * linux-tdep.c (linux_find_memory_region_ftype): Comment.
3361         (linux_find_memory_regions_full): Change signature and prepare
3362         for moving to linux-maps.
3363         (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
3364         (linux_find_memory_regions_thunk): New.
3365         (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
3366         (linux_find_memory_regions_gdb): New.
3367         (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
3368         (linux_make_mappings_corefile_notes): Use
3369         linux_find_memory_regions_gdb.
3370         * target.c (read_alloc_pread_ftype): New typedef.
3371         (target_fileio_read_alloc_1_pread): New function.
3372         (read_alloc): Refactor from target_fileio_read_alloc_1.
3373         (read_stralloc_func_ftype): New typedef.
3374         (target_fileio_read_alloc_1): New implementation. Use read_alloc.
3375         (read_stralloc): Refactored from target_fileio_read_stralloc.
3376         (target_fileio_read_stralloc): New implementation, use read_stralloc.
3377
3378 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
3379
3380         * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
3381         common/gdb_regex.h.
3382         (COMMON_OBS): Add gdb_regex.o.
3383         (gdb_regex.o): New.
3384         * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
3385         --without-included-regex and USE_INCLUDED_REGEX.
3386         * common/gdb_regex.c: New file from utils.c functions.
3387         * common/gdb_regex.h: Move it here from gdb_regex.h, update include
3388         file wrapping define name.
3389         * configure: Rebuilt.
3390         * configure.ac (gdb_use_included_regex, --without-included-regex)
3391         (USE_INCLUDED_REGEX): Move them to common/common.m4.
3392         * gdb_regex.h: Move it to common/gdb_regex.h.
3393         * utils.c: Remove include gdb_regex.h.
3394         (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
3395         (compile_rx_or_error): Move them to common/gdb_regex.c.
3396
3397 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
3398             Jan Kratochvil  <jan.kratochvil@redhat.com>
3399
3400         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
3401         * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
3402         common/target-utils.h.
3403         (COMMON_OBS): Add target-utils.o.
3404         (linux-maps.o, target-utils.o): New.
3405         * target/target-utils.c: New file.
3406         * target/target-utils.h: New file.
3407         * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
3408         * config/i386/linux64.mh (NATDEPFILES): Ditto.
3409         * nat/linux-maps.c: New file.
3410         * nat/linux-maps.h: New file.
3411
3412 2015-07-15  Markus Metzger  <markus.t.metzger@intel.com>
3413             Pedro Alves <palves@redhat.com>
3414
3415         * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
3416         (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
3417         (perf_event_read_bts): Change the type of SIZE and READ.
3418         (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
3419         and DATA_OFFSET.  Move DATA_SIZE declaration.  Restrict the buffer size
3420         to UINT_MAX.  Check for overflows when using DATA_HEAD from the perf
3421         mmap page.
3422         (linux_enable_pt): Change the type of PAGES and SIZE.  Restrict the
3423         buffer size to UINT_MAX.
3424         (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
3425         DATA_TAIL.
3426         * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
3427         <last_head>: Change type.
3428         * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
3429         * common/btrace-common.c (btrace_data_append): Change the type of
3430         SIZE.
3431         * btrace.c (parse_xml_raw): Change the type of SIZE.  Change oddness
3432         check.
3433
3434 2015-07-14  Simon Marchi  <simon.marchi@ericsson.com>
3435
3436         * gdbtypes.h (CHECK_TYPEDEF): Remove.
3437         * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
3438         with check_typedef.
3439         * ada-lang.c (decode_constrained_packed_array_type): Likewise.
3440         (ada_array_length): Likewise.
3441         (find_parallel_type_by_descriptive_type): Likewise.
3442         (ada_check_typedef): Likewise.
3443         * arm-tdep.c (arm_return_in_memory): Likewise.
3444         * ax-gdb.c (gen_trace_static_fields): Likewise.
3445         (gen_struct_ref_recursive): Likewise.
3446         * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
3447         (variable: block COLONCOLON name): Likewise.
3448         (qualified_name: TYPENAME COLONCOLON name): Likewise.
3449         * c-lang.c (classify_type): Likewise.
3450         * c-typeprint.c (c_print_type): Likewise.
3451         (c_print_typedef): Likewise.
3452         (c_type_print_base): Likewise.
3453         * c-valprint.c (c_val_print): Likewise.
3454         * compile/compile-c-types.c (convert_type): Likewise.
3455         * compile/compile-object-load.c (get_out_value_type): Likewise.
3456         * completer.c (add_struct_fields): Likewise.
3457         (expression_completer): Likewise.
3458         * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
3459         (cp_lookup_nested_symbol_1): Likewise.
3460         (cp_lookup_nested_symbol): Likewise.
3461         * cp-valprint.c (cp_print_value_fields): Likewise.
3462         (cp_print_static_field): Likewise.
3463         * d-valprint.c (d_val_print): Likewise.
3464         * eval.c (evaluate_subexp_standard): Likewise.
3465         (evaluate_subexp_for_sizeof): Likewise.
3466         * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
3467         * f-typeprint.c (f_type_print_base): Likewise.
3468         * f-valprint.c (f_val_print): Likewise.
3469         * gdbtypes.c (get_discrete_bounds): Likewise.
3470         (create_array_type_with_stride): Likewise.
3471         (type_name_no_tag_or_error): Likewise.
3472         (lookup_struct_elt_type): Likewise.
3473         (get_unsigned_type_max): Likewise.
3474         (internal_type_vptr_fieldno): Likewise.
3475         (set_type_vptr_fieldno): Likewise.
3476         (internal_type_vptr_basetype): Likewise.
3477         (set_type_vptr_basetype): Likewise.
3478         (get_vptr_fieldno): Likewise.
3479         (is_integral_type): Likewise.
3480         (is_scalar_type): Likewise.
3481         (is_scalar_type_recursive): Likewise.
3482         (distance_to_ancestor): Likewise.
3483         (is_unique_ancestor_worker): Likewise.
3484         (check_types_equal): Likewise.
3485         * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
3486
3487 2015-07-14  Iain Buclaw  <ibuclaw@gdcproject.org>
3488
3489         * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
3490         also test for language_d.
3491         (dwarf2_compute_name): Likewise.
3492         (read_func_scope): Likewise.
3493         (read_structure_type): Likewise.
3494         (new_symbol_full): Likewise.
3495         (determine_prefix): Likewise.
3496         (read_import_statement): Use dot as the separator for language_d.
3497         (typename_concat): Likewise, but don't prefix the D main function.
3498
3499 2015-07-14  Peter Bergner  <bergner@vnet.ibm.com>
3500
3501         * nat/linux-namespaces.c (setns): Rename from this ...
3502         (do_setns): ... to this.  Support calling setns if it exists.
3503         (mnsh_handle_setns): Call do_setns.
3504
3505 2015-07-13  Yao Qi  <yao.qi@linaro.org>
3506
3507         * exec.c (exec_file_attach): Add period at the end of error
3508         message.
3509
3510 2015-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
3511
3512         * tui/tui-win.c (window_name_completer): New function.
3513         (focus_completer): Call window_name_completer.  All old content
3514         moved into window_name_completer.
3515         (winheight_completer): New function.
3516         (_initialize_tui_win): Rename variable.  Add completer to
3517         winheight command.  Update doc string on winheight.
3518
3519 2015-07-12  Sandra Loosemore  <sandra@codesourcery.com>
3520
3521         * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
3522         all nios2 mach variants.
3523
3524 2015-07-10  Kevin Buettner  <kevinb@redhat.com>
3525
3526         * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
3527         of target_read_memory.
3528
3529 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3530
3531         * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
3532         string copy.
3533         (parse_scrolling_args): Likewise.
3534
3535 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3536
3537         * tui/tui-win.c (focus_completer): Don't duplicate the tui window
3538         names in this function.
3539
3540 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3541
3542         * tui/tui-data.h (SRC_NAME): Convert to lower case.
3543         (CMD_NAME): Likewise.
3544         (DATA_NAME): Likewise.
3545         (DISASSEM_NAME): Likewise.
3546         * tui/tui-win.c (tui_set_focus): Window names are now lower case.
3547         (tui_set_win_height): Likewise.
3548         (parse_scrolling_args): Likewise.
3549
3550 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
3551
3552         * record-btrace.c (record_btrace_goto_begin)
3553         (record_btrace_goto_end, record_btrace_goto): Move call to
3554         print_stack_frame ...
3555         (record_btrace_set_replay): ... here.  Set stop_pc.
3556         * record-full.c (record_full_goto_entry): Set stop_pc.
3557
3558 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3559
3560         * NEWS: Mention support for tracepoints on aarch64-linux.
3561
3562 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3563
3564         * linux-aarch64-low.c (aarch64_supports_tracepoints): New
3565         function.  Return 1.
3566         (the_low_target): Install it.
3567
3568 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3569
3570         * gdb.trace/backtrace.exp: Set registers for aarch64 target.
3571         * gdb.trace/collection.exp: Likewise.
3572         * gdb.trace/mi-trace-frame-collected.exp: Likewise.
3573         * gdb.trace/mi-trace-unavailable.exp: Likewise.
3574         * gdb.trace/report.exp: Likewise.
3575         * gdb.trace/trace-break.exp: Likewise.
3576         * gdb.trace/unavailable.exp: Likewise.
3577         * gdb.trace/while-dyn.exp: Likewise.
3578
3579 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3580
3581         * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
3582         (aarch64_gen_return_address): New function.
3583         (aarch64_gdbarch_init): Hook it.
3584
3585 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3586
3587         * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
3588         swallow NOT_AVAILABLE_ERROR.
3589         (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
3590         available_p is not set.
3591         (aarch64_stub_frame_unwind_stop_reason): New function.
3592         (aarch64_stub_unwind): Install it.
3593
3594 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3595
3596         * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
3597         field.
3598         (aarch64_make_prologue_cache_1): New function, factored out from
3599         aarch64_make_prologue_cache.  Do not allocate cache.  Set
3600         available_p.
3601         (aarch64_make_prologue_cache): Reimplement wrapping
3602         aarch64_make_prologue_cache_1, and swallowing
3603         NOT_AVAILABLE_ERROR.
3604         (aarch64_prologue_frame_unwind_stop_reason): New function.
3605         Return UNWIND_UNAVAILABLE if available_p is not set.
3606         (aarch64_prologue_unwind): Install it.
3607         (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
3608         checks into aarch64_prologue_frame_unwind_stop_reason.  Call
3609         frame_id_build_unavailable_stack if available_p is not set.
3610
3611 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3612
3613         * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
3614         fields.
3615         (aarch64_scan_prologue): Set prev_pc.
3616         (aarch64_make_prologue_cache): Set func.
3617         (aarch64_make_stub_cache): Set prev_pc.
3618         (aarch64_prologue_this_id): Remove local variables id, pc and
3619         func.  Read prev_pc and func from cache.
3620         (aarch64_stub_this_id): Read prev_pc from cache.
3621
3622 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3623
3624         * aarch64-tdep.c (aarch64_make_stub_cache): Update comment.  New
3625         argument this_cache.  Remove unused local variables reg and
3626         unwound_fp.  Return early if this_cache is already set.  Set
3627         this_cache.
3628         (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
3629
3630 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
3631
3632         * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
3633         New argument this_cache.  Return early if this_cache is already
3634         set.  Set this_cache.
3635         (aarch64_prologue_this_id): Update call to
3636         aarch64_make_prologue_cache.
3637         (aarch64_prologue_prev_register): Likewise.
3638         (aarch64_normal_frame_base): Likewise.
3639
3640 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3641
3642         * c-valprint.c (c_val_print): Factor out memberptr printing code
3643         from c_val_print to ...
3644         (c_val_print_memberptr): ... this new function.
3645
3646 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3647
3648         * c-valprint.c (c_val_print): Factor out int printing code to ...
3649         (c_val_print_int): ... this new function.
3650
3651 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3652
3653         * c-valprint.c (c_val_print): Factor out struct and union
3654         printing code to ...
3655         (c_val_print_struct): ... this new function ...
3656         (c_val_print_union): ... and this new function.
3657
3658 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3659
3660         * c-valprint.c (c_val_print): Factor out pointer printing code
3661         to ...
3662         (c_val_print_ptr): ... this new function.
3663
3664 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3665
3666         * c-valprint.c (c_valprint): Factor our array printing code from
3667         c_val_print to ...
3668         (c_val_print_array): ... this new function.
3669
3670 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3671
3672         * c-valprint.c (c_val_print): Factor out pointer printing code
3673         to ...
3674         (print_unpacked_pointer): ... this new function.
3675
3676 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
3677
3678         * c-valprint.c (c_val_print): Remove an assignment to i and move
3679         its declaration.
3680
3681 2015-07-09  Yao Qi  <yao.qi@linaro.org>
3682
3683         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
3684         argument ptid.  Update comments.  Caller update.
3685
3686 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
3687
3688         * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
3689         mnt packets.
3690
3691 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
3692
3693         * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
3694
3695 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
3696
3697         * progspace.c (delete_program_space): Add missing spaces.
3698
3699 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
3700
3701         * inferior.c (delete_inferior_1): Rename to ...
3702         (delete_inferior): ..., remove 'silent' parameter, delete
3703         program space when unused and remove call to prune_program_spaces.
3704         Remove the old, unused, delete_inferior.
3705         (delete_inferior_silent): Remove.
3706         (prune_inferiors): Change call from delete_inferior_1 to
3707         delete_inferior and remove 'silent' parameter. Remove call to
3708         prune_program_spaces.
3709         (remove_inferior_command): Idem.
3710         * inferior.h (delete_inferior_1): Rename to...
3711         (delete_inferior): ..., remove 'silent' parameter and remove the
3712         original delete_inferior.
3713         (delete_inferior_silent): Remove.
3714         * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
3715         delete_inferior_1 to delete_inferior and remove 'silent'
3716         parameter.
3717         * progspace.c (prune_program_spaces): Remove.
3718         (pspace_empty_p): Rename to...
3719         (program_space_empty_p): ... and make non-static.
3720         (delete_program_space): New.
3721         * progspace.h (prune_program_spaces): Remove declaration.
3722         (program_space_empty_p): New declaration.
3723         (delete_program_space): New declaration.
3724         * monitor.c (monitor_close): Replace call to
3725         delete_thread_silent and delete_inferior_silent with
3726         discard_all_inferiors.
3727
3728 2015-07-08  Patrick Palka  <patrick@parcs.ath.cx>
3729
3730         * defs.h (deprecated_register_changed_hook): Remove prototype.
3731         * interps.c (clear_iterpreter_hooks): Remove reference to
3732         deprecated_register_changed_hook.
3733         * top.c (deprecated_register_changed_hook): Remove prototype.
3734         * valops.c (value_assign): Remove reference to
3735         deprecated_register_changed_hook.
3736         * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
3737         Add comment documenting the function.
3738         (tui_register_changed_observer): Define.
3739         (tui_install_hooks): Remove reference to
3740         deprecated_register_changed_hook.  Set
3741         tui_register_changed_observer.
3742         (tui_remove_hooks): Remove reference to
3743         deprecated_register_changed_hook.  Unset
3744         tui_register_changed_observer.
3745
3746 2015-07-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3747
3748         PR compile/18484
3749         * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
3750
3751 2015-07-08  Robert O'Callahan  <robert@ocallahan.org>
3752
3753         PR exp/18617
3754         * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
3755
3756 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
3757
3758         * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
3759
3760 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
3761
3762         * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
3763         Use safe_strerror() instead of strerror().
3764
3765 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3766
3767         * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
3768         * features/arm-with-m-fpa-layout.c: Regenerated.
3769         * features/arm-with-m-vfp-d16.xml: Likewise.
3770         * features/arm-with-m-vfp-d16.c: Regenerated.
3771         * features/arm-with-m.xml: Likewise.
3772         * features/arm-with-m.c: Regenerated.
3773         * features/arm-with-neon.xml: Likewise.
3774         * features/arm-with-neon.c: Regenerated.
3775         * features/arm-with-vfpv2.xml: Likewise.
3776         * features/arm-with-vfpv2.c: Regenerated.
3777         * features/arm-with-vfpv3.xml: Likewise.
3778         * features/arm-with-vfpv3.c: Regenerated.
3779
3780 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3781
3782         * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
3783         arm-linux-nat.c.
3784         * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
3785         elf/external.h.
3786         (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
3787         if target is 32-bit.
3788         (store_gregs_to_thread): Call aarch32_gp_regcache_collect
3789         if target is 32-bit.
3790         (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
3791         if target is 32-bit.
3792         (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
3793         if target is 32-bit.
3794         (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
3795         (aarch64_linux_read_description): Return the right target
3796         description.
3797         * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
3798         * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3799         * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
3800         arm-linux-tdep.o.
3801
3802 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3803
3804         * aarch32-linux-nat.c: New file.
3805         * aarch32-linux-nat.h: New file.
3806         * arm-linux-nat.c: Include aarch32-linux-nat.h.
3807         (fetch_regs): Move code to aarch32-linux-nat.c.  Call
3808         aarch32_gp_regcache_supply.
3809         (store_regs): Move code to aarch32-linux-nat.c.  Call
3810         aarch32_gp_regcache_collect.
3811         (fetch_vfp_regs): Move code to aarch32-linux-nat.c.  Call
3812         aarch32_vfp_regcache_supply.
3813         (store_vfp_regs): Move code to aarch32-linux-nat.c.  Call
3814         aarch32_vfp_regcache_collect.
3815         * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3816
3817 2015-07-07  Yao Qi  <yao.qi@linaro.org>
3818
3819         * arm-linux-nat.c (store_fpregister): Remove.
3820         (store_register): Likewise.
3821         (fetch_fpregister): Likewise.
3822         (fetch_register): Likewise.
3823         (arm_linux_store_inferior_registers): Call store_regs and
3824         store_fpregs instead.
3825         (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
3826         fetch_regs instead.
3827
3828 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3829
3830         * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
3831         and focus commands.
3832
3833 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
3834
3835         * NEWS: Create a new section for the next release branch.
3836         Rename the section of the current branch, now that it has
3837         been cut.
3838
3839 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
3840
3841         GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
3842         * version.in: Bump version to 7.10.50.DATE-cvs.
3843
3844 2015-07-06  Luis Machado  <lgustavo@codesourcery.com>
3845
3846         * breakpoint.c (remove_breakpoint_1): Don't handle permanent
3847         breakpoints in a special way.
3848         (remove_breakpoint): Likewise.
3849         (mark_breakpoints_out): Likewise.
3850
3851 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3852
3853         * doc/gdb.texinfo (TUI): Add comma after @xref.
3854
3855 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3856
3857         * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
3858         instead of casting the structure type.
3859
3860 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
3861
3862         * valops.c (search_struct_field): Remove OFFSET parameter.
3863         (value_cast_structs): Adjust calls to search_struct_field.
3864         (value_struct_elt): Same.
3865         (find_overload_match): Same.
3866
3867 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
3868
3869         * value.c (value_fetch_lazy): Update comment, change return
3870         value to void.
3871         * value.h (value_fetch_lazy): Change return value to void.
3872
3873 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
3874
3875         * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
3876         (tui_win_name): Make parameter and result const.
3877         * tui/tui-data.h (tui_win_name): Make parameter and result const.
3878
3879 2015-07-06  Patrick Palka  <patrick@parcs.ath.cx>
3880
3881         * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
3882         use printf_unfiltered.
3883         (set_mpx_cmd): Add missing trailing space to command string
3884         literal.
3885         (_initialize_i386_tdep): Give the "mpx" prefix command its
3886         correct name.
3887
3888 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
3889
3890         * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
3891         (enum rx_frame_type): New.
3892         (struct rx_prologue): Add new field `frame_type'.
3893         (rx_analyze_prologue): Add `frame_type' parameter. Cache this
3894         parameter in the prologue struct.  Add code for recording
3895         locations of PC and PSW for fast interrupt and exception frames.
3896         (rx_skip_prologue): Adjust call to rx_analyze_prologue.
3897         (rx_analyze_frame_prologue): Add `frame_type' parameter.
3898         (rx_frame_type): New function.
3899         (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
3900         (rx_frame_this_id): Rename parameter `this_prologue_cache' to
3901         `this_cache'.
3902         (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
3903         `this_cache'.  Add cases for RX_FRAME_TYPE_EXCEPTION and
3904         RX_FRAME_TYPE_FAST_INTERRUPT.
3905         (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
3906         (rx_frame_sniffer, rx_exception_sniffer): New functions.
3907         (rx_frame_unwind): Use rx_frame_sniffer instead of
3908         default_frame_sniffer.
3909         (rx_frame_unwind): New unwinder.
3910         (rx_gdbarch_init): Register new unwinder.
3911
3912 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
3913
3914         * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
3915         (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
3916         (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
3917         and RX_FPSW_REGNUM.
3918         (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
3919
3920 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
3921
3922         Fix GCC false warning.
3923         * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
3924
3925 2015-07-02  Yao Qi  <yao.qi@linaro.org>
3926
3927         * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
3928         typo in the debugging message.
3929
3930 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
3931
3932         * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
3933         (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
3934         (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
3935         (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
3936         (btrace_maint_clear): New.
3937         (btrace_fetch, btrace_clear): Call btrace_maint_clear.
3938         (pt_print_packet, btrace_maint_decode_pt)
3939         (btrace_maint_update_pt_packets, btrace_maint_update_packets)
3940         (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
3941         (maint_btrace_packet_history_cmd)
3942         (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
3943         (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
3944         (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
3945         (maint_info_btrace_cmd, _initialize_btrace): New.
3946         * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
3947         (btrace_maint_packet_history, btrace_maint_info): New.
3948         (btrace_thread_info) <maint>: New.
3949         * NEWS: Announce it.
3950
3951 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
3952
3953         * btrace.c (btrace_fetch): Append the new trace data.
3954         (btrace_clear): Clear the stored trace data.
3955         * btrace.h (btrace_thread_info) <data>: New.
3956         * common/btrace-common.h (btrace_data_clear)
3957         (btrace_data_append): New.
3958         * common/btrace-common.c (btrace_data_clear)
3959         (btrace_data_append): New.
3960
3961 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
3962
3963         * nat/linux-btrace.c (linux_enable_bts): Check for
3964         PERF_ATTR_SIZE_VER5.
3965         Check for data_offset and data_size fields.  Use them.
3966
3967 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
3968
3969         * NEWS: Announce new commands "record btrace pt" and "record pt".
3970         Announce new options "set|show record btrace pt buffer-size".
3971         * btrace.c: Include "rsp-low.h".
3972         Include "inttypes.h".
3973         (btrace_add_pc): Add forward declaration.
3974         (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
3975         (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
3976         (btrace_compute_ftrace_pt): New.
3977         (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
3978         (check_xml_btrace_version): Update version check.
3979         (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
3980         (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
3981         (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
3982         (btrace_pt_children): New.
3983         (btrace_children): Add support for "pt".
3984         (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
3985         (btrace_conf_children): Add support for "pt".
3986         * btrace.h: Include "intel-pt.h".
3987         (btrace_pt_error): New.
3988         * common/btrace-common.c (btrace_format_string, btrace_data_fini)
3989         (btrace_data_empty): Support BTRACE_FORMAT_PT.
3990         * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
3991         (struct btrace_config_pt): New.
3992         (struct btrace_config)<pt>: New.
3993         (struct btrace_data_pt_config, struct btrace_data_pt): New.
3994         (struct btrace_data)<pt>: New.
3995         * features/btrace-conf.dtd (btrace-conf)<pt>: New.
3996         (pt): New.
3997         * features/btrace.dtd (btrace)<pt>: New.
3998         (pt, pt-config, cpu): New.
3999         * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
4000         (perf_event_pt_event_type, kernel_supports_pt)
4001         (linux_supports_pt): New.
4002         (linux_supports_btrace): Support BTRACE_FORMAT_PT.
4003         (linux_enable_bts): Free tinfo on error.
4004         (linux_enable_pt): New.
4005         (linux_enable_btrace): Support BTRACE_FORMAT_PT.
4006         (linux_disable_pt): New.
4007         (linux_disable_btrace): Support BTRACE_FORMAT_PT.
4008         (linux_fill_btrace_pt_config, linux_read_pt): New.
4009         (linux_read_btrace): Support BTRACE_FORMAT_PT.
4010         * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
4011         (struct btrace_target_info)<pt>: New.
4012         * record-btrace.c (set_record_btrace_pt_cmdlist)
4013         (show_record_btrace_pt_cmdlist): New.
4014         (record_btrace_print_pt_conf): New.
4015         (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
4016         (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
4017         (cmd_record_btrace_pt_start): New.
4018         (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
4019         (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
4020         (_initialize_record_btrace): Add new commands.
4021         * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
4022         (remote_protocol_features): Add "Qbtrace:pt".
4023         Add "Qbtrace-conf:pt:size".
4024         (remote_supports_btrace): Support BTRACE_FORMAT_PT.
4025         (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
4026         (remote_enable_btrace): Support BTRACE_FORMAT_PT.
4027         (_initialize_remote): Add new commands.
4028
4029 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
4030
4031         * configure.ac: check for libipt
4032         * configure: Regenerate.
4033         * config.in: Regenerate.
4034         * Makefile.in (LIBIPT): New.
4035         (CLIBS): Add $LIBIPT.
4036         * NEWS: document new configure options
4037
4038 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4039
4040         * compile/compile-object-load.c (compile_object_load): Replace debug
4041         message "lookup undefined ELF symbol" by 3 more specific messages.
4042
4043 2015-07-01  Kevin Buettner  <kevinb@redhat.com>
4044
4045         * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
4046         (rl78_register_type): Add case for RL78_PSW_REGNUM.
4047         (rl78_gdbarch_init): Initialize rl78_psw_type.
4048
4049 2015-07-01  Patrick Palka  <patrick@parcs.ath.cx>
4050
4051         * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
4052         Update commentary.  Always refresh the registers when frame
4053         information has changed.
4054         * tui/tui-stack.c (tui_show_frame_info): Update commentary.
4055         Change return type to int.  Return 1 if frame information has
4056         changed, 0 otherwise.
4057         (tui_before_prompt): Update commentary.
4058         * tui/tui-stack.h (tui_show_frame_info): Change return type to
4059         int.
4060
4061 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4062
4063         PR tui/13378
4064         * frame.c (select_frame): Remove reference to
4065         deprecated_selected_frame_level_changed_hook.
4066         * frame.h (deprecated_selected_frame_level_changed_hook): Remove
4067         declaration.
4068         * stack.c (deprecated_selected_frame_level_changed_hook):
4069         Likewise.
4070         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
4071         Rename to ...
4072         (tui_refresh_frame_and_register_information): ... this.  Bail
4073         out if there is no stack.  Don't update register information
4074         unless registers_too_p is true.
4075         (tui_print_frame_info_listing_hook): Rename to ...
4076         (tui_dummy_print_frame_info_listing_hook): ... this.
4077         (tui_before_prompt): New function.
4078         (tui_normal_stop): New function.
4079         (tui_before_prompt_observer): New observer.
4080         (tui_normal_stop_observer): New observer.
4081         (tui_install_hooks): Set
4082         deprecated_print_frame_info_listing_hook to
4083         tui_dummy_print_frame_info_listing_hook.  Register
4084         tui_before_prompt_observer to call tui_before_prompt and
4085         tui_normal_stop_observer to call tui_normal_stop.  Remove
4086         reference to deprecated_selected_frame_level_changed_hook.
4087         (tui_remove_hooks): Detach and unset tui_before_prompt_observer
4088         and tui_normal_stop_observer.  Remove reference to
4089         deprecated_selected_frame_level_changed_hook.
4090
4091 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4092
4093         PR tui/13378
4094         * tui/tui-stack.c (tui_set_locator_info): Change prototype to
4095         return an int instead of void.  Return whether the locator
4096         window has changed.
4097         (tui_show_frame_info): If the locator info has not changed, then
4098         bail out early to avoid refreshing the windows.
4099
4100 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
4101
4102         * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
4103         LOCATOR_WIN to tui_alloc_content.
4104
4105 2015-06-30  Yao Qi  <yao.qi@linaro.org>
4106
4107         PR tdep/18605
4108         * arm-tdep.c (arm_get_next_pc_raw): Break for media
4109         instructions.
4110
4111 2015-06-29  Kevin Buettner  <kevinb@redhat.com>
4112
4113         * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
4114         (rx_dwarf_reg_to_regnum): New function.
4115         (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum.  Use dwarf2
4116         unwinding.
4117
4118 2015-06-29  Pedro Alves  <palves@redhat.com>
4119
4120         PR threads/18127
4121         * infcall.c (run_inferior_call): On infcall success, if the thread
4122         was marked stopped before, reset it back to stopped.
4123         * infrun.c (resume): Don't suppress the set_running calls when
4124         doing an infcall.
4125         (normal_stop): Only discard the finish_thread_state cleanup if the
4126         infcall succeeded.
4127
4128 2015-06-29  Pierre Langlois  <pierre.langlois@arm.com>
4129
4130         * MAINTAINERS (Write After Approval): Update my email address.
4131
4132 2015-06-26  Keith Seitz  <keiths@redhat.com>
4133             Doug Evans  <dje@google.com>
4134
4135         PR 16253
4136         * block.c (block_lookup_symbol): For non-function blocks,
4137         continue to search for a symbol with an exact domain match
4138         Otherwise, return any previously found "best domain" symbol.
4139         (block_lookup_symbol_primary): Likewise.
4140
4141 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
4142
4143         * NEWS: Mention the new option "history remove-duplicates".
4144         * top.c (history_remove_duplicates): New static variable.
4145         (show_history_remove_duplicates): New static function.
4146         (gdb_add_history): Conditionally remove duplicate history
4147         entries.
4148         (init_main): Add "history remove-duplicates" option.
4149
4150 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
4151
4152         * tui/tui-win.c (focus_completer): New static function.
4153         (_initialize_tui_win): Set the completion function of the
4154         "focus" command to focus_completer.
4155
4156 2015-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4157
4158         * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
4159         and language_asm..
4160         * symtab.c (find_function_start_sal): Likewise.
4161
4162 2015-06-25  Gary Benson  <gbenson@redhat.com>
4163
4164         * solib.c (solib_find_1): Set local variable sysroot to NULL if
4165         it is the empty string after trailing slashes have been stripped.
4166
4167 2015-06-25  Gary Benson  <gbenson@redhat.com>
4168
4169         * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
4170         * infrun.c (follow_exec): Likewise.
4171         * remote.c (remote_filesystem_is_local): Likewise.
4172         * solib.c (solib_find_1): Likewise.
4173
4174 2015-06-24  Keith Seitz  <keiths@redhat.com>
4175
4176         * build-id.c (build_id_to_debug_bfd): Add cleanup to free
4177         return value from lrealpath.
4178
4179 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
4180
4181         * remote-sim.c (gdbsim_open): Move sysroot update to the top.
4182
4183 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
4184
4185         * remote-sim.c: Include gdb_bfd.h.
4186         (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
4187         Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
4188
4189 2015-06-24  Yao Qi  <yao.qi@linaro.org>
4190
4191         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
4192         set_gdbarch_get_siginfo_type.
4193         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
4194         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
4195         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4196         * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
4197         * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
4198         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
4199         * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
4200         * linux-tdep.c (linux_get_siginfo_type): Change it to static.
4201         (linux_init_abi): Call set_gdbarch_get_siginfo_type.
4202         * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
4203
4204 2015-06-24  Gary Benson  <gbenson@redhat.com>
4205
4206         * common/buffer.c (stdint.h): Do not include.
4207         * common/print-utils.c (stdint.h): Likewise.
4208         * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
4209         * compile/compile-c-types.c (gdb_assert.h): Likewise.
4210         * ft32-tdep.c (gdb_assert.h): Likewise.
4211         * guile/scm-utils.c (stdint.h): Likewise.
4212         * i386-linux-tdep.c (stdint.h): Likewise.
4213         * i386-tdep.c (stdint.h): Likewise.
4214         * nat/linux-btrace.c (stdint.h): Likewise.
4215         * nat/linux-btrace.h (stdint.h): Likewise.
4216         * nat/linux-ptrace.c (stdint.h): Likewise.
4217         * nat/mips-linux-watch.h (stdint.h): Likewise.
4218         * ppc-linux-nat.c (stdint.h): Likewise.
4219         * python/python-internal.h (stdint.h): Likewise.
4220         * stub-termcap.c (stdlib.h): Likewise.
4221         * target/target.h (stdint.h): Likewise.
4222         * xtensa-linux-nat.c (stdint.h): Likewise.
4223
4224 2015-06-23  Patrick Palka  <patrick@parcs.ath.cx>
4225
4226         * top.c (init_history): Look at errno after calling strtol to
4227         properly map large GDBHISTSIZE values to infinity.
4228
4229 2015-06-23  Doug Evans  <dje@google.com>
4230
4231         * inferior.h (struct inferior_suspend_state): Delete, unused.
4232         All references deleted.
4233
4234 2015-06-23  Mike Frysinger  <vapier@gentoo.org>
4235
4236         * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
4237         (microblaze_push_dummy_call): Likewise.
4238         (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
4239         and set_gdbarch_push_dummy_call.
4240
4241 2015-06-23  Yao Qi  <yao.qi@linaro.org>
4242
4243         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
4244         Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
4245         (amd64_linux_store_inferior_registers): Likewise.
4246         * arm-linux-nat.c (fetch_fpregister): Likewise.
4247         (fetch_fpregs, store_fpregister): Likewise.
4248         (store_fpregister, store_fpregs): Likewise.
4249         (fetch_register, fetch_regs): Likewise.
4250         (store_register, store_regs): Likewise.
4251         (fetch_vfp_regs, store_vfp_regs): Likewise.
4252         (arm_linux_read_description): Check have_ptrace_getregset is
4253         TRIBOOL_UNKNOWN.  Set have_ptrace_getregset to TRIBOOL_TRUE
4254         or TRIBOOL_FALSE.
4255         * i386-linux-nat.c (fetch_xstateregs): Check
4256         have_ptrace_getregset is not TRIBOOL_TRUE.
4257         (store_xstateregs): Likewise.
4258         * linux-nat.c (have_ptrace_getregset): Change its type to
4259         enum tribool.
4260         * linux-nat.h (tribool): New enum.
4261         * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
4262         Check whether have_ptrace_getregset is TRIBOOL_TRUE.
4263
4264 2015-06-19  Doug Evans  <dje@google.com>
4265
4266         * NEWS: Mention Sun's version of stabs is no longer supported.
4267         * elfread.c (free_elfinfo): Delete.  All uses updated.
4268         (elfstab_offset_sections): Delete.  All uses updated.
4269         * gdb-stabs.h (stab_section_info): Delete.  All uses updated.
4270         * psympriv.h (partial_symtab) <section_offsets>: Delete.
4271         All uses updated.
4272         * psymtab.c (start_psymtab_common): Delete arg section_offsets.
4273         All callers updated.
4274
4275 2015-06-18  Simon Marchi  <simon.marchi@ericsson.com>
4276
4277         * common/rsp-low.c (needs_escaping): New.
4278         (remote_escape_output): Add unit_size parameter. Refactor to
4279         support multi-byte addressable units.  Rename parameters.
4280         * common/rsp-low.h (remote_escape_output): Add unit_size
4281         parameter and rename others. Update doc.
4282         * remote.c (align_for_efficient_write): New.
4283         (remote_write_bytes_aux): Add unit_size parameter and use it.
4284         Rename some variables.  Update doc.
4285         (remote_xfer_partial): Get unit size and use it.
4286         (remote_read_bytes_1): Add unit_size parameter and use it.
4287         Rename some variables. Update doc.
4288         (remote_write_bytes): Same.
4289         (remote_xfer_live_readonly_partial): Same.
4290         (remote_read_bytes): Same.
4291         (remote_flash_write): Update call to remote_write_bytes_aux.
4292         (remote_write_qxfer): Update call to remote_escape_output.
4293         (remote_search_memory): Same.
4294         (remote_hostio_pwrite): Same.
4295
4296 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
4297
4298         * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
4299         locations as inserted.
4300         Update and expand comment about permanent locations.
4301         (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
4302         Move comment to add_location_to_breakpoint.
4303         (update_global_location_list): Don't error out if a permanent
4304         breakpoint is not marked inserted.
4305         Don't error out if a non-permanent breakpoint location is inserted on
4306         top of a permanent breakpoint.
4307
4308 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
4309
4310         * breakpoint.c (make_breakpoint_permanent): Remove unused
4311         function.
4312         * breakpoint.h (make_breakpoint_permanent): Remove declaration.
4313
4314 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4315
4316         PR gdb/16999
4317         * NEWS: Mention new GDBHISTSIZE behavior.
4318         * top.c (init_history): For null or out-of-range GDBHISTSIZE,
4319         set history size to unlimited.  Ignore non-numeric GDBHISTSIZE.
4320
4321 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4322
4323         * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
4324         * top.c (init_history): Read from GDBHISTSIZE instead of
4325         HISTSIZE.
4326         (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
4327
4328 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
4329
4330         * top.c (gdb_safe_append_history): Do not call
4331         history_truncate_file if the history is not stifled.
4332
4333 2015-06-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4334
4335         * syscalls/s390-linux.xml: Add syscalls 344 through 354.
4336         * syscalls/s390x-linux.xml: Likewise.
4337
4338 2015-06-16  Michael Eager  <eager@eagercon.com>
4339
4340         * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
4341
4342 2015-06-16  Patrick Palka  <patrick@parcs.ath.cx>
4343
4344         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
4345         target_terminal_ours_for_output() before calling
4346         tui_show_frame_info(), and restore the original terminal
4347         settings afterwards.
4348
4349 2015-06-16  Martin Simmons  <martin@lispworks.com>  (tiny patch)
4350
4351         * arm-linux-nat.c: Include nat/linux-ptrace.h.
4352
4353 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
4354
4355         * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
4356         memory unit size.
4357         (mi_cmd_data_write_memory_bytes): Same.
4358
4359 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
4360
4361         * corefile.c (write_memory): Update doc.
4362         * gdbcore.h (write_memory): Same.
4363
4364 2015-06-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
4365
4366         * linux-tdep.c (enum filterflags): Make it from anonymous enum.
4367         (dump_mapping_p): Use it for parameter filterflags.
4368         (linux_find_memory_regions_full): Use it for variable filterflags.
4369
4370 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
4371             Jan Kratochvil  <jan.kratochvil@redhat.com>
4372
4373         Merge multiple hex conversions.
4374         * monitor.c: Include rsp-low.h.
4375         (fromhex): Remove definition.
4376
4377 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
4378             Jan Kratochvil  <jan.kratochvil@redhat.com>
4379
4380         Move utility functions to common/.
4381         * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
4382         Move defs to common/common-utils.c.
4383         * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
4384         (skip_to_space_const): Move decls to common/common-utils.h.
4385         * common/common-defs.h: Move include of common-types.h before
4386         common-utils.h.
4387         * common/common-utils.c: Include host-defs.h and ctype.h.
4388         (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
4389         from utils.c.
4390         (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
4391         cli/cli-utils.c.
4392         * common/common-utils.h (strtoulst): Move decl from utils.h.
4393         (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
4394         Move from cli/cli-utils.h.
4395         * common/host-defs.h: Include limits.h.
4396         (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
4397         (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
4398         * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
4399         common/common-utils.h.
4400         * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
4401         (strtoulst): Move to common/common-utils.c.
4402         * utils.h (strtoulst): Moved decl to common/common-utils.h.
4403
4404 2015-06-15  Yao Qi  <yao.qi@linaro.org>
4405
4406         * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
4407
4408 2015-06-10  Jon Turney  <jon.turney@dronecode.org.uk>
4409
4410         * build-id.c: Don't include elf-bfd.h.
4411         (build_id_bfd_get): Use bfd_build_id.
4412         (build_id_verify): Ditto.
4413         * build-id.h: Ditto.
4414         (find_separate_debug_file_by_buildid): Ditto.
4415         * python/py-objfile.c: Don't include elf-bfd.h.
4416         (objfpy_get_build_id) Use bfd_build_id.
4417         (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
4418         * coffread.c: Include build-id.h.
4419         (coff_symfile_read): Try find_separate_debug_file_by_buildid.
4420
4421 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4422
4423         * windows-nat.c (do_windows_fetch_inferior_registers)
4424         (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
4425         conditional with __CYGWIN__.
4426
4427 2015-06-13  Andrew Burgess  <andrew.burgess@embecosm.com>
4428
4429         * completer.c: Add arch-utils.h include.
4430         (enum reg_completer_targets): New enum.
4431         (reg_or_group_completer_1): New function containing old
4432         reg_or_group_completer, add and use new parameter to control what
4433         is completed on.  Use get_current_arch rather than architecture of
4434         currently selected frame.
4435         (reg_or_group_completer): Call new reg_or_group_completer_1.
4436         (reggroup_completer): Call new reg_or_group_completer_1.
4437         * completer.h (reggroup_completer): Add declaration.
4438         * tui/tui-regs.c: Add 'completer.h' include.
4439         (tui_reg_next_command): Renamed to...
4440         (tui_reg_next): ...this.  Adjust parameters and return rather than
4441         display new group.
4442         (tui_reg_prev_command): Renamed to...
4443         (tui_reg_prev): ...this.  Adjust parameters and return rather than
4444         display new group.
4445         (tui_reg_float_command): Delete.
4446         (tui_reg_general_command): Delete.
4447         (tui_reg_system_command): Delete.
4448         (tui_reg_command): Rewrite to perform switching of register group.
4449         Add header comment.
4450         (tuireglist): Remove.
4451         (tui_reggroup_completer): New function.
4452         (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
4453         creation of 'tui reg' command.
4454         * NEWS: Add comment about 'tui reg' changes.
4455
4456 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4457
4458         * target.c (target_read): Consider addressable unit size when
4459         reading from a memory object.
4460         (read_memory_robust): Same.
4461         (read_whatever_is_readable): Same.
4462         (target_write_with_progress): Consider addressable unit size
4463         when writing to a memory object.
4464         * target.h (target_read): Update documentation.
4465         (target_write): Add documentation.
4466
4467 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4468
4469         * arch-utils.h (default_addressable_memory_unit_size): New.
4470         * arch-utils.c (default_addressable_memory_unit_size): New.
4471         * gdbarch.sh (addressable_memory_unit_size): New.
4472         * gdbarch.h: Re-generate.
4473         * gdbarch.c: Re-generate.
4474
4475 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
4476
4477         * target.c (target_read): Rename variables and use
4478         TARGET_XFER_E_IO.
4479         (target_read_with_progress): Same.
4480         (read_memory_robust): Constify parameters and rename
4481         variables.
4482         (read_whatever_is_readable): Constify parameters,
4483         rename variables, adjust formatting.
4484         * target.h (read_memory_robust): Constify parameters.
4485
4486 2015-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
4487
4488         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
4489         synthetic (non-AltiVec) vector types.
4490         (ppc64_sysv_abi_return_value): Likewise.
4491
4492 2015-06-12  Antoine Tremblay  <antoine.tremblay@ericsson.com>
4493
4494         PR breakpoints/16465
4495         * breakpoint.c (create_breakpoint): Save extra_string for
4496         pending breakpoints.
4497
4498 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4499
4500         * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
4501         and bt_mask to CORE_ADDR.
4502
4503 2015-06-11  Gary Benson <gbenson@redhat.com>
4504
4505         * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
4506         (mnsh_recv_message): Likewise.
4507
4508 2015-06-11  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4509
4510         * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
4511         long long int and plongest instead of %ll.
4512
4513 2015-06-11  Gary Benson <gbenson@redhat.com>
4514
4515         * nat/linux-namespaces.c (gdb_wait.h): New include.
4516         (sys/wait.h): Do not include.
4517
4518 2015-06-10  Simon Marchi  <simon.marchi@ericsson.com>
4519
4520         * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
4521         end_sequence is true.
4522
4523 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4524
4525         Code cleanup.
4526         * solib-target.c (library_list_start_list): Use explicit NULL
4527         comparison.
4528
4529 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4530
4531         * solib-target.c (library_list_start_list): Do not dereference
4532         variable version in its initialization.  Make the VERSION check handle
4533         NULL.
4534         (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
4535
4536 2015-06-10  Gary Benson <gbenson@redhat.com>
4537
4538         * NEWS: Announce support for direct access of executable and
4539         shared library files when attaching to inferiors in containers
4540         on GNU/Linux systems.
4541
4542 2015-06-10  Gary Benson <gbenson@redhat.com>
4543
4544         * remote.c (struct remote_state) <fs_pid>: New field.
4545         (new_remote_state): Initialize the above.
4546         (PACKET_vFile_setfs): New enum value.
4547         (remote_hostio_set_filesystem): New function.
4548         (remote_hostio_open): Call the above.
4549         (remote_hostio_unlink): Likewise.
4550         (remote_hostio_readlink): Likewise.
4551         (_initialize_remote): Register new "set/show remote
4552         hostio-setfs-packet" command.
4553         * NEWS: Announce new vFile:setfs packet.
4554
4555 2015-06-10  Gary Benson <gbenson@redhat.com>
4556
4557         * linux-nat.c (nat/linux-namespaces.h): New include.
4558         (fileio.h): Likewise.
4559         (linux_nat_filesystem_is_local): New function.
4560         (linux_nat_fileio_pid_of): Likewise.
4561         (linux_nat_fileio_open): Likewise.
4562         (linux_nat_fileio_readlink): Likewise.
4563         (linux_nat_fileio_unlink): Likewise.
4564         (linux_nat_add_target): Initialize to_filesystem_is_local,
4565         to_fileio_open, to_fileio_readlink and to_fileio_unlink.
4566         (_initialize_linux_nat): New "set/show debug linux-namespaces"
4567         commands.
4568         * NEWS: Mention new "set/show debug linux-namespaces" commands.
4569
4570 2015-06-10  Gary Benson <gbenson@redhat.com>
4571
4572         * target.h (struct inferior): New forward declaration.
4573         (struct target_ops) <to_filesystem_is_local>: Update comment.
4574         (struct target_ops) <to_fileio_open>: New argument inf.
4575         Update comment.  All implementations updated.
4576         (struct target_ops) <to_fileio_unlink>: Likewise.
4577         (struct target_ops) <to_fileio_readlink>: Likewise.
4578         (target_filesystem_is_local): Update comment.
4579         (target_fileio_open): New argument inf.  Update comment.
4580         (target_fileio_unlink): Likewise.
4581         (target_fileio_readlink): Likewise.
4582         (target_fileio_read_alloc): Likewise.
4583         (target_fileio_read_stralloc): Likewise.
4584         * target.c (target_fileio_open): New argument inf.
4585         Pass inf to implementation.  Update debug printing.
4586         (target_fileio_unlink): Likewise.
4587         (target_fileio_readlink): Likewise.
4588         (target_fileio_read_alloc_1): New argument inf. Pass inf
4589         to target_fileio_open.
4590         (target_fileio_read_alloc): New argument inf. Pass inf to
4591         target_fileio_read_alloc_1.
4592         (target_fileio_read_stralloc): Likewise.
4593         * gdb_bfd.c (inferior.h): New include.
4594         (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
4595         argument with new argument "inferior".  Pass inferior to
4596         target_fileio_open.
4597         (gdb_bfd_open): Supply inferior argument to
4598         gdb_bfd_iovec_fileio_open.
4599         * linux-tdep.c (linux_info_proc): Supply inf argument to
4600         relevant target_fileio calls.
4601         (linux_find_memory_regions_full): Likewise.
4602         (linux_fill_prpsinfo): Likewise.
4603         * remote.c (remote_filesystem_is_local): Supply inf
4604         argument to remote_hostio_open.
4605         (remote_file_put): Likewise.
4606         (remote_file_get): Likewise.
4607         (remote_file_delete): Supply inf argument to
4608         remote_hostio_unlink.
4609
4610 2015-06-10  Gary Benson <gbenson@redhat.com>
4611
4612         * inf-child.c (inf_child_fileio_open): Replace comment.
4613         (inf_child_fileio_pwrite): Likewise.
4614         (inf_child_fileio_pread): Likewise.
4615         (inf_child_fileio_fstat): Insert blank line before comment.
4616         (inf_child_fileio_close): Replace comment.
4617         (inf_child_fileio_unlink): Likewise.
4618         (inf_child_fileio_readlink): Likewise.
4619         * remote.c (remote_hostio_open): Likewise.
4620         (remote_hostio_pread): Likewise.
4621         (remote_hostio_pwrite): Likewise.
4622         (remote_hostio_close): Likewise.
4623         (remote_hostio_unlink): Likewise.
4624         (remote_hostio_readlink): Likewise.
4625         (remote_hostio_fstat): Likewise.
4626         (remote_filesystem_is_local): Likewise.
4627         * target.c (target_fileio_open): Likewise.
4628         (target_fileio_pwrite): Likewise.
4629         (target_fileio_pread): Likewise.
4630         (target_fileio_fstat): Insert blank line before comment.
4631         (target_fileio_close): Replace comment.
4632         (target_fileio_unlink): Likewise.
4633         (target_fileio_readlink): Likewise.
4634         (target_fileio_read_alloc): Likewise.
4635         (target_fileio_read_stralloc): Likewise.
4636
4637 2015-06-10  Gary Benson <gbenson@redhat.com>
4638
4639         * linux-thread-db.c (nat/linux-namespaces.h): New include.
4640         (check_pid_namespace_match): Use linux_ns_same rather than
4641         linux_proc_pid_get_ns to spot PID namespace mismatches.
4642         * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
4643         * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
4644
4645 2015-06-10  Gary Benson <gbenson@redhat.com>
4646
4647         * configure.ac (AC_CHECK_FUNCS): Add setns.
4648         * config.in: Regenerate.
4649         * configure: Likewise.
4650         * nat/linux-namespaces.h: New file.
4651         * nat/linux-namespaces.c: Likewise.
4652         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
4653         (linux-namespaces.o): New rule.
4654         * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
4655         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
4656         * config/arm/linux.mh (NATDEPFILES): Likewise.
4657         * config/i386/linux.mh (NATDEPFILES): Likewise.
4658         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4659         * config/ia64/linux.mh (NATDEPFILES): Likewise.
4660         * config/m32r/linux.mh (NATDEPFILES): Likewise.
4661         * config/m68k/linux.mh (NATDEPFILES): Likewise.
4662         * config/mips/linux.mh (NATDEPFILES): Likewise.
4663         * config/pa/linux.mh (NATDEPFILES): Likewise.
4664         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
4665         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
4666         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
4667         * config/s390/linux.mh (NATDEPFILES): Likewise.
4668         * config/sparc/linux.mh (NATDEPFILES): Likewise.
4669         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
4670         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
4671         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
4672
4673 2015-06-10  Gary Benson <gbenson@redhat.com>
4674
4675         * utils.h (make_cleanup_close): Moved to common/filestuff.h.
4676         * utils.c (do_close_cleanup): Moved to common/filestuff.c.
4677         (make_cleanup_close): Likewise.
4678         * common/filestuff.h (make_cleanup_close): Moved from utils.h.
4679         * common/filestuff.c (do_close_cleanup): Moved from utils.c.
4680         (make_cleanup_close): Likewise.
4681
4682 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4683
4684         * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
4685         from SuspendThread().
4686
4687 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
4688
4689         * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
4690         from OutputDebugString.
4691
4692 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4693                         Mircea Gherzan  <mircea.gherzan@intel.com>
4694
4695         * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
4696         MPX_BT_MASK_32): New macros.
4697         (i386_mpx_set_bounds): New function that implements
4698         the command "set-mpx-bound".
4699         (i386_mpx_enabled): Helper function to test MPX availability.
4700         (i386_mpx_bd_base): Helper function to calculate the base directory
4701         address.
4702         (i386_mpx_get_bt_entry): Helper function to access a bound
4703         table entry.
4704         (i386_mpx_print_bounds): Effectively display bound information.
4705         (_initialize_i386_tdep): Add new commands to commands "set mpx" and
4706         "show mpx".
4707         (_initialize_i386_tdep):
4708         Add "bound" to the commands "show mpx" and "set mpx" commands.
4709         (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
4710         and "show mpx" commands.
4711         * NEWS: List new commands for MPX support.
4712
4713 2015-06-09  Gary Benson <gbenson@redhat.com>
4714
4715         * common/fileio.h (fileio_to_host_mode): New declaration.
4716         * common/fileio.c (fileio_to_host_mode): New Function.
4717         * inf-child.c (inf_child_fileio_open): Process mode argument
4718         with fileio_to_host_mode.
4719
4720 2015-06-09  Gary Benson <gbenson@redhat.com>
4721
4722         * common/fileio.c (fileio_mode_pack): Fix preprocessor
4723         conditional.
4724
4725 2015-06-05  Gary Benson <gbenson@redhat.com>
4726
4727         * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
4728         * remote.c (remote_filesystem_is_local): ...here.
4729
4730 2015-06-04  Yao Qi  <yao.qi@linaro.org>
4731
4732         * gdbarch.c: Regenerate it.
4733
4734 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4735
4736         * arch-utils.c (default_infcall_munmap): New.
4737         * arch-utils.h (default_infcall_munmap): New declaration.
4738         * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
4739         (munmap_list_free, munmap_listp_free_cleanup): New.
4740         (struct setup_sections_data): Add field munmap_list_headp.
4741         (setup_sections): Call munmap_list_add.
4742         (compile_object_load): New variable munmap_list_head, initialize
4743         setup_sections_data.munmap_list_headp, return munmap_list_head.
4744         * compile/compile-object-load.h (struct munmap_list): New declaration.
4745         (struct compile_module): Add field munmap_list_head.
4746         (munmap_list_free): New declaration.
4747         * compile/compile-object-run.c (struct do_module_cleanup): Add field
4748         munmap_list_head.
4749         (do_module_cleanup): Call munmap_list_free.
4750         (compile_object_run): Pass munmap_list_head to do_module_cleanup.
4751         * gdbarch.c: Regenerate.
4752         * gdbarch.h: Regenerate.
4753         * gdbarch.sh (infcall_munmap): New.
4754         * linux-tdep.c (linux_infcall_munmap): New.
4755         (linux_init_abi): Install it.
4756
4757 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
4758
4759         PR gdb/15564
4760         * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
4761
4762 2015-06-02  Yao Qi  <yao.qi@linaro.org>
4763
4764         * i386-linux-nat.c: Include linux-nat.h.
4765
4766 2015-06-01  Andreas Schwab  <schwab@linux-m68k.org>
4767             Jan Kratochvil  <jan.kratochvil@redhat.com>
4768
4769         PR symtab/18392
4770         * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
4771         assertion.
4772         * dwarf2loc.c (chain_candidate): Likewise.
4773
4774 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4775
4776         * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
4777         (store_vfp_regs): Use PTRACE_SETREGSET.
4778
4779 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4780
4781         * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
4782         (fetch_fpregs): Likewise.
4783         * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
4784         (store_fpregs): Likewise.
4785
4786 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4787
4788         * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
4789         (fetch_regs): Likewise.
4790         (store_regs): Use PTRACE_SETREGSET.
4791         (store_register): Likewise.
4792
4793 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4794
4795         * arm-linux-nat.c (arm_linux_read_description): Check whether
4796         kernel supports PTRACE_GETREGSET.
4797
4798 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4799
4800         * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
4801         * linux-nat.c: ... here.
4802         * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
4803         to ...
4804         * linux-nat.h: ... here.
4805
4806 2015-06-01  Yao Qi  <yao.qi@linaro.org>
4807
4808         * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
4809         * i386-linux-nat.c: Likewise.
4810         * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
4811         * s390-linux-nat.c: Include "nat/linux-ptrace.h".
4812         (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4813         * x86-linux-nat.c: Include "nat/linux-ptrace.h".
4814         * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4815
4816 2015-05-30  Eli Zaretskii  <eliz@gnu.org>
4817
4818         * go32-nat.c (go32_xfer_memory): Fix the return value to be
4819         compatible to what read_child and write_child return.  This
4820         unbreaks that DJGPP build of GDB which was broken since v7.7.
4821
4822 2015-05-29  Martin Galvan  <martin.galvan@tallertechnologies.com>
4823
4824         * MAINTAINERS (Write After Approval): Add Martin Galvan.
4825
4826 2015-05-29  Roland McGrath  <mcgrathr@google.com>
4827
4828         PR gdb/18464
4829         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
4830         rather than internal_error for an unrecognized value.
4831
4832 2015-05-29  Max Filippov  <jcmvbkbc@gmail.com>
4833
4834         * xtensa-tdep.c (xtensa_pseudo_register_read)
4835         (xtensa_pseudo_register_write): Don't alias last pseudo register
4836         to a1.
4837
4838 2015-05-28  Don Breazeal  <donb@codesourcery.com>
4839
4840         * infrun.c (follow_fork_inferior): Ensure the use of
4841         process-style ptids (pid,0,0) in verbose/debug "Detaching"
4842         messages.
4843
4844 2015-05-28  Doug Evans  <dje@google.com>
4845
4846         * dwarf2read.c (record_line_ftype): Remove, duplicate.
4847
4848 2015-05-28  Yao Qi  <yao.qi@linaro.org>
4849
4850         * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
4851         (arm_linux_fetch_inferior_registers): Use
4852         tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
4853         (arm_linux_store_inferior_registers): Likewise.
4854         (arm_linux_read_description): Don't set
4855         arm_linux_has_wmmx_registers.
4856         * arm-tdep.c (arm_gdbarch_init): Set
4857         tdep->have_wmmx_registers according target descriptions.
4858         * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
4859         field.
4860
4861 2015-05-28  Yao Qi  <yao.qi@linaro.org>
4862
4863         * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
4864         (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
4865         instead of arm_linux_vfp_register_count.
4866         (store_vfp_regs): Likewise.
4867         (arm_linux_fetch_inferior_registers): Likewise.
4868         (arm_linux_store_inferior_registers): Likewise.
4869         (arm_linux_read_description): Don't set
4870         arm_linux_vfp_register_count.
4871         * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
4872         Adjust.
4873         * arm-tdep.c (arm_gdbarch_init): Add assert on
4874         vfp_register_count.
4875         * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
4876         field to vfp_register_count.  All users updated.
4877
4878 2015-05-28  Kyle Huey  <me@kylehuey.com>  (tiny patch)
4879
4880         * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
4881         ELFOSABI_GNU binaries.
4882
4883 2015-05-27  Doug Evans  <dje@google.com>
4884
4885         * dwarf2read.c (lnp_state_machine): New typedef.
4886         (lnp_reader_state): New typedef.
4887         (dwarf_record_line_1): Renamed from dwarf_record_line.
4888         All callers updated.
4889         (dwarf_record_line): New function.
4890         (init_lnp_state_machine): New function.
4891         (check_line_address): Replace p_record_line parameter with state.
4892         All callers updated.
4893         (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
4894         Update to record state in lnp_state_machine.
4895
4896 2015-05-27  Doug Evans  <dje@google.com>
4897
4898         * dwarf2read.c (record_line_ftype): New typedef.
4899         (check_line_address): New function.
4900         (dwarf_decode_lines_1): Call it.
4901
4902 2015-05-27  Doug Evans  <dje@google.com>
4903
4904         * NEWS: Mention "set debug dwarf-line".
4905         * dwarf2read.c (dwarf_line_debug): New static global.
4906         (add_include_dir): Add debug dwarf-line support.
4907         (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
4908         (_initialize_dwarf2_read): New parameter "debug dwarf-line".
4909
4910 2015-05-27  Doug Evans  <dje@google.com>
4911
4912         * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
4913         All callers updated.
4914         (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
4915         * cp-support.h (cp_lookup_nested_symbol): Update.
4916
4917 2015-05-27  Doug Evans  <dje@google.com>
4918
4919         PR symtab/18258
4920         * block.c (block_find_symbol): New function.
4921         (block_find_non_opaque_type): Ditto.
4922         (block_find_non_opaque_type_preferred): Ditto.
4923         * block.h (block_symbol_matcher_ftype): New typedef.
4924         (block_find_symbol): Declare.
4925         (block_find_non_opaque_type): Ditto.
4926         (block_find_non_opaque_type_preferred): Ditto.
4927         * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
4928         * psymtab.c (psym_lookup_symbol): Ditto.
4929         * symtab.c (basic_lookup_transparent_type_1): New function.
4930         (basic_lookup_transparent_type): Call it.
4931
4932 2015-05-27  Yao Qi  <yao.qi@linaro.org>
4933
4934         * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
4935         AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
4936
4937 2015-05-27  Yao Qi  <yao.qi@linaro.org>
4938
4939         * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
4940         before operator &&.
4941         (aarch64_record_load_store): Likewise.
4942
4943 2015-05-26  Doug Evans  <dje@google.com>
4944
4945         PR c++/18141, c++/18417.
4946         * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
4947         a typedef.
4948
4949 2015-05-26  Doug Evans  <dje@google.com>
4950
4951         * NEWS: Add entries for command renamings.
4952         * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
4953         All uses updated.
4954         (dwarf_die_debug): Renamed from dwarf2_die_debug.  All uses updated.
4955         (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
4956         All uses updated.
4957         (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
4958         All callers updated.  Fix spelling of DWARF in help text.
4959         (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
4960         All uses updated.
4961         (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
4962         All uses updated.
4963         (set_dwarf_cmd): Renamed from set_dwarf2_cmd.  All callers updated.
4964         (show_dwarf_cmd): Renamed from show_dwarf2_cmd.  All callers updated.
4965         (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
4966         All uses updated.
4967         (show_dwarf_always_disassemble): Renamed from
4968         show_dwarf2_always_disassemble.  All callers updated.
4969         (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
4970         "set/show dwarf".  Rename "set/show dwarf2 max-cache-age" to
4971         "set/show dwarf max-cache-age".  Rename
4972         "set/show dwarf2 always-disassemble" to
4973         "set/show dwarf always-disassemble".  Rename
4974         "set/show debug dwarf2-read" to "set/show debug dwarf-read".  Rename
4975         "set/show debug dwarf2-die" to "set/show debug dwarf-die".
4976
4977 2015-05-26  Doug Evans  <dje@google.com>
4978
4979         PR python/18438
4980         * python/py-lazy-string.c (stpy_convert_to_value): Use
4981         gdbpy_gdb_memory_error not PyExc_MemoryError.
4982         (gdbpy_create_lazy_string_object): Ditto.
4983
4984 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
4985
4986         * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
4987
4988 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
4989
4990         * tui/tui-regs.c (tui_reg_prev_command): New function.
4991         (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
4992         * reggroups.c (reggroup_prev): New function.
4993         * reggroups.h (reggroup_prev): Add declaration.  Update comment.
4994
4995 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
4996             Yao Qi  <yao.qi@linaro.org>
4997
4998         * aarch64-linux-tdep.c: Include linux-record.h and
4999         record-full.h.
5000         (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
5001         (aarch64_syscall): New enum.
5002         (aarch64_canonicalize_syscall): New function.
5003         (aarch64_all_but_pc_registers_record): New function.
5004         (aarch64_linux_syscall_record): New function.
5005         (aarch64_linux_init_abi): Install AArch64 process record
5006         handler.  Update to handle syscall recording.
5007         * aarch64-tdep.c: Include record.h and record-full.h.
5008         (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
5009         (struct aarch64_mem_r): Define.
5010         (aarch64_record_result): New enum.
5011         (struct insn_decode_record): Define.
5012         (insn_decode_record): New typedef.
5013         (aarch64_record_data_proc_reg): New function.
5014         (aarch64_record_data_proc_imm): New function.
5015         (aarch64_record_branch_except_sys): New function.
5016         (aarch64_record_load_store): New function.
5017         (aarch64_record_data_proc_simd_fp): New function.
5018         (aarch64_record_asimd_load_store): New function.
5019         (aarch64_record_decode_insn_handler): New function.
5020         (deallocate_reg_mem): New function.
5021         (aarch64_process_record): New function.
5022         * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
5023         New field.
5024         (aarch64_process_record): New extern declaration.
5025         * configure.tgt: Add linux-record.o to gdb_target_obs.
5026         * linux-record.h (struct linux_record_tdep) <arg7>: New field.
5027
5028 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
5029
5030         * NEWS: Add a note on process record-replay support on aarch64*-linux*
5031         targets.
5032
5033 2015-05-26  Martin Galvan  <martin.galvan@tallertechnologies.com>
5034
5035         * amd64-tdep.c: Replace in_function_epilogue_p with
5036         stack_frame_destroyed_p throughout.
5037         * arch-utils.c: Ditto.
5038         * arch-utils.h: Ditto.
5039         * arm-tdep.c: Ditto.
5040         * breakpoint.c: Ditto.
5041         * gdbarch.sh: Ditto.
5042         * hppa-tdep.c: Ditto.
5043         * i386-tdep.c: Ditto.
5044         * mips-tdep.c: Ditto.
5045         * nios2-tdep.c: Ditto.
5046         * rs6000-tdep.c: Ditto.
5047         * s390-linux-tdep.c: Ditto.
5048         * score-tdep.c: Ditto.
5049         * sh-tdep.c: Ditto.
5050         * sparc-tdep.c: Ditto.
5051         * sparc-tdep.h: Ditto.
5052         * sparc64-tdep.c: Ditto.
5053         * spu-tdep.c: Ditto.
5054         * tic6x-tdep.c: Ditto.
5055         * tilegx-tdep.c: Ditto.
5056         * xstormy16-tdep.c: Ditto.
5057         * gdbarch.c, gdbarch.h: Re-generated.
5058
5059 2015-05-22  Andrew Burgess  <andrew.burgess@embecosm.com>
5060
5061         * NEWS: Mention 'tui enable' and 'tui disable'.
5062         * tui/tui.c (tui_enable_command): New function.
5063         (tui_disable_command): New function.
5064         (_initialize_tui): New function.
5065
5066 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5067
5068         * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
5069
5070 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5071
5072         * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
5073         buf_ptr is freed.
5074
5075 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5076
5077         * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
5078         into ...
5079         (tui_set_layout_for_display_command): ...here, before calling
5080         tui_set_layout.  Only set the layout if gdb has not already
5081         entered the TUI_FAILURE state.
5082
5083 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5084
5085         * tui/tui-layout.c (layout_completer): New function.
5086         (_initialize_tui_layout): Set completer on layout command.
5087
5088 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
5089
5090         * tui/tui-layout.c (tui_set_layout): Remove
5091         tui_register_display_type parameter.  Remove all checking of this
5092         parameter, and reindent function.  Update header comment.
5093         (tui_set_layout_for_display_command): Rename to...
5094         (tui_set_layout_by_name): ...this, and don't check for different
5095         register class types, don't pass a tui_register_display_type to
5096         tui_set_layout.  Update header comment.
5097         (layout_names): Remove register set specific names.
5098         * tui/tui-layout.h (tui_set_layout): Remove
5099         tui_register_display_type parameter.
5100         * tui/tui.c (tui_rl_change_windows): Don't pass a
5101         tui_register_display_type to tui_set_layout.
5102         (tui_rl_delete_other_windows): Likewise.
5103         (tui_enable): Likewise.
5104         * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
5105         (TUI_FLOAT_REGS_NAME_LOWER): Remove.
5106         (TUI_GENERAL_REGS_NAME): Remove.
5107         (TUI_GENERAL_REGS_NAME_LOWER): Remove.
5108         (TUI_SPECIAL_REGS_NAME): Remove.
5109         (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
5110         (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
5111         (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
5112         (enum tui_register_display_type): Remove.
5113         (struct tui_layout_def): Remove regs_display_type and
5114         float_regs_display_type fields.
5115         (struct tui_data_info): Remove regs_display_type field.
5116         (tui_layout_command): Use new name for
5117         tui_set_layout_for_display_command.
5118         * tui/tui-data.c (layout_def): Don't initialise removed fields.
5119         (tui_clear_win_detail): Don't initialise removed fields of
5120         win_info.
5121         * tui/tui-regs.c (tui_show_registers): Use new name for
5122         tui_set_layout_for_display_command.
5123         * tui/tui.h (tui_set_layout_for_display_command): Rename
5124         declaration to...
5125         (tui_set_layout_by_name): ...this.
5126         * printcmd.c (display_command): Remove tui related layout call,
5127         and reindent.
5128
5129 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
5130
5131         * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
5132         (handle_inferior_event): New function.
5133
5134 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
5135
5136         * ada-lang.c (to_fixed_array_type): Rename local variable
5137         typename into type_name.
5138
5139 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5140
5141         Fix ASAN crash for gdb.compile/compile.exp.
5142         * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
5143
5144 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5145
5146         * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
5147         (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
5148         * compile/compile-object-load.c (setup_sections, compile_object_load):
5149         Likewise.
5150         * compile/compile.c (compile_to_object): Likewise.
5151
5152 2015-05-16  Doug Evans  <xdje42@gmail.com>
5153
5154         * NEWS: Mention support for unbuffered Guile memory ports.
5155         * scm-ports.c (ioscm_memory_port): Update comments on end, size.
5156         (ioscm_lseek_address): Improve overflow calculation.
5157         (gdbscm_memory_port_fill_input): Add assert.
5158         (gdbscm_memory_port_write): Handle unbuffered ports.
5159         Handle large writes identical to Guile's fport_write.
5160         (gdbscm_memory_port_seek): Fix seeking past end check.
5161         (gdbscm_memory_port_close): Handle closing unbuffered port.
5162         (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
5163         (ioscm_init_memory_port): Handle unbuffered ports.
5164         (ioscm_reinit_memory_port): Ditto.
5165         (ioscm_init_memory_port): Update size calculation.
5166         (gdbscm_open_memory): Support zero sized ports.
5167
5168 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5169
5170         * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
5171         variable compiler warnings.
5172
5173 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5174
5175         * compile/compile-object-load.c (get_out_value_type): Fix returned type.
5176
5177 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5178             Phil Muldoon  <pmuldoon@redhat.com>
5179
5180         * NEWS (Changes since GDB 7.9): Add compile print.
5181         * compile/compile-c-support.c (add_code_header, add_code_footer)
5182         (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
5183         COMPILE_I_PRINT_VALUE_SCOPE.
5184         * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
5185         (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
5186         New.
5187         * compile/compile-object-load.c: Include block.h.
5188         (get_out_value_type): New function.
5189         (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
5190         COMPILE_I_PRINT_VALUE_SCOPE.  Set compile_module's OUT_VALUE_ADDR and
5191         OUT_VALUE_TYPE.
5192         * compile/compile-object-load.h (struct compile_module): Add fields
5193         out_value_addr and out_value_type.
5194         * compile/compile-object-run.c: Include valprint.h and compile.h.
5195         (struct do_module_cleanup): Add fields out_value_addr and
5196         out_value_type.
5197         (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
5198         COMPILE_I_PRINT_VALUE_SCOPE.
5199         (compile_object_run): Propagate out_value_addr and out_value_type.
5200         Pass OUT_VALUE_ADDR.
5201         * compile/compile.c: Include valprint.h.
5202         (compile_print_value, compile_print_command): New functions.
5203         (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
5204         (_initialize_compile): Update compile code help text.  Install
5205         compile_print_command.
5206         * compile/compile.h (compile_print_value): New prototype.
5207         * defs.h (enum compile_i_scope_types): Add
5208         COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
5209
5210 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5211
5212         * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
5213         Rely on its parameter count.
5214         (compile_object_load): Replace lookup_minimal_symbol_text by
5215         lookup_global_symbol_from_objfile.  Verify FUNC_SYM.  Set it in the
5216         return value.
5217         * compile/compile-object-load.h (struct compile_module): Replace
5218         func_addr by func_sym.
5219         * compile/compile-object-run.c: Include block.h.
5220         (compile_object_run): Reset module variable after it is freed.  Use
5221         FUNC_SYM instead of FUNC_ADDR.  Rely on it.
5222
5223 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5224
5225         * compile/compile-c-support.c (print_one_macro): Use #ifndef.
5226         (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
5227         (c_compute_program): Call generate_register_struct after typedefs.
5228         * compile/compile-loc2c.c (push, pushf_register_address)
5229         (pushf_register): Cast to GCC_UINTPTR.
5230         (do_compile_dwarf_expr_to_c): Use unused attribute.  Add space after
5231         type.  Use GCC_UINTPTR instead of void *.  Remove excessive cast.
5232         (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
5233         * compile/compile.c (_initialize_compile): Enable warnings for
5234         COMPILE_ARGS.
5235
5236 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5237
5238         * cli/cli-script.c (execute_control_command): Update
5239         eval_compile_command caller.
5240         * compile/compile-object-load.c (compile_object_load): Add parameters
5241         scope and scope_data.  Set them.
5242         * compile/compile-object-load.h (struct compile_module): Add fields
5243         scope and scope_data.
5244         (compile_object_load): Add parameters scope and scope_data.
5245         * compile/compile-object-run.c (struct do_module_cleanup): Add fields
5246         scope and scope_data.
5247         (compile_object_run): Propagate the fields scope and scope_data.
5248         * compile/compile.c (compile_file_command, compile_code_command):
5249         Update eval_compile_command callers.
5250         (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
5251         * compile/compile.h (eval_compile_command): Add parameter scope_data.
5252         * defs.h (struct command_line): Add field scope_data.
5253
5254 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5255
5256         * printcmd.c (struct format_data): Move it to valprint.h.
5257         (print_command_parse_format, print_value): New functions from ...
5258         (print_command_1): ... here.  Call them.
5259         * valprint.h (struct format_data): Move it here from printcmd.c.
5260         (print_command_parse_format, print_value): New declarations.
5261
5262 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
5263
5264         * compile/compile-object-load.c (compile_object_load): Add
5265         COMPILE_DEBUG message.
5266
5267 2015-05-15  Jerome Guitton  <guitton@adacore.com>
5268
5269         * ada-lang.c (ada_value_ptr_subscript): Use enum position of
5270         index to get element instead of enum value.
5271         (ada_value_slice_from_ptr, ada_value_slice): Use enum position
5272         of index to compute length, but enum values to compute bounds.
5273         (ada_array_length): Use enum position of index instead of enum value.
5274         (pos_atr): Move position computation to...
5275         (ada_evaluate_subexp): Use enum values to compute bounds.
5276         * gdbtypes.c (discrete_position): ...this new function.
5277         * gdbtypes.h (discrete_position): New function declaration.
5278         * valprint.c (val_print_array_elements): Call discrete_position
5279         to handle array indexed by non-contiguous enumeration types.
5280
5281 2015-05-15  Jerome Guitton  <guitton@adacore.com>
5282
5283         * ada-lang.c (find_parallel_type_by_descriptive_type):
5284         Go through typedefs during lookup.
5285         (to_fixed_array_type): Add support for non-bit packed arrays
5286         as variable-length fields.
5287
5288 2015-05-15  Pedro Alves  <palves@redhat.com>
5289             Simon Marchi  <simon.marchi@ericsson.com>
5290
5291         * event-loop.c (gdb_notifier) <next_file_handler,
5292         next_poll_fds_index>: New fields.
5293         (get_next_file_handler_to_handle_and_advance): New function.
5294         (delete_file_handler): If deleting the next file handler to
5295         handle, advance to the next file handler.
5296         (gdb_wait_for_event): Bail early if no event fired.  Poll file
5297         handlers in round-robin fashion.
5298
5299 2015-05-15  Pedro Alves  <palves@redhat.com>
5300
5301         * linux-tdep.c (linux_find_memory_regions_full): Rename local
5302         'private' to 'priv'.
5303
5304 2015-05-15  Pedro Alves  <palves@redhat.com>
5305
5306         * nat/linux-nat.h: Include "target/waitstatus.h".
5307
5308 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
5309
5310         * python/py-unwind.c (struct reg_info): Move out of ...
5311         (struct cached_frame_info): ... this scope.
5312         (pending_frame_object_type, unwind_info_object_type): Make extern.
5313
5314 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
5315
5316         * ada-lang.c (ada_value_primitive_packed_val): Make sure
5317         accumSize is never negative.
5318
5319 2015-05-14  Patrick Palka  <patrick@parcs.ath.cx>
5320
5321         * tui/tui-command.c: Remove include of <ctype.h>.
5322         (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
5323
5324 2015-05-13  Martin Galvan  <martin.galvan@tallertechnologies.com>
5325
5326         * dwarf2read.c (die_needs_namespace): Return 1 for
5327         DW_TAG_inlined_subroutine.
5328
5329 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5330
5331         * regcache.c (regcache_cpy_no_passthrough): New declaration.
5332         (regcache_cpy_no_passthrough): Make it static, add function comment.
5333         * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
5334         (regcache_cpy_no_passthrough): Remove declaration.
5335
5336 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5337
5338         * gdbthread.h (struct thread_control_state): Update comment for
5339         proceed_to_finish.
5340         * infcall.c (run_inferior_call): Update comment about
5341         proceed_to_finish.
5342         * infcmd.c (get_return_value): Update comment about stop_registers.
5343         (finish_forward): Update comment about proceed_to_finish.
5344         * infrun.c (stop_registers): Remove.
5345         (clear_proceed_status, normal_stop): Remove stop_registers handling.
5346         * infrun.h (stop_registers): Remove.
5347
5348 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5349
5350         * infcall.c (struct dummy_frame_context_saver)
5351         (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
5352         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
5353         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
5354         New.
5355         (call_function_by_hand_dummy): Move discard_cleanups of
5356         inf_status_cleanup before dummy_frame_push.  Call
5357         dummy_frame_context_saver_setup and prepare context_saver_cleanup.
5358         Use dummy_frame_context_saver_get_regs instead of stop_registers.
5359         * infcall.h (struct dummy_frame_context_saver)
5360         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
5361         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
5362         New declarations.
5363         * infcmd.c: Include infcall.h.
5364         (get_return_value): Add parameter ctx_saver, use it instead of
5365         stop_registers.
5366         (print_return_value): Add parameter ctx_saver, pass it.
5367         (struct finish_command_continuation_args): Add field ctx_saver.
5368         (finish_command_continuation): Update print_return_value caller.
5369         (finish_command_continuation_free_arg): Free also ctx_saver.
5370         (finish_forward): Call dummy_frame_context_saver_setup.
5371         * inferior.h (struct dummy_frame_context_saver): New declaration.
5372         (get_return_value): Add parameter ctx_saver.
5373         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
5374         get_return_value caller.
5375
5376 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5377
5378         * dummy-frame.c (struct dummy_frame_dtor_list): New.
5379         (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
5380         (remove_dummy_frame): Process dtor_list.
5381         (pop_dummy_frame): Process dtor_list.
5382         (register_dummy_frame_dtor): Maintain dtor_list.
5383         (find_dummy_frame_dtor): Handle dtor_list.
5384         * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
5385         Update comments.
5386
5387 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5388
5389         * compile/compile-object-run.c (do_module_cleanup): Add parameter
5390         registers_valid.
5391         (compile_object_run): Update do_module_cleanup caller.
5392         * dummy-frame.c: Include infcall.h.
5393         (struct dummy_frame): Update dtor comment.
5394         (remove_dummy_frame): Call dtor.
5395         (pop_dummy_frame): Update dtor caller.
5396         * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
5397         registers_valid.
5398
5399 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
5400
5401         GDB 7.9.1 released.
5402
5403 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
5404
5405         * NEWS: Create "Changes in GDB 7.9.1" section.  Move news about
5406         Xmethods now being able to specify a result type to that new
5407         sectioin.
5408
5409 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
5410
5411         * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
5412         first before resizing the window.
5413         * tui/tui.c (tui_enable): Likewise.
5414
5415 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5416
5417         * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
5418         * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
5419         * infcall.c (call_function_by_hand_dummy): Use proper typedef for
5420         dummy_dtor parameter.
5421         * infcall.h: Include dummy-frame.h.
5422         (call_function_by_hand_dummy_dtor_ftype): Remove.
5423         (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
5424         parameter.
5425
5426 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
5427
5428         PR gdb/17820
5429         * top.c (history_size_setshow_var): Change type to signed.
5430         Initialize to -2.  Update documentation.
5431         (set_readline_history_size): Define.
5432         (set_history_size_command): Use it.  Remove logic for handling
5433         out-of-range sizes.
5434         (init_history): Use set_readline_history_size().  Test for a
5435         value of -2 instead of 0 when determining whether to set a
5436         default history size.
5437         (init_main): Decode the argument of the "size" command as a
5438         zuinteger_unlimited.
5439
5440 2015-05-12  Doug Evans  <dje@google.com>
5441
5442         * dwarf2read.c (struct file_entry): Tweak comments.
5443         (get_debug_line_section): Tweak comments.
5444
5445 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5446
5447         * NEWS: Announce fork support in the RSP and support
5448         for fork debugging in extended mode.
5449
5450 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5451
5452         * remote.c (remote_insert_fork_catchpoint): New function.
5453         (remote_remove_fork_catchpoint): New function.
5454         (remote_insert_vfork_catchpoint): New function.
5455         (remote_remove_vfork_catchpoint): New function.
5456         (pending_fork_parent_callback): New function.
5457         (remove_new_fork_child): New function.
5458         (remote_update_thread_list): Call remote_notif_get_pending_events
5459         and remove_new_fork_child.
5460         (extended_remote_kill): Kill fork child when killing the
5461         parent before follow_fork completes.
5462         (init_extended_remote_ops): Initialize target vector with
5463         new fork catchpoint functions.
5464
5465 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5466
5467         * remote.c (remove_vfork_event_p): New function.
5468         (remote_follow_fork): Add vfork event type to event checking.
5469         (remote_parse_stop_reply): New stop reasons "vfork" and
5470         "vforkdone" for RSP 'T' Stop Reply Packet.
5471
5472 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5473
5474         * linux-nat.c (linux_nat_ptrace_options): New function.
5475         (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
5476         Call linux_nat_ptrace_options and use different argument to
5477         linux_enable_event_reporting.
5478         (_initialize_linux_nat): Delete call to
5479         linux_ptrace_set_additional_flags.
5480         * nat/linux-ptrace.c (current_ptrace_options): Rename to
5481         supported_ptrace_options.
5482         (additional_flags): Delete variable.
5483         (linux_check_ptrace_features): Use supported_ptrace_options.
5484         (linux_test_for_tracesysgood, linux_test_for_tracefork):
5485         Likewise, and remove additional_flags check.
5486         (linux_enable_event_reporting): Change 'attached' argument to
5487         'options'.  Use supported_ptrace_options.
5488         (ptrace_supports_feature): Change comment.  Use
5489         supported_ptrace_options.
5490         (linux_ptrace_set_additional_flags): Delete function.
5491         * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
5492         Delete function prototype.
5493         * remote.c (remote_fork_event_p): New function.
5494         (remote_detach_pid): New function.
5495         (remote_detach_1): Call remote_detach_pid, don't mourn inferior
5496         if doing detach-on-fork.
5497         (remote_follow_fork): New function.
5498         (remote_parse_stop_reply): Handle new "T" stop reason "fork".
5499         (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
5500         (init_extended_remote_ops): Initialize to_follow_fork.
5501
5502 2015-05-12  Don Breazeal  <donb@codesourcery.com>
5503
5504         * nat/linux-ptrace.c (linux_check_ptrace_features): Change
5505         from static to extern.
5506         * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
5507         * remote.c (anonymous enum): <PACKET_fork_event_feature,
5508         * PACKET_vfork_event_feature>: New enumeration constants.
5509         (remote_protocol_features): Add table entries for new packets.
5510         (remote_query_supported): Add new feature queries to qSupported
5511         packet.
5512
5513 2015-05-12  Gary Benson <gbenson@redhat.com>
5514
5515         * remote.c (remote_add_inferior): Call exec_file_locate_attach
5516         for fake PIDs as well as real ones.
5517         (remote_pid_to_exec_file): Send empty annex if PID is fake.
5518
5519 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
5520
5521         * NEWS (Python Scripting): Mention the new gdb.Value methods.
5522         * python/py-value.c (valpy_reference_value): New function.
5523         (valpy_const_value): Likewise.
5524         (value_object_methods): Add new methods.
5525         * value.c (make_cv_value): New function.
5526         * value.h (make_cv_value): Declare.
5527
5528 2015-05-08  Yao Qi  <yao@codesourcery.com>
5529             Sandra Loosemore  <sandra@codesourcery.com>
5530
5531         * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
5532         to 'lh->include_dirs' before accessing to it.
5533         (psymtab_include_file_name): Likewise.
5534         (dwarf_decode_lines_1): Likewise.
5535         (dwarf_decode_lines): Likewise.
5536         (file_file_name): Likewise.
5537
5538 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
5539
5540         * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
5541         (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
5542         (nios2_linux_rt_sigreturn_init): Adjust base address of
5543         register save area.
5544
5545 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
5546
5547         * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
5548         "trap 31" as the breakpoint instruction on all targets.
5549
5550 2015-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
5551
5552         * infcmd.c (print_return_value): Remove unused declaration.
5553
5554 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5555
5556         * dwarf2read.c (attr_to_dynamic_prop)
5557         <DW_AT_data_member_location>: Use read_type_die isntead of
5558         get_die_type.
5559
5560 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5561
5562         * ada-lang.c (ada_convert_actual): Add handling of formals
5563         passed inside an aligner type.
5564
5565 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
5566
5567         * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
5568
5569 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
5570
5571         PR python/18291
5572         * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
5573         Print xmethod matcher status.
5574
5575 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5576
5577         * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
5578         register in the regcache when treating the PSWM register, and vice
5579         versa.
5580
5581 2015-05-07  Gary Benson <gbenson@redhat.com>
5582
5583         * linux-thread-db.c (struct thread_db_info)
5584         <td_ta_map_id2thr_p>: Remove field.
5585         (try_thread_db_load_1): Remove initialization for the above.
5586
5587 2015-05-07  Gary Benson <gbenson@redhat.com>
5588
5589         * linux-thread-db.c (struct thread_db_info)
5590         <td_thr_validate_p>: Remove field.
5591         (try_thread_db_load_1): Remove initialization for the above.
5592
5593 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5594
5595         * compile/compile-object-load.c (compile_object_load): Support
5596         mst_text_gnu_ifunc.
5597
5598 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5599
5600         * compile/compile.c (compile_to_object): Make the cmd_string parameter
5601         const.  Use new variables for the const compatibility.
5602         (eval_compile_command): Make the cmd_string parameter const.
5603         * compile/compile.h (eval_compile_command): Make the cmd_string
5604         parameter const.
5605
5606 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
5607
5608         * defs.h (deprecated_init_ui_hook): Delete.  Remove associated
5609         comment.
5610         * top.c (deprecated_init_ui_hook): Delete.
5611         (gdb_init): Remove handling of deprecated_init_ui_hook.
5612         * interps.c (clear_interpreter_hooks): Remove handling of
5613         deprecated_init_ui_hook.
5614         * main.c (captured_main): Update comment.
5615
5616 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
5617
5618         * solib.c (_initialize_solib): Add "info dll" alias creation.
5619         * windows-nat.c (set_windows_aliases): Delete.
5620         (_initialize_windows_nat): Remove deprecated_init_ui_hook
5621         assignment.
5622         * NEWS: Add news entry about "info dll" now being available
5623         on all platforms.
5624
5625 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5626
5627         * ada-lang.c (value_assign_to_component): Reformat and improve
5628         documentation. Remove all trailing spaces.
5629
5630 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5631
5632         * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
5633         Stop counting inlined frames as soon as an out-of-line function
5634         is found.
5635
5636 2014-05-05  Pierre-Marie de Rodat  <derodat@adacore.com>
5637
5638         * dwarf2read.c (inherit_abstract_dies): Skip
5639         DW_TAG_GNU_call_site dies while inheriting children of an
5640         abstract DIE into a scope.
5641         (read_lexical_block_scope): Inherit abstract DIE's for
5642         lexical scopes.
5643
5644 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5645
5646         * ada-valprint.c (val_print_packed_array_elements): Delete
5647         variable "len".  Add a type-length check when comparing two
5648         consecutive elements of the array.  Use the element's actual
5649         length in call to value_contents_eq.
5650         * ada-lang.c (ada_value_primitive_packed_val): Always return
5651         a value whose type has been resolved.
5652
5653 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5654
5655         * ada-lang.c (ada_value_primitive_packed_val): Recompute
5656         BIT_SIZE and LEN if the size of the resolved type is smaller
5657         than BIT_SIZE * HOST_CHAR_BIT.
5658
5659 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5660
5661         * ada-lang.c (ada_value_primitive_packed_val): Use a more
5662         correct address in call to value_at.  Adjust call to
5663         value_address accordingly.
5664
5665 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5666
5667         * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
5668         to print it.
5669
5670 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5671
5672         * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
5673         * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
5674         pinfo->valaddr.
5675         * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
5676         * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
5677         (resolve_dynamic_type_internal): Set pinfo.valaddr.
5678         Add handling of addr_stack->valaddr.
5679         (resolve_dynamic_type): Add "valaddr" parameter.
5680         Set pinfo.valaddr field.
5681         * ada-lang.c (ada_discrete_type_high_bound): Update call to
5682         resolve_dynamic_type.
5683         (ada_discrete_type_low_bound): Likewise.
5684         * findvar.c (default_read_var_value): Likewise.
5685         * value.c (value_from_contents_and_address): Likewise.
5686
5687 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
5688
5689         * gdbtypes.c (resolve_dynamic_array): Use
5690         create_array_type_with_stride instead of create_array_type.
5691
5692 2015-04-30  DJ Delorie  <dj@redhat.com>
5693
5694         * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
5695         rl78_decode_opcode
5696
5697 2015-04-29  Doug Evans  <dje@google.com>
5698
5699         PR python/18285
5700         * NEWS: Document new gdb.XMethodWorker.get_result_type method.
5701         * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
5702         EVAL_AVOID_SIDE_EFFECTS for xmethods.
5703         * extension-priv.h (struct extension_language_ops)
5704         <get_xmethod_result_type>: New member.
5705         * extension.c (get_xmethod_result_type): New function.
5706         * extension.h (get_xmethod_result_type): Declare.
5707         * python/py-xmethods.c (get_result_type_method_name): New static
5708         global.
5709         (py_get_result_type_method_name): Ditto.
5710         (gdbpy_get_xmethod_result_type): New function.
5711         (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
5712         * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
5713         * python/python.c (python_extension_ops): Add
5714         gdbpy_get_xmethod_result_type.
5715         * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
5716         * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
5717         xmethods.
5718         (value_x_unop): Ditto.
5719         * value.c (result_type_of_xmethod): New function.
5720         * value.h (result_type_of_xmethod): Declare.
5721
5722 2015-04-29  Gary Benson <gbenson@redhat.com>
5723
5724         * solib.c (solib_find_1): Allow fd argument to be NULL.
5725         (exec_file_find): Update comment.
5726         (solib_find): Likewise.
5727         * exec.c (exec_file_locate_attach): Use NULL as fd
5728         argument to exec_file_find to avoid having to close
5729         the opened file.
5730         * infrun.c (follow_exec): Likewise.
5731
5732 2015-04-28  Doug Evans  <dje@google.com>
5733
5734         PR python/18299
5735         * python/lib/gdb/printing.py (register_pretty_printer): Handle
5736         name or __name__ attributes.  Handle gdb module as first argument.
5737
5738 2015-04-28  Doug Evans  <dje@google.com>
5739
5740         PR python/18089
5741         * python/py-prettyprint.c (print_children): Verify result of children
5742         iterator.  Provide better error message.
5743         * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
5744         * python/python.c (gdbpy_print_python_errors_p): New function.
5745
5746 2015-04-28  Doug Evans  <dje@google.com>
5747
5748         * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
5749
5750 2015-04-28  Sasha Smundak  <asmundak@google.com>
5751
5752         * NEWS: Mention gdb.Type.optimized_out method.
5753         * python/py-type.c (typy_optimized_out):  New function.
5754
5755 2015-04-28  John Baldwin  <jhb@FreeBSD.org>
5756
5757         * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
5758
5759 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5760
5761         * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
5762         (initialize_utils): Move call of init_page_info() to ...
5763         * top.c (gdb_init): ... here.
5764
5765 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5766
5767         * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
5768         (tui_sigwinch_handler): Still update our idea of
5769         the terminal's width and height even when TUI is not active.
5770
5771 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5772
5773         * utils.h (set_screen_width_and_height): Declare.
5774         * utils.c (set_screen_width_and_height): Define.
5775         * tui/tui-win.c (tui_update_gdb_sizes): Use it.
5776
5777 2015-04-28  Gary Benson <gbenson@redhat.com>
5778
5779         * infrun.c (solist.h): New include.
5780         (follow_exec): Use exec_file_find to prefix execd_pathname
5781         with gdb_sysroot.
5782
5783 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5784
5785         * tui/tui-source.c (tui_set_source_content): Avoid calling
5786         strcpy() when offset is 0.
5787
5788 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5789
5790         PR gdb/18155
5791         * tui/tui-data.c (tui_free_window): Don't free the locator
5792         window when passed an SRC_WIN or a DISASSEM_WIN.
5793
5794 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
5795
5796         * tui/tui-data.h (struct tui_win_element): Forward-declare.
5797         (tui_win_content): Move declaration.
5798         (struct tui_gen_win_info): Give 'content' field the
5799         type tui_win_content.
5800         * tui/tui-data.c (init_content_element): Remove redundant and
5801         erroneous casts.
5802         (tui_add_content_elements): Remove erroneous cast.
5803         * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
5804         casts.
5805         (tui_get_begin_asm_address): Likewise.
5806         * tui/tui-regs.c (tui_show_registers): Likewise.
5807         (tui_show_register_group): Likewise.
5808         (tui_display_registers_from): Likewise.
5809         (tui_check_register_values): Likewise.
5810         * tui/tui-source.c (tui_set_source_content): Likewise.
5811         (tui_set_source_content_nil): Likewise.
5812         (tui_source_is_displayed): Likewise.
5813         * tui/tui-stack.c (tui_show_locator_content): Likewise.
5814         (tui_set_locator_fullname): Likewise.
5815         (tui_set_locator_info): Likewise.
5816         (tui_show_frame_info): Likewise.
5817         * tui/tui-winsource.c (tui_clear_source_content): Likewise.
5818         (tui_show_source_line): Likewise.
5819         (tui_horizontal_source_scroll): Likewise.
5820         (tui_update_breakpoint_info): Likewise.
5821         (tui_set_exec_info_content): Likewise.
5822         (tui_show_exec_info_content): Likewise.
5823         (tui_alloc_source_buffer): Likewise.
5824         (tui_line_is_displayed): Likewise.
5825         (tui_addr_is_displayed): Likewise.
5826
5827 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5828
5829         * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
5830         event if PL_FLAG_EXEC is set.
5831         [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
5832         [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
5833         (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
5834         "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
5835         Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
5836
5837 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5838
5839         * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
5840         [TDP_RFPPWAIT] New variable fbsd_pending_children.
5841         [TDP_RFPPWAIT] (fbsd_remember_child): New function.
5842         [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
5843         [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
5844         [PT_LWPINFO] (fbsd_wait): New function.
5845         [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
5846         [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
5847         [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
5848         [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
5849         [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
5850         [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
5851         [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
5852         [TDP_RFPPWAIT] (fbsd_post_attach): New function.
5853         (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
5854         "fbsd_wait".
5855         [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
5856         Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
5857         Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
5858         Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
5859         Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
5860         Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
5861         Set "to_post_attach" to "fbsd_post_attach".
5862
5863 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
5864
5865         * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
5866         (fbsd_find_memory_regions): Mark static.
5867         (fbsd_nat_add_target): New function.
5868         * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
5869         fbsd_pid_to_exec_file and fbsd_find_memory_regions.
5870         * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
5871         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
5872         * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
5873         * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
5874
5875 2015-04-27  Gary Benson <gbenson@redhat.com>
5876
5877         * objfiles.c (allocate_objfile): Do not attempt to expand name
5878         if name is a "target:" filename.
5879         * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
5880         to load auto-load scripts for objfiles with "target:" filenames.
5881
5882 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5883
5884         * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
5885         (enum s390_vector_abi_kind): New enum.
5886         (struct gdbarch_tdep)<vector_abi>: New field.
5887         (s390_effective_inner_type): Add parameter min_size.  Stop
5888         unwrapping if the inner type is smaller than min_size.
5889         (s390_function_arg_float): Adjust call to
5890         s390_effective_inner_type.
5891         (s390_function_arg_vector): New function.
5892         (s390_function_arg_integer): Adjust comment.
5893         (struct s390_arg_state)<vr>: New field.
5894         (s390_handle_arg): Add parameter 'is_unnamed'.  Pass vector
5895         arguments according to vector ABI when appropriate.
5896         (s390_push_dummy_call): Initialize the argument state's field
5897         'vr'.  Adjust calls to s390_handle_arg.
5898         (s390_register_return_value): Handle vector return values.
5899         (s390_return_value): Apply the "register" return value convention
5900         to a vector when appropriate.
5901         (s390_gdbarch_init): Initialize tdep->vector_abi.
5902         * NEWS: Announce S390 vector ABI support.
5903
5904 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5905
5906         * s390-linux-tdep.c (s390_return_value_convention): Remove
5907         function.  Inline its logic...
5908         (s390_return_value): ...here.  Instead, move the handling of the
5909         "register" return value convention...
5910         (s390_register_return_value): ...here.  New function.
5911
5912 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5913
5914         * s390-linux-tdep.c
5915         (is_float_singleton): Remove function.  Move the "singleton" part
5916         of the logic...
5917         (s390_effective_inner_type): ...here.  New function.
5918         (is_float_like): Remove function.  Inline its logic...
5919         (s390_function_arg_float): ...here.
5920         (is_pointer_like, is_integer_like, is_struct_like): Remove
5921         functions.  Inline their logic...
5922         (s390_function_arg_integer): ...here.
5923         (s390_function_arg_pass_by_reference): Remove function.
5924         (extend_simple_arg): Remove function.
5925         (alignment_of): Remove function.
5926         (struct s390_arg_state): New structure.
5927         (s390_handle_arg): New function.
5928         (s390_push_dummy_call): Move parameter placement logic to the new
5929         function s390_handle_arg.  Call it for calculating the stack area
5930         sizes first, and again for actually writing the parameters.
5931
5932 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5933
5934         * s390-linux-tdep.c (is_power_of_two): Add comment.  Return
5935           false if the argument is zero.
5936
5937 2015-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
5938
5939         * ada-lang.c (template_to_static_fixed_type): Return input type
5940         when it is already fixed.  Cache the input type itself when not
5941         creating a static fixed copy.  Make it explicit that we never
5942         molestate the input type.
5943         * gdbtypes.c (resolve_dynamic_struct): Reset the
5944         TYPE_TARGET_TYPE field for resolved copies.
5945
5946 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
5947
5948         * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
5949         (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
5950         (template_to_static_fixed_type): Call ada_check_typedef only
5951         when necessary.
5952
5953 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
5954
5955         * cli/cli-dump.c (srec_dump_command): Add internationalization
5956         mark ups.
5957         (ihex_dump_command): Likewise.
5958         (tekhex_dump_command): Likewise.
5959         (binary_dump_command): Likewise.
5960         (binary_append_command): Likewise.
5961
5962 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
5963
5964         * cli/cli-dump.c (verilog_cmdlist): New variable.
5965         (dump_verilog_memory): New function.
5966         (dump_verilog_value): New function.
5967         (verilog_dump_command): New function.
5968         (_initialize_cli_dump): Add new commands to support verilog dump
5969         format.
5970         * NEWS: Add entry for "dump verilog".
5971
5972 2015-04-24  Pierre-Marie de Rodat  <derodat@adacore.com>
5973
5974         * gdbtypes.c (print_gnat_stuff): Do not recurse on the
5975         descriptive type when there is none.
5976
5977 2015-04-23  Patrick Palka  <patrick@parcs.ath.cx>
5978
5979         * tui/tui-win.c (tui_async_resize_screen): Call
5980         rl_resize_terminal().
5981
5982 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
5983
5984         * windows-nat.c (handle_output_debug_string): Don't change
5985         current_event.dwThreadId.
5986         (get_windows_debug_event): Use thread_id, rather than relying on
5987         current_event.dwThreadId being changed.
5988
5989 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
5990
5991         * windows-nat.c (windows_continue): Report an error if
5992         ContinueDebugEvent() fails.
5993
5994 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
5995
5996         * windows-nat.c (windows_resume): Fix misspelling in debug output.
5997
5998 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
5999
6000         * windows-nat.c (get_windows_debug_event): Replace retval with
6001         thread_id throughout.  Update stale comment.
6002
6003 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
6004
6005         * windows-nat.c (get_windows_debug_event): Don't use ternary
6006         conditional operator.
6007
6008 2015-04-21  Pierre Muller  <muller@sourceware.org>
6009
6010         PR pascal/17815
6011         p-exp.y (yylex): Reorganize code to return the matched pattern
6012         for a field of this.
6013
6014 2015-04-21  Gary Benson <gbenson@redhat.com>
6015
6016         * common/fileio.h (fileio_to_host_openflags): New declaration.
6017         * common/fileio.c (fcntl.h): New include.
6018         (fileio_to_host_openflags): New function, factored out from...
6019         * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
6020         Single use updated.
6021
6022 2015-04-21  Kevin Buettner  <kevinb@redhat.com>
6023
6024         * rl78-tdep.c (RL78_SP_ADDR): Define.
6025         (opc_reg_to_gdb_regnum): New static function.
6026         (rl78_analyze_prologue): Recognize instructions forming slightly
6027         more interesting prologues.
6028
6029 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
6030
6031         Revert:
6032         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6033         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
6034         TYPE_CODE_REF types so that they are not considered as dynamic
6035         depending on the referenced type.
6036         (resolve_dynamic_type_internal): Likewise.
6037
6038 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
6039
6040         Revert:
6041         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6042         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
6043         "top_level" parameter.
6044         (resolve_dynamic_type_internal): Remove the unused "top_level"
6045         parameter.  Update call to is_dynamic_type_internal.
6046         (is_dynamic_type): Update call to is_dynamic_type_internal.
6047         (resolve_dynamic_range): Update call to
6048         resolve_dynamic_type_internal.
6049         (resolve_dynamic_union): Likewise.
6050         (resolve_dynamic_struct): Likewise.
6051         (resolve_dynamic_type): Likewise.
6052
6053 2015-04-19  Gabriel Krisman Bertazi  <gabriel@krisman.be>
6054
6055         * breakpoint.c (update_dprintf_command_list): Remove duplicated
6056         xmalloc.
6057
6058 2015-04-20  Thomas Schwinge  <thomas@codesourcery.com>
6059
6060         * reply_mig_hack.awk: Robustify parsing.
6061
6062         * reply_mig_hack.awk: Don't bother to declare an intermediate
6063         function pointer variable.
6064
6065 2015-04-17  Doug Evans  <dje@google.com>
6066
6067         * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
6068         to "exec_displacement" to avoid confusion with inner use of the name.
6069
6070 2015-04-17  Pedro Alves  <palves@redhat.com>
6071
6072         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
6073         if HW point of TYPE isn't supported.
6074
6075 2015-04-17  Yao Qi  <yao.qi@linaro.org>
6076             Pedro Alves  <palves@redhat.com>
6077
6078         * target.h (target_can_use_hardware_watchpoint): Update comments.
6079         Remove trailing ";".
6080
6081 2015-04-17  Gary Benson <gbenson@redhat.com>
6082
6083         * remote.c (remote_add_inferior): New argument try_open_exec.
6084         If nonzero, attempt to open the inferior's executable file as
6085         the main executable if no main executable is open already.
6086         All callers updated.
6087         * NEWS: Mention that GDB now supports automatic location and
6088         retrieval of executable + files from remote targets.
6089
6090 2015-04-17  Gary Benson <gbenson@redhat.com>
6091
6092         * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
6093         * remote.c (PACKET_qXfer_exec_file): Likewise.
6094         (remote_protocol_features): Register the
6095         "qXfer:exec-file:read" feature.
6096         (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
6097         (remote_pid_to_exec_file): New function.
6098         (init_remote_ops): Initialize to_pid_to_exec_file.
6099         (_initialize_remote): Register new "set/show remote
6100         pid-to-exec-file-packet" command.
6101         * NEWS: Announce new qXfer:exec-file:read packet.
6102
6103 2015-04-17  Gary Benson <gbenson@redhat.com>
6104
6105         * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
6106         New declaration.
6107         * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
6108         New function, factored out from...
6109         * linux-nat.c (linux_child_pid_to_exec_file): ...here.
6110
6111 2015-04-17  Gary Benson <gbenson@redhat.com>
6112
6113         * exec.c (solist.h): New include.
6114         (exec_file_locate_attach): Prefix absolute executable
6115         paths with gdb_sysroot if set.
6116         * NEWS: Mention that executable paths may be prepended
6117         with sysroot.
6118
6119 2015-04-17  Gary Benson <gbenson@redhat.com>
6120
6121         * solist.h (exec_file_find): New declaration.
6122         * solib.c (solib_find_1): New function, factored out from...
6123         (solib_find): ...here.
6124         (exec_file_find): New function.
6125
6126 2015-04-17  Gary Benson <gbenson@redhat.com>
6127
6128         * gdbcore.h (exec_file_locate_attach): New declaration.
6129         * exec.c (exec_file_locate_attach): New function, factored
6130         out from...
6131         * infcmd.c (attach_command_post_wait): ...here.
6132
6133 2015-04-17  Mike Frysinger  <vapier@gentoo.org>
6134
6135         * MAINTAINERS: Add myself for Blackfin/write-after-approval.
6136
6137 2015-04-16  Yao Qi  <yao.qi@linaro.org>
6138
6139         * infrun.c (maybe_software_singlestep): Declare.
6140         (displaced_step_fixup): Call maybe_software_singlestep.
6141
6142 2015-04-15  Doug Evans  <dje@google.com>
6143
6144         * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
6145
6146 2015-04-15  Doug Evans  <dje@google.com>
6147
6148         * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
6149
6150 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
6151
6152         * python/lib/gdb/command/unwinders.py: Add parentheses.
6153
6154 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6155
6156         * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
6157
6158 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6159
6160         * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
6161
6162 2015-04-15  Yao Qi  <yao.qi@linaro.org>
6163
6164         * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
6165         dsc->insn_size instead of 4.
6166
6167 2015-04-14  Gary Benson <gbenson@redhat.com>
6168
6169         * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
6170         * minidebug.c (lzma_stat): Likewise.
6171         * solib-spu.c (spu_bfd_iovec_stat): Likewise.
6172         * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
6173
6174 2015-04-13  Stan Shebs  <stanshebs@google.com>
6175
6176         * MAINTAINERS: Update my email address.
6177
6178 2015-04-13  John Baldwin  <jhb@FreeBSD.org>
6179
6180         * amd64-tdep.c (amd64_target_description): New function.
6181         * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
6182         * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
6183         (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
6184         x86 extended save area.
6185         (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
6186         * amd64bsd-nat.h: Export amd64bsd_xsave_len.
6187         * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
6188         (_initialize_amd64fbsd_nat): Set "to_read_description" to
6189         "amd64fbsd_read_description".
6190         * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
6191         (amd64fbsd_supply_xstateregset): New function.
6192         (amd64fbsd_collect_xstateregset): New function.
6193         Add "amd64fbsd_xstateregset".
6194         (amd64fbsd_iterate_over_regset_sections): New function.
6195         (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
6196         "I386_FBSD_XSAVE_XCR0_OFFSET".
6197         Add "iterate_over_regset_sections" gdbarch method.
6198         Add "core_read_description" gdbarch method.
6199         * i386-tdep.c (i386_target_description): New function.
6200         * i386-tdep.h: Export i386_target_description and tdesc_i386.
6201         * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
6202         (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
6203         x86 extended save area.
6204         (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
6205         * i386bsd-nat.h: Export i386bsd_xsave_len.
6206         * i386fbsd-nat.c (i386fbsd_read_description): New function.
6207         (_initialize_i386fbsd_nat): Set "to_read_description" to
6208         "i386fbsd_read_description".
6209         * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
6210         (i386fbsd_core_read_description): New function.
6211         (i386fbsd_supply_xstateregset): New function.
6212         (i386fbsd_collect_xstateregset): New function.
6213         Add "i386fbsd_xstateregset".
6214         (i386fbsd_iterate_over_regset_sections): New function.
6215         (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
6216         "I386_FBSD_XSAVE_XCR0_OFFSET".
6217         Add "iterate_over_regset_sections" gdbarch method.
6218         Add "core_read_description" gdbarch method.
6219         * i386fbsd-tdep.h: New file.
6220
6221 2015-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6222
6223         * NEWS (Changes since GDB 7.9): Add removed -xdb.
6224         * breakpoint.c (command_line_is_silent): Remove xdb_commands
6225         conditional.
6226         (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
6227         and lb.
6228         * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
6229         va.
6230         * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
6231         conditional.
6232         * defs.h (xdb_commands): Remove declaration.
6233         * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
6234         * guile/scm-cmd.c (command_classes): Remove xdb from comment.
6235         * infcmd.c (run_no_args_command, go_command): Remove.
6236         (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
6237         * infrun.c (xdb_handle_command): Remove.
6238         (_initialize_infrun): Remove xdb_commands for lz and z.
6239         * main.c (xdb_commands): Remove variable.
6240         (captured_main): Remove "xdb" from long_options.
6241         (print_gdb_help): Remove --xdb from help.
6242         * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
6243         * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
6244         * stack.c (backtrace_full_command, args_plus_locals_info)
6245         (current_frame_command): Remove.
6246         (_initialize_stack): Remove xdb_commands for t, T and l.
6247         * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
6248         * thread.c (_initialize_thread): Remove xdb_commands condition.
6249         * tui/tui-layout.c (tui_toggle_layout_command)
6250         (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
6251         (_initialize_tui_layout): Remove xdb_commands for td and ts.
6252         * tui/tui-regs.c (tui_scroll_regs_forward_command)
6253         (tui_scroll_regs_backward_command): Remove.
6254         (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
6255         * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
6256         (_initialize_tui_win): Remove xdb_commands for U and w.
6257         * utils.c (pagination_on_command, pagination_off_command): Remove.
6258         (initialize_utils): Remove xdb_commands for am and sm.
6259
6260 2015-04-10  Pedro Alves  <palves@redhat.com>
6261
6262         * infrun.c (displaced_step_fixup): Switch to the event ptid
6263         earlier.  If the thread stopped for a watchpoint and the
6264         target/arch has non-continuable watchpoints, cancel the displaced
6265         step.
6266         (resume): Don't start a displaced step if in-line step-over info
6267         is valid.
6268
6269 2015-04-10  Pedro Alves  <palves@redhat.com>
6270
6271         * infrun.c (displaced_step_in_progress): New function.
6272         (do_target_resume): Advise target to report all signals if
6273         displaced stepping.
6274
6275 2015-04-10  Pedro Alves  <palves@redhat.com>
6276
6277         PR gdb/18216
6278         * infrun.c (process_event_stop_test): Don't assume a step-resume
6279         is set if tp->stepped_breakpoint is true.
6280
6281 2015-04-10  Yao Qi  <yao.qi@linaro.org>
6282
6283         * arm-tdep.c (install_alu_reg): Update comment.
6284         (thumb_copy_alu_reg): Remove local variable rn.  Update
6285         debugging message.  Use r2 instead of r1 in the modified
6286         instruction.
6287
6288 2015-04-10  Pedro Alves  <palves@redhat.com>
6289
6290         PR gdb/13858
6291         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
6292         linux_displaced_step_location as gdbarch_displaced_step_location
6293         hook.
6294         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6295         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6296         * linux-tdep.c (linux_displaced_step_location): New function,
6297         based on ppc_linux_displaced_step_location.
6298         * linux-tdep.h (linux_displaced_step_location): New declaration.
6299         * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
6300         (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
6301         Delete.
6302         (ppc_linux_init_abi): Install linux_displaced_step_location as
6303         gdbarch_displaced_step_location hook, even without Cell/B.E..
6304         (_initialize_ppc_linux_tdep): Don't install
6305         ppc_linux_inferior_created as inferior_created observer.
6306         * s390-linux-tdep.c (s390_gdbarch_init): Install
6307         linux_displaced_step_location as gdbarch_displaced_step_location
6308         hook.
6309
6310 2015-04-09  Gary Benson <gbenson@redhat.com>
6311
6312         * common/common-remote-fileio.h: Rename to...
6313         * common/fileio.h: ...this.  Update all references.
6314         (remote_fileio_to_fio_error): Rename to...
6315         (host_to_fileio_error): ...this.
6316         (remote_fileio_to_be): Rename to...
6317         (host_to_bigendian): ...this.  Update all callers.
6318         (remote_fileio_to_fio_uint): Rename to...
6319         (host_to_fileio_uint): ...this.  Update all callers.
6320         (remote_fileio_to_fio_time): Rename to...
6321         (host_to_fileio_time): ...this.  Update all callers.
6322         (remote_fileio_to_fio_stat): Rename to...
6323         (host_to_fileio_stat): ...this.
6324         Update all references.
6325         * common/common-remote-fileio.c: Rename to...
6326         * common/fileio.c: ...this.  Update all references.
6327         (remote_fileio_to_fio_error): Rename to...
6328         (host_to_fileio_error): ...this.  Update all callers.
6329         (remote_fileio_mode_to_target): Rename to...
6330         (fileio_mode_pack): ...this.  Update all callers.
6331         (remote_fileio_to_fio_mode): Rename to...
6332         (host_to_fileio_mode): ...this.  Update all callers.
6333         (remote_fileio_to_fio_ulong): Rename to...
6334         (host_to_fileio_ulong): ...this.  Update all callers.
6335         (remote_fileio_to_fio_stat): Rename to...
6336         (host_to_fileio_stat): ...this.  Update all callers.
6337
6338 2015-04-09  Andy Wingo  <wingo@igalia.com>
6339
6340         * guile/scm-frame.c (gdbscm_frame_read_register): New function.
6341         (frame_functions): Bind gdbscm_frame_read_register to
6342         frame-read-register.
6343         * guile/lib/gdb.scm (frame-read-register): Export.
6344
6345 2015-04-09  Gary Benson <gbenson@redhat.com>
6346
6347         * common/common-remote-fileio.h (remote_fileio_to_fio_error):
6348         New declaration.
6349         * common/common-remote-fileio.c (remote_fileio_to_fio_error):
6350         New function, factored out the named functions below.
6351         * inf-child.c (gdb/fileio.h): Remove include.
6352         (common-remote-fileio.h): New include.
6353         (inf_child_errno_to_fileio_error): Remove function.  Update
6354         all callers to use remote_fileio_to_fio_error.
6355         * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
6356
6357 2015-04-09  Andy Wingo  <wingo@igalia.com>
6358
6359         * MAINTAINERS (Write After Approval): Add Andy Wingo.
6360
6361 2015-04-09  H.J. Lu  <hongjiu.lu@intel.com>
6362
6363         * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
6364         Replace $zlibdir with $ZLIBDIR in LDFLAGS.
6365         * configure: Regenerated.
6366
6367 2015-04-09  Pedro Alves  <palves@redhat.com>
6368
6369         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
6370         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
6371         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
6372         * gnulib/import/Makefile.am: Update.
6373         * gnulib/import/Makefile.in: Update.
6374         * gnulib/import/m4/gnulib-cache.m4: Update.
6375         * gnulib/import/m4/gnulib-comp.m4: Update.
6376         * gnulib/import/m4/strtok_r.m4: New file.
6377         * gnulib/import/strtok_r.c: New file.
6378
6379 2015-04-09  Pedro Alves  <palves@redhat.com>
6380
6381         * gnulib/update-gnulib.sh (aclocal version check): Filter out
6382         "called too early to check prototype".
6383
6384 2015-04-08  Sergio Durigan Junior  <sergiodj@redhat.com>
6385
6386         PR python/16699
6387         * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
6388         use a caching mechanism.  Adjust comments and code to reflect
6389         that.  Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
6390         (cmdpy_completer_handle_brkchars): Adjust call to
6391         cmdpy_completer_helper.  Call Py_XDECREF for 'resultobj'.
6392         (cmdpy_completer): Likewise.
6393
6394 2015-04-08  Yao Qi  <yao.qi@linaro.org>
6395
6396         * spu-tdep.c (spu_gdbarch_init): Don't call
6397         set_gdbarch_cannot_step_breakpoint.
6398
6399 2015-04-07  Sergio Durigan Junior  <sergiodj@redhat.com>
6400
6401         * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
6402
6403 2015-04-07  Pedro Alves  <palves@redhat.com>
6404
6405         * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
6406         (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
6407         (delete_exited_threads): New declaration.
6408         * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
6409         * linux-nat.c (linux_nat_update_thread_list): New function.
6410         (linux_nat_add_target): Install it.
6411         * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
6412         * thread.c (prune_threads): Use ALL_THREADS_SAFE.
6413         (delete_exited_threads): New function.
6414
6415 2015-04-07  Pedro Alves  <pedro@codesourcery.com>
6416
6417         * infrun.c (resume) <displaced stepping debug output>: Get the
6418         leader thread's regcache, not resume_ptid's.
6419
6420 2015-04-06  Doug Evans  <xdje42@gmail.com>
6421
6422         * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
6423         VAR_DOMAIN.
6424         (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
6425         Include symbol domain in debugging output.
6426
6427 2015-04-06  Pedro Alves  <palves@redhat.com>
6428             Bernd Edlinger  <bernd.edlinger@hotmail.de>
6429
6430         * configure.ac: Remove the mingw32-specific stub-termcap.o
6431         fallback, and instead fallback to the stub termcap on all hosts.
6432         * configure: Regenerate.
6433         * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
6434         symbols.
6435
6436 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6437
6438         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
6439         "top_level" parameter.
6440         (resolve_dynamic_type_internal): Remove the unused "top_level"
6441         parameter.  Update call to is_dynamic_type_internal.
6442         (is_dynamic_type): Update call to is_dynamic_type_internal.
6443         (resolve_dynamic_range): Update call to
6444         resolve_dynamic_type_internal.
6445         (resolve_dynamic_union): Likewise.
6446         (resolve_dynamic_struct): Likewise.
6447         (resolve_dynamic_type): Likewise.
6448
6449 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
6450
6451         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
6452         TYPE_CODE_REF types so that they are not considered as dynamic
6453         depending on the referenced type.
6454         (resolve_dynamic_type_internal): Likewise.
6455
6456 2015-04-02  H.J. Lu  <hongjiu.lu@intel.com>
6457
6458         * Makefile.in (top_srcdir): New.
6459         * configure: Regenerated.
6460
6461 2015-04-02  Gary Benson <gbenson@redhat.com>
6462
6463         * NEWS: Announce the new default sysroot of "target:".
6464
6465 2015-04-02  Gary Benson <gbenson@redhat.com>
6466
6467         * main.c (captured_main): Set gdb_sysroot to "target:"
6468         if not otherwise set.
6469
6470 2015-04-02  Gary Benson <gbenson@redhat.com>
6471
6472         * exec.c (exec_file_attach): Support "target:" filenames.
6473
6474 2015-04-02  Gary Benson <gbenson@redhat.com>
6475
6476         * solib.c (solib_find): Strip "target:" prefix from sysroot
6477         if accessing local files.
6478
6479 2015-04-02  Gary Benson <gbenson@redhat.com>
6480
6481         * symfile.c (symfile_bfd_open): Reorder to remove duplicated
6482         checks and error messages.
6483
6484 2015-04-02  Gary Benson <gbenson@redhat.com>
6485
6486         * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
6487         (remote_filename_p): Remove declaration.
6488         (remote_bfd_open): Likewise.
6489         * remote.c (remote_bfd_iovec_open): Remove function.
6490         (remote_bfd_iovec_close): Likewise.
6491         (remote_bfd_iovec_pread): Likewise.
6492         (remote_bfd_iovec_stat): Likewise.
6493         (remote_filename_p): Likewise.
6494         (remote_bfd_open): Likewise.
6495         * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
6496         * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
6497         (gdb_bfd_open_maybe_remote): Remove function.
6498         (symfile_bfd_open):  Replace remote filename check with
6499         target filename check.
6500         (reread_symbols): Use gdb_bfd_open.
6501         * build-id.c (gdbcore.h): New include.
6502         (build_id_to_debug_bfd): Use gdb_bfd_open.
6503         * infcmd.c (attach_command_post_wait): Remove remote filename
6504         check.
6505         * solib.c (solib_find): Replace remote-specific handling with
6506         target-specific handling.  Update comments where necessary.
6507         (solib_bfd_open): Replace remote-specific handling with
6508         target-specific handling.
6509         (gdb_sysroot_changed): New function.
6510         (_initialize_solib): Call the above when gdb_sysroot changes.
6511         * windows-tdep.c (gdbcore.h): New include.
6512         (windows_xfer_shared_library): Use gdb_bfd_open.
6513
6514 2015-04-02  Gary Benson <gbenson@redhat.com>
6515
6516         * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
6517         (is_target_filename): New declaration.
6518         (gdb_bfd_has_target_filename): Likewise.
6519         (gdb_bfd_open): Update documentation comment.
6520         * gdb_bfd.c (target.h): New include.
6521         (gdb/fileio.h): Likewise.
6522         (is_target_filename): New function.
6523         (gdb_bfd_has_target_filename): Likewise.
6524         (fileio_errno_to_host): Likewise.
6525         (gdb_bfd_iovec_fileio_open): Likewise.
6526         (gdb_bfd_iovec_fileio_pread): Likewise.
6527         (gdb_bfd_iovec_fileio_close): Likewise.
6528         (gdb_bfd_iovec_fileio_fstat): Likewise.
6529         (gdb_bfd_open): Use target fileio to access paths prefixed
6530         with "target:" where necessary.
6531
6532 2015-04-02  Gary Benson <gbenson@redhat.com>
6533
6534         * target.h (struct target_ops) <to_filesystem_is_local>:
6535         New field.
6536         (target_filesystem_is_local): New macro.
6537         * target-delegates.c: Regenerate.
6538         * remote.c (remote_filesystem_is_local): New function.
6539         (init_remote_ops): Initialize to_filesystem_is_local.
6540
6541 2015-04-02  Gary Benson <gbenson@redhat.com>
6542
6543         * target.h (struct target_ops) <to_fileio_fstat>: New field.
6544         (target_fileio_fstat): New declaration.
6545         * target.c (target_fileio_fstat): New function.
6546         * inf-child.c (inf_child_fileio_fstat): Likewise.
6547         (inf_child_target): Initialize to_fileio_fstat.
6548         * remote.c (init_remote_ops): Likewise.
6549
6550 2015-04-01  Sasha Smundak  <asmundak@google.com>
6551
6552         * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
6553         (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
6554         (py-unwind.o): New recipe.
6555         * NEWS: mention Python frame unwinding.
6556         * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
6557         gdb/unwinder.py and gdb/command/unwinder.py
6558         * python/lib/gdb/__init__.py (packages): Add frame_unwinders
6559         list.
6560         (execute_unwinders): New function.
6561         * python/lib/gdb/command/unwinders.py: New file.
6562         * python/lib/gdb/unwinder.py: New file.
6563         * python/py-objfile.c (objfile_object): Add frame_unwinders field.
6564         (objfpy_dealloc): Decrement frame_unwinders reference count.
6565         (objfpy_initialize): Create frame_unwinders list.
6566         (objfpy_get_frame_unwinders): New function.
6567         (objfpy_set_frame_unwinders): Ditto.
6568         (objfile_getset): Add frame_unwinders attribute to Objfile.
6569         * python/py-progspace.c (pspace_object): Add frame_unwinders field.
6570         (pspy_dealloc): Decrement frame_unwinders reference count.
6571         (pspy_initialize): Create frame_unwinders list.
6572         (pspy_get_frame_unwinders): New function.
6573         (pspy_set_frame_unwinders): Ditto.
6574         (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
6575         * python/py-unwind.c: New file.
6576         * python/python-internal.h (pspy_get_name_unwinders): New prototype.
6577         (objpy_get_frame_unwinders): New prototype.
6578         (gdbpy_initialize_unwind): New prototype.
6579         * python/python.c (gdbpy_apply_type_printers): Call
6580         gdbpy_initialize_unwind.
6581
6582 2015-04-01  Pedro Alves  <palves@redhat.com>
6583
6584         * infrun.c (resume): Check currently_stepping after clearing
6585         stepped_breakpoint, not before.
6586
6587 2015-04-01  Pedro Alves  <palves@redhat.com>
6588
6589         * infrun.c (print_target_wait_results): Print all the ptid
6590         elements.
6591
6592 2015-04-01  Pedro Alves  <palves@redhat.com>
6593
6594         * infrun.c (keep_going): Also discard cleanups if inserting
6595         breakpoints fails.
6596
6597 2015-04-01  Pedro Alves  <palves@redhat.com>
6598
6599         * infrun.c (wait_for_inferior): Install the
6600         finish_thread_state_cleanup cleanup across the whole function, not
6601         just around handle_inferior_event.
6602
6603 2015-04-01  Pedro Alves  <palves@redhat.com>
6604
6605         * infrun.c (resume) <step past permanent breakpoint>: Use
6606         do_target_resume.
6607
6608 2015-04-01  Pedro Alves  <palves@redhat.com>
6609
6610         * linux-nat.c (linux_handle_extended_wait): Always call set_running.
6611
6612 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
6613
6614         * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
6615
6616 2015-04-01  Pedro Alves  <palves@redhat.com>
6617
6618         * linux-thread-db.c (record_thread): Readd the thread to gdb's
6619         list if it was marked exited.
6620
6621 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
6622
6623         * configure: Regenerated.
6624
6625 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
6626             Jan Kratochvil  <jan.kratochvil@redhat.com>
6627             Oleg Nesterov  <oleg@redhat.com>
6628
6629         PR corefiles/16092
6630         * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
6631         New enum identifying the various options of the coredump_filter
6632         file.
6633         (struct smaps_vmflags): New struct.
6634         (use_coredump_filter): New variable.
6635         (decode_vmflags): New function.
6636         (mapping_is_anonymous_p): Likewise.
6637         (dump_mapping_p): Likewise.
6638         (linux_find_memory_regions_full): New variables
6639         'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
6640         Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
6641         parsing of its information.  Implement memory mapping filtering
6642         based on its contents.
6643         (show_use_coredump_filter): New function.
6644         (_initialize_linux_tdep): New command 'set use-coredump-filter'.
6645         * NEWS: Mention the possibility of using the
6646         '/proc/PID/coredump_filter' file when generating a corefile.
6647         Mention new command 'set use-coredump-filter'.
6648
6649 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
6650
6651         * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
6652         read_memory_unsigned_integer.
6653
6654 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
6655
6656         * Makefile.in (ZLIB): New.
6657         (ZLIBINC): Likewise.
6658         (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
6659         (CLIBS): Add $(ZLIB).
6660         * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
6661         Add -lz to LIBS.
6662         * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
6663         * top.c (print_gdb_configuration): Remove --with-zlib and
6664         --without-zlib.
6665         * config.in: Regenerated.
6666         * configure: Likewise.
6667
6668 2015-03-31  Antoine Tremblay  <antoine.tremblay@ericsson.com>
6669
6670         * NEWS: Mention info os cpus support.
6671         * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
6672         (struct osdata_type): Add cpus entry, reorder the entries in
6673         alphabetical order.
6674
6675 2015-03-31  Matthias Klose  <doko@ubuntu.com>
6676
6677         * compile/compile.c (compile_to_object): Allow triplets with or
6678         without vendor set.
6679
6680 2015-03-30  Doug Evans  <dje@google.com>
6681
6682         PR c++/18141
6683         * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
6684         klass in VAR_DOMAIN.
6685
6686 2015-03-30  Gary Benson <gbenson@redhat.com>
6687
6688         * remote.c (remote_mourn_1): Remove function.  Update all callers
6689         to use remote_mourn.
6690         (extended_remote_mourn_1): Remove function.  Update all callers
6691         to use extended_remote_mourn.
6692         (extended_remote_attach_1): Remove function.  Update all callers
6693         to use extended_remote_attach.
6694
6695 2015-03-28  James Bowman  <james.bowman@ftdichip.com>
6696
6697         * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
6698         (HFILES_NO_SRCDIR): Add ft32-tdep.h.
6699         (ALLDEPFILES): Add ft32-tdep.c.
6700         * configure.tgt: Add FT32 entry.
6701         * ft32-tdep.c: New file, FT32 target-dependent code.
6702         * ft32-tdep.h: New file, FT32 target-dependent code.
6703
6704 2015-03-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
6705
6706         Revert:
6707         2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6708         Code cleanup.
6709         * printcmd.c (print_command_1): Move expr variable scope.
6710
6711 2015-03-27  Joel Brobecker  <brobecker@adacore.com>
6712
6713         * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
6714
6715 2015-03-27  Andrzej Kaczmarek  <andrzej.kaczmarek@tieto.com>
6716
6717         * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
6718         sections.
6719
6720 2015-03-26  Joel Brobecker  <brobecker@adacore.com>
6721
6722         * dtrace-probe.c (dtrace_process_dof_probe): Contain any
6723         exception raised while parsing the probe arguments.
6724         Force parsing to be done using the C language parser.
6725         * expression.h (parse_expression_with_language): Declare.
6726         * parse.c (parse_expression_with_language): New function.
6727
6728 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
6729
6730         * MAINTAINERS (Write After Approval): Add "Jon Turney".
6731
6732 2015-03-26  Andy Wingo  <wingo@igalia.com>
6733
6734         PR symtab/18148
6735         * dwarf2read.c (struct partial_die_info): Add has_const_value
6736         member.
6737         (add_partial_symbol): Don't punt on symbols that have const_value
6738         attributes.
6739         (read_partial_die): Detect DW_AT_const_value.
6740
6741 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6742
6743         Code cleanup.
6744         * printcmd.c (print_command_1): Move expr variable scope.
6745
6746 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
6747
6748         Code cleanup.
6749         * printcmd.c (validate_format): Make the parameter cmdname const.
6750
6751 2015-03-26  Don Breazeal  <donb@codesourcery.com>
6752
6753         * remote.c (_initialize_remote): Update comment.
6754
6755 2015-03-26  Pedro Alves  <palves@redhat.com>
6756             Jon TURNEY  <jon.turney@dronecode.org.uk>
6757
6758         * coffread.c (coff_symfile_read): When constructing the name of an
6759         import stub symbol from import symbol for amd64, only skip the
6760         char after _imp_ if the target is underscored (like i386) and the
6761         char is indeed the target's leading char.
6762
6763 2015-03-25  Pedro Alves  <palves@redhat.com>
6764
6765         * target.h <to_async>: Replace 'callback' and 'context' parameters
6766         with boolean 'enable' parameter.
6767         (target_async): Replace CALLBACK and CONTEXT parameters with
6768         boolean ENABLE parameter.
6769         * inf-loop.c (inferior_event_handler): Adjust.
6770         * linux-nat.c (linux_nat_attach, linux_nat_resume)
6771         (linux_nat_resume): Adjust.
6772         (async_client_callback, async_client_context): Delete.
6773         (handle_target_event): Call inferior_event_handler directly.
6774         (linux_nat_async): Replace 'callback' and 'context' parameters
6775         with boolean 'enable' parameter.  Adjust.  Remove references to
6776         async_client_callback and async_client_context.
6777         (linux_nat_close): Adjust.
6778         * record-btrace.c (record_btrace_async): Replace 'callback' and
6779         'context' parameters with boolean 'enable' parameter.  Adjust.
6780         (record_btrace_resume): Adjust.
6781         * record-full.c (record_full_async): Replace 'callback' and
6782         'context' parameters with boolean 'enable' parameter.  Adjust.
6783         (record_full_resume, record_full_core_resume): Adjust.
6784         * remote.c (struct remote_state) <async_client_callback,
6785         async_client_context>: Delete fields.
6786         (remote_start_remote, extended_remote_attach_1, remote_resume)
6787         (extended_remote_create_inferior): Adjust.
6788         (remote_async_serial_handler): Call inferior_event_handler
6789         directly.
6790         (remote_async): Replace 'callback' and 'context' parameters with
6791         boolean 'enable' parameter.  Adjust.
6792         * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
6793         Adjust.
6794         * target-delegates.c: Regenerate.
6795
6796 2015-03-25  Gary Benson <gbenson@redhat.com>
6797             Pedro Alves  <palves@redhat.com>
6798
6799         * target.c (fileio_ft_t): New typedef, define object vector.
6800         (fileio_fhandles): New static variable.
6801         (is_closed_fileio_fh): New macro.
6802         (lowest_closed_fd): New static variable.
6803         (acquire_fileio_fd): New function.
6804         (release_fileio_fd): Likewise.
6805         (fileio_fd_to_fh): New macro.
6806         (target_fileio_open): Wrap the file descriptor on success.
6807         (target_fileio_pwrite): Updated to use wrapped file descriptor.
6808         (target_fileio_pread): Likewise.
6809         (target_fileio_close): Likewise.
6810
6811 2015-03-24  Pedro Alves  <palves@redhat.com>
6812
6813         * thread.c (thread_apply_all_command): Take exited threads into
6814         account.
6815
6816 2015-03-24  Pedro Alves  <palves@redhat.com>
6817
6818         * infrun.c (resume, proceed): Mention
6819         switch_back_to_stepped_thread, not switch_back_to_stepping.
6820
6821 2015-03-24  Pedro Alves  <palves@redhat.com>
6822
6823         * infrun.c (user_visible_resume_ptid): Rewrite going from
6824         most-locked to unlocked instead of the opposite.  Move comment ...
6825         * infrun.h (user_visible_resume_ptid): ... here.
6826
6827 2015-03-24  Pedro Alves  <palves@redhat.com>
6828
6829         * linux-nat.c (linux_nat_resume): Output debug logs before trying
6830         to resume the event lwp.  Use the lwp's ptid instead of the passed
6831         in (maybe wildcard) ptid.
6832         (stop_wait_callback): Tweak debug log output.
6833         (check_stopped_by_breakpoint): Tweak debug log output.  Also dump
6834         TRAP_TRACE.
6835         (linux_nat_filter_event): In debug output, distinguish a
6836         resume_stop SIGSTOP from a delayed SIGSTOP.  Output debug logs
6837         before trying to resume the lwp.
6838
6839 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
6840
6841         * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
6842         pointer indirection.
6843         * gdbtypes.c (get_dyn_prop): Adjust, following change above.
6844         (add_dyn_prop, copy_dynamic_prop_list): Likewise.
6845
6846 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
6847
6848         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
6849         Renames DYN_ATTR_DATA_LOCATION.
6850         (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
6851         DYN_ATTR_DATA_LOCATION.
6852         * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
6853         instead of DYN_ATTR_DATA_LOCATION.
6854
6855 2015-03-24  Pedro Alves  <palves@redhat.com>
6856
6857         * breakpoint.c (until_break_command): Adjust call to proceed.
6858         * gdbthread.h (struct thread_control_state) <stepping_command>:
6859         New field.
6860         * infcall.c (run_inferior_call): Adjust call to proceed.
6861         * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
6862         Adjust calls to proceed.
6863         (set_step_frame): Set the current thread's step_start_function
6864         here.
6865         (step_once): Adjust calls to proceed.
6866         (jump_command, signal_command, until_next_command)
6867         (finish_backward, finish_forward, proceed_after_attach_callback)
6868         (attach_command_post_wait): Adjust calls to proceed.
6869         * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
6870         (do_target_resume): New function, factored out from ...
6871         (resume): ... here.  Remove 'step' parameter.  Instead, check
6872         currently_stepping to determine whether the thread should be
6873         single-stepped.
6874         (proceed): Remove 'step' parameter and don't set the thread's
6875         step_start_function here.  Adjust call to 'resume'.
6876         (handle_inferior_event): Adjust calls to 'resume'.
6877         (switch_back_to_stepped_thread): Use do_target_resume instead of
6878         'resume'.
6879         (keep_going): Adjust calls to 'resume'.
6880         * infrun.h (proceed): Remove 'step' parameter.
6881         (resume): Likewise.
6882         * windows-nat.c (do_initial_windows_stuff): Adjust call to
6883         'resume'.
6884         * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
6885
6886 2015-03-24  Pedro Alves  <palves@redhat.com>
6887
6888         * gdbthread.h (struct thread_control_state) <stepping_command>:
6889         New field.
6890         * infcmd.c (step_once): Pass step=1 to clear_proceed_status.  Set
6891         the thread's stepping_command field.
6892         * infrun.c (resume): Check the thread's stepping_command flag to
6893         determine which threads should be resumed.  Rename 'entry_step'
6894         local to user_step.
6895         (clear_proceed_status_thread): Clear 'stepping_command'.
6896         (schedlock_applies): Change parameter type to struct thread_info
6897         pointer.  Adjust.
6898         (find_thread_needs_step_over): Remove 'step' parameter.  Adjust.
6899         (switch_back_to_stepped_thread): Adjust calls to
6900         'schedlock_applies'.
6901         (_initialize_infrun): Adjust "set scheduler-locking step" help.
6902
6903 2015-03-24  Pedro Alves  <palves@redhat.com>
6904
6905         * infrun.c (step_start_function): Delete and ...
6906         * gdbthread.h (struct thread_control_state) <step_start_function>:
6907         ... now a field here.
6908         * infrun.c (clear_proceed_status_thread): Clear the thread's
6909         step_start_function.
6910         (proceed, process_event_stop_test, print_stop_event): Adjust.
6911
6912 2015-03-24  Pedro Alves  <palves@redhat.com>
6913
6914         * infrun.c (proceed): No longer handle negative step.
6915
6916 2015-03-24  Gary Benson  <gbenson@redhat.com>
6917
6918         * nat/x86-linux.h (x86_linux_new_thread): New declaration.
6919         (x86_linux_prepare_to_resume): Likewise.
6920         * x86-linux-nat.c (x86_linux_new_thread):
6921         Moved to nat/x86-linux.c.
6922         (x86_linux_prepare_to_resume): Likewise.
6923         * nat/x86-linux.c (x86_linux_new_thread): New function.
6924         (x86_linux_prepare_to_resume): Likewise.
6925
6926 2015-03-24  Gary Benson  <gbenson@redhat.com>
6927
6928         * nat/x86-linux-dregs.h: New file.
6929         * nat/x86-linux-dregs.c: Likewise.
6930         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
6931         (x86-linux-dregs.o): New rule.
6932         * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
6933         * config/i386/linux64.mh (NATDEPFILES): Likewise.
6934         * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
6935         (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
6936         (x86_linux_dr_get): Likewise.
6937         (x86_linux_dr_set): Likewise.
6938         (x86_linux_dr_get_addr): Likewise.
6939         (x86_linux_dr_get_control): Likewise.
6940         (x86_linux_dr_get_status): Likewise.
6941         (update_debug_registers_callback): Likewise.
6942         (x86_linux_dr_set_control): Likewise.
6943         (x86_linux_dr_set_addr): Likewise.
6944         (x86_linux_update_debug_registers): Likewise.
6945
6946 2015-03-24  Gary Benson  <gbenson@redhat.com>
6947
6948         * x86-linux-nat.c (x86_linux_update_debug_registers):
6949         New function, factored out from...
6950         (x86_linux_prepare_to_resume): ...this.
6951
6952 2015-03-24  Gary Benson  <gbenson@redhat.com>
6953
6954         * x86-linux-nat.c (x86_linux_dr_get): Update comments.
6955         (x86_linux_dr_set): Likewise.
6956         (x86_linux_dr_get_addr): Likewise.
6957         (x86_linux_dr_get_control): Likewise.
6958         (x86_linux_dr_get_status): Likewise.
6959         (update_debug_registers_callback): Likewise.
6960         (x86_linux_dr_set_control): Likewise.
6961         (x86_linux_dr_set_addr): Likewise.
6962         (x86_linux_prepare_to_resume): Likewise.
6963         (x86_linux_new_thread): Likewise.
6964
6965 2015-03-24  Gary Benson  <gbenson@redhat.com>
6966
6967         * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
6968         (x86_linux_new_thread): Rename argument.
6969
6970 2015-03-24  Gary Benson  <gbenson@redhat.com>
6971
6972         * nat/x86-linux.h: New file.
6973         * nat/x86-linux.c: Likewise.
6974         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
6975         (x86-linux.o): New rule.
6976         * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
6977         * config/i386/linux64.mh (NATDEPFILES): Likewise.
6978         * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
6979         (lwp_set_arch_private_info): New declaration.
6980         (lwp_arch_private_info): Likewise.
6981         * linux-nat.c (lwp_set_arch_private_info): New function.
6982         (lwp_arch_private_info): Likewise.
6983         * x86-linux-nat.c: Include nat/x86-linux.h.
6984         (arch_lwp_info): Removed structure.
6985         (update_debug_registers_callback):
6986         Use lwp_set_debug_registers_changed.
6987         (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
6988         and lwp_set_debug_registers_changed.
6989         (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
6990
6991 2015-03-24  Gary Benson  <gbenson@redhat.com>
6992
6993         * nat/linux-nat.h (ptid_of_lwp): New declaration.
6994         (lwp_is_stopped): Likewise.
6995         (lwp_stop_reason): Likewise.
6996         * linux-nat.c (ptid_of_lwp): New function.
6997         (lwp_is_stopped): Likewise.
6998         (lwp_is_stopped_by_watchpoint): Likewise.
6999         * x86-linux-nat.c (update_debug_registers_callback):
7000         Use lwp_is_stopped.
7001         (x86_linux_prepare_to_resume): Use ptid_of_lwp and
7002         lwp_stop_reason.
7003
7004 2015-03-24  Gary Benson  <gbenson@redhat.com>
7005
7006         * linux-nat.h (linux_stop_lwp): Move declaration to...
7007         * nat/linux-nat.h (linux_stop_lwp): New declaration.
7008
7009 2015-03-24  Gary Benson  <gbenson@redhat.com>
7010
7011         * linux-nat.h: Include nat/linux-nat.h.
7012         (iterate_over_lwps): Move declaration to nat/linux-nat.h.
7013         * nat/linux-nat.h (struct lwp_info): New forward declaration.
7014         (iterate_over_lwps_ftype): New typedef.
7015         (iterate_over_lwps): New declaration.
7016         * linux-nat.h (iterate_over_lwps): Update comment.  Use
7017         iterate_over_lwps_ftype.  Update callback return value check.
7018
7019 2015-03-24  Gary Benson  <gbenson@redhat.com>
7020
7021         * x86-nat.h (x86_debug_reg_state): Move declaration to...
7022         * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
7023
7024 2015-03-24  Gary Benson  <gbenson@redhat.com>
7025
7026         * nat/linux-nat.h (current_lwp_ptid): New declaration.
7027         * linux-nat.c (current_lwp_ptid): New function.
7028         * x86-linux-nat.c: Include nat/linux-nat.h.
7029         (x86_linux_dr_get_addr): Use current_lwp_ptid.
7030         (x86_linux_dr_get_control): Likewise.
7031         (x86_linux_dr_get_status): Likewise.
7032         (x86_linux_dr_set_control): Likewise.
7033         (x86_linux_dr_set_addr): Likewise.
7034
7035 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
7036
7037         PR breakpoints/16466
7038         * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
7039
7040 2015-03-23  Joel Brobecker  <brobecker@adacore.com>
7041
7042         * ser-mingw.c (ser_windows_setparity): Fix indentation.
7043         * ser-unix.c (hardwire_setparity): Likewise.
7044
7045 2015-03-23  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
7046
7047         * NEWS: Mention set/show serial parity command.
7048         * monitor.c (monitor_open): Call serial_setparity.
7049         * remote.c (remote_open_1): Likewise.
7050         * ser-base.c (ser_base_serparity): New function.
7051         * ser-base.h (ser_base_setparity): Add  declaration.
7052         * ser-go32.c (dos_ops): Set "setparity" field.
7053         * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
7054         state.Parity.
7055         (ser_windows_setparity): New function.
7056         (hardwire_ops): Add ser_windows_setparity.
7057         (tty_ops): Add NULL for setparity field.
7058         (pipe_ops): Add ser_base_setparity.
7059         (tcp_ops): Likewise.
7060         * ser-pipe.c (pipe_ops): Likewise.
7061         * ser-tcp.c (tcp_ops): Likewise.
7062         * ser-unix.c (hardwire_setparity): Add declaration.
7063         (hardwire_raw): Don't reset PARENB flag.
7064         (hardwire_setparity): New function.
7065         (hardwire_ops): Add hardwire_setparity.
7066         * serial.c (serial_setparity): New function.
7067         (serial_parity): New global.
7068         (parity_none, parity_odd, parity_even, parity_enums, parity):
7069         New static globals.
7070         (set_parity): New function.
7071         (_initialize_serial): Add set/show serial parity commands.
7072         * serial.h (GDBPARITY_NONE): Define.
7073         (GDBPARITY_ODD): Define.
7074         (GDBPARITY_EVEN): Define.
7075         (serial_setparity) Add declaration.
7076         (struct serial_ops): Add setparity field.
7077         * target.h (serial_parity): Add declaration.
7078
7079 2015-03-23  Keith Seitz  <keiths@redhat.com>
7080
7081         * linespec.c (linespec_lexer_lex_keyword): Update comment.
7082
7083 2015-03-23  Keith Seitz  <keiths@redhat.com>
7084
7085         * breakpoint.c (parse_breakpoint_sals): Use
7086         linespec_lexer_lex_keyword to ascertain if the user specified
7087         a NULL location.
7088         * linespec.c [IF_KEYWORD_INDEX]: Define.
7089         (linespec_lexer_lex_keyword): Export.
7090         (struct ls_parser) <keyword_ok>: Remove.
7091         A keyword is only a keyword if not followed by another keyword.
7092         (linespec_lexer_lex_one): Remove keyword_ok handling.
7093         Add comment explaining why the parsing stream is not advanced
7094         when a keyword is seen.
7095         (parse_linespec): Remove parser->keyword_ok.
7096         * linespec.h (linespec_lexer_lex_keyword): Add declaration.
7097
7098 2015-03-23  Keith Seitz  <keiths@redhat.com>
7099
7100         PR gdb/18021
7101         * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
7102         if we find a static method with DW_AT_vtable_elem_location.
7103
7104 2015-03-21  Eli Zaretskii  <eliz@gnu.org>
7105
7106         * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
7107         before the second loop, to avoid undefined behavior.  Reported by
7108         Anton Blanchard <anton@samba.org>.
7109
7110 2015-03-20  Keven Boell  <keven.boell@intel.com>
7111
7112         * gdbtypes.c (resolve_dynamic_type_internal): Adapt
7113         data_location usage to linked list.
7114         (resolve_dynamic_type_internal): Adapt data_location to
7115         linked list.
7116         (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
7117         (copy_type_recursive, copy_type): Add copy of linked list.
7118         * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
7119         (struct dynamic_prop_list): New struct.
7120         * dwarf2read.c (set_die_type): Set data_location data.
7121
7122 2015-03-20  Pedro Alves  <palves@redhat.com>
7123
7124         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
7125         inner block and make it const.
7126         * machoread.c (get_archive_prefix_len): Make "lparen" const.
7127
7128 2015-03-20  Pedro Alves  <palves@redhat.com>
7129
7130         * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
7131         * breakpoint.h (set_breakpoint_condition): Update declaration.
7132
7133 2015-03-20  Pedro Alves  <palves@redhat.com>
7134
7135         * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
7136
7137 2015-03-20  Pedro Alves  <palves@redhat.com>
7138
7139         * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
7140
7141 2015-03-20  Pedro Alves  <palves@redhat.com>
7142
7143         * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
7144
7145 2015-03-20  Pedro Alves  <palves@redhat.com>
7146
7147         * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
7148         (nto_init_solib_absolute_prefix): Likewise.
7149
7150 2015-03-20  Pedro Alves  <palves@redhat.com>
7151
7152         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
7153         * spu-tdep.c (spu_gdbarch_init): Make "name" const.
7154
7155 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7156
7157         * config/djgpp/README: Remove gdb.hp.
7158
7159 2015-03-20  Yao Qi  <yao.qi@linaro.org>
7160
7161         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
7162         set_gdbarch_cannot_step_breakpoint.
7163
7164 2015-03-19  Pedro Alves  <palves@redhat.com>
7165
7166         * linux-nat.c (linux_resume_one_lwp): Rename to ...
7167         (linux_resume_one_lwp_throw): ... this.  Don't handle ESRCH here,
7168         instead call perror_with_name.
7169         (check_ptrace_stopped_lwp_gone): New function.
7170         (linux_resume_one_lwp): Reimplement as wrapper around
7171         linux_resume_one_lwp_throw that swallows errors if the LWP is
7172         gone.
7173         (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
7174         swallows errors if the LWP is gone.  Use
7175         linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
7176
7177 2015-03-19  Pedro Alves  <palves@redhat.com>
7178
7179         * linux-nat.c (status_callback): Return early if the LWP has no
7180         status pending.
7181
7182 2015-03-19  Pedro Alves  <palves@redhat.com>
7183
7184         * linux-nat.c (select_event_lwp_callback): Update comment to no
7185         longer mention SIGTRAP.
7186
7187 2015-03-18  Tristan Gingold  <gingold@adacore.com>
7188
7189         * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
7190         redirection code to ...
7191         (amd64_windows_frame_decode_insns): ... Here.  Fix in prologue
7192         checks.  Fix SAVE_NONVOL operations.  Add debug code and comments.
7193
7194 2015-03-18  Gary Benson <gbenson@redhat.com>
7195
7196         (remote_protocol_features): Remove the "vFile:fstat" feature.
7197         (remote_hostio_fstat): Probe for "vFile:fstat" support.
7198
7199 2015-03-11  Yao Qi  <yao.qi@linaro.org>
7200
7201         PR tdep/18107
7202         * aarch64-linux-tdep.c: Include xml-syscall.h
7203         (aarch64_linux_get_syscall_number): New function.
7204         (aarch64_linux_init_abi): Call
7205         set_gdbarch_get_syscall_number.
7206         * syscalls/aarch64-linux.xml: New file.
7207
7208 2015-03-17  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
7209
7210         * ser-base.h (ser_base_setstopbits): Change second argument name
7211         from "rate" to "num".
7212
7213 2015-03-17  Gary Benson <gbenson@redhat.com>
7214             Luke Allardyce <lukeallardyce@gmail.com>
7215
7216         PR gdb/18131
7217         * common/common-remote-fileio.h (sys/stat.h): New include.
7218         (stuct stat): Remove forward declaration.
7219
7220 2015-03-16  John Baldwin  <jhb@FreeBSD.org>
7221
7222         * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
7223         before writing core register notes.
7224
7225 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
7226             Pedro Alves  <palves@redhat.com>
7227
7228         * gdb_curses.h (tgetnum): Mark with EXTERN_C.
7229         * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
7230         (tgoto): Wrap with extern "C".
7231
7232 2015-03-16  Pedro Alves  <palves@redhat.com>
7233             Yuanhui Zhang  <asmwarrior@gmail.com>
7234
7235         * stub-termcap.c (tputs): Change prototype.
7236
7237 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
7238             Pedro Alves  <palves@redhat.com>
7239
7240         * windows-nat.c (struct thread_info_struct): Rename to ...
7241         (struct windows_thread_info_struct): ... this.
7242         (thread_info): Rename to ...
7243         (windows_thread_info): ... this.
7244         All users updated.
7245
7246 2015-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7247             Pedro Alves  <palves@redhat.com>
7248
7249         * NEWS: New Removed targets and native configurations.
7250
7251 2015-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
7252
7253         Remove HPUX.
7254         * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
7255         (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
7256         (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
7257         ia64-hpux-tdep.h, solib-ia64-hpux.h.
7258         (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
7259         ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
7260         * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
7261         hppa-hpux-tdep.c.
7262         * config/ia64/hpux.mh: Remove file.
7263         * config/pa/hpux.mh: Remove file.
7264         * configure: Rebuilt.
7265         * configure.ac (dlgetmodinfo, somread.o): Remove.
7266         * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
7267         (ia64-*-hpux*): Remove its float format exception.
7268         * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
7269         * hppa-hpux-nat.c: Remove file.
7270         * hppa-hpux-tdep.c: Remove file.
7271         * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
7272         Move them here from hppa-tdep.h
7273         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
7274         (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
7275         * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
7276         Move them to hppa-tdep.c.
7277         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
7278         declarations.
7279         * ia64-hpux-nat.c: Remove file.
7280         * ia64-hpux-tdep.c: Remove file.
7281         * ia64-hpux-tdep.h: Remove file.
7282         * inf-ttrace.c: Remove file.
7283         * inf-ttrace.h: Remove file.
7284         * solib-ia64-hpux.c: Remove file.
7285         * solib-ia64-hpux.h: Remove file.
7286         * solib-pa64.c: Remove file.
7287         * solib-pa64.h: Remove file.
7288         * solib-som.c: Remove file.
7289         * solib-som.h: Remove file.
7290         * somread.c: Remove file.
7291
7292 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
7293
7294         * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
7295         * config.in: Regenerate.
7296         * configure: Regenerate.
7297         * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
7298         define.
7299         (fbsd_find_memory_regions): Use kinfo_getvmmap to
7300         enumerate memory regions if present.
7301
7302 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
7303
7304         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
7305         * i386fbsd-tdep.c: Fix style in various gdb_static_assert
7306         expressions.
7307         (i386fbsd_sigtramp_p): Likewise.
7308
7309 2015-03-12  John Baldwin  <jhb@FreeBSD.org>
7310
7311         * MAINTAINERS (Write After Approval): Add John Baldwin.
7312
7313 2015-03-12  Gary Benson <gbenson@redhat.com>
7314
7315         * solib.c (_initialize_solib): Make "set/show sysroot" use
7316         add_setshow_optional_filename_cmd so it can be restored to
7317         empty after being set.
7318
7319 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7320
7321         * Makefile.in (SFILES): New source break-catch-syscall.c.
7322         (COMMON_OBS): New object break-catch-syscall.o.
7323         * break-catch-syscall.c: New file.
7324         * breakpoint.c: Remove inclusion of "xml-syscall.h".
7325         (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
7326         (struct syscall_catchpoint): Likewise.
7327         (dtor_catch_syscall): Likewise.
7328         (catch_syscall_inferior_data): Likewise.
7329         (struct catch_syscall_inferior_data): Likewise.
7330         (get_catch_syscall_inferior_data): Likewise.
7331         (catch_syscall_inferior_data_cleanup): Likewise.
7332         (insert_catch_syscall): Likewise.
7333         (remove_catch_syscall): Likewise.
7334         (breakpoint_hit_catch_syscall): Likewise.
7335         (print_it_catch_syscall): Likewise.
7336         (print_one_catch_syscall): Likewise.
7337         (print_mention_catch_syscall): Likewise.
7338         (print_recreate_catch_syscall): Likewise.
7339         (catch_syscall_breakpoint_ops): Likewise.
7340         (syscall_catchpoint_p): Likewise.
7341         (create_syscall_event_catchpoint): Likewise.
7342         (catch_syscall_split_args): Likewise.
7343         (catch_syscall_command_1): Likewise.
7344         (is_syscall_catchpoint_enabled): Likewise.
7345         (catch_syscall_enabled): Likewise.
7346         (catching_syscall_number): Likewise.
7347         (catch_syscall_completer): Likewise.
7348         (clear_syscall_counts): Likewise.
7349         (initialize_breakpoint_ops): Move initialization of syscall
7350         catchpoints to break-catch-syscall.c.
7351         (_initialize_breakpoint): Move code related to syscall catchpoints
7352         to break-catch-syscall.c.
7353
7354 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7355
7356         * breakpoint.c (breakpoint_find_if): New function.
7357         * breakpoint.h (breakpoint_find_if): New prototype.
7358
7359 2015-03-11  Gary Benson <gbenson@redhat.com>
7360
7361         * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
7362         * remote-fileio.c (remote_fileio_to_host_uint): New function.
7363         (remote_fileio_to_host_ulong): Likewise.
7364         (remote_fileio_to_host_mode): Likewise.
7365         (remote_fileio_to_host_time): Likewise.
7366         (remote_fileio_to_host_stat): Likewise.
7367         * remote.c (PACKET_vFile_fstat): New enum value.
7368         (remote_protocol_features): Register the "vFile:fstat" feature.
7369         (remote_hostio_fstat): New function.
7370         (remote_bfd_iovec_stat): Use the above.
7371         (_initialize_remote): Register new "set/show remote
7372         hostio-fstat-packet" command.
7373         * symfile.c (separate_debug_file_exists): Update comment.
7374         * NEWS: Announce new vFile:fstat packet.
7375
7376 2015-03-11  Gary Benson <gbenson@redhat.com>
7377
7378         * common/common-remote-fileio.h: New file.
7379         * common/common-remote-fileio.c: Likewise.
7380         * Makefile.in (SFILES): Add common/common-remote-fileio.c.
7381         (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
7382         (COMMON_OBS): Add common-remote-fileio.o.
7383         (common-remote-fileio.o): New rule.
7384         * remote-fileio.h (common-remote-fileio.h): New include.
7385         * remote-fileio.c (gdb/fileio.h): Do not include.
7386         (remote_fileio_to_be): Moved to common-remote-fileio.h.
7387         (remote_fileio_to_fio_uint): Likewise.
7388         (remote_fileio_to_fio_time): Likewise.
7389         (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
7390         (remote_fileio_to_fio_mode): Likewise.
7391         (remote_fileio_to_fio_ulong): Likewise.
7392         (remote_fileio_to_fio_stat): Likewise.
7393
7394 2015-03-11  Andy Wingo  <wingo@igalia.com>
7395
7396         * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
7397         we were checking the cached type, not the cached dynamic type.
7398
7399 2015-03-11  Andy Wingo  <wingo@igalia.com>
7400
7401         * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
7402         other strings, as these are on the GC'd heap, and will be
7403         collected along with the smob.
7404
7405 2015-03-11  Andy Wingo  <wingo@igalia.com>
7406
7407         * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
7408         (objfile_functions): Bind gdbscm_objfile_progspace to
7409         objfile-progspace.
7410         * guile/lib/gdb.scm: Add objfile-progspace to exports.
7411
7412 2015-03-11  Andy Wingo  <wingo@igalia.com>
7413
7414         * guile/guile.c (_initialize_guile): Disable automatic
7415         finalization, if Guile offers us that possibility.
7416         * guile/guile.c (call_initialize_gdb_module):
7417         * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
7418         finalizers in appropriate places.
7419         * configure.ac (AC_TRY_LIBGUILE): Add a check for
7420         scm_set_automatic_finalization_enabled.
7421         * configure: Regenerated.
7422
7423 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7424
7425         * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
7426         SAL, if possible.
7427
7428 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7429
7430         * s390-linux-nat.c (struct arch_lwp_info): New.
7431         (s390_fix_watch_points): Rename to...
7432         (s390_prepare_to_resume): ...this.  Skip the PER info update
7433         unless the watch points have changed.
7434         (s390_refresh_per_info, s390_new_thread): New functions.
7435         (s390_insert_watchpoint): Call s390_refresh_per_info instead of
7436         s390_fix_watch_points.
7437         (s390_remove_watchpoint): Likewise.
7438         (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
7439         Register s390_prepare_to_resume.
7440
7441 2015-03-09  Pedro Alves  <palves@redhat.com>
7442
7443         Revert:
7444         2015-03-07  Pedro Alves  <palves@redhat.com>
7445         * common/gdb_socket.h: New file.
7446         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
7447         sys/socket.h.
7448         (net_open): Use union gdb_sockaddr_u.
7449
7450 2015-03-07  Pedro Alves  <palves@redhat.com>
7451
7452         * configure.ac (build_warnings): Move -Wmissing-prototypes
7453         -Wdeclaration-after-statement -Wmissing-parameter-type
7454         -Wold-style-declaration -Wold-style-definition to the C-specific
7455         set.
7456         * configure: Regenerate.
7457
7458 2015-03-07  Pedro Alves  <palves@redhat.com>
7459
7460         * common/gdb_socket.h: New file.
7461         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
7462         sys/socket.h.
7463         (net_open): Use union gdb_sockaddr_u.
7464
7465 2015-03-07  Pedro Alves  <palves@redhat.com>
7466
7467         * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
7468         (exceptions_state_mc_action_iter)
7469         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
7470         Don't define.
7471         [__cplusplus] (try_scope_depth): New global.
7472         [__cplusplus] (exception_try_scope_entry)
7473         (exception_try_scope_exit, gdb_exception_sliced_copy)
7474         (exception_rethrow): New functions.
7475         (throw_exception): In C++ mode, throw
7476         gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
7477         gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
7478         (throw_it): In C++ mode, use try_scope_depth.
7479         * common/common-exceptions.h [!__cplusplus]
7480         (exceptions_state_mc_action_iter)
7481         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
7482         Don't declare.
7483         [__cplusplus] (exception_try_scope_entry)
7484         (exception_try_scope_exit, exception_rethrow): Declare.
7485         [__cplusplus] (struct exception_try_scope): New struct.
7486         [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
7487         C++ exceptions.
7488         (struct gdb_exception_RETURN_MASK_ALL)
7489         (struct gdb_exception_RETURN_MASK_ERROR)
7490         (struct gdb_exception_RETURN_MASK_QUIT): New types.
7491
7492 2015-03-07  Pedro Alves  <palves@redhat.com>
7493
7494         * main.c (handle_command_errors): Remove volatile qualifier from
7495         parameter.
7496
7497 2015-03-07  Pedro Alves  <palves@redhat.com>
7498
7499         * breakpoint.c (save_breakpoints): Adjust to avoid code between
7500         TRY and CATCH.
7501         * gdbtypes.c (safe_parse_type): Remove empty line.
7502         (types_deeply_equal):
7503         * guile/scm-frame.c (gdbscm_frame_name):
7504         * linux-thread-db.c (find_new_threads_once):
7505         * python/py-breakpoint.c (bppy_get_commands):
7506         * record-btrace.c (record_btrace_insert_breakpoint)
7507         (record_btrace_remove_breakpoint, record_btrace_start_replaying)
7508         (record_btrace_start_replaying): Adjust to avoid code between TRY
7509         and CATCH.
7510
7511 2015-03-07  Pedro Alves  <palves@redhat.com>
7512
7513         * common/common-exceptions.c (struct catcher) <exception>: No
7514         longer a pointer to volatile exception.  Now an exception value.
7515         <mask>: Delete field.
7516         (exceptions_state_mc_init): Remove all parameters.  Adjust.
7517         (exceptions_state_mc): No longer pop the catcher here.
7518         (exceptions_state_mc_catch): New function.
7519         (throw_exception): Adjust.
7520         * common/common-exceptions.h (exceptions_state_mc_init): Remove
7521         all parameters.
7522         (exceptions_state_mc_catch): Declare.
7523         (TRY_CATCH): Rename to ...
7524         (TRY): ... this.  Remove EXCEPTION and MASK parameters.
7525         (CATCH, END_CATCH): New.
7526         All callers adjusted.
7527
7528 2015-03-07  Tom Tromey  <tromey@redhat.com>
7529
7530         * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
7531
7532 2015-03-07  Pedro Alves  <palves@redhat.com>
7533
7534         * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
7535         (amd64_epilogue_frame_cache): Normal exception handling code.
7536         * break-catch-throw.c (check_status_exception_catchpoint)
7537         (re_set_exception_catchpoint): Ditto.
7538         * cli/cli-interp.c (safe_execute_command):
7539         * cli/cli-script.c (script_from_file): Ditto.
7540         * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
7541         Ditto.
7542         * compile/compile-object-run.c (compile_object_run): Ditto.
7543         * cp-abi.c (baseclass_offset): Ditto.
7544         * cp-valprint.c (cp_print_value): Ditto.
7545         * exceptions.c (catch_exceptions_with_msg):
7546         * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
7547         * frame.c (get_frame_address_in_block_if_available): Ditto.
7548         * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
7549         (i386_sigtramp_frame_cache): Ditto.
7550         * infcmd.c (post_create_inferior): Ditto.
7551         * linespec.c (parse_linespec, find_linespec_symbols):
7552         * p-valprint.c (pascal_object_print_value): Ditto.
7553         * parse.c (parse_expression_for_completion): Ditto.
7554         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
7555         * remote.c (remote_get_noisy_reply): Ditto.
7556         * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
7557         * solib-svr4.c (solib_svr4_r_map): Ditto.
7558
7559 2015-03-06  Gary Benson  <gbenson@redhat.com>
7560
7561         * common/common-utils.h (startswith): New inline function.
7562         All places where this logic was used updated to use the above.
7563
7564 2015-03-05  Pedro Alves  <palves@redhat.com>
7565
7566         PR gdb/18002
7567         * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
7568         after reading the breakpoint's shadow memory.
7569
7570 2015-03-05  Mark Kettenis  <kettenis@gnu.org>
7571
7572         * hppabsd-nat.c: Remove file.
7573         * hppaobsd-nat.c: New file.
7574         * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c.  Add
7575         hppaobsd-nat.c.
7576         * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
7577         hppaobsd-nat.o.
7578
7579 2015-03-04  Pedro Alves  <palves@redhat.com>
7580
7581         * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
7582         (target_decr_pc_after_break): Delete declaration.
7583         * target.c (default_target_decr_pc_after_break)
7584         (target_decr_pc_after_break): Delete.
7585         * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
7586         gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
7587         * linux-thread-db.c (check_event): Likewise.
7588         * infrun.c (adjust_pc_after_break): Likewise.
7589         * darwin-nat.c (cancel_breakpoint): Likewise.
7590         * aix-thread.c (aix_thread_wait): Likewise.
7591         * target-delegates.c: Regenerate.
7592
7593 2015-03-04  Pedro Alves  <palves@redhat.com>
7594
7595         * linux-nat.c (save_sigtrap): Check for breakpoints before
7596         checking watchpoints.
7597         (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
7598         breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
7599         (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
7600         a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
7601         (linux_nat_stopped_by_sw_breakpoint)
7602         (linux_nat_supports_stopped_by_sw_breakpoint)
7603         (linux_nat_stopped_by_hw_breakpoint)
7604         (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
7605         (linux_nat_wait_1): Don't re-increment the PC if relying on
7606         SIGTRAP's siginfo->si_code.
7607         (linux_nat_add_target): Install new target methods.
7608         * linux-thread-db.c (check_event): Don't account for breakpoint PC
7609         offset if the target already adjusted the PC.
7610         * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
7611         (GDB_ARCH_TRAP_BRKPT): New.
7612         (TRAP_HWBKPT): Define if not already defined.
7613
7614 2015-03-04  Pedro Alves  <palves@redhat.com>
7615
7616         * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
7617         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
7618         Delete field.
7619         <stop_reason>: New field.
7620         (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
7621         (packet_set_cmd_state): New function.
7622         (remote_protocol_features): Register the "swbreak" and "hwbreak"
7623         features.
7624         (remote_query_supported): If not disabled with the corresponding
7625         "set remote foo-packet" command, report support for the swbreak
7626         and hwbreak features.
7627         (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
7628         field.
7629         <stop_reason>: New field.
7630         (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
7631         (remote_wait_as): Adjust.
7632         (remote_stopped_by_sw_breakpoint)
7633         (remote_supports_stopped_by_sw_breakpoint)
7634         (remote_stopped_by_hw_breakpoint)
7635         (remote_supports_stopped_by_hw_breakpoint): New functions.
7636         (remote_stopped_by_watchpoint): New function.
7637         (init_remote_ops): Install them.
7638         (_initialize_remote): Register new "set/show remote
7639         swbreak-feature-packet" and "set/show remote
7640         swbreak-feature-packet" commands.
7641
7642 2015-03-04  Pedro Alves  <palves@redhat.com>
7643
7644         * btrace.h: Include target/waitstatus.h.
7645         (struct btrace_thread_info) <stop_reason>: New field.
7646         * record-btrace.c (record_btrace_step_thread): Use
7647         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
7648         (record_btrace_decr_pc_after_break): Delete.
7649         (record_btrace_stopped_by_sw_breakpoint)
7650         (record_btrace_supports_stopped_by_sw_breakpoint)
7651         (record_btrace_stopped_by_hw_breakpoint)
7652         (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
7653         (init_record_btrace_ops): Install them.
7654         * record-full.c (record_full_hw_watchpoint): Delete and replace
7655         with ...
7656         (record_full_stop_reason): ... this throughout.
7657         (record_full_exec_insn): Adjust.
7658         (record_full_wait_1): Adjust.  No longer re-increment the PC.
7659         (record_full_wait_1): Adjust.  Use
7660         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
7661         (record_full_stopped_by_watchpoint): Adjust.
7662         (record_full_stopped_by_sw_breakpoint)
7663         (record_full_supports_stopped_by_sw_breakpoint)
7664         (record_full_supports_stopped_by_sw_breakpoint)
7665         (record_full_stopped_by_hw_breakpoint)
7666         (record_full_supports_stopped_by_hw_breakpoint): New functions.
7667         (init_record_full_ops, init_record_full_core_ops): Install them.
7668         * record.c (record_check_stopped_by_breakpoint): New function.
7669         * record.h: Include target/waitstatus.h.
7670         (record_check_stopped_by_breakpoint): New declaration.
7671
7672 2015-03-04  Pedro Alves  <palves@redhat.com>
7673
7674         enum lwp_stop_reason -> enum target_stop_reason
7675         * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
7676         (linux_nat_stopped_by_watchpoint, status_callback)
7677         (linux_nat_wait_1): Adjust.
7678         * linux-nat.h (enum lwp_stop_reason): Delete.
7679         (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
7680         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
7681         * target/waitstatus.h (enum target_stop_reason): New.
7682
7683 2015-03-04  Pedro Alves  <palves@redhat.com>
7684
7685         * breakpoint.c (need_moribund_for_location_type): New function.
7686         (bpstat_stop_status): Don't skipping checking moribund locations
7687         of breakpoint types which the target tell caused a stop.
7688         (program_breakpoint_here_p): New function, factored out from ...
7689         (bp_loc_is_permanent): ... this.
7690         (update_global_location_list): Don't create a moribund location if
7691         the target supports reporting stops of the type of the removed
7692         breakpoint.
7693         * breakpoint.h (program_breakpoint_here_p): New declaration.
7694         * infrun.c (adjust_pc_after_break): Return early if the target has
7695         already adjusted the PC.  Add comments.
7696         (handle_signal_stop): If nothing explains a signal, and the target
7697         tells us the stop was caused by a software breakpoint, check if
7698         there's a breakpoint instruction in the memory.  If so, adjust the
7699         PC before presenting the stop to the user.  Otherwise, ignore the
7700         trap.  If nothing explains a signal, and the target tells us the
7701         stop was caused by a hardware breakpoint, ignore the trap.
7702         * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
7703         to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
7704         to_supports_stopped_by_hw_breakpoint>: New fields.
7705         (target_stopped_by_sw_breakpoint)
7706         (target_supports_stopped_by_sw_breakpoint)
7707         (target_stopped_by_hw_breakpoint)
7708         (target_supports_stopped_by_hw_breakpoint): Define.
7709         * target-delegates.c: Regenerate.
7710
7711 2015-03-04  Pedro Alves  <palves@redhat.com>
7712
7713         * infrun.c (follow_fork_inferior): Use the whole of the
7714         inferior_ptid and pending_follow.related_pid ptids instead of
7715         building ptids from the process components.  Adjust verbose output
7716         to use target_pid_to_str.
7717         * linux-nat.c (linux_child_follow_fork): Use the whole of the
7718         inferior_ptid and pending_follow.related_pid ptids instead of
7719         building ptids from the process components.
7720
7721 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
7722
7723         * inf-ptrace.c [PT_GET_PROCESS_STATE]
7724         (inf_ptrace_insert_fork_catchpoint): New function.
7725         (inf_ptrace_remove_fork_catchpoint): New function.
7726         (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
7727
7728 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7729
7730         * s390-linux-tdep.c (s390_register_name): Return empty string
7731         instead of NULL for registers that shouldn't be visible.
7732
7733 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7734
7735         * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
7736         XML file for 64-bit targets.
7737
7738 2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
7739
7740         * target.h (find_default_create_inferior): Remove declaration.
7741         (find_default_attach): Likewise.
7742
7743 2015-03-03  Pedro Alves  <palves@redhat.com>
7744
7745         * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
7746         Use ptid_get_pid to get the overall process id when resuming all
7747         threads.
7748
7749 2015-03-03  Pedro Alves  <palves@redhat.com>
7750
7751         * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
7752         the lwp field of ptid.  Pass the full ptid to get_thread_regcache.
7753         * inf-ptrace.c (get_ptrace_pid): New function.
7754         (inf_ptrace_resume): Use it.
7755         * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
7756         to the lower layer.
7757
7758 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7759
7760         * nat/linux-btrace.c: Include sys/utsname.h.
7761         (linux_determine_kernel_ptr_bits): New.
7762         (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
7763         * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
7764         ptr_bits.
7765
7766 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7767
7768         * btrace.c (ftrace_update_function): Treat return as tailcall for
7769         "_dl_runtime_resolve".
7770
7771 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
7772
7773         * btrace.h (btrace_function) <lbegin, lend>: Remove.
7774         * btrace.c (ftrace_debug): Do not print the line range.
7775         (ftrace_skip_file, ftrace_update_lines): Remove.
7776         (ftrace_new_function): Remove lbegin and lend initialization.
7777         (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
7778         * record-btrace.c (btrace_compute_src_line_range): New.
7779         (btrace_call_history_src_line): Call btrace_compute_src_line_range.
7780
7781 2015-03-02  Pedro Alves  <palves@redhat.com>
7782
7783         * infrun.c (follow_exec): Delete all threads of the process except
7784         the event thread.  Extended comments.
7785
7786 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
7787
7788         * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
7789
7790 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
7791
7792         * utils.h: Remove <stdbool.h> #include.
7793         (producer_is_gcc): Change return type to "int".
7794         * utils.c (producer_is_gcc): Change return type to int.
7795         Return 1 instead of true, and 0 instead of false.
7796         Adjust function documentation accordingly.
7797
7798 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7799
7800         * s390-linux-nat.c (have_regset_vxrs): New static variable.
7801         (s390_linux_fetch_inferior_registers): Handle vector registers, if
7802         present.
7803         (s390_linux_store_inferior_registers): Likewise.
7804         (s390_get_hwcap): Remove function.  Embed its logic...
7805         (s390_read_description): ...here.  Yield a target description with
7806         vector registers if applicable.
7807         * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
7808         "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
7809         "features/s390x-tevx-linux64.c".
7810         (struct gdbarch_tdep) <v0_full_regnum>: New field.
7811         (s390_dwarf_regmap): Add vector registers.  Remove bogus entries
7812         for "GNU/Linux-specific registers".
7813         (s390_dwarf_reg_r0l): New enum value.
7814         (s390_dwarf_reg_to_regnum): Support vector registers.
7815         (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
7816         of GPR lower halves.
7817         (regnum_is_vxr_full): New function.
7818         (s390_register_name): New function.
7819         (s390_pseudo_register_name): Handle v0-v15, which are composed of
7820         f0-f15 and v0l-v15l.
7821         (s390_pseudo_register_type): Likewise.
7822         (s390_pseudo_register_read): Likewise.
7823         (s390_pseudo_register_write): Likewise.
7824         (s390_value_from_register): Account for the fact that values are
7825         placed left-justified in vector registers.
7826         (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
7827         the vector reggroup and omit them from the general reggroup.
7828         (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
7829         (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
7830         (s390_iterate_over_regset_sections): Add iterations for the two
7831         new vector regsets.
7832         (s390_core_read_description): Yield a target description with
7833         vector registers if applicable.
7834         (s390_gdbarch_init): Handle target descriptions with vector
7835         registers.  Add "register_name" gdbarch method.
7836         (_initialize_s390_tdep): Call new tdesc initialization functions.
7837         * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
7838         (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
7839         (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
7840         (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
7841         (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
7842         (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
7843         (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
7844         (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
7845         (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
7846         (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
7847         (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
7848         (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
7849         (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
7850         (S390_NUM_REGS): Adjust value.
7851         (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
7852         (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
7853         (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
7854         * NEWS: Announce S/390 vector register support.
7855
7856 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7857
7858         * features/s390-tevx-linux64.xml: New file.
7859         * features/s390-vx-linux64.xml: New file.
7860         * features/s390-vx.xml: New file.
7861         * features/s390x-tevx-linux64.xml: New file.
7862         * features/s390x-vx-linux64.xml: New file.
7863         * features/Makefile (WHICH): Add s390-vx-linux64,
7864         s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
7865         (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
7866         (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
7867         macros.
7868         * features/s390-tevx-linux64.c: New generated file.
7869         * features/s390-vx-linux64.c: Likewise.
7870         * features/s390x-tevx-linux64.c: Likewise.
7871         * features/s390x-vx-linux64.c: Likewise.
7872         * regformats/s390-tevx-linux64.dat: Likewise.
7873         * regformats/s390-vx-linux64.dat: Likewise.
7874         * regformats/s390x-tevx-linux64.dat: Likewise.
7875         * regformats/s390x-vx-linux64.dat: Likewise.
7876
7877 2015-02-28  Doug Evans  <xdje42@gmail.com>
7878
7879         * symtab.h (struct symtab) <next>: Fix comment.
7880
7881 2015-02-27  Simon Marchi  <simon.marchi@ericsson.com>
7882
7883         * python/python.c (python_GdbModuleDef): Rename GdbMethods to
7884         python_GdbMethods.
7885
7886 2015-02-27  Pedro Alves  <palves@redhat.com>
7887
7888         * dtrace-probe.c (dtrace_probe_ops): Make extern.
7889
7890 2015-02-27  Pedro Alves  <palves@redhat.com>
7891
7892         * common/common-exceptions.h (exception_none): Declare.
7893         * common/common-exceptions.c (exception_none): Moved from
7894         exceptions.c.
7895         (exceptions_state_mc_init): Use exception_none.
7896         * exceptions.c (exception_none): Move to
7897         common/common-exceptions.c.
7898         * exceptions.h (exception_none): Move to
7899         common/common-exceptions.h.
7900
7901 2015-02-27  Pedro Alves  <palves@redhat.com>
7902
7903         * main.c (catch_command_errors, catch_command_errors_const):
7904         Remove 'mask' argument.  Adjust.
7905         (captured_main): Adjust callers.
7906
7907 2015-02-27  Pedro Alves  <palves@redhat.com>
7908
7909         * python/python-internal.h: Include "extension-priv.h".
7910
7911 2015-02-27  Pedro Alves  <palves@redhat.com>
7912
7913         * breakpoint.h (enum print_stop_action): Move further up in the
7914         file.
7915
7916 2015-02-27  Pedro Alves  <palves@redhat.com>
7917
7918         * gdbarch.sh: Include regcache.h.
7919         * gdbarch.h: Regenerate.
7920
7921 2015-02-27  Pedro Alves  <palves@redhat.com>
7922
7923         * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
7924         Remove duplicate const.
7925         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
7926         duplicate const.
7927
7928 2015-02-27  Pedro Alves  <palves@redhat.com>
7929
7930         * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
7931         * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
7932         * features/feature_to_c.sh: Tag the generated xml_builtin array
7933         with extern const in C++ mode.
7934
7935 2015-02-27  Tom Tromey  <tromey@redhat.com>
7936
7937         * minidebug.c (struct lzma_stream): Rename to ...
7938         (struct gdb_lzma_stream): ... this.
7939         (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
7940
7941 2015-02-27  Pedro Alves  <palves@redhat.com>
7942
7943         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
7944         function.
7945         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7946         (mi_cmd_stack_list_variables): Use it.
7947
7948 2015-02-27  Pedro Alves  <palves@redhat.com>
7949
7950         * x86-linux-nat.c (u_debugreg_offset): New function.
7951         (x86_linux_dr_get, x86_linux_dr_set): Use it.
7952
7953 2015-02-27  Pedro Alves  <palves@redhat.com>
7954
7955         * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
7956         declaration.
7957         Include break-common.h.
7958
7959 2015-02-27  Tom Tromey  <tromey@redhat.com>
7960             Pedro Alves <palves@redhat.com>
7961
7962         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
7963         local used to iterate over enums.
7964         * completer.c (signal_completer): Likewise.
7965         * i386-tdep.c (i386_stap_parse_special_token): Likewise.
7966         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
7967         * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
7968         * tui/tui-layout.c (next_layout, prev_layout): Likewise.
7969         * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
7970         (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
7971         * tui-wingeneral.c (tui_refresh_all):  Likewise.
7972
7973 2015-02-27  Pedro Alves  <palves@redhat.com>
7974
7975         * target.h: Include "infrun.h".
7976
7977 2015-02-27  Pedro Alves  <palves@redhat.com>
7978
7979         * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
7980
7981 2015-02-27  Pedro Alves  <palves@redhat.com>
7982
7983         * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
7984         (IPA_SYM): Use it.
7985         * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
7986
7987 2015-02-27  Pedro Alves  <palves@redhat.com>
7988
7989         * cli-out.c (_rl_erase_entire_line): Move declaration out of
7990         cli_mld_erase_entire_line, and make it extern "C".
7991         * common/common-defs.h (EXTERN_C): New.
7992         * completer.c (_rl_completion_prefix_display_length)
7993         (_rl_print_completions_horizontally, QSFUNC): Move declarations
7994         out of gdb_display_match_list_1.
7995         (_rl_qsort_string_compare): Move declaration out of
7996         gdb_display_match_list_1, and make it extern "C".
7997         * defs.h (re_comp): Use EXTERN_C.
7998         * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
7999         and make it extern "C".
8000         (monstartup): Move declaration out of maintenance_set_profile_cmd,
8001         and make it extern "C".
8002         (main): Move declaration out of maintenance_set_profile_cmd.
8003         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
8004         EXTERN_C.
8005
8006 2015-02-27  Pedro Alves  <palves@redhat.com>
8007
8008         * python/python.c (GdbMethods): Rename to ...
8009         (python_GdbMethods): ... this and make extern.
8010         (GdbModuleDef): Rename to ...
8011         (python_GdbModuleDef): ... this and make extern.
8012
8013 2015-02-27  Pedro Alves  <palves@redhat.com>
8014
8015         * record-btrace.c (set_record_btrace_cmdlist)
8016         (show_record_btrace_cmdlist): Remove redefinitions.
8017
8018 2015-02-27  Tom Tromey  <tromey@redhat.com>
8019             Pedro Alves  <palves@redhat.com>
8020
8021         * dwarf2-frame.c (enum cfa_how_kind, struct
8022         dwarf2_frame_state_reg_info): Move out of struct
8023         dwarf2_frame_state.
8024         * dwarf2read.c (struct tu_stats): Move out of struct
8025         dwarf2_per_objfile.
8026         (struct file_entry): Move out of struct line_header.
8027         (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
8028         typedef_field_list): Move out of struct field_info.
8029         * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
8030         Move out of struct dynamic_prop.
8031         (union type_owner, union field_location, struct field, struct
8032         range_bounds, union type_specific): Move out of struct main_type.
8033         (struct fn_fieldlist, struct fn_field, struct typedef_field)
8034         (VOFFSET_STATIC): Move out of struct cplus_struct_type.
8035         (struct call_site_target, union call_site_parameter_u, struct
8036         call_site_parameter): Move out of struct call_site.
8037         * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
8038         m32c_prologue.
8039         (enum srcdest_kind): Move out of struct srcdest.
8040         * main.c (enum cmdarg_kind): Move out of struct cmdarg.
8041         * prologue-value.h (enum prologue_value_kind): Move out of struct
8042         prologue_value.
8043         * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
8044         gdbarch_tdep.
8045         * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
8046         out of struct field_info.
8047         * symfile.h (struct other_sections): Move out of struct
8048         section_addr_info.
8049         * symtab.c (struct symbol_cache_slot): Move out struct
8050         block_symbol_cache.
8051         * target-descriptions.c (enum tdesc_type_kind): Move out of
8052         typedef struct tdesc_type.
8053         * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
8054         struct tui_line_or_address.
8055         * value.c (enum internalvar_kind, union internalvar_data): Move
8056         out of struct internalvar.
8057         * xtensa-tdep.h (struct ctype_cache): Move out of struct
8058         gdbarch_tdep.
8059
8060 2015-02-27  Tom Tromey  <tromey@redhat.com>
8061             Pedro Alves  <palves@redhat.com>
8062
8063         Rename symbols whose names are reserved C++ keywords throughout.
8064
8065 2015-02-27  Pedro Alves  <palves@redhat.com>
8066
8067         * Makefile.in (COMPILER): New, get it from autoconf.
8068         (COMPILE.pre, CC_LD): Use COMPILER.
8069         (CXX): Get from autoconf instead.
8070         (CXX_FOR_TARGET): Default to g++ instead of gcc.
8071         * acinclude.m4: Include build-with-cxx.m4.
8072         * build-with-cxx.m4: New file.
8073         * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
8074         Disable -Werror by default if building in C++ mode.
8075         (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
8076         -Wno-narrowing in C++ mode.  Only enable -Wpointer-sign in C mode.
8077         Run supported-warning-flags tests with the C++ compiler.
8078         Save/restore CXXFLAGS too.
8079         * configure: Regenerate.
8080
8081 2015-02-27  Pedro Alves  <palves@redhat.com>
8082
8083         * libiberty.m4: New file.
8084         * acinclude.m4: Include libiberty.m4.
8085         * configure.ac: Call libiberty_INIT.
8086         * config.in, configure: Regenerate.
8087
8088 2015-02-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8089
8090         * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
8091         31-bit targets, but 64-bit targets as well.
8092         (s390_gnu_triplet_regexp): New function.
8093         (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
8094         64-bit targets as well.  Set the gnu_triplet_regexp gdbarch
8095         method.
8096
8097 2015-02-27  Jon TURNEY  <jon.turney@dronecode.org.uk>  (tiny patch)
8098
8099         * windows-nat.c (CONTEXT_DEBUGGER): Remove.
8100         (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS.  Incorporate flags
8101         from CONTEXT_DEBUGGER.
8102
8103 2015-02-26  Doug Evans  <dje@google.com>
8104
8105         * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
8106         CHECK_TYPEDEF.
8107         (set_type_vptr_fieldno): Ditto.
8108         (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
8109         * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
8110
8111 2015-02-26  Pedro Alves  <palves@redhat.com>
8112
8113         * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
8114         * complaints.c (vcomplaint): Pass argument FMT directly to
8115         printf-like functions instead of complaint->fmt.
8116         * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
8117         * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
8118         * compile/compile-loc2c.c (pushf, unary, binary): Add
8119         ATTRIBUTE_PRINTF.
8120         (do_compile_dwarf_expr_to_c): Pass string literal as format string
8121         to pushf.
8122         (BINARY): Pass string literal as format string to 'binary'.
8123         * compile/compile-object-load.c (link_callbacks_einfo): Add
8124         ATTRIBUTE_PRINTF.
8125         * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
8126
8127 2015-02-26  Pedro Alves  <palves@redhat.com>
8128
8129         * windows-termcap.c: Rename to ...
8130         * stub-termcap.c: ... this.  Adjust header line.
8131         * Makefile.in (SFILES): Refer to stub-termcap.c instead of
8132         windows-termcap.c.
8133         * configure: Regenerate.
8134         * configure.ac: Refer to stub-termcap.o instead of
8135         windows-termcap.o.
8136         * gdb_curses.h: Mention stub-termcap.c instead of
8137         windows-termcap.c.
8138
8139 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8140
8141         * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
8142         (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
8143
8144 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
8145
8146         * gdb/infcmd.c (print_return_value): use type_to_string to print type.
8147
8148 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8149
8150         * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
8151         bfd_canonicalize_symtab.
8152
8153 2015-02-25  John Baldwin  <jhb@FreeBSD.org>
8154
8155         * amd64fbsd-nat.c: Include sys/user.h.
8156         (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
8157         instead of KERN_PS_STRINGS to locate the signal trampoline.
8158         * i386fbsd-nat.c: Include sys/user.h.
8159         (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
8160         instead of KERN_PS_STRINGS to locate the signal trampoline.
8161         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
8162         (amd64fbsd_sigtramp_p): New.
8163         (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
8164         longer set default values.
8165         (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
8166         * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
8167         (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
8168         (i386fbsd_freebsd4_sigtramp_start)
8169         (i386fbsd_freebsd4_sigtramp_middle)
8170         (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
8171         (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
8172         (i386fbsd_sigtramp_p): New.
8173         (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
8174         longer set default values.
8175         (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
8176
8177 2015-02-25  John Baldwin  <jhb@freebsd.org>
8178
8179         * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
8180         get_frame_register instead of frame_unwind_register_unsigned.
8181
8182 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
8183
8184         PR build/18033
8185         * compile/compile-c-support.c (c_compute_program): Change // comment.
8186         * compile/compile-object-load.c (setup_sections): Change // comment.
8187
8188 2015-02-26  Joel Brobecker  <brobecker@adacore.com>
8189
8190         PR build/18033:
8191         * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
8192
8193 2015-02-23  Pedro Alves  <palves@redhat.com>
8194
8195         * remote.c (skip_to_semicolon): New function.
8196         (remote_parse_stop_reply) <T stop reply>: Use it.  Don't
8197         special case the stop reasons that look like hex numbers
8198         upfront.  Instead handle real register numbers after matching
8199         all the known stop reasons.
8200
8201 2015-02-21  Doug Evans  <dje@google.com>
8202
8203         PR c++/17976, symtab/17821
8204         * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
8205         is_in_anonymous.  All callers updated.
8206         (find_symbol_in_baseclass): Ditto.
8207         (cp_lookup_nested_symbol_1): Ditto.  Don't search all static blocks
8208         for symbols in an anonymous namespace.
8209         * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
8210         DW_AT_name directly.
8211         (dwarf2_name): Convert missing namespace name to
8212         CP_ANONYMOUS_NAMESPACE_STR.
8213
8214 2015-02-20  Pedro Alves  <palves@redhat.com>
8215
8216         * linux-nat.c (linux_handle_extended_wait): Call
8217         thread_db_notice_clone whenever a new clone LWP is detected.
8218         (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
8219         functions.
8220         * linux-nat.h (thread_db_attach_lwp): Delete declaration.
8221         (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
8222         (linux_unstop_all_lwps): Declare.
8223         * linux-thread-db.c (struct thread_get_info_inout): Delete.
8224         (thread_get_info_callback): Delete.
8225         (thread_from_lwp): Use td_thr_get_info and record_thread.
8226         (thread_db_attach_lwp): Delete.
8227         (thread_db_notice_clone): New function.
8228         (try_thread_db_load_1): If /proc is mounted and shows the
8229         process'es task list, walk over all LWPs and call thread_from_lwp
8230         instead of relying on td_ta_thr_iter.
8231         (attach_thread): Don't call check_thread_signals here.  Split the
8232         tail part of the function (which adds the thread to the core GDB
8233         thread list) to ...
8234         (record_thread): ... this function.  Call check_thread_signals
8235         here.
8236         (thread_db_wait): Don't call thread_db_find_new_threads_1.  Always
8237         call thread_from_lwp.
8238         (thread_db_update_thread_list): Rename to ...
8239         (thread_db_update_thread_list_org): ... this.
8240         (thread_db_update_thread_list): New function.
8241         (thread_db_find_thread_from_tid): Delete.
8242         (thread_db_get_ada_task_ptid): Simplify.
8243         * nat/linux-procfs.c: Include <sys/stat.h>.
8244         (linux_proc_task_list_dir_exists): New function.
8245         * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
8246
8247 2015-02-20  Pedro Alves  <palves@redhat.com>
8248
8249         * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
8250         main LWP.  Handle the case of waitpid returning 0 if we're already
8251         attached to the LWP.  Don't set the LWP's last_resume_kind to
8252         resume_stop if we already knew about the LWP.
8253         (linux_nat_filter_event): Add debug logs.
8254
8255 2015-02-20  Pedro Alves  <palves@redhat.com>
8256
8257         * target.h (forward_target_decr_pc_after_break): Delete
8258         declaration.
8259
8260 2015-02-20  Pedro Alves  <palves@redhat.com>
8261
8262         PR threads/18006
8263         * linux-thread-db.c (thread_get_info_callback): Return early if
8264         the thread's lwp id is -1.
8265
8266 2015-02-20  Joel Brobecker  <brobecker@adacore.com>
8267
8268         GDB 7.9 released.
8269
8270 2015-02-19  Steve Ellcey  <sellcey@imgtec.com>
8271
8272         * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
8273         (dtrace_get_probes) Change type of variable 'dof'.
8274
8275 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
8276
8277         PR breakpoints/16812
8278         * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
8279         * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
8280         * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
8281
8282 2015-02-19  David Taylor  <dtaylor@emc.com>
8283
8284         * common/ax.def (setv): Fix consumed entry in setv DEFOP.
8285
8286 2015-02-18  Patrick Palka  <patrick@parcs.ath.cx>
8287
8288         * tui/tui-io.c (tui_handle_resize_during_io): Remove this
8289         function.
8290         (tui_putc): Don't call tui_handle_resize_during_io.
8291         (tui_getc): Likewise.
8292         (tui_mld_getc): Likewise.
8293         * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
8294         (tui_sigwinch_token): New static variable.
8295         (tui_initialize_win): Adjust documentation.  Set
8296         tui_sigwinch_token.
8297         (tui_async_resize_screen): New asynchronous callback.
8298         (tui_sigwinch_handler): Adjust documentation.  Asynchronously
8299         invoke tui_async_resize_screen.
8300
8301 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
8302
8303         * configure: Regenerated.
8304         * configure.ac: Use GDB_AC_TRANSFORM.
8305         * Makefile.in (aclocal_m4_deps): Added transform.m4.
8306         * acinclude.m4: sinclude transform.m4.
8307         * transform.m4: New file.
8308         (GDB_AC_TRANSFORM): New macro.
8309
8310 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8311
8312         * NEWS: Announce the support for DTrace SDT probes.
8313
8314 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8315
8316         * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
8317         (amd64_dtrace_parse_probe_argument): New function.
8318         (amd64_dtrace_probe_is_enabled): Likewise.
8319         (amd64_dtrace_enable_probe): Likewise.
8320         (amd64_dtrace_disable_probe): Likewise.
8321         (amd64_linux_init_abi): Register the
8322         `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
8323         `gdbarch_dtrace_disable_probe' and
8324         `gdbarch_dtrace_probe_is_enabled' hooks.
8325         (amd64_dtrace_disabled_probe_sequence_1): New constant.
8326         (amd64_dtrace_disabled_probe_sequence_2): Likewise.
8327         (amd64_dtrace_enable_probe_sequence): Likewise.
8328         (amd64_dtrace_disable_probe_sequence): Likewise.
8329
8330 2015-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8331
8332         * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
8333         the -probe-dtrace new vpossible value for PROBE_MODIFIER.
8334         * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
8335         handle ELF files.
8336         * Makefile.in (SFILES): dtrace-probe.c added.
8337         * configure: Regenerate.
8338         * dtrace-probe.c: New file.
8339         (SHT_SUNW_dof): New constant.
8340         (dtrace_probe_type): New enum.
8341         (dtrace_probe_arg): New struct.
8342         (dtrace_probe_arg_s): New typedef.
8343         (struct dtrace_probe_enabler): New struct.
8344         (dtrace_probe_enabler_s): New typedef.
8345         (dtrace_probe): New struct.
8346         (dtrace_probe_is_linespec): New function.
8347         (dtrace_dof_sect_type): New enum.
8348         (dtrace_dof_dofh_ident): Likewise.
8349         (dtrace_dof_encoding): Likewise.
8350         (DTRACE_DOF_ENCODE_LSB): Likewise.
8351         (DTRACE_DOF_ENCODE_MSB): Likewise.
8352         (dtrace_dof_hdr): New struct.
8353         (dtrace_dof_sect): Likewise.
8354         (dtrace_dof_provider): Likewise.
8355         (dtrace_dof_probe): Likewise.
8356         (DOF_UINT): New macro.
8357         (DTRACE_DOF_PTR): Likewise.
8358         (DTRACE_DOF_SECT): Likewise.
8359         (dtrace_process_dof_probe): New function.
8360         (dtrace_process_dof): Likewise.
8361         (dtrace_build_arg_exprs): Likewise.
8362         (dtrace_get_arg): Likewise.
8363         (dtrace_get_probes): Likewise.
8364         (dtrace_get_probe_argument_count): Likewise.
8365         (dtrace_can_evaluate_probe_arguments): Likewise.
8366         (dtrace_evaluate_probe_argument): Likewise.
8367         (dtrace_compile_to_ax): Likewise.
8368         (dtrace_probe_destroy): Likewise.
8369         (dtrace_gen_info_probes_table_header): Likewise.
8370         (dtrace_gen_info_probes_table_values): Likewise.
8371         (dtrace_probe_is_enabled): Likewise.
8372         (dtrace_probe_ops): New variable.
8373         (info_probes_dtrace_command): New function.
8374         (_initialize_dtrace_probe): Likewise.
8375         (dtrace_type_name): Likewise.
8376
8377 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8378
8379         * gdbarch.sh (dtrace_parse_probe_argument): New.
8380         (dtrace_probe_is_enabled): Likewise.
8381         (dtrace_enable_probe): Likewise.
8382         (dtrace_disable_probe): Likewise.
8383         * gdbarch.c: Regenerate.
8384         * gdbarch.h: Regenerate.
8385
8386 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8387
8388         * stap-probe.c (stap_probe_ops): Add NULLs in the static
8389         stap_probe_ops for `enable_probe' and `disable_probe'.
8390         * probe.c (enable_probes_command): New function.
8391         (disable_probes_command): Likewise.
8392         (_initialize_probe): Define the cli commands `enable probe' and
8393         `disable probe'.
8394         (parse_probe_linespec): New function.
8395         (info_probes_for_ops): Use parse_probe_linespec.
8396         * probe.h (probe_ops): New hooks `enable_probe' and
8397         `disable_probe'.
8398
8399 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8400
8401         * probe.c (compute_probe_arg): Moved from stap-probe.c
8402         (compile_probe_arg): Likewise.
8403         (probe_funcs): Likewise.
8404         * stap-probe.c (compute_probe_arg): Moved to probe.c.
8405         (compile_probe_arg): Likewise.
8406         (probe_funcs): Likewise.
8407
8408 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
8409
8410         * probe.c (print_ui_out_not_applicables): New function.
8411         (exists_probe_with_pops): Likewise.
8412         (info_probes_for_ops): Do not include column headers for probe
8413         types for which no probe has been actually found on any object.
8414         Also invoke `print_ui_out_not_applicables' in order to match the
8415         column rows with the header when probes of several types are
8416         listed.
8417         Print the "Type" column.
8418         * probe.h (probe_ops): Added a new probe operation `type_name'.
8419         * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
8420         (stap_type_name): New function.
8421
8422 2015-02-17  Patrick Palka  <patrick@parcs.ath.cx>
8423
8424         * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
8425         (key_is_command_char): Delete.
8426
8427 2015-02-17  Pedro Alves  <palves@redhat.com>
8428
8429         * tui/tui.c (tui_enable): Resize windows before anything
8430         might show a window.
8431
8432 2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>
8433
8434         PR gdb/17984
8435         * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
8436         (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
8437         call.
8438         * aarch64-tdep.h (tdesc_aarch64): Declare.
8439
8440 2015-02-12  Mark Wielaard  <mjw@redhat.com>
8441
8442         * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
8443
8444 2015-02-13  Doug Evans  <dje@google.com>
8445
8446         * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
8447         anonymous_namespace to is_in_anonymous for consistency with the rest
8448         of the file.
8449         (cp_lookup_bare_symbol): Fix typo in comment.
8450         (cp_search_static_and_baseclasses): Ditto.
8451         (search_symbol_list): Use vertical space in comment better.
8452         (reset_directive_searched): Ditto. Fix typo.
8453         (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
8454
8455 2015-02-13  Yao Qi  <yao.qi@arm.com>
8456
8457         * MAINTAINERS: Update my email address.
8458
8459 2015-02-12  Doug Evans  <dje@google.com>
8460
8461         * symtab.c (completion_list_add_name): Fix memory leak.
8462
8463 2015-02-12  Doug Evans  <dje@google.com>
8464
8465         * completer.c (complete_line): Remove incorrect comment.
8466
8467 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8468
8469         * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
8470         (py_print_frame): Use RETURN_MASK_ERROR.
8471
8472 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8473
8474         * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
8475         function comment.  Wrap all function that can throw in cleanups.
8476         (gdbpy_apply_frame_filter): Wrap all function that can throw in
8477         cleanups.
8478
8479 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8480
8481         * python/py-framefilter.c (py_print_frame): Substitute goto error.
8482         Remove the error label.
8483
8484 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8485
8486         * python/py-framefilter.c (py_print_frame): Put conditional code paths
8487         with goto first, indent the former else codepath left.  Put variable
8488         'elided' to a new inner block.
8489
8490 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8491
8492         * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
8493
8494 2015-02-11  Pedro Alves  <palves@redhat.com>
8495
8496         * xcoffread.c (within_function): Delete.
8497
8498 2015-02-11  Tom Tromey  <tromey@redhat.com>
8499             Pedro Alves <palves@redhat.com>
8500
8501         * breakpoint.c (base_breakpoint_ops): Delete.
8502         * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
8503         * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
8504         * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
8505         * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
8506         * python/py-arch.c (arch_object_type): Make extern.
8507         * python/py-block.c (block_syms_iterator_object_type): Make extern.
8508         * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
8509         * python/py-cmd.c (cmdpy_object_type): Make extern.
8510         * python/py-continueevent.c (continue_event_object_type)
8511         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
8512         parameter.  Update all callers.
8513         * python/py-evtregistry.c (eventregistry_object_type): Make extern.
8514         * python/py-exitedevent.c (exited_event_object_type): Make extern.
8515         * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
8516         * python/py-function.c (fnpy_object_type): Make extern.
8517         * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
8518         * python/py-infevents.c (call_pre_event_object_type)
8519         (inferior_call_post_event_object_type).
8520         (memory_changed_event_object_type): Make extern.
8521         * python/py-infthread.c (thread_object_type): Make extern.
8522         * python/py-lazy-string.c (lazy_string_object_type): Make extern.
8523         * python/py-linetable.c (linetable_entry_object_type)
8524         (linetable_object_type, ltpy_iterator_object_type): Make extern.
8525         * python/py-newobjfileevent.c (new_objfile_event_object_type)
8526         (clear_objfiles_event_object_type): Make extern.
8527         * python/py-objfile.c (objfile_object_type): Make extern.
8528         * python/py-param.c (parmpy_object_type): Make extern.
8529         * python/py-progspace.c (pspace_object_type): Make extern.
8530         * python/py-signalevent.c (signal_event_object_type): Make extern.
8531         * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
8532         * python/py-type.c (type_object_type, field_object_type)
8533         (type_iterator_object_type): Make extern.
8534         * python/python.c (python_extension_script_ops)
8535         (python_extension_ops): Make extern.
8536         * stap-probe.c (stap_probe_ops): Make extern.
8537
8538 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
8539
8540         * infrun.c (adjust_pc_after_break): Don't adjust the PC just
8541         because the event thread is not the current thread.
8542
8543 2015-02-11  Doug Evans  <xdje42@gmail.com>
8544
8545         * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
8546         been initialized yet, return NULL.
8547
8548 2015-02-11  Doug Evans  <dje@google.com>
8549
8550         * symfile.h (new_symfile_objfile): Delete.
8551         * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
8552         All callers updated.
8553
8554 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
8555
8556         * tui/tui-io.c (tui_handle_resize_during_io): Call
8557         tui_update_gdb_sizes() after resizing the screen.
8558         * tui/tui.c (tui_enable): Resize the terminal before
8559         calling tui_update_gdb_sizes().
8560
8561 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
8562
8563         * tui/tui-io.c (tui_getc): Move cursor to the end of the command
8564         line before printing a newline.
8565
8566 2015-02-11  Mark Wielaard  <mjw@redhat.com>
8567
8568         * utils.c (producer_is_gcc): Return true or false.
8569
8570 2015-02-10  Mark Wielaard  <mjw@redhat.com>
8571
8572         * utils.h (producer_is_gcc): Change return type to bool. Add major
8573         argument.
8574         * utils.c (producer_is_gcc): Likewise.
8575         (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
8576         * dwarf2read.c (check_producer): Likewise.
8577
8578 2015-02-10  Pedro Alves  <palves@redhat.com>
8579
8580         * infrun.c (displaced_step_fixup): Switch to the event thread
8581         before calling gdbarch_displaced_step_fixup.
8582
8583 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
8584
8585         * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
8586
8587 2015-02-10  Simon Marchi  <simon.marchi@ericsson.com>
8588
8589         * ada-varobj.c (ada_name_of_child): Constify parent.
8590         (ada_path_expr_of_child): Same.
8591         (ada_value_of_child): Same.
8592         (ada_type_of_child): Same.
8593         * c-varobj.c (c_is_path_expr_parent): Same.
8594         (c_describe_child): Same.
8595         (c_name_of_child): Same.
8596         (c_value_of_child): Same.
8597         (c_type_of_child): Same.
8598         (cplus_number_of_children): Same.
8599         (cplus_describe_child): Constify var.
8600         (cplus_name_of_child): Constify parent.
8601         (cplus_value_of_child): Same.
8602         (cplus_type_of_child): Same.
8603         * jv-varobj.c (java_name_of_child): Same.
8604         (java_value_of_child): Same.
8605         (java_type_of_child): Same.
8606         * varobj.c (value_of_child): Same.
8607         (varobj_default_is_path_expr_parent): Constify var, parent and return
8608         value.
8609         (varobj_get_path_expr): Constify var, modify path_expr through
8610         mutable_var.
8611         (install_new_value): Constify parent.
8612         (value_of_child): Constify parent.
8613         * varobj.h (struct varobj): Constify parent.
8614         (struct lang_varobj_ops): Constify name_of_child, value_of_child and
8615         type_of_child.
8616         (varobj_get_path_expr): Constify var.
8617         (varobj_get_path_expr_parent): Constify var and return value.
8618
8619 2015-02-10  Luis Machado  <lgustavo@codesourcery.com>
8620
8621         * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
8622         (arm_prologue_this_id): Move PC and SP limit checks to
8623         arm_prologue_unwind_stop_reason.
8624         (arm_prologue_unwind) <stop_reason> : Set to
8625         arm_prologue_unwind_stop_reason.
8626
8627 2015-02-09  Mark Wielaard  <mjw@redhat.com>
8628
8629         * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
8630         DW_LANG_Fortran08 as language_fortran.
8631
8632 2015-02-09  Sergio Durigan Junior  <sergiodj@redhat.com>
8633
8634         PR remote/17946
8635         * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
8636         of pointer against char.
8637
8638 2015-02-09  Mark Wielaard  <mjw@redhat.com>
8639
8640         * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
8641         (c_type_print_modifier): Likewise.
8642         * dwarf2read.c (read_tag_atomic_type): New function.
8643         (read_type_die_1): Handle DW_TAG_atomic_type.
8644         * gdbtypes.c (make_atomic_type): New function.
8645         (recursive_dump_type): Handle TYPE_ATOMIC.
8646         * gdbtypes.h (enum type_flag_values): Renumber.
8647         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
8648         (TYPE_ATOMIC): New macro.
8649         (make_atomic_type): Declare.
8650
8651 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8652
8653         * btrace.c (ftrace_find_call): Skip gaps.
8654         (ftrace_new_function): Initialize level.
8655         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
8656         (ftrace_new_switch): Update
8657         level computation.
8658         (ftrace_new_gap): New.
8659         (ftrace_update_function): Create new function after gap.
8660         (btrace_compute_ftrace_bts): Create gap on error.
8661         (btrace_stitch_bts): Update parameters.  Clear trace if it
8662         becomes empty.
8663         (btrace_stitch_trace): Update parameters.  Update callers.
8664         (btrace_clear): Reset the number of gaps.
8665         (btrace_insn_get): Return NULL if the iterator points to a gap.
8666         (btrace_insn_number): Return zero if the iterator points to a gap.
8667         (btrace_insn_end): Allow gaps at the end.
8668         (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
8669         (btrace_find_insn_by_number): Assert that the found iterator does
8670         not point to a gap.
8671         (btrace_call_next, btrace_call_prev): Assert that the last function
8672         is not a gap.
8673         * btrace.h (btrace_bts_error): New.
8674         (btrace_function): Update comment.
8675         (btrace_function) <insn, insn_offset, number>: Update comment.
8676         (btrace_function) <errcode>: New.
8677         (btrace_thread_info) <ngaps>: New.
8678         (btrace_thread_info) <replay>: Update comment.
8679         (btrace_insn_get): Update comment.
8680         * record-btrace.c (btrace_ui_out_decode_error): New.
8681         (record_btrace_info): Print number of gaps.
8682         (btrace_insn_history, btrace_call_history): Call
8683         btrace_ui_out_decode_error for gaps.
8684         (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
8685
8686 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8687
8688         * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
8689         * nat/linux-btrace.c: (btrace_this_cpu): New.
8690         (cpu_supports_bts): Call btrace_this_cpu.
8691         (intel_supports_bts): Add cpu parameter.
8692
8693 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8694
8695         * btrace.h (btrace_insn_class): New.
8696         (btrace_insn) <size, iclass>: New.
8697         * btrace.c (ftrace_find_call): Update parameters.  Update users.
8698         Use instruction classification.
8699         (ftrace_new_return): Update parameters.  Update users.
8700         (ftrace_update_function): Update parameters.  Update users.  Use
8701         instruction classification.
8702         (ftrace_update_insns): Update parameters.  Update users.
8703         (ftrace_classify_insn): New.
8704         (btrace_compute_ftrace_bts): Fill in new btrace_insn fields.  Add
8705         TRY_CATCH around call to gdb_insn_length.
8706
8707 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8708
8709         * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
8710         Update parameters.  Update users.
8711
8712 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8713
8714         * btrace.c (parse_xml_btrace_conf_bts): Add size.
8715         (btrace_conf_bts_attributes): New.
8716         (btrace_conf_children): Add attributes.
8717         * common/btrace-common.h (btrace_config_bts): New.
8718         (btrace_config)<bts>: New.
8719         (btrace_config): Update comment.
8720         * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
8721         Use config.
8722         * features/btrace-conf.dtd: Increment version.  Add size
8723         attribute to bts element.
8724         * record-btrace.c (set_record_btrace_bts_cmdlist,
8725         show_record_btrace_bts_cmdlist): New.
8726         (record_btrace_adjust_size, record_btrace_print_bts_conf,
8727         record_btrace_print_conf, cmd_set_record_btrace_bts,
8728         cmd_show_record_btrace_bts): New.
8729         (record_btrace_info): Call record_btrace_print_conf.
8730         (_initialize_record_btrace): Add commands.
8731         * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
8732         (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
8733         (btrace_sync_conf): Synchronize bts size.
8734         (_initialize_remote): Add Qbtrace-conf:bts:size packet.
8735         * NEWS: Announce new commands and new packets.
8736
8737 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8738
8739         * Makefile.in (XMLFILES): Add btrace-conf.dtd.
8740         * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
8741         (x86_linux_btrace_conf): New.
8742         (x86_linux_create_target): Initialize to_btrace_conf.
8743         * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
8744         Check format.  Split into this and ...
8745         (linux_enable_bts): ... this.
8746         (linux_btrace_conf): New.
8747         (perf_event_skip_record): Renamed into ...
8748         (perf_event_skip_bts_record): ... this.  Updated users.
8749         (linux_disable_btrace): Split into this and ...
8750         (linux_disable_bts): ... this.
8751         (linux_read_btrace): Check format.
8752         * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
8753         (linux_btrace_conf): New.
8754         (btrace_target_info)<ptid>: Moved.
8755         (btrace_target_info)<conf>: New.
8756         (btrace_target_info): Split into this and ...
8757         (btrace_tinfo_bts): ... this.  Updated users.
8758         * btrace.c (btrace_enable): Update parameters.
8759         (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
8760         (btrace_conf_children, btrace_conf_attributes)
8761         (btrace_conf_elements): New.
8762         * btrace.h (btrace_enable): Update parameters.
8763         (btrace_conf, parse_xml_btrace_conf): New.
8764         * common/btrace-common.h (btrace_config): New.
8765         * feature/btrace-conf.dtd: New.
8766         * record-btrace.c (record_btrace_conf): New.
8767         (record_btrace_cmdlist): New.
8768         (record_btrace_enable_warn, record_btrace_open): Pass
8769         &record_btrace_conf.
8770         (record_btrace_info): Print recording format.
8771         (cmd_record_btrace_bts_start): New.
8772         (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
8773         (_initialize_record_btrace): Add "record btrace bts" subcommand.
8774         Add "record bts" alias command.
8775         * remote.c (remote_state)<btrace_config>: New.
8776         (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
8777         (remote_protocol_features): Add qXfer:btrace-conf:read.
8778         (remote_open_1): Call remote_btrace_reset.
8779         (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
8780         (btrace_target_info)<conf>: New.
8781         (btrace_sync_conf, btrace_read_config): New.
8782         (remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
8783         btrace_read_conf.
8784         (remote_btrace_conf): New.
8785         (init_remote_ops): Initialize to_btrace_conf.
8786         (_initialize_remote): Add qXfer:btrace-conf packet.
8787         * target.c (target_enable_btrace): Update parameters.
8788         (target_btrace_conf): New.
8789         * target.h (target_enable_btrace): Update parameters.
8790         (target_btrace_conf): New.
8791         (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
8792         (target_ops)<to_enable_btrace>: Update parameters and comment.
8793         (target_ops)<to_btrace_conf>: New.
8794         * target-delegates: Regenerate.
8795         * target-debug.h (target_debug_print_const_struct_btrace_config_p)
8796         (target_debug_print_const_struct_btrace_target_info_p): New.
8797         * NEWS: Announce new command and new packet.
8798
8799 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8800
8801         * nat/linux-btrace.h (perf_event_buffer): New.
8802         (btrace_target_info) <buffer, size, data_head>: Replace with ...
8803         <bts>: ... this.
8804         * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
8805         (perf_event_buffer_size, perf_event_buffer_begin)
8806         (perf_event_buffer_end, linux_btrace_has_changed): Removed.
8807         Updated users.
8808         (perf_event_new_data): New.
8809
8810 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8811
8812         * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
8813         * record-btrace.c (record_btrace_open): Remove call to
8814         target_supports_btrace.
8815         * remote.c (remote_supports_btrace): Update parameters.
8816         * target.c (target_supports_btrace): Update parameters.
8817         * target.h (to_supports_btrace, target_supports_btrace): Update
8818         parameters.
8819         * target-delegates.c: Regenerate.
8820         * target-debug.h (target_debug_print_enum_btrace_format): New.
8821         * nat/linux-btrace.c
8822         (kernel_supports_btrace): Rename into ...
8823         (kernel_supports_bts): ... this.  Update users.  Update warning text.
8824         (intel_supports_btrace): Rename into ...
8825         (intel_supports_bts): ... this.  Update users.
8826         (cpu_supports_btrace): Rename into ...
8827         (cpu_supports_bts): ... this.  Update users.
8828         (linux_supports_btrace): Update parameters.  Split into this and ...
8829         (linux_supports_bts): ... this.
8830         * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
8831
8832 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
8833
8834         * Makefile.in (SFILES): Add common/btrace-common.c.
8835         (COMMON_OBS): Add common/btrace-common.o.
8836         (btrace-common.o): Add build rules.
8837         * btrace.c (parse_xml_btrace): Update parameters.
8838         (parse_xml_btrace_block): Set format field.
8839         (btrace_add_pc, btrace_fetch): Use struct btrace_data.
8840         (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
8841         (btrace_compute_ftrace): Split into this and...
8842         (btrace_compute_ftrace_bts): ...this.
8843         (btrace_stitch_trace): Split into this and...
8844         (btrace_stitch_bts): ...this.
8845         * btrace.h (parse_xml_btrace): Update parameters.
8846         (make_cleanup_btrace_data): New.
8847         * common/btrace-common.c: New.
8848         * common/btrace-common.h: Include common-defs.h.
8849         (btrace_block_s): Update comment.
8850         (btrace_format): New.
8851         (btrace_format_string): New.
8852         (btrace_data_bts): New.
8853         (btrace_data): New.
8854         (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
8855         * remote.c (remote_read_btrace): Update parameters.
8856         * target.c (target_read_btrace): Update parameters.
8857         * target.h (target_read_btrace): Update parameters.
8858         (target_ops)<to_read_btrace>: Update parameters.
8859         * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
8860         * target-delegates.c: Regenerate.
8861         * target-debug (target_debug_print_struct_btrace_data_p): New.
8862         * nat/linux-btrace.c (linux_read_btrace): Split into this and...
8863         (linux_read_bts): ...this.
8864         * nat/linux-btrace.h (linux_read_btrace): Update parameters.
8865
8866 2015-02-06  Doug Evans  <dje@google.com>
8867
8868         * remote-m32r-sdi.c: Include symfile.h.
8869
8870 2015-02-06  Doug Evans  <dje@google.com>
8871
8872         * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
8873         * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
8874         to here.
8875
8876 2015-02-06  Pedro Alves  <palves@redhat.com>
8877
8878         * linux-thread-db.c (find_new_threads_callback): Add debug output.
8879
8880 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
8881
8882         PR gdb/15678
8883         * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
8884         (enable_count_command): Check args for NULL value.
8885
8886 2015-02-05  Doug Evans  <xdje42@gmail.com>
8887
8888         * guile/scm-frame.c: Fix spelling errors in a comment.
8889
8890 2015-02-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
8891
8892         * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
8893         * python/py-value.c (valpy_fetch_lazy): Use it.  Remove cast to the
8894         return type.
8895
8896 2015-02-04  Pedro Alves  <palves@redhat.com>
8897
8898         * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
8899         (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
8900         returns true.
8901         (resume_stopped_resumed_lwps): Don't check whether the thread is
8902         marked as executing.
8903         (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
8904
8905 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8906
8907         * regset.h (struct regset): Add flags field.
8908         (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
8909         * corelow.c (get_core_register_section): Add warning if the size
8910         exceeds the requested size and the regset does not have the
8911         REGSET_VARIABLE_SIZE flag set.
8912         * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
8913         flag.
8914         * armbsd-tdep.c (armbsd_gregset): Likewise.
8915         * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
8916         * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
8917         * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
8918         * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
8919
8920 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8921
8922         * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
8923         For ".reg-xstate", explicitly specify the requested section size
8924         via X86_XSTATE_SIZE instead of just 0 on input and
8925         X86_XSTATE_MAX_SIZE on output.
8926         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
8927         Likewise.
8928
8929 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8930
8931         PR corefiles/17808:
8932         * gdbarch.sh (iterate_over_regset_sections_cb): Document this
8933         function type, particularly its SIZE parameter.
8934         * gdbarch.h: Regenerate.
8935         * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
8936         actual against required size using ">=" instead of "==".
8937         (amd64_collect_fpregset): Likewise.
8938         * i386-tdep.c (i386_supply_gregset): Likewise.
8939         (i386_collect_gregset): Likewise.
8940         (i386_supply_fpregset): Likewise.
8941         (i386_collect_fpregset): Likewise.
8942         * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
8943         (mips_fill_gregset_wrapper): Likewise.
8944         (mips_supply_fpregset_wrapper): Likewise.
8945         (mips_fill_fpregset_wrapper): Likewise.
8946         (mips64_supply_gregset_wrapper): Likewise.
8947         (mips64_fill_gregset_wrapper): Likewise.
8948         (mips64_supply_fpregset_wrapper): Likewise.
8949         (mips64_fill_fpregset_wrapper): Likewise.
8950         * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
8951         (am33_supply_fpregset_method): Likewise.
8952         (am33_collect_gregset_method): Likewise.
8953         (am33_collect_fpregset_method): Likewise.
8954
8955 2015-02-04  Doug Evans  <dje@google.com>
8956             Pedro Alves  <palves@redhat.com>
8957             Eli Zaretskii  <eliz@gnu.org>
8958
8959         PR tui/17810
8960         * tui/tui-command.c (tui_refresh_cmd_win): New function.
8961         * tui/tui-command.c (tui_refresh_cmd_win): Declare.
8962         * tui/tui-file.c: #include tui/tui-command.h.
8963         (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
8964         (tui_file_flush): Refresh command window if stream is gdb_stdout.
8965         * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
8966
8967 2015-02-04  Pedro Alves  <palves@redhat.com>
8968
8969         Fix build breakage.
8970         * event-loop.c (gdb_do_one_event): Add default switch case.
8971
8972 2015-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8973
8974         Filter out inferior gcc option -fpreprocessed.
8975         * compile/compile.c (filter_args): New function.
8976         (get_args): Use it.
8977
8978 2015-02-03  Pedro Alves  <palves@redhat.com>
8979
8980         * event-loop.c: Don't declare nor define a queue type for
8981         gdb_event_p.
8982         (event_queue): Delete.
8983         (create_event, create_file_event, gdb_event_xfree)
8984         (initialize_event_loop, process_event): Delete.
8985         (gdb_do_one_event): Return as soon as one event is handled.
8986         (handle_file_event): Change prototype.  Used the passed in
8987         file_handler pointer and ready_mask instead of looping over all
8988         file handlers.
8989         (gdb_wait_for_event): Update the poll/select timeouts before
8990         blocking.  Run event handlers directly instead of queueing events.
8991         Return as soon as one event is handled.
8992         (struct async_event_handler_data): Delete.
8993         (invoke_async_event_handler): Delete.
8994         (check_async_event_handlers): Change return type to int.  Run
8995         event handlers directly instead of queueing events.  Return as
8996         soon as one event is handled.
8997         (handle_timer_event): Delete.
8998         (update_wait_timeout): New function, factored out from
8999         poll_timers.
9000         (poll_timers): Reimplement.
9001         * event-loop.h (initialize_event_loop): Delete declaration.
9002         * top.c (gdb_init): Don't call initialize_event_loop.
9003
9004 2015-02-03  Pedro Alves  <palves@redhat.com>
9005
9006         * event-loop.c (clear_async_event_handler): New function.
9007         * event-loop.h (clear_async_event_handler): New declaration.
9008         * record-btrace.c (record_btrace_async): New function.
9009         (init_record_btrace_ops): Install record_btrace_async.
9010         * record-full.c (record_full_async): New function.
9011         (record_full_resume): Don't mark the async event source here.
9012         (init_record_full_ops): Install record_full_async.
9013         (record_full_core_resume): Don't mark the async event source here.
9014         (init_record_full_core_ops): Install record_full_async.
9015         * remote.c (remote_async): Mark and clear the async stop reply
9016         queue event-loop token as appropriate.
9017
9018 2015-02-03  Pedro Alves  <palves@redhat.com>
9019
9020         * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
9021         target_is_async_p instead of target_can_async.
9022         (linux_nat_wait): Use target_is_async_p instead of
9023         target_can_async.  Don't enable async here.
9024         * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
9025         target_is_async_p instead of target_can_async.
9026
9027 2015-02-02  Simon Marchi  <simon.marchi@ericsson.com>
9028
9029         * varobj.h (lang_varobj_ops): Mention which return values need
9030         to be freed.
9031
9032 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9033
9034         * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
9035
9036 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9037
9038         PR gdb/17856:
9039         * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
9040         results found in the cache.
9041
9042 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
9043
9044         PR gdb/17854:
9045         * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
9046         when allocating a new one.
9047
9048 2015-02-01  Tom Tromey  <tom@tromey.com>
9049
9050         * MAINTAINERS: Remove myself.
9051
9052 2015-01-31  Doug Evans  <xdje42@gmail.com>
9053
9054         * dwarf2read.c (process_structure_scope): Update setting of
9055         TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
9056         * gdbtypes.c (internal_type_vptr_fieldno): New function.
9057         (set_type_vptr_fieldno): New function.
9058         (internal_type_vptr_basetype): New function.
9059         (set_type_vptr_basetype): New function.
9060         (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
9061         TYPE_VPTR_BASETYPE.
9062         (allocate_cplus_struct_type): Initialize vptr_fieldno.
9063         (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
9064         (print_cplus_stuff): ... moved here.
9065         (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
9066         * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
9067         moved to ...
9068         (struct cplus_struct_type): ... here.  All uses updated.
9069         (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
9070         (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
9071         (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
9072         * stabsread.c (read_tilde_fields): Update setting of
9073         TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
9074
9075 2015-01-31  Doug Evans  <xdje42@gmail.com>
9076
9077         * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
9078         to self_p.
9079         (cp_print_class_member): Rename local domain to self_type.
9080         * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
9081         domain_type to self_type.
9082         (set_die_type) <need_gnat_info>: Handle
9083         TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
9084         * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
9085         TYPE_SPECIFIC_SELF_TYPE.
9086         * gdbtypes.c (internal_type_self_type): New function.
9087         (set_type_self_type): New function.
9088         (smash_to_memberptr_type): Rename parameter domain to self_type.
9089         Update setting of TYPE_SELF_TYPE.
9090         (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
9091         (smash_to_method_type): Rename parameter domain to self_type.
9092         Update setting of TYPE_SELF_TYPE.
9093         (check_stub_method): Call smash_to_method_type.
9094         (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
9095         (copy_type_recursive): Ditto.
9096         * gdbtypes.h (enum type_specific_kind): New value
9097         TYPE_SPECIFIC_SELF_TYPE.
9098         (struct main_type) <type_specific>: New member self_type.
9099         (struct cplus_struct_type) <fn_field.type>: Update comment.
9100         (TYPE_SELF_TYPE): Rewrite.
9101         (internal_type_self_type, set_type_self_type): Declare.
9102         * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
9103         self_type.
9104         (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
9105         * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
9106         TYPE_TARGET_TYPE.
9107         * stabsread.c (read_member_functions): Mark methods with
9108         TYPE_CODE_METHOD, not TYPE_CODE_FUNC.  Update setting of
9109         TYPE_SELF_TYPE.
9110
9111 2015-01-31  Doug Evans  <xdje42@gmail.com>
9112
9113         * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
9114         All uses updated.
9115
9116 2015-01-31  Doug Evans  <xdje42@gmail.com>
9117
9118         * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
9119         or unions.  Return zero if union.
9120         (gnuv3_get_vtable): Call check_typedef.  Assert only passed structs.
9121         (gnuv3_rtti_type): Pass already-check_typedef'd value to
9122         gnuv3_get_vtable.
9123         (compute_vtable_size): Assert only passed structs.
9124         (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
9125
9126 2015-01-31  Doug Evans  <xdje42@gmail.com>
9127
9128         * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
9129         kinds.
9130
9131 2015-01-31  Gary Benson <gbenson@redhat.com>
9132             Doug Evans  <dje@google.com>
9133
9134         PR cli/9007
9135         PR cli/11920
9136         PR cli/15548
9137         * cli/cli-cmds.c (complete_command): Notify user if max-completions
9138         reached.
9139         * common/common-exceptions.h (enum errors)
9140         <MAX_COMPLETIONS_REACHED_ERROR>: New value.
9141         * completer.h (get_max_completions_reached_message): New declaration.
9142         (max_completions): Likewise.
9143         (completion_tracker_t): New typedef.
9144         (new_completion_tracker): New declaration.
9145         (make_cleanup_free_completion_tracker): Likewise.
9146         (maybe_add_completion_enum): New enum.
9147         (maybe_add_completion): New declaration.
9148         (throw_max_completions_reached_error): Likewise.
9149         * completer.c (max_completions): New global variable.
9150         (new_completion_tracker): New function.
9151         (free_completion_tracker): Likewise.
9152         (make_cleanup_free_completion_tracker): Likewise.
9153         (maybe_add_completions): Likewise.
9154         (throw_max_completions_reached_error): Likewise.
9155         (complete_line): Remove duplicates and limit result to max_completions
9156         entries.
9157         (get_max_completions_reached_message): New function.
9158         (gdb_display_match_list): Handle max_completions.
9159         (_initialize_completer): New declaration and function.
9160         * symtab.c: Include completer.h.
9161         (completion_tracker): New static variable.
9162         (completion_list_add_name): Call maybe_add_completion.
9163         (default_make_symbol_completion_list_break_on_1): Renamed from
9164         default_make_symbol_completion_list_break_on.  Maintain
9165         completion_tracker across calls to completion_list_add_name.
9166         (default_make_symbol_completion_list_break_on): New function.
9167         * top.c (init_main): Set rl_completion_display_matches_hook.
9168         * tui/tui-io.c: Include completer.h.
9169         (tui_old_rl_display_matches_hook): New static global.
9170         (tui_rl_display_match_list): Notify user if max-completions reached.
9171         (tui_setup_io): Save/restore rl_completion_display_matches_hook.
9172         * NEWS (New Options): Mention set/show max-completions.
9173
9174 2015-01-31  Gary Benson  <gbenson@redhat.com>
9175
9176         * symtab.c (struct add_name_data) <code>: New field.
9177         Updated comments.
9178         (add_symtab_completions): New function.
9179         (symtab_expansion_callback): Likewise.
9180         (default_make_symbol_completion_list_break_on): Set datum.code.
9181         Move minimal symbol scan before calling expand_symtabs_matching.
9182         Scan known primary symtabs for externs and statics before calling
9183         expand_symtabs_matching.  Pass symtab_expansion_callback as
9184         expansion_notify argument to expand_symtabs_matching.  Do not scan
9185         primary symtabs for externs and statics after calling
9186         expand_symtabs_matching.
9187
9188 2015-01-31  Gary Benson  <gbenson@redhat.com>
9189
9190         * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
9191         (struct quick_symbol_functions) <expand_symtabs_matching>:
9192         New argument expansion_notify.  All uses updated.
9193         (expand_symtabs_matching): New argument expansion_notify.
9194         All uses updated.
9195         * symfile-debug.c (debug_qf_expand_symtabs_matching):
9196         Also print expansion notify.
9197         * symtab.c (expand_symtabs_matching_via_partial): Call
9198         expansion_notify whenever a partial symbol table is expanded.
9199         * dwarf2read.c (dw2_expand_symtabs_matching): Call
9200         expansion_notify whenever a symbol table is instantiated.
9201
9202 2015-01-31  Doug Evans  <xdje42@gmail.com>
9203
9204         * cli-out.c: #include completer.h, readline/readline.h.
9205         (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
9206         (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
9207         (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
9208         * cli-out.h (cli_display_match_list): Declare.
9209         * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
9210         (ELLIPSIS_LEN): Ditto.
9211         (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
9212         (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
9213         (gdb_fnprint, gdb_print_filename): Ditto.
9214         (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
9215         (gdb_display_match_list): Ditto.
9216         * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
9217         (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
9218         (mld_beep_ftype, mld_read_key_ftype): Ditto.
9219         (match_list_displayer): New struct.
9220         (gdb_display_match_list): Declare.
9221         * top.c (init_main): Set rl_completion_display_matches_hook.
9222         * tui/tui-io.c: #include completer.h.
9223         (printable_part, PUTX, print_filename, get_y_or_n): Delete.
9224         (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
9225         (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
9226         (tui_mld_getc, tui_mld_read_key): Ditto.
9227         (tui_rl_display_match_list): Rewrite.
9228         (tui_handle_resize_during_io): New arg for_completion.  All callers
9229         updated.
9230
9231 2015-01-31  Doug Evans  <xdje42@gmail.com>
9232
9233         Add symbol lookup cache.
9234         * NEWS: Document new options and commands.
9235         * symtab.c (symbol_cache_key): New static global.
9236         (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
9237         (SYMBOL_LOOKUP_FAILED): New macro.
9238         (symbol_cache_slot_state): New enum.
9239         (block_symbol_cache): New struct.
9240         (symbol_cache): New struct.
9241         (new_symbol_cache_size, symbol_cache_size): New static globals.
9242         (hash_symbol_entry, eq_symbol_entry): New functions.
9243         (symbol_cache_byte_size, resize_symbol_cache): New functions.
9244         (make_symbol_cache, free_symbol_cache): New functions.
9245         (get_symbol_cache, symbol_cache_cleanup): New function.
9246         (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
9247         (symbol_cache_lookup, symbol_cache_clear_slot): New function.
9248         (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
9249         (symbol_cache_flush, symbol_cache_dump): New functions.
9250         (maintenance_print_symbol_cache): New function.
9251         (maintenance_flush_symbol_cache): New function.
9252         (symbol_cache_stats): New function.
9253         (maintenance_print_symbol_cache_statistics): New function.
9254         (symtab_new_objfile_observer): New function.
9255         (symtab_free_objfile_observer): New function.
9256         (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
9257         (_initialize_symtab): Init symbol_cache_key.  New parameter
9258         maint symbol-cache-size.  New maint commands print symbol-cache,
9259         print symbol-cache-statistics, flush-symbol-cache.
9260         Install new_objfile, free_objfile observers.
9261
9262 2015-01-31  Joel Brobecker  <brobecker@adacore.com>
9263
9264         PR symtab/17855
9265         * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
9266         to end.
9267
9268 2015-01-31  Doug Evans  <xdje42@gmail.com>
9269
9270         * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
9271         * auto-load.c: #include ctype.h.
9272         (struct auto_load_pspace_info): Replace member loaded_scripts with
9273         new members loaded_script_files, loaded_script_texts.
9274         (auto_load_pspace_data_cleanup): Update.
9275         (init_loaded_scripts_info): Update.
9276         (get_auto_load_pspace_data_for_loading): Update.
9277         (maybe_add_script_file): Renamed from maybe_add_script.  All callers
9278         updated.
9279         (maybe_add_script_text): New function.
9280         (clear_section_scripts): Update.
9281         (source_script_file, execute_script_contents): New functions.
9282         (source_section_scripts): Add support for
9283         SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
9284         (print_scripts): New function.
9285         (auto_load_info_scripts): Also print inlined scripts.
9286         (maybe_print_unsupported_script_warning): Renamed from
9287         unsupported_script_warning_print.  All callers updated.
9288         (maybe_print_script_not_found_warning): Renamed from
9289         script_not_found_warning_print.  All callers updated.
9290         * extension-priv.h (struct extension_language_script_ops): New member
9291         objfile_script_executor.
9292         * extension.c (ext_lang_objfile_script_executor): New function.
9293         * extension.h (objfile_script_executor_func): New typedef.
9294         (ext_lang_objfile_script_executor): Declare.
9295         * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
9296         * guile/guile.c (guile_extension_script_ops): Update.
9297         * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
9298         * python/python.c (python_extension_script_ops): Update.
9299         (gdbpy_execute_objfile_script): New function.
9300
9301 2015-01-31  Eli Zaretskii  <eliz@gnu.org>
9302
9303         * tui/tui-io.c (tui_expand_tabs): New function.
9304         (tui_puts, tui_redisplay_readline): Expand TABs into the
9305         appropriate number of spaces.
9306         * tui/tui-regs.c: Include tui-io.h.
9307         (tui_register_format): Call tui_expand_tabs to expand TABs into
9308         the appropriate number of spaces.
9309         * tui/tui-io.h: Add prototype for tui_expand_tabs.
9310
9311 2015-01-30  Doug Evans  <dje@google.com>
9312
9313         * NEWS: "info source" command now display producer string if present.
9314         * source.c (source_info): Print producer string if present.
9315
9316 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9317
9318         * varobj.c (varobj_delete): Fix comment.
9319
9320 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9321
9322         * varobj.c (create_child): Modify comment.
9323
9324 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9325
9326         * ada-varobj.c (ada_number_of_children): Constify struct varobj *
9327         parameter.
9328         (ada_name_of_variable): Same.
9329         (ada_path_expr_of_child): Same.
9330         (ada_value_of_variable): Same.
9331         (ada_value_is_changeable_p): Same.
9332         (ada_value_has_mutated): Same.
9333         * c-varobj.c (varobj_is_anonymous_child): Same.
9334         (c_is_path_expr_parent): Same.
9335         (c_number_of_children): Same.
9336         (c_name_of_variable): Same.
9337         (c_path_expr_of_child): Same.
9338         (get_type): Same.
9339         (c_value_of_variable): Same.
9340         (cplus_number_of_children): Same.
9341         (cplus_name_of_variable): Same.
9342         (cplus_path_expr_of_child): Same.
9343         (cplus_value_of_variable): Same.
9344         * jv-varobj.c (java_number_of_children): Same.
9345         (java_name_of_variable): Same.
9346         (java_path_expr_of_child): Same.
9347         (java_value_of_variable): Same.
9348         * varobj.c (number_of_children): Same.
9349         (name_of_variable): Same.
9350         (is_root_p): Same.
9351         (varobj_ensure_python_env): Same.
9352         (varobj_get_objname): Same.
9353         (varobj_get_expression): Same.
9354         (varobj_get_display_format): Same.
9355         (varobj_get_display_hint): Same.
9356         (varobj_has_more): Same.
9357         (varobj_get_thread_id): Same.
9358         (varobj_get_frozen): Same.
9359         (dynamic_varobj_has_child_method): Same.
9360         (varobj_get_gdb_type): Same.
9361         (is_path_expr_parent): Same.
9362         (varobj_default_is_path_expr_parent): Same.
9363         (varobj_get_language): Same.
9364         (varobj_get_attributes): Same.
9365         (varobj_is_dynamic_p): Same.
9366         (varobj_get_child_range): Same.
9367         (varobj_value_has_mutated): Same.
9368         (varobj_get_value_type): Same.
9369         (number_of_children): Same.
9370         (name_of_variable): Same.
9371         (check_scope): Same.
9372         (varobj_editable_p): Same.
9373         (varobj_value_is_changeable_p): Same.
9374         (varobj_floating_p): Same.
9375         (varobj_default_value_is_changeable_p): Same.
9376
9377 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9378
9379         * varobj.c (varobj_get_path_expr): Set var->path_expr.
9380         * c-varobj.c (c_path_expr_of_child): Set local var instead of
9381         child->path_expr.
9382         (cplus_path_expr_of_child): Same.
9383
9384 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9385
9386         * mi-cmd-var.c (print_varobj): Free varobj_get_expression
9387         result.
9388         (mi_cmd_var_info_expression): Same.
9389         * varobj.c (varobj_get_expression): Mention in the comment that
9390         the result must by freed by the caller.
9391
9392 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
9393
9394         * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
9395         varobj_get_type.
9396         (varobj_update_one): Same.
9397         * varobj.c (update_type_if_necessary): Free curr_type_str and
9398         new_type_str.
9399         (varobj_get_type): Specify in comment that the result needs to be
9400         freed by the caller.
9401
9402 2015-01-29  Doug Evans  <dje@google.com>
9403
9404         PR symtab/17890
9405         * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
9406
9407 2015-01-25  Mark Wielaard  <mjw@redhat.com>
9408
9409         * dwarf2read.c (checkproducer): Call producer_is_gcc.
9410         * utils.c (producer_is_gcc_ge_4): Likewise.
9411         (producer_is_gcc): New function.
9412         * utils.h (producer_is_gcc): New declaration.
9413
9414 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9415
9416         * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
9417         kind.
9418         * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
9419         parameter by "addr_stack" parameter.
9420         (resolve_dynamic_range): Replace "addr" parameter by
9421         "stack_addr" parameter.  Update function documentation.
9422         Update code accordingly.
9423         (resolve_dynamic_array, resolve_dynamic_union)
9424         (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
9425         (resolve_dynamic_type): Update code, following the changes made
9426         to resolve_dynamic_type_internal's interface.
9427         * dwarf2loc.h (struct property_addr_info): New.
9428         (dwarf2_evaluate_property): Replace "address" parameter
9429         by "addr_stack" parameter.  Adjust function documentation.
9430         (struct dwarf2_offset_baton): New.
9431         (struct dwarf2_property_baton): Update documentation of
9432         field "referenced_type" to be more general. New field
9433         "offset_info" in union data field.
9434         * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
9435         parameter by "addr_stack" parameter.  Adjust code accordingly.
9436         Add support for PROP_ADDR_OFFSET properties.
9437         * dwarf2read.c (attr_to_dynamic_prop): Add support for
9438         DW_AT_data_member_location attributes as well.  Use case
9439         statements instead of if/else condition.
9440
9441 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9442
9443         * ada-varobj.c (ada_varobj_get_array_number_of_children):
9444         Return zero if PARENT_VALUE is NULL and parent_type's
9445         range type is dynamic.
9446
9447 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
9448
9449         * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
9450         nonzero if the type's subtype is dynamic.
9451         (resolve_dynamic_range): Also resolve the range's subtype.
9452
9453 2015-01-29  Alexander Klimov  <alserkli@inbox.ru>  (tiny patch)
9454
9455         Pushed by Joel Brobecker  <brobecker@adacore.com>.
9456         * symfile.c (unmap_overlay_command): Initialize sec to NULL.
9457
9458 2015-01-27  Doug Evans  <dje@google.com>
9459
9460         * NEWS: Mention gdb.Objfile.username.
9461         * python/py-objfile.c (objfpy_get_username): New function.
9462         (objfile_getset): Add "username".
9463
9464 2015-01-24  Mark Wielaard  <mjw@redhat.com>
9465
9466         * stack.c (return_command): Markup warning message with _.
9467
9468 2015-01-24  Doug Evans  <xdje42@gmail.com>
9469
9470         * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
9471
9472 2015-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
9473
9474         Fix 100x slowdown regression on DWZ files.
9475         * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
9476         (struct line_header): Add offset and offset_in_dwz.
9477         (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
9478         (free_line_header_voidp): New declaration.
9479         (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
9480         functions.
9481         (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
9482         (handle_DW_AT_stmt_list): Use line_header_hash.
9483         (free_line_header_voidp): New function.
9484         (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
9485         (dwarf_decode_lines): New parameter decode_mapping, use it.
9486         (dwarf2_free_objfile): Free line_header_hash.
9487
9488 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
9489
9490         PR gdb/17416
9491         * valops.c (value_rtti_indirect_type): Catch exception thrown by
9492         value_ind.
9493
9494 2015-01-15  Mark Wielaard  <mjw@redhat.com>
9495
9496         * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
9497         DW_AT_noreturn.
9498         * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
9499         calling_convention an 8 bit bit field.
9500         (TYPE_NO_RETURN): New macro.
9501         * infcmd.c (finish_command): Query if function does not return
9502         normally.
9503         * stack.c (return_command): Likewise.
9504
9505 2015-01-23  Pedro Alves  <palves@redhat.com>
9506
9507         * linux-nat.c (linux_is_async_p): New macro.
9508         (linux_nat_is_async_p):
9509         (linux_nat_terminal_inferior): Check whether the target can async
9510         instead of whether it is already async.
9511         (linux_nat_terminal_ours): Don't check whether the target is
9512         async.
9513         (linux_async_pipe): Use linux_is_async_p.
9514
9515 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9516
9517         * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
9518         '-ascending'.
9519         * thread.c (tp_array_compar_ascending, tp_array_compar): New.
9520         (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
9521         Sort tp_array using tp_array_compar.
9522         (_initialize_thread): Extend thread_apply_all_command help.
9523
9524 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9525
9526         * corelow.c (core_open): Call also thread_command.
9527         * gdbthread.h (thread_command): New prototype moved from ...
9528         * thread.c (thread_command): ... here.
9529         (thread_command): Make it global.
9530
9531 2015-01-22  Pedro Alves  <palves@redhat.com>
9532
9533         * configure.ac [*mingw32*]: Check $curses_found instead of
9534         $prefer_curses.
9535         * configure: Regenerate.
9536         * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
9537         HAVE_NCURSES_NCURSES_H checks.
9538
9539 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
9540
9541         * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
9542         fails with the 1st arg NULL, try again with "unknown".  Don't test
9543         the "cup" capability: it isn't supported by the Windows port of
9544         ncurses, but the Windows console driver is still capable of
9545         supporting TUI.
9546
9547 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9548
9549         * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
9550
9551 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
9552
9553         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
9554         (ALLDEPFILES): Remove irix5-nat.c.  These two are part of the
9555         reason that "make TAGS" is broken.
9556
9557 2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
9558
9559         * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
9560         and check additional store instructions.
9561
9562 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
9563
9564         * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
9565
9566 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
9567
9568         * ppc-linux-tdep.c (ppc_skip_trampoline_code,
9569         ppc_canonicalize_syscall, ppc_linux_syscall_record,
9570         ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
9571         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
9572         * rs6000-tdep.c (rs6000_epilogue_frame_cache,
9573         rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
9574         rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
9575         ppc_process_record_op19, ppc_process_record_op31,
9576         ppc_process_record_op59, ppc_process_record_op60,
9577         ppc_process_record_op63): Likewise.
9578
9579 2015-01-20  Joel Brobecker  <brobecker@adacore.com>
9580
9581         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
9582         (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
9583         strerror.
9584
9585 2015-01-20  Wei-cheng Wang  <cole945@gmail.com>
9586
9587         * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
9588         ppc_process_record_op31, ppc_process_record_op59,
9589         ppc_process_record_op60, ppc_process_record_op63,
9590         ppc_process_record): Fix -Wformat warning.
9591         * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
9592         Remove unused variables.
9593
9594 2015-01-20  Chen Gang  <gang.chen.5i5j@gmail.com>
9595
9596         * MAINTAINERS (Write After Approval): Add "Chen Gang".
9597
9598 2015-01-19  Eli Zaretskii  <eliz@gnu.org>
9599
9600         * configure.ac [*mingw32*]: Only add windows-termcap.o to
9601         CONFIG_OBS if not building with a curses library.
9602         * configure: Regenerate.
9603
9604         * windows-termcap.c: Include defs.h.  Make the whole body empty if
9605         either one of HAVE_CURSES_H or HAVE_NCURSES_H or
9606         HAVE_NCURSES_NCURSES_H is defined.
9607
9608 2015-01-19  Joel Brobecker  <brobecker@adacore.com>
9609
9610         * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
9611         from end of line to start of next line.
9612
9613 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9614
9615         * ppc-linux-tdep.c (ppc_skip_trampoline_code):
9616         Scan PLT stub backward for reverse debugging.
9617         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
9618
9619 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9620             Ulrich Weigand  <uweigand@de.ibm.com>
9621
9622         * configure.tgt (powerpc*-*-linux): Add linux-record.o to
9623         gdb_target_obs.
9624         (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
9625         record.
9626         (ppc_canonicalize_syscall, ppc_linux_syscall_record,
9627         ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
9628         (ppc_linux_init_abi): Set process_record, process_record_signal.
9629         * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
9630         ppc_linux_record_tdep to gdbarch_tdep.
9631         (ppc_process_record): New declaration.
9632         * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
9633         ppc_process_record_op19, ppc_process_record_op31,
9634         ppc_process_record_op59, ppc_process_record_op60,
9635         ppc_process_record_op63, ppc_process_record): New functions.
9636
9637 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
9638
9639         * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
9640         rs6000_in_function_epilogue_frame_p and add an argument
9641         for frame_info.
9642         (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
9643         rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
9644         New functions.
9645         (rs6000_epilogue_frame_unwind): New.
9646         (rs6000_gdbarch_init): Append epilogue unwinder.
9647
9648 2015-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
9649
9650         * nat/linux-personality.c: Replace "#ifndef
9651         HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
9652         !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
9653         systems.
9654
9655 2015-01-16  Eli Zaretskii  <eliz@gnu.org>
9656
9657         * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
9658         functions.
9659         (_initialize_tui_win) <border-kind, border-mode>:
9660         <active-border-mode>: Use tui_set_var_cmd as the "set" function.
9661         (tui_set_tab_width_command): Fix the commentary.
9662
9663         * tui/tui-win.h: Add prototype for tui_rehighlight_all.
9664
9665         * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
9666         Doc fix.
9667         (tui_set_tab_width_command): Delete and recreate the source and
9668         the disassembly windows, to show the effect of the changed tab
9669         size immediately.
9670
9671         * tui/tui-data.h (LINE_PREFIX): Make shorter
9672         (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
9673         "Thread NNNNN.XXXX" thread ID notation on Windows.
9674
9675 2015-01-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
9676
9677         Fix gcc-5 compilation.
9678         * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
9679
9680 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
9681
9682         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
9683         (linux-personality.o): New rule.
9684         * common/common-defs.h: Include <stdint.h>.
9685         * config/aarch64/linux.mh (NATDEPFILES): Include
9686         linux-personality.o.
9687         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
9688         * config/arm/linux.mh (NATDEPFILES): Likewise.
9689         * config/i386/linux64.mh (NATDEPFILES): Likewise.
9690         * config/i386/linux.mh (NATDEPFILES): Likewise.
9691         * config/ia64/linux.mh (NATDEPFILES): Likewise.
9692         * config/m32r/linux.mh (NATDEPFILES): Likewise.
9693         * config/m68k/linux.mh (NATDEPFILES): Likewise.
9694         * config/mips/linux.mh (NATDEPFILES): Likewise.
9695         * config/pa/linux.mh (NATDEPFILES): Likewise.
9696         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
9697         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
9698         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
9699         * config/s390/linux.mh (NATDEPFILES): Likewise.
9700         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
9701         * config/sparc/linux.mh (NATDEPFILES): Likewise.
9702         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
9703         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
9704         * defs.h: Remove #include <stdint.h> (moved to
9705         common/common-defs.h).
9706         * linux-nat.c: Include nat/linux-personality.h.  Remove #include
9707         <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
9708         nat/linux-personality.c).
9709         (linux_nat_create_inferior): Remove code to disable address space
9710         randomization (moved to nat/linux-personality.c).  Create cleanup
9711         to disable address space randomization.
9712         * nat/linux-personality.c: New file.
9713         * nat/linux-personality.h: Likewise.
9714
9715 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
9716
9717         * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
9718         common/posix-strerror.c.
9719         (posix-strerror.o): New rule.
9720         (mingw-strerror.o): Likewise.
9721         * common/common-utils.h (safe_strerror): Move prototype to here,
9722         from utils.h.
9723         * common/common.host: New file.
9724         * common/mingw-strerror.c: Likewise.
9725         * common/posix-strerror.c: Likewise.
9726         * configure: Regenerated.
9727         * configure.ac: Source common/common.host.  Add variable
9728         common_host_obs to gdb_host_obs.
9729         * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
9730         gdb/common/posix-strerror.c when warning about the use of
9731         strerror.
9732         * mingw-hdep.c (safe_strerror): Remove definition; move it to
9733         common/mingw-strerror.c.
9734         * posix-hdep.c (safe_strerror): Remove definition; move it to
9735         common/posix-hdep.c.
9736         * utils.h (safe_strerror): Remove prototype; move to
9737         common/common-utils.h.
9738
9739 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
9740
9741         GDB 7.8.2 released.
9742
9743 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
9744
9745         * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
9746         ___XA type if the array has already been fixed.
9747
9748 2015-01-14  Yao Qi  <yao@codesourcery.com>
9749
9750         * Makefile.in (ppc-linux.o): New rule.
9751         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
9752         * configure.ac: AC_CHECK_FUNCS(getauxval).
9753         * config.in: Re-generated.
9754         * configure: Re-generated.
9755         * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
9756         Declare.
9757         * nat/ppc-linux.c: New file.
9758         * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
9759         Call ppc64_64bit_inferior_p.
9760
9761 2015-01-14  Yao Qi  <yao@codesourcery.com>
9762
9763         * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
9764         nat/ppc-linux.h.
9765         (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
9766         (PPC_FEATURE_HAS_DFP): Likewise.
9767         (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
9768         (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
9769         (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
9770         Include "nat/ppc-linux.h".
9771         * nat/ppc-linux.h: New file.
9772         * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
9773
9774 2015-01-14  Pedro Alves  <palves@redhat.com>
9775
9776         PR gdb/17525
9777         * breakpoint.c: Include "interps.h".
9778         (bpstat_do_actions_1): Also check whether the interpreter is
9779         async.
9780
9781 2015-01-14  Pedro Alves  <palves@redhat.com>
9782
9783         PR cli/17828
9784         * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
9785         reinstall if the interpreter is sync.
9786
9787 2015-01-13  Doug Evans  <dje@google.com>
9788
9789         * objfiles.c (objfile_filename): New function.
9790         * objfiles.h (objfile_filename): Declare it.
9791         (objfile_name): Add function comment.
9792         * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
9793         bfd file name (which may be realpath'd), and the original name.
9794
9795 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9796
9797         * NEWS: Create a new section for the next release branch.
9798         Rename the section of the current branch, now that it has
9799         been cut.
9800
9801 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9802
9803         GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
9804         * version.in: Bump version to 7.9.50.DATE-cvs.
9805
9806 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9807
9808         * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
9809         Remove trailing new-line in argument of call to warning.
9810
9811 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9812
9813         * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
9814         new-line in argument of call to "warning".
9815
9816 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
9817
9818         * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
9819         in static block, then try searching for primitive types.
9820
9821 2015-01-12  Patrick Palka  <patrick@parcs.ath.cx>
9822
9823         * top.h (gdb_add_history): Declare.
9824         * top.c (command_count): New variable.
9825         (gdb_add_history): New function.
9826         (gdb_safe_append_history): New static function.
9827         (quit_force): Call it.
9828         (command_line_input): Use gdb_add_history instead of
9829         add_history.
9830         * event-top.c (command_line_handler): Likewise.
9831
9832 2015-01-12  James Clarke  <jrtc27@jrtc27.com>  (tiny patch)
9833
9834         PR gdb/17046
9835         * darwin-nat.c: Replace <machine/setjmp.h> #include by
9836         <setjmp.h> #include.
9837
9838 2015-01-11  Doug Evans  <xdje42@gmail.com>
9839
9840         * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
9841
9842 2015-01-11  Doug Evans  <xdje42@gmail.com>
9843
9844         PR gdb/15830
9845         * NEWS: The "maint demangle" command is renamed as "demangle".
9846         * demangle.c: #include cli/cli-utils.h, language.h.
9847         (demangle_command): New function.
9848         (_initialize_demangle): Add new command "demangle".
9849         * maint.c (maintenance_demangle): Stub out.
9850         (_initialize_maint_cmds): Update help text for "maint demangle",
9851         and mark as deprecated.
9852
9853 2015-01-11  Mark Kettenis  <kettenis@gnu.org>
9854
9855         * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
9856         inferior_thread is a function.
9857
9858 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
9859
9860         * Makefile.in (.y.c): Don't munge yacc's #line
9861         directives.
9862
9863 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
9864
9865         * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
9866         to prompt for input.
9867         * tui/tui-hooks.c (tui_query_hook): Remove.
9868         (tui_install_hooks): Don't set deprecated_query_hook.
9869         * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
9870         height calculation.  Always update the command window's cur_line.
9871
9872 2015-01-09  Pedro Alves  <palves@redhat.com>
9873
9874         * breakpoint.c (hardware_breakpoint_inserted_here_p): New
9875         function.
9876         * breakpoint.h (hardware_breakpoint_inserted_here_p): New
9877         declaration.
9878         * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
9879         (linux_resume_one_lwp): Store the thread's PC.  Adjust to clear
9880         stop_reason.
9881         (check_stopped_by_watchpoint): New function.
9882         (save_sigtrap): Reimplement.
9883         (linux_nat_stopped_by_watchpoint): Adjust.
9884         (linux_nat_lp_status_is_event): Delete.
9885         (stop_wait_callback): Only call save_sigtrap after storing the
9886         pending status.
9887         (status_callback): If the thread had been stopped for a breakpoint
9888         that has since been removed, discard the event and resume the LWP.
9889         (count_events_callback, select_event_lwp_callback): Use
9890         lwp_status_pending_p instead of linux_nat_lp_status_is_event.
9891         (cancel_breakpoint): Rename to ...
9892         (check_stopped_by_breakpoint): ... this.  Record whether the LWP
9893         stopped for a software breakpoint or hardware breakpoint.
9894         (select_event_lwp): Only give preference to the stepping LWP in
9895         all-stop mode.  Adjust comments.
9896         (stop_and_resume_callback): Remove references to new_pending_p.
9897         (linux_nat_filter_event): Likewise.  Leave exit events of the
9898         leader thread pending here.  Handle signal short circuiting here.
9899         Only call save_sigtrap after storing the pending waitstatus.
9900         (linux_nat_wait_1): Remove 'retry' label.  Remove references to
9901         new_pending.  Don't handle leaving events the caller is not
9902         interested in pending here, nor handle signal short-circuiting
9903         here.  Also give equal priority to all LWPs that have had events
9904         in non-stop mode.  If reporting a software breakpoint event,
9905         unadjust the LWP's PC.
9906         * linux-nat.h (enum lwp_stop_reason): New.
9907         (struct lwp_info) <stop_pc>: New field.
9908         (struct lwp_info) <stopped_by_watchpoint>: Delete field.
9909         (struct lwp_info) <stop_reason>: New field.
9910         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
9911
9912 2015-01-09  Pedro Alves  <palves@redhat.com>
9913
9914         * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
9915         Set the LWP's 'resumed' flag.
9916
9917 2015-01-09  Pedro Alves  <palves@redhat.com>
9918
9919         * linux-nat.c (linux_resume_one_lwp): New function.
9920         (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
9921         (linux_nat_resume): Use lwp_status_pending_p and
9922         linux_resume_one_lwp.
9923         (linux_handle_syscall_trap): Use linux_resume_one_lwp.
9924         (linux_handle_extended_wait): Use linux_resume_one_lwp.
9925         (status_callback, running_callback): Use lwp_status_pending_p.
9926         (lwp_status_pending_p): New function.
9927         (stop_and_resume_callback): Use lwp_status_pending_p.
9928         (linux_nat_filter_event): Use linux_resume_one_lwp.
9929         (linux_nat_wait_1): Always use status_callback to look for an LWP
9930         with a pending status.  Use linux_resume_one_lwp.
9931         (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
9932         linux_resume_one_lwp.
9933
9934 2015-01-09  Pedro Alves  <palves@redhat.com>
9935
9936         * breakpoint.c (bp_location_inserted_here_p): New function,
9937         factored out from ...
9938         (breakpoint_inserted_here_p): ... here.  Use
9939         ALL_BP_LOCATIONS_AT_ADDR.
9940         (software_breakpoint_inserted_here_p): Use
9941         bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
9942
9943 2014-01-09  Pedro Alves  <palves@redhat.com>
9944
9945         Skip enabling event reporting if the kernel supports
9946         PTRACE_EVENT_CLONE.
9947         * linux-thread-db.c: Include "nat/linux-ptrace.h".
9948         (thread_db_use_events): New function.
9949         (try_thread_db_load_1): Check thread_db_use_events before enabling
9950         event reporting.
9951         (update_thread_state): New function.
9952         (attach_thread): Use it.  Check thread_db_use_events before
9953         enabling event reporting.
9954         (thread_db_detach): Check thread_db_use_events before disabling
9955         event reporting.
9956         (find_new_threads_callback): Check thread_db_use_events before
9957         enabling event reporting.  Update the thread's state if not using
9958         libthread_db events.
9959
9960 2015-01-09  Pedro Alves  <palves@redhat.com>
9961
9962         * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
9963         about to wait for is > 0.
9964         * linux-thread-db.c (find_new_threads_callback): Ignore thread if
9965         the kernel thread ID is -1.
9966
9967 2015-01-09  Pedro Alves  <palves@redhat.com>
9968
9969         * linux-nat.c (attach_proc_task_lwp_callback): New function.
9970         (linux_nat_attach): Use linux_proc_attach_tgid_threads.
9971         (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
9972         ptrace option flags.
9973         * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
9974         field.
9975         * nat/linux-procfs.c: Include <dirent.h>.
9976         (linux_proc_get_int): New parameter "warn".  Handle it.
9977         (linux_proc_get_tgid): Adjust.
9978         (linux_proc_get_tracerpid): Rename to ...
9979         (linux_proc_get_tracerpid_nowarn): ... this.
9980         (linux_proc_pid_get_state): New function, factored out from
9981         (linux_proc_pid_has_state): ... this.  Add new parameter "warn"
9982         and handle it.
9983         (linux_proc_pid_is_gone): New function.
9984         (linux_proc_pid_is_stopped): Adjust.
9985         (linux_proc_pid_is_zombie_maybe_warn)
9986         (linux_proc_pid_is_zombie_nowarn): New functions.
9987         (linux_proc_pid_is_zombie): Use
9988         linux_proc_pid_is_zombie_maybe_warn.
9989         (linux_proc_attach_tgid_threads): New function.
9990         * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
9991         (linux_proc_get_tracerpid): Rename to ...
9992         (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
9993         (linux_proc_pid_is_gone): New declaration.
9994         (linux_proc_pid_is_zombie): Update comment.
9995         (linux_proc_pid_is_zombie_nowarn): New declaration.
9996         (linux_proc_attach_lwp_func): New typedef.
9997         (linux_proc_attach_tgid_threads): New declaration.
9998         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
9999         use nowarn functions.
10000         (linux_ptrace_attach_fail_reason_string): Move here from
10001         gdbserver/linux-low.c and rename.
10002         (ptrace_supports_feature): If the current ptrace options are not
10003         known yet, check them now, instead of asserting.
10004         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
10005         Declare.
10006
10007 2015-01-09  Pedro Alves  <palves@redhat.com>
10008
10009         * linux-thread-db.c (thread_db_find_new_threads_silently)
10010         (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
10011         (find_new_threads_once): Print debug output on gdb_stdlog.
10012
10013 2015-01-09  Chen Gang  <gang.chen.5i5j@gmail.com>
10014             Pedro Alves  <palves@redhat.com>
10015
10016         * compile/compile.c: Include "gdb_wait.h".
10017         (do_rmdir): Check return value, and free 'zap'.
10018
10019 2015-01-08  Pedro Alves  <palves@redhat.com>
10020             Yao Qi  <yao@codesourcery.com>
10021
10022         * dwarf2loc.c (indirect_pieced_value): Don't call
10023         gdb_sign_extend.  Call extract_signed_integer instead.
10024         * utils.c (gdb_sign_extend): Remove.
10025         * utils.h (gdb_sign_extend): Remove declaration.
10026
10027 2015-01-07  Pierre Muller  <muller@sourceware.org>
10028
10029         PR symtab/17811
10030         * stabsread.c (define_symbol): Set language for C++ special symbols.
10031
10032 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
10033
10034         * inflow.c (initial_gdb_ttystate): Tweak comment.
10035
10036 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
10037
10038         * inflow.c (set_initial_gdb_ttystate): Add empty line after
10039         comment documenting function.
10040
10041 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
10042
10043         * terminal.h (set_initial_gdb_ttystate): Declare.
10044         * inflow.c (initial_gdb_ttystate): New static variable.
10045         (set_initial_gdb_ttystate): New setter.
10046         (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
10047         instead of our current terminal state.
10048         * top.c (gdb_init): Call set_initial_gdb_ttystate.
10049
10050 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
10051
10052         * guile/scm-type.c (tyscm_array_1): Add comment.
10053         * python/py-type.c (typy_array_1): Add comment.
10054
10055 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
10056
10057         * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
10058         error if N2 is equal to N1 - 1.
10059
10060 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
10061
10062         * python/py-type.c (typy_array_1): Do not raise negative-length
10063         exception if N2 is equal to N1 - 1.
10064
10065 2015-01-03  Doug Evans  <xdje42@gmail.com>
10066
10067         * c-exp.y: Whitespace cleanup.
10068         (classify_inner_name): Remove extra ;.
10069
10070 2015-01-02  Maciej W. Rozycki  <macro@codesourcery.com>
10071
10072         * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
10073         offset signed.
10074
10075 2015-01-02  Doug Evans  <dje@google.com>
10076
10077         * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
10078
10079 2015-01-02  Doug Evans  <dje@google.com>
10080
10081         * symtab.h (struct symbol): Fix typo in comment.
10082
10083 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10084
10085         Update year range in copyright notice of all files.
10086
10087 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10088
10089         * top.c (print_gdb_version): Update copyright year to 2015.
10090
10091 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
10092
10093         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
10094
10095 For older changes see ChangeLog-2014.
10096 \f
10097 Local Variables:
10098 mode: change-log
10099 left-margin: 8
10100 fill-column: 74
10101 version-control: never
10102 coding: utf-8
10103 End: