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