Misc switch_back_to_stepped_thread cleanups
[external/binutils.git] / gdb / ChangeLog
1 2015-08-07  Pedro Alves  <palves@redhat.com>
2
3         * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
4         of inferior_ptid.  If the stepped thread vanished, return 0
5         instead of resuming here.  Use reset_ecs.  Print the prev_pc and
6         the current stop_pc in log message.  Clear trap_expected if the
7         thread advanced.  Don't pass currently_stepping to
8         do_target_resume.
9
10 2015-08-07  Pedro Alves  <palves@redhat.com>
11
12         * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
13         * infrun.c (struct execution_control_state): Move higher up in the
14         file.
15         (reset_ecs): New function.
16         (start_step_over): Now returns int.  Rewrite to use
17         keep_going_pass_signal instead of manually starting a displaced step.
18         (resume): Don't call set_running here.  If displaced stepping
19         can't start now, clear trap_expected.
20         (find_thread_needs_step_over): Delete function.
21         (proceed): Set up finish_thread_state_cleanup.  Call set_running.
22         If the current thread needs a step over, push it in the step-over
23         chain.  Don't set insert breakpoints nor call resume directly
24         here.  Instead rewrite to use start_step_over and
25         keep_going_pass_signal.
26         (finish_step_over): New function.
27         (handle_signal_stop): Call finish_step_over instead of
28         start_step_over.
29         (switch_back_to_stepped_thread): If the event thread needs another
30         step-over do that first.  Use start_step_over.
31         (keep_going_pass_signal): New function, factored out from ...
32         (keep_going): ... here.
33         (_initialize_infrun): Comment moved here.
34         * thread.c (set_running_thread): New function.
35         (set_running, finish_thread_state): Use set_running_thread.
36
37 2015-08-07  Pedro Alves  <palves@redhat.com>
38
39         * gdbthread.h (struct thread_info) <step_over_prev,
40         step_over_next>: New fields.
41         (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
42         (thread_step_over_chain_next, thread_is_in_step_over_chain): New
43         declarations.
44         * infrun.c (struct displaced_step_request): Delete.
45         (struct displaced_step_inferior_state) <step_request_queue>:
46         Delete field.
47         (displaced_step_prepare): Assert that trap_expected is set.  Use
48         thread_step_over_chain_enqueue.  Split starting a new displaced
49         step to ...
50         (start_step_over): ... this new function.
51         (resume): Assert the thread isn't waiting for a step over already.
52         (proceed): Assert the thread isn't waiting for a step over
53         already.
54         (infrun_thread_stop_requested): Adjust to remove threads from the
55         embedded step-over chain.
56         (handle_inferior_event) <fork/vfork>: Call start_step_over after
57         displaced_step_fixup.
58         (handle_signal_stop): Call start_step_over after
59         displaced_step_fixup.
60         * infrun.h (step_over_queue_head): New declaration.
61         * thread.c (step_over_chain_enqueue, step_over_chain_remove)
62         (thread_step_over_chain_next, thread_is_in_step_over_chain)
63         (thread_step_over_chain_enqueue)
64         (thread_step_over_chain_remove): New functions.
65         (delete_thread_1): Remove thread from the step-over chain.
66
67 2015-08-07  Pedro Alves  <palves@redhat.com>
68
69         * infrun.c (thread_still_needs_step_over): Rename to ...
70         (thread_still_needs_step_over_bp): ... this.
71         (enum step_over_what): New.
72         (thread_still_needs_step_over): Reimplement.
73
74 2015-08-07  Pedro Alves  <palves@redhat.com>
75
76         * remote.c (remote_wait_as): If not waiting for a stop reply,
77         return TARGET_WAITKIND_NO_RESUMED.  If TARGET_WNOHANG is
78         requested, don't block waiting forever.
79
80 2015-08-07  Pedro Alves  <pedro@codesourcery.com>
81
82         * infrun.c (adjust_pc_after_break): Now takes thread_info and
83         waitstatus pointers instead of an ecs.  Adjust.
84         (handle_inferior_event): Adjust caller.
85
86 2015-08-07  Pedro Alves  <palves@redhat.com>
87
88         * infrun.c (handle_inferior_event): If we get
89         TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
90         mode, mark all threads of the exiting process as not-executing.
91         (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
92         TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
93         exiting process, if inferior_ptid still points at a process.
94         * thread.c (struct current_thread_cleanup) <next>: New field.
95         (current_thread_cleanup_chain): New global.
96         (restore_current_thread_ptid_changed): New function.
97         (restore_current_thread_cleanup_dtor): Remove the cleanup from the
98         current_thread_cleanup_chain list.
99         (make_cleanup_restore_current_thread): Add the cleanup data to the
100         current_thread_cleanup_chain list.
101         (_initialize_thread): Install restore_current_thread_ptid_changed
102         as thread_ptid_changed observer.
103
104 2015-08-07  Joel Brobecker  <brobecker@adacore.com>
105
106         * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
107         data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
108         smaller than expected.
109
110 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
111
112         * stack.c (get_frame_language): Moved ...
113         * frame.c (get_frame_language): ... to here.
114         * language.h (get_frame_language): Declaration moved to frame.h.
115         * frame.h: Add language.h include, for language enum.
116         (get_frame_language): Declaration moved from language.h.
117         * language.c: Add frame.h include.
118         * top.c: Add frame.h include.
119         * symtab.h (struct obj_section): Declare.
120         (struct cmd_list_element): Declare.
121
122 2015-08-07  Andrew Burgess  <andrew.burgess@embecosm.com>
123
124         * language.c (show_language_command): Find selected frame before
125         asking for the language of that frame.
126         (set_language_command): Likewise.
127         * language.h (get_frame_language): Add frame parameter.
128         * stack.c (get_frame_language): Add frame parameter, assert
129         parameter is not NULL, update comment and reindent.
130         * top.c (check_frame_language_change): Pass the selected frame
131         into get_frame_language.
132
133 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
134
135         * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
136         (pt_btrace_insn_flags): New.
137         (ftrace_add_pt): Call pt_btrace_insn_flags.
138         * btrace.h (btrace_insn_flag): New.
139         (btrace_insn) <flags>: New.
140         * record-btrace.c (btrace_insn_history): Print insn prefix.
141         * NEWS: Announce it.
142
143 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
144
145         * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
146         * configure: Regenerate.
147
148 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
149
150         * Makefile.in (LIBICONV): Define.
151         (CLIBS): Add LIBICONV.
152         * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
153         * configure: Regenerate.
154
155 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
156             Pedro Alves  <palves@redhat.com>
157
158         * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
159         (arm_set_abi): Likewise.
160         * ax-general.c (ax_print): Likewise.
161         * c-exp.y (exp : string_exp): Likewise.
162         * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
163         (do_compile_dwarf_expr_to_c): Likewise.
164         * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
165         Likewise.
166         * dwarf2expr.c (execute_stack_op): Likewise.
167         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
168         (disassemble_dwarf_expression): Likewise.
169         * dwarf2read.c (dwarf2_add_member_fn): Likewise.
170         (read_array_order): Likewise.
171         (abbrev_table_read_table): Likewise.
172         (read_attribute_value): Likewise.
173         (skip_unknown_opcode): Likewise.
174         (dwarf_decode_macro_bytes): Likewise.
175         (dwarf_decode_macros): Likewise.
176         * eval.c (value_f90_subarray): Likewise.
177         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
178         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
179         * infrun.c (handle_command): Likewise.
180         * memory-map.c (memory_map_start_memory): Likewise.
181         * osabi.c (set_osabi): Likewise.
182         * parse.c (operator_length_standard): Likewise.
183         * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
184         single return point.
185         * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
186         * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
187         (gdbpy_lookup_global_symbol): Likewise.
188         * record-full.c (record_full_restore): Likewise.
189         * regcache.c (regcache_register_status): Likewise.
190         (regcache_raw_read): Likewise.
191         (regcache_cooked_read): Likewise.
192         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
193         * symtab.c (initialize_ordinary_address_classes): Likewise.
194         * target-debug.h (target_debug_print_signals): Likewise.
195         * utils.c (do_restore_current_language): Likewise.
196
197 2015-08-06  Clem Dickey  <clemd@acm.org>
198
199         PR python/17136
200         * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
201
202 2015-08-06  Simon Marchi  <simon.marchi@ericsson.com>
203
204         * complaints.c (enum complaint_series): Add newlines and remove
205         out of date comment.
206         (struct complaints) <series>: Change type to enum
207         complaint_series and remove out of date comment.
208         (symfile_complaint_hook): Use equivalent enum value
209         ISOLATED_MESSAGE instead of 0.
210
211 2015-08-06  Pedro Alves  <palves@redhat.com>
212
213         * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
214         returned > 0.
215
216 2015-08-06  Pierre Langlois  <pierre.langlois@arm.com>
217
218         * common/agent.c (symbol_list) <required>: Remove.
219
220 2015-08-06  Pedro Alves  <palves@redhat.com>
221
222         * target/waitstatus.h (enum target_stop_reason)
223         <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
224
225 2015-08-05  Pedro Alves  <palves@redhat.com>
226             Joel Brobecker  <brobecker@adacore.com>
227
228         * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
229         <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
230         case where BS->STOP is not set.
231
232 2015-08-05  Ulrich Weigand  <uweigand@de.ibm.com>
233
234         * nat/gdb_thread_db.h: Add copyright header.
235         Protect against multiple inclusion.
236
237 2015-08-05  Yao Qi  <yao.qi@linaro.org>
238
239         * aarch64-linux-nat.c (get_thread_id): Remove.
240         (debug_reg_change_callback): Call ptid_get_lwp instead of
241         get_thread_id.
242         (fetch_gregs_from_thread): Likewise.
243         (store_gregs_to_thread): Likewise.
244         (fetch_fpregs_from_thread): Likewise.
245         (store_fpregs_to_thread): Likewise.
246         (aarch64_linux_get_debug_reg_capacity): Likewise.
247         * arm-linux-nat.c (get_thread_id): Remove.
248         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
249         * xtensa-linux-nat.c (get_thread_id): Remove.
250         (GET_THREAD_ID): Update macro to use ptid_get_lwp.
251         * arm-linux-nat.c (get_thread_id): Remove.
252         (GET_THREAD_ID): Remove.
253         (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
254         (store_fpregs, fetch_regs, store_regs): Likewise.
255         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
256         (fetch_vfp_regs, store_vfp_regs): Likewise.
257         (arm_linux_read_description): Likewise.
258         (arm_linux_get_hwbp_cap): Likewise.
259         * xtensa-linux-nat.c (get_thread_id): Remove.
260         (GET_THREAD_ID): Remove.
261         (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
262         GET_THREAD_ID.
263
264 2015-08-04  Ciro Santilli  <ciro.santilli@gmail.com>  (obvious patch)
265
266         * python/py-linetable.c: Fix case of Linetable to LineTable
267         in docstrings and code comments.
268         * python/py-symtab.c: Same.
269
270 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
271
272         * infcmd.c (signal_command): Call do_cleanups for args_chain.
273
274 2015-08-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
275
276         PR gdb/18767
277         * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
278         use.
279
280 2015-08-04  Pedro Alves  <palves@redhat.com>
281
282         * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
283         (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
284         (td_ta_event_addr_ftype, td_ta_set_event_ftype)
285         (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
286         (td_thr_validate_ftype, td_thr_get_info_ftype)
287         (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
288         (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
289         New typedefs.
290         * linux-thread-db.c (struct thread_db_info): Use new typedefs.
291         (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
292         local macros and use them instead of verbose_dlsym and dlsym
293         calls.
294
295 2015-08-03  Sandra Loosemore  <sandra@codesourcery.com>
296
297         * nios2-tdep.h: Include opcode/nios2.h here.
298         (NIOS2_CDX_OPCODE_SIZE): New.
299         (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
300         * nios2-tdep.c: Don't include opcode/nios2.h here.
301         (nios2_fetch_insn): For R2, try reading 2-byte instruction if
302         4-byte read fails.
303         (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
304         (nios2_match_addi, nios2_match_orhi): Likewise.
305         (nios2_match_stw, nios2_match_ldw): Likewise.
306         (nios2_match_rdctl): Likewise.
307         (nios2_match_stwm, nios2_match_ldwm): New.
308         (nios2_match_branch): Add cases for R2 encodings.
309         (nios2_match_jmpi, nios2_match_calli): Likewise.
310         (nios2_match_jmpr, nios2_match_callr): Likewise.
311         (nios2_match_break, nios2_match_trap): Likewise.
312         (nios2_in_epilogue_p): Add R2 support.
313         (nios2_analyze_prologue): Update comments.  Recognize R2 CDX
314         prologues.
315         (nios2_breakpoint_from_pc): Handle R2 instructions.
316         (nios2_get_next_pc): Likewise.  Adjust call to
317         tdep->syscall_next_pc.
318         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
319         Renamed from nios2_linux_rt_sigreturn_tramp_frame.  Use
320         instruction field macros instead of literal hex values.
321         (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
322         (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
323         Use size field from OP instead of assuming all instructions
324         are the same size.
325         (nios2_linux_init_abi): Register appropriate unwinder for mach.
326
327 2015-08-03  Ulrich Weigand  <uweigand@de.ibm.com>
328
329         * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
330         variable warning with some compilers.
331
332 2015-08-03  Yao Qi  <yao.qi@linaro.org>
333
334         * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
335         in comment.  Replace "rw" with "type".
336         (arm_linux_remove_watchpoint): Change type of "rw" to
337         "enum target_hw_bp_type".
338
339 2015-08-02  Pierre-Marie de Rodat  <derodat@adacore.com>
340
341         * alpha-mdebug-tdep.c (find_proc_desc): Update call to
342         lookup_symbol.
343         * ft32-tdep.c (ft32_skip_prologue): Likewise.
344         * moxie-tdep.c (moxie_skip_prologue): Likewise.
345         * mt-tdep.c (mt_skip_prologue): Likewise.
346         * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
347
348 2015-08-01  Pierre-Marie de Rodat  <derodat@adacore.com>
349
350         * ada-exp.y (write_object_renaming): Replace struct
351         ada_symbol_info with struct block_symbol.  Update field
352         references accordingly.
353         (block_lookup, select_possible_type_sym): Likewise.
354         (find_primitive_type): Likewise.  Also update call to
355         ada_lookup_symbol to extract the symbol itself.
356         (write_var_or_type, write_name_assoc): Likewise.
357         * ada-lang.h (struct ada_symbol_info): Remove.
358         (ada_lookup_symbol_list): Replace struct ada_symbol_info with
359         struct block_symbol.
360         (ada_lookup_encoded_symbol, user_select_syms): Likewise.
361         (ada_lookup_symbol): Return struct block_symbol instead of a
362         mere symbol.
363         * ada-lang.c (defns_collected): Replace struct ada_symbol_info
364         with struct block_symbol.
365         (resolve_subexp, ada_resolve_function, sort_choices,
366         user_select_syms, is_nonfunction, add_defn_to_vec,
367         num_defns_collected, defns_collected,
368         symbols_are_identical_enums, remove_extra_symbols,
369         remove_irrelevant_renamings, add_lookup_symbol_list_worker,
370         ada_lookup_symbol_list, ada_iterate_over_symbols,
371         ada_lookup_encoded_symbol, get_var_value): Likewise.
372         (ada_lookup_symbol): Return a block_symbol instead of a mere
373         symbol.  Replace struct ada_symbol_info with struct
374         block_symbol.
375         (ada_lookup_symbol_nonlocal): Likewise.
376         (standard_lookup): Make block passing explicit through
377         lookup_symbol_in_language.
378         * ada-tasks.c (get_tcb_types_info): Update the calls to
379         lookup_symbol_in_language to extract the mere symbol out of the
380         returned value.
381         (ada_tasks_inferior_data_sniffer): Likewise.
382         * ax-gdb.c (gen_static_field): Likewise for the call to
383         lookup_symbol.
384         (gen_maybe_namespace_elt): Deal with struct block_symbol from
385         lookup functions.
386         (gen_expr): Likewise.
387         * c-exp.y: Likewise.  Remove uses of block_found.
388         (lex_one_token, classify_inner_name, c_print_token): Likewise.
389         (classify_name): Likewise.  Rename the "sym" local variable to
390         "bsym".
391         * c-valprint.c (print_unpacked_pointer): Likewise.
392         * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
393         "sym" parameter from struct symbol * to struct block_symbol.
394         Use it to remove uses of block_found.  Deal with struct
395         block_symbol from lookup functions.
396         (gcc_convert_symbol): Likewise.  Update the call to
397         convert_symbol_sym.
398         * compile/compile-object-load.c (compile_object_load): Deal with
399         struct block_symbol from lookup functions.
400         * cp-namespace.c (cp_lookup_nested_symbol_1,
401         cp_lookup_nested_symbol, cp_lookup_bare_symbol,
402         cp_search_static_and_baseclasses,
403         cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
404         cp_lookup_symbol_imports_or_template,
405         cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
406         lookup_namespace_scope, cp_lookup_nonlocal,
407         find_symbol_in_baseclass): Return struct block_symbol instead of
408         mere symbols and deal with struct block_symbol from lookup
409         functions.
410         * cp-support.c (inspect_type, replace_typedefs,
411         cp_lookup_rtti_type): Deal with struct block_symbol from
412         lookup functions.
413         * cp-support.h (cp_lookup_symbol_nonlocal,
414         cp_lookup_symbol_from_namespace,
415         cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
416         Return struct block_symbol instead of mere symbols.
417         * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
418         push_module_name):
419         Deal with struct block_symbol from lookup functions.  Remove
420         uses of block_found.
421         * eval.c (evaluate_subexp_standard): Update call to
422         cp_lookup_symbol_namespace.
423         * f-exp.y: Deal with struct block_symbol from lookup functions.
424         Remove uses of block_found.
425         (yylex): Likewise.
426         * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
427         lookup_enum, lookup_template_type, check_typedef): Deal with
428         struct block_symbol from lookup functions.
429         * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
430         * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
431         (gdbscm_lookup_global_symbol): Likewise.
432         * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
433         * go-exp.y: Likewise.  Remove uses of block_found.
434         (package_name_p, classify_packaged_name, classify_name):
435         Likewise.
436         * infrun.c (insert_exception_resume_breakpoint): Likewise.
437         * jv-exp.y (push_variable): Likewise.
438         * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
439         * language.c (language_bool_type): Likewise.
440         * language.h (struct language_defn): Update
441         la_lookup_symbol_nonlocal to return a struct block_symbol rather
442         than a mere symbol.
443         * linespec.c (find_label_symbols): Deal with struct block_symbol
444         from lookup functions.
445         * m2-exp.y: Likewise.  Remove uses of block_found.
446         (yylex): Likewise.
447         * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
448         * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
449         * p-exp.y: Likewise.  Remove uses of block_found.
450         (yylex): Likewise.
451         * p-valprint.c (pascal_val_print): Likewise.
452         * parse.c (write_dollar_variable): Likewise.  Remove uses of
453         block_found.
454         * parser-defs.h (struct symtoken): Turn the SYM field into a
455         struct block_symbol.
456         * printcmd.c (address_info): Deal with struct block_symbol from
457         lookup functions.
458         * python/py-frame.c (frapy_read_var): Likewise.
459         * python/py-symbol.c (gdbpy_lookup_symbol,
460         gdbpy_lookup_global_symbol): Likewise.
461         * skip.c (skip_function_command): Likewise.
462         * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
463         block_symbol instead of a mere symbol.
464         * solib-spu.c (spu_lookup_lib_symbol): Likewise.
465         * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
466         * solib.c (solib_global_lookup): Likewise.
467         * solist.h (solib_global_lookup): Likewise.
468         (struct target_so_ops): Update lookup_lib_global_symbol to
469         return a struct block_symbol rather than a mere symbol.
470         * source.c (select_source_symtab): Deal with struct block_symbol
471         from lookup functions.
472         * stack.c (print_frame_args, iterate_over_block_arg_vars):
473         Likewise.
474         * symfile.c (set_initial_language): Likewise.
475         * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
476         block_symbol.
477         (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
478         (struct symbol_cache_slot): Turn the FOUND field into a struct
479         block_symbol.
480         (block_found): Remove.
481         (eq_symbol_entry): Update to deal with struct block_symbol in
482         cache slots.
483         (symbol_cache_lookup): Return a struct block_symbol rather than
484         a mere symbol.
485         (symbol_cache_mark_found): Add a BLOCK parameter to fill
486         appropriately the cache slots.  Update callers.
487         (symbol_cache_dump): Update cache slots handling to the type
488         change.
489         (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
490         lookup_symbol_aux, lookup_local_symbol,
491         lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
492         lookup_symbol_in_objfile_symtabs,
493         lookup_symbol_in_objfile_from_linkage_name,
494         lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
495         lookup_symbol_in_static_block, lookup_static_symbol,
496         lookup_global_symbol):
497         Return a struct block_symbol rather than a mere symbol.  Deal
498         with struct block_symbol from other lookup functions.  Remove
499         uses of block_found.
500         (lookup_symbol_in_block): Remove uses of block_found.
501         (struct global_sym_lookup_data): Turn the RESULT field into a
502         struct block_symbol.
503         (lookup_symbol_global_iterator_cb): Update references to the
504         RESULT field.
505         (search_symbols): Deal with struct block_symbol from lookup
506         functions.
507         * symtab.h (struct block_symbol): New structure.
508         (block_found): Remove.
509         (lookup_symbol_in_language, lookup_symbol,
510         basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
511         lookup_static_symbol, lookup_global_symbol, lookup_language_this,
512         lookup_global_symbol_from_objfile): Return a struct block_symbol
513         rather than just a mere symbol.  Update comments to remove
514         mentions of block_found.
515         * valops.c (find_function_in_inferior,
516         value_struct_elt_for_reference, value_maybe_namespace_elt,
517         value_of_this):  Deal with struct block_symbol from lookup
518         functions.
519         * value.c (value_static_field, value_fn_field): Likewise.
520
521 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
522
523         * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
524         instead of integer.
525
526 2015-07-31  Simon Marchi  <simon.marchi@ericsson.com>
527             Pedro Alves  <palves@redhat.com>
528
529         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
530         type or value instead of integer.
531         (aarch64_linux_insert_watchpoint): Likewise.
532         (aarch64_linux_remove_watchpoint): Likewise.
533         * ada-lang.c (ada_op_print_tab): Likewise.
534         * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
535         (amd64_linux_syscall_record_common): Likewise.
536         * arch-utils.c (target_byte_order_user): Likewise.
537         (default_byte_order): Likewise.
538         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
539         (arm_linux_get_hwbp_type): Likewise.
540         (arm_linux_hw_watchpoint_initialize): Likewise.
541         (arm_linux_insert_watchpoint): Likewise.
542         * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
543         (arm_linux_syscall_record): Likewise.
544         * breakpoint.c (update_watchpoint): Likewise.
545         (breakpoint_here_p): Likewise.
546         (bpstat_print): Likewise.
547         (enable_breakpoint_disp): Likewise.
548         * c-lang.c (c_op_print_tab): Likewise.
549         * cli/cli-decode.c (add_info_alias): Likewise.
550         * d-lang.c (d_op_print_tab): Likewise.
551         * eval.c (evaluate_subexp_standard): Likewise.
552         * f-exp.y (dot_ops): Likewise.
553         (f77_keywords): Likewise.
554         * f-lang.c (f_op_print_tab): Likewise.
555         * go-lang.c (go_op_print_tab): Likewise.
556         * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
557         * guile/scm-cmd.c (gdbscm_make_command): Likewise.
558         * guile/scm-param.c (gdbscm_make_parameter): Likewise.
559         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
560         * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
561         (struct scm_from_stringn_data): Likewise.
562         * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
563         * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
564         (ia64_linux_remove_watchpoint): Likewise.
565         (ia64_linux_can_use_hw_breakpoint): Likewise.
566         * infrun.c (print_stop_event): Likewise.
567         * jv-lang.c (java_op_print_tab): Likewise.
568         * linux-nat.c (linux_proc_xfer_partial): Likewise.
569         * linux-nat.h (struct lwp_info): Likewise.
570         * linux-thread-db.c (enable_thread_event): Likewise.
571         * m2-lang.c (m2_op_print_tab): Likewise.
572         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
573         (mi_cmd_stack_list_variables): Likewise.
574         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
575         * mi/mi-out.c (mi_table_begin): Likewise.
576         (mi_table_header): Likewise.
577         * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
578         (mips_linux_insert_watchpoint): Likewise.
579         (mips_linux_remove_watchpoint): Likewise.
580         * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
581         * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
582         (mips_linux_watch_type_to_irw): Likewise.
583         * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
584         (procfs_insert_hw_watchpoint): Likewise.
585         (procfs_remove_hw_watchpoint): Likewise.
586         (procfs_hw_watchpoint): Likewise.
587         (procfs_can_use_hw_breakpoint): Likewise.
588         (procfs_remove_hw_watchpoint): Likewise.
589         (procfs_insert_hw_watchpoint): Likewise.
590         * p-lang.c (pascal_op_print_tab): Likewise.
591         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
592         * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
593         * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
594         * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
595         (procfs_insert_watchpoint): Likewise.
596         (procfs_remove_watchpoint): Likewise.
597         * psymtab.c (recursively_search_psymtabs): Likewise.
598         * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
599         (m32r_insert_watchpoint): Likewise.
600         * remote-mips.c (mips_can_use_watchpoint): Likewise.
601         (mips_insert_watchpoint): Likewise.
602         (mips_remove_watchpoint): Likewise.
603         * remote.c (watchpoint_to_Z_packet): Likewise.
604         (remote_insert_watchpoint): Likewise.
605         (remote_remove_watchpoint): Likewise.
606         (remote_check_watch_resources): Likewise.
607         * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
608         (s390_remove_watchpoint): Likewise.
609         (s390_can_use_hw_breakpoint): Likewise.
610         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
611         * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
612         * target.h (struct target_ops): Likewise.
613         * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
614         * ui-out.c (struct ui_out_hdr): Likewise.
615         (append_header_to_list): Likewise.
616         (get_next_header): Likewise.
617         (verify_field): Likewise.
618         (ui_out_begin): Likewise.
619         (ui_out_field_int): Likewise.
620         (ui_out_field_fmt_int): Likewise.
621         (ui_out_field_skip): Likewise.
622         (ui_out_field_string): Likewise.
623         (ui_out_field_fmt): Likewise.
624         * varobj.c (new_variable): Likewise.
625         * x86-nat.c (x86_insert_watchpoint): Likewise.
626         (x86_remove_watchpoint): Likewise.
627         (x86_can_use_hw_breakpoint): Likewise.
628         * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
629         * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
630         previously anonymous enumeration type..
631         * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
632         value.
633         * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
634         (target_debug_print_enum_bptype): New.
635         * target-delegates.c: Regenerate.
636
637 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
638
639         * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
640         already says and disallow non-stack memory writes in the prologue.
641
642 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
643
644         * nios2-tdep.c (nios2_analyze_prologue): Update comments to
645         reflect how current GCC emits stack overflow checks.  Match
646         both trap and break instructions for backward compatbility.
647         Disallow other trap and break instructions in the prologue.
648
649 2015-07-30  Pedro Alves  <palves@redhat.com>
650
651         PR threads/18600
652         * linux-nat.c (wait_lwp): Report to the core when thread group
653         leader exits.
654
655 2015-07-30  Pedro Alves  <palves@redhat.com>
656             Simon Marchi  <simon.marchi@ericsson.com>
657
658         PR threads/18600
659         * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
660         mark the new thread as resumed.  Remove STOPPING parameter.
661         (wait_lwp): Adjust call to linux_handle_extended_wait.
662         (linux_nat_filter_event): Adjust call to
663         linux_handle_extended_wait.
664         (resume_stopped_resumed_lwps): Add debug output.
665
666 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
667
668         * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
669         isize argument.
670         * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
671         * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
672         gdbarch_fast_tracepoint_valid_at.
673         * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
674         * gdbarch.h: Regenerate.
675         * gdbarch.c: Regenerate.
676         * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
677         argument.  Do not set it.
678         * remote.c (remote_download_tracepoint): Adjust call to
679         gdbarch_fast_tracepoint_valid_at.  Call gdb_insn_length to get
680         the instruction length.
681
682 2015-07-30  Yao Qi  <yao.qi@linaro.org>
683
684         * arm-tdep.h (enum gdb_regnum): Move it to ...
685         * arch/arm.h: ... here.  New file.
686         * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
687
688 2015-07-30  Pierre Langlois  <pierre.langlois@arm.com>
689
690         * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
691         Change its type to int *.
692         (decode_br): Rename link argument to is_blr.  Change its type to
693         int *.
694         (decode_cb): Rename op argument to is_cbnz.  Change its type to
695         int *.
696         (decode_tb): Rename op argument to is_tbnz.  Change its type to
697         int *.  Set is_tbnz to either 1 or 0.
698         (aarch64_analyze_prologue): Change type of is_link to int.  Add
699         new variables is_cbnz and is_tbnz.  Adjust call to
700         aarch64_decode_cb and aarch64_decode_tb.
701
702 2015-07-29  Simon Marchi  <simon.marchi@ericsson.com>
703
704         * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
705         parameter.
706         (mips_linux_new_thread): Likewise.
707         * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
708
709 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
710
711         * top.c: Include "tui/tui.h".
712         (undo_terminal_modifications_before_exit): New static function.
713         (quit_force): Use it.
714
715 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
716
717         * target.c (terminal_state): Initialize to terminal_is_ours.
718
719 2015-07-29  Yao Qi  <yao.qi@linaro.org>
720
721         PR record/18691
722         * dcache.c (dcache_read_memory_partial): Call
723         raw_memory_xfer_partial.
724         * target.c (raw_memory_xfer_partial): Make it non-static.
725         * target.h (raw_memory_xfer_partial): Declare.
726
727 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
728
729         * c-valprint.c (c_val_print_array): Consider addressable memory
730         unit size.
731         (c_val_print_ptr): Likewise.
732         (c_val_print_int): Likewise.
733         * findvar.c (read_frame_register_value): Likewise.
734         * valarith.c (find_size_for_pointer_math): Likewise.
735         (value_ptrdiff): Likewise.
736         (value_subscripted_rvalue): Likewise.
737         * valops.c (read_value_memory): Likewise (and rename variables).
738         (value_assign): Likewise.
739         (value_repeat): Likewise.
740         (value_array): Likewise.
741         (value_slice): Likewise.
742         * valprint.c (generic_val_print_ptr): Likewise.
743         (generic_val_print_enum): Likewise.
744         (generic_val_print_bool): Likewise.
745         (generic_val_print_int): Likewise.
746         (generic_val_print_char): Likewise.
747         (generic_val_print_float): Likewise.
748         (generic_val_print_decfloat): Likewise.
749         (generic_val_print_complex): Likewise.
750         (val_print_scalar_formatted): Likewise.
751         (val_print_array_elements): Likewise.
752         * value.c (set_value_parent): Likewise.
753         (value_contents_copy_raw): Likewise.
754         (set_internalvar_component): Likewise.
755         (value_primitive_field): Likewise.
756         (value_fetch_lazy): Likewise.
757         * value.h (read_value_memory): Update comment.
758
759 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
760
761         * value.c (get_value_arch): New function.
762         * value.h (get_value_arch): New declaration.
763
764 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
765
766         * value.c (struct value): Update comments.
767
768 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
769
770         * gdbtypes.c (type_length_units): New function.
771         * gdbtypes.h (type_length_units): New declaration.
772         (struct type) <length>: Update comment.
773
774 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
775
776         * valprint.c (generic_val_print): Factor out complex
777         printing code to ...
778         (generic_val_print_complex): ... this new function.
779
780 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
781
782         * valprint.c (generic_val_print): Factor out decfloat
783         printing code to ...
784         (generic_val_print_decfloat): ... this new function.
785
786 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
787
788         * valprint.c (generic_val_print): Factor out float
789         printing code to ...
790         (generic_val_print_float): ... this new function.
791
792 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
793
794         * valprint.c (generic_val_print): Factor out char
795         printing code to ...
796         (generic_val_print_char): ... this new function.
797
798 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
799
800         * valprint.c (generic_val_print): Factor out integer
801         printing code to ...
802         (generic_val_print_int): ... this new function.
803
804 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
805
806         * valprint.c (generic_val_print): Factor out bool
807         printing code to ...
808         (generic_val_print_bool): ... this new function.
809
810 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
811
812         * valprint.c (generic_val_print): Factor out function/method
813         printing code to ...
814         (generic_val_print_func): ... this new function.
815
816 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
817
818         * valprint.c (generic_val_print): Factor out flags
819         printing code to ...
820         (generic_val_print_flags): ... this new function.
821
822 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
823
824         * valprint.c (generic_val_print): Factor out enum
825         printing code to ...
826         (generic_val_print_enum): ... this new function.
827
828 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
829
830         * valprint.c (generic_val_print): Factor out reference
831         printing code to ...
832         (generic_val_print_ref): ... this new function.
833
834 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
835
836         * valprint.c (generic_val_print): Factor out memberptr
837         printing code to ...
838         (generic_val_print_memberptr): ... this new function.
839
840 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
841
842         * valprint.c (generic_val_print): Factor out pointer
843         printing code to ...
844         (generic_val_print_ptr): ... this new function.
845
846 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
847
848         * valprint.c (generic_val_print): Factor out array
849         printing code to ...
850         (generic_val_print_array): ... this new function.
851
852 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
853
854         * valprint.c (generic_val_print): Factor out
855         print_unpacked_pointer code to ...
856         (print_unpacked_pointer): ... this new function.
857
858 2015-07-27  Patrick Palka  <patrick@parcs.ath.cx>
859
860         * event-top.c (handle_sigterm): Don't inspect
861         target_can_async_p.  Always set the quit flag and always mark
862         the async signal handler.
863
864 2015-07-27  Yao Qi  <yao.qi@linaro.org>
865
866         * Makefile.in (REMOTE_EXAMPLES): Remove it.
867
868 2015-07-25  Kevin Buettner  <kevinb@redhat.com>
869
870         * remote.c (read_ptid): Return null_ptid when no thread id
871         is found.
872         (remote_current_thread): Add log warning for malformed
873         qC reply.
874         (remote_start_remote): Add log warning when current thread
875         not found.
876
877 2015-07-24  Pedro Alves  <palves@redhat.com>
878
879         * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
880         (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
881         forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
882
883 2015-07-24  Pedro Alves  <palves@redhat.com>
884
885         PR gdb/18717
886         * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
887         is resumed, and extend the debug log.
888
889 2015-07-24  Pedro Alves  <palves@redhat.com>
890
891         * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
892
893 2015-07-24  Pedro Alves  <palves@redhat.com>
894
895         * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
896         sys/ptrace.h.
897         * alpha-linux-nat.c: Likewise.
898         * amd64-linux-nat.c: Likewise.
899         * arm-linux-nat.c: Likewise.
900         * hppa-linux-nat.c: Likewise.
901         * i386-linux-nat.c: Likewise.
902         * ia64-linux-nat.c: Likewise.
903         * linux-fork.c: Likewise.
904         * linux-nat.c: Likewise.
905         * m32r-linux-nat.c: Likewise.
906         * m68klinux-nat.c: Likewise.
907         * mips-linux-nat.c: Likewise.
908         * nat/linux-btrace.c: Likewise.
909         * nat/linux-ptrace.c: Likewise.
910         * nat/linux-ptrace.h
911         * nat/mips-linux-watch.c: Likewise.
912         * nat/x86-linux-dregs.c: Likewise.
913         * ppc-linux-nat.c: Likewise.
914         * s390-linux-nat.c: Likewise.
915         * spu-linux-nat.c: Likewise.
916         * tilegx-linux-nat.c: Likewise.
917         * x86-linux-nat.c: Likewise.
918         * xtensa-linux-nat.c: Likewise.
919
920 2015-07-24  Pedro Alves  <palves@redhat.com>
921
922         * ptrace.m4 (ptrace tests): Test in C++ mode.  Try with 'enum
923         __ptrace_request as first parameter type instead of int.
924         (PTRACE_TYPE_ARG1): Define.
925         * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
926         that casts first argument to PTRACE_TYPE_ARG1.
927         * config.in: Regenerate.
928         * configure: Regenerate.
929
930 2015-07-24  Pedro Alves  <palves@redhat.com>
931
932         * gdb_ptrace.h: Move ...
933         * nat/gdb_ptrace.h: ... here.
934         * inf-ptrace.c: Adjust.
935
936 2015-07-24  Pedro Alves  <palves@redhat.com>
937
938         * acinclude.m4: Include ptrace.m4.
939         * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
940         * ptrace.m4: ... to this new file.
941
942 2015-07-23  Doug Evans  <dje@google.com>
943
944         * dwarf2read.c (dwarf2_per_cu_data): Add comment.
945         (load_cu): Handle dummy CUs.
946         (dw2_do_instantiate_symtab, process_queuef): Ditto.
947         (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
948
949 2015-07-23  Ciro Santilli  <ciro.santilli@gmail.com>  (tiny patch)
950
951         * py-linetable.c (ltpy_get_all_source_lines): Adjust function
952         documentation to say that it returns a list rather than
953         a FrozenSet.
954         (linetable_object_methods): Update the docstring of the
955         "source_line" entry.
956
957 2015-07-23  Pierre-Marie de Rodat  <derodat@adacore.com>
958
959         * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
960         type to the recursive call instead of the original (maybe
961         TYPE_CODE_TYPEDEF) type.
962
963 2015-07-23  Yao Qi  <yao.qi@linaro.org>
964
965         * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
966         TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
967         If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
968
969 2015-07-21  Yao Qi  <yao.qi@linaro.org>
970
971         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
972         Move it to nat/aarch64-linux-hw-point.c.
973         (aarch64_linux_child_post_startup_inferior): Update.
974         * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
975         New function.
976         * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
977         Declare it.
978
979 2015-07-21  Markus Metzger  <markus.t.metzger@intel.com>
980
981         * common/btrace-common.c (btrace_data_append): Change case label.
982
983 2015-07-20  Yao Qi  <yao.qi@linaro.org>
984
985         * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
986         Re-indent the code.
987         * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
988         "unsigned long long".
989
990 2015-07-18  Kevin Buettner  <kevinb@redhat.com>
991
992         * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
993         to be set for SEC_ALLOC sections too.
994
995 2015-07-17  Yao Qi  <yao.qi@linaro.org>
996
997         * Makefile.in (HFILES_NO_SRCDIR): Add
998         nat/aarch64-linux-hw-point.h.
999         (aarch64-linux-hw-point.o): New rule.
1000         * nat/aarch64-linux-hw-point.h: New file.
1001         * nat/aarch64-linux-hw-point.c: New file.
1002         * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
1003         (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
1004         (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
1005         (AARCH64_HWP_ALIGNMENT): Likewise.
1006         (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
1007         (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
1008         (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
1009         (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
1010         (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
1011         (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
1012         (struct aarch64_debug_reg_state): Likewise.
1013         (struct arch_lwp_info): Likewise.
1014         (aarch64_linux_set_debug_regs): Likewise.
1015         (aarch64_notify_debug_reg_change): Remove static.
1016         (aarch64_align_watchpoint): Likewise.
1017         (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
1018         (aarch64_watchpoint_length): Likewise.
1019         (aarch64_point_encode_ctrl_reg): Likewise
1020         (aarch64_point_is_aligned): Likewise.
1021         (aarch64_dr_state_insert_one_point): Likewise.
1022         (aarch64_dr_state_remove_one_point): Likewise.
1023         (aarch64_handle_breakpoint): Likewise.
1024         (aarch64_handle_aligned_watchpoint): Likewise.
1025         (aarch64_handle_unaligned_watchpoint): Likewise.
1026         (aarch64_handle_watchpoint): Likewise.
1027         * config/aarch64/linux.mh (NAT_FILE): Add
1028         aarch64-linux-hw-point.o.
1029
1030 2015-07-17  Yao Qi  <yao.qi@linaro.org>
1031
1032         * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
1033         state and don't call aarch64_get_debug_reg_state.  All callers
1034         update.
1035         (aarch64_linux_insert_hw_breakpoint): Call
1036         aarch64_get_debug_reg_state earlier.
1037         (aarch64_linux_remove_hw_breakpoint): Likewise.
1038         (aarch64_handle_aligned_watchpoint): Add argument state and
1039         don't call aarch64_get_debug_reg_state.  All callers update.
1040         (aarch64_handle_unaligned_watchpoint): Likewise.
1041         (aarch64_handle_watchpoint): Add argument state.
1042         (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
1043         earlier.
1044         (aarch64_linux_remove_watchpoint): Likewise.
1045
1046 2015-07-17  Yao Qi  <yao.qi@linaro.org>
1047
1048         * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
1049         debug_printf.
1050         (aarch64_handle_unaligned_watchpoint): Likewise.
1051
1052 2015-07-17  Yao Qi  <yao.qi@linaro.org>
1053
1054         * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
1055         argument type's type to 'enum target_hw_bp_type'.
1056         (aarch64_dr_state_remove_one_point): Likewise.
1057         (aarch64_handle_breakpoint): Likewise.
1058         (aarch64_linux_insert_hw_breakpoint): Likewise.
1059         (aarch64_linux_remove_hw_breakpoint): Likewise.
1060         (aarch64_handle_aligned_watchpoint): Likewise.
1061
1062 2015-07-17  Yao Qi  <yao.qi@linaro.org>
1063
1064         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
1065         ptid_get_pid instead of get_thread_id.
1066
1067 2015-07-17  Yao Qi  <yao.qi@linaro.org>
1068
1069         * remote.c (get_current_thread): Initialise ptid to null_ptid.
1070         (add_current_inferior_and_thread): Don't initialise ptid.
1071
1072 2015-07-16  Pierre Langlois  <pierre.langlois@arm.com>
1073
1074         * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
1075         unavailable if invalid.
1076
1077 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1078
1079         Revert the previous 6 commits:
1080         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
1081         Move gdb_regex* to common/
1082         Prepare linux_find_memory_regions_full & co. for move
1083         Move linux_find_memory_regions_full & co.
1084         gdbserver build-id attribute generator
1085         Validate symbol file using build-id
1086
1087 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
1088             Jan Kratochvil  <jan.kratochvil@redhat.com>
1089
1090         Validate symbol file using build-id.
1091         * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
1092         and 'show validate-build-id'.  Add build-id attribute.
1093         * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
1094         * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
1095         * solib-frv.c (_initialize_frv_solib): Ditto.
1096         * solib-spu.c (set_spu_solib_ops): Ditto.
1097         * solib-svr4.c: Include rsp-low.h.
1098         (NOTE_GNU_BUILD_ID_NAME): New define.
1099         (svr4_validate): New function.
1100         (svr4_copy_library_list): Duplicate field build_id.
1101         (library_list_start_library): Parse 'build-id' attribute.
1102         (svr4_library_attributes): Add 'build-id' attribute.
1103         (_initialize_svr4_solib): Assign validate value.
1104         * solib-target.c (solib.h): Include.
1105         (_initialize_solib_target): Assign validate value.
1106         * solib.c (validate_build_id, show_validate_build_id): New.
1107         (solib_map_sections): Use ops->validate.
1108         (clear_so): Free build_id.
1109         (default_solib_validate): New function.
1110         (_initialize_solib): Add "validate-build-id".
1111         * solib.h (default_solib_validate): New declaration.
1112         * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
1113         (target_so_ops): New field 'validate'.
1114
1115 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
1116             Jan Kratochvil  <jan.kratochvil@redhat.com>
1117
1118         gdbserver build-id attribute generator.
1119         * features/library-list-svr4.dtd (library-list-svr4): New
1120         'build-id' attribute.
1121
1122 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
1123             Jan Kratochvil  <jan.kratochvil@redhat.com>
1124
1125         Move linux_find_memory_regions_full & co.
1126         * linux-tdep.c (nat/linux-maps.h): Include.
1127         (gdb_regex.h): Remove the include.
1128         (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
1129         (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
1130         (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
1131         (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
1132         * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
1133         and target/target.h.
1134         (struct smaps_vmflags, read_mapping, decode_vmflags)
1135         (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
1136         (linux_find_memory_regions_full): Move from linux-tdep.c.
1137         * nat/linux-maps.h (read_mapping): New declaration.
1138         (linux_find_memory_region_ftype, enum filterflags): Moved from
1139         linux-tdep.c.
1140         (linux_find_memory_regions_full): New declaration.
1141         * target.c (target/target-utils.h): Include.
1142         (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
1143         (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
1144         definitions to target/target-utils.c.
1145         * target.h (target_fileio_read_stralloc): Move it to target/target.h.
1146         * target/target-utils.c (read_alloc, read_stralloc): Move definitions
1147         from target.c.
1148         * target/target-utils.h (read_alloc_pread_ftype): New typedef.
1149         (read_alloc): New declaration.
1150         (read_stralloc_func_ftype): New typedef.
1151         (read_stralloc): New declaration.
1152         * target/target.h (target_fileio_read_stralloc): Move it from target.h.
1153
1154 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
1155             Jan Kratochvil  <jan.kratochvil@redhat.com>
1156
1157         Prepare linux_find_memory_regions_full & co. for move.
1158         * linux-tdep.c (linux_find_memory_region_ftype): Comment.
1159         (linux_find_memory_regions_full): Change signature and prepare
1160         for moving to linux-maps.
1161         (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
1162         (linux_find_memory_regions_thunk): New.
1163         (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
1164         (linux_find_memory_regions_gdb): New.
1165         (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
1166         (linux_make_mappings_corefile_notes): Use
1167         linux_find_memory_regions_gdb.
1168         * target.c (read_alloc_pread_ftype): New typedef.
1169         (target_fileio_read_alloc_1_pread): New function.
1170         (read_alloc): Refactor from target_fileio_read_alloc_1.
1171         (read_stralloc_func_ftype): New typedef.
1172         (target_fileio_read_alloc_1): New implementation. Use read_alloc.
1173         (read_stralloc): Refactored from target_fileio_read_stralloc.
1174         (target_fileio_read_stralloc): New implementation, use read_stralloc.
1175
1176 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1177
1178         * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
1179         common/gdb_regex.h.
1180         (COMMON_OBS): Add gdb_regex.o.
1181         (gdb_regex.o): New.
1182         * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
1183         --without-included-regex and USE_INCLUDED_REGEX.
1184         * common/gdb_regex.c: New file from utils.c functions.
1185         * common/gdb_regex.h: Move it here from gdb_regex.h, update include
1186         file wrapping define name.
1187         * configure: Rebuilt.
1188         * configure.ac (gdb_use_included_regex, --without-included-regex)
1189         (USE_INCLUDED_REGEX): Move them to common/common.m4.
1190         * gdb_regex.h: Move it to common/gdb_regex.h.
1191         * utils.c: Remove include gdb_regex.h.
1192         (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
1193         (compile_rx_or_error): Move them to common/gdb_regex.c.
1194
1195 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
1196             Jan Kratochvil  <jan.kratochvil@redhat.com>
1197
1198         Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
1199         * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
1200         common/target-utils.h.
1201         (COMMON_OBS): Add target-utils.o.
1202         (linux-maps.o, target-utils.o): New.
1203         * target/target-utils.c: New file.
1204         * target/target-utils.h: New file.
1205         * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
1206         * config/i386/linux64.mh (NATDEPFILES): Ditto.
1207         * nat/linux-maps.c: New file.
1208         * nat/linux-maps.h: New file.
1209
1210 2015-07-15  Markus Metzger  <markus.t.metzger@intel.com>
1211             Pedro Alves <palves@redhat.com>
1212
1213         * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
1214         (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
1215         (perf_event_read_bts): Change the type of SIZE and READ.
1216         (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
1217         and DATA_OFFSET.  Move DATA_SIZE declaration.  Restrict the buffer size
1218         to UINT_MAX.  Check for overflows when using DATA_HEAD from the perf
1219         mmap page.
1220         (linux_enable_pt): Change the type of PAGES and SIZE.  Restrict the
1221         buffer size to UINT_MAX.
1222         (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
1223         DATA_TAIL.
1224         * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
1225         <last_head>: Change type.
1226         * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
1227         * common/btrace-common.c (btrace_data_append): Change the type of
1228         SIZE.
1229         * btrace.c (parse_xml_raw): Change the type of SIZE.  Change oddness
1230         check.
1231
1232 2015-07-14  Simon Marchi  <simon.marchi@ericsson.com>
1233
1234         * gdbtypes.h (CHECK_TYPEDEF): Remove.
1235         * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
1236         with check_typedef.
1237         * ada-lang.c (decode_constrained_packed_array_type): Likewise.
1238         (ada_array_length): Likewise.
1239         (find_parallel_type_by_descriptive_type): Likewise.
1240         (ada_check_typedef): Likewise.
1241         * arm-tdep.c (arm_return_in_memory): Likewise.
1242         * ax-gdb.c (gen_trace_static_fields): Likewise.
1243         (gen_struct_ref_recursive): Likewise.
1244         * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
1245         (variable: block COLONCOLON name): Likewise.
1246         (qualified_name: TYPENAME COLONCOLON name): Likewise.
1247         * c-lang.c (classify_type): Likewise.
1248         * c-typeprint.c (c_print_type): Likewise.
1249         (c_print_typedef): Likewise.
1250         (c_type_print_base): Likewise.
1251         * c-valprint.c (c_val_print): Likewise.
1252         * compile/compile-c-types.c (convert_type): Likewise.
1253         * compile/compile-object-load.c (get_out_value_type): Likewise.
1254         * completer.c (add_struct_fields): Likewise.
1255         (expression_completer): Likewise.
1256         * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
1257         (cp_lookup_nested_symbol_1): Likewise.
1258         (cp_lookup_nested_symbol): Likewise.
1259         * cp-valprint.c (cp_print_value_fields): Likewise.
1260         (cp_print_static_field): Likewise.
1261         * d-valprint.c (d_val_print): Likewise.
1262         * eval.c (evaluate_subexp_standard): Likewise.
1263         (evaluate_subexp_for_sizeof): Likewise.
1264         * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
1265         * f-typeprint.c (f_type_print_base): Likewise.
1266         * f-valprint.c (f_val_print): Likewise.
1267         * gdbtypes.c (get_discrete_bounds): Likewise.
1268         (create_array_type_with_stride): Likewise.
1269         (type_name_no_tag_or_error): Likewise.
1270         (lookup_struct_elt_type): Likewise.
1271         (get_unsigned_type_max): Likewise.
1272         (internal_type_vptr_fieldno): Likewise.
1273         (set_type_vptr_fieldno): Likewise.
1274         (internal_type_vptr_basetype): Likewise.
1275         (set_type_vptr_basetype): Likewise.
1276         (get_vptr_fieldno): Likewise.
1277         (is_integral_type): Likewise.
1278         (is_scalar_type): Likewise.
1279         (is_scalar_type_recursive): Likewise.
1280         (distance_to_ancestor): Likewise.
1281         (is_unique_ancestor_worker): Likewise.
1282         (check_types_equal): Likewise.
1283         * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
1284
1285 2015-07-14  Iain Buclaw  <ibuclaw@gdcproject.org>
1286
1287         * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
1288         also test for language_d.
1289         (dwarf2_compute_name): Likewise.
1290         (read_func_scope): Likewise.
1291         (read_structure_type): Likewise.
1292         (new_symbol_full): Likewise.
1293         (determine_prefix): Likewise.
1294         (read_import_statement): Use dot as the separator for language_d.
1295         (typename_concat): Likewise, but don't prefix the D main function.
1296
1297 2015-07-14  Peter Bergner  <bergner@vnet.ibm.com>
1298
1299         * nat/linux-namespaces.c (setns): Rename from this ...
1300         (do_setns): ... to this.  Support calling setns if it exists.
1301         (mnsh_handle_setns): Call do_setns.
1302
1303 2015-07-13  Yao Qi  <yao.qi@linaro.org>
1304
1305         * exec.c (exec_file_attach): Add period at the end of error
1306         message.
1307
1308 2015-07-13  Andrew Burgess  <andrew.burgess@embecosm.com>
1309
1310         * tui/tui-win.c (window_name_completer): New function.
1311         (focus_completer): Call window_name_completer.  All old content
1312         moved into window_name_completer.
1313         (winheight_completer): New function.
1314         (_initialize_tui_win): Rename variable.  Add completer to
1315         winheight command.  Update doc string on winheight.
1316
1317 2015-07-12  Sandra Loosemore  <sandra@codesourcery.com>
1318
1319         * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
1320         all nios2 mach variants.
1321
1322 2015-07-10  Kevin Buettner  <kevinb@redhat.com>
1323
1324         * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
1325         of target_read_memory.
1326
1327 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
1328
1329         * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
1330         string copy.
1331         (parse_scrolling_args): Likewise.
1332
1333 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
1334
1335         * tui/tui-win.c (focus_completer): Don't duplicate the tui window
1336         names in this function.
1337
1338 2015-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
1339
1340         * tui/tui-data.h (SRC_NAME): Convert to lower case.
1341         (CMD_NAME): Likewise.
1342         (DATA_NAME): Likewise.
1343         (DISASSEM_NAME): Likewise.
1344         * tui/tui-win.c (tui_set_focus): Window names are now lower case.
1345         (tui_set_win_height): Likewise.
1346         (parse_scrolling_args): Likewise.
1347
1348 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
1349
1350         * record-btrace.c (record_btrace_goto_begin)
1351         (record_btrace_goto_end, record_btrace_goto): Move call to
1352         print_stack_frame ...
1353         (record_btrace_set_replay): ... here.  Set stop_pc.
1354         * record-full.c (record_full_goto_entry): Set stop_pc.
1355
1356 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1357
1358         * NEWS: Mention support for tracepoints on aarch64-linux.
1359
1360 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1361
1362         * linux-aarch64-low.c (aarch64_supports_tracepoints): New
1363         function.  Return 1.
1364         (the_low_target): Install it.
1365
1366 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1367
1368         * gdb.trace/backtrace.exp: Set registers for aarch64 target.
1369         * gdb.trace/collection.exp: Likewise.
1370         * gdb.trace/mi-trace-frame-collected.exp: Likewise.
1371         * gdb.trace/mi-trace-unavailable.exp: Likewise.
1372         * gdb.trace/report.exp: Likewise.
1373         * gdb.trace/trace-break.exp: Likewise.
1374         * gdb.trace/unavailable.exp: Likewise.
1375         * gdb.trace/while-dyn.exp: Likewise.
1376
1377 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1378
1379         * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
1380         (aarch64_gen_return_address): New function.
1381         (aarch64_gdbarch_init): Hook it.
1382
1383 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1384
1385         * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
1386         swallow NOT_AVAILABLE_ERROR.
1387         (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
1388         available_p is not set.
1389         (aarch64_stub_frame_unwind_stop_reason): New function.
1390         (aarch64_stub_unwind): Install it.
1391
1392 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1393
1394         * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
1395         field.
1396         (aarch64_make_prologue_cache_1): New function, factored out from
1397         aarch64_make_prologue_cache.  Do not allocate cache.  Set
1398         available_p.
1399         (aarch64_make_prologue_cache): Reimplement wrapping
1400         aarch64_make_prologue_cache_1, and swallowing
1401         NOT_AVAILABLE_ERROR.
1402         (aarch64_prologue_frame_unwind_stop_reason): New function.
1403         Return UNWIND_UNAVAILABLE if available_p is not set.
1404         (aarch64_prologue_unwind): Install it.
1405         (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
1406         checks into aarch64_prologue_frame_unwind_stop_reason.  Call
1407         frame_id_build_unavailable_stack if available_p is not set.
1408
1409 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1410
1411         * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
1412         fields.
1413         (aarch64_scan_prologue): Set prev_pc.
1414         (aarch64_make_prologue_cache): Set func.
1415         (aarch64_make_stub_cache): Set prev_pc.
1416         (aarch64_prologue_this_id): Remove local variables id, pc and
1417         func.  Read prev_pc and func from cache.
1418         (aarch64_stub_this_id): Read prev_pc from cache.
1419
1420 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1421
1422         * aarch64-tdep.c (aarch64_make_stub_cache): Update comment.  New
1423         argument this_cache.  Remove unused local variables reg and
1424         unwound_fp.  Return early if this_cache is already set.  Set
1425         this_cache.
1426         (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
1427
1428 2015-07-09  Pierre Langlois  <pierre.langlois@arm.com>
1429
1430         * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
1431         New argument this_cache.  Return early if this_cache is already
1432         set.  Set this_cache.
1433         (aarch64_prologue_this_id): Update call to
1434         aarch64_make_prologue_cache.
1435         (aarch64_prologue_prev_register): Likewise.
1436         (aarch64_normal_frame_base): Likewise.
1437
1438 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1439
1440         * c-valprint.c (c_val_print): Factor out memberptr printing code
1441         from c_val_print to ...
1442         (c_val_print_memberptr): ... this new function.
1443
1444 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1445
1446         * c-valprint.c (c_val_print): Factor out int printing code to ...
1447         (c_val_print_int): ... this new function.
1448
1449 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1450
1451         * c-valprint.c (c_val_print): Factor out struct and union
1452         printing code to ...
1453         (c_val_print_struct): ... this new function ...
1454         (c_val_print_union): ... and this new function.
1455
1456 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1457
1458         * c-valprint.c (c_val_print): Factor out pointer printing code
1459         to ...
1460         (c_val_print_ptr): ... this new function.
1461
1462 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1463
1464         * c-valprint.c (c_valprint): Factor our array printing code from
1465         c_val_print to ...
1466         (c_val_print_array): ... this new function.
1467
1468 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1469
1470         * c-valprint.c (c_val_print): Factor out pointer printing code
1471         to ...
1472         (print_unpacked_pointer): ... this new function.
1473
1474 2015-07-09  Simon Marchi  <simon.marchi@ericsson.com>
1475
1476         * c-valprint.c (c_val_print): Remove an assignment to i and move
1477         its declaration.
1478
1479 2015-07-09  Yao Qi  <yao.qi@linaro.org>
1480
1481         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
1482         argument ptid.  Update comments.  Caller update.
1483
1484 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
1485
1486         * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
1487         mnt packets.
1488
1489 2015-07-09  Markus Metzger  <markus.t.metzger@intel.com>
1490
1491         * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
1492
1493 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
1494
1495         * progspace.c (delete_program_space): Add missing spaces.
1496
1497 2015-07-08  Simon Marchi  <simon.marchi@ericsson.com>
1498
1499         * inferior.c (delete_inferior_1): Rename to ...
1500         (delete_inferior): ..., remove 'silent' parameter, delete
1501         program space when unused and remove call to prune_program_spaces.
1502         Remove the old, unused, delete_inferior.
1503         (delete_inferior_silent): Remove.
1504         (prune_inferiors): Change call from delete_inferior_1 to
1505         delete_inferior and remove 'silent' parameter. Remove call to
1506         prune_program_spaces.
1507         (remove_inferior_command): Idem.
1508         * inferior.h (delete_inferior_1): Rename to...
1509         (delete_inferior): ..., remove 'silent' parameter and remove the
1510         original delete_inferior.
1511         (delete_inferior_silent): Remove.
1512         * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
1513         delete_inferior_1 to delete_inferior and remove 'silent'
1514         parameter.
1515         * progspace.c (prune_program_spaces): Remove.
1516         (pspace_empty_p): Rename to...
1517         (program_space_empty_p): ... and make non-static.
1518         (delete_program_space): New.
1519         * progspace.h (prune_program_spaces): Remove declaration.
1520         (program_space_empty_p): New declaration.
1521         (delete_program_space): New declaration.
1522         * monitor.c (monitor_close): Replace call to
1523         delete_thread_silent and delete_inferior_silent with
1524         discard_all_inferiors.
1525
1526 2015-07-08  Patrick Palka  <patrick@parcs.ath.cx>
1527
1528         * defs.h (deprecated_register_changed_hook): Remove prototype.
1529         * interps.c (clear_iterpreter_hooks): Remove reference to
1530         deprecated_register_changed_hook.
1531         * top.c (deprecated_register_changed_hook): Remove prototype.
1532         * valops.c (value_assign): Remove reference to
1533         deprecated_register_changed_hook.
1534         * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
1535         Add comment documenting the function.
1536         (tui_register_changed_observer): Define.
1537         (tui_install_hooks): Remove reference to
1538         deprecated_register_changed_hook.  Set
1539         tui_register_changed_observer.
1540         (tui_remove_hooks): Remove reference to
1541         deprecated_register_changed_hook.  Unset
1542         tui_register_changed_observer.
1543
1544 2015-07-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
1545
1546         PR compile/18484
1547         * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
1548
1549 2015-07-08  Robert O'Callahan  <robert@ocallahan.org>
1550
1551         PR exp/18617
1552         * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
1553
1554 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
1555
1556         * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
1557
1558 2015-07-08  Markus Metzger  <markus.t.metzger@intel.com>
1559
1560         * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
1561         Use safe_strerror() instead of strerror().
1562
1563 2015-07-07  Yao Qi  <yao.qi@linaro.org>
1564
1565         * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
1566         * features/arm-with-m-fpa-layout.c: Regenerated.
1567         * features/arm-with-m-vfp-d16.xml: Likewise.
1568         * features/arm-with-m-vfp-d16.c: Regenerated.
1569         * features/arm-with-m.xml: Likewise.
1570         * features/arm-with-m.c: Regenerated.
1571         * features/arm-with-neon.xml: Likewise.
1572         * features/arm-with-neon.c: Regenerated.
1573         * features/arm-with-vfpv2.xml: Likewise.
1574         * features/arm-with-vfpv2.c: Regenerated.
1575         * features/arm-with-vfpv3.xml: Likewise.
1576         * features/arm-with-vfpv3.c: Regenerated.
1577
1578 2015-07-07  Yao Qi  <yao.qi@linaro.org>
1579
1580         * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
1581         arm-linux-nat.c.
1582         * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
1583         elf/external.h.
1584         (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
1585         if target is 32-bit.
1586         (store_gregs_to_thread): Call aarch32_gp_regcache_collect
1587         if target is 32-bit.
1588         (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
1589         if target is 32-bit.
1590         (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
1591         if target is 32-bit.
1592         (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
1593         (aarch64_linux_read_description): Return the right target
1594         description.
1595         * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
1596         * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
1597         * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
1598         arm-linux-tdep.o.
1599
1600 2015-07-07  Yao Qi  <yao.qi@linaro.org>
1601
1602         * aarch32-linux-nat.c: New file.
1603         * aarch32-linux-nat.h: New file.
1604         * arm-linux-nat.c: Include aarch32-linux-nat.h.
1605         (fetch_regs): Move code to aarch32-linux-nat.c.  Call
1606         aarch32_gp_regcache_supply.
1607         (store_regs): Move code to aarch32-linux-nat.c.  Call
1608         aarch32_gp_regcache_collect.
1609         (fetch_vfp_regs): Move code to aarch32-linux-nat.c.  Call
1610         aarch32_vfp_regcache_supply.
1611         (store_vfp_regs): Move code to aarch32-linux-nat.c.  Call
1612         aarch32_vfp_regcache_collect.
1613         * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
1614
1615 2015-07-07  Yao Qi  <yao.qi@linaro.org>
1616
1617         * arm-linux-nat.c (store_fpregister): Remove.
1618         (store_register): Likewise.
1619         (fetch_fpregister): Likewise.
1620         (fetch_register): Likewise.
1621         (arm_linux_store_inferior_registers): Call store_regs and
1622         store_fpregs instead.
1623         (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
1624         fetch_regs instead.
1625
1626 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
1627
1628         * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
1629         and focus commands.
1630
1631 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
1632
1633         * NEWS: Create a new section for the next release branch.
1634         Rename the section of the current branch, now that it has
1635         been cut.
1636
1637 2015-07-06  Joel Brobecker  <brobecker@adacore.com>
1638
1639         GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
1640         * version.in: Bump version to 7.10.50.DATE-cvs.
1641
1642 2015-07-06  Luis Machado  <lgustavo@codesourcery.com>
1643
1644         * breakpoint.c (remove_breakpoint_1): Don't handle permanent
1645         breakpoints in a special way.
1646         (remove_breakpoint): Likewise.
1647         (mark_breakpoints_out): Likewise.
1648
1649 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
1650
1651         * doc/gdb.texinfo (TUI): Add comma after @xref.
1652
1653 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
1654
1655         * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
1656         instead of casting the structure type.
1657
1658 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
1659
1660         * valops.c (search_struct_field): Remove OFFSET parameter.
1661         (value_cast_structs): Adjust calls to search_struct_field.
1662         (value_struct_elt): Same.
1663         (find_overload_match): Same.
1664
1665 2015-07-06  Simon Marchi  <simon.marchi@ericsson.com>
1666
1667         * value.c (value_fetch_lazy): Update comment, change return
1668         value to void.
1669         * value.h (value_fetch_lazy): Change return value to void.
1670
1671 2015-07-06  Andrew Burgess  <andrew.burgess@embecosm.com>
1672
1673         * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
1674         (tui_win_name): Make parameter and result const.
1675         * tui/tui-data.h (tui_win_name): Make parameter and result const.
1676
1677 2015-07-06  Patrick Palka  <patrick@parcs.ath.cx>
1678
1679         * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
1680         use printf_unfiltered.
1681         (set_mpx_cmd): Add missing trailing space to command string
1682         literal.
1683         (_initialize_i386_tdep): Give the "mpx" prefix command its
1684         correct name.
1685
1686 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
1687
1688         * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
1689         (enum rx_frame_type): New.
1690         (struct rx_prologue): Add new field `frame_type'.
1691         (rx_analyze_prologue): Add `frame_type' parameter. Cache this
1692         parameter in the prologue struct.  Add code for recording
1693         locations of PC and PSW for fast interrupt and exception frames.
1694         (rx_skip_prologue): Adjust call to rx_analyze_prologue.
1695         (rx_analyze_frame_prologue): Add `frame_type' parameter.
1696         (rx_frame_type): New function.
1697         (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
1698         (rx_frame_this_id): Rename parameter `this_prologue_cache' to
1699         `this_cache'.
1700         (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
1701         `this_cache'.  Add cases for RX_FRAME_TYPE_EXCEPTION and
1702         RX_FRAME_TYPE_FAST_INTERRUPT.
1703         (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
1704         (rx_frame_sniffer, rx_exception_sniffer): New functions.
1705         (rx_frame_unwind): Use rx_frame_sniffer instead of
1706         default_frame_sniffer.
1707         (rx_frame_unwind): New unwinder.
1708         (rx_gdbarch_init): Register new unwinder.
1709
1710 2015-07-02  Kevin Buettner  <kevinb@redhat.com>
1711
1712         * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
1713         (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
1714         (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
1715         and RX_FPSW_REGNUM.
1716         (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
1717
1718 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1719
1720         Fix GCC false warning.
1721         * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
1722
1723 2015-07-02  Yao Qi  <yao.qi@linaro.org>
1724
1725         * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
1726         typo in the debugging message.
1727
1728 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
1729
1730         * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
1731         (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
1732         (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
1733         (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
1734         (btrace_maint_clear): New.
1735         (btrace_fetch, btrace_clear): Call btrace_maint_clear.
1736         (pt_print_packet, btrace_maint_decode_pt)
1737         (btrace_maint_update_pt_packets, btrace_maint_update_packets)
1738         (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
1739         (maint_btrace_packet_history_cmd)
1740         (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
1741         (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
1742         (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
1743         (maint_info_btrace_cmd, _initialize_btrace): New.
1744         * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
1745         (btrace_maint_packet_history, btrace_maint_info): New.
1746         (btrace_thread_info) <maint>: New.
1747         * NEWS: Announce it.
1748
1749 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
1750
1751         * btrace.c (btrace_fetch): Append the new trace data.
1752         (btrace_clear): Clear the stored trace data.
1753         * btrace.h (btrace_thread_info) <data>: New.
1754         * common/btrace-common.h (btrace_data_clear)
1755         (btrace_data_append): New.
1756         * common/btrace-common.c (btrace_data_clear)
1757         (btrace_data_append): New.
1758
1759 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
1760
1761         * nat/linux-btrace.c (linux_enable_bts): Check for
1762         PERF_ATTR_SIZE_VER5.
1763         Check for data_offset and data_size fields.  Use them.
1764
1765 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
1766
1767         * NEWS: Announce new commands "record btrace pt" and "record pt".
1768         Announce new options "set|show record btrace pt buffer-size".
1769         * btrace.c: Include "rsp-low.h".
1770         Include "inttypes.h".
1771         (btrace_add_pc): Add forward declaration.
1772         (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
1773         (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
1774         (btrace_compute_ftrace_pt): New.
1775         (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
1776         (check_xml_btrace_version): Update version check.
1777         (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
1778         (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
1779         (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
1780         (btrace_pt_children): New.
1781         (btrace_children): Add support for "pt".
1782         (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
1783         (btrace_conf_children): Add support for "pt".
1784         * btrace.h: Include "intel-pt.h".
1785         (btrace_pt_error): New.
1786         * common/btrace-common.c (btrace_format_string, btrace_data_fini)
1787         (btrace_data_empty): Support BTRACE_FORMAT_PT.
1788         * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
1789         (struct btrace_config_pt): New.
1790         (struct btrace_config)<pt>: New.
1791         (struct btrace_data_pt_config, struct btrace_data_pt): New.
1792         (struct btrace_data)<pt>: New.
1793         * features/btrace-conf.dtd (btrace-conf)<pt>: New.
1794         (pt): New.
1795         * features/btrace.dtd (btrace)<pt>: New.
1796         (pt, pt-config, cpu): New.
1797         * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
1798         (perf_event_pt_event_type, kernel_supports_pt)
1799         (linux_supports_pt): New.
1800         (linux_supports_btrace): Support BTRACE_FORMAT_PT.
1801         (linux_enable_bts): Free tinfo on error.
1802         (linux_enable_pt): New.
1803         (linux_enable_btrace): Support BTRACE_FORMAT_PT.
1804         (linux_disable_pt): New.
1805         (linux_disable_btrace): Support BTRACE_FORMAT_PT.
1806         (linux_fill_btrace_pt_config, linux_read_pt): New.
1807         (linux_read_btrace): Support BTRACE_FORMAT_PT.
1808         * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
1809         (struct btrace_target_info)<pt>: New.
1810         * record-btrace.c (set_record_btrace_pt_cmdlist)
1811         (show_record_btrace_pt_cmdlist): New.
1812         (record_btrace_print_pt_conf): New.
1813         (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
1814         (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
1815         (cmd_record_btrace_pt_start): New.
1816         (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
1817         (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
1818         (_initialize_record_btrace): Add new commands.
1819         * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
1820         (remote_protocol_features): Add "Qbtrace:pt".
1821         Add "Qbtrace-conf:pt:size".
1822         (remote_supports_btrace): Support BTRACE_FORMAT_PT.
1823         (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
1824         (remote_enable_btrace): Support BTRACE_FORMAT_PT.
1825         (_initialize_remote): Add new commands.
1826
1827 2015-07-02  Markus Metzger  <markus.t.metzger@intel.com>
1828
1829         * configure.ac: check for libipt
1830         * configure: Regenerate.
1831         * config.in: Regenerate.
1832         * Makefile.in (LIBIPT): New.
1833         (CLIBS): Add $LIBIPT.
1834         * NEWS: document new configure options
1835
1836 2015-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
1837
1838         * compile/compile-object-load.c (compile_object_load): Replace debug
1839         message "lookup undefined ELF symbol" by 3 more specific messages.
1840
1841 2015-07-01  Kevin Buettner  <kevinb@redhat.com>
1842
1843         * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
1844         (rl78_register_type): Add case for RL78_PSW_REGNUM.
1845         (rl78_gdbarch_init): Initialize rl78_psw_type.
1846
1847 2015-07-01  Patrick Palka  <patrick@parcs.ath.cx>
1848
1849         * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
1850         Update commentary.  Always refresh the registers when frame
1851         information has changed.
1852         * tui/tui-stack.c (tui_show_frame_info): Update commentary.
1853         Change return type to int.  Return 1 if frame information has
1854         changed, 0 otherwise.
1855         (tui_before_prompt): Update commentary.
1856         * tui/tui-stack.h (tui_show_frame_info): Change return type to
1857         int.
1858
1859 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
1860
1861         PR tui/13378
1862         * frame.c (select_frame): Remove reference to
1863         deprecated_selected_frame_level_changed_hook.
1864         * frame.h (deprecated_selected_frame_level_changed_hook): Remove
1865         declaration.
1866         * stack.c (deprecated_selected_frame_level_changed_hook):
1867         Likewise.
1868         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
1869         Rename to ...
1870         (tui_refresh_frame_and_register_information): ... this.  Bail
1871         out if there is no stack.  Don't update register information
1872         unless registers_too_p is true.
1873         (tui_print_frame_info_listing_hook): Rename to ...
1874         (tui_dummy_print_frame_info_listing_hook): ... this.
1875         (tui_before_prompt): New function.
1876         (tui_normal_stop): New function.
1877         (tui_before_prompt_observer): New observer.
1878         (tui_normal_stop_observer): New observer.
1879         (tui_install_hooks): Set
1880         deprecated_print_frame_info_listing_hook to
1881         tui_dummy_print_frame_info_listing_hook.  Register
1882         tui_before_prompt_observer to call tui_before_prompt and
1883         tui_normal_stop_observer to call tui_normal_stop.  Remove
1884         reference to deprecated_selected_frame_level_changed_hook.
1885         (tui_remove_hooks): Detach and unset tui_before_prompt_observer
1886         and tui_normal_stop_observer.  Remove reference to
1887         deprecated_selected_frame_level_changed_hook.
1888
1889 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
1890
1891         PR tui/13378
1892         * tui/tui-stack.c (tui_set_locator_info): Change prototype to
1893         return an int instead of void.  Return whether the locator
1894         window has changed.
1895         (tui_show_frame_info): If the locator info has not changed, then
1896         bail out early to avoid refreshing the windows.
1897
1898 2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
1899
1900         * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
1901         LOCATOR_WIN to tui_alloc_content.
1902
1903 2015-06-30  Yao Qi  <yao.qi@linaro.org>
1904
1905         PR tdep/18605
1906         * arm-tdep.c (arm_get_next_pc_raw): Break for media
1907         instructions.
1908
1909 2015-06-29  Kevin Buettner  <kevinb@redhat.com>
1910
1911         * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
1912         (rx_dwarf_reg_to_regnum): New function.
1913         (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum.  Use dwarf2
1914         unwinding.
1915
1916 2015-06-29  Pedro Alves  <palves@redhat.com>
1917
1918         PR threads/18127
1919         * infcall.c (run_inferior_call): On infcall success, if the thread
1920         was marked stopped before, reset it back to stopped.
1921         * infrun.c (resume): Don't suppress the set_running calls when
1922         doing an infcall.
1923         (normal_stop): Only discard the finish_thread_state cleanup if the
1924         infcall succeeded.
1925
1926 2015-06-29  Pierre Langlois  <pierre.langlois@arm.com>
1927
1928         * MAINTAINERS (Write After Approval): Update my email address.
1929
1930 2015-06-26  Keith Seitz  <keiths@redhat.com>
1931             Doug Evans  <dje@google.com>
1932
1933         PR 16253
1934         * block.c (block_lookup_symbol): For non-function blocks,
1935         continue to search for a symbol with an exact domain match
1936         Otherwise, return any previously found "best domain" symbol.
1937         (block_lookup_symbol_primary): Likewise.
1938
1939 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
1940
1941         * NEWS: Mention the new option "history remove-duplicates".
1942         * top.c (history_remove_duplicates): New static variable.
1943         (show_history_remove_duplicates): New static function.
1944         (gdb_add_history): Conditionally remove duplicate history
1945         entries.
1946         (init_main): Add "history remove-duplicates" option.
1947
1948 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
1949
1950         * tui/tui-win.c (focus_completer): New static function.
1951         (_initialize_tui_win): Set the completion function of the
1952         "focus" command to focus_completer.
1953
1954 2015-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1955
1956         * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
1957         and language_asm..
1958         * symtab.c (find_function_start_sal): Likewise.
1959
1960 2015-06-25  Gary Benson  <gbenson@redhat.com>
1961
1962         * solib.c (solib_find_1): Set local variable sysroot to NULL if
1963         it is the empty string after trailing slashes have been stripped.
1964
1965 2015-06-25  Gary Benson  <gbenson@redhat.com>
1966
1967         * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
1968         * infrun.c (follow_exec): Likewise.
1969         * remote.c (remote_filesystem_is_local): Likewise.
1970         * solib.c (solib_find_1): Likewise.
1971
1972 2015-06-24  Keith Seitz  <keiths@redhat.com>
1973
1974         * build-id.c (build_id_to_debug_bfd): Add cleanup to free
1975         return value from lrealpath.
1976
1977 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
1978
1979         * remote-sim.c (gdbsim_open): Move sysroot update to the top.
1980
1981 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
1982
1983         * remote-sim.c: Include gdb_bfd.h.
1984         (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
1985         Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
1986
1987 2015-06-24  Yao Qi  <yao.qi@linaro.org>
1988
1989         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
1990         set_gdbarch_get_siginfo_type.
1991         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
1992         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
1993         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1994         * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
1995         * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
1996         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
1997         * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
1998         * linux-tdep.c (linux_get_siginfo_type): Change it to static.
1999         (linux_init_abi): Call set_gdbarch_get_siginfo_type.
2000         * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
2001
2002 2015-06-24  Gary Benson  <gbenson@redhat.com>
2003
2004         * common/buffer.c (stdint.h): Do not include.
2005         * common/print-utils.c (stdint.h): Likewise.
2006         * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
2007         * compile/compile-c-types.c (gdb_assert.h): Likewise.
2008         * ft32-tdep.c (gdb_assert.h): Likewise.
2009         * guile/scm-utils.c (stdint.h): Likewise.
2010         * i386-linux-tdep.c (stdint.h): Likewise.
2011         * i386-tdep.c (stdint.h): Likewise.
2012         * nat/linux-btrace.c (stdint.h): Likewise.
2013         * nat/linux-btrace.h (stdint.h): Likewise.
2014         * nat/linux-ptrace.c (stdint.h): Likewise.
2015         * nat/mips-linux-watch.h (stdint.h): Likewise.
2016         * ppc-linux-nat.c (stdint.h): Likewise.
2017         * python/python-internal.h (stdint.h): Likewise.
2018         * stub-termcap.c (stdlib.h): Likewise.
2019         * target/target.h (stdint.h): Likewise.
2020         * xtensa-linux-nat.c (stdint.h): Likewise.
2021
2022 2015-06-23  Patrick Palka  <patrick@parcs.ath.cx>
2023
2024         * top.c (init_history): Look at errno after calling strtol to
2025         properly map large GDBHISTSIZE values to infinity.
2026
2027 2015-06-23  Doug Evans  <dje@google.com>
2028
2029         * inferior.h (struct inferior_suspend_state): Delete, unused.
2030         All references deleted.
2031
2032 2015-06-23  Mike Frysinger  <vapier@gentoo.org>
2033
2034         * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
2035         (microblaze_push_dummy_call): Likewise.
2036         (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
2037         and set_gdbarch_push_dummy_call.
2038
2039 2015-06-23  Yao Qi  <yao.qi@linaro.org>
2040
2041         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
2042         Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
2043         (amd64_linux_store_inferior_registers): Likewise.
2044         * arm-linux-nat.c (fetch_fpregister): Likewise.
2045         (fetch_fpregs, store_fpregister): Likewise.
2046         (store_fpregister, store_fpregs): Likewise.
2047         (fetch_register, fetch_regs): Likewise.
2048         (store_register, store_regs): Likewise.
2049         (fetch_vfp_regs, store_vfp_regs): Likewise.
2050         (arm_linux_read_description): Check have_ptrace_getregset is
2051         TRIBOOL_UNKNOWN.  Set have_ptrace_getregset to TRIBOOL_TRUE
2052         or TRIBOOL_FALSE.
2053         * i386-linux-nat.c (fetch_xstateregs): Check
2054         have_ptrace_getregset is not TRIBOOL_TRUE.
2055         (store_xstateregs): Likewise.
2056         * linux-nat.c (have_ptrace_getregset): Change its type to
2057         enum tribool.
2058         * linux-nat.h (tribool): New enum.
2059         * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
2060         Check whether have_ptrace_getregset is TRIBOOL_TRUE.
2061
2062 2015-06-19  Doug Evans  <dje@google.com>
2063
2064         * NEWS: Mention Sun's version of stabs is no longer supported.
2065         * elfread.c (free_elfinfo): Delete.  All uses updated.
2066         (elfstab_offset_sections): Delete.  All uses updated.
2067         * gdb-stabs.h (stab_section_info): Delete.  All uses updated.
2068         * psympriv.h (partial_symtab) <section_offsets>: Delete.
2069         All uses updated.
2070         * psymtab.c (start_psymtab_common): Delete arg section_offsets.
2071         All callers updated.
2072
2073 2015-06-18  Simon Marchi  <simon.marchi@ericsson.com>
2074
2075         * common/rsp-low.c (needs_escaping): New.
2076         (remote_escape_output): Add unit_size parameter. Refactor to
2077         support multi-byte addressable units.  Rename parameters.
2078         * common/rsp-low.h (remote_escape_output): Add unit_size
2079         parameter and rename others. Update doc.
2080         * remote.c (align_for_efficient_write): New.
2081         (remote_write_bytes_aux): Add unit_size parameter and use it.
2082         Rename some variables.  Update doc.
2083         (remote_xfer_partial): Get unit size and use it.
2084         (remote_read_bytes_1): Add unit_size parameter and use it.
2085         Rename some variables. Update doc.
2086         (remote_write_bytes): Same.
2087         (remote_xfer_live_readonly_partial): Same.
2088         (remote_read_bytes): Same.
2089         (remote_flash_write): Update call to remote_write_bytes_aux.
2090         (remote_write_qxfer): Update call to remote_escape_output.
2091         (remote_search_memory): Same.
2092         (remote_hostio_pwrite): Same.
2093
2094 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
2095
2096         * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
2097         locations as inserted.
2098         Update and expand comment about permanent locations.
2099         (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
2100         Move comment to add_location_to_breakpoint.
2101         (update_global_location_list): Don't error out if a permanent
2102         breakpoint is not marked inserted.
2103         Don't error out if a non-permanent breakpoint location is inserted on
2104         top of a permanent breakpoint.
2105
2106 2015-06-17  Luis Machado  <lgustavo@codesourcery.com>
2107
2108         * breakpoint.c (make_breakpoint_permanent): Remove unused
2109         function.
2110         * breakpoint.h (make_breakpoint_permanent): Remove declaration.
2111
2112 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2113
2114         PR gdb/16999
2115         * NEWS: Mention new GDBHISTSIZE behavior.
2116         * top.c (init_history): For null or out-of-range GDBHISTSIZE,
2117         set history size to unlimited.  Ignore non-numeric GDBHISTSIZE.
2118
2119 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2120
2121         * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
2122         * top.c (init_history): Read from GDBHISTSIZE instead of
2123         HISTSIZE.
2124         (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
2125
2126 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2127
2128         * top.c (gdb_safe_append_history): Do not call
2129         history_truncate_file if the history is not stifled.
2130
2131 2015-06-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2132
2133         * syscalls/s390-linux.xml: Add syscalls 344 through 354.
2134         * syscalls/s390x-linux.xml: Likewise.
2135
2136 2015-06-16  Michael Eager  <eager@eagercon.com>
2137
2138         * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
2139
2140 2015-06-16  Patrick Palka  <patrick@parcs.ath.cx>
2141
2142         * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
2143         target_terminal_ours_for_output() before calling
2144         tui_show_frame_info(), and restore the original terminal
2145         settings afterwards.
2146
2147 2015-06-16  Martin Simmons  <martin@lispworks.com>  (tiny patch)
2148
2149         * arm-linux-nat.c: Include nat/linux-ptrace.h.
2150
2151 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
2152
2153         * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
2154         memory unit size.
2155         (mi_cmd_data_write_memory_bytes): Same.
2156
2157 2015-06-15  Simon Marchi  <simon.marchi@ericsson.com>
2158
2159         * corefile.c (write_memory): Update doc.
2160         * gdbcore.h (write_memory): Same.
2161
2162 2015-06-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
2163
2164         * linux-tdep.c (enum filterflags): Make it from anonymous enum.
2165         (dump_mapping_p): Use it for parameter filterflags.
2166         (linux_find_memory_regions_full): Use it for variable filterflags.
2167
2168 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
2169             Jan Kratochvil  <jan.kratochvil@redhat.com>
2170
2171         Merge multiple hex conversions.
2172         * monitor.c: Include rsp-low.h.
2173         (fromhex): Remove definition.
2174
2175 2015-06-15  Aleksandar Ristovski  <aristovski@qnx.com
2176             Jan Kratochvil  <jan.kratochvil@redhat.com>
2177
2178         Move utility functions to common/.
2179         * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
2180         Move defs to common/common-utils.c.
2181         * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
2182         (skip_to_space_const): Move decls to common/common-utils.h.
2183         * common/common-defs.h: Move include of common-types.h before
2184         common-utils.h.
2185         * common/common-utils.c: Include host-defs.h and ctype.h.
2186         (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
2187         from utils.c.
2188         (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
2189         cli/cli-utils.c.
2190         * common/common-utils.h (strtoulst): Move decl from utils.h.
2191         (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
2192         Move from cli/cli-utils.h.
2193         * common/host-defs.h: Include limits.h.
2194         (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
2195         (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
2196         * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
2197         common/common-utils.h.
2198         * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
2199         (strtoulst): Move to common/common-utils.c.
2200         * utils.h (strtoulst): Moved decl to common/common-utils.h.
2201
2202 2015-06-15  Yao Qi  <yao.qi@linaro.org>
2203
2204         * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
2205
2206 2015-06-10  Jon Turney  <jon.turney@dronecode.org.uk>
2207
2208         * build-id.c: Don't include elf-bfd.h.
2209         (build_id_bfd_get): Use bfd_build_id.
2210         (build_id_verify): Ditto.
2211         * build-id.h: Ditto.
2212         (find_separate_debug_file_by_buildid): Ditto.
2213         * python/py-objfile.c: Don't include elf-bfd.h.
2214         (objfpy_get_build_id) Use bfd_build_id.
2215         (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
2216         * coffread.c: Include build-id.h.
2217         (coff_symfile_read): Try find_separate_debug_file_by_buildid.
2218
2219 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
2220
2221         * windows-nat.c (do_windows_fetch_inferior_registers)
2222         (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
2223         conditional with __CYGWIN__.
2224
2225 2015-06-13  Andrew Burgess  <andrew.burgess@embecosm.com>
2226
2227         * completer.c: Add arch-utils.h include.
2228         (enum reg_completer_targets): New enum.
2229         (reg_or_group_completer_1): New function containing old
2230         reg_or_group_completer, add and use new parameter to control what
2231         is completed on.  Use get_current_arch rather than architecture of
2232         currently selected frame.
2233         (reg_or_group_completer): Call new reg_or_group_completer_1.
2234         (reggroup_completer): Call new reg_or_group_completer_1.
2235         * completer.h (reggroup_completer): Add declaration.
2236         * tui/tui-regs.c: Add 'completer.h' include.
2237         (tui_reg_next_command): Renamed to...
2238         (tui_reg_next): ...this.  Adjust parameters and return rather than
2239         display new group.
2240         (tui_reg_prev_command): Renamed to...
2241         (tui_reg_prev): ...this.  Adjust parameters and return rather than
2242         display new group.
2243         (tui_reg_float_command): Delete.
2244         (tui_reg_general_command): Delete.
2245         (tui_reg_system_command): Delete.
2246         (tui_reg_command): Rewrite to perform switching of register group.
2247         Add header comment.
2248         (tuireglist): Remove.
2249         (tui_reggroup_completer): New function.
2250         (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
2251         creation of 'tui reg' command.
2252         * NEWS: Add comment about 'tui reg' changes.
2253
2254 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
2255
2256         * target.c (target_read): Consider addressable unit size when
2257         reading from a memory object.
2258         (read_memory_robust): Same.
2259         (read_whatever_is_readable): Same.
2260         (target_write_with_progress): Consider addressable unit size
2261         when writing to a memory object.
2262         * target.h (target_read): Update documentation.
2263         (target_write): Add documentation.
2264
2265 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
2266
2267         * arch-utils.h (default_addressable_memory_unit_size): New.
2268         * arch-utils.c (default_addressable_memory_unit_size): New.
2269         * gdbarch.sh (addressable_memory_unit_size): New.
2270         * gdbarch.h: Re-generate.
2271         * gdbarch.c: Re-generate.
2272
2273 2015-06-12  Simon Marchi  <simon.marchi@ericsson.com>
2274
2275         * target.c (target_read): Rename variables and use
2276         TARGET_XFER_E_IO.
2277         (target_read_with_progress): Same.
2278         (read_memory_robust): Constify parameters and rename
2279         variables.
2280         (read_whatever_is_readable): Constify parameters,
2281         rename variables, adjust formatting.
2282         * target.h (read_memory_robust): Constify parameters.
2283
2284 2015-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
2285
2286         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
2287         synthetic (non-AltiVec) vector types.
2288         (ppc64_sysv_abi_return_value): Likewise.
2289
2290 2015-06-12  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2291
2292         PR breakpoints/16465
2293         * breakpoint.c (create_breakpoint): Save extra_string for
2294         pending breakpoints.
2295
2296 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2297
2298         * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
2299         and bt_mask to CORE_ADDR.
2300
2301 2015-06-11  Gary Benson <gbenson@redhat.com>
2302
2303         * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
2304         (mnsh_recv_message): Likewise.
2305
2306 2015-06-11  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2307
2308         * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
2309         long long int and plongest instead of %ll.
2310
2311 2015-06-11  Gary Benson <gbenson@redhat.com>
2312
2313         * nat/linux-namespaces.c (gdb_wait.h): New include.
2314         (sys/wait.h): Do not include.
2315
2316 2015-06-10  Simon Marchi  <simon.marchi@ericsson.com>
2317
2318         * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
2319         end_sequence is true.
2320
2321 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
2322
2323         Code cleanup.
2324         * solib-target.c (library_list_start_list): Use explicit NULL
2325         comparison.
2326
2327 2015-06-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
2328
2329         * solib-target.c (library_list_start_list): Do not dereference
2330         variable version in its initialization.  Make the VERSION check handle
2331         NULL.
2332         (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
2333
2334 2015-06-10  Gary Benson <gbenson@redhat.com>
2335
2336         * NEWS: Announce support for direct access of executable and
2337         shared library files when attaching to inferiors in containers
2338         on GNU/Linux systems.
2339
2340 2015-06-10  Gary Benson <gbenson@redhat.com>
2341
2342         * remote.c (struct remote_state) <fs_pid>: New field.
2343         (new_remote_state): Initialize the above.
2344         (PACKET_vFile_setfs): New enum value.
2345         (remote_hostio_set_filesystem): New function.
2346         (remote_hostio_open): Call the above.
2347         (remote_hostio_unlink): Likewise.
2348         (remote_hostio_readlink): Likewise.
2349         (_initialize_remote): Register new "set/show remote
2350         hostio-setfs-packet" command.
2351         * NEWS: Announce new vFile:setfs packet.
2352
2353 2015-06-10  Gary Benson <gbenson@redhat.com>
2354
2355         * linux-nat.c (nat/linux-namespaces.h): New include.
2356         (fileio.h): Likewise.
2357         (linux_nat_filesystem_is_local): New function.
2358         (linux_nat_fileio_pid_of): Likewise.
2359         (linux_nat_fileio_open): Likewise.
2360         (linux_nat_fileio_readlink): Likewise.
2361         (linux_nat_fileio_unlink): Likewise.
2362         (linux_nat_add_target): Initialize to_filesystem_is_local,
2363         to_fileio_open, to_fileio_readlink and to_fileio_unlink.
2364         (_initialize_linux_nat): New "set/show debug linux-namespaces"
2365         commands.
2366         * NEWS: Mention new "set/show debug linux-namespaces" commands.
2367
2368 2015-06-10  Gary Benson <gbenson@redhat.com>
2369
2370         * target.h (struct inferior): New forward declaration.
2371         (struct target_ops) <to_filesystem_is_local>: Update comment.
2372         (struct target_ops) <to_fileio_open>: New argument inf.
2373         Update comment.  All implementations updated.
2374         (struct target_ops) <to_fileio_unlink>: Likewise.
2375         (struct target_ops) <to_fileio_readlink>: Likewise.
2376         (target_filesystem_is_local): Update comment.
2377         (target_fileio_open): New argument inf.  Update comment.
2378         (target_fileio_unlink): Likewise.
2379         (target_fileio_readlink): Likewise.
2380         (target_fileio_read_alloc): Likewise.
2381         (target_fileio_read_stralloc): Likewise.
2382         * target.c (target_fileio_open): New argument inf.
2383         Pass inf to implementation.  Update debug printing.
2384         (target_fileio_unlink): Likewise.
2385         (target_fileio_readlink): Likewise.
2386         (target_fileio_read_alloc_1): New argument inf. Pass inf
2387         to target_fileio_open.
2388         (target_fileio_read_alloc): New argument inf. Pass inf to
2389         target_fileio_read_alloc_1.
2390         (target_fileio_read_stralloc): Likewise.
2391         * gdb_bfd.c (inferior.h): New include.
2392         (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
2393         argument with new argument "inferior".  Pass inferior to
2394         target_fileio_open.
2395         (gdb_bfd_open): Supply inferior argument to
2396         gdb_bfd_iovec_fileio_open.
2397         * linux-tdep.c (linux_info_proc): Supply inf argument to
2398         relevant target_fileio calls.
2399         (linux_find_memory_regions_full): Likewise.
2400         (linux_fill_prpsinfo): Likewise.
2401         * remote.c (remote_filesystem_is_local): Supply inf
2402         argument to remote_hostio_open.
2403         (remote_file_put): Likewise.
2404         (remote_file_get): Likewise.
2405         (remote_file_delete): Supply inf argument to
2406         remote_hostio_unlink.
2407
2408 2015-06-10  Gary Benson <gbenson@redhat.com>
2409
2410         * inf-child.c (inf_child_fileio_open): Replace comment.
2411         (inf_child_fileio_pwrite): Likewise.
2412         (inf_child_fileio_pread): Likewise.
2413         (inf_child_fileio_fstat): Insert blank line before comment.
2414         (inf_child_fileio_close): Replace comment.
2415         (inf_child_fileio_unlink): Likewise.
2416         (inf_child_fileio_readlink): Likewise.
2417         * remote.c (remote_hostio_open): Likewise.
2418         (remote_hostio_pread): Likewise.
2419         (remote_hostio_pwrite): Likewise.
2420         (remote_hostio_close): Likewise.
2421         (remote_hostio_unlink): Likewise.
2422         (remote_hostio_readlink): Likewise.
2423         (remote_hostio_fstat): Likewise.
2424         (remote_filesystem_is_local): Likewise.
2425         * target.c (target_fileio_open): Likewise.
2426         (target_fileio_pwrite): Likewise.
2427         (target_fileio_pread): Likewise.
2428         (target_fileio_fstat): Insert blank line before comment.
2429         (target_fileio_close): Replace comment.
2430         (target_fileio_unlink): Likewise.
2431         (target_fileio_readlink): Likewise.
2432         (target_fileio_read_alloc): Likewise.
2433         (target_fileio_read_stralloc): Likewise.
2434
2435 2015-06-10  Gary Benson <gbenson@redhat.com>
2436
2437         * linux-thread-db.c (nat/linux-namespaces.h): New include.
2438         (check_pid_namespace_match): Use linux_ns_same rather than
2439         linux_proc_pid_get_ns to spot PID namespace mismatches.
2440         * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
2441         * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
2442
2443 2015-06-10  Gary Benson <gbenson@redhat.com>
2444
2445         * configure.ac (AC_CHECK_FUNCS): Add setns.
2446         * config.in: Regenerate.
2447         * configure: Likewise.
2448         * nat/linux-namespaces.h: New file.
2449         * nat/linux-namespaces.c: Likewise.
2450         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
2451         (linux-namespaces.o): New rule.
2452         * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
2453         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2454         * config/arm/linux.mh (NATDEPFILES): Likewise.
2455         * config/i386/linux.mh (NATDEPFILES): Likewise.
2456         * config/i386/linux64.mh (NATDEPFILES): Likewise.
2457         * config/ia64/linux.mh (NATDEPFILES): Likewise.
2458         * config/m32r/linux.mh (NATDEPFILES): Likewise.
2459         * config/m68k/linux.mh (NATDEPFILES): Likewise.
2460         * config/mips/linux.mh (NATDEPFILES): Likewise.
2461         * config/pa/linux.mh (NATDEPFILES): Likewise.
2462         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
2463         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2464         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2465         * config/s390/linux.mh (NATDEPFILES): Likewise.
2466         * config/sparc/linux.mh (NATDEPFILES): Likewise.
2467         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2468         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2469         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2470
2471 2015-06-10  Gary Benson <gbenson@redhat.com>
2472
2473         * utils.h (make_cleanup_close): Moved to common/filestuff.h.
2474         * utils.c (do_close_cleanup): Moved to common/filestuff.c.
2475         (make_cleanup_close): Likewise.
2476         * common/filestuff.h (make_cleanup_close): Moved from utils.h.
2477         * common/filestuff.c (do_close_cleanup): Moved from utils.c.
2478         (make_cleanup_close): Likewise.
2479
2480 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
2481
2482         * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
2483         from SuspendThread().
2484
2485 2015-06-03  Jon Turney  <jon.turney@dronecode.org.uk>
2486
2487         * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
2488         from OutputDebugString.
2489
2490 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2491                         Mircea Gherzan  <mircea.gherzan@intel.com>
2492
2493         * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
2494         MPX_BT_MASK_32): New macros.
2495         (i386_mpx_set_bounds): New function that implements
2496         the command "set-mpx-bound".
2497         (i386_mpx_enabled): Helper function to test MPX availability.
2498         (i386_mpx_bd_base): Helper function to calculate the base directory
2499         address.
2500         (i386_mpx_get_bt_entry): Helper function to access a bound
2501         table entry.
2502         (i386_mpx_print_bounds): Effectively display bound information.
2503         (_initialize_i386_tdep): Add new commands to commands "set mpx" and
2504         "show mpx".
2505         (_initialize_i386_tdep):
2506         Add "bound" to the commands "show mpx" and "set mpx" commands.
2507         (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
2508         and "show mpx" commands.
2509         * NEWS: List new commands for MPX support.
2510
2511 2015-06-09  Gary Benson <gbenson@redhat.com>
2512
2513         * common/fileio.h (fileio_to_host_mode): New declaration.
2514         * common/fileio.c (fileio_to_host_mode): New Function.
2515         * inf-child.c (inf_child_fileio_open): Process mode argument
2516         with fileio_to_host_mode.
2517
2518 2015-06-09  Gary Benson <gbenson@redhat.com>
2519
2520         * common/fileio.c (fileio_mode_pack): Fix preprocessor
2521         conditional.
2522
2523 2015-06-05  Gary Benson <gbenson@redhat.com>
2524
2525         * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
2526         * remote.c (remote_filesystem_is_local): ...here.
2527
2528 2015-06-04  Yao Qi  <yao.qi@linaro.org>
2529
2530         * gdbarch.c: Regenerate it.
2531
2532 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
2533
2534         * arch-utils.c (default_infcall_munmap): New.
2535         * arch-utils.h (default_infcall_munmap): New declaration.
2536         * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
2537         (munmap_list_free, munmap_listp_free_cleanup): New.
2538         (struct setup_sections_data): Add field munmap_list_headp.
2539         (setup_sections): Call munmap_list_add.
2540         (compile_object_load): New variable munmap_list_head, initialize
2541         setup_sections_data.munmap_list_headp, return munmap_list_head.
2542         * compile/compile-object-load.h (struct munmap_list): New declaration.
2543         (struct compile_module): Add field munmap_list_head.
2544         (munmap_list_free): New declaration.
2545         * compile/compile-object-run.c (struct do_module_cleanup): Add field
2546         munmap_list_head.
2547         (do_module_cleanup): Call munmap_list_free.
2548         (compile_object_run): Pass munmap_list_head to do_module_cleanup.
2549         * gdbarch.c: Regenerate.
2550         * gdbarch.h: Regenerate.
2551         * gdbarch.sh (infcall_munmap): New.
2552         * linux-tdep.c (linux_infcall_munmap): New.
2553         (linux_init_abi): Install it.
2554
2555 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
2556
2557         PR gdb/15564
2558         * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
2559
2560 2015-06-02  Yao Qi  <yao.qi@linaro.org>
2561
2562         * i386-linux-nat.c: Include linux-nat.h.
2563
2564 2015-06-01  Andreas Schwab  <schwab@linux-m68k.org>
2565             Jan Kratochvil  <jan.kratochvil@redhat.com>
2566
2567         PR symtab/18392
2568         * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
2569         assertion.
2570         * dwarf2loc.c (chain_candidate): Likewise.
2571
2572 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2573
2574         * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
2575         (store_vfp_regs): Use PTRACE_SETREGSET.
2576
2577 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2578
2579         * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
2580         (fetch_fpregs): Likewise.
2581         * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
2582         (store_fpregs): Likewise.
2583
2584 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2585
2586         * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
2587         (fetch_regs): Likewise.
2588         (store_regs): Use PTRACE_SETREGSET.
2589         (store_register): Likewise.
2590
2591 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2592
2593         * arm-linux-nat.c (arm_linux_read_description): Check whether
2594         kernel supports PTRACE_GETREGSET.
2595
2596 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2597
2598         * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
2599         * linux-nat.c: ... here.
2600         * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
2601         to ...
2602         * linux-nat.h: ... here.
2603
2604 2015-06-01  Yao Qi  <yao.qi@linaro.org>
2605
2606         * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
2607         * i386-linux-nat.c: Likewise.
2608         * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
2609         * s390-linux-nat.c: Include "nat/linux-ptrace.h".
2610         (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
2611         * x86-linux-nat.c: Include "nat/linux-ptrace.h".
2612         * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
2613
2614 2015-05-30  Eli Zaretskii  <eliz@gnu.org>
2615
2616         * go32-nat.c (go32_xfer_memory): Fix the return value to be
2617         compatible to what read_child and write_child return.  This
2618         unbreaks that DJGPP build of GDB which was broken since v7.7.
2619
2620 2015-05-29  Martin Galvan  <martin.galvan@tallertechnologies.com>
2621
2622         * MAINTAINERS (Write After Approval): Add Martin Galvan.
2623
2624 2015-05-29  Roland McGrath  <mcgrathr@google.com>
2625
2626         PR gdb/18464
2627         * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
2628         rather than internal_error for an unrecognized value.
2629
2630 2015-05-29  Max Filippov  <jcmvbkbc@gmail.com>
2631
2632         * xtensa-tdep.c (xtensa_pseudo_register_read)
2633         (xtensa_pseudo_register_write): Don't alias last pseudo register
2634         to a1.
2635
2636 2015-05-28  Don Breazeal  <donb@codesourcery.com>
2637
2638         * infrun.c (follow_fork_inferior): Ensure the use of
2639         process-style ptids (pid,0,0) in verbose/debug "Detaching"
2640         messages.
2641
2642 2015-05-28  Doug Evans  <dje@google.com>
2643
2644         * dwarf2read.c (record_line_ftype): Remove, duplicate.
2645
2646 2015-05-28  Yao Qi  <yao.qi@linaro.org>
2647
2648         * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
2649         (arm_linux_fetch_inferior_registers): Use
2650         tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
2651         (arm_linux_store_inferior_registers): Likewise.
2652         (arm_linux_read_description): Don't set
2653         arm_linux_has_wmmx_registers.
2654         * arm-tdep.c (arm_gdbarch_init): Set
2655         tdep->have_wmmx_registers according target descriptions.
2656         * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
2657         field.
2658
2659 2015-05-28  Yao Qi  <yao.qi@linaro.org>
2660
2661         * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
2662         (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
2663         instead of arm_linux_vfp_register_count.
2664         (store_vfp_regs): Likewise.
2665         (arm_linux_fetch_inferior_registers): Likewise.
2666         (arm_linux_store_inferior_registers): Likewise.
2667         (arm_linux_read_description): Don't set
2668         arm_linux_vfp_register_count.
2669         * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
2670         Adjust.
2671         * arm-tdep.c (arm_gdbarch_init): Add assert on
2672         vfp_register_count.
2673         * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
2674         field to vfp_register_count.  All users updated.
2675
2676 2015-05-28  Kyle Huey  <me@kylehuey.com>  (tiny patch)
2677
2678         * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
2679         ELFOSABI_GNU binaries.
2680
2681 2015-05-27  Doug Evans  <dje@google.com>
2682
2683         * dwarf2read.c (lnp_state_machine): New typedef.
2684         (lnp_reader_state): New typedef.
2685         (dwarf_record_line_1): Renamed from dwarf_record_line.
2686         All callers updated.
2687         (dwarf_record_line): New function.
2688         (init_lnp_state_machine): New function.
2689         (check_line_address): Replace p_record_line parameter with state.
2690         All callers updated.
2691         (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
2692         Update to record state in lnp_state_machine.
2693
2694 2015-05-27  Doug Evans  <dje@google.com>
2695
2696         * dwarf2read.c (record_line_ftype): New typedef.
2697         (check_line_address): New function.
2698         (dwarf_decode_lines_1): Call it.
2699
2700 2015-05-27  Doug Evans  <dje@google.com>
2701
2702         * NEWS: Mention "set debug dwarf-line".
2703         * dwarf2read.c (dwarf_line_debug): New static global.
2704         (add_include_dir): Add debug dwarf-line support.
2705         (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
2706         (_initialize_dwarf2_read): New parameter "debug dwarf-line".
2707
2708 2015-05-27  Doug Evans  <dje@google.com>
2709
2710         * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
2711         All callers updated.
2712         (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
2713         * cp-support.h (cp_lookup_nested_symbol): Update.
2714
2715 2015-05-27  Doug Evans  <dje@google.com>
2716
2717         PR symtab/18258
2718         * block.c (block_find_symbol): New function.
2719         (block_find_non_opaque_type): Ditto.
2720         (block_find_non_opaque_type_preferred): Ditto.
2721         * block.h (block_symbol_matcher_ftype): New typedef.
2722         (block_find_symbol): Declare.
2723         (block_find_non_opaque_type): Ditto.
2724         (block_find_non_opaque_type_preferred): Ditto.
2725         * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
2726         * psymtab.c (psym_lookup_symbol): Ditto.
2727         * symtab.c (basic_lookup_transparent_type_1): New function.
2728         (basic_lookup_transparent_type): Call it.
2729
2730 2015-05-27  Yao Qi  <yao.qi@linaro.org>
2731
2732         * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
2733         AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
2734
2735 2015-05-27  Yao Qi  <yao.qi@linaro.org>
2736
2737         * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
2738         before operator &&.
2739         (aarch64_record_load_store): Likewise.
2740
2741 2015-05-26  Doug Evans  <dje@google.com>
2742
2743         PR c++/18141, c++/18417.
2744         * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
2745         a typedef.
2746
2747 2015-05-26  Doug Evans  <dje@google.com>
2748
2749         * NEWS: Add entries for command renamings.
2750         * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
2751         All uses updated.
2752         (dwarf_die_debug): Renamed from dwarf2_die_debug.  All uses updated.
2753         (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
2754         All uses updated.
2755         (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
2756         All callers updated.  Fix spelling of DWARF in help text.
2757         (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
2758         All uses updated.
2759         (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
2760         All uses updated.
2761         (set_dwarf_cmd): Renamed from set_dwarf2_cmd.  All callers updated.
2762         (show_dwarf_cmd): Renamed from show_dwarf2_cmd.  All callers updated.
2763         (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
2764         All uses updated.
2765         (show_dwarf_always_disassemble): Renamed from
2766         show_dwarf2_always_disassemble.  All callers updated.
2767         (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
2768         "set/show dwarf".  Rename "set/show dwarf2 max-cache-age" to
2769         "set/show dwarf max-cache-age".  Rename
2770         "set/show dwarf2 always-disassemble" to
2771         "set/show dwarf always-disassemble".  Rename
2772         "set/show debug dwarf2-read" to "set/show debug dwarf-read".  Rename
2773         "set/show debug dwarf2-die" to "set/show debug dwarf-die".
2774
2775 2015-05-26  Doug Evans  <dje@google.com>
2776
2777         PR python/18438
2778         * python/py-lazy-string.c (stpy_convert_to_value): Use
2779         gdbpy_gdb_memory_error not PyExc_MemoryError.
2780         (gdbpy_create_lazy_string_object): Ditto.
2781
2782 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
2783
2784         * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
2785
2786 2015-05-26  Andrew Burgess  <andrew.burgess@embecosm.com>
2787
2788         * tui/tui-regs.c (tui_reg_prev_command): New function.
2789         (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
2790         * reggroups.c (reggroup_prev): New function.
2791         * reggroups.h (reggroup_prev): Add declaration.  Update comment.
2792
2793 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
2794             Yao Qi  <yao.qi@linaro.org>
2795
2796         * aarch64-linux-tdep.c: Include linux-record.h and
2797         record-full.h.
2798         (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
2799         (aarch64_syscall): New enum.
2800         (aarch64_canonicalize_syscall): New function.
2801         (aarch64_all_but_pc_registers_record): New function.
2802         (aarch64_linux_syscall_record): New function.
2803         (aarch64_linux_init_abi): Install AArch64 process record
2804         handler.  Update to handle syscall recording.
2805         * aarch64-tdep.c: Include record.h and record-full.h.
2806         (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
2807         (struct aarch64_mem_r): Define.
2808         (aarch64_record_result): New enum.
2809         (struct insn_decode_record): Define.
2810         (insn_decode_record): New typedef.
2811         (aarch64_record_data_proc_reg): New function.
2812         (aarch64_record_data_proc_imm): New function.
2813         (aarch64_record_branch_except_sys): New function.
2814         (aarch64_record_load_store): New function.
2815         (aarch64_record_data_proc_simd_fp): New function.
2816         (aarch64_record_asimd_load_store): New function.
2817         (aarch64_record_decode_insn_handler): New function.
2818         (deallocate_reg_mem): New function.
2819         (aarch64_process_record): New function.
2820         * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
2821         New field.
2822         (aarch64_process_record): New extern declaration.
2823         * configure.tgt: Add linux-record.o to gdb_target_obs.
2824         * linux-record.h (struct linux_record_tdep) <arg7>: New field.
2825
2826 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
2827
2828         * NEWS: Add a note on process record-replay support on aarch64*-linux*
2829         targets.
2830
2831 2015-05-26  Martin Galvan  <martin.galvan@tallertechnologies.com>
2832
2833         * amd64-tdep.c: Replace in_function_epilogue_p with
2834         stack_frame_destroyed_p throughout.
2835         * arch-utils.c: Ditto.
2836         * arch-utils.h: Ditto.
2837         * arm-tdep.c: Ditto.
2838         * breakpoint.c: Ditto.
2839         * gdbarch.sh: Ditto.
2840         * hppa-tdep.c: Ditto.
2841         * i386-tdep.c: Ditto.
2842         * mips-tdep.c: Ditto.
2843         * nios2-tdep.c: Ditto.
2844         * rs6000-tdep.c: Ditto.
2845         * s390-linux-tdep.c: Ditto.
2846         * score-tdep.c: Ditto.
2847         * sh-tdep.c: Ditto.
2848         * sparc-tdep.c: Ditto.
2849         * sparc-tdep.h: Ditto.
2850         * sparc64-tdep.c: Ditto.
2851         * spu-tdep.c: Ditto.
2852         * tic6x-tdep.c: Ditto.
2853         * tilegx-tdep.c: Ditto.
2854         * xstormy16-tdep.c: Ditto.
2855         * gdbarch.c, gdbarch.h: Re-generated.
2856
2857 2015-05-22  Andrew Burgess  <andrew.burgess@embecosm.com>
2858
2859         * NEWS: Mention 'tui enable' and 'tui disable'.
2860         * tui/tui.c (tui_enable_command): New function.
2861         (tui_disable_command): New function.
2862         (_initialize_tui): New function.
2863
2864 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2865
2866         * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
2867
2868 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2869
2870         * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
2871         buf_ptr is freed.
2872
2873 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2874
2875         * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
2876         into ...
2877         (tui_set_layout_for_display_command): ...here, before calling
2878         tui_set_layout.  Only set the layout if gdb has not already
2879         entered the TUI_FAILURE state.
2880
2881 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2882
2883         * tui/tui-layout.c (layout_completer): New function.
2884         (_initialize_tui_layout): Set completer on layout command.
2885
2886 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2887
2888         * tui/tui-layout.c (tui_set_layout): Remove
2889         tui_register_display_type parameter.  Remove all checking of this
2890         parameter, and reindent function.  Update header comment.
2891         (tui_set_layout_for_display_command): Rename to...
2892         (tui_set_layout_by_name): ...this, and don't check for different
2893         register class types, don't pass a tui_register_display_type to
2894         tui_set_layout.  Update header comment.
2895         (layout_names): Remove register set specific names.
2896         * tui/tui-layout.h (tui_set_layout): Remove
2897         tui_register_display_type parameter.
2898         * tui/tui.c (tui_rl_change_windows): Don't pass a
2899         tui_register_display_type to tui_set_layout.
2900         (tui_rl_delete_other_windows): Likewise.
2901         (tui_enable): Likewise.
2902         * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
2903         (TUI_FLOAT_REGS_NAME_LOWER): Remove.
2904         (TUI_GENERAL_REGS_NAME): Remove.
2905         (TUI_GENERAL_REGS_NAME_LOWER): Remove.
2906         (TUI_SPECIAL_REGS_NAME): Remove.
2907         (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
2908         (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
2909         (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
2910         (enum tui_register_display_type): Remove.
2911         (struct tui_layout_def): Remove regs_display_type and
2912         float_regs_display_type fields.
2913         (struct tui_data_info): Remove regs_display_type field.
2914         (tui_layout_command): Use new name for
2915         tui_set_layout_for_display_command.
2916         * tui/tui-data.c (layout_def): Don't initialise removed fields.
2917         (tui_clear_win_detail): Don't initialise removed fields of
2918         win_info.
2919         * tui/tui-regs.c (tui_show_registers): Use new name for
2920         tui_set_layout_for_display_command.
2921         * tui/tui.h (tui_set_layout_for_display_command): Rename
2922         declaration to...
2923         (tui_set_layout_by_name): ...this.
2924         * printcmd.c (display_command): Remove tui related layout call,
2925         and reindent.
2926
2927 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
2928
2929         * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
2930         (handle_inferior_event): New function.
2931
2932 2015-05-20  Joel Brobecker  <brobecker@adacore.com>
2933
2934         * ada-lang.c (to_fixed_array_type): Rename local variable
2935         typename into type_name.
2936
2937 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2938
2939         Fix ASAN crash for gdb.compile/compile.exp.
2940         * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
2941
2942 2015-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2943
2944         * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
2945         (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
2946         * compile/compile-object-load.c (setup_sections, compile_object_load):
2947         Likewise.
2948         * compile/compile.c (compile_to_object): Likewise.
2949
2950 2015-05-16  Doug Evans  <xdje42@gmail.com>
2951
2952         * NEWS: Mention support for unbuffered Guile memory ports.
2953         * scm-ports.c (ioscm_memory_port): Update comments on end, size.
2954         (ioscm_lseek_address): Improve overflow calculation.
2955         (gdbscm_memory_port_fill_input): Add assert.
2956         (gdbscm_memory_port_write): Handle unbuffered ports.
2957         Handle large writes identical to Guile's fport_write.
2958         (gdbscm_memory_port_seek): Fix seeking past end check.
2959         (gdbscm_memory_port_close): Handle closing unbuffered port.
2960         (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
2961         (ioscm_init_memory_port): Handle unbuffered ports.
2962         (ioscm_reinit_memory_port): Ditto.
2963         (ioscm_init_memory_port): Update size calculation.
2964         (gdbscm_open_memory): Support zero sized ports.
2965
2966 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2967
2968         * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
2969         variable compiler warnings.
2970
2971 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2972
2973         * compile/compile-object-load.c (get_out_value_type): Fix returned type.
2974
2975 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2976             Phil Muldoon  <pmuldoon@redhat.com>
2977
2978         * NEWS (Changes since GDB 7.9): Add compile print.
2979         * compile/compile-c-support.c (add_code_header, add_code_footer)
2980         (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
2981         COMPILE_I_PRINT_VALUE_SCOPE.
2982         * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
2983         (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
2984         New.
2985         * compile/compile-object-load.c: Include block.h.
2986         (get_out_value_type): New function.
2987         (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
2988         COMPILE_I_PRINT_VALUE_SCOPE.  Set compile_module's OUT_VALUE_ADDR and
2989         OUT_VALUE_TYPE.
2990         * compile/compile-object-load.h (struct compile_module): Add fields
2991         out_value_addr and out_value_type.
2992         * compile/compile-object-run.c: Include valprint.h and compile.h.
2993         (struct do_module_cleanup): Add fields out_value_addr and
2994         out_value_type.
2995         (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
2996         COMPILE_I_PRINT_VALUE_SCOPE.
2997         (compile_object_run): Propagate out_value_addr and out_value_type.
2998         Pass OUT_VALUE_ADDR.
2999         * compile/compile.c: Include valprint.h.
3000         (compile_print_value, compile_print_command): New functions.
3001         (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
3002         (_initialize_compile): Update compile code help text.  Install
3003         compile_print_command.
3004         * compile/compile.h (compile_print_value): New prototype.
3005         * defs.h (enum compile_i_scope_types): Add
3006         COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
3007
3008 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3009
3010         * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
3011         Rely on its parameter count.
3012         (compile_object_load): Replace lookup_minimal_symbol_text by
3013         lookup_global_symbol_from_objfile.  Verify FUNC_SYM.  Set it in the
3014         return value.
3015         * compile/compile-object-load.h (struct compile_module): Replace
3016         func_addr by func_sym.
3017         * compile/compile-object-run.c: Include block.h.
3018         (compile_object_run): Reset module variable after it is freed.  Use
3019         FUNC_SYM instead of FUNC_ADDR.  Rely on it.
3020
3021 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3022
3023         * compile/compile-c-support.c (print_one_macro): Use #ifndef.
3024         (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
3025         (c_compute_program): Call generate_register_struct after typedefs.
3026         * compile/compile-loc2c.c (push, pushf_register_address)
3027         (pushf_register): Cast to GCC_UINTPTR.
3028         (do_compile_dwarf_expr_to_c): Use unused attribute.  Add space after
3029         type.  Use GCC_UINTPTR instead of void *.  Remove excessive cast.
3030         (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
3031         * compile/compile.c (_initialize_compile): Enable warnings for
3032         COMPILE_ARGS.
3033
3034 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3035
3036         * cli/cli-script.c (execute_control_command): Update
3037         eval_compile_command caller.
3038         * compile/compile-object-load.c (compile_object_load): Add parameters
3039         scope and scope_data.  Set them.
3040         * compile/compile-object-load.h (struct compile_module): Add fields
3041         scope and scope_data.
3042         (compile_object_load): Add parameters scope and scope_data.
3043         * compile/compile-object-run.c (struct do_module_cleanup): Add fields
3044         scope and scope_data.
3045         (compile_object_run): Propagate the fields scope and scope_data.
3046         * compile/compile.c (compile_file_command, compile_code_command):
3047         Update eval_compile_command callers.
3048         (eval_compile_command): Add parameter scope_data.  Pass it plus scope.
3049         * compile/compile.h (eval_compile_command): Add parameter scope_data.
3050         * defs.h (struct command_line): Add field scope_data.
3051
3052 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3053
3054         * printcmd.c (struct format_data): Move it to valprint.h.
3055         (print_command_parse_format, print_value): New functions from ...
3056         (print_command_1): ... here.  Call them.
3057         * valprint.h (struct format_data): Move it here from printcmd.c.
3058         (print_command_parse_format, print_value): New declarations.
3059
3060 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
3061
3062         * compile/compile-object-load.c (compile_object_load): Add
3063         COMPILE_DEBUG message.
3064
3065 2015-05-15  Jerome Guitton  <guitton@adacore.com>
3066
3067         * ada-lang.c (ada_value_ptr_subscript): Use enum position of
3068         index to get element instead of enum value.
3069         (ada_value_slice_from_ptr, ada_value_slice): Use enum position
3070         of index to compute length, but enum values to compute bounds.
3071         (ada_array_length): Use enum position of index instead of enum value.
3072         (pos_atr): Move position computation to...
3073         (ada_evaluate_subexp): Use enum values to compute bounds.
3074         * gdbtypes.c (discrete_position): ...this new function.
3075         * gdbtypes.h (discrete_position): New function declaration.
3076         * valprint.c (val_print_array_elements): Call discrete_position
3077         to handle array indexed by non-contiguous enumeration types.
3078
3079 2015-05-15  Jerome Guitton  <guitton@adacore.com>
3080
3081         * ada-lang.c (find_parallel_type_by_descriptive_type):
3082         Go through typedefs during lookup.
3083         (to_fixed_array_type): Add support for non-bit packed arrays
3084         as variable-length fields.
3085
3086 2015-05-15  Pedro Alves  <palves@redhat.com>
3087             Simon Marchi  <simon.marchi@ericsson.com>
3088
3089         * event-loop.c (gdb_notifier) <next_file_handler,
3090         next_poll_fds_index>: New fields.
3091         (get_next_file_handler_to_handle_and_advance): New function.
3092         (delete_file_handler): If deleting the next file handler to
3093         handle, advance to the next file handler.
3094         (gdb_wait_for_event): Bail early if no event fired.  Poll file
3095         handlers in round-robin fashion.
3096
3097 2015-05-15  Pedro Alves  <palves@redhat.com>
3098
3099         * linux-tdep.c (linux_find_memory_regions_full): Rename local
3100         'private' to 'priv'.
3101
3102 2015-05-15  Pedro Alves  <palves@redhat.com>
3103
3104         * nat/linux-nat.h: Include "target/waitstatus.h".
3105
3106 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
3107
3108         * python/py-unwind.c (struct reg_info): Move out of ...
3109         (struct cached_frame_info): ... this scope.
3110         (pending_frame_object_type, unwind_info_object_type): Make extern.
3111
3112 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
3113
3114         * ada-lang.c (ada_value_primitive_packed_val): Make sure
3115         accumSize is never negative.
3116
3117 2015-05-14  Patrick Palka  <patrick@parcs.ath.cx>
3118
3119         * tui/tui-command.c: Remove include of <ctype.h>.
3120         (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
3121
3122 2015-05-13  Martin Galvan  <martin.galvan@tallertechnologies.com>
3123
3124         * dwarf2read.c (die_needs_namespace): Return 1 for
3125         DW_TAG_inlined_subroutine.
3126
3127 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3128
3129         * regcache.c (regcache_cpy_no_passthrough): New declaration.
3130         (regcache_cpy_no_passthrough): Make it static, add function comment.
3131         * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
3132         (regcache_cpy_no_passthrough): Remove declaration.
3133
3134 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3135
3136         * gdbthread.h (struct thread_control_state): Update comment for
3137         proceed_to_finish.
3138         * infcall.c (run_inferior_call): Update comment about
3139         proceed_to_finish.
3140         * infcmd.c (get_return_value): Update comment about stop_registers.
3141         (finish_forward): Update comment about proceed_to_finish.
3142         * infrun.c (stop_registers): Remove.
3143         (clear_proceed_status, normal_stop): Remove stop_registers handling.
3144         * infrun.h (stop_registers): Remove.
3145
3146 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3147
3148         * infcall.c (struct dummy_frame_context_saver)
3149         (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
3150         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
3151         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
3152         New.
3153         (call_function_by_hand_dummy): Move discard_cleanups of
3154         inf_status_cleanup before dummy_frame_push.  Call
3155         dummy_frame_context_saver_setup and prepare context_saver_cleanup.
3156         Use dummy_frame_context_saver_get_regs instead of stop_registers.
3157         * infcall.h (struct dummy_frame_context_saver)
3158         (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
3159         (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
3160         New declarations.
3161         * infcmd.c: Include infcall.h.
3162         (get_return_value): Add parameter ctx_saver, use it instead of
3163         stop_registers.
3164         (print_return_value): Add parameter ctx_saver, pass it.
3165         (struct finish_command_continuation_args): Add field ctx_saver.
3166         (finish_command_continuation): Update print_return_value caller.
3167         (finish_command_continuation_free_arg): Free also ctx_saver.
3168         (finish_forward): Call dummy_frame_context_saver_setup.
3169         * inferior.h (struct dummy_frame_context_saver): New declaration.
3170         (get_return_value): Add parameter ctx_saver.
3171         * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
3172         get_return_value caller.
3173
3174 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3175
3176         * dummy-frame.c (struct dummy_frame_dtor_list): New.
3177         (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
3178         (remove_dummy_frame): Process dtor_list.
3179         (pop_dummy_frame): Process dtor_list.
3180         (register_dummy_frame_dtor): Maintain dtor_list.
3181         (find_dummy_frame_dtor): Handle dtor_list.
3182         * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
3183         Update comments.
3184
3185 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3186
3187         * compile/compile-object-run.c (do_module_cleanup): Add parameter
3188         registers_valid.
3189         (compile_object_run): Update do_module_cleanup caller.
3190         * dummy-frame.c: Include infcall.h.
3191         (struct dummy_frame): Update dtor comment.
3192         (remove_dummy_frame): Call dtor.
3193         (pop_dummy_frame): Update dtor caller.
3194         * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
3195         registers_valid.
3196
3197 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
3198
3199         GDB 7.9.1 released.
3200
3201 2015-05-13  Joel Brobecker  <brobecker@adacore.com>
3202
3203         * NEWS: Create "Changes in GDB 7.9.1" section.  Move news about
3204         Xmethods now being able to specify a result type to that new
3205         sectioin.
3206
3207 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
3208
3209         * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
3210         first before resizing the window.
3211         * tui/tui.c (tui_enable): Likewise.
3212
3213 2015-05-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3214
3215         * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
3216         * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
3217         * infcall.c (call_function_by_hand_dummy): Use proper typedef for
3218         dummy_dtor parameter.
3219         * infcall.h: Include dummy-frame.h.
3220         (call_function_by_hand_dummy_dtor_ftype): Remove.
3221         (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
3222         parameter.
3223
3224 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
3225
3226         PR gdb/17820
3227         * top.c (history_size_setshow_var): Change type to signed.
3228         Initialize to -2.  Update documentation.
3229         (set_readline_history_size): Define.
3230         (set_history_size_command): Use it.  Remove logic for handling
3231         out-of-range sizes.
3232         (init_history): Use set_readline_history_size().  Test for a
3233         value of -2 instead of 0 when determining whether to set a
3234         default history size.
3235         (init_main): Decode the argument of the "size" command as a
3236         zuinteger_unlimited.
3237
3238 2015-05-12  Doug Evans  <dje@google.com>
3239
3240         * dwarf2read.c (struct file_entry): Tweak comments.
3241         (get_debug_line_section): Tweak comments.
3242
3243 2015-05-12  Don Breazeal  <donb@codesourcery.com>
3244
3245         * NEWS: Announce fork support in the RSP and support
3246         for fork debugging in extended mode.
3247
3248 2015-05-12  Don Breazeal  <donb@codesourcery.com>
3249
3250         * remote.c (remote_insert_fork_catchpoint): New function.
3251         (remote_remove_fork_catchpoint): New function.
3252         (remote_insert_vfork_catchpoint): New function.
3253         (remote_remove_vfork_catchpoint): New function.
3254         (pending_fork_parent_callback): New function.
3255         (remove_new_fork_child): New function.
3256         (remote_update_thread_list): Call remote_notif_get_pending_events
3257         and remove_new_fork_child.
3258         (extended_remote_kill): Kill fork child when killing the
3259         parent before follow_fork completes.
3260         (init_extended_remote_ops): Initialize target vector with
3261         new fork catchpoint functions.
3262
3263 2015-05-12  Don Breazeal  <donb@codesourcery.com>
3264
3265         * remote.c (remove_vfork_event_p): New function.
3266         (remote_follow_fork): Add vfork event type to event checking.
3267         (remote_parse_stop_reply): New stop reasons "vfork" and
3268         "vforkdone" for RSP 'T' Stop Reply Packet.
3269
3270 2015-05-12  Don Breazeal  <donb@codesourcery.com>
3271
3272         * linux-nat.c (linux_nat_ptrace_options): New function.
3273         (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
3274         Call linux_nat_ptrace_options and use different argument to
3275         linux_enable_event_reporting.
3276         (_initialize_linux_nat): Delete call to
3277         linux_ptrace_set_additional_flags.
3278         * nat/linux-ptrace.c (current_ptrace_options): Rename to
3279         supported_ptrace_options.
3280         (additional_flags): Delete variable.
3281         (linux_check_ptrace_features): Use supported_ptrace_options.
3282         (linux_test_for_tracesysgood, linux_test_for_tracefork):
3283         Likewise, and remove additional_flags check.
3284         (linux_enable_event_reporting): Change 'attached' argument to
3285         'options'.  Use supported_ptrace_options.
3286         (ptrace_supports_feature): Change comment.  Use
3287         supported_ptrace_options.
3288         (linux_ptrace_set_additional_flags): Delete function.
3289         * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
3290         Delete function prototype.
3291         * remote.c (remote_fork_event_p): New function.
3292         (remote_detach_pid): New function.
3293         (remote_detach_1): Call remote_detach_pid, don't mourn inferior
3294         if doing detach-on-fork.
3295         (remote_follow_fork): New function.
3296         (remote_parse_stop_reply): Handle new "T" stop reason "fork".
3297         (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
3298         (init_extended_remote_ops): Initialize to_follow_fork.
3299
3300 2015-05-12  Don Breazeal  <donb@codesourcery.com>
3301
3302         * nat/linux-ptrace.c (linux_check_ptrace_features): Change
3303         from static to extern.
3304         * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
3305         * remote.c (anonymous enum): <PACKET_fork_event_feature,
3306         * PACKET_vfork_event_feature>: New enumeration constants.
3307         (remote_protocol_features): Add table entries for new packets.
3308         (remote_query_supported): Add new feature queries to qSupported
3309         packet.
3310
3311 2015-05-12  Gary Benson <gbenson@redhat.com>
3312
3313         * remote.c (remote_add_inferior): Call exec_file_locate_attach
3314         for fake PIDs as well as real ones.
3315         (remote_pid_to_exec_file): Send empty annex if PID is fake.
3316
3317 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
3318
3319         * NEWS (Python Scripting): Mention the new gdb.Value methods.
3320         * python/py-value.c (valpy_reference_value): New function.
3321         (valpy_const_value): Likewise.
3322         (value_object_methods): Add new methods.
3323         * value.c (make_cv_value): New function.
3324         * value.h (make_cv_value): Declare.
3325
3326 2015-05-08  Yao Qi  <yao@codesourcery.com>
3327             Sandra Loosemore  <sandra@codesourcery.com>
3328
3329         * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
3330         to 'lh->include_dirs' before accessing to it.
3331         (psymtab_include_file_name): Likewise.
3332         (dwarf_decode_lines_1): Likewise.
3333         (dwarf_decode_lines): Likewise.
3334         (file_file_name): Likewise.
3335
3336 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
3337
3338         * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
3339         (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
3340         (nios2_linux_rt_sigreturn_init): Adjust base address of
3341         register save area.
3342
3343 2015-05-08  Sandra Loosemore  <sandra@codesourcery.com>
3344
3345         * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
3346         "trap 31" as the breakpoint instruction on all targets.
3347
3348 2015-05-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
3349
3350         * infcmd.c (print_return_value): Remove unused declaration.
3351
3352 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
3353
3354         * dwarf2read.c (attr_to_dynamic_prop)
3355         <DW_AT_data_member_location>: Use read_type_die isntead of
3356         get_die_type.
3357
3358 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
3359
3360         * ada-lang.c (ada_convert_actual): Add handling of formals
3361         passed inside an aligner type.
3362
3363 2015-05-08  Joel Brobecker  <brobecker@adacore.com>
3364
3365         * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
3366
3367 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
3368
3369         PR python/18291
3370         * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
3371         Print xmethod matcher status.
3372
3373 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3374
3375         * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
3376         register in the regcache when treating the PSWM register, and vice
3377         versa.
3378
3379 2015-05-07  Gary Benson <gbenson@redhat.com>
3380
3381         * linux-thread-db.c (struct thread_db_info)
3382         <td_ta_map_id2thr_p>: Remove field.
3383         (try_thread_db_load_1): Remove initialization for the above.
3384
3385 2015-05-07  Gary Benson <gbenson@redhat.com>
3386
3387         * linux-thread-db.c (struct thread_db_info)
3388         <td_thr_validate_p>: Remove field.
3389         (try_thread_db_load_1): Remove initialization for the above.
3390
3391 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
3392
3393         * compile/compile-object-load.c (compile_object_load): Support
3394         mst_text_gnu_ifunc.
3395
3396 2015-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
3397
3398         * compile/compile.c (compile_to_object): Make the cmd_string parameter
3399         const.  Use new variables for the const compatibility.
3400         (eval_compile_command): Make the cmd_string parameter const.
3401         * compile/compile.h (eval_compile_command): Make the cmd_string
3402         parameter const.
3403
3404 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
3405
3406         * defs.h (deprecated_init_ui_hook): Delete.  Remove associated
3407         comment.
3408         * top.c (deprecated_init_ui_hook): Delete.
3409         (gdb_init): Remove handling of deprecated_init_ui_hook.
3410         * interps.c (clear_interpreter_hooks): Remove handling of
3411         deprecated_init_ui_hook.
3412         * main.c (captured_main): Update comment.
3413
3414 2015-05-06  Joel Brobecker  <brobecker@adacore.com>
3415
3416         * solib.c (_initialize_solib): Add "info dll" alias creation.
3417         * windows-nat.c (set_windows_aliases): Delete.
3418         (_initialize_windows_nat): Remove deprecated_init_ui_hook
3419         assignment.
3420         * NEWS: Add news entry about "info dll" now being available
3421         on all platforms.
3422
3423 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3424
3425         * ada-lang.c (value_assign_to_component): Reformat and improve
3426         documentation. Remove all trailing spaces.
3427
3428 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3429
3430         * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
3431         Stop counting inlined frames as soon as an out-of-line function
3432         is found.
3433
3434 2014-05-05  Pierre-Marie de Rodat  <derodat@adacore.com>
3435
3436         * dwarf2read.c (inherit_abstract_dies): Skip
3437         DW_TAG_GNU_call_site dies while inheriting children of an
3438         abstract DIE into a scope.
3439         (read_lexical_block_scope): Inherit abstract DIE's for
3440         lexical scopes.
3441
3442 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3443
3444         * ada-valprint.c (val_print_packed_array_elements): Delete
3445         variable "len".  Add a type-length check when comparing two
3446         consecutive elements of the array.  Use the element's actual
3447         length in call to value_contents_eq.
3448         * ada-lang.c (ada_value_primitive_packed_val): Always return
3449         a value whose type has been resolved.
3450
3451 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3452
3453         * ada-lang.c (ada_value_primitive_packed_val): Recompute
3454         BIT_SIZE and LEN if the size of the resolved type is smaller
3455         than BIT_SIZE * HOST_CHAR_BIT.
3456
3457 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3458
3459         * ada-lang.c (ada_value_primitive_packed_val): Use a more
3460         correct address in call to value_at.  Adjust call to
3461         value_address accordingly.
3462
3463 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3464
3465         * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
3466         to print it.
3467
3468 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3469
3470         * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
3471         * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
3472         pinfo->valaddr.
3473         * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
3474         * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
3475         (resolve_dynamic_type_internal): Set pinfo.valaddr.
3476         Add handling of addr_stack->valaddr.
3477         (resolve_dynamic_type): Add "valaddr" parameter.
3478         Set pinfo.valaddr field.
3479         * ada-lang.c (ada_discrete_type_high_bound): Update call to
3480         resolve_dynamic_type.
3481         (ada_discrete_type_low_bound): Likewise.
3482         * findvar.c (default_read_var_value): Likewise.
3483         * value.c (value_from_contents_and_address): Likewise.
3484
3485 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
3486
3487         * gdbtypes.c (resolve_dynamic_array): Use
3488         create_array_type_with_stride instead of create_array_type.
3489
3490 2015-04-30  DJ Delorie  <dj@redhat.com>
3491
3492         * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
3493         rl78_decode_opcode
3494
3495 2015-04-29  Doug Evans  <dje@google.com>
3496
3497         PR python/18285
3498         * NEWS: Document new gdb.XMethodWorker.get_result_type method.
3499         * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
3500         EVAL_AVOID_SIDE_EFFECTS for xmethods.
3501         * extension-priv.h (struct extension_language_ops)
3502         <get_xmethod_result_type>: New member.
3503         * extension.c (get_xmethod_result_type): New function.
3504         * extension.h (get_xmethod_result_type): Declare.
3505         * python/py-xmethods.c (get_result_type_method_name): New static
3506         global.
3507         (py_get_result_type_method_name): Ditto.
3508         (gdbpy_get_xmethod_result_type): New function.
3509         (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
3510         * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
3511         * python/python.c (python_extension_ops): Add
3512         gdbpy_get_xmethod_result_type.
3513         * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
3514         * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
3515         xmethods.
3516         (value_x_unop): Ditto.
3517         * value.c (result_type_of_xmethod): New function.
3518         * value.h (result_type_of_xmethod): Declare.
3519
3520 2015-04-29  Gary Benson <gbenson@redhat.com>
3521
3522         * solib.c (solib_find_1): Allow fd argument to be NULL.
3523         (exec_file_find): Update comment.
3524         (solib_find): Likewise.
3525         * exec.c (exec_file_locate_attach): Use NULL as fd
3526         argument to exec_file_find to avoid having to close
3527         the opened file.
3528         * infrun.c (follow_exec): Likewise.
3529
3530 2015-04-28  Doug Evans  <dje@google.com>
3531
3532         PR python/18299
3533         * python/lib/gdb/printing.py (register_pretty_printer): Handle
3534         name or __name__ attributes.  Handle gdb module as first argument.
3535
3536 2015-04-28  Doug Evans  <dje@google.com>
3537
3538         PR python/18089
3539         * python/py-prettyprint.c (print_children): Verify result of children
3540         iterator.  Provide better error message.
3541         * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
3542         * python/python.c (gdbpy_print_python_errors_p): New function.
3543
3544 2015-04-28  Doug Evans  <dje@google.com>
3545
3546         * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
3547
3548 2015-04-28  Sasha Smundak  <asmundak@google.com>
3549
3550         * NEWS: Mention gdb.Type.optimized_out method.
3551         * python/py-type.c (typy_optimized_out):  New function.
3552
3553 2015-04-28  John Baldwin  <jhb@FreeBSD.org>
3554
3555         * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
3556
3557 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3558
3559         * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
3560         (initialize_utils): Move call of init_page_info() to ...
3561         * top.c (gdb_init): ... here.
3562
3563 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3564
3565         * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
3566         (tui_sigwinch_handler): Still update our idea of
3567         the terminal's width and height even when TUI is not active.
3568
3569 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3570
3571         * utils.h (set_screen_width_and_height): Declare.
3572         * utils.c (set_screen_width_and_height): Define.
3573         * tui/tui-win.c (tui_update_gdb_sizes): Use it.
3574
3575 2015-04-28  Gary Benson <gbenson@redhat.com>
3576
3577         * infrun.c (solist.h): New include.
3578         (follow_exec): Use exec_file_find to prefix execd_pathname
3579         with gdb_sysroot.
3580
3581 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3582
3583         * tui/tui-source.c (tui_set_source_content): Avoid calling
3584         strcpy() when offset is 0.
3585
3586 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3587
3588         PR gdb/18155
3589         * tui/tui-data.c (tui_free_window): Don't free the locator
3590         window when passed an SRC_WIN or a DISASSEM_WIN.
3591
3592 2015-04-28  Patrick Palka  <patrick@parcs.ath.cx>
3593
3594         * tui/tui-data.h (struct tui_win_element): Forward-declare.
3595         (tui_win_content): Move declaration.
3596         (struct tui_gen_win_info): Give 'content' field the
3597         type tui_win_content.
3598         * tui/tui-data.c (init_content_element): Remove redundant and
3599         erroneous casts.
3600         (tui_add_content_elements): Remove erroneous cast.
3601         * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
3602         casts.
3603         (tui_get_begin_asm_address): Likewise.
3604         * tui/tui-regs.c (tui_show_registers): Likewise.
3605         (tui_show_register_group): Likewise.
3606         (tui_display_registers_from): Likewise.
3607         (tui_check_register_values): Likewise.
3608         * tui/tui-source.c (tui_set_source_content): Likewise.
3609         (tui_set_source_content_nil): Likewise.
3610         (tui_source_is_displayed): Likewise.
3611         * tui/tui-stack.c (tui_show_locator_content): Likewise.
3612         (tui_set_locator_fullname): Likewise.
3613         (tui_set_locator_info): Likewise.
3614         (tui_show_frame_info): Likewise.
3615         * tui/tui-winsource.c (tui_clear_source_content): Likewise.
3616         (tui_show_source_line): Likewise.
3617         (tui_horizontal_source_scroll): Likewise.
3618         (tui_update_breakpoint_info): Likewise.
3619         (tui_set_exec_info_content): Likewise.
3620         (tui_show_exec_info_content): Likewise.
3621         (tui_alloc_source_buffer): Likewise.
3622         (tui_line_is_displayed): Likewise.
3623         (tui_addr_is_displayed): Likewise.
3624
3625 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
3626
3627         * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
3628         event if PL_FLAG_EXEC is set.
3629         [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
3630         [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
3631         (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
3632         "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
3633         Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
3634
3635 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
3636
3637         * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
3638         [TDP_RFPPWAIT] New variable fbsd_pending_children.
3639         [TDP_RFPPWAIT] (fbsd_remember_child): New function.
3640         [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
3641         [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
3642         [PT_LWPINFO] (fbsd_wait): New function.
3643         [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
3644         [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
3645         [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
3646         [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
3647         [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
3648         [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
3649         [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
3650         [TDP_RFPPWAIT] (fbsd_post_attach): New function.
3651         (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
3652         "fbsd_wait".
3653         [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
3654         Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
3655         Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
3656         Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
3657         Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
3658         Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
3659         Set "to_post_attach" to "fbsd_post_attach".
3660
3661 2015-04-27  John Baldwin  <jhb@FreeBSD.org>
3662
3663         * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
3664         (fbsd_find_memory_regions): Mark static.
3665         (fbsd_nat_add_target): New function.
3666         * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
3667         fbsd_pid_to_exec_file and fbsd_find_memory_regions.
3668         * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
3669         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
3670         * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
3671         * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
3672
3673 2015-04-27  Gary Benson <gbenson@redhat.com>
3674
3675         * objfiles.c (allocate_objfile): Do not attempt to expand name
3676         if name is a "target:" filename.
3677         * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
3678         to load auto-load scripts for objfiles with "target:" filenames.
3679
3680 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3681
3682         * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
3683         (enum s390_vector_abi_kind): New enum.
3684         (struct gdbarch_tdep)<vector_abi>: New field.
3685         (s390_effective_inner_type): Add parameter min_size.  Stop
3686         unwrapping if the inner type is smaller than min_size.
3687         (s390_function_arg_float): Adjust call to
3688         s390_effective_inner_type.
3689         (s390_function_arg_vector): New function.
3690         (s390_function_arg_integer): Adjust comment.
3691         (struct s390_arg_state)<vr>: New field.
3692         (s390_handle_arg): Add parameter 'is_unnamed'.  Pass vector
3693         arguments according to vector ABI when appropriate.
3694         (s390_push_dummy_call): Initialize the argument state's field
3695         'vr'.  Adjust calls to s390_handle_arg.
3696         (s390_register_return_value): Handle vector return values.
3697         (s390_return_value): Apply the "register" return value convention
3698         to a vector when appropriate.
3699         (s390_gdbarch_init): Initialize tdep->vector_abi.
3700         * NEWS: Announce S390 vector ABI support.
3701
3702 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3703
3704         * s390-linux-tdep.c (s390_return_value_convention): Remove
3705         function.  Inline its logic...
3706         (s390_return_value): ...here.  Instead, move the handling of the
3707         "register" return value convention...
3708         (s390_register_return_value): ...here.  New function.
3709
3710 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3711
3712         * s390-linux-tdep.c
3713         (is_float_singleton): Remove function.  Move the "singleton" part
3714         of the logic...
3715         (s390_effective_inner_type): ...here.  New function.
3716         (is_float_like): Remove function.  Inline its logic...
3717         (s390_function_arg_float): ...here.
3718         (is_pointer_like, is_integer_like, is_struct_like): Remove
3719         functions.  Inline their logic...
3720         (s390_function_arg_integer): ...here.
3721         (s390_function_arg_pass_by_reference): Remove function.
3722         (extend_simple_arg): Remove function.
3723         (alignment_of): Remove function.
3724         (struct s390_arg_state): New structure.
3725         (s390_handle_arg): New function.
3726         (s390_push_dummy_call): Move parameter placement logic to the new
3727         function s390_handle_arg.  Call it for calculating the stack area
3728         sizes first, and again for actually writing the parameters.
3729
3730 2015-04-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3731
3732         * s390-linux-tdep.c (is_power_of_two): Add comment.  Return
3733           false if the argument is zero.
3734
3735 2015-04-27  Pierre-Marie de Rodat  <derodat@adacore.com>
3736
3737         * ada-lang.c (template_to_static_fixed_type): Return input type
3738         when it is already fixed.  Cache the input type itself when not
3739         creating a static fixed copy.  Make it explicit that we never
3740         molestate the input type.
3741         * gdbtypes.c (resolve_dynamic_struct): Reset the
3742         TYPE_TARGET_TYPE field for resolved copies.
3743
3744 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
3745
3746         * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
3747         (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
3748         (template_to_static_fixed_type): Call ada_check_typedef only
3749         when necessary.
3750
3751 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
3752
3753         * cli/cli-dump.c (srec_dump_command): Add internationalization
3754         mark ups.
3755         (ihex_dump_command): Likewise.
3756         (tekhex_dump_command): Likewise.
3757         (binary_dump_command): Likewise.
3758         (binary_append_command): Likewise.
3759
3760 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
3761
3762         * cli/cli-dump.c (verilog_cmdlist): New variable.
3763         (dump_verilog_memory): New function.
3764         (dump_verilog_value): New function.
3765         (verilog_dump_command): New function.
3766         (_initialize_cli_dump): Add new commands to support verilog dump
3767         format.
3768         * NEWS: Add entry for "dump verilog".
3769
3770 2015-04-24  Pierre-Marie de Rodat  <derodat@adacore.com>
3771
3772         * gdbtypes.c (print_gnat_stuff): Do not recurse on the
3773         descriptive type when there is none.
3774
3775 2015-04-23  Patrick Palka  <patrick@parcs.ath.cx>
3776
3777         * tui/tui-win.c (tui_async_resize_screen): Call
3778         rl_resize_terminal().
3779
3780 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
3781
3782         * windows-nat.c (handle_output_debug_string): Don't change
3783         current_event.dwThreadId.
3784         (get_windows_debug_event): Use thread_id, rather than relying on
3785         current_event.dwThreadId being changed.
3786
3787 2015-04-22  Jon Turney  <jon.turney@dronecode.org.uk>
3788
3789         * windows-nat.c (windows_continue): Report an error if
3790         ContinueDebugEvent() fails.
3791
3792 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
3793
3794         * windows-nat.c (windows_resume): Fix misspelling in debug output.
3795
3796 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
3797
3798         * windows-nat.c (get_windows_debug_event): Replace retval with
3799         thread_id throughout.  Update stale comment.
3800
3801 2015-04-16  Jon Turney  <jon.turney@dronecode.org.uk>
3802
3803         * windows-nat.c (get_windows_debug_event): Don't use ternary
3804         conditional operator.
3805
3806 2015-04-21  Pierre Muller  <muller@sourceware.org>
3807
3808         PR pascal/17815
3809         p-exp.y (yylex): Reorganize code to return the matched pattern
3810         for a field of this.
3811
3812 2015-04-21  Gary Benson <gbenson@redhat.com>
3813
3814         * common/fileio.h (fileio_to_host_openflags): New declaration.
3815         * common/fileio.c (fcntl.h): New include.
3816         (fileio_to_host_openflags): New function, factored out from...
3817         * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
3818         Single use updated.
3819
3820 2015-04-21  Kevin Buettner  <kevinb@redhat.com>
3821
3822         * rl78-tdep.c (RL78_SP_ADDR): Define.
3823         (opc_reg_to_gdb_regnum): New static function.
3824         (rl78_analyze_prologue): Recognize instructions forming slightly
3825         more interesting prologues.
3826
3827 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
3828
3829         Revert:
3830         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
3831         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
3832         TYPE_CODE_REF types so that they are not considered as dynamic
3833         depending on the referenced type.
3834         (resolve_dynamic_type_internal): Likewise.
3835
3836 2015-04-20  Pierre-Marie de Rodat  <derodat@adacore.com>
3837
3838         Revert:
3839         2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
3840         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
3841         "top_level" parameter.
3842         (resolve_dynamic_type_internal): Remove the unused "top_level"
3843         parameter.  Update call to is_dynamic_type_internal.
3844         (is_dynamic_type): Update call to is_dynamic_type_internal.
3845         (resolve_dynamic_range): Update call to
3846         resolve_dynamic_type_internal.
3847         (resolve_dynamic_union): Likewise.
3848         (resolve_dynamic_struct): Likewise.
3849         (resolve_dynamic_type): Likewise.
3850
3851 2015-04-19  Gabriel Krisman Bertazi  <gabriel@krisman.be>
3852
3853         * breakpoint.c (update_dprintf_command_list): Remove duplicated
3854         xmalloc.
3855
3856 2015-04-20  Thomas Schwinge  <thomas@codesourcery.com>
3857
3858         * reply_mig_hack.awk: Robustify parsing.
3859
3860         * reply_mig_hack.awk: Don't bother to declare an intermediate
3861         function pointer variable.
3862
3863 2015-04-17  Doug Evans  <dje@google.com>
3864
3865         * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
3866         to "exec_displacement" to avoid confusion with inner use of the name.
3867
3868 2015-04-17  Pedro Alves  <palves@redhat.com>
3869
3870         * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
3871         if HW point of TYPE isn't supported.
3872
3873 2015-04-17  Yao Qi  <yao.qi@linaro.org>
3874             Pedro Alves  <palves@redhat.com>
3875
3876         * target.h (target_can_use_hardware_watchpoint): Update comments.
3877         Remove trailing ";".
3878
3879 2015-04-17  Gary Benson <gbenson@redhat.com>
3880
3881         * remote.c (remote_add_inferior): New argument try_open_exec.
3882         If nonzero, attempt to open the inferior's executable file as
3883         the main executable if no main executable is open already.
3884         All callers updated.
3885         * NEWS: Mention that GDB now supports automatic location and
3886         retrieval of executable + files from remote targets.
3887
3888 2015-04-17  Gary Benson <gbenson@redhat.com>
3889
3890         * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
3891         * remote.c (PACKET_qXfer_exec_file): Likewise.
3892         (remote_protocol_features): Register the
3893         "qXfer:exec-file:read" feature.
3894         (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
3895         (remote_pid_to_exec_file): New function.
3896         (init_remote_ops): Initialize to_pid_to_exec_file.
3897         (_initialize_remote): Register new "set/show remote
3898         pid-to-exec-file-packet" command.
3899         * NEWS: Announce new qXfer:exec-file:read packet.
3900
3901 2015-04-17  Gary Benson <gbenson@redhat.com>
3902
3903         * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
3904         New declaration.
3905         * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
3906         New function, factored out from...
3907         * linux-nat.c (linux_child_pid_to_exec_file): ...here.
3908
3909 2015-04-17  Gary Benson <gbenson@redhat.com>
3910
3911         * exec.c (solist.h): New include.
3912         (exec_file_locate_attach): Prefix absolute executable
3913         paths with gdb_sysroot if set.
3914         * NEWS: Mention that executable paths may be prepended
3915         with sysroot.
3916
3917 2015-04-17  Gary Benson <gbenson@redhat.com>
3918
3919         * solist.h (exec_file_find): New declaration.
3920         * solib.c (solib_find_1): New function, factored out from...
3921         (solib_find): ...here.
3922         (exec_file_find): New function.
3923
3924 2015-04-17  Gary Benson <gbenson@redhat.com>
3925
3926         * gdbcore.h (exec_file_locate_attach): New declaration.
3927         * exec.c (exec_file_locate_attach): New function, factored
3928         out from...
3929         * infcmd.c (attach_command_post_wait): ...here.
3930
3931 2015-04-17  Mike Frysinger  <vapier@gentoo.org>
3932
3933         * MAINTAINERS: Add myself for Blackfin/write-after-approval.
3934
3935 2015-04-16  Yao Qi  <yao.qi@linaro.org>
3936
3937         * infrun.c (maybe_software_singlestep): Declare.
3938         (displaced_step_fixup): Call maybe_software_singlestep.
3939
3940 2015-04-15  Doug Evans  <dje@google.com>
3941
3942         * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
3943
3944 2015-04-15  Doug Evans  <dje@google.com>
3945
3946         * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
3947
3948 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
3949
3950         * python/lib/gdb/command/unwinders.py: Add parentheses.
3951
3952 2015-04-15  Yao Qi  <yao.qi@linaro.org>
3953
3954         * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
3955
3956 2015-04-15  Yao Qi  <yao.qi@linaro.org>
3957
3958         * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
3959
3960 2015-04-15  Yao Qi  <yao.qi@linaro.org>
3961
3962         * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
3963         dsc->insn_size instead of 4.
3964
3965 2015-04-14  Gary Benson <gbenson@redhat.com>
3966
3967         * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
3968         * minidebug.c (lzma_stat): Likewise.
3969         * solib-spu.c (spu_bfd_iovec_stat): Likewise.
3970         * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
3971
3972 2015-04-13  Stan Shebs  <stanshebs@google.com>
3973
3974         * MAINTAINERS: Update my email address.
3975
3976 2015-04-13  John Baldwin  <jhb@FreeBSD.org>
3977
3978         * amd64-tdep.c (amd64_target_description): New function.
3979         * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
3980         * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
3981         (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
3982         x86 extended save area.
3983         (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
3984         * amd64bsd-nat.h: Export amd64bsd_xsave_len.
3985         * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
3986         (_initialize_amd64fbsd_nat): Set "to_read_description" to
3987         "amd64fbsd_read_description".
3988         * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
3989         (amd64fbsd_supply_xstateregset): New function.
3990         (amd64fbsd_collect_xstateregset): New function.
3991         Add "amd64fbsd_xstateregset".
3992         (amd64fbsd_iterate_over_regset_sections): New function.
3993         (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
3994         "I386_FBSD_XSAVE_XCR0_OFFSET".
3995         Add "iterate_over_regset_sections" gdbarch method.
3996         Add "core_read_description" gdbarch method.
3997         * i386-tdep.c (i386_target_description): New function.
3998         * i386-tdep.h: Export i386_target_description and tdesc_i386.
3999         * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
4000         (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
4001         x86 extended save area.
4002         (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
4003         * i386bsd-nat.h: Export i386bsd_xsave_len.
4004         * i386fbsd-nat.c (i386fbsd_read_description): New function.
4005         (_initialize_i386fbsd_nat): Set "to_read_description" to
4006         "i386fbsd_read_description".
4007         * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
4008         (i386fbsd_core_read_description): New function.
4009         (i386fbsd_supply_xstateregset): New function.
4010         (i386fbsd_collect_xstateregset): New function.
4011         Add "i386fbsd_xstateregset".
4012         (i386fbsd_iterate_over_regset_sections): New function.
4013         (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
4014         "I386_FBSD_XSAVE_XCR0_OFFSET".
4015         Add "iterate_over_regset_sections" gdbarch method.
4016         Add "core_read_description" gdbarch method.
4017         * i386fbsd-tdep.h: New file.
4018
4019 2015-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
4020
4021         * NEWS (Changes since GDB 7.9): Add removed -xdb.
4022         * breakpoint.c (command_line_is_silent): Remove xdb_commands
4023         conditional.
4024         (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
4025         and lb.
4026         * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
4027         va.
4028         * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
4029         conditional.
4030         * defs.h (xdb_commands): Remove declaration.
4031         * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
4032         * guile/scm-cmd.c (command_classes): Remove xdb from comment.
4033         * infcmd.c (run_no_args_command, go_command): Remove.
4034         (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
4035         * infrun.c (xdb_handle_command): Remove.
4036         (_initialize_infrun): Remove xdb_commands for lz and z.
4037         * main.c (xdb_commands): Remove variable.
4038         (captured_main): Remove "xdb" from long_options.
4039         (print_gdb_help): Remove --xdb from help.
4040         * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
4041         * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
4042         * stack.c (backtrace_full_command, args_plus_locals_info)
4043         (current_frame_command): Remove.
4044         (_initialize_stack): Remove xdb_commands for t, T and l.
4045         * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
4046         * thread.c (_initialize_thread): Remove xdb_commands condition.
4047         * tui/tui-layout.c (tui_toggle_layout_command)
4048         (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
4049         (_initialize_tui_layout): Remove xdb_commands for td and ts.
4050         * tui/tui-regs.c (tui_scroll_regs_forward_command)
4051         (tui_scroll_regs_backward_command): Remove.
4052         (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
4053         * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
4054         (_initialize_tui_win): Remove xdb_commands for U and w.
4055         * utils.c (pagination_on_command, pagination_off_command): Remove.
4056         (initialize_utils): Remove xdb_commands for am and sm.
4057
4058 2015-04-10  Pedro Alves  <palves@redhat.com>
4059
4060         * infrun.c (displaced_step_fixup): Switch to the event ptid
4061         earlier.  If the thread stopped for a watchpoint and the
4062         target/arch has non-continuable watchpoints, cancel the displaced
4063         step.
4064         (resume): Don't start a displaced step if in-line step-over info
4065         is valid.
4066
4067 2015-04-10  Pedro Alves  <palves@redhat.com>
4068
4069         * infrun.c (displaced_step_in_progress): New function.
4070         (do_target_resume): Advise target to report all signals if
4071         displaced stepping.
4072
4073 2015-04-10  Pedro Alves  <palves@redhat.com>
4074
4075         PR gdb/18216
4076         * infrun.c (process_event_stop_test): Don't assume a step-resume
4077         is set if tp->stepped_breakpoint is true.
4078
4079 2015-04-10  Yao Qi  <yao.qi@linaro.org>
4080
4081         * arm-tdep.c (install_alu_reg): Update comment.
4082         (thumb_copy_alu_reg): Remove local variable rn.  Update
4083         debugging message.  Use r2 instead of r1 in the modified
4084         instruction.
4085
4086 2015-04-10  Pedro Alves  <palves@redhat.com>
4087
4088         PR gdb/13858
4089         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
4090         linux_displaced_step_location as gdbarch_displaced_step_location
4091         hook.
4092         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
4093         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4094         * linux-tdep.c (linux_displaced_step_location): New function,
4095         based on ppc_linux_displaced_step_location.
4096         * linux-tdep.h (linux_displaced_step_location): New declaration.
4097         * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
4098         (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
4099         Delete.
4100         (ppc_linux_init_abi): Install linux_displaced_step_location as
4101         gdbarch_displaced_step_location hook, even without Cell/B.E..
4102         (_initialize_ppc_linux_tdep): Don't install
4103         ppc_linux_inferior_created as inferior_created observer.
4104         * s390-linux-tdep.c (s390_gdbarch_init): Install
4105         linux_displaced_step_location as gdbarch_displaced_step_location
4106         hook.
4107
4108 2015-04-09  Gary Benson <gbenson@redhat.com>
4109
4110         * common/common-remote-fileio.h: Rename to...
4111         * common/fileio.h: ...this.  Update all references.
4112         (remote_fileio_to_fio_error): Rename to...
4113         (host_to_fileio_error): ...this.
4114         (remote_fileio_to_be): Rename to...
4115         (host_to_bigendian): ...this.  Update all callers.
4116         (remote_fileio_to_fio_uint): Rename to...
4117         (host_to_fileio_uint): ...this.  Update all callers.
4118         (remote_fileio_to_fio_time): Rename to...
4119         (host_to_fileio_time): ...this.  Update all callers.
4120         (remote_fileio_to_fio_stat): Rename to...
4121         (host_to_fileio_stat): ...this.
4122         Update all references.
4123         * common/common-remote-fileio.c: Rename to...
4124         * common/fileio.c: ...this.  Update all references.
4125         (remote_fileio_to_fio_error): Rename to...
4126         (host_to_fileio_error): ...this.  Update all callers.
4127         (remote_fileio_mode_to_target): Rename to...
4128         (fileio_mode_pack): ...this.  Update all callers.
4129         (remote_fileio_to_fio_mode): Rename to...
4130         (host_to_fileio_mode): ...this.  Update all callers.
4131         (remote_fileio_to_fio_ulong): Rename to...
4132         (host_to_fileio_ulong): ...this.  Update all callers.
4133         (remote_fileio_to_fio_stat): Rename to...
4134         (host_to_fileio_stat): ...this.  Update all callers.
4135
4136 2015-04-09  Andy Wingo  <wingo@igalia.com>
4137
4138         * guile/scm-frame.c (gdbscm_frame_read_register): New function.
4139         (frame_functions): Bind gdbscm_frame_read_register to
4140         frame-read-register.
4141         * guile/lib/gdb.scm (frame-read-register): Export.
4142
4143 2015-04-09  Gary Benson <gbenson@redhat.com>
4144
4145         * common/common-remote-fileio.h (remote_fileio_to_fio_error):
4146         New declaration.
4147         * common/common-remote-fileio.c (remote_fileio_to_fio_error):
4148         New function, factored out the named functions below.
4149         * inf-child.c (gdb/fileio.h): Remove include.
4150         (common-remote-fileio.h): New include.
4151         (inf_child_errno_to_fileio_error): Remove function.  Update
4152         all callers to use remote_fileio_to_fio_error.
4153         * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
4154
4155 2015-04-09  Andy Wingo  <wingo@igalia.com>
4156
4157         * MAINTAINERS (Write After Approval): Add Andy Wingo.
4158
4159 2015-04-09  H.J. Lu  <hongjiu.lu@intel.com>
4160
4161         * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
4162         Replace $zlibdir with $ZLIBDIR in LDFLAGS.
4163         * configure: Regenerated.
4164
4165 2015-04-09  Pedro Alves  <palves@redhat.com>
4166
4167         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
4168         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
4169         * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
4170         * gnulib/import/Makefile.am: Update.
4171         * gnulib/import/Makefile.in: Update.
4172         * gnulib/import/m4/gnulib-cache.m4: Update.
4173         * gnulib/import/m4/gnulib-comp.m4: Update.
4174         * gnulib/import/m4/strtok_r.m4: New file.
4175         * gnulib/import/strtok_r.c: New file.
4176
4177 2015-04-09  Pedro Alves  <palves@redhat.com>
4178
4179         * gnulib/update-gnulib.sh (aclocal version check): Filter out
4180         "called too early to check prototype".
4181
4182 2015-04-08  Sergio Durigan Junior  <sergiodj@redhat.com>
4183
4184         PR python/16699
4185         * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
4186         use a caching mechanism.  Adjust comments and code to reflect
4187         that.  Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
4188         (cmdpy_completer_handle_brkchars): Adjust call to
4189         cmdpy_completer_helper.  Call Py_XDECREF for 'resultobj'.
4190         (cmdpy_completer): Likewise.
4191
4192 2015-04-08  Yao Qi  <yao.qi@linaro.org>
4193
4194         * spu-tdep.c (spu_gdbarch_init): Don't call
4195         set_gdbarch_cannot_step_breakpoint.
4196
4197 2015-04-07  Sergio Durigan Junior  <sergiodj@redhat.com>
4198
4199         * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
4200
4201 2015-04-07  Pedro Alves  <palves@redhat.com>
4202
4203         * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
4204         (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
4205         (delete_exited_threads): New declaration.
4206         * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
4207         * linux-nat.c (linux_nat_update_thread_list): New function.
4208         (linux_nat_add_target): Install it.
4209         * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
4210         * thread.c (prune_threads): Use ALL_THREADS_SAFE.
4211         (delete_exited_threads): New function.
4212
4213 2015-04-07  Pedro Alves  <pedro@codesourcery.com>
4214
4215         * infrun.c (resume) <displaced stepping debug output>: Get the
4216         leader thread's regcache, not resume_ptid's.
4217
4218 2015-04-06  Doug Evans  <xdje42@gmail.com>
4219
4220         * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
4221         VAR_DOMAIN.
4222         (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
4223         Include symbol domain in debugging output.
4224
4225 2015-04-06  Pedro Alves  <palves@redhat.com>
4226             Bernd Edlinger  <bernd.edlinger@hotmail.de>
4227
4228         * configure.ac: Remove the mingw32-specific stub-termcap.o
4229         fallback, and instead fallback to the stub termcap on all hosts.
4230         * configure: Regenerate.
4231         * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
4232         symbols.
4233
4234 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
4235
4236         * gdbtypes.c (is_dynamic_type_internal): Remove the unused
4237         "top_level" parameter.
4238         (resolve_dynamic_type_internal): Remove the unused "top_level"
4239         parameter.  Update call to is_dynamic_type_internal.
4240         (is_dynamic_type): Update call to is_dynamic_type_internal.
4241         (resolve_dynamic_range): Update call to
4242         resolve_dynamic_type_internal.
4243         (resolve_dynamic_union): Likewise.
4244         (resolve_dynamic_struct): Likewise.
4245         (resolve_dynamic_type): Likewise.
4246
4247 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
4248
4249         * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
4250         TYPE_CODE_REF types so that they are not considered as dynamic
4251         depending on the referenced type.
4252         (resolve_dynamic_type_internal): Likewise.
4253
4254 2015-04-02  H.J. Lu  <hongjiu.lu@intel.com>
4255
4256         * Makefile.in (top_srcdir): New.
4257         * configure: Regenerated.
4258
4259 2015-04-02  Gary Benson <gbenson@redhat.com>
4260
4261         * NEWS: Announce the new default sysroot of "target:".
4262
4263 2015-04-02  Gary Benson <gbenson@redhat.com>
4264
4265         * main.c (captured_main): Set gdb_sysroot to "target:"
4266         if not otherwise set.
4267
4268 2015-04-02  Gary Benson <gbenson@redhat.com>
4269
4270         * exec.c (exec_file_attach): Support "target:" filenames.
4271
4272 2015-04-02  Gary Benson <gbenson@redhat.com>
4273
4274         * solib.c (solib_find): Strip "target:" prefix from sysroot
4275         if accessing local files.
4276
4277 2015-04-02  Gary Benson <gbenson@redhat.com>
4278
4279         * symfile.c (symfile_bfd_open): Reorder to remove duplicated
4280         checks and error messages.
4281
4282 2015-04-02  Gary Benson <gbenson@redhat.com>
4283
4284         * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
4285         (remote_filename_p): Remove declaration.
4286         (remote_bfd_open): Likewise.
4287         * remote.c (remote_bfd_iovec_open): Remove function.
4288         (remote_bfd_iovec_close): Likewise.
4289         (remote_bfd_iovec_pread): Likewise.
4290         (remote_bfd_iovec_stat): Likewise.
4291         (remote_filename_p): Likewise.
4292         (remote_bfd_open): Likewise.
4293         * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
4294         * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
4295         (gdb_bfd_open_maybe_remote): Remove function.
4296         (symfile_bfd_open):  Replace remote filename check with
4297         target filename check.
4298         (reread_symbols): Use gdb_bfd_open.
4299         * build-id.c (gdbcore.h): New include.
4300         (build_id_to_debug_bfd): Use gdb_bfd_open.
4301         * infcmd.c (attach_command_post_wait): Remove remote filename
4302         check.
4303         * solib.c (solib_find): Replace remote-specific handling with
4304         target-specific handling.  Update comments where necessary.
4305         (solib_bfd_open): Replace remote-specific handling with
4306         target-specific handling.
4307         (gdb_sysroot_changed): New function.
4308         (_initialize_solib): Call the above when gdb_sysroot changes.
4309         * windows-tdep.c (gdbcore.h): New include.
4310         (windows_xfer_shared_library): Use gdb_bfd_open.
4311
4312 2015-04-02  Gary Benson <gbenson@redhat.com>
4313
4314         * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
4315         (is_target_filename): New declaration.
4316         (gdb_bfd_has_target_filename): Likewise.
4317         (gdb_bfd_open): Update documentation comment.
4318         * gdb_bfd.c (target.h): New include.
4319         (gdb/fileio.h): Likewise.
4320         (is_target_filename): New function.
4321         (gdb_bfd_has_target_filename): Likewise.
4322         (fileio_errno_to_host): Likewise.
4323         (gdb_bfd_iovec_fileio_open): Likewise.
4324         (gdb_bfd_iovec_fileio_pread): Likewise.
4325         (gdb_bfd_iovec_fileio_close): Likewise.
4326         (gdb_bfd_iovec_fileio_fstat): Likewise.
4327         (gdb_bfd_open): Use target fileio to access paths prefixed
4328         with "target:" where necessary.
4329
4330 2015-04-02  Gary Benson <gbenson@redhat.com>
4331
4332         * target.h (struct target_ops) <to_filesystem_is_local>:
4333         New field.
4334         (target_filesystem_is_local): New macro.
4335         * target-delegates.c: Regenerate.
4336         * remote.c (remote_filesystem_is_local): New function.
4337         (init_remote_ops): Initialize to_filesystem_is_local.
4338
4339 2015-04-02  Gary Benson <gbenson@redhat.com>
4340
4341         * target.h (struct target_ops) <to_fileio_fstat>: New field.
4342         (target_fileio_fstat): New declaration.
4343         * target.c (target_fileio_fstat): New function.
4344         * inf-child.c (inf_child_fileio_fstat): Likewise.
4345         (inf_child_target): Initialize to_fileio_fstat.
4346         * remote.c (init_remote_ops): Likewise.
4347
4348 2015-04-01  Sasha Smundak  <asmundak@google.com>
4349
4350         * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
4351         (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
4352         (py-unwind.o): New recipe.
4353         * NEWS: mention Python frame unwinding.
4354         * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
4355         gdb/unwinder.py and gdb/command/unwinder.py
4356         * python/lib/gdb/__init__.py (packages): Add frame_unwinders
4357         list.
4358         (execute_unwinders): New function.
4359         * python/lib/gdb/command/unwinders.py: New file.
4360         * python/lib/gdb/unwinder.py: New file.
4361         * python/py-objfile.c (objfile_object): Add frame_unwinders field.
4362         (objfpy_dealloc): Decrement frame_unwinders reference count.
4363         (objfpy_initialize): Create frame_unwinders list.
4364         (objfpy_get_frame_unwinders): New function.
4365         (objfpy_set_frame_unwinders): Ditto.
4366         (objfile_getset): Add frame_unwinders attribute to Objfile.
4367         * python/py-progspace.c (pspace_object): Add frame_unwinders field.
4368         (pspy_dealloc): Decrement frame_unwinders reference count.
4369         (pspy_initialize): Create frame_unwinders list.
4370         (pspy_get_frame_unwinders): New function.
4371         (pspy_set_frame_unwinders): Ditto.
4372         (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
4373         * python/py-unwind.c: New file.
4374         * python/python-internal.h (pspy_get_name_unwinders): New prototype.
4375         (objpy_get_frame_unwinders): New prototype.
4376         (gdbpy_initialize_unwind): New prototype.
4377         * python/python.c (gdbpy_apply_type_printers): Call
4378         gdbpy_initialize_unwind.
4379
4380 2015-04-01  Pedro Alves  <palves@redhat.com>
4381
4382         * infrun.c (resume): Check currently_stepping after clearing
4383         stepped_breakpoint, not before.
4384
4385 2015-04-01  Pedro Alves  <palves@redhat.com>
4386
4387         * infrun.c (print_target_wait_results): Print all the ptid
4388         elements.
4389
4390 2015-04-01  Pedro Alves  <palves@redhat.com>
4391
4392         * infrun.c (keep_going): Also discard cleanups if inserting
4393         breakpoints fails.
4394
4395 2015-04-01  Pedro Alves  <palves@redhat.com>
4396
4397         * infrun.c (wait_for_inferior): Install the
4398         finish_thread_state_cleanup cleanup across the whole function, not
4399         just around handle_inferior_event.
4400
4401 2015-04-01  Pedro Alves  <palves@redhat.com>
4402
4403         * infrun.c (resume) <step past permanent breakpoint>: Use
4404         do_target_resume.
4405
4406 2015-04-01  Pedro Alves  <palves@redhat.com>
4407
4408         * linux-nat.c (linux_handle_extended_wait): Always call set_running.
4409
4410 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
4411
4412         * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
4413
4414 2015-04-01  Pedro Alves  <palves@redhat.com>
4415
4416         * linux-thread-db.c (record_thread): Readd the thread to gdb's
4417         list if it was marked exited.
4418
4419 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
4420
4421         * configure: Regenerated.
4422
4423 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
4424             Jan Kratochvil  <jan.kratochvil@redhat.com>
4425             Oleg Nesterov  <oleg@redhat.com>
4426
4427         PR corefiles/16092
4428         * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
4429         New enum identifying the various options of the coredump_filter
4430         file.
4431         (struct smaps_vmflags): New struct.
4432         (use_coredump_filter): New variable.
4433         (decode_vmflags): New function.
4434         (mapping_is_anonymous_p): Likewise.
4435         (dump_mapping_p): Likewise.
4436         (linux_find_memory_regions_full): New variables
4437         'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
4438         Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
4439         parsing of its information.  Implement memory mapping filtering
4440         based on its contents.
4441         (show_use_coredump_filter): New function.
4442         (_initialize_linux_tdep): New command 'set use-coredump-filter'.
4443         * NEWS: Mention the possibility of using the
4444         '/proc/PID/coredump_filter' file when generating a corefile.
4445         Mention new command 'set use-coredump-filter'.
4446
4447 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
4448
4449         * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
4450         read_memory_unsigned_integer.
4451
4452 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
4453
4454         * Makefile.in (ZLIB): New.
4455         (ZLIBINC): Likewise.
4456         (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
4457         (CLIBS): Add $(ZLIB).
4458         * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
4459         Add -lz to LIBS.
4460         * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
4461         * top.c (print_gdb_configuration): Remove --with-zlib and
4462         --without-zlib.
4463         * config.in: Regenerated.
4464         * configure: Likewise.
4465
4466 2015-03-31  Antoine Tremblay  <antoine.tremblay@ericsson.com>
4467
4468         * NEWS: Mention info os cpus support.
4469         * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
4470         (struct osdata_type): Add cpus entry, reorder the entries in
4471         alphabetical order.
4472
4473 2015-03-31  Matthias Klose  <doko@ubuntu.com>
4474
4475         * compile/compile.c (compile_to_object): Allow triplets with or
4476         without vendor set.
4477
4478 2015-03-30  Doug Evans  <dje@google.com>
4479
4480         PR c++/18141
4481         * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
4482         klass in VAR_DOMAIN.
4483
4484 2015-03-30  Gary Benson <gbenson@redhat.com>
4485
4486         * remote.c (remote_mourn_1): Remove function.  Update all callers
4487         to use remote_mourn.
4488         (extended_remote_mourn_1): Remove function.  Update all callers
4489         to use extended_remote_mourn.
4490         (extended_remote_attach_1): Remove function.  Update all callers
4491         to use extended_remote_attach.
4492
4493 2015-03-28  James Bowman  <james.bowman@ftdichip.com>
4494
4495         * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
4496         (HFILES_NO_SRCDIR): Add ft32-tdep.h.
4497         (ALLDEPFILES): Add ft32-tdep.c.
4498         * configure.tgt: Add FT32 entry.
4499         * ft32-tdep.c: New file, FT32 target-dependent code.
4500         * ft32-tdep.h: New file, FT32 target-dependent code.
4501
4502 2015-03-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
4503
4504         Revert:
4505         2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4506         Code cleanup.
4507         * printcmd.c (print_command_1): Move expr variable scope.
4508
4509 2015-03-27  Joel Brobecker  <brobecker@adacore.com>
4510
4511         * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
4512
4513 2015-03-27  Andrzej Kaczmarek  <andrzej.kaczmarek@tieto.com>
4514
4515         * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
4516         sections.
4517
4518 2015-03-26  Joel Brobecker  <brobecker@adacore.com>
4519
4520         * dtrace-probe.c (dtrace_process_dof_probe): Contain any
4521         exception raised while parsing the probe arguments.
4522         Force parsing to be done using the C language parser.
4523         * expression.h (parse_expression_with_language): Declare.
4524         * parse.c (parse_expression_with_language): New function.
4525
4526 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
4527
4528         * MAINTAINERS (Write After Approval): Add "Jon Turney".
4529
4530 2015-03-26  Andy Wingo  <wingo@igalia.com>
4531
4532         PR symtab/18148
4533         * dwarf2read.c (struct partial_die_info): Add has_const_value
4534         member.
4535         (add_partial_symbol): Don't punt on symbols that have const_value
4536         attributes.
4537         (read_partial_die): Detect DW_AT_const_value.
4538
4539 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4540
4541         Code cleanup.
4542         * printcmd.c (print_command_1): Move expr variable scope.
4543
4544 2015-03-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
4545
4546         Code cleanup.
4547         * printcmd.c (validate_format): Make the parameter cmdname const.
4548
4549 2015-03-26  Don Breazeal  <donb@codesourcery.com>
4550
4551         * remote.c (_initialize_remote): Update comment.
4552
4553 2015-03-26  Pedro Alves  <palves@redhat.com>
4554             Jon TURNEY  <jon.turney@dronecode.org.uk>
4555
4556         * coffread.c (coff_symfile_read): When constructing the name of an
4557         import stub symbol from import symbol for amd64, only skip the
4558         char after _imp_ if the target is underscored (like i386) and the
4559         char is indeed the target's leading char.
4560
4561 2015-03-25  Pedro Alves  <palves@redhat.com>
4562
4563         * target.h <to_async>: Replace 'callback' and 'context' parameters
4564         with boolean 'enable' parameter.
4565         (target_async): Replace CALLBACK and CONTEXT parameters with
4566         boolean ENABLE parameter.
4567         * inf-loop.c (inferior_event_handler): Adjust.
4568         * linux-nat.c (linux_nat_attach, linux_nat_resume)
4569         (linux_nat_resume): Adjust.
4570         (async_client_callback, async_client_context): Delete.
4571         (handle_target_event): Call inferior_event_handler directly.
4572         (linux_nat_async): Replace 'callback' and 'context' parameters
4573         with boolean 'enable' parameter.  Adjust.  Remove references to
4574         async_client_callback and async_client_context.
4575         (linux_nat_close): Adjust.
4576         * record-btrace.c (record_btrace_async): Replace 'callback' and
4577         'context' parameters with boolean 'enable' parameter.  Adjust.
4578         (record_btrace_resume): Adjust.
4579         * record-full.c (record_full_async): Replace 'callback' and
4580         'context' parameters with boolean 'enable' parameter.  Adjust.
4581         (record_full_resume, record_full_core_resume): Adjust.
4582         * remote.c (struct remote_state) <async_client_callback,
4583         async_client_context>: Delete fields.
4584         (remote_start_remote, extended_remote_attach_1, remote_resume)
4585         (extended_remote_create_inferior): Adjust.
4586         (remote_async_serial_handler): Call inferior_event_handler
4587         directly.
4588         (remote_async): Replace 'callback' and 'context' parameters with
4589         boolean 'enable' parameter.  Adjust.
4590         * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
4591         Adjust.
4592         * target-delegates.c: Regenerate.
4593
4594 2015-03-25  Gary Benson <gbenson@redhat.com>
4595             Pedro Alves  <palves@redhat.com>
4596
4597         * target.c (fileio_ft_t): New typedef, define object vector.
4598         (fileio_fhandles): New static variable.
4599         (is_closed_fileio_fh): New macro.
4600         (lowest_closed_fd): New static variable.
4601         (acquire_fileio_fd): New function.
4602         (release_fileio_fd): Likewise.
4603         (fileio_fd_to_fh): New macro.
4604         (target_fileio_open): Wrap the file descriptor on success.
4605         (target_fileio_pwrite): Updated to use wrapped file descriptor.
4606         (target_fileio_pread): Likewise.
4607         (target_fileio_close): Likewise.
4608
4609 2015-03-24  Pedro Alves  <palves@redhat.com>
4610
4611         * thread.c (thread_apply_all_command): Take exited threads into
4612         account.
4613
4614 2015-03-24  Pedro Alves  <palves@redhat.com>
4615
4616         * infrun.c (resume, proceed): Mention
4617         switch_back_to_stepped_thread, not switch_back_to_stepping.
4618
4619 2015-03-24  Pedro Alves  <palves@redhat.com>
4620
4621         * infrun.c (user_visible_resume_ptid): Rewrite going from
4622         most-locked to unlocked instead of the opposite.  Move comment ...
4623         * infrun.h (user_visible_resume_ptid): ... here.
4624
4625 2015-03-24  Pedro Alves  <palves@redhat.com>
4626
4627         * linux-nat.c (linux_nat_resume): Output debug logs before trying
4628         to resume the event lwp.  Use the lwp's ptid instead of the passed
4629         in (maybe wildcard) ptid.
4630         (stop_wait_callback): Tweak debug log output.
4631         (check_stopped_by_breakpoint): Tweak debug log output.  Also dump
4632         TRAP_TRACE.
4633         (linux_nat_filter_event): In debug output, distinguish a
4634         resume_stop SIGSTOP from a delayed SIGSTOP.  Output debug logs
4635         before trying to resume the lwp.
4636
4637 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
4638
4639         * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
4640         pointer indirection.
4641         * gdbtypes.c (get_dyn_prop): Adjust, following change above.
4642         (add_dyn_prop, copy_dynamic_prop_list): Likewise.
4643
4644 2015-03-24  Joel Brobecker  <brobecker@adacore.com>
4645
4646         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
4647         Renames DYN_ATTR_DATA_LOCATION.
4648         (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
4649         DYN_ATTR_DATA_LOCATION.
4650         * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
4651         instead of DYN_ATTR_DATA_LOCATION.
4652
4653 2015-03-24  Pedro Alves  <palves@redhat.com>
4654
4655         * breakpoint.c (until_break_command): Adjust call to proceed.
4656         * gdbthread.h (struct thread_control_state) <stepping_command>:
4657         New field.
4658         * infcall.c (run_inferior_call): Adjust call to proceed.
4659         * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
4660         Adjust calls to proceed.
4661         (set_step_frame): Set the current thread's step_start_function
4662         here.
4663         (step_once): Adjust calls to proceed.
4664         (jump_command, signal_command, until_next_command)
4665         (finish_backward, finish_forward, proceed_after_attach_callback)
4666         (attach_command_post_wait): Adjust calls to proceed.
4667         * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
4668         (do_target_resume): New function, factored out from ...
4669         (resume): ... here.  Remove 'step' parameter.  Instead, check
4670         currently_stepping to determine whether the thread should be
4671         single-stepped.
4672         (proceed): Remove 'step' parameter and don't set the thread's
4673         step_start_function here.  Adjust call to 'resume'.
4674         (handle_inferior_event): Adjust calls to 'resume'.
4675         (switch_back_to_stepped_thread): Use do_target_resume instead of
4676         'resume'.
4677         (keep_going): Adjust calls to 'resume'.
4678         * infrun.h (proceed): Remove 'step' parameter.
4679         (resume): Likewise.
4680         * windows-nat.c (do_initial_windows_stuff): Adjust call to
4681         'resume'.
4682         * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
4683
4684 2015-03-24  Pedro Alves  <palves@redhat.com>
4685
4686         * gdbthread.h (struct thread_control_state) <stepping_command>:
4687         New field.
4688         * infcmd.c (step_once): Pass step=1 to clear_proceed_status.  Set
4689         the thread's stepping_command field.
4690         * infrun.c (resume): Check the thread's stepping_command flag to
4691         determine which threads should be resumed.  Rename 'entry_step'
4692         local to user_step.
4693         (clear_proceed_status_thread): Clear 'stepping_command'.
4694         (schedlock_applies): Change parameter type to struct thread_info
4695         pointer.  Adjust.
4696         (find_thread_needs_step_over): Remove 'step' parameter.  Adjust.
4697         (switch_back_to_stepped_thread): Adjust calls to
4698         'schedlock_applies'.
4699         (_initialize_infrun): Adjust "set scheduler-locking step" help.
4700
4701 2015-03-24  Pedro Alves  <palves@redhat.com>
4702
4703         * infrun.c (step_start_function): Delete and ...
4704         * gdbthread.h (struct thread_control_state) <step_start_function>:
4705         ... now a field here.
4706         * infrun.c (clear_proceed_status_thread): Clear the thread's
4707         step_start_function.
4708         (proceed, process_event_stop_test, print_stop_event): Adjust.
4709
4710 2015-03-24  Pedro Alves  <palves@redhat.com>
4711
4712         * infrun.c (proceed): No longer handle negative step.
4713
4714 2015-03-24  Gary Benson  <gbenson@redhat.com>
4715
4716         * nat/x86-linux.h (x86_linux_new_thread): New declaration.
4717         (x86_linux_prepare_to_resume): Likewise.
4718         * x86-linux-nat.c (x86_linux_new_thread):
4719         Moved to nat/x86-linux.c.
4720         (x86_linux_prepare_to_resume): Likewise.
4721         * nat/x86-linux.c (x86_linux_new_thread): New function.
4722         (x86_linux_prepare_to_resume): Likewise.
4723
4724 2015-03-24  Gary Benson  <gbenson@redhat.com>
4725
4726         * nat/x86-linux-dregs.h: New file.
4727         * nat/x86-linux-dregs.c: Likewise.
4728         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
4729         (x86-linux-dregs.o): New rule.
4730         * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
4731         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4732         * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
4733         (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
4734         (x86_linux_dr_get): Likewise.
4735         (x86_linux_dr_set): Likewise.
4736         (x86_linux_dr_get_addr): Likewise.
4737         (x86_linux_dr_get_control): Likewise.
4738         (x86_linux_dr_get_status): Likewise.
4739         (update_debug_registers_callback): Likewise.
4740         (x86_linux_dr_set_control): Likewise.
4741         (x86_linux_dr_set_addr): Likewise.
4742         (x86_linux_update_debug_registers): Likewise.
4743
4744 2015-03-24  Gary Benson  <gbenson@redhat.com>
4745
4746         * x86-linux-nat.c (x86_linux_update_debug_registers):
4747         New function, factored out from...
4748         (x86_linux_prepare_to_resume): ...this.
4749
4750 2015-03-24  Gary Benson  <gbenson@redhat.com>
4751
4752         * x86-linux-nat.c (x86_linux_dr_get): Update comments.
4753         (x86_linux_dr_set): Likewise.
4754         (x86_linux_dr_get_addr): Likewise.
4755         (x86_linux_dr_get_control): Likewise.
4756         (x86_linux_dr_get_status): Likewise.
4757         (update_debug_registers_callback): Likewise.
4758         (x86_linux_dr_set_control): Likewise.
4759         (x86_linux_dr_set_addr): Likewise.
4760         (x86_linux_prepare_to_resume): Likewise.
4761         (x86_linux_new_thread): Likewise.
4762
4763 2015-03-24  Gary Benson  <gbenson@redhat.com>
4764
4765         * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
4766         (x86_linux_new_thread): Rename argument.
4767
4768 2015-03-24  Gary Benson  <gbenson@redhat.com>
4769
4770         * nat/x86-linux.h: New file.
4771         * nat/x86-linux.c: Likewise.
4772         * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
4773         (x86-linux.o): New rule.
4774         * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
4775         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4776         * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
4777         (lwp_set_arch_private_info): New declaration.
4778         (lwp_arch_private_info): Likewise.
4779         * linux-nat.c (lwp_set_arch_private_info): New function.
4780         (lwp_arch_private_info): Likewise.
4781         * x86-linux-nat.c: Include nat/x86-linux.h.
4782         (arch_lwp_info): Removed structure.
4783         (update_debug_registers_callback):
4784         Use lwp_set_debug_registers_changed.
4785         (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
4786         and lwp_set_debug_registers_changed.
4787         (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
4788
4789 2015-03-24  Gary Benson  <gbenson@redhat.com>
4790
4791         * nat/linux-nat.h (ptid_of_lwp): New declaration.
4792         (lwp_is_stopped): Likewise.
4793         (lwp_stop_reason): Likewise.
4794         * linux-nat.c (ptid_of_lwp): New function.
4795         (lwp_is_stopped): Likewise.
4796         (lwp_is_stopped_by_watchpoint): Likewise.
4797         * x86-linux-nat.c (update_debug_registers_callback):
4798         Use lwp_is_stopped.
4799         (x86_linux_prepare_to_resume): Use ptid_of_lwp and
4800         lwp_stop_reason.
4801
4802 2015-03-24  Gary Benson  <gbenson@redhat.com>
4803
4804         * linux-nat.h (linux_stop_lwp): Move declaration to...
4805         * nat/linux-nat.h (linux_stop_lwp): New declaration.
4806
4807 2015-03-24  Gary Benson  <gbenson@redhat.com>
4808
4809         * linux-nat.h: Include nat/linux-nat.h.
4810         (iterate_over_lwps): Move declaration to nat/linux-nat.h.
4811         * nat/linux-nat.h (struct lwp_info): New forward declaration.
4812         (iterate_over_lwps_ftype): New typedef.
4813         (iterate_over_lwps): New declaration.
4814         * linux-nat.h (iterate_over_lwps): Update comment.  Use
4815         iterate_over_lwps_ftype.  Update callback return value check.
4816
4817 2015-03-24  Gary Benson  <gbenson@redhat.com>
4818
4819         * x86-nat.h (x86_debug_reg_state): Move declaration to...
4820         * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
4821
4822 2015-03-24  Gary Benson  <gbenson@redhat.com>
4823
4824         * nat/linux-nat.h (current_lwp_ptid): New declaration.
4825         * linux-nat.c (current_lwp_ptid): New function.
4826         * x86-linux-nat.c: Include nat/linux-nat.h.
4827         (x86_linux_dr_get_addr): Use current_lwp_ptid.
4828         (x86_linux_dr_get_control): Likewise.
4829         (x86_linux_dr_get_status): Likewise.
4830         (x86_linux_dr_set_control): Likewise.
4831         (x86_linux_dr_set_addr): Likewise.
4832
4833 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
4834
4835         PR breakpoints/16466
4836         * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
4837
4838 2015-03-23  Joel Brobecker  <brobecker@adacore.com>
4839
4840         * ser-mingw.c (ser_windows_setparity): Fix indentation.
4841         * ser-unix.c (hardwire_setparity): Likewise.
4842
4843 2015-03-23  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
4844
4845         * NEWS: Mention set/show serial parity command.
4846         * monitor.c (monitor_open): Call serial_setparity.
4847         * remote.c (remote_open_1): Likewise.
4848         * ser-base.c (ser_base_serparity): New function.
4849         * ser-base.h (ser_base_setparity): Add  declaration.
4850         * ser-go32.c (dos_ops): Set "setparity" field.
4851         * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
4852         state.Parity.
4853         (ser_windows_setparity): New function.
4854         (hardwire_ops): Add ser_windows_setparity.
4855         (tty_ops): Add NULL for setparity field.
4856         (pipe_ops): Add ser_base_setparity.
4857         (tcp_ops): Likewise.
4858         * ser-pipe.c (pipe_ops): Likewise.
4859         * ser-tcp.c (tcp_ops): Likewise.
4860         * ser-unix.c (hardwire_setparity): Add declaration.
4861         (hardwire_raw): Don't reset PARENB flag.
4862         (hardwire_setparity): New function.
4863         (hardwire_ops): Add hardwire_setparity.
4864         * serial.c (serial_setparity): New function.
4865         (serial_parity): New global.
4866         (parity_none, parity_odd, parity_even, parity_enums, parity):
4867         New static globals.
4868         (set_parity): New function.
4869         (_initialize_serial): Add set/show serial parity commands.
4870         * serial.h (GDBPARITY_NONE): Define.
4871         (GDBPARITY_ODD): Define.
4872         (GDBPARITY_EVEN): Define.
4873         (serial_setparity) Add declaration.
4874         (struct serial_ops): Add setparity field.
4875         * target.h (serial_parity): Add declaration.
4876
4877 2015-03-23  Keith Seitz  <keiths@redhat.com>
4878
4879         * linespec.c (linespec_lexer_lex_keyword): Update comment.
4880
4881 2015-03-23  Keith Seitz  <keiths@redhat.com>
4882
4883         * breakpoint.c (parse_breakpoint_sals): Use
4884         linespec_lexer_lex_keyword to ascertain if the user specified
4885         a NULL location.
4886         * linespec.c [IF_KEYWORD_INDEX]: Define.
4887         (linespec_lexer_lex_keyword): Export.
4888         (struct ls_parser) <keyword_ok>: Remove.
4889         A keyword is only a keyword if not followed by another keyword.
4890         (linespec_lexer_lex_one): Remove keyword_ok handling.
4891         Add comment explaining why the parsing stream is not advanced
4892         when a keyword is seen.
4893         (parse_linespec): Remove parser->keyword_ok.
4894         * linespec.h (linespec_lexer_lex_keyword): Add declaration.
4895
4896 2015-03-23  Keith Seitz  <keiths@redhat.com>
4897
4898         PR gdb/18021
4899         * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
4900         if we find a static method with DW_AT_vtable_elem_location.
4901
4902 2015-03-21  Eli Zaretskii  <eliz@gnu.org>
4903
4904         * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
4905         before the second loop, to avoid undefined behavior.  Reported by
4906         Anton Blanchard <anton@samba.org>.
4907
4908 2015-03-20  Keven Boell  <keven.boell@intel.com>
4909
4910         * gdbtypes.c (resolve_dynamic_type_internal): Adapt
4911         data_location usage to linked list.
4912         (resolve_dynamic_type_internal): Adapt data_location to
4913         linked list.
4914         (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
4915         (copy_type_recursive, copy_type): Add copy of linked list.
4916         * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
4917         (struct dynamic_prop_list): New struct.
4918         * dwarf2read.c (set_die_type): Set data_location data.
4919
4920 2015-03-20  Pedro Alves  <palves@redhat.com>
4921
4922         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
4923         inner block and make it const.
4924         * machoread.c (get_archive_prefix_len): Make "lparen" const.
4925
4926 2015-03-20  Pedro Alves  <palves@redhat.com>
4927
4928         * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
4929         * breakpoint.h (set_breakpoint_condition): Update declaration.
4930
4931 2015-03-20  Pedro Alves  <palves@redhat.com>
4932
4933         * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
4934
4935 2015-03-20  Pedro Alves  <palves@redhat.com>
4936
4937         * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
4938
4939 2015-03-20  Pedro Alves  <palves@redhat.com>
4940
4941         * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
4942
4943 2015-03-20  Pedro Alves  <palves@redhat.com>
4944
4945         * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
4946         (nto_init_solib_absolute_prefix): Likewise.
4947
4948 2015-03-20  Pedro Alves  <palves@redhat.com>
4949
4950         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
4951         * spu-tdep.c (spu_gdbarch_init): Make "name" const.
4952
4953 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
4954
4955         * config/djgpp/README: Remove gdb.hp.
4956
4957 2015-03-20  Yao Qi  <yao.qi@linaro.org>
4958
4959         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
4960         set_gdbarch_cannot_step_breakpoint.
4961
4962 2015-03-19  Pedro Alves  <palves@redhat.com>
4963
4964         * linux-nat.c (linux_resume_one_lwp): Rename to ...
4965         (linux_resume_one_lwp_throw): ... this.  Don't handle ESRCH here,
4966         instead call perror_with_name.
4967         (check_ptrace_stopped_lwp_gone): New function.
4968         (linux_resume_one_lwp): Reimplement as wrapper around
4969         linux_resume_one_lwp_throw that swallows errors if the LWP is
4970         gone.
4971         (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
4972         swallows errors if the LWP is gone.  Use
4973         linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
4974
4975 2015-03-19  Pedro Alves  <palves@redhat.com>
4976
4977         * linux-nat.c (status_callback): Return early if the LWP has no
4978         status pending.
4979
4980 2015-03-19  Pedro Alves  <palves@redhat.com>
4981
4982         * linux-nat.c (select_event_lwp_callback): Update comment to no
4983         longer mention SIGTRAP.
4984
4985 2015-03-18  Tristan Gingold  <gingold@adacore.com>
4986
4987         * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
4988         redirection code to ...
4989         (amd64_windows_frame_decode_insns): ... Here.  Fix in prologue
4990         checks.  Fix SAVE_NONVOL operations.  Add debug code and comments.
4991
4992 2015-03-18  Gary Benson <gbenson@redhat.com>
4993
4994         (remote_protocol_features): Remove the "vFile:fstat" feature.
4995         (remote_hostio_fstat): Probe for "vFile:fstat" support.
4996
4997 2015-03-11  Yao Qi  <yao.qi@linaro.org>
4998
4999         PR tdep/18107
5000         * aarch64-linux-tdep.c: Include xml-syscall.h
5001         (aarch64_linux_get_syscall_number): New function.
5002         (aarch64_linux_init_abi): Call
5003         set_gdbarch_get_syscall_number.
5004         * syscalls/aarch64-linux.xml: New file.
5005
5006 2015-03-17  Yurij Grechishhev  <yurij.grechishhev@gmail.com>
5007
5008         * ser-base.h (ser_base_setstopbits): Change second argument name
5009         from "rate" to "num".
5010
5011 2015-03-17  Gary Benson <gbenson@redhat.com>
5012             Luke Allardyce <lukeallardyce@gmail.com>
5013
5014         PR gdb/18131
5015         * common/common-remote-fileio.h (sys/stat.h): New include.
5016         (stuct stat): Remove forward declaration.
5017
5018 2015-03-16  John Baldwin  <jhb@FreeBSD.org>
5019
5020         * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
5021         before writing core register notes.
5022
5023 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
5024             Pedro Alves  <palves@redhat.com>
5025
5026         * gdb_curses.h (tgetnum): Mark with EXTERN_C.
5027         * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
5028         (tgoto): Wrap with extern "C".
5029
5030 2015-03-16  Pedro Alves  <palves@redhat.com>
5031             Yuanhui Zhang  <asmwarrior@gmail.com>
5032
5033         * stub-termcap.c (tputs): Change prototype.
5034
5035 2015-03-16  Yuanhui Zhang  <asmwarrior@gmail.com>
5036             Pedro Alves  <palves@redhat.com>
5037
5038         * windows-nat.c (struct thread_info_struct): Rename to ...
5039         (struct windows_thread_info_struct): ... this.
5040         (thread_info): Rename to ...
5041         (windows_thread_info): ... this.
5042         All users updated.
5043
5044 2015-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5045             Pedro Alves  <palves@redhat.com>
5046
5047         * NEWS: New Removed targets and native configurations.
5048
5049 2015-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5050
5051         Remove HPUX.
5052         * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
5053         (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
5054         (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
5055         ia64-hpux-tdep.h, solib-ia64-hpux.h.
5056         (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
5057         ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
5058         * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
5059         hppa-hpux-tdep.c.
5060         * config/ia64/hpux.mh: Remove file.
5061         * config/pa/hpux.mh: Remove file.
5062         * configure: Rebuilt.
5063         * configure.ac (dlgetmodinfo, somread.o): Remove.
5064         * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
5065         (ia64-*-hpux*): Remove its float format exception.
5066         * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
5067         * hppa-hpux-nat.c: Remove file.
5068         * hppa-hpux-tdep.c: Remove file.
5069         * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
5070         Move them here from hppa-tdep.h
5071         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
5072         (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
5073         * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
5074         Move them to hppa-tdep.c.
5075         (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
5076         declarations.
5077         * ia64-hpux-nat.c: Remove file.
5078         * ia64-hpux-tdep.c: Remove file.
5079         * ia64-hpux-tdep.h: Remove file.
5080         * inf-ttrace.c: Remove file.
5081         * inf-ttrace.h: Remove file.
5082         * solib-ia64-hpux.c: Remove file.
5083         * solib-ia64-hpux.h: Remove file.
5084         * solib-pa64.c: Remove file.
5085         * solib-pa64.h: Remove file.
5086         * solib-som.c: Remove file.
5087         * solib-som.h: Remove file.
5088         * somread.c: Remove file.
5089
5090 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
5091
5092         * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
5093         * config.in: Regenerate.
5094         * configure: Regenerate.
5095         * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
5096         define.
5097         (fbsd_find_memory_regions): Use kinfo_getvmmap to
5098         enumerate memory regions if present.
5099
5100 2015-03-13  John Baldwin  <jhb@FreeBSD.org>
5101
5102         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
5103         * i386fbsd-tdep.c: Fix style in various gdb_static_assert
5104         expressions.
5105         (i386fbsd_sigtramp_p): Likewise.
5106
5107 2015-03-12  John Baldwin  <jhb@FreeBSD.org>
5108
5109         * MAINTAINERS (Write After Approval): Add John Baldwin.
5110
5111 2015-03-12  Gary Benson <gbenson@redhat.com>
5112
5113         * solib.c (_initialize_solib): Make "set/show sysroot" use
5114         add_setshow_optional_filename_cmd so it can be restored to
5115         empty after being set.
5116
5117 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
5118
5119         * Makefile.in (SFILES): New source break-catch-syscall.c.
5120         (COMMON_OBS): New object break-catch-syscall.o.
5121         * break-catch-syscall.c: New file.
5122         * breakpoint.c: Remove inclusion of "xml-syscall.h".
5123         (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
5124         (struct syscall_catchpoint): Likewise.
5125         (dtor_catch_syscall): Likewise.
5126         (catch_syscall_inferior_data): Likewise.
5127         (struct catch_syscall_inferior_data): Likewise.
5128         (get_catch_syscall_inferior_data): Likewise.
5129         (catch_syscall_inferior_data_cleanup): Likewise.
5130         (insert_catch_syscall): Likewise.
5131         (remove_catch_syscall): Likewise.
5132         (breakpoint_hit_catch_syscall): Likewise.
5133         (print_it_catch_syscall): Likewise.
5134         (print_one_catch_syscall): Likewise.
5135         (print_mention_catch_syscall): Likewise.
5136         (print_recreate_catch_syscall): Likewise.
5137         (catch_syscall_breakpoint_ops): Likewise.
5138         (syscall_catchpoint_p): Likewise.
5139         (create_syscall_event_catchpoint): Likewise.
5140         (catch_syscall_split_args): Likewise.
5141         (catch_syscall_command_1): Likewise.
5142         (is_syscall_catchpoint_enabled): Likewise.
5143         (catch_syscall_enabled): Likewise.
5144         (catching_syscall_number): Likewise.
5145         (catch_syscall_completer): Likewise.
5146         (clear_syscall_counts): Likewise.
5147         (initialize_breakpoint_ops): Move initialization of syscall
5148         catchpoints to break-catch-syscall.c.
5149         (_initialize_breakpoint): Move code related to syscall catchpoints
5150         to break-catch-syscall.c.
5151
5152 2015-03-11  Sergio Durigan Junior  <sergiodj@redhat.com>
5153
5154         * breakpoint.c (breakpoint_find_if): New function.
5155         * breakpoint.h (breakpoint_find_if): New prototype.
5156
5157 2015-03-11  Gary Benson <gbenson@redhat.com>
5158
5159         * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
5160         * remote-fileio.c (remote_fileio_to_host_uint): New function.
5161         (remote_fileio_to_host_ulong): Likewise.
5162         (remote_fileio_to_host_mode): Likewise.
5163         (remote_fileio_to_host_time): Likewise.
5164         (remote_fileio_to_host_stat): Likewise.
5165         * remote.c (PACKET_vFile_fstat): New enum value.
5166         (remote_protocol_features): Register the "vFile:fstat" feature.
5167         (remote_hostio_fstat): New function.
5168         (remote_bfd_iovec_stat): Use the above.
5169         (_initialize_remote): Register new "set/show remote
5170         hostio-fstat-packet" command.
5171         * symfile.c (separate_debug_file_exists): Update comment.
5172         * NEWS: Announce new vFile:fstat packet.
5173
5174 2015-03-11  Gary Benson <gbenson@redhat.com>
5175
5176         * common/common-remote-fileio.h: New file.
5177         * common/common-remote-fileio.c: Likewise.
5178         * Makefile.in (SFILES): Add common/common-remote-fileio.c.
5179         (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
5180         (COMMON_OBS): Add common-remote-fileio.o.
5181         (common-remote-fileio.o): New rule.
5182         * remote-fileio.h (common-remote-fileio.h): New include.
5183         * remote-fileio.c (gdb/fileio.h): Do not include.
5184         (remote_fileio_to_be): Moved to common-remote-fileio.h.
5185         (remote_fileio_to_fio_uint): Likewise.
5186         (remote_fileio_to_fio_time): Likewise.
5187         (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
5188         (remote_fileio_to_fio_mode): Likewise.
5189         (remote_fileio_to_fio_ulong): Likewise.
5190         (remote_fileio_to_fio_stat): Likewise.
5191
5192 2015-03-11  Andy Wingo  <wingo@igalia.com>
5193
5194         * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
5195         we were checking the cached type, not the cached dynamic type.
5196
5197 2015-03-11  Andy Wingo  <wingo@igalia.com>
5198
5199         * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
5200         other strings, as these are on the GC'd heap, and will be
5201         collected along with the smob.
5202
5203 2015-03-11  Andy Wingo  <wingo@igalia.com>
5204
5205         * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
5206         (objfile_functions): Bind gdbscm_objfile_progspace to
5207         objfile-progspace.
5208         * guile/lib/gdb.scm: Add objfile-progspace to exports.
5209
5210 2015-03-11  Andy Wingo  <wingo@igalia.com>
5211
5212         * guile/guile.c (_initialize_guile): Disable automatic
5213         finalization, if Guile offers us that possibility.
5214         * guile/guile.c (call_initialize_gdb_module):
5215         * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
5216         finalizers in appropriate places.
5217         * configure.ac (AC_TRY_LIBGUILE): Add a check for
5218         scm_set_automatic_finalization_enabled.
5219         * configure: Regenerated.
5220
5221 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5222
5223         * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
5224         SAL, if possible.
5225
5226 2015-03-11  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5227
5228         * s390-linux-nat.c (struct arch_lwp_info): New.
5229         (s390_fix_watch_points): Rename to...
5230         (s390_prepare_to_resume): ...this.  Skip the PER info update
5231         unless the watch points have changed.
5232         (s390_refresh_per_info, s390_new_thread): New functions.
5233         (s390_insert_watchpoint): Call s390_refresh_per_info instead of
5234         s390_fix_watch_points.
5235         (s390_remove_watchpoint): Likewise.
5236         (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
5237         Register s390_prepare_to_resume.
5238
5239 2015-03-09  Pedro Alves  <palves@redhat.com>
5240
5241         Revert:
5242         2015-03-07  Pedro Alves  <palves@redhat.com>
5243         * common/gdb_socket.h: New file.
5244         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
5245         sys/socket.h.
5246         (net_open): Use union gdb_sockaddr_u.
5247
5248 2015-03-07  Pedro Alves  <palves@redhat.com>
5249
5250         * configure.ac (build_warnings): Move -Wmissing-prototypes
5251         -Wdeclaration-after-statement -Wmissing-parameter-type
5252         -Wold-style-declaration -Wold-style-definition to the C-specific
5253         set.
5254         * configure: Regenerate.
5255
5256 2015-03-07  Pedro Alves  <palves@redhat.com>
5257
5258         * common/gdb_socket.h: New file.
5259         * ser-tcp.c: Include gdb_socket.h.  Don't include netinet/in.h nor
5260         sys/socket.h.
5261         (net_open): Use union gdb_sockaddr_u.
5262
5263 2015-03-07  Pedro Alves  <palves@redhat.com>
5264
5265         * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
5266         (exceptions_state_mc_action_iter)
5267         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
5268         Don't define.
5269         [__cplusplus] (try_scope_depth): New global.
5270         [__cplusplus] (exception_try_scope_entry)
5271         (exception_try_scope_exit, gdb_exception_sliced_copy)
5272         (exception_rethrow): New functions.
5273         (throw_exception): In C++ mode, throw
5274         gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
5275         gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
5276         (throw_it): In C++ mode, use try_scope_depth.
5277         * common/common-exceptions.h [!__cplusplus]
5278         (exceptions_state_mc_action_iter)
5279         (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
5280         Don't declare.
5281         [__cplusplus] (exception_try_scope_entry)
5282         (exception_try_scope_exit, exception_rethrow): Declare.
5283         [__cplusplus] (struct exception_try_scope): New struct.
5284         [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
5285         C++ exceptions.
5286         (struct gdb_exception_RETURN_MASK_ALL)
5287         (struct gdb_exception_RETURN_MASK_ERROR)
5288         (struct gdb_exception_RETURN_MASK_QUIT): New types.
5289
5290 2015-03-07  Pedro Alves  <palves@redhat.com>
5291
5292         * main.c (handle_command_errors): Remove volatile qualifier from
5293         parameter.
5294
5295 2015-03-07  Pedro Alves  <palves@redhat.com>
5296
5297         * breakpoint.c (save_breakpoints): Adjust to avoid code between
5298         TRY and CATCH.
5299         * gdbtypes.c (safe_parse_type): Remove empty line.
5300         (types_deeply_equal):
5301         * guile/scm-frame.c (gdbscm_frame_name):
5302         * linux-thread-db.c (find_new_threads_once):
5303         * python/py-breakpoint.c (bppy_get_commands):
5304         * record-btrace.c (record_btrace_insert_breakpoint)
5305         (record_btrace_remove_breakpoint, record_btrace_start_replaying)
5306         (record_btrace_start_replaying): Adjust to avoid code between TRY
5307         and CATCH.
5308
5309 2015-03-07  Pedro Alves  <palves@redhat.com>
5310
5311         * common/common-exceptions.c (struct catcher) <exception>: No
5312         longer a pointer to volatile exception.  Now an exception value.
5313         <mask>: Delete field.
5314         (exceptions_state_mc_init): Remove all parameters.  Adjust.
5315         (exceptions_state_mc): No longer pop the catcher here.
5316         (exceptions_state_mc_catch): New function.
5317         (throw_exception): Adjust.
5318         * common/common-exceptions.h (exceptions_state_mc_init): Remove
5319         all parameters.
5320         (exceptions_state_mc_catch): Declare.
5321         (TRY_CATCH): Rename to ...
5322         (TRY): ... this.  Remove EXCEPTION and MASK parameters.
5323         (CATCH, END_CATCH): New.
5324         All callers adjusted.
5325
5326 2015-03-07  Tom Tromey  <tromey@redhat.com>
5327
5328         * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
5329
5330 2015-03-07  Pedro Alves  <palves@redhat.com>
5331
5332         * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
5333         (amd64_epilogue_frame_cache): Normal exception handling code.
5334         * break-catch-throw.c (check_status_exception_catchpoint)
5335         (re_set_exception_catchpoint): Ditto.
5336         * cli/cli-interp.c (safe_execute_command):
5337         * cli/cli-script.c (script_from_file): Ditto.
5338         * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
5339         Ditto.
5340         * compile/compile-object-run.c (compile_object_run): Ditto.
5341         * cp-abi.c (baseclass_offset): Ditto.
5342         * cp-valprint.c (cp_print_value): Ditto.
5343         * exceptions.c (catch_exceptions_with_msg):
5344         * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
5345         * frame.c (get_frame_address_in_block_if_available): Ditto.
5346         * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
5347         (i386_sigtramp_frame_cache): Ditto.
5348         * infcmd.c (post_create_inferior): Ditto.
5349         * linespec.c (parse_linespec, find_linespec_symbols):
5350         * p-valprint.c (pascal_object_print_value): Ditto.
5351         * parse.c (parse_expression_for_completion): Ditto.
5352         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5353         * remote.c (remote_get_noisy_reply): Ditto.
5354         * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
5355         * solib-svr4.c (solib_svr4_r_map): Ditto.
5356
5357 2015-03-06  Gary Benson  <gbenson@redhat.com>
5358
5359         * common/common-utils.h (startswith): New inline function.
5360         All places where this logic was used updated to use the above.
5361
5362 2015-03-05  Pedro Alves  <palves@redhat.com>
5363
5364         PR gdb/18002
5365         * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
5366         after reading the breakpoint's shadow memory.
5367
5368 2015-03-05  Mark Kettenis  <kettenis@gnu.org>
5369
5370         * hppabsd-nat.c: Remove file.
5371         * hppaobsd-nat.c: New file.
5372         * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c.  Add
5373         hppaobsd-nat.c.
5374         * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
5375         hppaobsd-nat.o.
5376
5377 2015-03-04  Pedro Alves  <palves@redhat.com>
5378
5379         * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
5380         (target_decr_pc_after_break): Delete declaration.
5381         * target.c (default_target_decr_pc_after_break)
5382         (target_decr_pc_after_break): Delete.
5383         * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
5384         gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
5385         * linux-thread-db.c (check_event): Likewise.
5386         * infrun.c (adjust_pc_after_break): Likewise.
5387         * darwin-nat.c (cancel_breakpoint): Likewise.
5388         * aix-thread.c (aix_thread_wait): Likewise.
5389         * target-delegates.c: Regenerate.
5390
5391 2015-03-04  Pedro Alves  <palves@redhat.com>
5392
5393         * linux-nat.c (save_sigtrap): Check for breakpoints before
5394         checking watchpoints.
5395         (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
5396         breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
5397         (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
5398         a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
5399         (linux_nat_stopped_by_sw_breakpoint)
5400         (linux_nat_supports_stopped_by_sw_breakpoint)
5401         (linux_nat_stopped_by_hw_breakpoint)
5402         (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
5403         (linux_nat_wait_1): Don't re-increment the PC if relying on
5404         SIGTRAP's siginfo->si_code.
5405         (linux_nat_add_target): Install new target methods.
5406         * linux-thread-db.c (check_event): Don't account for breakpoint PC
5407         offset if the target already adjusted the PC.
5408         * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
5409         (GDB_ARCH_TRAP_BRKPT): New.
5410         (TRAP_HWBKPT): Define if not already defined.
5411
5412 2015-03-04  Pedro Alves  <palves@redhat.com>
5413
5414         * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
5415         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
5416         Delete field.
5417         <stop_reason>: New field.
5418         (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
5419         (packet_set_cmd_state): New function.
5420         (remote_protocol_features): Register the "swbreak" and "hwbreak"
5421         features.
5422         (remote_query_supported): If not disabled with the corresponding
5423         "set remote foo-packet" command, report support for the swbreak
5424         and hwbreak features.
5425         (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
5426         field.
5427         <stop_reason>: New field.
5428         (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
5429         (remote_wait_as): Adjust.
5430         (remote_stopped_by_sw_breakpoint)
5431         (remote_supports_stopped_by_sw_breakpoint)
5432         (remote_stopped_by_hw_breakpoint)
5433         (remote_supports_stopped_by_hw_breakpoint): New functions.
5434         (remote_stopped_by_watchpoint): New function.
5435         (init_remote_ops): Install them.
5436         (_initialize_remote): Register new "set/show remote
5437         swbreak-feature-packet" and "set/show remote
5438         swbreak-feature-packet" commands.
5439
5440 2015-03-04  Pedro Alves  <palves@redhat.com>
5441
5442         * btrace.h: Include target/waitstatus.h.
5443         (struct btrace_thread_info) <stop_reason>: New field.
5444         * record-btrace.c (record_btrace_step_thread): Use
5445         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
5446         (record_btrace_decr_pc_after_break): Delete.
5447         (record_btrace_stopped_by_sw_breakpoint)
5448         (record_btrace_supports_stopped_by_sw_breakpoint)
5449         (record_btrace_stopped_by_hw_breakpoint)
5450         (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
5451         (init_record_btrace_ops): Install them.
5452         * record-full.c (record_full_hw_watchpoint): Delete and replace
5453         with ...
5454         (record_full_stop_reason): ... this throughout.
5455         (record_full_exec_insn): Adjust.
5456         (record_full_wait_1): Adjust.  No longer re-increment the PC.
5457         (record_full_wait_1): Adjust.  Use
5458         record_check_stopped_by_breakpoint instead of breakpoint_here_p.
5459         (record_full_stopped_by_watchpoint): Adjust.
5460         (record_full_stopped_by_sw_breakpoint)
5461         (record_full_supports_stopped_by_sw_breakpoint)
5462         (record_full_supports_stopped_by_sw_breakpoint)
5463         (record_full_stopped_by_hw_breakpoint)
5464         (record_full_supports_stopped_by_hw_breakpoint): New functions.
5465         (init_record_full_ops, init_record_full_core_ops): Install them.
5466         * record.c (record_check_stopped_by_breakpoint): New function.
5467         * record.h: Include target/waitstatus.h.
5468         (record_check_stopped_by_breakpoint): New declaration.
5469
5470 2015-03-04  Pedro Alves  <palves@redhat.com>
5471
5472         enum lwp_stop_reason -> enum target_stop_reason
5473         * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
5474         (linux_nat_stopped_by_watchpoint, status_callback)
5475         (linux_nat_wait_1): Adjust.
5476         * linux-nat.h (enum lwp_stop_reason): Delete.
5477         (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
5478         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
5479         * target/waitstatus.h (enum target_stop_reason): New.
5480
5481 2015-03-04  Pedro Alves  <palves@redhat.com>
5482
5483         * breakpoint.c (need_moribund_for_location_type): New function.
5484         (bpstat_stop_status): Don't skipping checking moribund locations
5485         of breakpoint types which the target tell caused a stop.
5486         (program_breakpoint_here_p): New function, factored out from ...
5487         (bp_loc_is_permanent): ... this.
5488         (update_global_location_list): Don't create a moribund location if
5489         the target supports reporting stops of the type of the removed
5490         breakpoint.
5491         * breakpoint.h (program_breakpoint_here_p): New declaration.
5492         * infrun.c (adjust_pc_after_break): Return early if the target has
5493         already adjusted the PC.  Add comments.
5494         (handle_signal_stop): If nothing explains a signal, and the target
5495         tells us the stop was caused by a software breakpoint, check if
5496         there's a breakpoint instruction in the memory.  If so, adjust the
5497         PC before presenting the stop to the user.  Otherwise, ignore the
5498         trap.  If nothing explains a signal, and the target tells us the
5499         stop was caused by a hardware breakpoint, ignore the trap.
5500         * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
5501         to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
5502         to_supports_stopped_by_hw_breakpoint>: New fields.
5503         (target_stopped_by_sw_breakpoint)
5504         (target_supports_stopped_by_sw_breakpoint)
5505         (target_stopped_by_hw_breakpoint)
5506         (target_supports_stopped_by_hw_breakpoint): Define.
5507         * target-delegates.c: Regenerate.
5508
5509 2015-03-04  Pedro Alves  <palves@redhat.com>
5510
5511         * infrun.c (follow_fork_inferior): Use the whole of the
5512         inferior_ptid and pending_follow.related_pid ptids instead of
5513         building ptids from the process components.  Adjust verbose output
5514         to use target_pid_to_str.
5515         * linux-nat.c (linux_child_follow_fork): Use the whole of the
5516         inferior_ptid and pending_follow.related_pid ptids instead of
5517         building ptids from the process components.
5518
5519 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
5520
5521         * inf-ptrace.c [PT_GET_PROCESS_STATE]
5522         (inf_ptrace_insert_fork_catchpoint): New function.
5523         (inf_ptrace_remove_fork_catchpoint): New function.
5524         (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
5525
5526 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5527
5528         * s390-linux-tdep.c (s390_register_name): Return empty string
5529         instead of NULL for registers that shouldn't be visible.
5530
5531 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5532
5533         * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
5534         XML file for 64-bit targets.
5535
5536 2015-03-03  Simon Marchi  <simon.marchi@ericsson.com>
5537
5538         * target.h (find_default_create_inferior): Remove declaration.
5539         (find_default_attach): Likewise.
5540
5541 2015-03-03  Pedro Alves  <palves@redhat.com>
5542
5543         * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
5544         Use ptid_get_pid to get the overall process id when resuming all
5545         threads.
5546
5547 2015-03-03  Pedro Alves  <palves@redhat.com>
5548
5549         * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
5550         the lwp field of ptid.  Pass the full ptid to get_thread_regcache.
5551         * inf-ptrace.c (get_ptrace_pid): New function.
5552         (inf_ptrace_resume): Use it.
5553         * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
5554         to the lower layer.
5555
5556 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
5557
5558         * nat/linux-btrace.c: Include sys/utsname.h.
5559         (linux_determine_kernel_ptr_bits): New.
5560         (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
5561         * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
5562         ptr_bits.
5563
5564 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
5565
5566         * btrace.c (ftrace_update_function): Treat return as tailcall for
5567         "_dl_runtime_resolve".
5568
5569 2015-03-03  Markus Metzger  <markus.t.metzger@intel.com>
5570
5571         * btrace.h (btrace_function) <lbegin, lend>: Remove.
5572         * btrace.c (ftrace_debug): Do not print the line range.
5573         (ftrace_skip_file, ftrace_update_lines): Remove.
5574         (ftrace_new_function): Remove lbegin and lend initialization.
5575         (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
5576         * record-btrace.c (btrace_compute_src_line_range): New.
5577         (btrace_call_history_src_line): Call btrace_compute_src_line_range.
5578
5579 2015-03-02  Pedro Alves  <palves@redhat.com>
5580
5581         * infrun.c (follow_exec): Delete all threads of the process except
5582         the event thread.  Extended comments.
5583
5584 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
5585
5586         * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
5587
5588 2015-03-02  Joel Brobecker  <brobecker@adacore.com>
5589
5590         * utils.h: Remove <stdbool.h> #include.
5591         (producer_is_gcc): Change return type to "int".
5592         * utils.c (producer_is_gcc): Change return type to int.
5593         Return 1 instead of true, and 0 instead of false.
5594         Adjust function documentation accordingly.
5595
5596 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5597
5598         * s390-linux-nat.c (have_regset_vxrs): New static variable.
5599         (s390_linux_fetch_inferior_registers): Handle vector registers, if
5600         present.
5601         (s390_linux_store_inferior_registers): Likewise.
5602         (s390_get_hwcap): Remove function.  Embed its logic...
5603         (s390_read_description): ...here.  Yield a target description with
5604         vector registers if applicable.
5605         * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
5606         "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
5607         "features/s390x-tevx-linux64.c".
5608         (struct gdbarch_tdep) <v0_full_regnum>: New field.
5609         (s390_dwarf_regmap): Add vector registers.  Remove bogus entries
5610         for "GNU/Linux-specific registers".
5611         (s390_dwarf_reg_r0l): New enum value.
5612         (s390_dwarf_reg_to_regnum): Support vector registers.
5613         (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
5614         of GPR lower halves.
5615         (regnum_is_vxr_full): New function.
5616         (s390_register_name): New function.
5617         (s390_pseudo_register_name): Handle v0-v15, which are composed of
5618         f0-f15 and v0l-v15l.
5619         (s390_pseudo_register_type): Likewise.
5620         (s390_pseudo_register_read): Likewise.
5621         (s390_pseudo_register_write): Likewise.
5622         (s390_value_from_register): Account for the fact that values are
5623         placed left-justified in vector registers.
5624         (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
5625         the vector reggroup and omit them from the general reggroup.
5626         (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
5627         (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
5628         (s390_iterate_over_regset_sections): Add iterations for the two
5629         new vector regsets.
5630         (s390_core_read_description): Yield a target description with
5631         vector registers if applicable.
5632         (s390_gdbarch_init): Handle target descriptions with vector
5633         registers.  Add "register_name" gdbarch method.
5634         (_initialize_s390_tdep): Call new tdesc initialization functions.
5635         * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
5636         (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
5637         (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
5638         (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
5639         (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
5640         (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
5641         (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
5642         (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
5643         (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
5644         (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
5645         (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
5646         (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
5647         (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
5648         (S390_NUM_REGS): Adjust value.
5649         (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
5650         (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
5651         (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
5652         * NEWS: Announce S/390 vector register support.
5653
5654 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5655
5656         * features/s390-tevx-linux64.xml: New file.
5657         * features/s390-vx-linux64.xml: New file.
5658         * features/s390-vx.xml: New file.
5659         * features/s390x-tevx-linux64.xml: New file.
5660         * features/s390x-vx-linux64.xml: New file.
5661         * features/Makefile (WHICH): Add s390-vx-linux64,
5662         s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
5663         (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
5664         (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
5665         macros.
5666         * features/s390-tevx-linux64.c: New generated file.
5667         * features/s390-vx-linux64.c: Likewise.
5668         * features/s390x-tevx-linux64.c: Likewise.
5669         * features/s390x-vx-linux64.c: Likewise.
5670         * regformats/s390-tevx-linux64.dat: Likewise.
5671         * regformats/s390-vx-linux64.dat: Likewise.
5672         * regformats/s390x-tevx-linux64.dat: Likewise.
5673         * regformats/s390x-vx-linux64.dat: Likewise.
5674
5675 2015-02-28  Doug Evans  <xdje42@gmail.com>
5676
5677         * symtab.h (struct symtab) <next>: Fix comment.
5678
5679 2015-02-27  Simon Marchi  <simon.marchi@ericsson.com>
5680
5681         * python/python.c (python_GdbModuleDef): Rename GdbMethods to
5682         python_GdbMethods.
5683
5684 2015-02-27  Pedro Alves  <palves@redhat.com>
5685
5686         * dtrace-probe.c (dtrace_probe_ops): Make extern.
5687
5688 2015-02-27  Pedro Alves  <palves@redhat.com>
5689
5690         * common/common-exceptions.h (exception_none): Declare.
5691         * common/common-exceptions.c (exception_none): Moved from
5692         exceptions.c.
5693         (exceptions_state_mc_init): Use exception_none.
5694         * exceptions.c (exception_none): Move to
5695         common/common-exceptions.c.
5696         * exceptions.h (exception_none): Move to
5697         common/common-exceptions.h.
5698
5699 2015-02-27  Pedro Alves  <palves@redhat.com>
5700
5701         * main.c (catch_command_errors, catch_command_errors_const):
5702         Remove 'mask' argument.  Adjust.
5703         (captured_main): Adjust callers.
5704
5705 2015-02-27  Pedro Alves  <palves@redhat.com>
5706
5707         * python/python-internal.h: Include "extension-priv.h".
5708
5709 2015-02-27  Pedro Alves  <palves@redhat.com>
5710
5711         * breakpoint.h (enum print_stop_action): Move further up in the
5712         file.
5713
5714 2015-02-27  Pedro Alves  <palves@redhat.com>
5715
5716         * gdbarch.sh: Include regcache.h.
5717         * gdbarch.h: Regenerate.
5718
5719 2015-02-27  Pedro Alves  <palves@redhat.com>
5720
5721         * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
5722         Remove duplicate const.
5723         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
5724         duplicate const.
5725
5726 2015-02-27  Pedro Alves  <palves@redhat.com>
5727
5728         * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
5729         * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
5730         * features/feature_to_c.sh: Tag the generated xml_builtin array
5731         with extern const in C++ mode.
5732
5733 2015-02-27  Tom Tromey  <tromey@redhat.com>
5734
5735         * minidebug.c (struct lzma_stream): Rename to ...
5736         (struct gdb_lzma_stream): ... this.
5737         (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
5738
5739 2015-02-27  Pedro Alves  <palves@redhat.com>
5740
5741         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
5742         function.
5743         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
5744         (mi_cmd_stack_list_variables): Use it.
5745
5746 2015-02-27  Pedro Alves  <palves@redhat.com>
5747
5748         * x86-linux-nat.c (u_debugreg_offset): New function.
5749         (x86_linux_dr_get, x86_linux_dr_set): Use it.
5750
5751 2015-02-27  Pedro Alves  <palves@redhat.com>
5752
5753         * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
5754         declaration.
5755         Include break-common.h.
5756
5757 2015-02-27  Tom Tromey  <tromey@redhat.com>
5758             Pedro Alves <palves@redhat.com>
5759
5760         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
5761         local used to iterate over enums.
5762         * completer.c (signal_completer): Likewise.
5763         * i386-tdep.c (i386_stap_parse_special_token): Likewise.
5764         * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
5765         * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
5766         * tui/tui-layout.c (next_layout, prev_layout): Likewise.
5767         * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
5768         (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
5769         * tui-wingeneral.c (tui_refresh_all):  Likewise.
5770
5771 2015-02-27  Pedro Alves  <palves@redhat.com>
5772
5773         * target.h: Include "infrun.h".
5774
5775 2015-02-27  Pedro Alves  <palves@redhat.com>
5776
5777         * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
5778
5779 2015-02-27  Pedro Alves  <palves@redhat.com>
5780
5781         * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
5782         (IPA_SYM): Use it.
5783         * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
5784
5785 2015-02-27  Pedro Alves  <palves@redhat.com>
5786
5787         * cli-out.c (_rl_erase_entire_line): Move declaration out of
5788         cli_mld_erase_entire_line, and make it extern "C".
5789         * common/common-defs.h (EXTERN_C): New.
5790         * completer.c (_rl_completion_prefix_display_length)
5791         (_rl_print_completions_horizontally, QSFUNC): Move declarations
5792         out of gdb_display_match_list_1.
5793         (_rl_qsort_string_compare): Move declaration out of
5794         gdb_display_match_list_1, and make it extern "C".
5795         * defs.h (re_comp): Use EXTERN_C.
5796         * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
5797         and make it extern "C".
5798         (monstartup): Move declaration out of maintenance_set_profile_cmd,
5799         and make it extern "C".
5800         (main): Move declaration out of maintenance_set_profile_cmd.
5801         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
5802         EXTERN_C.
5803
5804 2015-02-27  Pedro Alves  <palves@redhat.com>
5805
5806         * python/python.c (GdbMethods): Rename to ...
5807         (python_GdbMethods): ... this and make extern.
5808         (GdbModuleDef): Rename to ...
5809         (python_GdbModuleDef): ... this and make extern.
5810
5811 2015-02-27  Pedro Alves  <palves@redhat.com>
5812
5813         * record-btrace.c (set_record_btrace_cmdlist)
5814         (show_record_btrace_cmdlist): Remove redefinitions.
5815
5816 2015-02-27  Tom Tromey  <tromey@redhat.com>
5817             Pedro Alves  <palves@redhat.com>
5818
5819         * dwarf2-frame.c (enum cfa_how_kind, struct
5820         dwarf2_frame_state_reg_info): Move out of struct
5821         dwarf2_frame_state.
5822         * dwarf2read.c (struct tu_stats): Move out of struct
5823         dwarf2_per_objfile.
5824         (struct file_entry): Move out of struct line_header.
5825         (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
5826         typedef_field_list): Move out of struct field_info.
5827         * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
5828         Move out of struct dynamic_prop.
5829         (union type_owner, union field_location, struct field, struct
5830         range_bounds, union type_specific): Move out of struct main_type.
5831         (struct fn_fieldlist, struct fn_field, struct typedef_field)
5832         (VOFFSET_STATIC): Move out of struct cplus_struct_type.
5833         (struct call_site_target, union call_site_parameter_u, struct
5834         call_site_parameter): Move out of struct call_site.
5835         * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
5836         m32c_prologue.
5837         (enum srcdest_kind): Move out of struct srcdest.
5838         * main.c (enum cmdarg_kind): Move out of struct cmdarg.
5839         * prologue-value.h (enum prologue_value_kind): Move out of struct
5840         prologue_value.
5841         * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
5842         gdbarch_tdep.
5843         * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
5844         out of struct field_info.
5845         * symfile.h (struct other_sections): Move out of struct
5846         section_addr_info.
5847         * symtab.c (struct symbol_cache_slot): Move out struct
5848         block_symbol_cache.
5849         * target-descriptions.c (enum tdesc_type_kind): Move out of
5850         typedef struct tdesc_type.
5851         * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
5852         struct tui_line_or_address.
5853         * value.c (enum internalvar_kind, union internalvar_data): Move
5854         out of struct internalvar.
5855         * xtensa-tdep.h (struct ctype_cache): Move out of struct
5856         gdbarch_tdep.
5857
5858 2015-02-27  Tom Tromey  <tromey@redhat.com>
5859             Pedro Alves  <palves@redhat.com>
5860
5861         Rename symbols whose names are reserved C++ keywords throughout.
5862
5863 2015-02-27  Pedro Alves  <palves@redhat.com>
5864
5865         * Makefile.in (COMPILER): New, get it from autoconf.
5866         (COMPILE.pre, CC_LD): Use COMPILER.
5867         (CXX): Get from autoconf instead.
5868         (CXX_FOR_TARGET): Default to g++ instead of gcc.
5869         * acinclude.m4: Include build-with-cxx.m4.
5870         * build-with-cxx.m4: New file.
5871         * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
5872         Disable -Werror by default if building in C++ mode.
5873         (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
5874         -Wno-narrowing in C++ mode.  Only enable -Wpointer-sign in C mode.
5875         Run supported-warning-flags tests with the C++ compiler.
5876         Save/restore CXXFLAGS too.
5877         * configure: Regenerate.
5878
5879 2015-02-27  Pedro Alves  <palves@redhat.com>
5880
5881         * libiberty.m4: New file.
5882         * acinclude.m4: Include libiberty.m4.
5883         * configure.ac: Call libiberty_INIT.
5884         * config.in, configure: Regenerate.
5885
5886 2015-02-27  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5887
5888         * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
5889         31-bit targets, but 64-bit targets as well.
5890         (s390_gnu_triplet_regexp): New function.
5891         (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
5892         64-bit targets as well.  Set the gnu_triplet_regexp gdbarch
5893         method.
5894
5895 2015-02-27  Jon TURNEY  <jon.turney@dronecode.org.uk>  (tiny patch)
5896
5897         * windows-nat.c (CONTEXT_DEBUGGER): Remove.
5898         (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS.  Incorporate flags
5899         from CONTEXT_DEBUGGER.
5900
5901 2015-02-26  Doug Evans  <dje@google.com>
5902
5903         * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
5904         CHECK_TYPEDEF.
5905         (set_type_vptr_fieldno): Ditto.
5906         (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
5907         * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
5908
5909 2015-02-26  Pedro Alves  <palves@redhat.com>
5910
5911         * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
5912         * complaints.c (vcomplaint): Pass argument FMT directly to
5913         printf-like functions instead of complaint->fmt.
5914         * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
5915         * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
5916         * compile/compile-loc2c.c (pushf, unary, binary): Add
5917         ATTRIBUTE_PRINTF.
5918         (do_compile_dwarf_expr_to_c): Pass string literal as format string
5919         to pushf.
5920         (BINARY): Pass string literal as format string to 'binary'.
5921         * compile/compile-object-load.c (link_callbacks_einfo): Add
5922         ATTRIBUTE_PRINTF.
5923         * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
5924
5925 2015-02-26  Pedro Alves  <palves@redhat.com>
5926
5927         * windows-termcap.c: Rename to ...
5928         * stub-termcap.c: ... this.  Adjust header line.
5929         * Makefile.in (SFILES): Refer to stub-termcap.c instead of
5930         windows-termcap.c.
5931         * configure: Regenerate.
5932         * configure.ac: Refer to stub-termcap.o instead of
5933         windows-termcap.o.
5934         * gdb_curses.h: Mention stub-termcap.c instead of
5935         windows-termcap.c.
5936
5937 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
5938
5939         * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
5940         (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
5941
5942 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
5943
5944         * gdb/infcmd.c (print_return_value): use type_to_string to print type.
5945
5946 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
5947
5948         * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
5949         bfd_canonicalize_symtab.
5950
5951 2015-02-25  John Baldwin  <jhb@FreeBSD.org>
5952
5953         * amd64fbsd-nat.c: Include sys/user.h.
5954         (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
5955         instead of KERN_PS_STRINGS to locate the signal trampoline.
5956         * i386fbsd-nat.c: Include sys/user.h.
5957         (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
5958         instead of KERN_PS_STRINGS to locate the signal trampoline.
5959         * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
5960         (amd64fbsd_sigtramp_p): New.
5961         (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
5962         longer set default values.
5963         (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
5964         * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
5965         (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
5966         (i386fbsd_freebsd4_sigtramp_start)
5967         (i386fbsd_freebsd4_sigtramp_middle)
5968         (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
5969         (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
5970         (i386fbsd_sigtramp_p): New.
5971         (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
5972         longer set default values.
5973         (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
5974
5975 2015-02-25  John Baldwin  <jhb@freebsd.org>
5976
5977         * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
5978         get_frame_register instead of frame_unwind_register_unsigned.
5979
5980 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
5981
5982         PR build/18033
5983         * compile/compile-c-support.c (c_compute_program): Change // comment.
5984         * compile/compile-object-load.c (setup_sections): Change // comment.
5985
5986 2015-02-26  Joel Brobecker  <brobecker@adacore.com>
5987
5988         PR build/18033:
5989         * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
5990
5991 2015-02-23  Pedro Alves  <palves@redhat.com>
5992
5993         * remote.c (skip_to_semicolon): New function.
5994         (remote_parse_stop_reply) <T stop reply>: Use it.  Don't
5995         special case the stop reasons that look like hex numbers
5996         upfront.  Instead handle real register numbers after matching
5997         all the known stop reasons.
5998
5999 2015-02-21  Doug Evans  <dje@google.com>
6000
6001         PR c++/17976, symtab/17821
6002         * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
6003         is_in_anonymous.  All callers updated.
6004         (find_symbol_in_baseclass): Ditto.
6005         (cp_lookup_nested_symbol_1): Ditto.  Don't search all static blocks
6006         for symbols in an anonymous namespace.
6007         * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
6008         DW_AT_name directly.
6009         (dwarf2_name): Convert missing namespace name to
6010         CP_ANONYMOUS_NAMESPACE_STR.
6011
6012 2015-02-20  Pedro Alves  <palves@redhat.com>
6013
6014         * linux-nat.c (linux_handle_extended_wait): Call
6015         thread_db_notice_clone whenever a new clone LWP is detected.
6016         (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
6017         functions.
6018         * linux-nat.h (thread_db_attach_lwp): Delete declaration.
6019         (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
6020         (linux_unstop_all_lwps): Declare.
6021         * linux-thread-db.c (struct thread_get_info_inout): Delete.
6022         (thread_get_info_callback): Delete.
6023         (thread_from_lwp): Use td_thr_get_info and record_thread.
6024         (thread_db_attach_lwp): Delete.
6025         (thread_db_notice_clone): New function.
6026         (try_thread_db_load_1): If /proc is mounted and shows the
6027         process'es task list, walk over all LWPs and call thread_from_lwp
6028         instead of relying on td_ta_thr_iter.
6029         (attach_thread): Don't call check_thread_signals here.  Split the
6030         tail part of the function (which adds the thread to the core GDB
6031         thread list) to ...
6032         (record_thread): ... this function.  Call check_thread_signals
6033         here.
6034         (thread_db_wait): Don't call thread_db_find_new_threads_1.  Always
6035         call thread_from_lwp.
6036         (thread_db_update_thread_list): Rename to ...
6037         (thread_db_update_thread_list_org): ... this.
6038         (thread_db_update_thread_list): New function.
6039         (thread_db_find_thread_from_tid): Delete.
6040         (thread_db_get_ada_task_ptid): Simplify.
6041         * nat/linux-procfs.c: Include <sys/stat.h>.
6042         (linux_proc_task_list_dir_exists): New function.
6043         * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
6044
6045 2015-02-20  Pedro Alves  <palves@redhat.com>
6046
6047         * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
6048         main LWP.  Handle the case of waitpid returning 0 if we're already
6049         attached to the LWP.  Don't set the LWP's last_resume_kind to
6050         resume_stop if we already knew about the LWP.
6051         (linux_nat_filter_event): Add debug logs.
6052
6053 2015-02-20  Pedro Alves  <palves@redhat.com>
6054
6055         * target.h (forward_target_decr_pc_after_break): Delete
6056         declaration.
6057
6058 2015-02-20  Pedro Alves  <palves@redhat.com>
6059
6060         PR threads/18006
6061         * linux-thread-db.c (thread_get_info_callback): Return early if
6062         the thread's lwp id is -1.
6063
6064 2015-02-20  Joel Brobecker  <brobecker@adacore.com>
6065
6066         GDB 7.9 released.
6067
6068 2015-02-19  Steve Ellcey  <sellcey@imgtec.com>
6069
6070         * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
6071         (dtrace_get_probes) Change type of variable 'dof'.
6072
6073 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
6074
6075         PR breakpoints/16812
6076         * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
6077         * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
6078         * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
6079
6080 2015-02-19  David Taylor  <dtaylor@emc.com>
6081
6082         * common/ax.def (setv): Fix consumed entry in setv DEFOP.
6083
6084 2015-02-18  Patrick Palka  <patrick@parcs.ath.cx>
6085
6086         * tui/tui-io.c (tui_handle_resize_during_io): Remove this
6087         function.
6088         (tui_putc): Don't call tui_handle_resize_during_io.
6089         (tui_getc): Likewise.
6090         (tui_mld_getc): Likewise.
6091         * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
6092         (tui_sigwinch_token): New static variable.
6093         (tui_initialize_win): Adjust documentation.  Set
6094         tui_sigwinch_token.
6095         (tui_async_resize_screen): New asynchronous callback.
6096         (tui_sigwinch_handler): Adjust documentation.  Asynchronously
6097         invoke tui_async_resize_screen.
6098
6099 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
6100
6101         * configure: Regenerated.
6102         * configure.ac: Use GDB_AC_TRANSFORM.
6103         * Makefile.in (aclocal_m4_deps): Added transform.m4.
6104         * acinclude.m4: sinclude transform.m4.
6105         * transform.m4: New file.
6106         (GDB_AC_TRANSFORM): New macro.
6107
6108 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6109
6110         * NEWS: Announce the support for DTrace SDT probes.
6111
6112 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6113
6114         * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
6115         (amd64_dtrace_parse_probe_argument): New function.
6116         (amd64_dtrace_probe_is_enabled): Likewise.
6117         (amd64_dtrace_enable_probe): Likewise.
6118         (amd64_dtrace_disable_probe): Likewise.
6119         (amd64_linux_init_abi): Register the
6120         `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
6121         `gdbarch_dtrace_disable_probe' and
6122         `gdbarch_dtrace_probe_is_enabled' hooks.
6123         (amd64_dtrace_disabled_probe_sequence_1): New constant.
6124         (amd64_dtrace_disabled_probe_sequence_2): Likewise.
6125         (amd64_dtrace_enable_probe_sequence): Likewise.
6126         (amd64_dtrace_disable_probe_sequence): Likewise.
6127
6128 2015-01-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6129
6130         * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
6131         the -probe-dtrace new vpossible value for PROBE_MODIFIER.
6132         * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
6133         handle ELF files.
6134         * Makefile.in (SFILES): dtrace-probe.c added.
6135         * configure: Regenerate.
6136         * dtrace-probe.c: New file.
6137         (SHT_SUNW_dof): New constant.
6138         (dtrace_probe_type): New enum.
6139         (dtrace_probe_arg): New struct.
6140         (dtrace_probe_arg_s): New typedef.
6141         (struct dtrace_probe_enabler): New struct.
6142         (dtrace_probe_enabler_s): New typedef.
6143         (dtrace_probe): New struct.
6144         (dtrace_probe_is_linespec): New function.
6145         (dtrace_dof_sect_type): New enum.
6146         (dtrace_dof_dofh_ident): Likewise.
6147         (dtrace_dof_encoding): Likewise.
6148         (DTRACE_DOF_ENCODE_LSB): Likewise.
6149         (DTRACE_DOF_ENCODE_MSB): Likewise.
6150         (dtrace_dof_hdr): New struct.
6151         (dtrace_dof_sect): Likewise.
6152         (dtrace_dof_provider): Likewise.
6153         (dtrace_dof_probe): Likewise.
6154         (DOF_UINT): New macro.
6155         (DTRACE_DOF_PTR): Likewise.
6156         (DTRACE_DOF_SECT): Likewise.
6157         (dtrace_process_dof_probe): New function.
6158         (dtrace_process_dof): Likewise.
6159         (dtrace_build_arg_exprs): Likewise.
6160         (dtrace_get_arg): Likewise.
6161         (dtrace_get_probes): Likewise.
6162         (dtrace_get_probe_argument_count): Likewise.
6163         (dtrace_can_evaluate_probe_arguments): Likewise.
6164         (dtrace_evaluate_probe_argument): Likewise.
6165         (dtrace_compile_to_ax): Likewise.
6166         (dtrace_probe_destroy): Likewise.
6167         (dtrace_gen_info_probes_table_header): Likewise.
6168         (dtrace_gen_info_probes_table_values): Likewise.
6169         (dtrace_probe_is_enabled): Likewise.
6170         (dtrace_probe_ops): New variable.
6171         (info_probes_dtrace_command): New function.
6172         (_initialize_dtrace_probe): Likewise.
6173         (dtrace_type_name): Likewise.
6174
6175 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6176
6177         * gdbarch.sh (dtrace_parse_probe_argument): New.
6178         (dtrace_probe_is_enabled): Likewise.
6179         (dtrace_enable_probe): Likewise.
6180         (dtrace_disable_probe): Likewise.
6181         * gdbarch.c: Regenerate.
6182         * gdbarch.h: Regenerate.
6183
6184 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6185
6186         * stap-probe.c (stap_probe_ops): Add NULLs in the static
6187         stap_probe_ops for `enable_probe' and `disable_probe'.
6188         * probe.c (enable_probes_command): New function.
6189         (disable_probes_command): Likewise.
6190         (_initialize_probe): Define the cli commands `enable probe' and
6191         `disable probe'.
6192         (parse_probe_linespec): New function.
6193         (info_probes_for_ops): Use parse_probe_linespec.
6194         * probe.h (probe_ops): New hooks `enable_probe' and
6195         `disable_probe'.
6196
6197 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6198
6199         * probe.c (compute_probe_arg): Moved from stap-probe.c
6200         (compile_probe_arg): Likewise.
6201         (probe_funcs): Likewise.
6202         * stap-probe.c (compute_probe_arg): Moved to probe.c.
6203         (compile_probe_arg): Likewise.
6204         (probe_funcs): Likewise.
6205
6206 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
6207
6208         * probe.c (print_ui_out_not_applicables): New function.
6209         (exists_probe_with_pops): Likewise.
6210         (info_probes_for_ops): Do not include column headers for probe
6211         types for which no probe has been actually found on any object.
6212         Also invoke `print_ui_out_not_applicables' in order to match the
6213         column rows with the header when probes of several types are
6214         listed.
6215         Print the "Type" column.
6216         * probe.h (probe_ops): Added a new probe operation `type_name'.
6217         * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
6218         (stap_type_name): New function.
6219
6220 2015-02-17  Patrick Palka  <patrick@parcs.ath.cx>
6221
6222         * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
6223         (key_is_command_char): Delete.
6224
6225 2015-02-17  Pedro Alves  <palves@redhat.com>
6226
6227         * tui/tui.c (tui_enable): Resize windows before anything
6228         might show a window.
6229
6230 2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>
6231
6232         PR gdb/17984
6233         * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
6234         (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
6235         call.
6236         * aarch64-tdep.h (tdesc_aarch64): Declare.
6237
6238 2015-02-12  Mark Wielaard  <mjw@redhat.com>
6239
6240         * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
6241
6242 2015-02-13  Doug Evans  <dje@google.com>
6243
6244         * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
6245         anonymous_namespace to is_in_anonymous for consistency with the rest
6246         of the file.
6247         (cp_lookup_bare_symbol): Fix typo in comment.
6248         (cp_search_static_and_baseclasses): Ditto.
6249         (search_symbol_list): Use vertical space in comment better.
6250         (reset_directive_searched): Ditto. Fix typo.
6251         (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
6252
6253 2015-02-13  Yao Qi  <yao.qi@arm.com>
6254
6255         * MAINTAINERS: Update my email address.
6256
6257 2015-02-12  Doug Evans  <dje@google.com>
6258
6259         * symtab.c (completion_list_add_name): Fix memory leak.
6260
6261 2015-02-12  Doug Evans  <dje@google.com>
6262
6263         * completer.c (complete_line): Remove incorrect comment.
6264
6265 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6266
6267         * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
6268         (py_print_frame): Use RETURN_MASK_ERROR.
6269
6270 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6271
6272         * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
6273         function comment.  Wrap all function that can throw in cleanups.
6274         (gdbpy_apply_frame_filter): Wrap all function that can throw in
6275         cleanups.
6276
6277 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6278
6279         * python/py-framefilter.c (py_print_frame): Substitute goto error.
6280         Remove the error label.
6281
6282 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6283
6284         * python/py-framefilter.c (py_print_frame): Put conditional code paths
6285         with goto first, indent the former else codepath left.  Put variable
6286         'elided' to a new inner block.
6287
6288 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6289
6290         * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
6291
6292 2015-02-11  Pedro Alves  <palves@redhat.com>
6293
6294         * xcoffread.c (within_function): Delete.
6295
6296 2015-02-11  Tom Tromey  <tromey@redhat.com>
6297             Pedro Alves <palves@redhat.com>
6298
6299         * breakpoint.c (base_breakpoint_ops): Delete.
6300         * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
6301         * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
6302         * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
6303         * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
6304         * python/py-arch.c (arch_object_type): Make extern.
6305         * python/py-block.c (block_syms_iterator_object_type): Make extern.
6306         * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
6307         * python/py-cmd.c (cmdpy_object_type): Make extern.
6308         * python/py-continueevent.c (continue_event_object_type)
6309         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
6310         parameter.  Update all callers.
6311         * python/py-evtregistry.c (eventregistry_object_type): Make extern.
6312         * python/py-exitedevent.c (exited_event_object_type): Make extern.
6313         * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
6314         * python/py-function.c (fnpy_object_type): Make extern.
6315         * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
6316         * python/py-infevents.c (call_pre_event_object_type)
6317         (inferior_call_post_event_object_type).
6318         (memory_changed_event_object_type): Make extern.
6319         * python/py-infthread.c (thread_object_type): Make extern.
6320         * python/py-lazy-string.c (lazy_string_object_type): Make extern.
6321         * python/py-linetable.c (linetable_entry_object_type)
6322         (linetable_object_type, ltpy_iterator_object_type): Make extern.
6323         * python/py-newobjfileevent.c (new_objfile_event_object_type)
6324         (clear_objfiles_event_object_type): Make extern.
6325         * python/py-objfile.c (objfile_object_type): Make extern.
6326         * python/py-param.c (parmpy_object_type): Make extern.
6327         * python/py-progspace.c (pspace_object_type): Make extern.
6328         * python/py-signalevent.c (signal_event_object_type): Make extern.
6329         * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
6330         * python/py-type.c (type_object_type, field_object_type)
6331         (type_iterator_object_type): Make extern.
6332         * python/python.c (python_extension_script_ops)
6333         (python_extension_ops): Make extern.
6334         * stap-probe.c (stap_probe_ops): Make extern.
6335
6336 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
6337
6338         * infrun.c (adjust_pc_after_break): Don't adjust the PC just
6339         because the event thread is not the current thread.
6340
6341 2015-02-11  Doug Evans  <xdje42@gmail.com>
6342
6343         * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
6344         been initialized yet, return NULL.
6345
6346 2015-02-11  Doug Evans  <dje@google.com>
6347
6348         * symfile.h (new_symfile_objfile): Delete.
6349         * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
6350         All callers updated.
6351
6352 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
6353
6354         * tui/tui-io.c (tui_handle_resize_during_io): Call
6355         tui_update_gdb_sizes() after resizing the screen.
6356         * tui/tui.c (tui_enable): Resize the terminal before
6357         calling tui_update_gdb_sizes().
6358
6359 2015-02-11  Patrick Palka  <patrick@parcs.ath.cx>
6360
6361         * tui/tui-io.c (tui_getc): Move cursor to the end of the command
6362         line before printing a newline.
6363
6364 2015-02-11  Mark Wielaard  <mjw@redhat.com>
6365
6366         * utils.c (producer_is_gcc): Return true or false.
6367
6368 2015-02-10  Mark Wielaard  <mjw@redhat.com>
6369
6370         * utils.h (producer_is_gcc): Change return type to bool. Add major
6371         argument.
6372         * utils.c (producer_is_gcc): Likewise.
6373         (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
6374         * dwarf2read.c (check_producer): Likewise.
6375
6376 2015-02-10  Pedro Alves  <palves@redhat.com>
6377
6378         * infrun.c (displaced_step_fixup): Switch to the event thread
6379         before calling gdbarch_displaced_step_fixup.
6380
6381 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
6382
6383         * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
6384
6385 2015-02-10  Simon Marchi  <simon.marchi@ericsson.com>
6386
6387         * ada-varobj.c (ada_name_of_child): Constify parent.
6388         (ada_path_expr_of_child): Same.
6389         (ada_value_of_child): Same.
6390         (ada_type_of_child): Same.
6391         * c-varobj.c (c_is_path_expr_parent): Same.
6392         (c_describe_child): Same.
6393         (c_name_of_child): Same.
6394         (c_value_of_child): Same.
6395         (c_type_of_child): Same.
6396         (cplus_number_of_children): Same.
6397         (cplus_describe_child): Constify var.
6398         (cplus_name_of_child): Constify parent.
6399         (cplus_value_of_child): Same.
6400         (cplus_type_of_child): Same.
6401         * jv-varobj.c (java_name_of_child): Same.
6402         (java_value_of_child): Same.
6403         (java_type_of_child): Same.
6404         * varobj.c (value_of_child): Same.
6405         (varobj_default_is_path_expr_parent): Constify var, parent and return
6406         value.
6407         (varobj_get_path_expr): Constify var, modify path_expr through
6408         mutable_var.
6409         (install_new_value): Constify parent.
6410         (value_of_child): Constify parent.
6411         * varobj.h (struct varobj): Constify parent.
6412         (struct lang_varobj_ops): Constify name_of_child, value_of_child and
6413         type_of_child.
6414         (varobj_get_path_expr): Constify var.
6415         (varobj_get_path_expr_parent): Constify var and return value.
6416
6417 2015-02-10  Luis Machado  <lgustavo@codesourcery.com>
6418
6419         * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
6420         (arm_prologue_this_id): Move PC and SP limit checks to
6421         arm_prologue_unwind_stop_reason.
6422         (arm_prologue_unwind) <stop_reason> : Set to
6423         arm_prologue_unwind_stop_reason.
6424
6425 2015-02-09  Mark Wielaard  <mjw@redhat.com>
6426
6427         * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
6428         DW_LANG_Fortran08 as language_fortran.
6429
6430 2015-02-09  Sergio Durigan Junior  <sergiodj@redhat.com>
6431
6432         PR remote/17946
6433         * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
6434         of pointer against char.
6435
6436 2015-02-09  Mark Wielaard  <mjw@redhat.com>
6437
6438         * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
6439         (c_type_print_modifier): Likewise.
6440         * dwarf2read.c (read_tag_atomic_type): New function.
6441         (read_type_die_1): Handle DW_TAG_atomic_type.
6442         * gdbtypes.c (make_atomic_type): New function.
6443         (recursive_dump_type): Handle TYPE_ATOMIC.
6444         * gdbtypes.h (enum type_flag_values): Renumber.
6445         (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
6446         (TYPE_ATOMIC): New macro.
6447         (make_atomic_type): Declare.
6448
6449 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6450
6451         * btrace.c (ftrace_find_call): Skip gaps.
6452         (ftrace_new_function): Initialize level.
6453         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
6454         (ftrace_new_switch): Update
6455         level computation.
6456         (ftrace_new_gap): New.
6457         (ftrace_update_function): Create new function after gap.
6458         (btrace_compute_ftrace_bts): Create gap on error.
6459         (btrace_stitch_bts): Update parameters.  Clear trace if it
6460         becomes empty.
6461         (btrace_stitch_trace): Update parameters.  Update callers.
6462         (btrace_clear): Reset the number of gaps.
6463         (btrace_insn_get): Return NULL if the iterator points to a gap.
6464         (btrace_insn_number): Return zero if the iterator points to a gap.
6465         (btrace_insn_end): Allow gaps at the end.
6466         (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
6467         (btrace_find_insn_by_number): Assert that the found iterator does
6468         not point to a gap.
6469         (btrace_call_next, btrace_call_prev): Assert that the last function
6470         is not a gap.
6471         * btrace.h (btrace_bts_error): New.
6472         (btrace_function): Update comment.
6473         (btrace_function) <insn, insn_offset, number>: Update comment.
6474         (btrace_function) <errcode>: New.
6475         (btrace_thread_info) <ngaps>: New.
6476         (btrace_thread_info) <replay>: Update comment.
6477         (btrace_insn_get): Update comment.
6478         * record-btrace.c (btrace_ui_out_decode_error): New.
6479         (record_btrace_info): Print number of gaps.
6480         (btrace_insn_history, btrace_call_history): Call
6481         btrace_ui_out_decode_error for gaps.
6482         (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
6483
6484 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6485
6486         * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
6487         * nat/linux-btrace.c: (btrace_this_cpu): New.
6488         (cpu_supports_bts): Call btrace_this_cpu.
6489         (intel_supports_bts): Add cpu parameter.
6490
6491 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6492
6493         * btrace.h (btrace_insn_class): New.
6494         (btrace_insn) <size, iclass>: New.
6495         * btrace.c (ftrace_find_call): Update parameters.  Update users.
6496         Use instruction classification.
6497         (ftrace_new_return): Update parameters.  Update users.
6498         (ftrace_update_function): Update parameters.  Update users.  Use
6499         instruction classification.
6500         (ftrace_update_insns): Update parameters.  Update users.
6501         (ftrace_classify_insn): New.
6502         (btrace_compute_ftrace_bts): Fill in new btrace_insn fields.  Add
6503         TRY_CATCH around call to gdb_insn_length.
6504
6505 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6506
6507         * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
6508         Update parameters.  Update users.
6509
6510 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6511
6512         * btrace.c (parse_xml_btrace_conf_bts): Add size.
6513         (btrace_conf_bts_attributes): New.
6514         (btrace_conf_children): Add attributes.
6515         * common/btrace-common.h (btrace_config_bts): New.
6516         (btrace_config)<bts>: New.
6517         (btrace_config): Update comment.
6518         * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
6519         Use config.
6520         * features/btrace-conf.dtd: Increment version.  Add size
6521         attribute to bts element.
6522         * record-btrace.c (set_record_btrace_bts_cmdlist,
6523         show_record_btrace_bts_cmdlist): New.
6524         (record_btrace_adjust_size, record_btrace_print_bts_conf,
6525         record_btrace_print_conf, cmd_set_record_btrace_bts,
6526         cmd_show_record_btrace_bts): New.
6527         (record_btrace_info): Call record_btrace_print_conf.
6528         (_initialize_record_btrace): Add commands.
6529         * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
6530         (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
6531         (btrace_sync_conf): Synchronize bts size.
6532         (_initialize_remote): Add Qbtrace-conf:bts:size packet.
6533         * NEWS: Announce new commands and new packets.
6534
6535 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6536
6537         * Makefile.in (XMLFILES): Add btrace-conf.dtd.
6538         * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
6539         (x86_linux_btrace_conf): New.
6540         (x86_linux_create_target): Initialize to_btrace_conf.
6541         * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
6542         Check format.  Split into this and ...
6543         (linux_enable_bts): ... this.
6544         (linux_btrace_conf): New.
6545         (perf_event_skip_record): Renamed into ...
6546         (perf_event_skip_bts_record): ... this.  Updated users.
6547         (linux_disable_btrace): Split into this and ...
6548         (linux_disable_bts): ... this.
6549         (linux_read_btrace): Check format.
6550         * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
6551         (linux_btrace_conf): New.
6552         (btrace_target_info)<ptid>: Moved.
6553         (btrace_target_info)<conf>: New.
6554         (btrace_target_info): Split into this and ...
6555         (btrace_tinfo_bts): ... this.  Updated users.
6556         * btrace.c (btrace_enable): Update parameters.
6557         (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
6558         (btrace_conf_children, btrace_conf_attributes)
6559         (btrace_conf_elements): New.
6560         * btrace.h (btrace_enable): Update parameters.
6561         (btrace_conf, parse_xml_btrace_conf): New.
6562         * common/btrace-common.h (btrace_config): New.
6563         * feature/btrace-conf.dtd: New.
6564         * record-btrace.c (record_btrace_conf): New.
6565         (record_btrace_cmdlist): New.
6566         (record_btrace_enable_warn, record_btrace_open): Pass
6567         &record_btrace_conf.
6568         (record_btrace_info): Print recording format.
6569         (cmd_record_btrace_bts_start): New.
6570         (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
6571         (_initialize_record_btrace): Add "record btrace bts" subcommand.
6572         Add "record bts" alias command.
6573         * remote.c (remote_state)<btrace_config>: New.
6574         (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
6575         (remote_protocol_features): Add qXfer:btrace-conf:read.
6576         (remote_open_1): Call remote_btrace_reset.
6577         (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
6578         (btrace_target_info)<conf>: New.
6579         (btrace_sync_conf, btrace_read_config): New.
6580         (remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
6581         btrace_read_conf.
6582         (remote_btrace_conf): New.
6583         (init_remote_ops): Initialize to_btrace_conf.
6584         (_initialize_remote): Add qXfer:btrace-conf packet.
6585         * target.c (target_enable_btrace): Update parameters.
6586         (target_btrace_conf): New.
6587         * target.h (target_enable_btrace): Update parameters.
6588         (target_btrace_conf): New.
6589         (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
6590         (target_ops)<to_enable_btrace>: Update parameters and comment.
6591         (target_ops)<to_btrace_conf>: New.
6592         * target-delegates: Regenerate.
6593         * target-debug.h (target_debug_print_const_struct_btrace_config_p)
6594         (target_debug_print_const_struct_btrace_target_info_p): New.
6595         * NEWS: Announce new command and new packet.
6596
6597 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6598
6599         * nat/linux-btrace.h (perf_event_buffer): New.
6600         (btrace_target_info) <buffer, size, data_head>: Replace with ...
6601         <bts>: ... this.
6602         * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
6603         (perf_event_buffer_size, perf_event_buffer_begin)
6604         (perf_event_buffer_end, linux_btrace_has_changed): Removed.
6605         Updated users.
6606         (perf_event_new_data): New.
6607
6608 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6609
6610         * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
6611         * record-btrace.c (record_btrace_open): Remove call to
6612         target_supports_btrace.
6613         * remote.c (remote_supports_btrace): Update parameters.
6614         * target.c (target_supports_btrace): Update parameters.
6615         * target.h (to_supports_btrace, target_supports_btrace): Update
6616         parameters.
6617         * target-delegates.c: Regenerate.
6618         * target-debug.h (target_debug_print_enum_btrace_format): New.
6619         * nat/linux-btrace.c
6620         (kernel_supports_btrace): Rename into ...
6621         (kernel_supports_bts): ... this.  Update users.  Update warning text.
6622         (intel_supports_btrace): Rename into ...
6623         (intel_supports_bts): ... this.  Update users.
6624         (cpu_supports_btrace): Rename into ...
6625         (cpu_supports_bts): ... this.  Update users.
6626         (linux_supports_btrace): Update parameters.  Split into this and ...
6627         (linux_supports_bts): ... this.
6628         * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
6629
6630 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
6631
6632         * Makefile.in (SFILES): Add common/btrace-common.c.
6633         (COMMON_OBS): Add common/btrace-common.o.
6634         (btrace-common.o): Add build rules.
6635         * btrace.c (parse_xml_btrace): Update parameters.
6636         (parse_xml_btrace_block): Set format field.
6637         (btrace_add_pc, btrace_fetch): Use struct btrace_data.
6638         (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
6639         (btrace_compute_ftrace): Split into this and...
6640         (btrace_compute_ftrace_bts): ...this.
6641         (btrace_stitch_trace): Split into this and...
6642         (btrace_stitch_bts): ...this.
6643         * btrace.h (parse_xml_btrace): Update parameters.
6644         (make_cleanup_btrace_data): New.
6645         * common/btrace-common.c: New.
6646         * common/btrace-common.h: Include common-defs.h.
6647         (btrace_block_s): Update comment.
6648         (btrace_format): New.
6649         (btrace_format_string): New.
6650         (btrace_data_bts): New.
6651         (btrace_data): New.
6652         (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
6653         * remote.c (remote_read_btrace): Update parameters.
6654         * target.c (target_read_btrace): Update parameters.
6655         * target.h (target_read_btrace): Update parameters.
6656         (target_ops)<to_read_btrace>: Update parameters.
6657         * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
6658         * target-delegates.c: Regenerate.
6659         * target-debug (target_debug_print_struct_btrace_data_p): New.
6660         * nat/linux-btrace.c (linux_read_btrace): Split into this and...
6661         (linux_read_bts): ...this.
6662         * nat/linux-btrace.h (linux_read_btrace): Update parameters.
6663
6664 2015-02-06  Doug Evans  <dje@google.com>
6665
6666         * remote-m32r-sdi.c: Include symfile.h.
6667
6668 2015-02-06  Doug Evans  <dje@google.com>
6669
6670         * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
6671         * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
6672         to here.
6673
6674 2015-02-06  Pedro Alves  <palves@redhat.com>
6675
6676         * linux-thread-db.c (find_new_threads_callback): Add debug output.
6677
6678 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
6679
6680         PR gdb/15678
6681         * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
6682         (enable_count_command): Check args for NULL value.
6683
6684 2015-02-05  Doug Evans  <xdje42@gmail.com>
6685
6686         * guile/scm-frame.c: Fix spelling errors in a comment.
6687
6688 2015-02-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6689
6690         * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
6691         * python/py-value.c (valpy_fetch_lazy): Use it.  Remove cast to the
6692         return type.
6693
6694 2015-02-04  Pedro Alves  <palves@redhat.com>
6695
6696         * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
6697         (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
6698         returns true.
6699         (resume_stopped_resumed_lwps): Don't check whether the thread is
6700         marked as executing.
6701         (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
6702
6703 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6704
6705         * regset.h (struct regset): Add flags field.
6706         (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
6707         * corelow.c (get_core_register_section): Add warning if the size
6708         exceeds the requested size and the regset does not have the
6709         REGSET_VARIABLE_SIZE flag set.
6710         * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
6711         flag.
6712         * armbsd-tdep.c (armbsd_gregset): Likewise.
6713         * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
6714         * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
6715         * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
6716         * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
6717
6718 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6719
6720         * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
6721         For ".reg-xstate", explicitly specify the requested section size
6722         via X86_XSTATE_SIZE instead of just 0 on input and
6723         X86_XSTATE_MAX_SIZE on output.
6724         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
6725         Likewise.
6726
6727 2015-02-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6728
6729         PR corefiles/17808:
6730         * gdbarch.sh (iterate_over_regset_sections_cb): Document this
6731         function type, particularly its SIZE parameter.
6732         * gdbarch.h: Regenerate.
6733         * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
6734         actual against required size using ">=" instead of "==".
6735         (amd64_collect_fpregset): Likewise.
6736         * i386-tdep.c (i386_supply_gregset): Likewise.
6737         (i386_collect_gregset): Likewise.
6738         (i386_supply_fpregset): Likewise.
6739         (i386_collect_fpregset): Likewise.
6740         * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
6741         (mips_fill_gregset_wrapper): Likewise.
6742         (mips_supply_fpregset_wrapper): Likewise.
6743         (mips_fill_fpregset_wrapper): Likewise.
6744         (mips64_supply_gregset_wrapper): Likewise.
6745         (mips64_fill_gregset_wrapper): Likewise.
6746         (mips64_supply_fpregset_wrapper): Likewise.
6747         (mips64_fill_fpregset_wrapper): Likewise.
6748         * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
6749         (am33_supply_fpregset_method): Likewise.
6750         (am33_collect_gregset_method): Likewise.
6751         (am33_collect_fpregset_method): Likewise.
6752
6753 2015-02-04  Doug Evans  <dje@google.com>
6754             Pedro Alves  <palves@redhat.com>
6755             Eli Zaretskii  <eliz@gnu.org>
6756
6757         PR tui/17810
6758         * tui/tui-command.c (tui_refresh_cmd_win): New function.
6759         * tui/tui-command.c (tui_refresh_cmd_win): Declare.
6760         * tui/tui-file.c: #include tui/tui-command.h.
6761         (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
6762         (tui_file_flush): Refresh command window if stream is gdb_stdout.
6763         * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
6764
6765 2015-02-04  Pedro Alves  <palves@redhat.com>
6766
6767         Fix build breakage.
6768         * event-loop.c (gdb_do_one_event): Add default switch case.
6769
6770 2015-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
6771
6772         Filter out inferior gcc option -fpreprocessed.
6773         * compile/compile.c (filter_args): New function.
6774         (get_args): Use it.
6775
6776 2015-02-03  Pedro Alves  <palves@redhat.com>
6777
6778         * event-loop.c: Don't declare nor define a queue type for
6779         gdb_event_p.
6780         (event_queue): Delete.
6781         (create_event, create_file_event, gdb_event_xfree)
6782         (initialize_event_loop, process_event): Delete.
6783         (gdb_do_one_event): Return as soon as one event is handled.
6784         (handle_file_event): Change prototype.  Used the passed in
6785         file_handler pointer and ready_mask instead of looping over all
6786         file handlers.
6787         (gdb_wait_for_event): Update the poll/select timeouts before
6788         blocking.  Run event handlers directly instead of queueing events.
6789         Return as soon as one event is handled.
6790         (struct async_event_handler_data): Delete.
6791         (invoke_async_event_handler): Delete.
6792         (check_async_event_handlers): Change return type to int.  Run
6793         event handlers directly instead of queueing events.  Return as
6794         soon as one event is handled.
6795         (handle_timer_event): Delete.
6796         (update_wait_timeout): New function, factored out from
6797         poll_timers.
6798         (poll_timers): Reimplement.
6799         * event-loop.h (initialize_event_loop): Delete declaration.
6800         * top.c (gdb_init): Don't call initialize_event_loop.
6801
6802 2015-02-03  Pedro Alves  <palves@redhat.com>
6803
6804         * event-loop.c (clear_async_event_handler): New function.
6805         * event-loop.h (clear_async_event_handler): New declaration.
6806         * record-btrace.c (record_btrace_async): New function.
6807         (init_record_btrace_ops): Install record_btrace_async.
6808         * record-full.c (record_full_async): New function.
6809         (record_full_resume): Don't mark the async event source here.
6810         (init_record_full_ops): Install record_full_async.
6811         (record_full_core_resume): Don't mark the async event source here.
6812         (init_record_full_core_ops): Install record_full_async.
6813         * remote.c (remote_async): Mark and clear the async stop reply
6814         queue event-loop token as appropriate.
6815
6816 2015-02-03  Pedro Alves  <palves@redhat.com>
6817
6818         * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
6819         target_is_async_p instead of target_can_async.
6820         (linux_nat_wait): Use target_is_async_p instead of
6821         target_can_async.  Don't enable async here.
6822         * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
6823         target_is_async_p instead of target_can_async.
6824
6825 2015-02-02  Simon Marchi  <simon.marchi@ericsson.com>
6826
6827         * varobj.h (lang_varobj_ops): Mention which return values need
6828         to be freed.
6829
6830 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
6831
6832         * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
6833
6834 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
6835
6836         PR gdb/17856:
6837         * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
6838         results found in the cache.
6839
6840 2015-02-02  Joel Brobecker  <brobecker@adacore.com>
6841
6842         PR gdb/17854:
6843         * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
6844         when allocating a new one.
6845
6846 2015-02-01  Tom Tromey  <tom@tromey.com>
6847
6848         * MAINTAINERS: Remove myself.
6849
6850 2015-01-31  Doug Evans  <xdje42@gmail.com>
6851
6852         * dwarf2read.c (process_structure_scope): Update setting of
6853         TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
6854         * gdbtypes.c (internal_type_vptr_fieldno): New function.
6855         (set_type_vptr_fieldno): New function.
6856         (internal_type_vptr_basetype): New function.
6857         (set_type_vptr_basetype): New function.
6858         (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
6859         TYPE_VPTR_BASETYPE.
6860         (allocate_cplus_struct_type): Initialize vptr_fieldno.
6861         (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
6862         (print_cplus_stuff): ... moved here.
6863         (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
6864         * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
6865         moved to ...
6866         (struct cplus_struct_type): ... here.  All uses updated.
6867         (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
6868         (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
6869         (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
6870         * stabsread.c (read_tilde_fields): Update setting of
6871         TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
6872
6873 2015-01-31  Doug Evans  <xdje42@gmail.com>
6874
6875         * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
6876         to self_p.
6877         (cp_print_class_member): Rename local domain to self_type.
6878         * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
6879         domain_type to self_type.
6880         (set_die_type) <need_gnat_info>: Handle
6881         TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
6882         * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
6883         TYPE_SPECIFIC_SELF_TYPE.
6884         * gdbtypes.c (internal_type_self_type): New function.
6885         (set_type_self_type): New function.
6886         (smash_to_memberptr_type): Rename parameter domain to self_type.
6887         Update setting of TYPE_SELF_TYPE.
6888         (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
6889         (smash_to_method_type): Rename parameter domain to self_type.
6890         Update setting of TYPE_SELF_TYPE.
6891         (check_stub_method): Call smash_to_method_type.
6892         (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
6893         (copy_type_recursive): Ditto.
6894         * gdbtypes.h (enum type_specific_kind): New value
6895         TYPE_SPECIFIC_SELF_TYPE.
6896         (struct main_type) <type_specific>: New member self_type.
6897         (struct cplus_struct_type) <fn_field.type>: Update comment.
6898         (TYPE_SELF_TYPE): Rewrite.
6899         (internal_type_self_type, set_type_self_type): Declare.
6900         * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
6901         self_type.
6902         (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
6903         * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
6904         TYPE_TARGET_TYPE.
6905         * stabsread.c (read_member_functions): Mark methods with
6906         TYPE_CODE_METHOD, not TYPE_CODE_FUNC.  Update setting of
6907         TYPE_SELF_TYPE.
6908
6909 2015-01-31  Doug Evans  <xdje42@gmail.com>
6910
6911         * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
6912         All uses updated.
6913
6914 2015-01-31  Doug Evans  <xdje42@gmail.com>
6915
6916         * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
6917         or unions.  Return zero if union.
6918         (gnuv3_get_vtable): Call check_typedef.  Assert only passed structs.
6919         (gnuv3_rtti_type): Pass already-check_typedef'd value to
6920         gnuv3_get_vtable.
6921         (compute_vtable_size): Assert only passed structs.
6922         (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
6923
6924 2015-01-31  Doug Evans  <xdje42@gmail.com>
6925
6926         * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
6927         kinds.
6928
6929 2015-01-31  Gary Benson <gbenson@redhat.com>
6930             Doug Evans  <dje@google.com>
6931
6932         PR cli/9007
6933         PR cli/11920
6934         PR cli/15548
6935         * cli/cli-cmds.c (complete_command): Notify user if max-completions
6936         reached.
6937         * common/common-exceptions.h (enum errors)
6938         <MAX_COMPLETIONS_REACHED_ERROR>: New value.
6939         * completer.h (get_max_completions_reached_message): New declaration.
6940         (max_completions): Likewise.
6941         (completion_tracker_t): New typedef.
6942         (new_completion_tracker): New declaration.
6943         (make_cleanup_free_completion_tracker): Likewise.
6944         (maybe_add_completion_enum): New enum.
6945         (maybe_add_completion): New declaration.
6946         (throw_max_completions_reached_error): Likewise.
6947         * completer.c (max_completions): New global variable.
6948         (new_completion_tracker): New function.
6949         (free_completion_tracker): Likewise.
6950         (make_cleanup_free_completion_tracker): Likewise.
6951         (maybe_add_completions): Likewise.
6952         (throw_max_completions_reached_error): Likewise.
6953         (complete_line): Remove duplicates and limit result to max_completions
6954         entries.
6955         (get_max_completions_reached_message): New function.
6956         (gdb_display_match_list): Handle max_completions.
6957         (_initialize_completer): New declaration and function.
6958         * symtab.c: Include completer.h.
6959         (completion_tracker): New static variable.
6960         (completion_list_add_name): Call maybe_add_completion.
6961         (default_make_symbol_completion_list_break_on_1): Renamed from
6962         default_make_symbol_completion_list_break_on.  Maintain
6963         completion_tracker across calls to completion_list_add_name.
6964         (default_make_symbol_completion_list_break_on): New function.
6965         * top.c (init_main): Set rl_completion_display_matches_hook.
6966         * tui/tui-io.c: Include completer.h.
6967         (tui_old_rl_display_matches_hook): New static global.
6968         (tui_rl_display_match_list): Notify user if max-completions reached.
6969         (tui_setup_io): Save/restore rl_completion_display_matches_hook.
6970         * NEWS (New Options): Mention set/show max-completions.
6971
6972 2015-01-31  Gary Benson  <gbenson@redhat.com>
6973
6974         * symtab.c (struct add_name_data) <code>: New field.
6975         Updated comments.
6976         (add_symtab_completions): New function.
6977         (symtab_expansion_callback): Likewise.
6978         (default_make_symbol_completion_list_break_on): Set datum.code.
6979         Move minimal symbol scan before calling expand_symtabs_matching.
6980         Scan known primary symtabs for externs and statics before calling
6981         expand_symtabs_matching.  Pass symtab_expansion_callback as
6982         expansion_notify argument to expand_symtabs_matching.  Do not scan
6983         primary symtabs for externs and statics after calling
6984         expand_symtabs_matching.
6985
6986 2015-01-31  Gary Benson  <gbenson@redhat.com>
6987
6988         * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
6989         (struct quick_symbol_functions) <expand_symtabs_matching>:
6990         New argument expansion_notify.  All uses updated.
6991         (expand_symtabs_matching): New argument expansion_notify.
6992         All uses updated.
6993         * symfile-debug.c (debug_qf_expand_symtabs_matching):
6994         Also print expansion notify.
6995         * symtab.c (expand_symtabs_matching_via_partial): Call
6996         expansion_notify whenever a partial symbol table is expanded.
6997         * dwarf2read.c (dw2_expand_symtabs_matching): Call
6998         expansion_notify whenever a symbol table is instantiated.
6999
7000 2015-01-31  Doug Evans  <xdje42@gmail.com>
7001
7002         * cli-out.c: #include completer.h, readline/readline.h.
7003         (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
7004         (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
7005         (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
7006         * cli-out.h (cli_display_match_list): Declare.
7007         * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
7008         (ELLIPSIS_LEN): Ditto.
7009         (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
7010         (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
7011         (gdb_fnprint, gdb_print_filename): Ditto.
7012         (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
7013         (gdb_display_match_list): Ditto.
7014         * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
7015         (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
7016         (mld_beep_ftype, mld_read_key_ftype): Ditto.
7017         (match_list_displayer): New struct.
7018         (gdb_display_match_list): Declare.
7019         * top.c (init_main): Set rl_completion_display_matches_hook.
7020         * tui/tui-io.c: #include completer.h.
7021         (printable_part, PUTX, print_filename, get_y_or_n): Delete.
7022         (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
7023         (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
7024         (tui_mld_getc, tui_mld_read_key): Ditto.
7025         (tui_rl_display_match_list): Rewrite.
7026         (tui_handle_resize_during_io): New arg for_completion.  All callers
7027         updated.
7028
7029 2015-01-31  Doug Evans  <xdje42@gmail.com>
7030
7031         Add symbol lookup cache.
7032         * NEWS: Document new options and commands.
7033         * symtab.c (symbol_cache_key): New static global.
7034         (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
7035         (SYMBOL_LOOKUP_FAILED): New macro.
7036         (symbol_cache_slot_state): New enum.
7037         (block_symbol_cache): New struct.
7038         (symbol_cache): New struct.
7039         (new_symbol_cache_size, symbol_cache_size): New static globals.
7040         (hash_symbol_entry, eq_symbol_entry): New functions.
7041         (symbol_cache_byte_size, resize_symbol_cache): New functions.
7042         (make_symbol_cache, free_symbol_cache): New functions.
7043         (get_symbol_cache, symbol_cache_cleanup): New function.
7044         (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
7045         (symbol_cache_lookup, symbol_cache_clear_slot): New function.
7046         (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
7047         (symbol_cache_flush, symbol_cache_dump): New functions.
7048         (maintenance_print_symbol_cache): New function.
7049         (maintenance_flush_symbol_cache): New function.
7050         (symbol_cache_stats): New function.
7051         (maintenance_print_symbol_cache_statistics): New function.
7052         (symtab_new_objfile_observer): New function.
7053         (symtab_free_objfile_observer): New function.
7054         (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
7055         (_initialize_symtab): Init symbol_cache_key.  New parameter
7056         maint symbol-cache-size.  New maint commands print symbol-cache,
7057         print symbol-cache-statistics, flush-symbol-cache.
7058         Install new_objfile, free_objfile observers.
7059
7060 2015-01-31  Joel Brobecker  <brobecker@adacore.com>
7061
7062         PR symtab/17855
7063         * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
7064         to end.
7065
7066 2015-01-31  Doug Evans  <xdje42@gmail.com>
7067
7068         * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
7069         * auto-load.c: #include ctype.h.
7070         (struct auto_load_pspace_info): Replace member loaded_scripts with
7071         new members loaded_script_files, loaded_script_texts.
7072         (auto_load_pspace_data_cleanup): Update.
7073         (init_loaded_scripts_info): Update.
7074         (get_auto_load_pspace_data_for_loading): Update.
7075         (maybe_add_script_file): Renamed from maybe_add_script.  All callers
7076         updated.
7077         (maybe_add_script_text): New function.
7078         (clear_section_scripts): Update.
7079         (source_script_file, execute_script_contents): New functions.
7080         (source_section_scripts): Add support for
7081         SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
7082         (print_scripts): New function.
7083         (auto_load_info_scripts): Also print inlined scripts.
7084         (maybe_print_unsupported_script_warning): Renamed from
7085         unsupported_script_warning_print.  All callers updated.
7086         (maybe_print_script_not_found_warning): Renamed from
7087         script_not_found_warning_print.  All callers updated.
7088         * extension-priv.h (struct extension_language_script_ops): New member
7089         objfile_script_executor.
7090         * extension.c (ext_lang_objfile_script_executor): New function.
7091         * extension.h (objfile_script_executor_func): New typedef.
7092         (ext_lang_objfile_script_executor): Declare.
7093         * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
7094         * guile/guile.c (guile_extension_script_ops): Update.
7095         * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
7096         * python/python.c (python_extension_script_ops): Update.
7097         (gdbpy_execute_objfile_script): New function.
7098
7099 2015-01-31  Eli Zaretskii  <eliz@gnu.org>
7100
7101         * tui/tui-io.c (tui_expand_tabs): New function.
7102         (tui_puts, tui_redisplay_readline): Expand TABs into the
7103         appropriate number of spaces.
7104         * tui/tui-regs.c: Include tui-io.h.
7105         (tui_register_format): Call tui_expand_tabs to expand TABs into
7106         the appropriate number of spaces.
7107         * tui/tui-io.h: Add prototype for tui_expand_tabs.
7108
7109 2015-01-30  Doug Evans  <dje@google.com>
7110
7111         * NEWS: "info source" command now display producer string if present.
7112         * source.c (source_info): Print producer string if present.
7113
7114 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7115
7116         * varobj.c (varobj_delete): Fix comment.
7117
7118 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7119
7120         * varobj.c (create_child): Modify comment.
7121
7122 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7123
7124         * ada-varobj.c (ada_number_of_children): Constify struct varobj *
7125         parameter.
7126         (ada_name_of_variable): Same.
7127         (ada_path_expr_of_child): Same.
7128         (ada_value_of_variable): Same.
7129         (ada_value_is_changeable_p): Same.
7130         (ada_value_has_mutated): Same.
7131         * c-varobj.c (varobj_is_anonymous_child): Same.
7132         (c_is_path_expr_parent): Same.
7133         (c_number_of_children): Same.
7134         (c_name_of_variable): Same.
7135         (c_path_expr_of_child): Same.
7136         (get_type): Same.
7137         (c_value_of_variable): Same.
7138         (cplus_number_of_children): Same.
7139         (cplus_name_of_variable): Same.
7140         (cplus_path_expr_of_child): Same.
7141         (cplus_value_of_variable): Same.
7142         * jv-varobj.c (java_number_of_children): Same.
7143         (java_name_of_variable): Same.
7144         (java_path_expr_of_child): Same.
7145         (java_value_of_variable): Same.
7146         * varobj.c (number_of_children): Same.
7147         (name_of_variable): Same.
7148         (is_root_p): Same.
7149         (varobj_ensure_python_env): Same.
7150         (varobj_get_objname): Same.
7151         (varobj_get_expression): Same.
7152         (varobj_get_display_format): Same.
7153         (varobj_get_display_hint): Same.
7154         (varobj_has_more): Same.
7155         (varobj_get_thread_id): Same.
7156         (varobj_get_frozen): Same.
7157         (dynamic_varobj_has_child_method): Same.
7158         (varobj_get_gdb_type): Same.
7159         (is_path_expr_parent): Same.
7160         (varobj_default_is_path_expr_parent): Same.
7161         (varobj_get_language): Same.
7162         (varobj_get_attributes): Same.
7163         (varobj_is_dynamic_p): Same.
7164         (varobj_get_child_range): Same.
7165         (varobj_value_has_mutated): Same.
7166         (varobj_get_value_type): Same.
7167         (number_of_children): Same.
7168         (name_of_variable): Same.
7169         (check_scope): Same.
7170         (varobj_editable_p): Same.
7171         (varobj_value_is_changeable_p): Same.
7172         (varobj_floating_p): Same.
7173         (varobj_default_value_is_changeable_p): Same.
7174
7175 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7176
7177         * varobj.c (varobj_get_path_expr): Set var->path_expr.
7178         * c-varobj.c (c_path_expr_of_child): Set local var instead of
7179         child->path_expr.
7180         (cplus_path_expr_of_child): Same.
7181
7182 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7183
7184         * mi-cmd-var.c (print_varobj): Free varobj_get_expression
7185         result.
7186         (mi_cmd_var_info_expression): Same.
7187         * varobj.c (varobj_get_expression): Mention in the comment that
7188         the result must by freed by the caller.
7189
7190 2015-01-30  Simon Marchi  <simon.marchi@ericsson.com>
7191
7192         * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
7193         varobj_get_type.
7194         (varobj_update_one): Same.
7195         * varobj.c (update_type_if_necessary): Free curr_type_str and
7196         new_type_str.
7197         (varobj_get_type): Specify in comment that the result needs to be
7198         freed by the caller.
7199
7200 2015-01-29  Doug Evans  <dje@google.com>
7201
7202         PR symtab/17890
7203         * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
7204
7205 2015-01-25  Mark Wielaard  <mjw@redhat.com>
7206
7207         * dwarf2read.c (checkproducer): Call producer_is_gcc.
7208         * utils.c (producer_is_gcc_ge_4): Likewise.
7209         (producer_is_gcc): New function.
7210         * utils.h (producer_is_gcc): New declaration.
7211
7212 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
7213
7214         * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
7215         kind.
7216         * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
7217         parameter by "addr_stack" parameter.
7218         (resolve_dynamic_range): Replace "addr" parameter by
7219         "stack_addr" parameter.  Update function documentation.
7220         Update code accordingly.
7221         (resolve_dynamic_array, resolve_dynamic_union)
7222         (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
7223         (resolve_dynamic_type): Update code, following the changes made
7224         to resolve_dynamic_type_internal's interface.
7225         * dwarf2loc.h (struct property_addr_info): New.
7226         (dwarf2_evaluate_property): Replace "address" parameter
7227         by "addr_stack" parameter.  Adjust function documentation.
7228         (struct dwarf2_offset_baton): New.
7229         (struct dwarf2_property_baton): Update documentation of
7230         field "referenced_type" to be more general. New field
7231         "offset_info" in union data field.
7232         * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
7233         parameter by "addr_stack" parameter.  Adjust code accordingly.
7234         Add support for PROP_ADDR_OFFSET properties.
7235         * dwarf2read.c (attr_to_dynamic_prop): Add support for
7236         DW_AT_data_member_location attributes as well.  Use case
7237         statements instead of if/else condition.
7238
7239 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
7240
7241         * ada-varobj.c (ada_varobj_get_array_number_of_children):
7242         Return zero if PARENT_VALUE is NULL and parent_type's
7243         range type is dynamic.
7244
7245 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
7246
7247         * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
7248         nonzero if the type's subtype is dynamic.
7249         (resolve_dynamic_range): Also resolve the range's subtype.
7250
7251 2015-01-29  Alexander Klimov  <alserkli@inbox.ru>  (tiny patch)
7252
7253         Pushed by Joel Brobecker  <brobecker@adacore.com>.
7254         * symfile.c (unmap_overlay_command): Initialize sec to NULL.
7255
7256 2015-01-27  Doug Evans  <dje@google.com>
7257
7258         * NEWS: Mention gdb.Objfile.username.
7259         * python/py-objfile.c (objfpy_get_username): New function.
7260         (objfile_getset): Add "username".
7261
7262 2015-01-24  Mark Wielaard  <mjw@redhat.com>
7263
7264         * stack.c (return_command): Markup warning message with _.
7265
7266 2015-01-24  Doug Evans  <xdje42@gmail.com>
7267
7268         * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
7269
7270 2015-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
7271
7272         Fix 100x slowdown regression on DWZ files.
7273         * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
7274         (struct line_header): Add offset and offset_in_dwz.
7275         (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
7276         (free_line_header_voidp): New declaration.
7277         (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
7278         functions.
7279         (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
7280         (handle_DW_AT_stmt_list): Use line_header_hash.
7281         (free_line_header_voidp): New function.
7282         (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
7283         (dwarf_decode_lines): New parameter decode_mapping, use it.
7284         (dwarf2_free_objfile): Free line_header_hash.
7285
7286 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
7287
7288         PR gdb/17416
7289         * valops.c (value_rtti_indirect_type): Catch exception thrown by
7290         value_ind.
7291
7292 2015-01-15  Mark Wielaard  <mjw@redhat.com>
7293
7294         * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
7295         DW_AT_noreturn.
7296         * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
7297         calling_convention an 8 bit bit field.
7298         (TYPE_NO_RETURN): New macro.
7299         * infcmd.c (finish_command): Query if function does not return
7300         normally.
7301         * stack.c (return_command): Likewise.
7302
7303 2015-01-23  Pedro Alves  <palves@redhat.com>
7304
7305         * linux-nat.c (linux_is_async_p): New macro.
7306         (linux_nat_is_async_p):
7307         (linux_nat_terminal_inferior): Check whether the target can async
7308         instead of whether it is already async.
7309         (linux_nat_terminal_ours): Don't check whether the target is
7310         async.
7311         (linux_async_pipe): Use linux_is_async_p.
7312
7313 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7314
7315         * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
7316         '-ascending'.
7317         * thread.c (tp_array_compar_ascending, tp_array_compar): New.
7318         (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
7319         Sort tp_array using tp_array_compar.
7320         (_initialize_thread): Extend thread_apply_all_command help.
7321
7322 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7323
7324         * corelow.c (core_open): Call also thread_command.
7325         * gdbthread.h (thread_command): New prototype moved from ...
7326         * thread.c (thread_command): ... here.
7327         (thread_command): Make it global.
7328
7329 2015-01-22  Pedro Alves  <palves@redhat.com>
7330
7331         * configure.ac [*mingw32*]: Check $curses_found instead of
7332         $prefer_curses.
7333         * configure: Regenerate.
7334         * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
7335         HAVE_NCURSES_NCURSES_H checks.
7336
7337 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
7338
7339         * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
7340         fails with the 1st arg NULL, try again with "unknown".  Don't test
7341         the "cup" capability: it isn't supported by the Windows port of
7342         ncurses, but the Windows console driver is still capable of
7343         supporting TUI.
7344
7345 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7346
7347         * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
7348
7349 2015-01-22  Eli Zaretskii  <eliz@gnu.org>
7350
7351         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
7352         (ALLDEPFILES): Remove irix5-nat.c.  These two are part of the
7353         reason that "make TAGS" is broken.
7354
7355 2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
7356
7357         * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
7358         and check additional store instructions.
7359
7360 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
7361
7362         * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
7363
7364 2015-01-21  Wei-cheng Wang  <cole945@gmail.com>
7365
7366         * ppc-linux-tdep.c (ppc_skip_trampoline_code,
7367         ppc_canonicalize_syscall, ppc_linux_syscall_record,
7368         ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
7369         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
7370         * rs6000-tdep.c (rs6000_epilogue_frame_cache,
7371         rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
7372         rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
7373         ppc_process_record_op19, ppc_process_record_op31,
7374         ppc_process_record_op59, ppc_process_record_op60,
7375         ppc_process_record_op63): Likewise.
7376
7377 2015-01-20  Joel Brobecker  <brobecker@adacore.com>
7378
7379         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
7380         (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
7381         strerror.
7382
7383 2015-01-20  Wei-cheng Wang  <cole945@gmail.com>
7384
7385         * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
7386         ppc_process_record_op31, ppc_process_record_op59,
7387         ppc_process_record_op60, ppc_process_record_op63,
7388         ppc_process_record): Fix -Wformat warning.
7389         * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
7390         Remove unused variables.
7391
7392 2015-01-20  Chen Gang  <gang.chen.5i5j@gmail.com>
7393
7394         * MAINTAINERS (Write After Approval): Add "Chen Gang".
7395
7396 2015-01-19  Eli Zaretskii  <eliz@gnu.org>
7397
7398         * configure.ac [*mingw32*]: Only add windows-termcap.o to
7399         CONFIG_OBS if not building with a curses library.
7400         * configure: Regenerate.
7401
7402         * windows-termcap.c: Include defs.h.  Make the whole body empty if
7403         either one of HAVE_CURSES_H or HAVE_NCURSES_H or
7404         HAVE_NCURSES_NCURSES_H is defined.
7405
7406 2015-01-19  Joel Brobecker  <brobecker@adacore.com>
7407
7408         * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
7409         from end of line to start of next line.
7410
7411 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
7412
7413         * ppc-linux-tdep.c (ppc_skip_trampoline_code):
7414         Scan PLT stub backward for reverse debugging.
7415         * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
7416
7417 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
7418             Ulrich Weigand  <uweigand@de.ibm.com>
7419
7420         * configure.tgt (powerpc*-*-linux): Add linux-record.o to
7421         gdb_target_obs.
7422         (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
7423         record.
7424         (ppc_canonicalize_syscall, ppc_linux_syscall_record,
7425         ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
7426         (ppc_linux_init_abi): Set process_record, process_record_signal.
7427         * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
7428         ppc_linux_record_tdep to gdbarch_tdep.
7429         (ppc_process_record): New declaration.
7430         * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
7431         ppc_process_record_op19, ppc_process_record_op31,
7432         ppc_process_record_op59, ppc_process_record_op60,
7433         ppc_process_record_op63, ppc_process_record): New functions.
7434
7435 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
7436
7437         * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
7438         rs6000_in_function_epilogue_frame_p and add an argument
7439         for frame_info.
7440         (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
7441         rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
7442         New functions.
7443         (rs6000_epilogue_frame_unwind): New.
7444         (rs6000_gdbarch_init): Append epilogue unwinder.
7445
7446 2015-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
7447
7448         * nat/linux-personality.c: Replace "#ifndef
7449         HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
7450         !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
7451         systems.
7452
7453 2015-01-16  Eli Zaretskii  <eliz@gnu.org>
7454
7455         * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
7456         functions.
7457         (_initialize_tui_win) <border-kind, border-mode>:
7458         <active-border-mode>: Use tui_set_var_cmd as the "set" function.
7459         (tui_set_tab_width_command): Fix the commentary.
7460
7461         * tui/tui-win.h: Add prototype for tui_rehighlight_all.
7462
7463         * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
7464         Doc fix.
7465         (tui_set_tab_width_command): Delete and recreate the source and
7466         the disassembly windows, to show the effect of the changed tab
7467         size immediately.
7468
7469         * tui/tui-data.h (LINE_PREFIX): Make shorter
7470         (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
7471         "Thread NNNNN.XXXX" thread ID notation on Windows.
7472
7473 2015-01-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
7474
7475         Fix gcc-5 compilation.
7476         * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
7477
7478 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
7479
7480         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
7481         (linux-personality.o): New rule.
7482         * common/common-defs.h: Include <stdint.h>.
7483         * config/aarch64/linux.mh (NATDEPFILES): Include
7484         linux-personality.o.
7485         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
7486         * config/arm/linux.mh (NATDEPFILES): Likewise.
7487         * config/i386/linux64.mh (NATDEPFILES): Likewise.
7488         * config/i386/linux.mh (NATDEPFILES): Likewise.
7489         * config/ia64/linux.mh (NATDEPFILES): Likewise.
7490         * config/m32r/linux.mh (NATDEPFILES): Likewise.
7491         * config/m68k/linux.mh (NATDEPFILES): Likewise.
7492         * config/mips/linux.mh (NATDEPFILES): Likewise.
7493         * config/pa/linux.mh (NATDEPFILES): Likewise.
7494         * config/powerpc/linux.mh (NATDEPFILES): Likewise.
7495         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
7496         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
7497         * config/s390/linux.mh (NATDEPFILES): Likewise.
7498         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
7499         * config/sparc/linux.mh (NATDEPFILES): Likewise.
7500         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
7501         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
7502         * defs.h: Remove #include <stdint.h> (moved to
7503         common/common-defs.h).
7504         * linux-nat.c: Include nat/linux-personality.h.  Remove #include
7505         <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
7506         nat/linux-personality.c).
7507         (linux_nat_create_inferior): Remove code to disable address space
7508         randomization (moved to nat/linux-personality.c).  Create cleanup
7509         to disable address space randomization.
7510         * nat/linux-personality.c: New file.
7511         * nat/linux-personality.h: Likewise.
7512
7513 2015-01-15  Sergio Durigan Junior  <sergiodj@redhat.com>
7514
7515         * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
7516         common/posix-strerror.c.
7517         (posix-strerror.o): New rule.
7518         (mingw-strerror.o): Likewise.
7519         * common/common-utils.h (safe_strerror): Move prototype to here,
7520         from utils.h.
7521         * common/common.host: New file.
7522         * common/mingw-strerror.c: Likewise.
7523         * common/posix-strerror.c: Likewise.
7524         * configure: Regenerated.
7525         * configure.ac: Source common/common.host.  Add variable
7526         common_host_obs to gdb_host_obs.
7527         * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
7528         gdb/common/posix-strerror.c when warning about the use of
7529         strerror.
7530         * mingw-hdep.c (safe_strerror): Remove definition; move it to
7531         common/mingw-strerror.c.
7532         * posix-hdep.c (safe_strerror): Remove definition; move it to
7533         common/posix-hdep.c.
7534         * utils.h (safe_strerror): Remove prototype; move to
7535         common/common-utils.h.
7536
7537 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
7538
7539         GDB 7.8.2 released.
7540
7541 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
7542
7543         * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
7544         ___XA type if the array has already been fixed.
7545
7546 2015-01-14  Yao Qi  <yao@codesourcery.com>
7547
7548         * Makefile.in (ppc-linux.o): New rule.
7549         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
7550         * configure.ac: AC_CHECK_FUNCS(getauxval).
7551         * config.in: Re-generated.
7552         * configure: Re-generated.
7553         * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
7554         Declare.
7555         * nat/ppc-linux.c: New file.
7556         * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
7557         Call ppc64_64bit_inferior_p.
7558
7559 2015-01-14  Yao Qi  <yao@codesourcery.com>
7560
7561         * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
7562         nat/ppc-linux.h.
7563         (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
7564         (PPC_FEATURE_HAS_DFP): Likewise.
7565         (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
7566         (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
7567         (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
7568         Include "nat/ppc-linux.h".
7569         * nat/ppc-linux.h: New file.
7570         * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
7571
7572 2015-01-14  Pedro Alves  <palves@redhat.com>
7573
7574         PR gdb/17525
7575         * breakpoint.c: Include "interps.h".
7576         (bpstat_do_actions_1): Also check whether the interpreter is
7577         async.
7578
7579 2015-01-14  Pedro Alves  <palves@redhat.com>
7580
7581         PR cli/17828
7582         * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
7583         reinstall if the interpreter is sync.
7584
7585 2015-01-13  Doug Evans  <dje@google.com>
7586
7587         * objfiles.c (objfile_filename): New function.
7588         * objfiles.h (objfile_filename): Declare it.
7589         (objfile_name): Add function comment.
7590         * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
7591         bfd file name (which may be realpath'd), and the original name.
7592
7593 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
7594
7595         * NEWS: Create a new section for the next release branch.
7596         Rename the section of the current branch, now that it has
7597         been cut.
7598
7599 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
7600
7601         GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
7602         * version.in: Bump version to 7.9.50.DATE-cvs.
7603
7604 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
7605
7606         * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
7607         Remove trailing new-line in argument of call to warning.
7608
7609 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
7610
7611         * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
7612         new-line in argument of call to "warning".
7613
7614 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
7615
7616         * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
7617         in static block, then try searching for primitive types.
7618
7619 2015-01-12  Patrick Palka  <patrick@parcs.ath.cx>
7620
7621         * top.h (gdb_add_history): Declare.
7622         * top.c (command_count): New variable.
7623         (gdb_add_history): New function.
7624         (gdb_safe_append_history): New static function.
7625         (quit_force): Call it.
7626         (command_line_input): Use gdb_add_history instead of
7627         add_history.
7628         * event-top.c (command_line_handler): Likewise.
7629
7630 2015-01-12  James Clarke  <jrtc27@jrtc27.com>  (tiny patch)
7631
7632         PR gdb/17046
7633         * darwin-nat.c: Replace <machine/setjmp.h> #include by
7634         <setjmp.h> #include.
7635
7636 2015-01-11  Doug Evans  <xdje42@gmail.com>
7637
7638         * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
7639
7640 2015-01-11  Doug Evans  <xdje42@gmail.com>
7641
7642         PR gdb/15830
7643         * NEWS: The "maint demangle" command is renamed as "demangle".
7644         * demangle.c: #include cli/cli-utils.h, language.h.
7645         (demangle_command): New function.
7646         (_initialize_demangle): Add new command "demangle".
7647         * maint.c (maintenance_demangle): Stub out.
7648         (_initialize_maint_cmds): Update help text for "maint demangle",
7649         and mark as deprecated.
7650
7651 2015-01-11  Mark Kettenis  <kettenis@gnu.org>
7652
7653         * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
7654         inferior_thread is a function.
7655
7656 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
7657
7658         * Makefile.in (.y.c): Don't munge yacc's #line
7659         directives.
7660
7661 2015-01-09  Patrick Palka  <patrick@parcs.ath.cx>
7662
7663         * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
7664         to prompt for input.
7665         * tui/tui-hooks.c (tui_query_hook): Remove.
7666         (tui_install_hooks): Don't set deprecated_query_hook.
7667         * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
7668         height calculation.  Always update the command window's cur_line.
7669
7670 2015-01-09  Pedro Alves  <palves@redhat.com>
7671
7672         * breakpoint.c (hardware_breakpoint_inserted_here_p): New
7673         function.
7674         * breakpoint.h (hardware_breakpoint_inserted_here_p): New
7675         declaration.
7676         * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
7677         (linux_resume_one_lwp): Store the thread's PC.  Adjust to clear
7678         stop_reason.
7679         (check_stopped_by_watchpoint): New function.
7680         (save_sigtrap): Reimplement.
7681         (linux_nat_stopped_by_watchpoint): Adjust.
7682         (linux_nat_lp_status_is_event): Delete.
7683         (stop_wait_callback): Only call save_sigtrap after storing the
7684         pending status.
7685         (status_callback): If the thread had been stopped for a breakpoint
7686         that has since been removed, discard the event and resume the LWP.
7687         (count_events_callback, select_event_lwp_callback): Use
7688         lwp_status_pending_p instead of linux_nat_lp_status_is_event.
7689         (cancel_breakpoint): Rename to ...
7690         (check_stopped_by_breakpoint): ... this.  Record whether the LWP
7691         stopped for a software breakpoint or hardware breakpoint.
7692         (select_event_lwp): Only give preference to the stepping LWP in
7693         all-stop mode.  Adjust comments.
7694         (stop_and_resume_callback): Remove references to new_pending_p.
7695         (linux_nat_filter_event): Likewise.  Leave exit events of the
7696         leader thread pending here.  Handle signal short circuiting here.
7697         Only call save_sigtrap after storing the pending waitstatus.
7698         (linux_nat_wait_1): Remove 'retry' label.  Remove references to
7699         new_pending.  Don't handle leaving events the caller is not
7700         interested in pending here, nor handle signal short-circuiting
7701         here.  Also give equal priority to all LWPs that have had events
7702         in non-stop mode.  If reporting a software breakpoint event,
7703         unadjust the LWP's PC.
7704         * linux-nat.h (enum lwp_stop_reason): New.
7705         (struct lwp_info) <stop_pc>: New field.
7706         (struct lwp_info) <stopped_by_watchpoint>: Delete field.
7707         (struct lwp_info) <stop_reason>: New field.
7708         * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
7709
7710 2015-01-09  Pedro Alves  <palves@redhat.com>
7711
7712         * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
7713         Set the LWP's 'resumed' flag.
7714
7715 2015-01-09  Pedro Alves  <palves@redhat.com>
7716
7717         * linux-nat.c (linux_resume_one_lwp): New function.
7718         (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
7719         (linux_nat_resume): Use lwp_status_pending_p and
7720         linux_resume_one_lwp.
7721         (linux_handle_syscall_trap): Use linux_resume_one_lwp.
7722         (linux_handle_extended_wait): Use linux_resume_one_lwp.
7723         (status_callback, running_callback): Use lwp_status_pending_p.
7724         (lwp_status_pending_p): New function.
7725         (stop_and_resume_callback): Use lwp_status_pending_p.
7726         (linux_nat_filter_event): Use linux_resume_one_lwp.
7727         (linux_nat_wait_1): Always use status_callback to look for an LWP
7728         with a pending status.  Use linux_resume_one_lwp.
7729         (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
7730         linux_resume_one_lwp.
7731
7732 2015-01-09  Pedro Alves  <palves@redhat.com>
7733
7734         * breakpoint.c (bp_location_inserted_here_p): New function,
7735         factored out from ...
7736         (breakpoint_inserted_here_p): ... here.  Use
7737         ALL_BP_LOCATIONS_AT_ADDR.
7738         (software_breakpoint_inserted_here_p): Use
7739         bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
7740
7741 2014-01-09  Pedro Alves  <palves@redhat.com>
7742
7743         Skip enabling event reporting if the kernel supports
7744         PTRACE_EVENT_CLONE.
7745         * linux-thread-db.c: Include "nat/linux-ptrace.h".
7746         (thread_db_use_events): New function.
7747         (try_thread_db_load_1): Check thread_db_use_events before enabling
7748         event reporting.
7749         (update_thread_state): New function.
7750         (attach_thread): Use it.  Check thread_db_use_events before
7751         enabling event reporting.
7752         (thread_db_detach): Check thread_db_use_events before disabling
7753         event reporting.
7754         (find_new_threads_callback): Check thread_db_use_events before
7755         enabling event reporting.  Update the thread's state if not using
7756         libthread_db events.
7757
7758 2015-01-09  Pedro Alves  <palves@redhat.com>
7759
7760         * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
7761         about to wait for is > 0.
7762         * linux-thread-db.c (find_new_threads_callback): Ignore thread if
7763         the kernel thread ID is -1.
7764
7765 2015-01-09  Pedro Alves  <palves@redhat.com>
7766
7767         * linux-nat.c (attach_proc_task_lwp_callback): New function.
7768         (linux_nat_attach): Use linux_proc_attach_tgid_threads.
7769         (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
7770         ptrace option flags.
7771         * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
7772         field.
7773         * nat/linux-procfs.c: Include <dirent.h>.
7774         (linux_proc_get_int): New parameter "warn".  Handle it.
7775         (linux_proc_get_tgid): Adjust.
7776         (linux_proc_get_tracerpid): Rename to ...
7777         (linux_proc_get_tracerpid_nowarn): ... this.
7778         (linux_proc_pid_get_state): New function, factored out from
7779         (linux_proc_pid_has_state): ... this.  Add new parameter "warn"
7780         and handle it.
7781         (linux_proc_pid_is_gone): New function.
7782         (linux_proc_pid_is_stopped): Adjust.
7783         (linux_proc_pid_is_zombie_maybe_warn)
7784         (linux_proc_pid_is_zombie_nowarn): New functions.
7785         (linux_proc_pid_is_zombie): Use
7786         linux_proc_pid_is_zombie_maybe_warn.
7787         (linux_proc_attach_tgid_threads): New function.
7788         * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
7789         (linux_proc_get_tracerpid): Rename to ...
7790         (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
7791         (linux_proc_pid_is_gone): New declaration.
7792         (linux_proc_pid_is_zombie): Update comment.
7793         (linux_proc_pid_is_zombie_nowarn): New declaration.
7794         (linux_proc_attach_lwp_func): New typedef.
7795         (linux_proc_attach_tgid_threads): New declaration.
7796         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
7797         use nowarn functions.
7798         (linux_ptrace_attach_fail_reason_string): Move here from
7799         gdbserver/linux-low.c and rename.
7800         (ptrace_supports_feature): If the current ptrace options are not
7801         known yet, check them now, instead of asserting.
7802         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
7803         Declare.
7804
7805 2015-01-09  Pedro Alves  <palves@redhat.com>
7806
7807         * linux-thread-db.c (thread_db_find_new_threads_silently)
7808         (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
7809         (find_new_threads_once): Print debug output on gdb_stdlog.
7810
7811 2015-01-09  Chen Gang  <gang.chen.5i5j@gmail.com>
7812             Pedro Alves  <palves@redhat.com>
7813
7814         * compile/compile.c: Include "gdb_wait.h".
7815         (do_rmdir): Check return value, and free 'zap'.
7816
7817 2015-01-08  Pedro Alves  <palves@redhat.com>
7818             Yao Qi  <yao@codesourcery.com>
7819
7820         * dwarf2loc.c (indirect_pieced_value): Don't call
7821         gdb_sign_extend.  Call extract_signed_integer instead.
7822         * utils.c (gdb_sign_extend): Remove.
7823         * utils.h (gdb_sign_extend): Remove declaration.
7824
7825 2015-01-07  Pierre Muller  <muller@sourceware.org>
7826
7827         PR symtab/17811
7828         * stabsread.c (define_symbol): Set language for C++ special symbols.
7829
7830 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
7831
7832         * inflow.c (initial_gdb_ttystate): Tweak comment.
7833
7834 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
7835
7836         * inflow.c (set_initial_gdb_ttystate): Add empty line after
7837         comment documenting function.
7838
7839 2015-01-07  Patrick Palka  <patrick@parcs.ath.cx>
7840
7841         * terminal.h (set_initial_gdb_ttystate): Declare.
7842         * inflow.c (initial_gdb_ttystate): New static variable.
7843         (set_initial_gdb_ttystate): New setter.
7844         (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
7845         instead of our current terminal state.
7846         * top.c (gdb_init): Call set_initial_gdb_ttystate.
7847
7848 2015-01-07  Joel Brobecker  <brobecker@adacore.com>
7849
7850         * guile/scm-type.c (tyscm_array_1): Add comment.
7851         * python/py-type.c (typy_array_1): Add comment.
7852
7853 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
7854
7855         * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
7856         error if N2 is equal to N1 - 1.
7857
7858 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
7859
7860         * python/py-type.c (typy_array_1): Do not raise negative-length
7861         exception if N2 is equal to N1 - 1.
7862
7863 2015-01-03  Doug Evans  <xdje42@gmail.com>
7864
7865         * c-exp.y: Whitespace cleanup.
7866         (classify_inner_name): Remove extra ;.
7867
7868 2015-01-02  Maciej W. Rozycki  <macro@codesourcery.com>
7869
7870         * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
7871         offset signed.
7872
7873 2015-01-02  Doug Evans  <dje@google.com>
7874
7875         * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
7876
7877 2015-01-02  Doug Evans  <dje@google.com>
7878
7879         * symtab.h (struct symbol): Fix typo in comment.
7880
7881 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
7882
7883         Update year range in copyright notice of all files.
7884
7885 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
7886
7887         * top.c (print_gdb_version): Update copyright year to 2015.
7888
7889 2015-01-01  Joel Brobecker  <brobecker@adacore.com>
7890
7891         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
7892
7893 For older changes see ChangeLog-2014.
7894 \f
7895 Local Variables:
7896 mode: change-log
7897 left-margin: 8
7898 fill-column: 74
7899 version-control: never
7900 coding: utf-8
7901 End: