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