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