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