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