Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
f5c4fcd9
TT
12016-09-08 Tom Tromey <tom@tromey.com>
2
3 * remote.c (remote_notif_stop_ack, remote_wait_as)
4 (show_remote_cmd): Remove unneeded casts.
5
4295e285
PA
62016-09-06 Pedro Alves <palves@redhat.com>
7
8 * top.c (wait_sync_command_done): Don't assume current_ui doesn't
9 change across events. Restore the current UI before returning.
10 (gdb_readline_wrapper): Restore the current UI before returning.
11
a025b477
PA
122016-09-06 Pedro Alves <palves@redhat.com>
13
14 * event-top.c (restore_ui_cleanup): Now static.
15 (make_cleanup_restore_current_ui): New function.
16 (switch_thru_all_uis_init): Use it.
17 * infcall.c (call_thread_fsm_should_stop): Use it.
18 * infrun.c (fetch_inferior_event): Use it.
19 * top.c (new_ui_command): Use it.
20 * top.h (restore_ui_cleanup): Delete declaration.
21 (make_cleanup_restore_current_ui): New declaration.
22
00d5215e
UW
232016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
24
25 * i386-tdep.c (i386_floatformat_for_type): New function.
26 (i386_gdbarch_init): Install it.
27 * ppc-linux-tdep.c (ppc_floatformat_for_type): New function.
28 (ppc_linux_init_abi): Install it.
29
9b790ce7
UW
302016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
31
32 * gdbarch.sh (floatformat_for_type): New gdbarch callback.
33 * gdbarch.h, gdbarch.c: Re-generate.
34 * arch-utils.h (default_floatformat_for_type): New prototype.
35 * arch-utils.c (default_floatformat_for_type): New function.
36
37 * doublest.c (floatformat_from_length): Remove.
38 (floatformat_from_type): Assume TYPE_FLOATFORMAT is non-NULL.
39 * gdbtypes.c (verify_floatformat): Require non-NULL format.
40
41 * dwarf2read.c (dwarf2_init_float_type): New function.
42 (read_base_type): Use it.
43 * stabsread.c (dbx_init_float_type): New function.
44 (read_sun_floating_type): Use it.
45 (read_range_type): Likewise.
46
49f190bc
UW
472016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
48
49 * ada-lang.c (ada_language_arch_info): Use gdbarch-provided
50 platform ABI floating-point formats for built-in types.
51 * d-lang.c (build_d_types): Likewise.
52 * f-lang.c (build_fortran_types): Likewise.
53 * m2-lang.c (build_m2_types): Likewise.
54 * mdebugread.c (basic_type): Likewise.
55
56 * go-lang.c (build_go_types): Use IEEE floating-point formats
57 for language built-in types as mandanted by the language.
58 * jv-lang.c (build_java_types): Likewise.
59 * rust-lang.c (rust_language_arch_info): Likewise.
60 * stabsread.c (rs6000_builtin_type): Likewise.
61
c413c448
UW
622016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
63
64 * gdbtypes.c (init_type): Remove "char" special case.
65 (arch_integer_type): Likewise.
66 (gdbtypes_post_init): Set TYPE_NOSIGN for "char" type.
67 (objfile_type): Likewise.
68 * mdebugread.c (basic_type): Likewise.
69 * stabsread.c (rs6000_builtin_type): Likewise.
70
a9ff5f12
UW
712016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
72
73 * gdbtypes.h (enum type_flag_value): Remove.
74 Remove references to TYPE_FLAG_... in comments throughout.
75 * gdbtypes.c (recursive_dump_type): Do not print TYPE_FLAG_...
76 flags, print the corresponding TYPE_... access macro names.
77 Remove references to TYPE_FLAG_... in comments throughout.
78 * infcall.c: Remove references to TYPE_FLAG_... in comments.
79 * valprint.c: Likewise.
80 * gdb-gdb.py (class TypeFlag): No longer consider TYPE_FLAG_...
81 values, only TYPE_INSTANCE_FLAG_... values.
82 (class TypeFlagsPrinter): Likewise.
83
19f392bc
UW
842016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
85
86 * gdbtypes.h (init_type): Remove FLAGS argument. Move OBJFILE
87 argument to first position.
88 (init_integer_type): New prototype.
89 (init_character_type): Likewise.
90 (init_boolean_type): Likewise.
91 (init_float_type): Likewise.
92 (init_decfloat_type): Likewise.
93 (init_complex_type): Likewise.
94 (init_pointer_type): Likewise.
95 * gdbtypes.c (verify_floatflormat): New function.
96 (init_type): Remove FLAGS argument and processing. Move OBJFILE
97 argument to first position.
98 (init_integer_type): New function.
99 (init_character_type): Likewise.
100 (init_boolean_type): Likewise.
101 (init_float_type): Likewise.
102 (init_decfloat_type): Likewise.
103 (init_complex_type): Likewise.
104 (init_pointer_type): Likewise.
105 (arch_float_type): Use verify_floatflormat.
106 (objfile_type): Use init_..._type helpers instead of calling
107 init_type directly.
108 * dwarf2read.c (fixup_go_packaging): Update to changed init_type
109 prototype.
110 (read_namespace_type): Likewise.
111 (read_module_type): Likewise.
112 (read_typedef): Likewise.
113 (read_unspecified_type): Likewise.
114 (build_error_marker_type): Likewise.
115 (read_base_type): Use init_..._type helpers.
116 * mdebugread.c (basic_type): Use init_..._type helpers.
117 (parse_type): Update to changed init_type prototype.
118 (cross_ref): Likewise.
119 * stabsread.c (rs6000_builtin_type): Use init_..._type helpers.
120 (read_sun_builtin_type): Likewise.
121 (read_sun_floating_type): Likewise.
122 (read_range_type): Likewise. Also update to changed init_type
123 prototype.
124
88dfca6c
UW
1252016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
126
127 * gdbtypes.h (arch_decfloat_type): New prototype.
128 (arch_pointer_type): Likewise.
129 * gdbtypes.c (arch_decfloat_type): New function.
130 (arch_pointer_type): Likewise.
131 (gdbtypes_post_init): Use arch_decfloat_type.
132 * avr-tdep.c (avr_gdbarch_init): Use arch_pointer_type.
133 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
134 * m32c-tdep.c (make_types): Likewise.
135 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
136
ae438bc5
UW
1372016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
138
139 * gdbtypes.c (set_type_code): New function.
140 (init_type, arch_type): Use it.
141
5f3bceb6
UW
1422016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
143
144 * ada-lang.c (ada_language_arch_info): Use gdbarch_long_double_bit
145 instead of gdbarch_double_bit for "long_long_float".
146
cf6de44d
PA
1472016-09-05 Pedro Alves <palves@redhat.com>
148
149 * NEWS: Mention that a C++ compiler is now required.
150 * Makefile.in (COMPILER, COMPILER_CFLAGS): Remove.
151 (COMPILE.pre, CC_LD): Use CXX directly.
152 (INTERNAL_CFLAGS_BASE): Use CXXFLAGS directly.
153 * acinclude.m4: Don't include build-with-cxx.m4.
154 * build-with-cxx.m4: Delete file.
155 * configure.ac: Remove GDB_AC_BUILD_WITH_CXX call.
156 * warning.m4: Assume $enable_build_with_cxx is yes.
157 * configure: Regenerate.
158
f245535c
PA
1592016-09-05 Pedro Alves <palves@redhat.com>
160
161 PR backtrace/19927
162 * frame.c (get_frame_id): Compute the frame id if not computed
163 yet.
164 (unwind_to_current_frame): Delete.
165 (get_current_frame): Use get_prev_frame_always_1 to get the
166 current frame and assert that that always succeeds.
167 (get_prev_frame_if_no_cycle): Skip cycle detection if returning
168 the current frame.
169
4aa4e28b
TT
1702016-09-02 Tom Tromey <tom@tromey.com>
171
172 PR gdb/11616:
173 * dwarf2read.c (decode_locdesc): Handle DW_OP_form_tls_address.
174 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Handle
175 DW_OP_form_tls_address.
176 (locexpr_describe_location_piece): Likewise.
177 * dwarf2expr.h (struct dwarf_expr_context_funcs): Update comment.
178 * dwarf2expr.c (execute_stack_op): Handle DW_OP_form_tls_address.
179 (ctx_no_get_tls_address): Mention DW_OP_form_tls_address.
180 * compile/compile-loc2c.c (struct insn_info): Update comment.
181 (compute_stack_depth_worker): Handle DW_OP_form_tls_address.
182
f2b9e3df
SDJ
1832016-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
184
185 * target.c (target_wait): Mention that the function's prototype
186 can be found at target/target.h.
187 * target.h (target_wait): Move prototype from here...
188 * target/target.h (target_wait): ... to here.
189
049a8570
SDJ
1902016-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
191
192 * fork-child.c (startup_inferior): Replace calls to target_resume
193 by target_continue{,_no_signal}, depending on the case.
194 * linux-nat.c (cleanup_target_stop): Call
195 target_continue_no_signal instead of target_resume.
196 * procfs.c (procfs_wait): Likewise.
197 * target.c (target_continue): New function.
198 * target/target.h (target_continue): New prototype.
199
f99bd5f2
YQ
2002016-08-31 Yao Qi <yao.qi@linaro.org>
201
202 * record-full.c (record_full_insert_breakpoint): Fix typo.
203
5af962df
AA
2042016-08-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
205
206 * thread.c (tp_array_compar): Insert missing parentheses.
207
ae68ff9f
AA
2082016-08-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
209
210 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Replace
211 designated initializer list by plain initializer list, for C++
212 compliance.
213
754653a7
AZ
2142016-08-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
215
216 * aarch64-linux-nat.c (ps_get_thread_area): Remove const from
217 struct ps_prochandle.
218 * amd64-linux-nat.c (ps_get_thread_area): Likewise.
219 * arm-linux-nat.c (ps_get_thread_area): Likewise.
220 * gdb_proc_service.h (ps_get_thread_area): Likewise.
221 * i386-linux-nat.c (ps_get_thread_area): Likewise.
222 * m68klinux-nat.c (ps_get_thread_area): Likewise.
223 * mips-linux-nat.c (ps_get_thread_area): Likewise.
224 * nat/aarch64-linux.c (aarch64_ps_get_thread_area): Likewise.
225 * nat/aarch64-linux.h (aarch64_ps_get_thread_area): Likewise.
226 * xtensa-linux-nat.c (ps_get_thread_area): Likewise.
227
0a1ddfa6
SM
2282016-08-24 Simon Marchi <simon.marchi@ericsson.com>
229
230 * infcmd.c (set_inferior_io_terminal): Set inferior terminal to
231 NULL if terminal_name is an empty string.
232 (_initialize_infcmd): Make the argument of "set inferior-tty"
233 optional, mention it in the help doc.
234
bdd78711
CL
2352016-08-24 Carl Love <cel@us.ibm.com>
236
237 * rs6000-tdep.c (rs6000_gdbarch_init): Remove call
238 set_gdbarch_deprecated_fp_regnum() architecture
239 initialization function.
240
34f81801
SM
2412016-08-23 Simon Marchi <simon.marchi@ericsson.com>
242
243 * stack.c (parse_frame_specification): Fix typo in comment.
244
d9de1fe3
PA
2452016-08-23 Pedro Alves <palves@redhat.com>
246
247 PR gdb/20494
248 * inflow.c (our_terminal_info, initial_gdb_ttystate): Update
249 comments.
250 (enum gdb_has_a_terminal_flag_enum, gdb_has_a_terminal_flag):
251 Delete.
252 (set_initial_gdb_ttystate): Record our_terminal_info here too,
253 instead of ...
254 (gdb_has_a_terminal): ... here. Reimplement in terms of
255 initial_gdb_ttystate. Make static.
256 * terminal.h (gdb_has_a_terminal): Delete declaration.
257 (set_initial_gdb_ttystate): Add comment.
258 * top.c (show_interactive_mode): Use input_interactive_p instead
259 of gdb_has_a_terminal.
260
6bb90213
PA
2612016-08-22 Pedro Alves <palves@redhat.com>
262
263 PR gdb/20505
264 * linux-tdep.c (linux_vsyscall_range_raw): For core inferiors,
265 find the vDSO's start address with AT_SYSINFO_EHDR too, and
266 determine the vDSO's size by finding the PT_LOAD segment that
267 matches AT_SYSINFO_EHDR.
268
03bcd739
YQ
2692016-08-19 Yao Qi <yao.qi@linaro.org>
270
271 * aarch64-tdep.c (aarch64_analyze_prologue): Handle register
272 based STP instruction.
273
bbfa2517
YQ
2742016-08-19 Yao Qi <yao.qi@linaro.org>
275
276 * completer.c (linespec_location_completer): Make file_to_match
277 null-terminated.
278
f077e978
PA
2792016-08-19 Pedro Alves <palves@redhat.com>
280
281 * amd64-tdep.c (amd64_relocate_instruction) <callq>: Handle return
282 addresses over 0x7fffffff.
283
46da9242
CL
2842016-08-18 Carl Love <cel@us.ibm.com>
285
286 * MAINTANERS Write After Approval): Add "Carl Love".
287
d44c67f3
EBM
2882016-08-18 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
289
290 * rs6000-tdep.c (ppc_process_record_op31): Handle HTM instructions.
291
eb2332d7
SM
2922016-08-17 Simon Marchi <simon.marchi@ericsson.com>
293
294 * inferior.c (remove_inferior_command): Fix error message.
295
9b19e390
SM
2962016-08-17 Simon Marchi <simon.marchi@ericsson.com>
297
298 * inferior.c (exit_inferior_1): Remove comment.
299
31925464
MW
3002016-08-15 Matthew Wahab <matthew.wahab@arm.com>
301
302 PR gdb/20457
303 * gdb_proc_service.h: Add an include of gregset.h
304 [!HAVE_PROC_SERVICE_H]: Remove the include of gregset.h.
305
b31f9478
YQ
3062016-08-15 Yao Qi <yao.qi@linaro.org>
307
308 * location.c (explicit_location_lex_one): Compare the return
309 value of strncmp with zero. Don't check (*inp)[9]. Increment
310 *inp by 8.
311
39b22471
PA
3122016-08-11 Pedro Alves <palves@redhat.com>
313
314 PR gdb/20413
315 * nat/linux-ptrace.c: Include <sys/procfs.h> instead of
316 "gregset.h".
317
01d3dedf
PA
3182016-08-10 Pedro Alves <palves@redhat.com>
319
320 PR gdb/19187
321 * record-full.c (record_full_remove_breakpoint): Don't remove the
322 breakpoint from the record_full_breakpoints VEC if we're detaching
323 the breakpoint from a fork child.
324
73971819
PA
3252016-08-10 Pedro Alves <palves@redhat.com>
326
327 PR gdb/19187
328 * break-catch-sig.c (signal_catchpoint_remove_location): Adjust
329 interface.
330 * break-catch-syscall.c (remove_catch_syscall):
331 * breakpoint.c (enum remove_bp_reason): Moved to breakpoint.h.
332 (remove_breakpoint_1): Pass 'reason' down.
333 (remove_catch_fork, remove_catch_vfork, remove_catch_solib)
334 (remove_catch_exec, remove_watchpoint, remove_masked_watchpoint)
335 (base_breakpoint_remove_location, bkpt_remove_location)
336 (bkpt_probe_remove_location, bkpt_probe_remove_location): Adjust
337 interface.
338 * breakpoint.h (enum remove_bp_reason): Moved here from
339 breakpoint.c.
340 (struct breakpoint_ops) <remove_location>: Add 'reason' parameter.
341 * corelow.c (core_remove_breakpoint): New function.
342 (init_core_ops): Install it as to_remove_breakpoint method.
343 * exec.c (exec_remove_breakpoint): New function.
344 (init_exec_ops): Install it as to_remove_breakpoint method.
345 * mem-break.c (memory_remove_breakpoint): Adjust interface.
346 * record-btrace.c (record_btrace_remove_breakpoint): Adjust
347 interface.
348 * record-full.c (record_full_remove_breakpoint)
349 (record_full_core_remove_breakpoint): Adjust interface.
350 * remote.c (remote_remove_breakpoint): Adjust interface.
351 * target-debug.h (target_debug_print_enum_remove_bp_reason): New
352 macro.
353 * target-delegates.c: Regenerate.
354 * target.c (target_remove_breakpoint): Add 'reason' parameter.
355 * target.h (struct target_ops) <to_remove_breakpoint>: Add
356 'reason' parameter.
357 (target_remove_breakpoint, memory_remove_breakpoint): Add 'reason'
358 parameter.
359
b2b6a7da
PA
3602016-08-10 Pedro Alves <palves@redhat.com>
361
362 PR gdb/19187
363 * breakpoint.c (insertion_state_t): Delete.
364 (enum remove_bp_reason): New.
365 (detach_breakpoints, remove_breakpoint_1, remove_breakpoint):
366 Adjust to use enum remove_bp_reason instead of insertion_state_t.
367
834c0d03
PA
3682016-08-10 Pedro Alves <palves@redhat.com>
369
370 PR gdb/19187
371 * breakpoint.c (remove_breakpoint): Remove 'is' parameter and
372 always pass mark_uninserted to remove_breakpoint_1.
373 (insert_breakpoint_locations, remove_breakpoints)
374 (remove_breakpoints_pid, update_global_location_list): Update
375 callers.
376
24cdb46e
РИ
3772016-08-10 Руслан Ижбулатов <lrn1986@gmail.com>
378 Pedro Alves <palves@redhat.com>
379
380 * windows-nat.c (MS_VC_EXCEPTION): New define.
381 (handle_exception_result): New enum.
382 (windows_delete_thread): Free the thread's name.
383 (handle_exception): Handle MS_VC_EXCEPTION.
384 (get_windows_debug_event): Handle HANDLE_EXCEPTION_IGNORED.
385 (windows_thread_name): New function.
386 (windows_target): Install it as to_thread_name method.
387 * NEWS: Mention the thread naming support on MS-Windows.
388
669f9429
PA
3892016-08-10 Pedro Alves <palves@redhat.com>
390
391 * common/signals-state-save-restore.c
392 (save_original_signals_state, restore_original_signals_state):
393 Wrap perror_with_name arguments with '()'.
394
3eb7562a
PA
3952016-08-09 Pedro Alves <palves@redhat.com>
396
397 PR gdb/20418
398 * event-top.c (ui_register_input_event_handler)
399 (ui_unregister_input_event_handler): New functions.
400 (async_enable_stdin): Register input in the event loop.
401 (async_disable_stdin): Unregister input from the event loop.
402 (gdb_setup_readline): Register input in the event loop.
403 * infrun.c (check_curr_ui_sync_execution_done): Register input in
404 the event loop.
405 * target.c (target_terminal_inferior): Don't unregister input from
406 the event loop.
407 (target_terminal_ours): Don't register input in the event loop.
408 * target.h (target_terminal_inferior)
409 (target_terminal_ours_for_output, target_terminal_ours): Update
410 comments.
411 * top.h (ui_register_input_event_handler)
412 (ui_unregister_input_event_handler): New declarations.
413 * utils.c (ui_unregister_input_event_handler_cleanup)
414 (prepare_to_handle_input): New functions.
415 (defaulted_query, prompt_for_continue): Use
416 prepare_to_handle_input.
417
80614914
PA
4182016-08-09 Pedro Alves <palves@redhat.com>
419
420 PR mi/20431
421 * mi/mi-main.c (mi_execute_command): Enable input and set prompt
422 state to PROMPT_NEEDED.
423
f348d89a
PA
4242016-08-09 Pedro Alves <palves@redhat.com>
425
426 PR gdb/18653
427 * Makefile.in (SFILES): Add
428 common/signals-state-save-restore.c.
429 (HFILES_NO_SRCDIR): Add common/signals-state-save-restore.h.
430 (COMMON_OBS): Add signals-state-save-restore.o.
431 (signals-state-save-restore.o): New rule.
432 * configure: Regenerate.
433 * fork-child.c: Include "signals-state-save-restore.h".
434 (fork_inferior): Call restore_original_signals_state.
435 * main.c: Include "signals-state-save-restore.h".
436 (captured_main): Call save_original_signals_state.
437 * common/common.m4: Add sigaction to AC_CHECK_FUNCS checks.
438 * common/signals-state-save-restore.c: New file.
439 * common/signals-state-save-restore.h: New file.
440
e5ca03b4
PA
4412016-08-09 Pedro Alves <palves@redhat.com>
442
443 * value.c (unpack_value_bitfield): Skip unpacking if the parent
444 has no contents buffer to begin with.
445
6a17ca31
PA
4462016-08-08 Pedro Alves <palves@redhat.com>
447
448 * features/i386/amd64-avx-mpx-linux.c: Regenerate.
449 * features/i386/amd64-avx-mpx.c: Regenerate.
450 * features/i386/i386-avx-mpx-linux.c: Regenerate.
451 * features/i386/i386-avx-mpx.c: Regenerate.
452
c632e428
SM
4532016-08-05 Simon Marchi <simon.marchi@ericsson.com>
454
455 * event-top.h (cli_command_loop): Remove.
456
3906a8fc
PA
4572016-08-05 Pedro Alves <palves@redhat.com>
458
459 PR remote/20398
460 * remote-fileio.c (remote_fileio_quit_handler): Check the quit
461 flag before calling quit.
462
69ffd7f2
PA
4632016-08-05 Pedro Alves <palves@redhat.com>
464
465 * NEWS: Mention that GDB and GDBserver build with a C++ compiler
466 by default.
467
1baf5149
PA
4682016-08-05 Pedro Alves <palves@redhat.com>
469
470 * build-with-cxx.m4: Change help string to be in terms of
471 --disable-build-with-cxx.
472 * configure: Regenerate.
473
6f67973b
YQ
4742016-08-04 Yao Qi <yao.qi@linaro.org>
475
476 * aarch64-linux-nat.c (tdesc_arm_with_vfpv3): Remove the
477 declaration.
478 (aarch64_linux_read_description): Remove code on getting
479 auxv and select target description on it. Select target
480 description by the result of NT_ARM_VFP ptrace request.
481
282a0691
TT
4822016-08-03 Tom Tromey <tom@tromey.com>
483
484 PR python/18565:
485 * python/py-frame.c (frapy_function): Use find_frame_funname.
486
d10153cf
TT
4872016-08-03 Tom Tromey <tom@tromey.com>
488
489 * stack.c (find_frame_funname): Avoid any possible leak in case
490 cp_remove_params can throw.
491
8d2a0a14
TT
4922016-08-03 Tom Tromey <tom@tromey.com>
493
494 * NEWS: Mention new Python breakpoint events.
495
33541b2e
TT
4962016-08-02 Tom Tromey <tom@tromey.com>
497
498 * MAINTAINERS (Core): Add self as Rust maintainer.
499
751b375e
JB
5002016-08-01 Joel Brobecker <brobecker@adacore.com>
501
502 * NEWS: Create a new section for the next release branch.
503 Rename the section of the current branch, now that it has
504 been cut.
505
b2bd7787
JB
5062016-08-01 Joel Brobecker <brobecker@adacore.com>
507
508 GDB 7.12 branch created (41bfcd638a4e0e48b96ce4de2845372dea481322):
509 * version.in: Bump version to 7.12.50.DATE-git.
510
293acfae
AM
5112016-07-27 Alan Modra <amodra@gmail.com>
512
513 * amd64-darwin-tdep.c: Don't include libbfd.h.
514 * i386-darwin-tdep.c: Likewise.
515 * rs6000-nat.c: Likewise.
516 * rs6000-tdep.c: Likewise.
517
0b31a4bc
TT
5182016-07-26 Tom Tromey <tom@tromey.com>
519
520 * symtab.c (register_symbol_computed_impl): Update.
521 PR python/20190:
522 * value.h (symbol_read_needs): Declare.
523 (symbol_read_needs_frame): Add comment.
524 * symtab.h (struct symbol_computed_ops) <read_variable>: Update
525 comment.
526 <get_symbol_read_needs>: Rename. Change return type.
527 * findvar.c (symbol_read_needs): New function.
528 (symbol_read_needs_frame): Rewrite.
529 (default_read_var_value): Use symbol_read_needs.
530 * dwarf2loc.c (struct symbol_needs_baton): Rename.
531 <needs>: Renamed from needs_frame. Changed type.
532 (needs_frame_read_addr_from_reg, symbol_needs_get_reg_value)
533 (symbol_needs_read_mem, symbol_needs_frame_base)
534 (symbol_needs_frame_cfa, symbol_needs_tls_address)
535 (symbol_needs_dwarf_call): Rename.
536 (needs_dwarf_reg_entry_value): Update.
537 (symbol_needs_ctx_funcs, dwarf2_loc_desc_get_symbol_read_needs):
538 Rename and update.
539 (locexpr_get_symbol_read_needs, loclist_symbol_needs): Likewise.
540 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Update.
541 * defs.h (enum symbol_needs_kind): New.
542
40c31709
PA
5432016-07-26 Pedro Alves <palves@redhat.com>
544
545 * nat/linux-ptrace.c: Include "gregset.h".
546 (linux_ptrace_test_ret_to_nx): Use PTRACE_GETREGS instead of
547 PTRACE_PEEKUSER.
548
9cf12d57
PA
5492016-07-26 Pedro Alves <palves@redhat.com>
550
551 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Rename 'native'
552 parameter to 'ptrace'.
553 * nat/amd64-linux-siginfo.c (GDB_SI_SIZE): New define.
554 (nat_uptr_t): New an unsigned long.
555 (nat_clock_t): Remove attribute __aligned__.
556 (struct nat_timeval): Delete.
557 (nat_siginfo_t): Remove attribute __aligned__.
558 (ptrace_siginfo_t): Define.
559 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
560 (compat_x32_siginfo_from_siginfo)
561 (siginfo_from_compat_x32_siginfo): Make 'from' parameter const.
562 Convert through a ptrace_siginfo_t instead of a nat_siginfo_t.
563 Remove casts.
564 (amd64_linux_siginfo_fixup_common): Rename 'native' parameter to
565 'ptrace'. Remove static assertions.
566 (top level): New static assertions.
567
8194e927
SM
5682016-07-25 Simon Marchi <simon.marchi@ericsson.com>
569
570 * top.h (make_delete_ui_cleanup): New declaration.
571 * top.c (delete_ui_cleanup): New function.
572 (make_delete_ui_cleanup): New function.
573 (new_ui_command): Create restore_ui cleanup earlier, create a
574 delete_ui cleanup and discard it on success.
575
0e1a6a51
PA
5762016-07-25 Pedro Alves <palves@redhat.com>
577 Jan Kratochvil <jan.kratochvil@redhat.com>
578
579 * nat/linux-procfs.c (parse_proc_status_state): Handle lowercase
580 't'.
581
d617208b
PA
5822016-07-25 Pedro Alves <palves@redhat.com>
583
584 * nat/linux-procfs.c (enum proc_state): New enum.
585 (parse_proc_status_state): New function.
586 (linux_proc_pid_get_state): Replace output string buffer parameter
587 with an output proc_state parameter. Use parse_proc_status_state.
588 (linux_proc_pid_is_gone): Adjust to use proc_state values.
589 (linux_proc_pid_has_state): Change type of 'state' parameter; now
590 an enum proc_state. Adjust to linux_proc_pid_get_state interface
591 change.
592 (linux_proc_pid_is_stopped)
593 (linux_proc_pid_is_trace_stopped_nowarn)
594 (linux_proc_pid_is_zombie_maybe_warn): Adjust to
595 linux_proc_pid_get_state interface change.
596
3a1518e4
TW
5972016-07-25 Tim Wiederhake <tim.wiederhake@intel.com>
598
599 * MAINTAINERS (Write After Approval): Add Tim Wiederhake
600
c0272db5
TW
6012016-07-25 Tim Wiederhake <tim.wiederhake@intel.com>
602
603 * NEWS: Resume btrace on reconnect.
604 * record-btrace.c: Added record-btrace.h include.
605 (record_btrace_open): Split into this and ...
606 (record_btrace_push_target): ... this.
607 (record_btrace_disconnect): New function.
608 (init_record_btrace_ops): Use record_btrace_disconnect.
609 * record-btrace.h: New file.
610 * remote.c: Added record-btrace.h include.
611 (remote_start_remote): Check recording status.
612 (remote_btrace_maybe_reopen): New function.
613
e3487908
GKB
6142016-07-23 Gabriel Krisman Bertazi <gabriel@krisman.be>
615
616 * xml-syscall.c (get_syscalls_by_group): New.
617 (get_syscall_group_names): New.
618 (struct syscall_group_desc): New structure to store group data.
619 (struct syscalls_info): Include field to store the group list.
620 (sysinfo_free_syscall_group_desc): New.
621 (free_syscalls_info): Free group list.
622 (syscall_group_create_syscall_group_desc): New.
623 (syscall_group_add_syscall): New.
624 (syscall_create_syscall_desc): Add syscall to its groups.
625 (syscall_start_syscall): Load group attribute.
626 (syscall_group_get_group_by_name): New.
627 (xml_list_syscalls_by_group): New.
628 (xml_list_of_groups): New.
629 * xml-syscall.h (get_syscalls_by_group): Export function
630 to retrieve a list of syscalls filtered by the group name.
631 (get_syscall_group_names): Export function to retrieve the list
632 of syscall groups.
633 * break-catch-syscall.c (catch_syscall_split_args): Verify if
634 argument is a syscall group and expand it to a list of syscalls
635 when creating catchpoints.
636 (catch_syscall_completer): Add word completion for system call
637 groups.
638 * configure.ac: Include dependency for xsltproc when building
639 in maintainer-mode.
640 * break-catch-syscall.c (_initialize_breakpoint): Update catch
641 syscall command documentation.
642 * NEWS: Include section about catching groups of syscalls.
643 * configure: Regenerate.
644 * data-directory/Makefile.in: Generate syscall xml when building
645 in maintainer mode.
646 * syscalls/gdb-syscalls.dtd: Include group attribute to the
647 syscall element.
648 * syscalls/apply-defaults.xsl: New.
649 * syscalls/linux-defaults.xml.in: New.
650 * syscalls/aarch64-linux.xml: Rename to aarch64-linux.xml.in.
651 * syscalls/amd64-linux.xml: Rename to amd64-linux.xml.in.
652 * syscalls/arm-linux.xml: Rename to arm-linux.xml.in.
653 * syscalls/bfin-linux.xml: Rename to bfin-linux.xml.in.
654 * syscalls/i386-linux.xml: Rename to i386-linux.xml.in.
655 * syscalls/mips-n32-linux.xml: Rename to mips-n32-linux.xml.in.
656 * syscalls/mips-n64-linux.xml: Rename to mips-n64-linux.xml.in.
657 * syscalls/mips-o32-linux.xml: Rename to mips-o32-linux.xml.in.
658 * syscalls/ppc-linux.xml: Rename to ppc-linux.xml.in.
659 * syscalls/ppc64-linux.xml: Rename to ppc64-linux.xml.in.
660 * syscalls/s390-linux.xml: Rename to s390-linux.xml.in.
661 * syscalls/s390x-linux.xml: Rename to s390x-linux.xml.in.
662 * syscalls/sparc-linux.xml: Rename to sparc-linux.xml.in.
663 * syscalls/sparc64-linux.xml: Rename to sparc64-linux.xml.in.
664 * syscalls/aarch64-linux.xml: Regenerate.
665 * syscalls/amd64-linux.xml: Regenerate.
666 * syscalls/arm-linux.xml: Regenerate.
667 * syscalls/i386-linux.xml: Regenerate.
668 * syscalls/mips-n32-linux.xml: Regenerate.
669 * syscalls/mips-n64-linux.xml: Regenerate.
670 * syscalls/mips-o32-linux.xml: Regenerate.
671 * syscalls/ppc-linux.xml: Regenerate.
672 * syscalls/ppc64-linux.xml: Regenerate.
673 * syscalls/s390-linux.xml: Regenerate.
674 * syscalls/s390x-linux.xml: Regenerate.
675 * syscalls/sparc-linux.xml: Regenerate.
676 * syscalls/sparc64-linux.xml: Regenerate.
677
49ecef2a
AP
6782016-07-23 Andrew Pinski <apinski@cavium.com>
679
680 * nat/aarch64-linux-hw-point.c
681 (aarch64_linux_get_debug_reg_capacity): Handle
682 ARMv8.1 and ARMv8.2 debug versions.
683 * nat/aarch64-linux-hw-point.h
684 (AARCH64_DEBUG_ARCH_V8_1): New define.
685 (AARCH64_DEBUG_ARCH_V8_2): New define.
686
463888ab
РИ
6872016-06-30 Руслан Ижбулатов <lrn1986@gmail.com>
688
689 PR gdb/14529
690 * windows-nat.c (signal_event_command): New command 'signal-event'
691 for W32 JIT debug support.
692 * NEWS: Add an entry about the new 'signal-event' command.
693
e98c9e7c
TT
6942016-07-22 Tom Tromey <tom@tromey.com>
695
696 PR rust/20162:
697 * dwarf2read.c (scan_partial_symbols) <DW_TAG_structure_type>:
698 Call scan_partial_symbols for children when reading a Rust CU.
699 (dwarf2_physname): Ignore invalid DW_AT_linkage_name generated by
700 rustc.
701 (process_structure_scope) <DW_TAG_subprogram>: Call
702 read_func_scope for Rust.
703
eed2386e
YQ
7042016-07-22 Yao Qi <yao.qi@linaro.org>
705
706 * ctf.c (ctf_traceframe_info): Call bt_ctf_get_uint64 rather than
707 bt_ctf_get_int64.
708
12df5c00
TT
7092016-07-21 Tom Tromey <tom@tromey.com>
710
711 * rust-lang.c (rust_tuple_struct_type_p): Return false for empty
712 structs.
713 * rust-exp.y (struct_expr_list): Allow empty elements.
714
305450ed
TT
7152016-07-21 Tom Tromey <tom@tromey.com>
716
717 * configure: Rebuild.
718 * warning.m4 (AM_GDB_WARNINGS) <build_warnings>: Add
719 -Wunused-but-set-parameter, -Wunused-but-set-variable.
720
f515a1d6
PA
7212016-07-21 Pedro Alves <palves@redhat.com>
722
723 * go32-nat.c (go32_create_inferior): Add cast.
724 * ser-go32.c (dos_noop): Delete.
725 (dos_flush_output, dos_setparity, dos_drain_output): New
726 functions.
727 (dos_write): Add cast.
728 (dos_ops): Use dos_flush_output, dos_setparity and
729 dos_drain_output.
730 * top.c (do_chdir_cleanup): Add cast.
731
c25b7cce
PA
7322016-07-21 Pedro Alves <palves@redhat.com>
733
734 * windows-nat.c (handle_exception): Remove "th".
735
e3821cca
PA
7362016-07-21 Pedro Alves <palves@redhat.com>
737
738 * varobj.c (varobj_value_get_print_value): Move "gdbarch" to block
739 scope that uses it.
740
dbaed385
JB
7412016-07-20 John Baldwin <jhb@FreeBSD.org>
742
743 * fbsd-nat.c (fbsd_enable_proc_events): Enable "PTRACE_VFORK"
744 events.
745 (fbsd_pending_vfork_done): Only define if "PTRACE_VFORK" is not
746 defined.
747 (fbsd_add_vfork_done): Likewise.
748 (fbsd_is_vfork_done_pending): Likewise.
749 (fbsd_next_vfork_done): Likewise.
750 (fbsd_resume): Only ignore pending vfork done events if
751 "PTRACE_VFORK" is not defined.
752 (fbsd_wait): Only look for pending vfork done events if
753 "PTRACE_VFORK" is not defined.
754 [PTRACE_VFORK]: Handle "PL_FLAG_VFORKED" and "PL_FLAG_VFORK_DONE"
755 events.
756 (fbsd_follow_fork): Only fake a vfork done event if "PTRACE_VFORK"
757 is not defined.
758
5fa14c6b
JB
7592016-07-20 John Baldwin <jhb@FreeBSD.org>
760
761 * fbsd-nat.c (fbsd_wait): Use "fbsd_enable_proc_events" on
762 new child processes.
763
da95a26c
JB
7642016-07-20 John Baldwin <jhb@FreeBSD.org>
765
766 * fbsd-nat.c (fbsd_enable_lwp_events): Remove function.
767 (fbsd_enable_proc_events): New function.
768 (fbsd_enable_follow_fork): Remove function.
769 (fbsd_post_startup_inferior): Use "fbsd_enable_proc_events".
770 (fbsd_post_attach): Likewise.
771
bc7b765a
JB
7722016-07-15 John Baldwin <jhb@FreeBSD.org>
773
774 * common/signals.c (gdb_signal_from_host): Handle SIGLIBRT.
775 (do_gdb_signal_to_host): Likewise.
776 * infrun.c (_initialize_infrun): Pass GDB_SIGNAL_LIBRT through to
777 programs.
778 * proc-events.c (signal_table): Add entry for SIGLIBRT.
779
7f131b39
TT
7802016-07-14 Tom Tromey <tom@tromey.com>
781
782 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Add missing
783 newline.
784
78cc6c2d
TT
7852016-07-14 Tom Tromey <tom@tromey.com>
786
787 * mips-tdep.c (micromips_scan_prologue): Remove "frame_addr".
788 (mips_o32_push_dummy_call): Remove "stack_used_p".
789 * aarch64-tdep.c (aarch64_record_data_proc_imm): Remove
790 "insn_bit28".
791 * rust-lang.c (rust_print_type): Remove "len".
792 * rust-exp.y (super_name): Remove "current_len".
793 * python/py-framefilter.c (py_print_type): Remove "type".
794 * mdebugread.c (parse_partial_symbols): Remove
795 "past_first_source_file".
796 <N_SO>: Remove "valu", "first_so_symnum", "prev_textlow_not_set".
797 * m2-valprint.c (m2_print_unbounded_array): Remove
798 "content_type".
799 (m2_val_print): Remove "i".
800 * linespec.c (unexpected_linespec_error): Remove "cleanup".
801 * f-valprint.c (f_val_print): Remove "i".
802 * elfread.c (elf_symtab_read): Remove "offset".
803 * dwarf2-frame.c (dwarf2_fetch_cfa_info): Remove "addr_size".
804 * jit.c (jit_dealloc_cache): Remove "i" and "frame_arch".
805
ac298888
TT
8062016-07-14 Tom Tromey <tom@tromey.com>
807
808 * arch-utils.c (default_skip_permanent_breakpoint): Remove
809 "bp_insn".
810 * disasm.c (do_assembly_only): Remove "num_displayed".
811 * dwarf2read.c (read_abbrev_offset): Remove "length".
812 (dwarf_decode_macro_bytes) <DW_MACINFO_vendor_ext>: Remove
813 "constant".
814 * m32c-tdep.c (make_regs): Remove "r2hl", "r3hl", and "intbhl".
815 * microblaze-tdep.c (microblaze_frame_cache): Remove "func".
816 * tracefile.c (trace_save): Remove "status".
817
764c99c1
TT
8182016-07-14 Tom Tromey <tom@tromey.com>
819
820 * symfile.c (simple_overlay_update_1): Remove initialization
821 of "size", and commented-out code.
822 (simple_overlay_update): Likewise.
823
cecc8b99
TT
8242016-07-14 Tom Tromey <tom@tromey.com>
825
826 * tui/tui-winsource.c (tui_show_source_line): Use getcurx.
827 * tui/tui-io.c (tui_puts): Use getcurx.
828 (tui_redisplay_readline): Likewise.
829
821fc4ae
TT
8302016-07-14 Tom Tromey <tom@tromey.com>
831
832 * inflow.c (child_terminal_ours_1): Use ATTRIBUTE_UNUSED.
833
537d9b85
TT
8342016-07-14 Tom Tromey <tom@tromey.com>
835
836 * corefile.c (reopen_exec_file): Only examine st.st_mtime if stat
837 succeeded.
838
dac790e1
TT
8392016-07-13 Tom Tromey <tom@tromey.com>
840
841 PR python/15620, PR python/18620:
842 * python/py-evts.c (gdbpy_initialize_py_events): Call
843 add_new_registry for new events.
844 * python/py-events.h (events_object) <breakpoint_created,
845 breakpoint_deleted, breakpoint_modified>: New fields.
846 * python/py-breakpoint.c (gdbpy_breakpoint_created): Emit the
847 breakpoint changed event.
848 (gdbpy_breakpoint_deleted): Emit the breakpoint deleted event.
849 (gdbpy_breakpoint_modified): New function.
850 (gdbpy_initialize_breakpoints): Attach to the breakpoint modified
851 observer.
852
93daf339
TT
8532016-07-13 Tom Tromey <tom@tromey.com>
854
855 PR python/17698:
856 * NEWS: Update.
857 * python/py-breakpoint.c (bppy_get_pending): New function.
858 (breakpoint_object_getset): Add entry for "pending".
859 * breakpoint.h (pending_breakpoint_p): Declare.
860 * breakpoint.c (pending_breakpoint_p): New function.
861
43684a7b
TT
8622016-07-13 Tom Tromey <tom@tromey.com>
863
864 * python/py-breakpoint.c (bppy_get_visibility)
865 (gdbpy_breakpoint_created): Use user_breakpoint_p.
866
6571a381
TT
8672016-07-13 Tom Tromey <tom@tromey.com>
868
869 PR cli/18053:
870 * jit.c (jit_reader_load_command): Use tilde_expand.
871 (_initialize_jit): Fix help for jit-reader-unload. Set completer
872 for new commands.
873
e0f3fd7c
TT
8742016-07-12 Tom Tromey <tom@tromey.com>
875
876 PR python/19293:
877 * python/lib/gdb/command/unwinders.py (do_enable_unwinder): Call
878 gdb.invalidate_cached_frames.
879 * python/lib/gdb/unwinder.py (register_unwinder): Call
880 gdb.invalidate_cached_frames.
881 * python/python.c (gdbpy_invalidate_cached_frames): New function.
882 (python_GdbMethods): Add entry for invalidate_cached_frames.
883
41c977aa
WT
8842016-07-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
885
886 * cp-namespace.c (cp_lookup_bare_symbol): Initialize
887 lang_this.symbol.
888
4f19a0e6
WT
8892016-07-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
890
891 * cp-namespace.c (cp_lookup_bare_symbol): Use language passed as
892 parameter to look for the symbol "this".
893
894
fb36c6bf
JB
8952016-07-06 John Baldwin <jhb@FreeBSD.org>
896
897 * h8300-tdep.c (h8300_print_register): Remove extraneous parentheses.
898
db297a65
JB
8992016-07-06 John Baldwin <jhb@FreeBSD.org>
900
901 * ada-lang.c (ada_unpack_from_contents): Use unsigned constants with
902 left shifts.
903
9ca10714
JB
9042016-07-06 John Baldwin <jhb@FreeBSD.org>
905
906 * sh64-tdep.c (sh64_analyze_prologue): Set "uses_fp" when setting
907 the MEDIA_FP_REGNUM register.
908
d66ff635
JB
9092016-07-06 John Baldwin <jhb@FreeBSD.org>
910
911 * score-tdep.c (score7_malloc_and_get_memblock): Remove check for
912 negative size.
913
ee950322
JB
9142016-07-06 John Baldwin <jhb@FreeBSD.org>
915
916 * fbsd-nat.c (fbsd_is_vfork_done_pending): Fix return type.
917
1040b979
YQ
9182016-07-06 Yao Qi <yao.qi@linaro.org>
919
920 * arm-tdep.c (arm_vfp_cprc_sub_candidate): Don't call
921 arm_vfp_cprc_sub_candidate for static field.
922
42d94011
MG
9232016-07-06 Manish Goregaokar <manish@mozilla.com>
924
925 * rust-lang.c (rust_subscript): Allow subscripting pointers
926
13cdc2af
JK
9272016-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
928
929 * configure: Regenerate.
930 * configure.ac (HAVE_LIBBABELTRACE): Fix pos variable dereference.
931
09c98b44
DB
9322016-07-01 Don Breazeal <donb@codesourcery.com>
933
934 * remote.c (remote_get_memory_xfer_limit): New function.
935 * target-delegates.c: Regenerate.
936 * target.c (memory_xfer_partial): Call
937 target_ops.to_get_memory_xfer_limit.
938 * target.h (struct target_ops) <to_get_memory_xfer_limit>: New
939 member.
940
2c5c2a33
JB
9412016-07-01 John Baldwin <jhb@FreeBSD.org>
942
943 * fbsd-nat.c (struct fbsd_fork_child_info): Rename to ...
944 (struct fbsd_fork_info): ... this.
945 (struct fbsd_fork_info) <child>: Rename to ...
946 (struct fbsd_fork_info) <ptid>: ... this.
947 (fbsd_pending_children): Update type.
948 (fbsd_remember_child): Update type and field name.
949 (fbsd_is_child_pending): Likewise.
950 (fbsd_pending_vfork_done): New variable.
951 (fbsd_is_vfork_done_pending): New function.
952 (fbsd_next_vfork_done): New function.
953 (fbsd_resume): Don't resume processes with a pending vfork done
954 event.
955 (fbsd_wait): Report pending vfork done events.
956 (fbsd_follow_fork): Delay and record a pending vfork done event
957 for a vfork parent when detaching the child.
958
8607ea63
JB
9592016-07-01 John Baldwin <jhb@FreeBSD.org>
960
961 * fbsd-nat.c (super_resume): Move earlier next to "super_wait".
962 (resume_one_thread_cb): Move below fork following helper code.
963 (resume_all_threads_cb): Likewise.
964 (fbsd_resume): Likewise.
965
bb2a62e6
JB
9662016-07-01 John Baldwin <jhb@FreeBSD.org>
967
968 * fbsd-nat.c (fbsd_follow_fork): Only detach child if
969 "detach_fork" is true.
970
5077bfff
JB
9712016-07-01 John Baldwin <jhb@FreeBSD.org>
972
973 * x86bsd-nat.c: Include 'gdbthread.h'.
974 (x86bsd_dr_set): Set debug registers on all threads belonging to
975 the current inferior.
976
a3405d12
JB
9772016-07-01 John Baldwin <jhb@FreeBSD.org>
978
979 * Makefile.in [HFILES_NO_SRCDIR]: Replace 'amd64bsd-nat.h' with
980 'x86bsd-nat.h'.
981 * amd64bsd-nat.c: Include 'x86bsd-nat.h' instead of
982 'amd64bsd-nat.h'.
983 (amd64bsd_xsave_len): Rename and move to x86bsd-nat.c.
984 (amd64bsd_fetch_inferior_registers): Replace 'amd64bsd_xsave_len'
985 with 'x86bsd_xsave_len'.
986 (amd64bsd_store_inferior_registers): Likewise.
987 (amd64bsd_target): Inherit from x86bsd_target.
988 (amd64bsd_dr_get): Rename and move to x86bsd-nat.c.
989 (amd64bsd_dr_set): Likewise.
990 (amd64bsd_dr_set_control): Likewise.
991 (amd64bsd_dr_set_addr): Likewise.
992 (amd64bsd_dr_get_addr): Likewise.
993 (amd64bsd_dr_get_status): Likewise.
994 (amd64bsd_dr_get_control): Likewise.
995 * amd64fbsd-nat.c: Include 'x86bsd-nat.h' instead of
996 'amd64bsd-nat.h'.
997 (super_mourn_inferior): Move to x86bsd-nat.c.
998 (amd64fbsd_mourn_inferior): Rename and move to x86bsd-nat.c.
999 (amd64fbsd_read_description): Replace 'amd64bsd_xsave_len' with
1000 'x86bsd_xsave_len'.
1001 (_initialize_amd64fbsd_nat): Remove x86 watchpoint setup and
1002 mourn_inferior' target op.
1003 * config/i386/fbsd.mh (NATDEPFILES): Add x86bsd-nat.o.
1004 * config/i386/fbsd64.mh: Likewise.
1005 * config/i386/nbsd64.mh: Likewise.
1006 * config/i386/nbsdelf.mh: Likewise.
1007 * config/i386/obsd.mh: Likewise.
1008 * config/i386/obsd64.mh: Likewise.
1009 * i386bsd-nat.c: Include 'x86bsd-nat.h'.
1010 (i386bsd_xsave_len): Rename and move to x86bsd-nat.c.
1011 (i386bsd_fetch_inferior_registers): Replace 'i386bsd_xsave_len'
1012 with 'x86bsd_xsave_len'.
1013 (i386bsd_store_inferior_registers): Likewise.
1014 (i386bsd_target): Inherit from x86bsd_target.
1015 (i386bsd_dr_get): Rename and move to x86bsd-nat.c.
1016 (i386bsd_dr_set): Likewise.
1017 (i386bsd_dr_set_control): Likewise.
1018 (i386bsd_dr_set_addr): Likewise.
1019 (i386bsd_dr_get_addr): Likewise.
1020 (i386bsd_dr_get_status): Likewise.
1021 (i386bsd_dr_get_control): Likewise.
1022 * i386bsd-nat.h (i386bsd_xsave_len): Remove.
1023 (i386bsd_dr_set_control): Remove.
1024 (i386bsd_dr_set_addr): Remove.
1025 (i386bsd_dr_get_addr): Remove.
1026 (i386bsd_dr_get_status): Remove.
1027 (i386bsd_dr_get_control): Remove.
1028 * i386fbsd-nat.c: Include 'x86bsd-nat.h'.
1029 (i386fbsd_read_description): Replace 'i386bsd_xsave_len' with
1030 'x86bsd_xsave_len'.
1031 (_initialize_i386fbsd_nat): Remove x86 watchpoint setup and
1032 mourn_inferior' target op.
1033 * x86bsd-nat.c: New file.
1034 * x86bsd-nat.h: New file.
1035
20aa2c60
PA
10362016-07-01 Pedro Alves <palves@redhat.com>
1037 Tom Tromey <tom@tromey.com>
1038
1039 * jit.c (jit_reader_load_command): Call reinit_frame_cache and
1040 jit_inferior_created_hook.
1041 (jit_reader_unload_command): Call reinit_frame_cache and
1042 jit_inferior_exit_hook.
1043 * jit.c (struct jit_unwind_private) <registers>: Delete field.
1044 <regcache>: New field.
1045 (jit_unwind_reg_set_impl): Set the register's value in the
1046 regcache. Free the passed-in gdb_reg_value.
1047 (jit_dealloc_cache): Adjust to free the regcache.
1048 (jit_frame_sniffer): Allocate a regcache instead of an array of
1049 gdb_reg_value pointers.
1050 (jit_frame_this_id): Adjust.
1051 (jit_frame_prev_register): Read raw registers off of the regcache
1052 instead of from the gdb_reg_value pointer array. Use
1053 gdbarch_pseudo_register_read_value to read pseudo registers.
1054 * regcache.c (regcache_raw_set_cached_value): New function,
1055 factored out from ...
1056 (regcache_raw_write): ... here.
1057 * regcache.h (regcache_raw_set_cached_value): Declare.
1058
ced2dffb
PA
10592016-07-01 Pedro Alves <palves@redhat.com>
1060 Antoine Tremblay <antoine.tremblay@ericsson.com>
1061
1062 * inf-ptrace.c (inf_ptrace_detach_success): New function, factored
1063 out from ...
1064 (inf_ptrace_detach): ... here.
1065 * inf-ptrace.h (inf_ptrace_detach_success): New declaration.
1066 * linux-nat.c (get_pending_status): Rename to ...
1067 (get_detach_signal): ... this, and return a host signal instead of
1068 filling in a wait status.
1069 (detach_one_lwp): New function, factored out from detach_callback
1070 and adjusted to handle detaching from a zombie thread.
1071 (detach_callback): Skip the leader thread.
1072 (linux_nat_detach): No longer defer to inf_ptrace_detach to detach
1073 the leader thread, nor build a signal string to pass down.
1074 Instead, use target_announce_detach, detach_one_lwp and
1075 inf_ptrace_detach_success.
1076
63000888
PA
10772016-07-01 Pedro Alves <palves@redhat.com>
1078
1079 * breakpoint.c (breakpoint_init_inferior): Discard watchpoint
1080 locations.
1081 * infcmd.c (detach_command): Call breakpoint_init_inferior.
1082
0f48b757
PA
10832016-07-01 Pedro Alves <palves@redhat.com>
1084
1085 * darwin-nat.c (darwin_detach): Use target_announce_detach.
1086 * inf-ptrace.c (inf_ptrace_detach): Likewise.
1087 * nto-procfs.c (procfs_detach): Likewise.
1088 * remote.c (remote_detach_1): Likewise.
1089 * target.c (target_announce_detach): New function.
1090 * target.h (target_announce_detach): New declaration.
1091
803b47e5
TT
10922016-06-29 Tom Tromey <tom@tromey.com>
1093
1094 PR python/20129:
1095 * python/lib/gdb/command/frame_filters.py (_do_enable_frame_filter)
1096 (SetFrameFilterPriority._set_filter_priority): Use "frame_filter",
1097 not "name".
1098
9d78f827
TT
10992016-06-29 Tom Tromey <tom@tromey.com>
1100
1101 PR gdb/17210:
1102 * target.c (free_memory_read_result_vector): Take a pointer to the
1103 VEC as an argument.
1104 (read_memory_robust): Install a cleanup for "result".
1105 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update.
1106
a405c228
MG
11072016-06-29 Manish Goregaokar <manish@mozilla.com>
1108
9bf74fb2
MG
1109 * rust-lang.c (rust_get_disr_info): Initialize saveptr to NULL.
1110
11112016-06-29 Manish Goregaokar <manish@mozilla.com>
1112
a405c228
MG
1113 * rust-lang.c (rust_get_disr_info): Use strtok_r instead of strsep.
1114
2ac09a5b
YQ
11152016-06-28 Yao Qi <yao.qi@linaro.org>
1116
1117 * aarch64-tdep.c (aarch64_displaced_step_b): Use int64_t for
1118 variable new_offset.
1119
921d8f54
MG
11202016-06-27 Manish Goregaokar <manish@mozilla.com>
1121
6763d566 1122 * rust-lang.c (rust_print_type, rust_decorations): Print unit
0b08e1f3
PA
1123 types as "()".
1124 (rust_print_type): Omit return type for functions returning unit.
921d8f54 1125
f4952523
PMR
11262016-06-25 Pierre-Marie de Rodat <derodat@adacore.com>
1127
1128 * python/py-breakpoint.c (bppy_init): Clear bppy_pending_object
1129 when there is an error during the breakpoint creation.
1130
9e8a8ea8
TT
11312016-06-25 Tom Tromey <tom@tromey.com>
1132
1133 * rust-lang.c (rust_get_disr_info, rust_print_type): Fix
1134 formatting.
1135
b5a4b3c5
MG
11362016-06-25 Manish Goregaokar <manish@mozilla.com>
1137
1138 PR gdb/20239
1139 * rust-lang.c (rust_get_disr_info): Correctly interpret
1140 NonZero-optimized enums of arbitrary depth.
1141 (rust_print_type): Correctly print NonZero-optimized
1142 enums.
1143
6b850546
DT
11442016-06-24 David Taylor <dtaylor@emc.com>
1145
1146 PR gdb/17520 Structure offset wrong when 1/4 GB or greater.
1147 * c-lang.h: Change all parameters, variables, and struct or union
1148 members used as struct or union fie3ld offsets from int to
1149 LONGEST.
1150 * c-valprint.c: Likewise.
1151 * cp-abi.c: Likewise.
1152 * cp-abi.h: Likewise.
1153 * cp-valprint.c: Likewise.
1154 * d-valprint.c: Likewise.
1155 * dwarf2loc.c: Likewise.
1156 * eval.c: Likewise.
1157 * extension-priv.h: Likewise.
1158 * extension.c: Likewise.
1159 * extension.h: Likewise.
1160 * findvar.c: Likewise.
1161 * gdbtypes.h: Likewise.
1162 * gnu-v2-abi.c: Likewise.
1163 * gnu-v3-abi.c: Likewise.
1164 * go-valprint.c: Likewise.
1165 * guile/guile-internal.h: Likewise.
1166 * guile/scm-pretty-print.c: Likewise.
1167 * jv-valprint.c Likewise.
1168 * opencl-lang.c: Likewise.
1169 * p-lang.h: Likewise.
1170 * python/py-prettyprint.c: Likewise.
1171 * python/python-internal.h: Likewise.
1172 * spu-tdep.c: Likewise.
1173 * typeprint.c: Likewise.
1174 * valarith.c: Likewise.
1175 * valops.c: Likewise.
1176 * valprint.c: Likewise.
1177 * valprint.h: Likewise.
1178 * value.c: Likewise.
1179 * value.h: Likewise.
1180 * p-valprint.c: Likewise.
1181 * c-typeprint.c (c_type_print_base): When printing offset, use
1182 plongest, not %d.
1183 * gdbtypes.c (recursive_dump_type): Ditto.
1184
2907f414
DT
11852016-06-24 David Taylor <david.taylor@emc.com>
1186
1187 * MAINTAINERS (Write After Approval): Add David Taylor.
1188
e6cdd38e
JB
11892016-06-24 John Baldwin <jhb@FreeBSD.org>
1190
1191 * configure.ac: Check for support for system call LWP fields on
1192 FreeBSD.
1193 * config.in, configure: Rebuild.
1194 * data-directory/Makefile.in (SYSCALLS_FILES): Add freebsd.xml.
1195 * fbsd-nat.c (fbsd_wait) [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]:
1196 Report system call events.
1197 [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]
1198 (fbsd_set_syscall_catchpoint): New function.
1199 (fbsd_nat_add_target) [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]:
1200 Set "to_set_syscall_catchpoint" to "fbsd_set_syscall_catchpoint".
1201 * fbsd-tdep.c: Include xml-syscall.h
1202 (fbsd_get_syscall_number): New function.
1203 (fbsd_init_abi): Set XML system call file name.
1204 Add "get_syscall_number" gdbarch method.
1205 * syscalls/freebsd.xml: New file.
1206
82372b2f
JB
12072016-06-24 John Baldwin <jhb@FreeBSD.org>
1208
1209 * fbsd-tdep.c: Include "auxv.h".
1210 (fbsd_print_auxv_entry): New function.
1211 (fbsd_init_abi): Install gdbarch "print_auxv_entry" method.
1212
2faa3447
JB
12132016-06-24 John Baldwin <jhb@FreeBSD.org>
1214
1215 * auxv.c (fprint_auxv_entry): New function.
1216 (default_print_auxv_entry): New function.
1217 (fprint_target_auxv): Use gdbarch_print_auxv_entry.
1218 * auxv.h (enum auxv_format): New enum.
1219 (fprint_auxv_entry): Declare.
1220 (default_print_auxv_entry): Declare.
1221 * gdbarch.sh (print_auxv_entry): New.
1222 * gdbarch.c, gdbarch.h: Re-generated.
1223
7697fc9e
JB
12242016-06-24 John Baldwin <jhb@FreeBSD.org>
1225
1226 * fbsd-nat.c [KERN_PROC_AUXV] New variable super_xfer_partial.
1227 (fbsd_xfer_partial): New function.
1228 (fbsd_nat_add_target) [KERN_PROC_AUXV] Set "to_xfer_partial" to
1229 "fbsd_xfer_partial".
1230
8b302db8
TT
12312016-06-23 Tom Tromey <tom@tromey.com>
1232
1233 * symtab.c (symbol_find_demangled_name): Loop over languages and
1234 use language_sniff_from_mangled_name.
1235 * rust-lang.c (rust_sniff_from_mangled_name): New function.
1236 (rust_language_defn): Update.
1237 * p-lang.c (pascal_language_defn): Update.
1238 * opencl-lang.c (opencl_language_defn): Update.
1239 * objc-lang.c (objc_sniff_from_mangled_name): New function.
1240 (objc_language_defn): Update.
1241 * m2-lang.c (m2_language_defn): Update.
1242 * language.h (struct language_defn) <la_sniff_from_mangled_name>: New
1243 field.
1244 (language_sniff_from_mangled_name): Declare.
1245 * language.c (language_sniff_from_mangled_name): New function.
1246 (unknown_language_defn, auto_language_defn, local_language_defn):
1247 Update.
1248 * jv-lang.c (java_sniff_from_mangled_name): New function.
1249 (java_language_defn): Use it.
1250 * go-lang.c (go_sniff_from_mangled_name): New function.
1251 (go_language_defn): Use it.
1252 * f-lang.c (f_language_defn): Update.
1253 * defs.h (enum language): Reorder.
1254 * d-lang.c (d_sniff_from_mangled_name): New function.
1255 (d_language_defn): Use it.
1256 * cp-support.h (gdb_sniff_from_mangled_name): Declare.
1257 * cp-support.c (gdb_sniff_from_mangled_name): New function.
1258 * c-lang.c (c_language_defn, cplus_language_defn)
1259 (asm_language_defn, minimal_language_defn): Update.
1260 * ada-lang.c (ada_sniff_from_mangled_name): New function.
1261 (ada_language_defn): Use it.
1262
56618e20
TT
12632016-06-23 Tom Tromey <tom@tromey.com>
1264
1265 * ada-lang.c (ada_extensions): New array.
1266 (ada_language_defn): Use it.
1267 * c-lang.c (c_extensions): New array.
1268 (c_language_defn): Use it.
1269 (cplus_extensions): New array.
1270 (cplus_language_defn): Use it.
1271 (asm_extensions): New array.
1272 (asm_language_defn): Use it.
1273 (minimal_language_defn): Update.
1274 * d-lang.c (d_extensions): New array.
1275 (d_language_defn): Use it.
1276 * f-lang.c (f_extensions): New array.
1277 (f_language_defn): Use it.
1278 * go-lang.c (go_language_defn): Update.
1279 * jv-lang.c (java_extensions): New array.
1280 (java_language_defn): Use it.
1281 * language.c (add_language): Call add_filename_language.
1282 (unknown_language_defn, auto_language_defn, local_language_defn):
1283 Update.
1284 * language.h (struct language_defn) <la_filename_extensions>: New
1285 field.
1286 * m2-lang.c (m2_language_defn): Update.
1287 * objc-lang.c (objc_extensions): New array.
1288 (objc_language_defn): Use it.
1289 * opencl-lang.c (opencl_language_defn): Update.
1290 * p-lang.c (p_extensions): New array.
1291 (pascal_language_defn): Use it.
1292 * rust-lang.c (rust_extensions): New array.
1293 (rust_language_defn): Use it.
1294 * symfile.c (add_filename_language): No longer static. Make "ext"
1295 const.
1296 (init_filename_language_table): Remove.
1297 (_initialize_symfile): Update.
1298 * symfile.h (add_filename_language): Declare.
1299
3fcf0b0d
TT
13002016-06-23 Tom Tromey <tom@tromey.com>
1301
1302 * symfile.c (filename_language_table): Now a VEC.
1303 (fl_table_size, fl_table_next): Remove.
1304 (add_filename_language): Use VEC_safe_push.
1305 (set_ext_lang_command, info_ext_lang_command)
1306 (deduce_language_from_filename): Use VEC_iterate.
1307 (init_filename_language_table): Use VEC_empty.
1308
0c72ed4c
TT
13092016-06-23 Tom Tromey <tom@tromey.com>
1310
1311 * python/python.c (gdbpy_parameter): Now static.
1312 * python/python-internal.h (gdbpy_parameter): Don't declare.
1313
17621150
TT
13142016-06-23 Tom Tromey <tom@tromey.com>
1315
1316 PR gdb/16483:
1317 * python/lib/gdb/command/frame_filters.py
1318 (InfoFrameFilter.list_frame_filters): Rename to print_list. Print
1319 nothing if no filters found. Return value indicating whether
1320 filters were printed.
1321 (InfoFrameFilter.print_list): Remove.
1322 (InfoFrameFilter.invoke): Print message if no frame filters
1323 found.
1324
04d59df6
WT
13252016-06-21 Walfred Tedeschi <walfred.tedeschi@intel.com>
1326
1327 * f-valprint.c (f_val_print): Add field names for printing
1328 derived types fields.
1329
34a60ddb
AA
13302016-06-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
1331
1332 * s390-linux-tdep.c (s390_iterate_over_regset_sections): Fix typo
1333 in name of last-break regset.
1334
49940788
PA
13352016-06-21 Pedro Alves <palves@redhat.com>
1336
1337 * fork-child.c (fork_inferior): Switch the child to the main UI
1338 right after vfork. Save/restore the current UI in the parent.
1339 Flush outputs of the main UI instead of the current UI.
1340
468afe6c
PA
13412016-06-21 Pedro Alves <palves@redhat.com>
1342
1343 * breakpoint.c (watchpoint_check): Send watchpoint-deleted output
1344 to all UIs.
1345
86f78169
PA
13462016-06-21 Pedro Alves <palves@redhat.com>
1347
1348 * NEWS: Mention support for running interpreters on separate
1349 UIs and the new new-ui command.
1350
60eb5395
PA
13512016-06-21 Pedro Alves <palves@redhat.com>
1352
1353 * interps.c (set_top_level_interpreter): New function, factored
1354 out from captured_main.
1355 (interpreter_completer): Make extern.
1356 * interps.h (set_top_level_interpreter, interpreter_completer):
1357 New declarations.
1358 (captured_main): Use set_top_level_interpreter.
1359 * top.c [!O_NOCTTY] (O_NOCTTY): Define as 0.
1360 (open_terminal_stream, new_ui_command): New functions.
1361 (init_main): Install the "new-ui" command.
1362
268a799a
PA
13632016-06-21 Pedro Alves <palves@redhat.com>
1364
1365 * cli/cli-script.c (read_next_line): Adjust to per-UI stdin.
1366 (read_command_lines): Use input_interactive_p instead of
1367 input_from_terminal_p.
1368 * defs.h (struct ui): Forward declare.
1369 (input_from_terminal_p): Rename to ...
1370 (input_interactive_p): ... this.
1371 * event-top.c (stdin_event_handler): Pass 0 as from_tty argument
1372 to quit_command.
1373 (command_handler): Adjust to per-UI stdin.
1374 (handle_line_of_input): Adjust to per-UI stdin and use
1375 input_interactive_p instead of ISATTY and input_from_terminal_p.
1376 (gdb_readline_no_editing_callback): Adjust to per-UI stdin.
1377 (command_line_handler): Always pass true as "from_tty" parameter
1378 of handle_line_of_input and execute_command.
1379 (async_sigterm_handler): Pass 0 as from_tty argument to
1380 quit_command.
1381 * inflow.c (interactive_mode, show_interactive_mode): Moved to ...
1382 (gdb_has_a_terminal): Don't check interactive_mode here.
1383 (_initialize_inflow): Don't install "set interactive-mode" here.
1384 * main.c (captured_command_loop): Adjust to per-UI stdin.
1385 * mi/mi-interp.c (mi_execute_command_wrapper): Adjust to per-UI
1386 stdin.
1387 * top.c (new_ui): Save the stdin stream and whether it's a tty.
1388 (dont_repeat): Adjust to per-UI stdin.
1389 (command_line_input): Adjust to per-UI stdin and to use
1390 input_interactive_p.
1391 (quit_force): Write history if any UI supports interactive input.
1392 (interactive_mode, show_interactive_mode): Move here, from
1393 inflow.c.
1394 (input_from_terminal_p): Rename to ...
1395 (input_interactive_p): ... this, and check the "interactive_mode"
1396 global instead of calling gdb_has_a_terminal.
1397 (_initialize_top): Install "set interactive-mode" here.
1398 * top.h (struct ui) <stdin_stream, input_interactive_p>: New
1399 fields.
1400 * utils.c (quit): Pass 0 as from_tty argument to quit_force.
1401 (defaulted_query): Adjust to per-UI stdin and to use
1402 input_interactive_p.
1403
07169ff7
PA
14042016-06-21 Pedro Alves <palves@redhat.com>
1405
1406 * event-top.c (stdin_event_handler): Don't quit gdb if it was a
1407 secondary UI's input stream that closed. Instead, just delete the
1408 UI.
1409
98d9f24e
PA
14102016-06-21 Pedro Alves <palves@redhat.com>
1411
1412 * event-top.c (main_ui_): Delete.
1413 (main_ui, current_ui, ui_list): No longer initialize here.
1414 * main.c (captured_main): UI initialization code factored out to
1415 new new_ui function.
1416 (gdb_main): Wrap captured_main with TRY/CATCH instead of
1417 catch_errors.
1418 * top.c (highest_ui_num): New global.
1419 (new_ui): New function.
1420 * top.h (struct ui) <num>: New field.
1421 (new_ui): New declaration.
1422
eaae60fd
PA
14232016-06-21 Pedro Alves <palves@redhat.com>
1424
1425 * cli/cli-interp.c (cli_on_normal_stop): Bail out early if there's
1426 nothing to print. Use should_print_stop_to_console.
1427 * tui/tui-interp.c (tui_on_normal_stop): Likewise.
1428
8980e177
PA
14292016-06-21 Pedro Alves <palves@redhat.com>
1430
1431 * breakpoint.c (new_until_break_fsm): Add 'cmd_interp' parameter.
1432 (until_break_fsm_should_stop, until_break_fsm_clean_up): Add
1433 thread parameter.
1434 (until_break_command): Pass command interpreter to thread fsm
1435 ctor.
1436 * cli/cli-interp.c (should_print_stop_to_console): Adjust.
1437 * gdbthread.h (struct thread_control_state) <command_interp>:
1438 Delete field.
1439 * infcall.c (new_call_thread_fsm): Add 'cmd_interp' parameter.
1440 Pass it down.
1441 (call_thread_fsm_should_stop): Add thread parameter.
1442 (call_function_by_hand_dummy): Pass command interpreter to thread
1443 fsm ctor. Pass thread pointer to fsm clean up method.
1444 * infcmd.c: Include interps.h.
1445 (struct step_command_fsm) <thread>: Delete field.
1446 (new_step_command_fsm): Add 'cmd_interp' parameter. Pass it down.
1447 (step_command_fsm_prepare): Remove references to fsm's thread
1448 field.
1449 (step_1): Pass command interpreter to thread
1450 fsm ctor. Pass thread pointer to fsm clean up method.
1451 (step_command_fsm_should_stop, step_command_fsm_clean_up): Add
1452 thread parameter and use it.
1453 (new_until_next_fsm): Add 'cmd_interp' parameter. Pass it down.
1454 (until_next_fsm_should_stop, until_next_fsm_clean_up): Add thread
1455 parameter and use it.
1456 (until_next_command): Pass command interpreter to thread fsm ctor.
1457 (struct finish_command_fsm) <thread>: Delete field.
1458 (finish_command_fsm_ops): Add NULL slot for should_notify_stop.
1459 (new_finish_command_fsm): Add 'cmd_interp' parameter and pass it
1460 down. Remove thread parameter and adjust.
1461 (finish_command_fsm_should_stop, finish_command_fsm_clean_up): Add
1462 thread parameter and use it.
1463 (finish_command): Pass command interpreter to thread fsm ctor.
1464 Don't pass thread.
1465 * infrun.c (follow_fork): Move thread fsm to child fork instead of
1466 command interpreter, only.
1467 (clear_proceed_status_thread): Remove reference to command_interp.
1468 (proceed): Don't record the thread's command interpreter.
1469 (clean_up_just_stopped_threads_fsms): Pass thread to fsm clean_up
1470 method.
1471 (fetch_inferior_event): Pass thread to fsm should_stop method.
1472 * thread-fsm.c (thread_fsm_ctor): Add 'cmd_interp' parameter.
1473 Store it.
1474 (thread_fsm_clean_up, thread_fsm_should_stop): Add thread
1475 parameter and pass it down.
1476 * thread-fsm.h (struct thread_fsm) <command_interp>: New field.
1477 (struct thread_fsm_ops) <clean_up, should_stop>: Add thread
1478 parameter.
1479 (thread_fsm_ctor): Add 'cmd_interp' parameter.
1480 (thread_fsm_clean_up, thread_fsm_should_stop): Add thread
1481 parameter.
1482 * thread.c (thread_cancel_execution_command): Pass thread to
1483 thread fsm clean_up method.
1484
26cde2cc
PA
14852016-06-21 Pedro Alves <palves@redhat.com>
1486
1487 * cli/cli-interp.c: Include gdbthread.h and thread-fsm.h.
1488 (should_print_stop_to_console): New function, factored out from
1489 mi_on_normal_stop_1.
1490 * cli/cli-interp.h (should_print_stop_to_console): Declare.
1491 * mi/mi-interp.c (mi_on_normal_stop_1): Use
1492 should_print_stop_to_console. Pass it the current UI's console
1493 interpreter.
1494 * mi/mi-main.c (captured_mi_execute_command): Use the
1495 INTERP_CONSOLE symbol rather than explicit "console".
1496
a8836c93
PA
14972016-06-21 Pedro Alves <palves@redhat.com>
1498
1499 * infcmd.c (prepare_execution_command): Use
1500 all_uis_on_sync_execution_starting.
1501 * infrun.c (all_uis_on_sync_execution_starting): New function.
1502 * infrun.h (all_uis_on_sync_execution_starting): Declare.
1503
3b12939d
PA
15042016-06-21 Pedro Alves <palves@redhat.com>
1505
1506 * annotate.c: Include top.h.
1507 (async_background_execution_p): Delete.
1508 (print_value_flags): Check the UI's prompt state rather then
1509 async_background_execution_p.
1510 * event-loop.c (start_event_loop): Set the prompt state to
1511 PROMPT_NEEDED.
1512 * event-top.c (display_gdb_prompt, async_enable_stdin)
1513 (async_disable_stdin): Check the current UI's prompt state instead
1514 of the sync_execution global.
1515 (command_line_handler): Set the prompt state to PROMPT_NEEDED
1516 before running a command, and display the prompt if still needed
1517 afterwards.
1518 * infcall.c (struct call_thread_fsm) <waiting_ui>: New field.
1519 (new_call_thread_fsm): New parameter 'waiting_ui'. Store it.
1520 (call_thread_fsm_should_stop): Set the prompt state to
1521 PROMPT_NEEDED.
1522 (run_inferior_call): Adjust to temporarily set the prompt state to
1523 PROMPT_BLOCKED instead of using the sync_execution global.
1524 (call_function_by_hand_dummy): Pass the current UI to
1525 new_call_thread_fsm.
1526 * infcmd.c: Include top.h.
1527 (continue_1): Check the current UI's prompt state instead of the
1528 sync_execution global.
1529 (continue_command): Validate global execution state before calling
1530 prepare_execution_command.
1531 (step_1): Call all_uis_check_sync_execution_done.
1532 (attach_post_wait): Don't call async_enable_stdin here. Remove
1533 reference to sync_execution.
1534 * infrun.c (sync_execution): Delete global.
1535 (follow_fork_inferior)
1536 (reinstall_readline_callback_handler_cleanup): Check the current
1537 UI's prompt state instead of the sync_execution global.
1538 (check_curr_ui_sync_execution_done)
1539 (all_uis_check_sync_execution_done): New functions.
1540 (fetch_inferior_event): Call all_uis_check_sync_execution_done
1541 instead of trying to determine whether the global sync execution
1542 changed.
1543 (handle_no_resumed): Check the prompt state of all UIs.
1544 (normal_stop): Emit the no unwait-for even to all PROMPT_BLOCKED
1545 UIs. Emit the "Switching to" notification to all UIs. Enable
1546 stdin in all UIs.
1547 * infrun.h (sync_execution): Delete.
1548 (all_uis_check_sync_execution_done): Declare.
1549 * main.c (captured_command_loop): Don't call
1550 interp_pre_command_loop if the prompt is blocked.
1551 (catch_command_errors, catch_command_errors_const): Adjust.
1552 (captured_main): Set the initial prompt state to PROMPT_NEEDED.
1553 * mi/mi-interp.c (display_mi_prompt): Set the prompt state to
1554 PROMPTED.
1555 (mi_interpreter_resume): Don't clear sync_execution. Remove hack
1556 comment.
1557 (mi_execute_command_input_handler): Set the prompt state to
1558 PROMPT_NEEDED before executing the command, and only display the
1559 prompt if the prompt state is PROMPT_NEEDED afterwards.
1560 (mi_on_resume_1): Adjust to check the prompt state.
1561 * target.c (target_terminal_inferior): Adjust to check the prompt
1562 state.
1563 * top.c (wait_sync_command_done, maybe_wait_sync_command_done)
1564 (execute_command): Check the current UI's prompt state instead of
1565 sync_execution.
1566 * top.h (enum prompt_state): New.
1567 (struct ui) <prompt_state>: New field.
1568 (ALL_UIS): New macro.
1569
dbf30ca3
PA
15702016-06-21 Pedro Alves <palves@redhat.com>
1571
1572 * top.c (gdb_secondary_prompt_depth): Delete.
1573 (gdb_in_secondary_prompt_p): Add ui parameter. Use it.
1574 (gdb_readline_wrapper_cleanup, gdb_readline_wrapper): Adjust to
1575 per-UI gdb_secondary_prompt_depth.
1576 * top.h (struct ui) <secondary_prompt_depth>: New field.
1577
b2d86570
PA
15782016-06-21 Pedro Alves <palves@redhat.com>
1579
1580 * cli/cli-interp.c (cli_interpreter_pre_command_loop): New
1581 function.
1582 (cli_interp_procs): Install it instead of cli_command_loop.
1583 * cli/cli-interp.h (cli_interpreter_pre_command_loop): Declare.
1584 * event-top.c (cli_command_loop): Delete.
1585 * interps.c (interp_new): Remove reference to command_loop_proc.
1586 (current_interp_command_loop): Delete.
1587 (interp_pre_command_loop): New function.
1588 (interp_command_loop_ftype): Delete.
1589 * interps.h (interp_pre_command_loop_ftype): New typedef.
1590 (struct interp_procs) <command_loop_proc>: Delele field.
1591 <pre_command_loop_proc>: New field.
1592 (current_interp_command_loop): Delete declaration.
1593 (interp_pre_command_loop): New declaration.
1594 * main.c (captured_command_loop): Call interp_pre_command_loop
1595 instead of current_interp_command_loop and start an event loop.
1596 * mi/mi-interp.c (mi_command_loop): Delete.
1597 (mi_interpreter_pre_command_loop): New.
1598 (mi_interp_procs): Update.
1599 * tui/tui-interp.c (tui_interp_procs): Install
1600 cli_interpreter_pre_command_loop instead of cli_command_loop.
1601
9204d692
PA
16022016-06-21 Pedro Alves <palves@redhat.com>
1603
1604 * interps.c (current_interpreter): New function.
1605 * interps.h (current_interpreter): New declaration.
1606 * mi/mi-cmds.h (raw_stdout): Delete declaration.
1607 * mi/mi-common.h (struct mi_interp) <raw_stdout,
1608 saved_raw_stdout>: New field.
1609 * mi/mi-interp.c (display_mi_prompt): New parameter 'mi'. Adjust
1610 to per-UI raw_stdout.
1611 (mi_interpreter_init): Adjust to per-UI raw_stdout.
1612 (mi_on_sync_execution_done, mi_execute_command_input_handler)
1613 (mi_command_loop): Pass MI instance to display_mi_prompt.
1614 (mi_on_normal_stop_1, mi_output_running_pid, mi_on_resume_1)
1615 (mi_on_resume): Adjust to per-UI raw_stdout.
1616 (saved_raw_stdout): Delete.
1617 (mi_set_logging): Adjust to per-UI raw_stdout and
1618 saved_raw_stdout.
1619 * mi/mi-main.c (raw_stdout): Delete.
1620 (mi_cmd_gdb_exit, captured_mi_execute_command)
1621 (mi_print_exception, mi_load_progress): Adjust to per-UI
1622 raw_stdout.
1623 (print_diff_now, mi_print_timing_maybe): New ui_file parameter.
1624 Pass it along.
1625 (print_diff): New ui_file parameter. Send output there instead of
1626 raw_stdout.
1627 * mi/mi-main.h (struct ui_file): Forward declare.
1628 (mi_print_timing_maybe): Add ui_file parameter.
1629
05beb275
PA
16302016-06-21 Pedro Alves <palves@redhat.com>
1631
1632 * mi/mi-interp.c (display_mi_prompt): New function.
1633
215d3118
PA
16342016-06-21 Pedro Alves <palves@redhat.com>
1635
1636 * target.c (target_terminal_inferior): Bail out after
1637 unregistering input_fd if not on the main UI.
1638 (target_terminal_ours): Bail out after registering input_fd if not
1639 on the main UI.
1640 (target_terminal_ours_for_output): Bail out if not on the main UI.
1641
c61db772
PA
16422016-06-21 Pedro Alves <palves@redhat.com>
1643
1644 * event-top.c (restore_ui_cleanup): Make extern.
1645 * infrun.c (fetch_inferior_event): Always switch to the main UI.
1646 * top.h (restore_ui_cleanup): Declare.
1647
3c216924
PA
16482016-06-21 Pedro Alves <palves@redhat.com>
1649
1650 PR mi/20034
1651 * cli/cli-interp.c: Include cli-interp.h and event-top.h.
1652 (cli_interpreter_resume): Pass 1 to gdb_setup_readline. Set the
1653 UI's input_handler here.
1654 (cli_interpreter_supports_command_editing): New function.
1655 (cli_interp_procs): Install it.
1656 * cli/cli-interp.h: New file.
1657 * event-top.c (async_command_editing_p): Rename to ...
1658 (set_editing_cmd_var): ... this.
1659 (change_line_handler): Add parameter 'editing', and use it. Bail
1660 early if the interpreter doesn't support editing. Don't touch
1661 readline state if editing is off.
1662 (gdb_rl_callback_handler_remove, gdb_rl_callback_handler_install)
1663 (gdb_rl_callback_handler_reinstall): Assert the current UI is the
1664 main UI.
1665 (display_gdb_prompt): Don't call gdb_rl_callback_handler_remove if
1666 not using readline. Check whether the current UI is using command
1667 editing instead of checking the async_command_editing_p global.
1668 (set_async_editing_command): Delete.
1669 (gdb_setup_readline): Add 'editing' parameter. Only allow editing
1670 on the main UI. Don't touch readline state if editing is off.
1671 (gdb_disable_readline): Don't touch readline state if editing is
1672 off.
1673 * event-top.h (gdb_setup_readline): Add 'int' parameter.
1674 (set_async_editing_command): Delete declaration.
1675 (change_line_handler, command_line_handler): Declare.
1676 (async_command_editing_p): Rename to ...
1677 (set_editing_cmd_var): ... this.
1678 * infrun.c (reinstall_readline_callback_handler_cleanup): Check
1679 whether the current UI has editing enabled rather than checking
1680 the async_command_editing_p global.
1681 * interps.c (interp_supports_command_editing): New function.
1682 * interps.h (interp_supports_command_editing_ftype): New typedef.
1683 (struct interp_procs) <supports_command_editing_proc>: New field.
1684 (interp_supports_command_editing): Declare.
1685 * mi/mi-interp.c (mi_interpreter_resume): Pass 0 to
1686 gdb_setup_readline. Don't clear the async_command_editing_p
1687 global. Update comments.
1688 * top.c (gdb_readline_wrapper_line, gdb_readline_wrapper): Check
1689 whether the current UI has editing enabled rather than checking
1690 the async_command_editing_p global. Don't touch readline state if
1691 editing is off.
1692 (undo_terminal_modifications_before_exit): Switch to the main UI.
1693 Unconditionally call gdb_disable_readline.
1694 (set_editing): New function.
1695 (show_async_command_editing_p): Rename to ...
1696 (show_editing): ... this. Show the state of the current UI.
1697 (_initialize_top): Adjust.
1698 * top.h (struct ui) <command_editing>: New field.
1699 * tui/tui-interp.c: Include cli/cli-interp.h.
1700 (tui_resume): Pass 1 to gdb_setup_readline. Set the UI's
1701 input_handler.
1702 (tui_interp_procs): Install
1703 cli_interpreter_supports_command_editing.
1704 * tui/tui-io.c (tui_getc): Check whether the current UI has
1705 editing enabled rather than checking the async_command_editing_p
1706 global.
1707
b6dcde57
PA
17082016-06-21 Pedro Alves <palves@redhat.com>
1709
1710 * top.c: Call gen_ret_current_ui_field_ptr for current_uiout.
1711 * top.h (struct ui) <m_current_uiout>: New field.
1712 * ui-out.c (current_uiout): Delete.
1713 * ui-out.h (current_uiout): Delete.
1714 (current_ui_current_uiout_ptr): New declaration.
1715 (current_uiout): Reimplement as wrapper around
1716 current_ui_current_uiout_ptr.
1717
23ff98d2
PA
17182016-06-21 Pedro Alves <palves@redhat.com>
1719
1720 * ui-out.c (default_ui_out_impl): Delete.
1721 (def_uiout): Delete.
1722 (current_uiout): Set to NULL.
1723 (default_table_begin, default_table_body, default_table_end)
1724 (default_table_header, default_begin, default_end)
1725 (default_field_int, default_field_skip, default_field_string)
1726 (default_field_fmt, default_spaces, default_text, default_message)
1727 (default_wrap_hint, default_flush, default_data_destroy): Delete.
1728
694ec099
PA
17292016-06-21 Pedro Alves <palves@redhat.com>
1730
1731 * event-top.c (gdb_setup_readline): Pass the UI's outstream and
1732 errstream to stdout_fileopen and stderr_fileopen.
1733 * exceptions.c: Include top.h.
1734 (print_flush): Open the current UI's outstream file descriptor,
1735 instead of hardcoding file descriptor 1.
1736 * main.c (captured_main): Save the main UI's out and error
1737 streams. Adjust stderr_fileopen call.
1738 * top.h (struct ui) <outstream, errstream>: New fields.
1739 * ui-file.c (stderr_fileopen): Add stream parameter. Use it
1740 instead of stderr.
1741 * ui-file.h (stderr_fileopen): Add stream parameter and update
1742 comment.
1743
41fd2b0f
PA
17442016-06-21 Pedro Alves <palves@redhat.com>
1745
1746 * event-top.c (input_fd): Delete.
1747 (stdin_event_handler): Switch to the UI whose input descriptor got
1748 the event. Adjust to per-UI input_fd.
1749 (gdb_setup_readline): Don't set the input_fd global. Adjust to
1750 per-UI input_fd.
1751 (gdb_disable_readline): Adjust to per-UI input_fd.
1752 * event-top.h (input_fd): Delete declaration.
1753 * linux-nat.c (linux_nat_terminal_inferior): Don't remove input_fd
1754 from the event-loop here.
1755 (linux_nat_terminal_ours): Don't register input_fd in the
1756 event-loop here.
1757 * main.c (captured_main): Adjust to per-UI input_fd.
1758 * remote.c (remote_terminal_inferior): Don't remove input_fd from
1759 the event-loop here.
1760 (remote_terminal_ours): Don't register input_fd in the event-loop
1761 here.
1762 * target.c: Include top.h and event-top.h.
1763 (target_terminal_inferior): Remove input_fd from the event-loop
1764 here.
1765 (target_terminal_ours): Register input_fd in the event-loop.
1766 * top.h (struct ui) <input_fd>: New field.
1767
f38d3ad1
PA
17682016-06-21 Pedro Alves <palves@redhat.com>
1769
1770 * cli/cli-script.c (execute_user_command, read_next_line)
1771 (read_next_line): Adjust to per-UI instream.
1772 * event-top.c (stdin_event_handler, command_handler)
1773 (handle_line_of_input, command_line_handler)
1774 (gdb_readline_no_editing_callback, async_sigterm_handler)
1775 (gdb_setup_readline): Likewise.
1776 * inflow.c: Include top.h.
1777 (gdb_has_a_terminal, child_terminal_init_with_pgrp)
1778 (gdb_save_tty_state, child_terminal_inferior)
1779 (child_terminal_ours_1, copy_terminal_info): Use the main UI.
1780 (initialize_stdin_serial): Adjust to per-UI instream.
1781 * main.c (captured_command_loop, captured_main): Adjust to per-UI
1782 instream.
1783 * mi/mi-interp.c (mi_execute_command_wrapper): Likewise.
1784 * python/python.c (python_interactive_command): Likewise.
1785 * terminal.h (struct ui): Forward declare.
1786 (initialize_stdin_serial): Add struct ui parameter.
1787 * top.c (instream): Delete.
1788 (do_restore_instream_cleanup, read_command_file, dont_repeat)
1789 (gdb_readline_no_editing, command_line_input)
1790 (input_from_terminal_p, gdb_init): Adjust to per-UI instream.
1791 * top.h (struct ui) <instream>: New field.
1792 (instream): Delete declaration.
1793 (quit): Adjust to per-UI instream.
1794
17952016-06-21 Pedro Alves <palves@redhat.com>
1796
1797 * event-loop.c: Include top.h.
1798 (invoke_async_signal_handlers): Switch to the main UI.
1799 * event-top.c (main_ui_): Update comment.
1800 (main_ui): New global.
1801 * top.h (main_ui): Declare.
1802
73ab01a0
PA
18032016-06-21 Pedro Alves <palves@redhat.com>
1804
1805 * cli/cli-interp.c (cli_interp): Delete.
1806 (as_cli_interp): New function.
1807 (cli_on_normal_stop, cli_on_signal_received)
1808 (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
1809 (cli_on_no_history): Send output to all CLI UIs.
1810 (cli_on_sync_execution_done, cli_on_command_error): Skip output if
1811 the top level interpreter is not a CLI.
1812 (cli_interpreter_init): Don't set cli_interp or install observers
1813 here.
1814 (_initialize_cli_interp): Install observers here.
1815 * event-top.c (main_ui_, ui_list): New globals.
1816 (current_ui): Point to main_ui_.
1817 (restore_ui_cleanup, switch_thru_all_uis_init)
1818 (switch_thru_all_uis_cond, switch_thru_all_uis_next): New
1819 functions.
1820 * mi/mi-interp.c (as_mi_interp): New function.
1821 (mi_interpreter_init): Don't install observers here.
1822 (mi_on_sync_execution_done): Skip output if the top level
1823 interpreter is not a MI.
1824 (mi_new_thread, mi_thread_exit, mi_record_changed)
1825 (mi_inferior_added, mi_inferior_appeared, mi_inferior_exit)
1826 (mi_inferior_removed): Send output to all MI UIs.
1827 (find_mi_interpreter, mi_interp_data): Delete.
1828 (find_mi_interp): New function.
1829 (mi_on_signal_received, mi_on_end_stepping_range)
1830 (mi_on_signal_exited, mi_on_exited, mi_on_no_history): Send output
1831 to all MI UIs.
1832 (mi_on_normal_stop): Rename to ...
1833 (mi_on_normal_stop_1): ... this.
1834 (mi_on_normal_stop): Reimplement, sending output to all MI UIs.
1835 (mi_traceframe_changed, mi_tsv_created, mi_tsv_deleted)
1836 (mi_tsv_modified, mi_breakpoint_created, mi_breakpoint_deleted)
1837 (mi_breakpoint_modified, mi_output_running_pid): Send output to
1838 all MI UIs.
1839 (mi_on_resume): Rename to ...
1840 (mi_on_resume_1): ... this. Don't handle infcalls here.
1841 (mi_on_resume): Reimplement, sending output to all MI UIs.
1842 (mi_solib_loaded, mi_solib_unloaded, mi_command_param_changed)
1843 (mi_memory_changed): Send output to all MI UIs.
1844 (report_initial_inferior): Install observers here.
1845 * top.h (struct ui) <next>: New field.
1846 (ui_list): Declare.
1847 (struct switch_thru_all_uis): New.
1848 (switch_thru_all_uis_init, switch_thru_all_uis_cond)
1849 (switch_thru_all_uis_next): Declare.
1850 (SWITCH_THRU_ALL_UIS): New macro.
1851 * tui/tui-interp.c (tui_interp): Delete global.
1852 (as_tui_interp): New function.
1853 (tui_on_normal_stop, tui_on_signal_received)
1854 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
1855 (tui_on_no_history): Send output to all TUI UIs.
1856 (tui_on_sync_execution_done, tui_on_command_error): Skip output if
1857 the top level interpreter is not a TUI.
1858 (tui_init): Don't set tui_interp or install observers here.
1859 (_initialize_tui_interp): Install observers here.
1860
8322445e
PA
18612016-06-21 Pedro Alves <palves@redhat.com>
1862
1863 * cli/cli-interp.c (cli_uiout): Delete, moved into ...
1864 (struct cli_interp): ... this new structure.
1865 (cli_on_normal_stop, cli_on_signal_received)
1866 (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
1867 (cli_on_no_history): Use interp_ui_out.
1868 (cli_interpreter_init): If top level, set the cli_interp global.
1869 (cli_interpreter_init): Return the interp's data instead of NULL.
1870 (cli_interpreter_resume, cli_interpreter_exec, cli_ui_out): Adjust
1871 to cli_uiout being in the interpreter's data.
1872 (cli_interp_procs): New, factored out from _initialize_cli_interp.
1873 (cli_interp_factory): New function.
1874 (_initialize_cli_interp): Call interp_factory_register.
1875 * interps.c (get_interp_info): New, factored out from ...
1876 (get_current_interp_info): ... this.
1877 (interp_new): Add parameter 'data'. Store it.
1878 (struct interp_factory): New function.
1879 (interp_factory_p): New typedef. Define a VEC_P.
1880 (interpreter_factories): New global.
1881 (interp_factory_register): New function.
1882 (interp_add): Add 'ui' parameter. Use get_interp_info and
1883 interp_lookup_existing.
1884 (interp_lookup): Rename to ...
1885 (interp_lookup_existing): ... this. Add 'ui' parameter. Don't
1886 check for NULL or empty name here.
1887 (interp_lookup): Add 'ui' parameter and reimplement.
1888 (interp_set_temp, interpreter_exec_cmd): Adjust.
1889 (interpreter_completer): Complete on registered interpreter
1890 factories instead of interpreters.
1891 * interps.h (interp_factory_func): New typedef.
1892 (interp_factory_register): Declare.
1893 (interp_new, interp_add): Adjust.
1894 (interp_lookup): Declare.
1895 * main.c (captured_main): Adjust.
1896 * mi/mi-interp.c (mi_cmd_interpreter_exec): Adjust.
1897 (mi_interp_procs): New, factored out from
1898 _initialize_mi_interp.
1899 (mi_interp_factory): New function.
1900 * python/python.c (execute_gdb_command): Adjust.
1901 * tui/tui-interp.c (tui_init): If top level, set the tui_interp
1902 global.
1903 (tui_interp_procs): New.
1904 (tui_interp_factory): New function.
1905 (_initialize_tui_interp): Call interp_factory_register.
1906
cb814510
PA
19072016-06-21 Pedro Alves <palves@redhat.com>
1908
1909 * breakpoint.c (bpstat_do_actions_1): Access the current UI's
1910 async field instead of the interpreter_async global.
1911 * cli/cli-script.c (execute_user_command, while_command)
1912 (if_command, script_from_file): Likewise.
1913 * compile/compile.c: Include top.h instead of interps.h.
1914 (compile_file_command, compile_code_command)
1915 (compile_print_command): Access the current UI's async field
1916 instead of the interpreter_async global.
1917 * guile/guile.c: Include top.h instead of interps.h.
1918 (guile_repl_command, guile_command, gdbscm_execute_gdb_command):
1919 Access the current UI's async field instead of the
1920 interpreter_async global.
1921 * guile/scm-ports.c: Include top.h instead of interps.h.
1922 (ioscm_with_output_to_port_worker): Access the current UI's async
1923 field instead of the interpreter_async global.
1924 * inf-loop.c (inferior_event_handler): Likewise.
1925 * infcall.c (run_inferior_call): Likewise.
1926 * infrun.c (reinstall_readline_callback_handler_cleanup)
1927 (fetch_inferior_event): Likewise.
1928 * interps.c (interpreter_async): Delete.
1929 (struct ui_interp_info): New.
1930 (get_current_interp_info): New function.
1931 (interp_list, current_interpreter, top_level_interpreter_ptr):
1932 Delete.
1933 (interp_add, interp_set, interp_lookup, interp_ui_out)
1934 (current_interp_set_logging, interp_set_temp)
1935 (current_interp_named_p): Adjust to per-UI interpreters.
1936 (command_interpreter): Delete.
1937 (command_interp, current_interp_command_loop, interp_quiet_p)
1938 (interp_exec, interpreter_exec_cmd, interpreter_completer)
1939 (top_level_interpreter, top_level_interpreter_data): Adjust to
1940 per-UI interpreters.
1941 * interps.h (interpreter_async): Delete.
1942 * main.c (captured_command_loop): Access the current UI's async
1943 field instead of the interpreter_async global.
1944 * python/python.c (python_interactive_command, python_command)
1945 (execute_gdb_command): Likewise.
1946 * top.c (maybe_wait_sync_command_done, execute_command_to_string):
1947 Access the current UI's async field instead of the
1948 interpreter_async global.
1949 * top.h (struct tl_interp_info): Forward declare.
1950 (struct ui) <interp_info, async>: New fields.
1951
79aa2fe8
PA
19522016-06-21 Pedro Alves <palves@redhat.com>
1953
1954 * main.c (gdb_stdout, gdb_stderr, gdb_stdlog, gdb_stdin): Delete
1955 globals.
1956 (gen_ret_current_ui_field_ptr): New macro. Use it to generate
1957 wrappers for gdb_stdout, gdb_stderr, gdb_stdlog and gdb_stdin.
1958 * top.h (struct ui) <m_gdb_stdout, m_gdb_stdin, m_gdb_stderr,
1959 m_gdb_stdlog>: New fields.
1960 (current_ui_gdb_stdout_ptr, current_ui_gdb_stdin_ptr)
1961 (current_ui_gdb_stderr_ptr, current_ui_gdb_stdlog_ptr): Declare.
1962 (gdb_stdout, gdb_stdin, gdb_stderr, gdb_stdlog): Reimplement as
1963 macros.
1964
a74e1786
PA
19652016-06-21 Pedro Alves <palves@redhat.com>
1966
1967 * event-top.c: Update readline-related comments.
1968 (input_handler, call_readline): Delete globals.
1969 (gdb_rl_callback_handler): Call the current UI's input_handler
1970 method.
1971 (change_line_handler): Adjust to set current UI's properties
1972 instead of globals.
1973 (current_ui_, current_ui): New globals.
1974 (get_command_line_buffer): Rewrite to refer to the current UI.
1975 (stdin_event_handler): Adjust to call the call_readline method of
1976 the current UI.
1977 (gdb_readline_no_editing_callback): Adjust to call the current UI's
1978 input_handler method.
1979 (gdb_setup_readline): Adjust to set current UI's properties
1980 instead of globals.
1981 * event-top.h (call_readline, input_handler): Delete declarations.
1982 * mi/mi-interp.c (mi_interpreter_resume): Adjust to set current
1983 UI's properties instead of globals.
1984 * top.c (gdb_readline_wrapper_cleanup): Adjust to set current UI's
1985 properties instead of globals.
1986 (gdb_readline_wrapper): Adjust to call and set current UI's
1987 methods instead of globals.
1988 * top.h: Include buffer.h and event-loop.h.
1989 (struct ui): New struct.
1990 (current_ui): New declaration.
1991
45db7c09
PA
19922016-06-21 Pedro Alves <palves@redhat.com>
1993
1994 * ada-lang.c (ada_exception_name_addr_1): Add comment.
1995 (print_it_exception): Select the current frame.
1996
a28d8e50
YTL
19972016-06-17 Yan-Ting Lin <currygt52@gmail.com>
1998
1999 * Makefile.in (ALL_TARGET_OBS): Add nds32-tdep.o.
2000 (HFILES_NO_SRCDIR): Add nds32-tdep.h.
2001 (ALLDEPFILES): Add nds32-tdep.c.
2002 * NEWS: Mention new NDS32 port.
2003 * configure.tgt: Add NDS32.
2004 * nds32-tdep.c: New file.
2005 * nds32-tdep.h: New file.
2006 * features/Makefile (XMLTOC): Add nds32.xml.
2007 * features/nds32-core.xml: New file.
2008 * features/nds32-fpu.xml: New file.
2009 * features/nds32-system.xml: New file.
2010 * features/nds32.c: New file (generated).
2011 * features/nds32.xml: New file.
2012
4bf5402d
JB
20132016-06-14 John Baldwin <jhb@FreeBSD.org>
2014
2015 * v850-tdep.c (v850_use_struct_convention): Trim type length checks.
2016
683cd65e
JB
20172016-06-14 John Baldwin <jhb@FreeBSD.org>
2018
2019 * tui/tui-stack.c (tui_show_frame_info): Fix type mismatch.
2020
bec734b2
JB
20212016-06-14 John Baldwin <jhb@FreeBSD.org>
2022
2023 * rs6000-tdep.c (ppc_process_record_op31): Initialize ra.
2024
e46dd0f4
NC
20252016-06-13 Nick Clifton <nickc@redhat.com>
2026
2027 * gdbtypes.c (replace_type): Fix assertion.
2028
695bfa52
TT
20292016-06-10 Tom Tromey <tom@tromey.com>
2030
2031 * gdbtypes.c (arch_type, arch_integer_type, arch_character_type)
2032 (arch_boolean_type, arch_float_type, arch_complex_type)
2033 (arch_flags_type, append_flags_type_field)
2034 (append_flags_type_flag, arch_composite_type)
2035 (append_composite_type_field_raw)
2036 (append_composite_type_field_aligned)
2037 (append_composite_type_field): Make "name" parameter const.
2038 * gdbtypes.h (arch_type, arch_integer_type, arch_character_type)
2039 (arch_boolean_type, arch_float_type, arch_complex_type)
2040 (append_composite_type_field, append_composite_type_field_aligned)
2041 (append_composite_type_field_raw, arch_flags_type)
2042 (append_flags_type_field, append_flags_type_flag): Constify.
2043
347dc102
TT
20442016-06-10 Tom Tromey <tom@tromey.com>
2045
2046 PR rust/20110:
2047 * rust-exp.y (lex_number): Don't truncate large numbers to i32.
2048
edef7b8c
TT
20492016-06-10 Tom Tromey <tom@tromey.com>
2050
2051 * Makefile.in (COMMON_OBS): Remove rust-exp.o.
2052 (YYFILES): Add rust-exp.c.
2053 (YYOBJ): Add rust-exp.o.
2054 (local-maintainer-clean): Remove rust-exp.c.
2055
bb556f1f
TK
20562016-06-09 Toshihito Kikuchi <k.toshihito@yahoo.de>
2057
2058 * NEWS: Mention that GDB now supports a negative repeat count in
2059 the 'x' command.
2060 * printcmd.c (decode_format): Allow '-' in the parameter
2061 "string_ptr" to accept a negative repeat count.
2062 (find_instruction_backward): New function.
2063 (read_memory_backward): New function.
2064 (integer_is_zero): New function.
2065 (find_string_backward): New function.
2066 (do_examine): Use new functions to examine memory backward.
2067 (_initialize_printcmd): Mention that 'x' command supports a negative
2068 repeat count.
2069
c040f3fb
TK
20702016-06-09 Toshihito Kikuchi <k.toshihito@yahoo.de>
2071
2072 * MAINTAINERS (Write After Approval): Add Toshihito Kikuchi.
2073
4dee3531
TT
20742016-06-09 Tom Tromey <tom@tromey.com>
2075
2076 PR python/19819:
2077 * python/py-xmethods.c (invoke_method_name)
2078 (py_get_result_type_method_name, py_invoke_method_name): Remove.
2079 (gdbpy_initialize_xmethods): Don't initialize
2080 py_invoke_method_name, py_get_result_type_method_name.
2081
1aec0b6a
SM
20822016-06-07 Simon Marchi <simon.marchi@ericsson.com>
2083
2084 * mi/mi-interp.c (mi_record_changed): Add missing braces.
2085
2091da29
BH
20862016-06-07 Bernhard Heckel <bernhard.heckel@intel.com>
2087
2088 * findvar.c (follow_static_link): Check for valid pointer.
2089
38b022b4
SM
20902016-06-06 Simon Marchi <simon.marchi@ericsson.com>
2091
2092 * NEWS: Mention the new fields in =record-started.
2093 * common/btrace-common.h (btrace_format_short_string): New function
2094 declaration.
2095 * common/btrace-common.c (btrace_format_short_string): New
2096 function.
2097 * mi/mi-interp.c (mi_record_changed): Output method and format
2098 fields in the =record-started record.
2099 * record-btrace.c (record_btrace_open): Adapt record_changed
2100 notification.
2101 * record-full.c (record_full_open): Likewise.
2102 * record.c (cmd_record_stop): Likewise.
2103
0ae534d2
JT
21042016-06-02 Jon Turney <jon.turney@dronecode.org.uk>
2105
2106 * windows-nat.c (handle_output_debug_string): Return type of
2107 gdb_signal_from_host() is gdb_signal, not an int.
2108 (windows_get_exec_module_filename): Add pointer casts for C++.
2109
1b40ec05
TT
21102016-06-02 Tom Tromey <tom@tromey.com>
2111
2112 PR python/18984:
2113 * python/python.c (gdbpy_solib_name): Use GDB_PY_LLU_ARG.
2114
bb7c96de
PA
21152016-06-01 Pedro Alves <palves@redhat.com>
2116
2117 * remote-fileio.c (remote_fio_ctrl_c_flag, remote_fio_sa)
2118 (remote_fio_osa)
2119 (remote_fio_ofunc, remote_fileio_sig_init, remote_fileio_sig_set)
2120 (remote_fileio_sig_exit, remote_fileio_ctrl_c_signal_handler):
2121 Delete.
2122 (remote_fileio_o_quit_handler): New global.
2123 (remote_fileio_quit_handler): New function.
2124 (remote_fileio_reply): Check the quit flag instead of the custom
2125 'remote_fio_ctrl_c_flag' flag. Restore the quit handler instead
2126 of changing the SIGINT handler.
2127 (do_remote_fileio_request): Override the quit handler instead of
2128 changing the SIGINT handler.
2129
51403f74
NC
21302016-06-01 Nick Clifton <nickc@redhat.com>
2131
2132 * common/common-utils.c (xmalloc_failed): New function. Provided
2133 so that the version in libiberty is not linked in.
2134
e3b5daf9
MM
21352016-06-01 Markus Metzger <markus.t.metzger@intel.com>
2136
2137 * infcmd.c (skip_finish_frames): New.
2138 (finish_command): Call skip_finish_frames.
2139
03d73f1f
YQ
21402016-06-01 Yao Qi <yao.qi@linaro.org>
2141
2142 PR remote/19998
2143 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Call
2144 quit_serial_event_set.
2145
c799dec7
JB
21462016-06-01 Joel Brobecker <brobecker@adacore.com>
2147
2148 GDB 7.11.1 released.
2149
3326303b
MG
21502016-05-31 Martin Galvan <martin.galvan@tallertechnologies.com>
2151
2152 PR c++/19893
2153 * dwarf2loc.c (coerce_pieced_ref, indirect_synthetic_pointer,
2154 fetch_const_value_from_synthetic_pointer): New functions.
2155 (indirect_pieced_value): Move lower half to indirect_synthetic_pointer.
2156 (pieced_value_funcs): Implement coerce_ref.
2157 * valops.c (value_addr): Call coerce_ref for synthetic references.
2158 * valprint.c (valprint_check_validity): Return true for synthetic
2159 references. Also, don't show "<synthetic pointer>" if they reference
2160 addressable values.
2161 (generic_val_print_ref): Handle synthetic references. Also move some
2162 code to print_ref_address.
2163 (print_ref_address, get_value_addr_contents): New functions.
2164
e385593e
JK
21652016-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2166
2167 PR c++/15231
2168 * dwarf2read.c (enum pc_bounds_kind): Add PC_BOUNDS_INVALID.
2169 (process_psymtab_comp_unit_reader, read_func_scope): Adjust callers.
2170 (read_lexical_block_scope): Import DIEs from bare DW_TAG_lexical_block.
2171 (read_call_site_scope): Adjust callers.
2172 (dwarf2_get_pc_bounds): Implement pc_bounds_invalid.
2173 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
2174
3a2b436a
JK
21752016-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2176
2177 Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum
2178 * dwarf2read.c (enum pc_bounds_kind) New.
2179 (dwarf2_get_pc_bounds): Use it in the declaration.
2180 (process_psymtab_comp_unit_reader): Adjust caller. Rename has_pc_info
2181 to cu_bounds_kind.
2182 (read_func_scope, read_lexical_block_scope, read_call_site_scope):
2183 Adjust callers.
2184 (dwarf2_get_pc_bounds): Use enum pc_bounds_kind in the definition.
2185 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
2186
aab3c527
JK
21872016-05-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2188
2189 * NEWS (QCatchSyscalls): Remove the parameter. Include ...
2190 (QCatchSyscalls:1 in qSupported) ... this separate entry which got
2191 deleted.
2192
c64e0f61
JK
21932016-05-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2194
2195 * NEWS (N stop reply): Remove empty line.
2196
1a72702b
AM
21972016-05-28 Alan Modra <amodra@gmail.com>
2198
2199 * compile/compile-object-load.c (link_callbacks_multiple_definition,
2200 link_callbacks_warning, link_callbacks_undefined_symbol,
2201 link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
2202 link_callbacks_reloc_dangerous,
2203 link_callbacks_unattached_reloc): Return void.
2204
51415b9f
AB
22052016-05-27 Andrew Burgess <andrew.burgess@embecosm.com>
2206
2207 * opencl-lang.c (evaluate_subexp_opencl): If
2208 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute to
2209 the returned value in the STRUCTOP_STRUCT case.
2210
ac775bf4
AB
22112016-05-27 Andrew Burgess <andrew.burgess@embecosm.com>
2212
2213 * eval.c (evaluate_subexp_standard): If EVAL_AVOID_SIDE_EFFECTS
2214 mode, forward the VALUE_LVAL attribute to the returned value in
2215 the STRUCTOP_PTR case.
2216
7bd787e8
TT
22172016-05-25 Tom Tromey <tom@tromey.com>
2218
2219 * python/py-value.c (value_object_as_number): Use correct spelling
2220 of HAVE_LIBPYTHON2_4.
2221
2bbad2ea
BH
22222016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
2223
2224 * f-typeprint.c (f_type_print_base): Replace 0 by show.
2225
e188eb36
BH
22262016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
2227
2228 * f-typeprint.c (f_type_print_base): Decrease show by one.
2229
9b2db1fd
BH
22302016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
2231
2232 * f-typeprint.c (f_type_print_base): Don't print fields when show < 0.
2233
72b17055
BH
22342016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
2235
2236 * f-typeprint.c (f_type_print_base): Take print level into account.
2237
ddae9462
TT
22382016-05-24 Tom Tromey <tom@tromey.com>
2239
2240 PR python/17386:
2241 * python/py-value.c (value_object_as_number): Add
2242 nb_inplace_floor_divide, nb_inplace_true_divide, nb_index.
2243
e2b7f516
TT
22442016-05-24 Tom Tromey <tom@tromey.com>
2245
2246 * python/py-value.c (value_object_as_number): Add
2247 nb_inplace_divide for Python 2.
2248
1957f6b8
TT
22492016-05-23 Tom Tromey <tom@tromey.com>
2250
2251 PR python/17981:
2252 * python/py-breakpoint.c (gdbpy_breakpoints): Return a new tuple
2253 when there are no breakpoints.
2254
026a9174
PA
22552016-05-24 Pedro Alves <palves@redhat.com>
2256
2257 PR gdb/19828
2258 * linux-nat.c (attach_proc_task_lwp_callback): Mark the lwp
2259 resumed, and add the thread to GDB's thread list.
2260
72b049d3
PA
22612016-05-24 Pedro Alves <palves@redhat.com>
2262
2263 PR gdb/19828
2264 * linux-nat.c (get_pending_status): If the thread reported the
2265 event to the core and it's pending, use the pending status signal
2266 number.
2267
774113b0
PA
22682016-05-24 Pedro Alves <palves@redhat.com>
2269
2270 PR gdb/19828
2271 * linux-nat.c (lwp_lwpid_htab): New htab.
2272 (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
2273 (lwp_lwpid_htab_add_lwp): New functions.
2274 (lwp_list): Tweak comment.
2275 (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
2276 functions.
2277 (purge_lwp_list): Rewrite, using htab_traverse_noresize.
2278 (add_initial_lwp): Add lwp to htab too. Use lwp_list_add.
2279 (delete_lwp): Use lwp_list_remove. Remove htab too.
2280 (find_lwp_pid): Search in htab.
2281 (_initialize_linux_nat): Call lwp_lwpid_htab_create.
2282 * linux-nat.h (struct lwp_info) <prev>: New field.
2283
22842016-05-24 Pedro Alves <palves@redhat.com>
2285
2286 PR gdb/19828
2287 * linux-nat.c (lwp_lwpid_htab): New htab.
2288 (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
2289 (lwp_lwpid_htab_add_lwp): New functions.
2290 (lwp_list): Tweak comment.
2291 (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
2292 functions.
2293 (purge_lwp_list): Rewrite, using htab_traverse_noresize.
2294 (add_initial_lwp): Add lwp to htab too. Use lwp_list_add.
2295 (delete_lwp): Use lwp_list_remove. Remove htab too.
2296 (find_lwp_pid): Search in htab.
2297 (_initialize_linux_nat): Call lwp_lwpid_htab_create.
2298 * linux-nat.h (struct lwp_info) <prev>: New field.
2299
1ad3de98
PA
23002016-05-24 Pedro Alves <palves@redhat.com>
2301
2302 PR gdb/19828
2303 * linux-nat.c (linux_resume_one_lwp_throw): Clear the LWP's core
2304 field.
2305 (linux_nat_update_thread_list): Don't fetch the core if already
2306 known.
2307
95e94c3f
PA
23082016-05-24 Pedro Alves <palves@redhat.com>
2309
2310 PR gdb/19828
2311 * linux-tdep.c (find_mapping_size): Delete.
2312 (linux_vsyscall_range_raw): Rewrite reading from
2313 /proc/PID/task/PID/maps directly instead of using
2314 gdbarch_find_memory_regions.
2315
aa01bd36
PA
23162016-05-24 Pedro Alves <palves@redhat.com>
2317
2318 PR gdb/19828
2319 * linux-nat.c (report_thread_events): New global.
2320 (linux_handle_extended_wait): Report
2321 TARGET_WAITKIND_THREAD_CREATED if thread event reporting is
2322 enabled.
2323 (wait_lwp, linux_nat_filter_event): Report all thread exits if
2324 thread event reporting is enabled. Remove comment.
2325 (filter_exit_event): New function.
2326 (linux_nat_wait_1): Use it.
2327 (linux_nat_thread_events): New function.
2328 (linux_nat_add_target): Install it as target_thread_events method.
2329
00a3cb9c
YTL
23302016-05-24 Yan-Ting Lin <currygt52@gmail.com>
2331
2332 * MAINTAINERS (Write After Approval): Add "Yan-Ting Lin".
2333
7eb89530
YQ
23342016-05-23 Yao Qi <yao.qi@arm.com>
2335
2336 * arch-utils.c (default_code_of_frame_writable): New function.
2337 * arch-utils.h (default_code_of_frame_writable): Declare.
2338 * arm-tdep.c (arm_code_of_frame_writable): New function.
2339 (arm_gdbarch_init): Install gdbarch method
2340 code_of_frame_writable if the target is M-profile.
2341 * frame.c (skip_unwritable_frames): New function.
2342 * frame.h (skip_unwritable_frames): Declare.
2343 * gdbarch.sh (code_of_frame_writable): New.
2344 * gdbarch.c, gdbarch.h: Re-generated.
2345 * infcmd.c (finish_command): Call skip_unwritable_frames.
2346
0f6ed0e0
TT
23472016-05-23 Tom Tromey <tom@tromey.com>
2348
2349 PR python/19438, PR python/18393:
2350 * python/py-objfile.c (objfpy_initialize): Initialize self->dict.
2351 * python/py-progspace.c (pspy_initialize): Initialize self->dict.
2352
d0571b99
GB
23532016-05-23 Gary Benson <gbenson@redhat.com>
2354
2355 * nat/gdb_thread_db.h (td_thr_validate_ftype): Remove typedef.
2356 * linux-thread-db.c (struct thread_db_info) <td_thr_validate_p>:
2357 Remove field.
2358 (try_thread_db_load_1): Remove td_thr_validate initialization.
2359
37773e78
JB
23602016-05-23 Jon Boden <jon@ubuntubsd.org> (tiny change)
2361
2362 * configure.ac: Search for libutil-freebsd as alternative to libutil.
2363 * configure: Re-generated.
2364
bfb0d950
AS
23652016-05-19 Andreas Schwab <schwab@suse.de>
2366
2367 * ia64-libunwind-tdep.c (libunwind_descr): Add cast from void *.
2368 (libunwind_frame_set_descr): Likewise.
2369 (libunwind_frame_cache): Likewise.
2370 (libunwind_frame_dealloc_cache): Likewise.
2371 (libunwind_frame_sniffer): Likewise.
2372 (libunwind_search_unwind_table): Likewise.
2373 (libunwind_sigtramp_frame_sniffer): Likewise.
2374 (libunwind_get_reg_special): Likewise.
2375 (libunwind_load): Likewise.
2376 * ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
2377 (ia64_linux_store_register): Likewise.
2378 (ia64_linux_xfer_partial): Likewise.
2379 * ia64-tdep.c (ia64_access_reg): Likewise.
2380 (ia64_access_fpreg): Likewise.
2381 (ia64_access_rse_reg): Likewise.
2382 (ia64_access_rse_fpreg): Likewise.
2383
45f4ed92
TT
23842016-05-18 Tom Tromey <tom@tromey.com>
2385
2386 * rust-lang.c (rust_subscript): Initialize "high".
2387
28addb40
SM
23882016-05-17 Simon Marchi <simon.marchi@ericsson.com>
2389
2390 PR gdb/20045
2391 * mi/mi-main.c (mi_on_resume): Call target_can_async_p instead
2392 of target_is_async_p.
2393
61c6156d
SM
23942016-05-17 Simon Marchi <simon.marchi@ericsson.com>
2395
2396 PR gdb/18077
2397 * mi/mi-main.c (run_one_inferior): Use run target to determine
2398 whether to run async or not.
2399 (mi_cmd_exec_run): Likewise.
2400
01739a3b
TT
24012016-05-17 Tom Tromey <tom@tromey.com>
2402
2403 * std-operator.def (OP_RANGE): Rename from OP_F90_RANGE.
2404 * rust-lang.c: Don't include f-lang.h.
2405 (rust_range, rust_compute_range, rust_subscript)
2406 (rust_evaluate_subexp): Update.
2407 * rust-exp.y: Don't include f-lang.h.
2408 (ast_range, convert_ast_to_expression): Update.
2409 * parse.c (operator_length_standard): Update.
2410 * f-lang.h (enum f90_range_type): Move to expression.h.
2411 * f-exp.y: Use OP_RANGE.
2412 * expression.h (enum range_type): New enum; renamed from
2413 f90_range_type.
2414 * expprint.c: Don't include f-lang.h.
2415 (print_subexp_standard, dump_subexp_body_standard): Use OP_RANGE.
2416 * eval.c (value_f90_subarray, evaluate_subexp_standard): Update.
2417
0bdfa368
TT
24182016-05-17 Tom Tromey <tom@tromey.com>
2419
2420 * NEWS: Add Rust item.
2421
c44af4eb
TT
24222016-05-17 Tom Tromey <tom@tromey.com>
2423 Manish Goregaokar <manishsmail@gmail.com>
2424
2425 * symtab.c (symbol_find_demangled_name): Handle Rust.
2426 * symfile.c (init_filename_language_table): Treat ".rs" as Rust.
2427 * std-operator.def (STRUCTOP_ANONYMOUS, OP_RUST_ARRAY): New
2428 constants.
2429 * rust-lang.h: New file.
2430 * rust-lang.c: New file.
2431 * rust-exp.y: New file.
2432 * dwarf2read.c (read_file_scope): Add Rust producer sniffing.
2433 (dwarf2_compute_name, read_func_scope, read_structure_type)
2434 (read_base_type, read_subrange_type, set_cu_language)
2435 (new_symbol_full, determine_prefix): Handle Rust.
2436 * defs.h (enum language) <language_rust>: New constant.
2437 * Makefile.in (SFILES): Add rust-exp.y, rust-lang.c.
2438 (COMMON_OBS): Add rust-exp.o, rust-lang.o.
2439
00272ec4
TT
24402016-05-17 Tom Tromey <tom@tromey.com>
2441
2442 * valprint.h (struct generic_val_print_array) <array_start,
2443 array_end>: New fields.
2444 * valprint.c (generic_val_print_array): Add "decorations"
2445 parameter. Use "array_start", "array_end".
2446 (generic_val_print) <TYPE_CODE_ARRAY>: Update.
2447 * p-valprint.c (p_decorations): Update.
2448 * m2-valprint.c (m2_decorations): Update.
2449 * f-valprint.c (f_decorations): Update.
2450 * c-valprint.c (c_decorations): Update.
2451
dcd1f979
TT
24522016-05-17 Tom Tromey <tom@tromey.com>
2453
2454 * NEWS: Add "maint selftest" entry.
2455 * selftest.h: New file.
2456 * selftest.c: New file.
2457 * maint.c: Include selftest.h.
2458 (maintenance_selftest): New function.
2459 (_initialize_maint_cmds): Add "maint selftest" command.
2460 * configure.ac (GDB_SELF_TEST): Maybe define.
2461 * config.in, configure: Rebuild.
2462 * Makefile.in (SFILES): Add selftest.c.
2463 (COMMON_OBS): Add selftest.o.
2464
e4b8a1c8
TT
24652016-05-17 Tom Tromey <tom@tromey.com>
2466
2467 * expprint.c: Include f-lang.h.
2468 (print_subexp_standard, dump_subexp_body_standard): Handle
2469 OP_F90_RANGE.
2470
9ab0bb2a
TT
24712016-05-17 Tom Tromey <tom@tromey.com>
2472
2473 * Makefile.in (init.c): Search .y files for initialization
2474 functions.
2475
8ddd5a6c
DE
24762016-05-12 Doug Evans <dje@google.com>
2477
2478 PR symtab/19999
2479 * dwarf2loc.c (dwarf2_find_location_expression): For DWO files still
2480 add base_offset.
2481
df140a0b
TS
24822016-05-10 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
2483
2484 * iq2000-tdep.c (iq2000_scan_prologue): Remove if that shouldn't guard
2485 anything.
2486 * linespec.c (add_sal_to_sals): Restore call to symtab_to_fullname.
2487
39d911fc
TP
24882016-05-10 Thomas Preud'homme <thomas.preudhomme@arm.com>
2489
2490 * arm-tdep.c (arm_elf_make_msymbol_special): Use
2491 ARM_GET_SYM_BRANCH_TYPE to get branch type of a symbol.
2492
870f88f7
TS
24932016-05-07 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
2494
2495 * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Remove unused
2496 variables.
2497 * aarch64-tdep.c (aarch64_skip_prologue): Likewise.
2498 (aarch64_scan_prologue): Likewise.
2499 (aarch64_prologue_prev_register): Likewise.
2500 (aarch64_dwarf2_prev_register): Likewise.
2501 (pass_in_v): Likewise.
2502 (aarch64_push_dummy_call): Likewise.
2503 (aarch64_breakpoint_from_pc): Likewise.
2504 (aarch64_return_in_memory): Likewise.
2505 (aarch64_return_value): Likewise.
2506 (aarch64_displaced_step_b_cond): Likewise.
2507 (aarch64_displaced_step_cb): Likewise.
2508 (aarch64_displaced_step_tb): Likewise.
2509 (aarch64_gdbarch_init): Likewise.
2510 (aarch64_process_record): Likewise.
2511 * alpha-mdebug-tdep.c (alpha_mdebug_init_abi): Likewise.
2512 * alpha-tdep.c (_initialize_alpha_tdep): Likewise.
2513 * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
2514 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Likewise.
2515 * amd64-tdep.c (fixup_riprel): Likewise.
2516 * amd64-windows-tdep.c (amd64_windows_frame_decode_epilogue): Likewise.
2517 (amd64_windows_frame_decode_insns): Likewise.
2518 (amd64_windows_frame_cache): Likewise.
2519 (amd64_windows_frame_prev_register): Likewise.
2520 (amd64_windows_frame_this_id): Likewise.
2521 (amd64_windows_init_abi): Likewise.
2522 * arm-linux-tdep.c (arm_linux_get_syscall_number): Likewise.
2523 (arm_linux_get_next_pcs_syscall_next_pc): Likewise.
2524 * arm-symbian-tdep.c (arm_symbian_init_abi): Likewise.
2525 * arm-tdep.c (arm_make_epilogue_frame_cache): Likewise.
2526 (arm_epilogue_frame_prev_register): Likewise.
2527 (arm_record_vdata_transfer_insn): Likewise.
2528 (arm_record_exreg_ld_st_insn): Likewise.
2529 * auto-load.c (execute_script_contents): Likewise.
2530 (print_scripts): Likewise.
2531 * avr-tdep.c (avr_frame_prev_register): Likewise.
2532 (avr_push_dummy_call): Likewise.
2533 * bfin-linux-tdep.c (bfin_linux_sigframe_init): Likewise.
2534 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
2535 * blockframe.c (find_pc_partial_function_gnu_ifunc): Likewise.
2536 * break-catch-throw.c (fetch_probe_arguments): Likewise.
2537 * breakpoint.c (breakpoint_xfer_memory): Likewise.
2538 (breakpoint_init_inferior): Likewise.
2539 (breakpoint_inserted_here_p): Likewise.
2540 (software_breakpoint_inserted_here_p): Likewise.
2541 (hardware_breakpoint_inserted_here_p): Likewise.
2542 (bpstat_what): Likewise.
2543 (break_range_command): Likewise.
2544 (save_breakpoints): Likewise.
2545 * coffread.c (coff_symfile_read): Likewise.
2546 * cris-tdep.c (cris_push_dummy_call): Likewise.
2547 (cris_scan_prologue): Likewise.
2548 (cris_register_size): Likewise.
2549 (_initialize_cris_tdep): Likewise.
2550 * d-exp.y: Likewise.
2551 * dbxread.c (dbx_read_symtab): Likewise.
2552 (process_one_symbol): Likewise.
2553 (coffstab_build_psymtabs): Likewise.
2554 (elfstab_build_psymtabs): Likewise.
2555 * dicos-tdep.c (dicos_init_abi): Likewise.
2556 * disasm.c (do_mixed_source_and_assembly): Likewise.
2557 (gdb_disassembly): Likewise.
2558 * dtrace-probe.c (dtrace_process_dof): Likewise.
2559 * dwarf2read.c (error_check_comp_unit_head): Likewise.
2560 (build_type_psymtabs_1): Likewise.
2561 (skip_one_die): Likewise.
2562 (process_imported_unit_die): Likewise.
2563 (dwarf2_physname): Likewise.
2564 (read_file_scope): Likewise.
2565 (setup_type_unit_groups): Likewise.
2566 (create_dwo_cu_reader): Likewise.
2567 (create_dwo_cu): Likewise.
2568 (create_dwo_unit_in_dwp_v1): Likewise.
2569 (create_dwo_unit_in_dwp_v2): Likewise.
2570 (lookup_dwo_unit_in_dwp): Likewise.
2571 (free_dwo_file): Likewise.
2572 (check_producer): Likewise.
2573 (dwarf2_add_typedef): Likewise.
2574 (dwarf2_add_member_fn): Likewise.
2575 (read_unsigned_leb128): Likewise.
2576 (read_signed_leb128): Likewise.
2577 (dwarf2_const_value): Likewise.
2578 (follow_die_sig_1): Likewise.
2579 (dwarf_decode_macro_bytes): Likewise.
2580 * extension.c (restore_active_ext_lang): Likewise.
2581 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
2582 * ft32-tdep.c (ft32_analyze_prologue): Likewise.
2583 * gdbtypes.c (lookup_typename): Likewise.
2584 (resolve_dynamic_range): Likewise.
2585 (check_typedef): Likewise.
2586 * h8300-tdep.c (h8300_is_argument_spill): Likewise.
2587 (h8300_gdbarch_init): Likewise.
2588 * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
2589 (hppa_frame_this_id): Likewise.
2590 (_initialize_hppa_tdep): Likewise.
2591 * hppanbsd-tdep.c (hppanbsd_sigtramp_cache_init): Likewise.
2592 * hppaobsd-tdep.c (hppaobsd_supply_fpregset): Likewise.
2593 * i386-dicos-tdep.c (i386_dicos_init_abi): Likewise.
2594 * i386-tdep.c (i386_bnd_type): Likewise.
2595 (i386_gdbarch_init): Likewise.
2596 (i386_mpx_bd_base): Likewise.
2597 * i386nbsd-tdep.c (i386nbsd_sigtramp_cache_init): Likewise.
2598 * i386obsd-tdep.c (i386obsd_elf_init_abi): Likewise.
2599 * ia64-tdep.c (examine_prologue): Likewise.
2600 (ia64_frame_cache): Likewise.
2601 (ia64_push_dummy_call): Likewise.
2602 * infcmd.c (finish_command_fsm_async_reply_reason): Likewise.
2603 (default_print_one_register_info): Likewise.
2604 * infrun.c (infrun_thread_ptid_changed): Likewise.
2605 (thread_still_needs_step_over): Likewise.
2606 (stop_all_threads): Likewise.
2607 (restart_threads): Likewise.
2608 (keep_going_stepped_thread): Likewise.
2609 * iq2000-tdep.c (iq2000_scan_prologue): Likewise.
2610 * language.c (language_init_primitive_type_symbols): Likewise.
2611 * linespec.c (add_sal_to_sals): Likewise.
2612 * linux-nat.c (status_callback): Likewise.
2613 (kill_unfollowed_fork_children): Likewise.
2614 (linux_nat_kill): Likewise.
2615 * linux-tdep.c (linux_fill_prpsinfo): Likewise.
2616 * linux-thread-db.c (thread_db_notice_clone): Likewise.
2617 (record_thread): Likewise.
2618 * location.c (string_to_event_location_basic): Likewise.
2619 * m32c-tdep.c (m32c_prev_register): Likewise.
2620 * m32r-linux-tdep.c (m32r_linux_init_abi): Likewise.
2621 * m32r-tdep.c (decode_prologue): Likewise.
2622 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
2623 * machoread.c (macho_symtab_read): Likewise.
2624 (macho_symfile_read): Likewise.
2625 (macho_symfile_offsets): Likewise.
2626 * maint.c (set_per_command_cmd): Likewise.
2627 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
2628 (mi_cmd_stack_list_variables): Likewise.
2629 * mi/mi-main.c (mi_cmd_exec_run): Likewise.
2630 (output_register): Likewise.
2631 (mi_cmd_execute): Likewise.
2632 (mi_cmd_trace_define_variable): Likewise.
2633 (print_variable_or_computed): Likewise.
2634 * minsyms.c (prim_record_minimal_symbol_full): Likewise.
2635 * mn10300-tdep.c (mn10300_frame_prev_register): Likewise.
2636 * msp430-tdep.c (msp430_pseudo_register_write): Likewise.
2637 * mt-tdep.c (mt_registers_info): Likewise.
2638 * nios2-tdep.c (nios2_analyze_prologue): Likewise.
2639 (nios2_push_dummy_call): Likewise.
2640 (nios2_frame_unwind_cache): Likewise.
2641 (nios2_stub_frame_cache): Likewise.
2642 (nios2_stub_frame_sniffer): Likewise.
2643 (nios2_gdbarch_init): Likewise.
2644 * ppc-ravenscar-thread.c: Likewise.
2645 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
2646 * python/py-evts.c (add_new_registry): Likewise.
2647 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
2648 (bpfinishpy_detect_out_scope_cb): Likewise.
2649 * python/py-framefilter.c (py_print_value): Likewise.
2650 * python/py-inferior.c (infpy_write_memory): Likewise.
2651 * python/py-infevents.c (create_inferior_call_event_object): Likewise.
2652 * python/py-infthread.c (thpy_get_ptid): Likewise.
2653 * python/py-linetable.c (ltpy_get_pcs_for_line): Likewise.
2654 (ltpy_get_all_source_lines): Likewise.
2655 (ltpy_is_valid): Likewise.
2656 (ltpy_iternext): Likewise.
2657 * python/py-symtab.c (symtab_and_line_to_sal_object): Likewise.
2658 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Likewise.
2659 (unwind_infopy_str): Likewise.
2660 * python/py-varobj.c (py_varobj_get_iterator): Likewise.
2661 * ravenscar-thread.c (ravenscar_inferior_created): Likewise.
2662 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
2663 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
2664 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise.
2665 * s390-linux-tdep.c (s390_supply_tdb_regset): Likewise.
2666 (s390_frame_prev_register): Likewise.
2667 (s390_dwarf2_frame_init_reg): Likewise.
2668 (s390_record_vr): Likewise.
2669 (s390_process_record): Likewise.
2670 * score-tdep.c (score_push_dummy_call): Likewise.
2671 (score3_analyze_prologue): Likewise.
2672 * sh-tdep.c (sh_extract_return_value_nofpu): Likewise.
2673 * sh64-tdep.c (sh64_analyze_prologue): Likewise.
2674 (sh64_push_dummy_call): Likewise.
2675 (sh64_extract_return_value): Likewise.
2676 (sh64_do_fp_register): Likewise.
2677 * solib-aix.c (solib_aix_get_section_offsets): Likewise.
2678 * solib-darwin.c (darwin_read_exec_load_addr_from_dyld): Likewise.
2679 (darwin_solib_read_all_image_info_addr): Likewise.
2680 * solib-dsbt.c (enable_break): Likewise.
2681 * solib-frv.c (enable_break2): Likewise.
2682 (frv_fdpic_find_canonical_descriptor): Likewise.
2683 * solib-svr4.c (svr4_handle_solib_event): Likewise.
2684 * sparc-tdep.c (sparc_skip_stack_check): Likewise.
2685 * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): Likewise.
2686 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
2687 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
2688 * stack.c (read_frame_local): Likewise.
2689 * symfile.c (symbol_file_add_separate): Likewise.
2690 (remove_symbol_file_command): Likewise.
2691 * symmisc.c (maintenance_print_one_line_table): Likewise.
2692 * symtab.c (symbol_cache_flush): Likewise.
2693 (basic_lookup_transparent_type): Likewise.
2694 (sort_search_symbols_remove_dups): Likewise.
2695 * target.c (target_memory_map): Likewise.
2696 (target_detach): Likewise.
2697 (target_resume): Likewise.
2698 (acquire_fileio_fd): Likewise.
2699 (target_store_registers): Likewise.
2700 * thread.c (print_thread_info_1): Likewise.
2701 * tic6x-tdep.c (tic6x_analyze_prologue): Likewise.
2702 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Likewise.
2703 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2704 (tilegx_analyze_prologue): Likewise.
2705 (tilegx_stack_frame_destroyed_p): Likewise.
2706 (tilegx_frame_cache): Likewise.
2707 * tracefile.c (trace_save): Likewise.
2708 * tracepoint.c (encode_actions_and_make_cleanup): Likewise.
2709 (start_tracing): Likewise.
2710 (print_one_static_tracepoint_marker): Likewise.
2711 * tui/tui.c (tui_enable): Likewise.
2712 * valops.c (value_struct_elt_bitpos): Likewise.
2713 (find_overload_match): Likewise.
2714 (find_oload_champ): Likewise.
2715 * value.c (value_contents_copy_raw): Likewise.
2716 * windows-tdep.c (windows_get_tlb_type): Likewise.
2717 * x86-linux-nat.c (x86_linux_enable_btrace): Likewise.
2718 * xcoffread.c (record_minimal_symbol): Likewise.
2719 (scan_xcoff_symtab): Likewise.
2720 * xtensa-tdep.c (execute_code): Likewise.
2721 (xtensa_gdbarch_init): Likewise.
2722 (_initialize_xtensa_tdep): Likewise.
2723
c1aebf87
UW
27242016-05-04 Ulrich Weigand <uweigand@de.ibm.com>
2725
2726 * spu-linux-nat.c (spu_bfd_iovec_pread): Add pointer cast for C++.
2727 (spu_bfd_open): Likewise.
2728
edf689f0
YQ
27292016-05-04 Yao Qi <yao.qi@linaro.org>
2730
2731 PR gdb/19947
2732 * corefile.c (read_memory): Rename it to ...
2733 (read_memory_object): ... it. Add parameter object.
2734 (read_memory): Call read_memory_object.
2735 (read_stack): Likewise.
2736 (read_code): Likewise.
2737
6c447423
DE
27382016-05-03 Yunlian Jiang <yunlian@google.com>
2739 Doug Evans <dje@google.com>
2740
2741 PR symtab/19914
2742 * dwarf2read.c (open_and_init_dwp_file): Look at backlink if objfile
2743 is separate debug file.
2744
a1ec3d24
DB
27452016-05-03 Don Breazeal <donb@codesourcery.com>
2746
2747 * serial.h (gdb_pipe): Fix argument names in comment.
2748
86f1abec
PA
27492016-05-03 Pedro Alves <palves@redhat.com>
2750
2751 PR python/20037
2752 * python/python.c (_initialize_python) [IS_PY3K]: xstrdup/xfree
2753 oldloc.
2754
1aa96702
PA
27552016-05-03 Pedro Alves <palves@redhat.com>
2756
2757 * python/python.c (_initialize_python) [IS_PY3K]: Remove dead
2758 code.
2759
a4a1c157
PA
27602016-05-03 Pedro Alves <palves@redhat.com>
2761
2762 * configure.ac (PYTHON_LIBS): Sed away "-Xlinker -export-dynamic".
2763 * configure: Regenerate.
2764
1b4f615e
PA
27652016-05-03 Pedro Alves <palves@redhat.com>
2766
2767 * configure.ac (checking for the dynamic export flag): Add
2768 $PYTHON_CPPFLAGS to CPPFLAGS.
2769 * configure: Regenerate.
2770
b631e59b
KT
27712016-05-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2772
2773 * symfile.c (find_pc_overlay): Add braces to avoid -Wparentheses
2774 warning.
2775 (find_pc_mapped_section): Likewise.
2776 (list_overlays_command): Likewise.
2777
1270fac6
EZ
27782016-05-02 Eli Zaretskii <eliz@gnu.org>
2779
2780 * windows-nat.c (_initialize_check_for_gdb_ini): Fix off-by-one
2781 error in allocation of space for "$HOME/.gdbinit" string. This
2782 caused GDB to abort on startup whenever a '~/gdb.ini' file was
2783 actually found, because xsnprintf would hit an assertion
2784 violation.
2785
0400cf2f
SM
27862016-04-28 Simon Marchi <simon.marchi@ericsson.com>
2787
2788 * cli/cli-decode.c (help_cmd_list): Do not list commands that
2789 are deprecated.
2790
57809e5e
JK
27912016-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2792
2793 * remote.c (remote_start_remote): Detect PACKET_vFile_setfs.support.
2794
476350ba
MG
27952016-04-27 Martin Galvan <martin.galvan@tallertechnologies.com>
2796
2797 * c-valprint.c (c_value_print): Always convert val back to reference
2798 type if we converted it to a pointer type.
2799
2d681be4
AA
28002016-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
2801
2802 * configure.ac: Enhance configure check for babeltrace to reject
2803 non-C++-enabled versions.
2804 * configure: Regenerate.
2805
3e2e34f8
KB
28062016-04-26 Sanimir Agovic <sanimir.agovic@intel.com>
2807 Keven Boell <keven.boell@intel.com>
2808 Bernhard Heckel <bernhard.heckel@intel.com>
2809
2810 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
2811 function.
2812 (F77_DIM_SIZE, F77_DIM_OFFSET): Remove macro.
2813 (f77_print_array_1): Use value_subscript to subscript a
2814 value array.
2815 (f77_print_array): Remove call to f77_create_arrayprint_offset_tbl.
2816 (f_val_print): Use value_field to construct a field value.
2817
8f07e298
BH
28182016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
2819
2820 * valarith.c (value_address): Resolve dynamic types.
2821
9920b434
BH
28222016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
2823 Keven Boell <kevel.boell@intel.com>
2824
2825 * NEWS: Add new supported features for fortran.
2826 * gdbtypes.c (remove_dyn_prop): New.
2827 (resolve_dynamic_struct): Keep type length for fortran structs.
2828 * gdbtypes.h: Forward declaration of new function.
2829 * value.c (value_address): Return dynamic resolved location of a value.
2830 (set_value_component_location): Adjust the value address
2831 for single value prints.
2832 (value_primitive_field): Support value types with a dynamic location.
2833 (set_internalvar): Remove dynamic location property of
2834 internal variables.
2835
20249ae4
YQ
28362016-04-25 Pedro Alves <palves@redhat.com>
2837 Yao Qi <yao.qi@linaro.org>
2838
2839 * mem-break.c (set_raw_breakpoint_at): Create a raw breakpoint
2840 object. Insert it if it is not inserted yet. Increase the
2841 refcount and link it into the proc's raw breakpoint list.
2842
21edc42f
YQ
28432016-04-25 Yao Qi <yao.qi@linaro.org>
2844
2845 * breakpoint.c (should_be_inserted): Return 0 if the location's
2846 owner is not single step breakpoint or single step breakpoint's
2847 thread isn't the thread which is stepping past a breakpoint.
2848 * gdbarch.sh (software_single_step): Update comments.
2849 * gdbarch.h: Regenerated.
2850 * infrun.c (struct step_over_info) <thread>: New field.
2851 (set_step_over_info): New argument 'thread'. Callers updated.
2852 (clear_step_over_info): Set field thread to -1.
2853 (thread_is_stepping_over_breakpoint): New function.
2854 * infrun.h (thread_is_stepping_over_breakpoint): Declaration.
2855
0154d990
EBM
28562016-04-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2857
2858 * ppc-linux-nat.c (ppc_linux_read_description): Use PPC_FEATURE_HAS_VSX
2859 and PPC_FEATURE_HAS_ALTIVEC to check if such features are available.
2860
6d7e9d3b
YQ
28612016-04-22 Yao Qi <yao.qi@linaro.org>
2862
2863 * valops.c (read_value_memory): New local variable 'stack'.
2864 Set it to either TARGET_OBJECT_STACK_MEMORY or
2865 TARGET_OBJECT_MEMORY.
2866
b3f11165
PA
28672016-04-22 Pedro Alves <palves@redhat.com>
2868
2869 * ada-exp.y: Remove all yy symbol remappings.
2870 (GDB_YY_REMAP_PREFIX): Define.
2871 Include "yy-remap.h".
2872 * ada-lang.c (ada_language_defn): Adjust.
2873 * ada-lang.h (ada_error): Rename to ...
2874 (ada_yyerror): ... this.
2875 * c-exp.y: Remove all yy symbol remappings.
2876 (GDB_YY_REMAP_PREFIX): Define.
2877 Include "yy-remap.h".
2878 * c-lang.c (c_language_defn, cplus_language_defn)
2879 (asm_language_defn, minimal_language_defn): Adjust.
2880 * c-lang.h (c_error): Rename to ...
2881 (c_yyerror): ... this.
2882 * d-exp.y: Remove all yy symbol remappings.
2883 (GDB_YY_REMAP_PREFIX): Define.
2884 Include "yy-remap.h".
2885 * d-lang.c (d_language_defn): Adjust.
2886 * d-lang.h (d_error): Rename to ...
2887 (d_yyerror): ... this.
2888 * f-exp.y: Remove all yy symbol remappings.
2889 (GDB_YY_REMAP_PREFIX): Define.
2890 Include "yy-remap.h".
2891 * f-lang.c (f_language_defn): Adjust.
2892 * f-lang.h (f_error): Rename to ...
2893 (f_yyerror): ... this.
2894 * go-exp.y: Remove all yy symbol remappings.
2895 (GDB_YY_REMAP_PREFIX): Define.
2896 Include "yy-remap.h".
2897 * go-lang.c (go_language_defn): Adjust.
2898 * go-lang.h (go_error): Rename to ...
2899 (go_yyerror): ... this.
2900 * jv-exp.y: Remove all yy symbol remappings.
2901 (GDB_YY_REMAP_PREFIX): Define.
2902 Include "yy-remap.h".
2903 * jv-lang.c (java_language_defn): Adjust.
2904 * jv-lang.h (java_error): Rename to ...
2905 (java_yyerror): ... this.
2906 * m2-exp.y: Remove all yy symbol remappings.
2907 (GDB_YY_REMAP_PREFIX): Define.
2908 Include "yy-remap.h".
2909 * m2-lang.c (m2_language_defn): Adjust.
2910 * m2-lang.h (m2_error): Rename to ...
2911 (m2_yyerror): ... this.
2912 * objc-exp.y: Remove all yy symbol remappings.
2913 (GDB_YY_REMAP_PREFIX): Define.
2914 Include "yy-remap.h".
2915 * objc-lang.c (objc_language_defn): Adjust.
2916 * opencl-lang.c (opencl_language_defn): Adjust.
2917 * p-exp.y: Remove all yy symbol remappings.
2918 (GDB_YY_REMAP_PREFIX): Define.
2919 Include "yy-remap.h".
2920 * p-lang.c (pascal_language_defn): Adjust.
2921 * p-lang.h (pascal_error): Rename to ...
2922 (pascal_yyerror): ... this.
2923 * yy-remap.h: New file.
2924
6290672f
PA
29252016-04-22 Pedro Alves <palves@redhat.com>
2926
2927 * common/common-exceptions.h (GDB_XCPT_TRY): Remove mention of
2928 the foreign frames issue.
2929 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
2930
89525768
PA
29312016-04-22 Pedro Alves <palves@redhat.com>
2932
2933 * common/common-exceptions.c (enum catcher_state, struct catcher)
2934 (current_catcher): Define in C++ mode too.
2935 (exceptions_state_mc_catch): Call throw_exception_sjlj instead of
2936 throw_exception.
2937 (throw_exception_sjlj, throw_exception_cxx): New functions,
2938 factored out from throw_exception.
2939 (throw_exception): Reimplement.
2940 * common/common-exceptions.h (exceptions_state_mc_init)
2941 (exceptions_state_mc_action_iter)
2942 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
2943 Declare in C++ mode too.
2944 (TRY): Rename to ...
2945 (TRY_SJLJ): ... this.
2946 (CATCH): Rename to ...
2947 (CATCH_SJLJ): ... this.
2948 (END_CATCH): Rename to ...
2949 (END_CATCH_SJLJ): ... this.
2950 [GDB_XCPT == GDB_XCPT_SJMP] (TRY, CATCH, END_CATCH): Map to SJLJ
2951 equivalents.
2952 (throw_exception): Update comments.
2953 (throw_exception_sjlj): Declare.
2954 * event-top.c (gdb_rl_callback_read_char_wrapper): Extend intro
2955 comment. Wrap body in TRY_SJLJ/CATCH_SJLJ and rethrow any
2956 intercepted exception.
2957 (gdb_rl_callback_handler): New function.
2958 (gdb_rl_callback_handler_install): Always install
2959 gdb_rl_callback_handler as readline callback.
2960
3c610247
PA
29612016-04-22 Pedro Alves <palves@redhat.com>
2962
2963 * event-top.c (rl_callback_read_char_wrapper): Rename to ...
2964 (gdb_rl_callback_read_char_wrapper): ... this.
2965 (change_line_handler, gdb_setup_readline): Adjust.
2966
3539aa13
YQ
29672016-04-22 Yao Qi <yao.qi@linaro.org>
2968
2969 * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Clear CPSR
2970 bits 20 to 23.
2971
0f60e29b
JB
29722016-04-22 Joel Brobecker <brobecker@adacore.com>
2973
2974 * MAINTAINER: Remove myself as AIX Maintainer.
2975
3877922e
MR
29762016-04-22 Maciej W. Rozycki <macro@imgtec.com>
2977
2978 * mips-tdep.c (mips_gdbarch_init): For GDB_OSABI_LINUX set
2979 `num_regs' to 90 rather than 79. Where a target description is
2980 present adjust the setting appropriately.
2981
88c3cd8d
PA
29822016-04-21 Pedro Alves <palves@redhat.com>
2983
2984 * common/common-exceptions.h (GDB_XCPT_TRY): Add comment.
2985 (GDB_XCPT): Always define as GDB_XCPT_SJMP.
2986
71829b1a
PA
29872016-04-21 Pedro Alves <palves@redhat.com>
2988
2989 * aix-thread.c (pdc_read_data, pdc_write_data): Add cast.
2990 (aix_thread_resume): Use PTRACE_TYPE_ARG5.
2991 * rs6000-nat.c (rs6000_ptrace64): Use PTRACE_TYPE_ARG5.
2992 (rs6000_ptrace_ldinfo): Change type of 'ldi' local to void
2993 pointer, and cast return to gdb_byte pointer.
2994
3451269c
PA
29952016-04-21 Pedro Alves <palves@redhat.com>
2996
2997 * s390-linux-nat.c (fetch_regset, store_regset, check_regset): Use
2998 void * instead of gdb_byte *.
2999
b36cec19
PA
30002016-04-21 Pedro Alves <palves@redhat.com>
3001
3002 * dwarf2read.c (try_open_dwop_file, open_dwo_file)
3003 (file_file_name, file_full_name): Add char * cast to sentinel in
3004 concat/reconcat calls.
3005 * event-top.c (top_level_prompt): Likewise.
3006 * guile/guile.c (initialize_scheme_side): Likewise.
3007 * linux-tdep.c (linux_fill_prpsinfo): Likewise.
3008 * macrotab.c (macro_source_fullname): Likewise.
3009 * main.c (get_init_files, captured_main): Likewise.
3010 * psymtab.c (psymtab_to_fullname): Likewise.
3011 * python/python.c (_initialize_python)
3012 (gdbpy_finish_initialization): Likewise.
3013 * source.c (symtab_to_fullname): Likewise.
3014
a2358508
PA
30152016-04-20 Pedro Alves <palves@redhat.com>
3016
3017 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Default to yes.
3018 * configure: Renegerate.
3019
5ae00552
PA
30202016-04-20 Pedro Alves <palves@redhat.com>
3021
3022 * darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
3023
d9436c7c
PA
30242016-04-20 Pedro Alves <palves@redhat.com>
3025
3026 * aarch64-tdep.c (aarch64_record_load_store): Change type of
3027 'reg_rm_val' local to ULONGEST.
3028
597e448c
PA
30292016-04-20 Pedro Alves <palves@redhat.com>
3030
3031 * darwin-nat.c (darwin_resume_thread): Add uintptr_t cast.
3032
6c739336
DE
30332016-04-20 Doug Evans <xdje42@gmail.com>
3034
3035 * symmisc.c (dump_symtab_1): Print owning compunit for identical
3036 blockvectors.
3037
8cef59a2
YQ
30382016-04-20 Yao Qi <yao.qi@linaro.org>
3039
3040 * aarch32-linux-nat.c: Include "arch/arm-linux.h".
3041
6885166d
YQ
30422016-04-20 Yao Qi <yao.qi@linaro.org>
3043
3044 * arm-linux-tdep.h (ARM_CPSR_GREGNUM): Move it to ...
3045 * arch/arm-linux.h: ... here.
3046
21002a63
JB
30472016-04-19 John Baldwin <jhb@FreeBSD.org>
3048
3049 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Change xstateregs
3050 to void *.
3051 (amd64bsd_store_inferior_registers): Likewise.
3052 * fbsd-nat.c (resume_one_thread_cb): Explicitly cast data to ptid_t *.
3053 (resume_all_threads_cb): Likewise.
3054 * i386bsd-nat.c (i386bsd_supply_gregset): Cast gregs to char *.
3055 (i386bsd_collect_gregset): Likewise.
3056 (i386bsd_fetch_inferior_registers): Change xstateregs to void *.
3057 (i386bsd_store_inferior_registers): Likewise.
3058
f39c07ac
JB
30592016-04-19 John Baldwin <jhb@FreeBSD.org>
3060
3061 * main.c (setup_alternate_signal_stack): Cast to char *.
3062
d04c1a59
DE
30632016-04-19 Doug Evans <xdje42@gmail.com>
3064
3065 * symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile.
3066 All callers updated.
3067
a55411b9
DE
30682016-04-19 Doug Evans <xdje42@gmail.com>
3069
ee2915c9 3070 PR gdb/17911
a55411b9
DE
3071 * source.c (is_regular_file): New arg errno_ptr.
3072 All callers updated.
3073
73e6209f
AA
30742016-04-19 Andreas Arnez <arnez@linux.vnet.ibm.com>
3075
3076 * linux-record.c (record_linux_system_call): Merge handling for
3077 readlink/recv/read and pipe/pipe2.
3078
f42bf748
WT
30792016-04-14 Walfred Tedeschi <walfred.tedeschi@intel.com>
3080
3081 * features/i386/amd64-mpx-linux.xml: Remove AVX feature.
3082 * features/i386/amd64-mpx.xml: Remove AVX feature.
3083 * features/i386/i386-mpx-linux.xml: Remove AVX feature.
3084 * features/i386/i386-mpx.xml: Remove AVX feature.
3085 * features/i386/amd64-mpx-linux.c: Regenerate.
3086 * features/i386/amd64-mpx.c: Regenerate.
3087 * features/i386/i386-mpx-linux.c: Regenerate.
3088 * features/i386/i386-mpx.c: Regenerate.
3089 * regformats/i386/amd64-mpx-linux.dat: Regenerate.
3090 * regformats/i386/amd64-mpx.dat: Regenerate.
3091 * regformats/i386/i386-mpx-linux.dat: Regenerate.
3092 * regformats/i386/i386-mpx.dat: Regenerate.
3093
2b863f51
WT
30942016-04-16 Walfred Tedeschi <walfred.tedeschi@intel.com>
3095
3096 * amd64-linux-tdep.c (features/i386/amd64-avx-mpx-linux.c):
3097 New include.
3098 (amd64_linux_core_read_description): Add case for
3099 X86_XSTATE_AVX_MPX_MASK.
3100 (_initialize_amd64_linux_tdep): Call initialize_tdesc_amd64_avx_mpx_linux.
3101 * amd64-linux-tdep.h (tdesc_amd64_avx_mpx_linux): New definition.
3102 * amd64-tdep.c (features/i386/amd64-avx-mpx.c): New include.
3103 (amd64_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
3104 (_initialize_amd64_tdep): Call initialize_tdesc_amd64_avx_mpx.
3105 * common/x86-xstate.h (X86_XSTATE_MPX_MASK): Remove AVX bits.
3106 (X86_XSTATE_AVX_MPX_MASK): New case.
3107 * features/Makefile (i386/i386-avx-mpx, i386/i386-avx-mpx-linux)
3108 (i386/amd64-avx-mpx, i386/amd64-avx-mpx-linux): New rules.
3109 (i386/i386-avx-mpx-expedite, i386/i386-avx-mpx-linux-expedite)
3110 (i386/amd64-avx-mpx-expedite, i386/amd64-avx-mpx-linux-expedite):
3111 New expedites.
3112 * i386-linux-tdep.c (features/i386/i386-avx-mpx-linux.c): New
3113 include.
3114 (i386_linux_core_read_description): Add case
3115 X86_XSTATE_AVX_MPX_MASK.
3116 (_initialize_i386_linux_tdep): Call
3117 initialize_tdesc_i386_avx_mpx_linux.
3118 * i386-linux-tdep.h (tdesc_i386_avx_mpx_linux): New include.
3119 * i386-tdep.c (features/i386/i386-avx-mpx.c): New include.
3120 (i386_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
3121 * x86-linux-nat.c (x86_linux_read_description): Add case for
3122 X86_XSTATE_AVX_MPX_MASK.
3123 * features/i386/amd64-avx-mpx-linux.xml: New file.
3124 * features/i386/i386-avx-mpx-linux.xml: New file.
3125 * features/i386/i386-avx-mpx.xml: New file.
3126 * features/i386/amd64-avx-mpx.xml: New file.
3127 * features/i386/amd64-avx-mpx-linux.c: Generated.
3128 * features/i386/amd64-avx-mpx.c: Generated.
3129 * features/i386/i386-avx-mpx-linux.c: Generated.
3130 * features/i386/i386-avx-mpx.c: Generated.
3131 * regformats/i386/amd64-avx-mpx-linux.dat: Generated.
3132 * regformats/i386/amd64-avx-mpx.dat: Generated.
3133 * regformats/i386/i386-avx-mpx-linux.dat: Generated.
3134 * regformats/i386/i386-avx-mpx.dat: Generated.
3135
9b30624b
PA
31362016-04-18 Pedro Alves <palves@redhat.com>
3137
3138 * ptrace.m4 (GDB_AC_PTRACE): Don't run tests in C++ mode.
3139 * configure: Regenerate.
3140
a22df60a
MG
31412016-04-18 Martin Galvan <martin.galvan@tallertechnologies.com>
3142
3143 * valops.c (value_addr): For C++ references, set the copied value's
3144 enclosing_type as well.
3145
5947319e
YQ
31462016-04-18 Yao Qi <yao.qi@linaro.org>
3147
3148 Revert:
3149 2016-04-15 Yao Qi <yao.qi@linaro.org>
3150
3151 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
3152 PC is far from the end of function.
3153
58484447
PA
31542016-04-16 Pedro Alves <palves@redhat.com>
3155
3156 * ada-exp.y (yydefred): Define as ada_yydefred.
3157
2b2798cc
PA
31582016-04-15 Pedro Alves <palves@redhat.com>
3159
3160 * ada-lang.c (ada_lookup_struct_elt_type): Constify 'type_str' and
3161 'name_str' locals.
3162
d7abe101
PA
31632016-04-15 Pedro Alves <palves@redhat.com>
3164
3165 * btrace.c (pt_btrace_insn_flags): Change return type to
3166 btrace_insn_flags. Use btrace_insn_flags for local.
3167
77770d83
PA
31682016-04-15 Pedro Alves <palves@redhat.com>
3169
3170 * nat/linux-ptrace.h [__mips__] (GDB_ARCH_IS_TRAP_BRKPT): Also
3171 accept TRAP_BRKPT.
3172 [__mips__] (GDB_ARCH_IS_TRAP_HWBKPT): Also accept TRAP_HWBKPT.
3173
415fa612
YQ
31742016-04-15 Yao Qi <yao.qi@linaro.org>
3175
3176 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
3177 PC is far from the end of function.
3178
7f31862a
PA
31792016-04-14 Pedro Alves <palves@redhat.com>
3180
3181 * cli/cli-cmds.c (alias_usage_error): New function.
3182 (alias_command): Use it.
3183 * ctf.c (ctf_save_metadata_header): Inline metadata_fmt local in
3184 ctf_save_write_metadata call.
3185
aebf07fc
PA
31862016-04-14 Pedro Alves <palves@redhat.com>
3187
3188 * ada-typeprint.c (print_fixed_point_type): Don't pass float as
3189 argument to function expecting LONGEST.
3190 * value.c (unpack_long): Add casts to LONGEST.
3191
57d1de9c
LM
31922016-04-13 Luis Machado <lgustavo@codesourcery.com>
3193
3194 * exec.c (exec_file_locate_attach): Guard a couple functions
3195 that can throw errors.
3196 (exception_print_same): New helper function.
3197
3a00c802
PA
31982016-04-13 Pedro Alves <palves@redhat.com>
3199
3200 PR remote/19840
3201 * remote.c (struct remote_state) <last_resume_exec_dir>: New
3202 field.
3203 (new_remote_state): Default last_resume_exec_dir to EXEC_FORWARD.
3204 (remote_open_1): Reset last_resume_exec_dir to EXEC_FORWARD.
3205 (remote_resume): Store the last execution direction.
3206 (remote_execution_direction): New function.
3207 (init_remote_ops): Install it as to_execution_direction target_ops
3208 method.
3209
0f41b320
PA
32102016-04-12 Pedro Alves <palves@redhat.com>
3211
3212 * common/common-exceptions.h (GDB_XCPT_TRY): Update comment.
3213 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
3214
173981bc
PA
32152016-04-12 Pedro Alves <palves@redhat.com>
3216
3217 * common/common-exceptions.c (struct catcher) <buf>: Now a
3218 'jmp_buf' instead of SIGJMP_BUF.
3219 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
3220 (throw_exception): Use longjmp instead of SIGLONGJMP.
3221 * common/common-exceptions.h: Include <setjmp.h> instead of
3222 "gdb_setjmp.h".
3223 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
3224 [GDB_XCPT == GDB_XCPT_SJMP] (TRY): Use setjmp instead of
3225 SIGSETJMP.
3226 * cp-support.c: Include "gdb_setjmp.h".
3227
2afc13ff
PA
32282016-04-12 Pedro Alves <palves@redhat.com>
3229
3230 * common/common-exceptions.c (exception_rethrow): Remove
3231 prepare_to_throw_exception call.
3232 * common/common-exceptions.h (prepare_to_throw_exception): Delete
3233 declaration.
3234 * exceptions.c (prepare_to_throw_exception): Delete.
3235
cfd0fbdd
PA
32362016-04-12 Pedro Alves <palves@redhat.com>
3237
3238 * target.c (target_check_pending_interrupt): Delete.
3239 * target.h (struct target_ops) <to_check_pending_interrupt>:
3240 Remove method.
3241 (target_check_pending_interrupt): Remove declaration.
3242 * target-delegates.c: Regenerate.
3243
585a46a2
PA
32442016-04-12 Pedro Alves <palves@redhat.com>
3245
3246 * defs.h: Update comments on SIGINT handling.
3247 (immediate_quit): Delete declaration.
3248 * event-loop.c (call_async_signal_handler): Delete.
3249 * event-loop.h (call_async_signal_handler): Delete declaration.
3250 (mark_async_signal_handler): Update comments.
3251 (gdb_call_async_signal_handler): Delete declaration.
3252 * event-top.c (handle_sigint): Call mark_async_signal_handler
3253 instead of gdb_call_async_signal_handler.
3254 * exceptions.c (prepare_to_throw_exception): Remove reference to
3255 immediate_quit.
3256 (exception_fprintf): Remove comments about immediate_quit.
3257 * mingw-hdep.c (sigint_event, sigint_handler): Delete.
3258 (gdb_select): Don't wait on sigint_event.
3259 (gdb_call_async_signal_handler): Delete.
3260 (_initialize_mingw_hdep): Delete.
3261 * posix-hdep.c (gdb_call_async_signal_handler): Delete.
3262 * utils.c (immediate_quit): Delete.
3263
048094ac
PA
32642016-04-12 Pedro Alves <palves@redhat.com>
3265
3266 * defs.h (quit_handler_ftype, quit_handler)
3267 (make_cleanup_override_quit_handler, default_quit_handler): New.
3268 (QUIT): Adjust comments.
3269 * event-top.c (default_quit_handler): New function.
3270 (quit_handler): New global.
3271 (struct quit_handler_cleanup_data): New.
3272 (restore_quit_handler, restore_quit_handler_dtor)
3273 (make_cleanup_override_quit_handler): New.
3274 (async_request_quit): Call QUIT.
3275 * remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
3276 (async_sigint_remote_twice_token, async_sigint_remote_token):
3277 Delete.
3278 (remote_close): Update comments.
3279 (remote_start_remote): Don't set immediate_quit. Set starting_up
3280 earlier.
3281 (remote_serial_quit_handler, remote_unpush_and_throw): New
3282 functions.
3283 (remote_open_1): Clear got_ctrlc_during_io. Set
3284 remote_async_terminal_ours_p unconditionally.
3285 (async_initialize_sigint_signal_handler)
3286 (async_handle_remote_sigint, async_handle_remote_sigint_twice)
3287 (remote_check_pending_interrupt, async_remote_interrupt)
3288 (async_remote_interrupt_twice)
3289 (async_cleanup_sigint_signal_handler, ofunc)
3290 (sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
3291 (remote_terminal_inferior, remote_terminal_ours): Remove async
3292 checks.
3293 (remote_wait_as): Don't install a SIGINT handler in sync mode.
3294 (readchar, remote_serial_write): Override the quit handler with
3295 remote_serial_quit_handler.
3296 (getpkt_or_notif_sane_1): Don't call QUIT.
3297 (initialize_remote_ops): Don't install
3298 remote_check_pending_interrupt.
3299 (_initialize_remote): Don't create async_sigint_remote_token and
3300 async_sigint_remote_twice_token.
3301 * ser-base.c (ser_base_wait_for): Call QUIT and use
3302 interruptible_select.
3303 (ser_base_write): Call QUIT.
3304 * ser-go32.c (dos_readchar, dos_write): Call QUIT.
3305 * ser-unix.c (wait_for): Don't use VTIME. Always take the
3306 gdb_select path, but call QUIT and interruptible_select.
3307 * utils.c (maybe_quit): Call the current quit handler. Don't call
3308 target_check_pending_interrupt.
3309 (defaulted_query, prompt_for_continue): Override the quit handler
3310 with the default quit handler.
3311
a12ac513
PA
33122016-04-12 Pedro Alves <palves@redhat.com>
3313
3314 * tui/tui-hooks.c (tui_target_has_run): Delete.
3315 (tui_about_to_proceed): Delete.
3316 (tui_about_to_proceed_observer): Delete.
3317 (tui_install_hooks, tui_remove_hooks): Don't install/remove an
3318 about_to_proceed observer.
3319
5fe96654
PA
33202016-04-12 Pedro Alves <palves@redhat.com>
3321
3322 * mi/mi-interp.c (mi_new_thread): Put
3323 target_terminal_ours_for_output in effect while outputting.
3324 (mi_thread_exit): Use target_terminal_ours_for_output instead of
3325 target_terminal_ours.
3326 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
3327 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
3328 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
3329 (mi_breakpoint_created, mi_breakpoint_deleted)
3330 (mi_breakpoint_modified, mi_solib_loaded, mi_solib_unloaded)
3331 (mi_command_param_changed, mi_memory_changed)
3332 (report_initial_inferior): Use target_terminal_ours_for_output
3333 instead of target_terminal_ours. Restore terminal settings.
3334 * mi/mi-main.c (mi_execute_command): Use
3335 target_terminal_ours_for_output instead of target_terminal_ours.
3336 Restore terminal settings.
3337
651ce16a
PA
33382016-04-12 Pedro Alves <palves@redhat.com>
3339
3340 PR gdb/19828
3341 * gnu-nat.c (inf_validate_task_sc): Don't call
3342 target_terminal_ours / target_terminal_inferior around query.
3343 * i386-tdep.c (i386_record_lea_modrm, i386_process_record): Don't
3344 call target_terminal_ours / target_terminal_inferior around
3345 yquery.
3346 * linux-record.c (record_linux_system_call): Don't call
3347 target_terminal_ours / target_terminal_inferior around yquery.
3348 * nto-procfs.c (interrupt_query): Don't call target_terminal_ours
3349 / target_terminal_inferior around query.
3350 * record-full.c (record_full_check_insn_num): Remove
3351 'set_terminal' parameter. Don't call target_terminal_ours /
3352 target_terminal_inferior around query.
3353 (record_full_message, record_full_registers_change)
3354 (record_full_xfer_partial): Adjust.
3355 * remote.c (interrupt_query): Don't call target_terminal_ours /
3356 target_terminal_inferior around query.
3357 * utils.c (defaulted_query): Install cleanup to restore target
3358 terminal. Put target_terminal_ours_for_output in effect while
3359 defaulted producing, and target_terminal_ours in in effect while
3360 handling input.
3361 (prompt_for_continue): Install cleanup to restore target terminal.
3362 Put target_terminal_ours in in effect while handling input.
3363
80dbc9fd
PA
33642016-04-12 Pedro Alves <palves@redhat.com>
3365
3366 * utils.c (defaulted_query, prompt_for_continue): Free temporary
3367 strings with cleanups, instead of xfree.
3368
c5ac1540
PA
33692016-04-12 Pedro Alves <palves@redhat.com>
3370
3371 * utils.c (vwarning, internal_vproblem): Use
3372 make_cleanup_restore_target_terminal and
3373 target_terminal_ours_for_output.
3374
f8e3ef9d
PA
33752016-04-12 Pedro Alves <palves@redhat.com>
3376
3377 * infcmd.c (post_create_inferior, prepare_one_step): Use
3378 target_terminal_ours_for_output instead of target_terminal_ours.
3379
481ac8c9
PA
33802016-04-12 Pedro Alves <palves@redhat.com>
3381
3382 * exceptions.c (print_flush): Use target_terminal_ours_for_output
3383 instead of target_terminal_ours, and restore target terminal with
3384 a cleanup.
3385
c509f1e1
PA
33862016-04-12 Pedro Alves <palves@redhat.com>
3387
3388 * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
3389 instead of target_terminal_ours, and restore target terminal with
3390 a cleanup.
3391
99bbb428
PA
33922016-04-12 Pedro Alves <palves@redhat.com>
3393
3394 * ada-lang.c (type_as_string, type_as_string_and_cleanup): New
3395 functions.
3396 (ada_lookup_struct_elt_type): Use type_as_string_and_cleanup.
3397
75ee5925
PA
33982016-04-12 Pedro Alves <palves@redhat.com>
3399
3400 * ser-base.c (fd_event): Retry read_prim on EINTR.
3401 (do_ser_base_readchar): Retry read_prim on EINTR.
3402 (ser_base_write): Retry write_prim on EINTR.
3403 * ser-unix.c (ser_unix_read_prim): Don't retry on EINTR here.
3404 (ser_unix_write_prim): Remove comment.
3405
93692b58
PA
34062016-04-12 Pedro Alves <palves@redhat.com>
3407
3408 * remote.c (remote_pass_ctrlc): New function.
3409 (init_remote_ops): Install it.
3410 * target.c (target_terminal_inferior): Pass pending Ctrl-C to the
3411 target.
3412 (target_pass_ctrlc, default_target_pass_ctrlc): New functions.
3413 * target.h (struct target_ops) <to_pass_ctrlc>: New method.
3414 (target_pass_ctrlc, default_target_pass_ctrlc): New declarations.
3415 * target-delegates.c: Regenerate.
3416
e42de8c7
PA
34172016-04-12 Pedro Alves <palves@redhat.com>
3418
3419 * infcmd.c (interrupt_target_1): Call target_stop is in non-stop
3420 mode.
3421 * linux-nat.c (linux_nat_interrupt): Delete.
3422 (linux_nat_add_target): Don't install linux_nat_interrupt.
3423 * remote.c (remote_interrupt_ns): Change return type to void.
3424 Throw error if interrupting the target is not supported.
3425 (remote_interrupt): Don't call the remote_stop_ns/remote_stop_as.
3426
a149683b
PA
34272016-04-12 Pedro Alves <palves@redhat.com>
3428
3429 * defs.h (clear_quit_flag): Remove declaration.
3430 * extension-priv.h (struct extension_language_ops)
3431 <clear_quit_flag>: Remove field and update comments.
3432 * extension.c (clear_quit_flag): Delete.
3433 * guile/guile.c (guile_extension_ops): Adjust.
3434 * python/python.c (python_extension_ops): Adjust.
3435 (gdbpy_clear_quit_flag): Delete.
3436
da1e5f54
PA
34372016-04-12 Pedro Alves <palves@redhat.com>
3438
3439 * main.c (captured_main): Don't clear the quit flag.
3440
0af679c6
PA
34412016-04-12 Pedro Alves <palves@redhat.com>
3442
3443 * exceptions.c (prepare_to_throw_exception): Don't clear the quit
3444 flag.
3445
4a81fd47
PA
34462016-04-12 Pedro Alves <palves@redhat.com>
3447
3448 * event-top.c (command_handler): Don't call clear_quit_flag.
3449
abf009ef
PA
34502016-04-12 Pedro Alves <palves@redhat.com>
3451
3452 * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
3453 * remote.c (remote_wait_as): Don't call clear_quit_flag.
3454
6eddd09a
PA
34552016-04-12 Pedro Alves <palves@redhat.com>
3456
3457 * python/python.c: Include "ser-event.h".
3458 (gdbpy_event_fds): Delete.
3459 (gdbpy_serial_event): New.
3460 (gdbpy_run_events): Change prototype. Use serial_event_clear
3461 instead of serial_readchar.
3462 (gdbpy_post_event): Use serial_event_set instead of serial_write.
3463 (gdbpy_initialize_events): Use make_serial_event instead of
3464 serial_pipe.
3465
f0881b37
PA
34662016-04-12 Pedro Alves <palves@redhat.com>
3467
3468 * defs.h: Extend QUIT-related comments to mention
3469 interruptible_select.
3470 (quit_serial_event_set, quit_serial_event_clear): Declare.
3471 * event-top.c: Include "ser-event.h" and "gdb_select.h".
3472 (quit_serial_event): New global.
3473 (async_init_signals): Make quit_serial_event.
3474 (quit_serial_event_set, quit_serial_event_clear)
3475 (quit_serial_event_fd, interruptible_select): New functions.
3476 * extension.c (set_quit_flag): Set the quit serial event.
3477 (check_quit_flag): Clear the quit serial event.
3478 * gdb_select.h (interruptible_select): New declaration.
3479 * guile/scm-ports.c (ioscm_input_waiting): Use
3480 interruptible_select instead of gdb_select.
3481 * top.c (gdb_readline_no_editing): Likewise.
3482 * ui-file.c (stdio_file_read): Likewise.
3483
5cc3ce8b
PA
34842016-04-12 Pedro Alves <palves@redhat.com>
3485
3486 * event-loop.c: Include "ser-event.h".
3487 (async_signal_handlers_serial_event): New global.
3488 (async_signals_handler, initialize_async_signal_handlers): New
3489 functions.
3490 (mark_async_signal_handler): Set
3491 async_signal_handlers_serial_event.
3492 (invoke_async_signal_handlers): Clear
3493 async_signal_handlers_serial_event.
3494 * event-top.c (async_init_signals): Call
3495 initialize_async_signal_handlers.
3496
00340e1b
PA
34972016-04-12 Pedro Alves <palves@redhat.com>
3498
3499 * Makefile.in (SFILES): Add ser-event.c.
3500 (HFILES_NO_SRCDIR): Add ser-event.h.
3501 (COMMON_OBS): Add ser-event.o.
3502 * ser-event.c, ser-event.h: New files.
3503 * serial.c (new_serial): New function, factored out from
3504 (serial_fdopen_ops): ... this.
3505 (serial_open_ops_1): New function, factored out from
3506 (serial_open): ... this.
3507 (serial_open_ops): New function.
3508 * serial.h (struct serial): Forware declare.
3509 (serial_open_ops): New declaration.
3510
5f5219fc
PA
35112016-04-12 Pedro Alves <palves@redhat.com>
3512
3513 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
3514 Remove references to name.
3515 * serial.h (struct serial) <name>: Delete.
3516
acd5494d
PA
35172016-04-12 Pedro Alves <palves@redhat.com>
3518
3519 * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
3520 Delete.
3521 (async_remote_fileio_interrupt): Delete.
3522 (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
3523 handler. Instead just always set the ctrl_c flag.
3524 (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
3525 re-enabling the SIGINT handler.
3526 (remote_fileio_func_open, remote_fileio_func_close)
3527 (remote_fileio_func_read, remote_fileio_func_write)
3528 (remote_fileio_func_lseek, remote_fileio_func_rename)
3529 (remote_fileio_func_unlink, remote_fileio_func_stat)
3530 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
3531 (remote_fileio_func_isatty, remote_fileio_func_system)
3532 (remote_fileio_request): Remove references to
3533 remote_fio_no_longjmp.
3534 (initialize_remote_fileio): Don't create an async signal handler.
3535
d2acc30b
PA
35362016-04-12 Pedro Alves <palves@redhat.com>
3537
3538 * event-top.c (stdin_event_handler): Call QUIT;
3539 (prompt_for_continue): Don't run with immediate_quit set.
3540
ab33ab13
PA
35412016-04-12 Pedro Alves <palves@redhat.com>
3542
3543 * tui/tui-io.c (tui_redisplay_readline): Check
3544 gdb_in_secondary_prompt_p instead of immediate_quit.
3545 * tui/tui.c: Include top.h.
3546 (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
3547 immediate_quit.
3548
faa4ebe1
PA
35492016-04-12 Pedro Alves <palves@redhat.com>
3550
3551 * top.c (read_command_file): Inline command_loop here.
3552 (command_loop): Delete.
3553
3212b858
PA
35542016-04-12 Pedro Alves <palves@redhat.com>
3555
3556 * top.c: Include "gdb_select.h".
3557 (gdb_readline_no_editing): Wait for input with gdb_select instead
3558 of blocking in fgetc.
3559 (command_line_input): Don't set immediate_quit.
3560
4bf7b526
MG
35612016-04-08 Martin Galvan <martin.galvan@tallertechnologies.com>
3562
3563 * value.c (value_next): Make pass-by-reference parameters const-correct.
3564 (value_parent): Likewise.
3565 (value_enclosing_type): Likewise.
3566 (value_lazy): Likewise.
3567 (value_stack): Likewise.
3568 (value_embedded_offset): Likewise.
3569 (value_pointed_to_offset): Likewise.
3570 (value_raw_address): Likewise.
3571 (deprecated_value_modifiable): Likewise.
3572 (value_free_to_mark): Likewise.
3573 (value_release_to_mark): Likewise.
3574 (internalvar_name): Likewise.
3575 (readjust_indirect_value_type): Likewise.
3576 (value_initialized): Likewise.
3577 * value.h (value_next): Likewise.
3578 (value_parent): Likewise.
3579 (value_enclosing_type): Likewise.
3580 (value_lazy): Likewise.
3581 (value_stack): Likewise.
3582 (value_embedded_offset): Likewise.
3583 (value_pointed_to_offset): Likewise.
3584 (value_raw_address): Likewise.
3585 (deprecated_value_modifiable): Likewise.
3586 (value_free_to_mark): Likewise.
3587 (value_release_to_mark): Likewise.
3588 (internalvar_name): Likewise.
3589 (readjust_indirect_value_type): Likewise.
3590 (value_initialized): Likewise.
3591
e390720b
YQ
35922016-04-07 Yao Qi <yao.qi@linaro.org>
3593
3594 * record-full.c (record_full_insert_breakpoint): Return
3595 early if entry on the address is found in
3596 record_full_breakpoints.
3597
1ccd06e4
YQ
35982016-04-07 Yao Qi <yao.qi@linaro.org>
3599
3600 * record-full.c (record_full_insert_breakpoint): Set
3601 bp_tgt->reqstd_address and bp_tgt->placed_size.
3602
ecf2e90c
DB
36032016-04-06 Don Breazeal <donb@codesourcery.com>
3604
3605 * value.c (value_actual_type): Don't try to get rtti type
3606 of the value if it has been optimized out.
3607 (value_optimized_out): If a memory access error occurs,
3608 just check vaue->optimized_out.
3609
14731617
JK
36102016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3611
3612 Revert the previous commit adding unknown_v_replies_ok.
3613
319cb5d0
JK
36142016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3615
3616 * remote.c (struct remote_state): New field unknown_v_replies_ok.
3617 (packet_config_support): Read it.
3618 (remote_start_remote): Set it.
3619
052d2eb2
JK
36202016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3621
3622 * remote.c: Revert check-in by a mistake in the previous commit.
3623
fef3cb9f
JK
36242016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3625 Pedro Alves <palves@redhat.com>
3626
3627 * exec.c (exec_file_locate_attach): Print warning for unsupported
3628 target_pid_to_exec_file.
3629 * symfile-mem.c (add_vsyscall_page): Remove the "file" command
3630 message part.
3631
2aa08bd1
SM
36322016-04-04 Simon Marchi <simon.marchi@ericsson.com>
3633
3634 * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
3635 trailing spaces.
3636
cc63428a
AV
36372016-04-01 Artemiy Volkov <artemiyv@acm.org>
3638
3639 PR gdb/19820
3640 * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
3641 the type of BINOP_REPEAT's second operand.
3642
9bb84c9f
YY
36432016-03-31 Yichao Yu <yyc1992@gmail.com>
3644
3645 PR gdb/19858
3646 * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
3647 got the breakpoint at the right address.
3648 (jit_inferior_created): New function.
3649 (_initialize_jit): Install jit_inferior_created as
3650 inferior_created observer.
3651
22084c42
MK
36522016-03-31 Marcin Kościelnicki <koriakin@0x04.net>
3653
3654 * NEWS: Mention support for tracepoints on powerpc*-linux.
3655
e7ea3ec7
CU
36562016-03-31 Catalin Udma <catalin.udma@freescale.com>
3657
3658 PR python/19743
3659 * python/python.c (execute_gdb_command): Use console uiout
3660 when executing gdb command.
3661 * utils.c (restore_ui_out_closure): New structure.
3662 (do_restore_ui_out): New function.
3663 (make_cleanup_restore_ui_out): Likewise.
3664 * utils.h (make_cleanup_restore_ui_out): Declare.
3665
f7c38292
PA
36662016-03-31 Pedro Alves <palves@redhat.com>
3667
3668 * NEWS: Mention that support for "target m32rsdi", "target mips",
3669 "target pmon", "target ddb", "target rockhopper", and "target lsi"
3670 was removed.
3671 * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
3672 remote-mips.o.
3673 (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
3674 * configure.tgt: Remove all references to remote-m32r-sdi.o and
3675 remote-mips.o.
3676 * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
3677 function.
3678 * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
3679 declaration.
3680 * remote-m32r-sdi.c, remote-mips.c: Delete files.
3681 * symfile.c (generic_load, generic_load): Remove comments.
3682
fb3f3d25
YQ
36832016-03-30 Yao Qi <yao.qi@linaro.org>
3684
3685 * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
3686 0 rather than NULL.
3687
779aa56f
YQ
36882016-03-30 Yao Qi <yao.qi@linaro.org>
3689
3690 * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
3691 (arm_epilogue_frame_this_id): New function.
3692 (arm_epilogue_frame_prev_register): New function.
3693 (arm_epilogue_frame_sniffer): New function.
3694 (arm_epilogue_frame_unwind): New.
3695 (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
3696
c58b006a
YQ
36972016-03-30 Yao Qi <yao.qi@linaro.org>
3698
3699 * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
3700 (arm_stack_frame_destroyed_p_1): ... here. Don't call
3701 arm_pc_is_thumb.
3702 (arm_stack_frame_destroyed_p): Call
3703 thumb_stack_frame_destroyed_p and
3704 arm_stack_frame_destroyed_p_1.
3705
4ae6cc19
DE
37062016-03-30 Doug Evans <dje@google.com>
3707
3708 * python/py-utils.c (host_string_to_python_string): New function.
3709 * python/python-internal.h (host_string_to_python_string): Declare it.
3710 * python/py-*.c (*): Update all calls to
3711 PyString_Decode (str, strlen (str), host_charset (), NULL);
3712 to use host_string_to_python_string instead.
3713
28170b88
MK
37142016-03-30 Marcin Kościelnicki <koriakin@0x04.net>
3715
3716 * remote.c (remote_check_symbols): Allocate own buffer for reply.
3717
a08b52b5
MF
37182016-03-29 Max Filippov <jcmvbkbc@gmail.com>
3719
3720 * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
3721 Use safe_read_memory_integer instead of read_memory_integer.
3722
c37c0ba6
MK
37232016-03-29 Marcin Kościelnicki <koriakin@0x04.net>
3724
3725 * NEWS: Mention support for tracepoints on s390*-linux.
3726
444bca65
DB
37272016-03-29 Don Breazeal <donb@codesourcery.com>
3728
3729 * gdb/value.c (value_actual_type): Fix formatting issue.
3730
cc651c1c
YQ
37312016-03-23 Yao Qi <yao.qi@linaro.org>
3732
3733 * gdbarch.sh (software_single_step): Remove comments.
3734 * gdbarch.h: Regenerated.
3735
c55978a6
YQ
37362016-03-21 Yao Qi <yao.qi@linaro.org>
3737
3738 * arm-tdep.c (arm_record_media): New.
3739 (arm_record_ld_st_reg_offset): Call arm_record_media.
3740
479fe002
YQ
37412016-03-21 Yao Qi <yao.qi@linaro.org>
3742
3743 * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
3744 more syscalls.
3745
9c3f2234
YQ
37462016-03-18 Yao Qi <yao.qi@linaro.org>
3747
3748 * sparc-tdep.c (sparc_software_single_step): Make it static.
3749 * sparc-tdep.h (sparc_software_single_step): Remove declaration.
3750
941319d1
YQ
37512016-03-18 Yao Qi <yao.qi@linaro.org>
3752
3753 * spu-tdep.c (spu_software_single_step): Throw error when
3754 target_read_memory fails.
3755
708bf0a1
JK
37562016-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3757
3758 * linux-thread-db.c (check_pid_namespace_match): Extend the message.
3759
0d5b594f
PA
37602016-03-17 Pedro Alves <palves@redhat.com>
3761 Don Breazeal <donb@codesourcery.com>
3762
3763 PR remote/19496
3764 * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
3765 instead of checking the 'non_stop' global.
3766 * remote.c (remote_add_thread): New parameter 'executing'. Use it
3767 to set the new thread's executing state.
3768 (remote_notice_new_inferior): Rename parameter 'running' to
3769 'executing'. Always set the thread state to THREAD_RUNNING in
3770 non-stop mode, and to THREAD_STOPPED in all-stop mode. Pass
3771 EXECUTING to remote_add_thread and notice_new_inferior.
3772 (remote_update_thread_list): Update to pass executing state, not
3773 running state.
3774
bba960fc
AA
37752016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
3776
3777 * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
3778 to 374.
3779 * syscalls/s390x-linux.xml: Likewise.
3780
5fd0888a
AA
37812016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
3782
3783 * linux-record.c (record_mem_at_reg): New helper function.
3784 (record_linux_system_call): Exploit new helper function where
3785 applicable.
3786
0fc8f115
AA
37872016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
3788
3789 * linux-record.c: Fix whitespace issues; tabify, remove trailing
3790 spaces.
3791
afdab916
AA
37922016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
3793
3794 * linux-record.c (record_linux_system_call): Add missing return
3795 statements to handling of pipe and pipe2 syscalls.
3796
bfeeb14b
DE
37972016-03-16 Doug Evans <dje@google.com>
3798
3799 * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
3800
6b94a855
YQ
38012016-03-16 Yao Qi <yao.qi@linaro.org>
3802
3803 * arm-linux-tdep.c (arm_linux_init_abi): Fix
3804 arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
3805 arm_linux_record_tdep.arg3. Set arm_linux_record_tdep.arg4,
3806 arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
3807 arm_linux_record_tdep.arg7.
3808
1cafadb4
DB
38092016-03-15 Keith Seitz <keiths@redhat.com>
3810
3811 PR breakpoints/18303
3812 * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
3813 look for "::" instead of simply ":".
3814 (cp_search_static_and_baseclasses): Return null_block_symbol for
3815 malformed input.
3816 Remove assertions.
3817 * cp-support.c (cp_find_first_component_aux): Do not return
3818 a prefix length for ':' unless the next character is also ':'.
3819
89c200ed
DE
38202016-03-15 Doug Evans <dje@google.com>
3821
3822 * features/aarch64-core.xml (cpsr_flags): New flags type.
3823 (cpsr): Use it.
3824 * features/aarch64.c: Regenerate.
3825
49b7ae7b
DE
38262016-03-15 Doug Evans <dje@google.com>
3827
3828 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
3829 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
3830 * features/i386/64bit-core.xml (i386_eflags): Ditto.
3831 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
3832 * features/i386/x32-core.xml (i386_eflags): Ditto.
3833
81516450 38342016-03-15 Doug Evans <dje@google.com>
79427bd2 3835 Wei-cheng Wang <cole945@gmail.com>
81516450
DE
3836
3837 Extend flags to support multibit and enum bitfields.
79427bd2 3838 * NEWS: Document new features.
81516450
DE
3839 * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
3840 (c_type_print_varspec_suffix, c_type_print_base): Ditto.
3841 * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
3842 (append_flags_type_field): New function.
3843 (append_flags_type_flag): Call it.
3844 * gdbtypes.h (append_flags_type_field): Declare.
3845 * target-descriptions.c (struct tdesc_type_flag): Delete.
3846 (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
3847 (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
3848 (struct tdesc_type) <u.f>: Delete.
3849 (tdesc_predefined_types): Add "bool".
3850 (tdesc_predefined_type): New function.
3851 (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
3852 Update TDESC_TYPE_FLAGS support.
3853 (tdesc_free_type): Handle TDESC_TYPE_ENUM. Update TDESC_TYPE_FLAGS.
3854 (tdesc_create_flags): Update.
3855 (tdesc_create_enum): New function.
3856 (tdesc_add_field): Initialize start,end to -1.
3857 (tdesc_add_typed_bitfield): New function.
3858 (tdesc_add_bitfield): Call it.
3859 (tdesc_add_flag): Allow TDESC_TYPE_STRUCT. Update.
3860 (tdesc_add_enum_value): New function.
3861 (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
3862 TDESC_TYPE_STRUCT. Handle TDESC_TYPE_ENUM.
3863 * target-descriptions.h (tdesc_create_enum): Declare.
3864 (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
3865 * valprint.c (generic_val_print_enum_1): New function.
3866 (generic_val_print_enum): Call it.
3867 (val_print_type_code_flags): Make static. Handle multibit bitfields
3868 and enum bitfields.
3869 * valprint.h (val_print_type_code_flags): Delete.
3870 * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
3871 Delete. All uses removed.
3872 (tdesc_start_enum): New function.
3873 (tdesc_start_field): Handle multibit and enum bitfields.
3874 (tdesc_start_enum_value): New function.
3875 (enum_value_attributes, enum_children, enum_attributes): New static
3876 globals.
3877 (feature_children): Add "enum".
3878 * features/gdb-target.dtd (enum, evalue): New elements.
3879
54157a25
DE
38802016-03-15 Doug Evans <dje@google.com>
3881
3882 * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
3883 from LONGEST to int.
3884 (struct tdesc_type) <u.f.size>: Ditto.
3885 (tdesc_set_struct_size): Change type of "size" arg from LONGEST
3886 to int. Add assertion size > 0.
3887 (tdesc_create_flags): Ditto.
3888 * target-descriptions.h (tdesc_set_struct_size): Update.
3889 (tdesc_create_flags): Update.
3890 * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
3891 (MAX_VECTOR_SIZE): New macro.
3892 (tdesc_start_struct): Catch conversion errors from LONGEST to int.
3893 (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
3894
73b4f516
DE
38952016-03-15 Doug Evans <dje@google.com>
3896
3897 * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
3898 TYPE_CODE_FLAGS instead of "field_type", for consistency.
3899 * features/i386/amd64-avx-linux.c: Regenerate.
3900 * features/i386/amd64-avx.c: Regenerate.
3901 * features/i386/amd64-avx512-linux.c: Regenerate.
3902 * features/i386/amd64-avx512.c: Regenerate.
3903 * features/i386/amd64-linux.c: Regenerate.
3904 * features/i386/amd64-mpx-linux.c: Regenerate.
3905 * features/i386/amd64-mpx.c: Regenerate.
3906 * features/i386/amd64.c: Regenerate.
3907 * features/i386/i386-avx-linux.c: Regenerate.
3908 * features/i386/i386-avx.c: Regenerate.
3909 * features/i386/i386-avx512-linux.c: Regenerate.
3910 * features/i386/i386-avx512.c: Regenerate.
3911 * features/i386/i386-linux.c: Regenerate.
3912 * features/i386/i386-mmx-linux.c: Regenerate.
3913 * features/i386/i386-mmx.c: Regenerate.
3914 * features/i386/i386-mpx-linux.c: Regenerate.
3915 * features/i386/i386-mpx.c: Regenerate.
3916 * features/i386/i386.c: Regenerate.
3917 * features/i386/x32-avx-linux.c: Regenerate.
3918 * features/i386/x32-avx.c: Regenerate.
3919 * features/i386/x32-avx512-linux.c: Regenerate.
3920 * features/i386/x32-avx512.c: Regenerate.
3921 * features/i386/x32-linux.c: Regenerate.
3922 * features/i386/x32.c: Regenerate.
3923
1eb2dbb8
PA
39242016-03-15 Pedro Alves <palves@redhat.com>
3925
3926 PR gdb/19676
3927 * linux-thread-db.c (try_thread_db_load_1): Leave
3928 info->td_ta_thr_iter_p NULL iff debugging a live process and we
3929 have /proc access.
3930 (find_new_threads_once): Assert that we have a non-NULL
3931 info->td_ta_thr_iter_p instead of checking whether the target has
3932 execution.
3933
16b41842
PA
39342016-03-15 Pedro Alves <palves@redhat.com>
3935
3936 PR gdb/19676
3937 * infrun.c (displaced_step_prepare): Also disable displaced
3938 stepping on NOT_SUPPORTED_ERROR.
3939 * linux-tdep.c (linux_displaced_step_location): If reading auxv
3940 fails, throw NOT_SUPPORTED_ERROR instead of generic error.
3941
70104a90
MK
39422016-03-13 Marcin Kościelnicki <koriakin@0x04.net>
3943
3944 * s390-linux-tdep.c (s390_gen_return_address): New function.
3945 (s390_gdbarch_init): Fill gen_return_address hook.
3946
f2403c39
AB
39472016-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
3948
3949 * symmisc.c (maintenance_info_line_tables): New function.
3950 (maintenance_print_one_line_table): New function.
3951 (_initialize_symmisc): Register 'maint info line-table' command.
3952 * NEWS: Mention new command.
3953
c4b3e547
MK
39542016-03-11 Marcin Kościelnicki <koriakin@0x04.net>
3955
3956 * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
3957 (s390_ax_pseudo_register_push_stack): New function.
3958 (s390_gdbarch_init): Fill ax_pseudo_register_collect and
3959 ax_pseudo_register_push_stack hooks.
3960
f2f3ccb9
SM
39612016-03-10 Simon Marchi <simon.marchi@polymtl.ca>
3962
3963 * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
3964 gdb/function/as_string.py.
3965 * python/lib/gdb/function/as_string.py: New file.
3966 * NEWS: Mention the new $_as_string function.
3967
2343b78a
JM
39682016-03-09 Jose E. Marchesi <jose.marchesi@oracle.com>
3969
3970 * target.h: Fix doc string of target_can_use_hardware_watchpoint.
3971
b69d38af
PA
39722016-03-09 Pedro Alves <palves@redhat.com>
3973
3974 * event-top.c (more_to_come): Delete.
3975 (struct readline_input_state): Delete.
3976 (readline_input_state): Delete.
3977 (get_command_line_buffer): New function.
3978 (command_handler): Update comments. Don't handle NULL commands
3979 here. Do not execute commented lines.
3980 (command_line_append_input_line): New function.
3981 (handle_line_of_input): New function, partly based on
3982 command_line_handler and command_line_input.
3983 (command_line_handler): Rewrite.
3984 * event-top.h (command_handler): New declaration.
3985 (command_loop): Defer command execution to command_handler.
3986 (command_line_input): Update comments. Simplify, using struct
3987 buffer and handle_line_of_input.
3988 * top.h (struct buffer): New forward declaration.
3989 (handle_line_of_input): New declaration.
3990
2669cade
PA
39912016-03-09 Pedro Alves <palves@redhat.com>
3992
3993 * event-top.c (command_line_handler): Use xfree + xstrdup instead
3994 of xrealloc + strcpy.
3995 * main.c (captured_main): Use xstrdup instead of xmalloc plus
3996 manual clear.
3997 * top.c (saved_command_line): Rewrite comment.
3998 (saved_command_line_size): Delete.
3999 (command_line_input): Use xfree + xstrdup instead of xrealloc +
4000 strcpy.
4001 * top.h (saved_command_line_size): Delete declaration.
4002
187212b3
PA
40032016-03-09 Pedro Alves <palves@redhat.com>
4004
4005 * event-top.c: Include buffer.h.
4006 (gdb_readline_no_editing_callback): Use struct buffer instead
4007 of xrealloc.
4008
7a3bde34
PA
40092016-03-09 Pedro Alves <palves@redhat.com>
4010
4011 * common/buffer.h (buffer_grow_char): New function.
4012 * top.c: Include buffer.h.
4013 (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
4014 'prompt'. Use struct buffer instead of xrealloc.
4015
c5c136ea
PA
40162016-03-09 Pedro Alves <palves@redhat.com>
4017
4018 * defs.h (gdb_readline): Delete declaration.
4019 * top.c (gdb_readline): Rename to ...
4020 (gdb_readline_no_editing): ... this, and make static.
4021
720d2e96
PA
40222016-03-09 Pedro Alves <palves@redhat.com>
4023
4024 * utils.c (prompt_for_continue): Update comments.
4025
608ff013
PA
40262016-03-09 Pedro Alves <palves@redhat.com>
4027
4028 * event-top.c (async_annotation_suffix): Delete.
4029 (top_level_prompt, command_line_handler): Don't use
4030 'async_annotation_suffix' and simplify.
4031 * event-top.h (async_annotation_suffix): Delete declaration.
4032 (init_main): Remove reference to 'async_annotation_suffix'.
4033
c70061cf
PA
40342016-03-09 Pedro Alves <palves@redhat.com>
4035
4036 * event-top.c (gdb_readline2): Rename to ...
4037 (gdb_readline_no_editing_callback): ... this.
4038 (change_line_handler, stdin_event_handler)
4039 (gdb_setup_readline): Adjust.
4040 * event-top.h (gdb_readline2): Rename to ...
4041 (gdb_readline_no_editing_callback): ... this, and move closer to
4042 other readline-related declarations.
4043 * mi/mi-interp.c (mi_interpreter_resume): Adjust.
4044
8a243832
PA
40452016-03-09 Pedro Alves <palves@redhat.com>
4046
4047 * top.c (window_hook): Delete.
4048 (command_loop): Remove references to window_hook.
4049
cc2c4da8
MK
40502016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
4051
4052 * corefile.c (safe_read_memory_unsigned_integer): New function.
4053 * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
4054 * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
4055
a67914de
MK
40562016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
4057
4058 * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
4059 (rs6000_gen_return_address): New function.
4060 (rs6000_gdbarch_init): Wire in the above.
4061
2a2fa07b
MK
40622016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
4063
4064 * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
4065 (rs6000_gdbarch_init): Wire in the above.
4066
bc0e3f49
AA
40672016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
4068
4069 * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
4070 instructions that do nothing or are conditional traps.
4071
6d53bec8
AA
40722016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
4073
4074 * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
4075 frame func's PC in info->func before any other failure can occur.
4076 (s390_frame_this_id): Use frame_id_build_unavailable_stack if
4077 info->func has been filled out.
4078
f7990f16
PA
40792016-03-09 Pedro Alves <palves@redhat.com>
4080
4081 * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
4082
087ccc6a
PA
40832016-03-09 Pedro Alves <palves@redhat.com>
4084
4085 * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
4086
114d7832
PA
40872016-03-09 Pedro Alves <palves@redhat.com>
4088
4089 * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
4090 order is BFD_ENDIAN_BIG or if the cris version is unsupported.
4091
d7a87b5e
PA
40922016-03-09 Pedro Alves <palves@redhat.com>
4093
4094 * doublest.c: Extend comments.
4095 (floatformat_to_doublest, floatformat_from_doublest): Copy the
4096 floatformat's total size, not the host type's size.
4097
b79497cb
PA
40982016-03-09 Pedro Alves <palves@redhat.com>
4099
4100 * doublest.c (floatformat_totalsize_bytes): New function.
4101 (floatformat_from_type): Assert that the type's length is at least
4102 as long as the floatformat's totalsize.
4103 * doublest.h (floatformat_totalsize_bytes): New declaration.
4104 * gdbtypes.c (arch_float_type): Assert that the type's length is
4105 at least as long as the floatformat's totalsize.
4106
aacca8a7
PA
41072016-03-09 Pedro Alves <palves@redhat.com>
4108
4109 * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
4110 format to floatformats_ieee_double.
4111
e6c2f47b
PA
41122016-03-07 Pedro Alves <palves@redhat.com>
4113
4114 * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
4115 before calling bfd_get_flavour.
4116
cb86f388
DC
41172016-03-05 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
4118
4119 * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
4120 (avr_push_dummy_call): Correct last needed argument register.
4121 Write MSB of argument into register and subsequent bytes into
4122 other registers in decreasing order.
4123
f1771dce
YQ
41242016-03-04 Yao Qi <yao.qi@linaro.org>
4125
4126 * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
4127 condition check. Record the right D register number.
4128
ca92db2d
YQ
41292016-03-04 Yao Qi <yao.qi@linaro.org>
4130
4131 * arm-tdep.c (arm_record_extension_space): Remove code
4132 printing "Process record does not support".
4133 (arm_record_data_proc_misc_ld_str): Likewise.
4134 (decode_insn): Call arm_record_extension_space if condition
4135 is 0xf. Call arm_record_unsupported_insn if ret isn't
4136 ARM_RECORD_SUCCESS. Use 'ret' instead of 'insn_id' to hold
4137 the value of thumb2_record_decode_insn_handler.
4138
73519cce
SM
41392016-03-04 Simon Marchi <simon.marchi@ericsson.com>
4140
4141 * features/feature_to_c.sh: Print the help when passing no
4142 argument.
4143
650beae3
BH
41442016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
4145
4146 * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
4147
28586665
BH
41482016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
4149
4150 * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
4151
f2489477
AA
41522016-03-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
4153
4154 * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
4155 exception when attempting to access the inferior's backchain.
4156
d5219069
YQ
41572016-02-29 Yao Qi <yao.qi@linaro.org>
4158
4159 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
4160 eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
4161 Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
4162 for aarch64_sys_epoll_create1.
4163
253b4d3a
YQ
41642016-02-29 Yao Qi <yao.qi@linaro.org>
4165
4166 * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
4167 <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
4168 <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
4169 * linux-record.c (record_linux_system_call): Handle them.
4170
38899f16
IB
41712016-02-28 Iain Buclaw <ibuclaw@gdcproject.org>
4172
4173 * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
4174 cyclic imports.
4175
1ed0c2a4
KS
41762016-02-26 Keith Seitz <keiths@redhat.com>
4177
4178 * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
4179 to avoid invalid conversion from void *.
4180
9fde51ed
YQ
41812016-02-26 Yao Qi <yao.qi@linaro.org>
4182
4183 * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
4184 per bit 8. Check bit 20 instead of bit 4 for VMOV
4185 instruction. Record D registers for instructions changing
4186 S registers. Change of the order of length and address
4187 in record_buf_mem array.
4188
1f33efec
YQ
41892016-02-26 Yao Qi <yao.qi@linaro.org>
4190
4191 * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
4192 number of Rd.
4193
1547ef64
DE
41942016-02-25 Doug Evans <dje@google.com>
4195
4196 * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
4197 compiler warning.
4198 (recv_long_data): Ditto.
4199
166616ce
SM
42002016-02-25 Simon Marchi <simon.marchi@ericsson.com>
4201
4202 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
4203 Initialize variables.
4204
1eb7c2d8
AT
42052016-02-25 Antoine Tremblay <antoine.tremblay@ericsson.com>
4206
4207 * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
4208 (ax_reg_mask): Likewise.
4209
e7ad2f14
PA
42102016-02-24 Pedro Alves <palves@redhat.com>
4211
4212 * linux-nat.c (save_sigtrap) Delete.
4213 (stop_wait_callback): Call save_stop_reason instead of
4214 save_sigtrap.
4215 (check_stopped_by_breakpoint): Rename to ...
4216 (save_stop_reason): ... this. Bits of save_sigtrap folded here.
4217 Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
4218 GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT. Factor out
4219 common code between the USE_SIGTRAP_SIGINFO and
4220 !USE_SIGTRAP_SIGINFO blocks.
4221 (linux_nat_filter_event): Call save_stop_reason instead of
4222 save_sigtrap.
4223 * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
4224 si_code for MIPS.
4225 * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table. Add
4226 comments on MIPS behavior.
4227 (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
4228
338435ef
MK
42292016-02-24 Marcin Kościelnicki <koriakin@0x04.net>
4230
4231 * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
4232 to avoid spurious warnings.
4233
bf74e428
GB
42342016-02-24 Gary Benson <gbenson@redhat.com>
4235
4236 * exec.c (exec_file_locate_attach): Do not attempt to
4237 locate main executable locally if not found in sysroot.
4238
62fb310b
JB
42392016-02-24 Joel Brobecker <brobecker@adacore.com>
4240
4241 GDB 7.11 released.
4242
50ae56ec
WW
42432016-02-24 Wei-cheng Wang <cole945@gmail.com>
4244
4245 * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
4246 unavailable PC/SP to build unavailable frame.
4247
cce0e923
DE
42482016-02-23 Doug Evans <dje@google.com>
4249
4250 Extend "skip" command to support -file, -gfile, -function, -rfunction.
4251 * NEWS: Document new features.
4252 * skip.c: #include "fnmatch.h", "gdb_regex.h".
4253 (skiplist_entry) <file>: Renamed from filename.
4254 <function>: Renamed from function_name.
4255 <file_is_glob, function_is_regexp>: New members.
4256 <compiled_function_regexp, compiled_function_regexp_is_valid>:
4257 New members.
4258 (make_skip_entry): New function.
4259 (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
4260 (make_free_skiplist_entry_cleanup): New function.
4261 (skip_file_command): Update.
4262 (skip_function, skip_function_command): Update.
4263 (compile_skip_regexp): New functions.
4264 (skip_command): Add support for new options.
4265 (skip_info): Update.
4266 (skip_file_p, skip_gfile_p): New functions.
4267 (skip_function_p, skip_rfunction_p): New functions.
4268 (function_name_is_marked_for_skip): Update and simplify.
4269 (_initialize_step_skip): Update.
4270 * symtab.c: #include "fnmatch.h".
4271 (compare_glob_filenames_for_search): New function.
4272 * symtab.h (compare_glob_filenames_for_search): Declare.
4273 * utils.c (count_path_elements): New function.
4274 (strip_leading_path_elements): New function.
4275 * utils.h (count_path_elements): Declare.
4276 (strip_leading_path_elements): Declare.
4277
12545665
SM
42782016-02-23 Simon Marchi <simon.marchi@ericsson.com>
4279
4280 * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
4281 (thumb_process_displaced_insn): Likewise.
4282 (arm_process_displaced_insn): Adjust calls.
4283
c955ae73
YQ
42842016-02-23 Yao Qi <yao.qi@linaro.org>
4285
4286 * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
4287 Remove.
4288 <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
4289 <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
4290 <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
4291 <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
4292 <aarch64_sys_linkat, aarch64_sys_renameat>: New.
4293 <aarch64_sys_faccessat>: New.
4294 <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
4295 <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
4296 <aarch64_sys_newfstatat>: New.
4297 (UNSUPPORTED_SYSCALL_MAP): New macro.
4298 (aarch64_canonicalize_syscall): Add missing syscalls.
4299
ac46107c
JK
43002016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4301
4302 * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
4303
01e57735
YQ
43042016-02-22 Yao Qi <yao.qi@linaro.org>
4305
4306 * arm-tdep.c: Fix code format issues.
4307
30a6a7f0
IB
43082016-02-21 Iain Buclaw <ibuclaw@gdcproject.org>
4309
4310 * d-namespace.c (d_lookup_symbol_imports): Remove argument
4311 'search_parents'. All callers updated.
4312
f79a3bae
MK
43132016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
4314
4315 * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
4316 (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
4317
012b3a21
WT
43182016-02-18 Walfred Tedeschi <walfred.tedeschi@intel.com>
4319
4320 * NEWS: Add entry for bound violation.
4321 * amd64-linux-tdep.c (amd64_linux_init_abi_common):
4322 Add handler for segmentation fault.
4323 * gdbarch.sh (handle_segmentation_fault): New.
4324 * gdbarch.c: Regenerate.
4325 * gdbarch.h: Regenerate.
4326 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
4327 (SIG_CODE_BONDARY_FAULT): New define.
4328 (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
4329 * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
4330 * i386-tdep.c (i386_mpx_enabled): Add as external.
4331 * i386-tdep.c (i386_mpx_enabled): Add as external.
4332 * infrun.c (handle_segmentation_fault): New function.
4333 (print_signal_received_reason): Use handle_segmentation_fault.
4334
5f034a78
MK
43352016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
4336
4337 * arch-utils.c (default_guess_tracepoint_registers): New function.
4338 * arch-utils.h (default_guess_tracepoint_registers): New prototype.
4339 * gdbarch.c: Regenerate.
4340 * gdbarch.h: Regenerate.
4341 * gdbarch.sh: Add guess_tracepoint_registers hook.
4342 * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
4343
88178e82
GB
43442016-02-17 Gary Benson <gbenson@redhat.com>
4345
4346 * exec.c (exec_file_locate_attach): Add missing cleanup.
4347
4041ed77
DB
43482016-02-16 Don Breazeal <donb@codesourcery.com>
4349
4350 PR remote/19496
4351 * remote.c (remove_new_fork_children): Check for pending
4352 fork status in thread_info.suspend.
4353
b442c911
YQ
43542016-02-16 Yao Qi <yao.qi@linaro.org>
4355
4356 * arm-linux-tdep.c (arm_linux_software_single_step): Assign
4357 'old_chain' later.
4358
553cb527
YQ
43592016-02-16 Yao Qi <yao.qi@linaro.org>
4360
4361 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
4362 <syscall_next_pc>: Remove argument PC. Callers updated.
4363 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
4364 Remove argument PC. Get pc from regcache_read_pc.
4365 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
4366 argument PC.
4367
0a0da556
YQ
43682016-02-15 Yao Qi <yao.qi@linaro.org>
4369
4370 * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
4371
01113bc1
YQ
43722016-02-12 Yao Qi <yao.qi@linaro.org>
4373
4374 * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
4375 nextpc according to instruction.
4376
ed443b61
YQ
43772016-02-12 Yao Qi <yao.qi@linaro.org>
4378
4379 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
4380 self->ops->fixup if it isn't NULL.
4381 * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
4382 (struct arm_get_next_pcs_ops) <fixup>: New field.
4383 * arch/arm-linux.c: Include common-regcache.h and
4384 arch/arm-get-next-pcs.h.
4385 (arm_linux_get_next_pcs_fixup): New function.
4386 * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
4387 * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
4388 it with arm_linux_get_next_pcs_fixup.
4389 (arm_linux_software_single_step): Move code to
4390 arm_linux_get_next_pcs_fixup.
4391 * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
4392
d21b5f15
MK
43932016-02-12 Marcin Kościelnicki <koriakin@0x04.net>
4394
4395 * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
4396 and return NULL.
4397
33b4777c
MM
43982016-02-12 Markus Metzger <markus.t.metzger@intel.com>
4399
4400 * frame.h (skip_tailcall_frames): Update comment.
4401 * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
4402 if only artificial frames are found. Update comment.
4403 (frame_unwind_caller_id): Handle NULL return.
4404 (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
4405 skip_artificial_frames does not return NULL.
4406 (frame_pop): Add an error if only tailcall frames are found.
4407 * infcmd.c (finish_command): Move skip_tailcall_frames call into
4408 forward-execution case. Add an error if only tailcall frames are
4409 found.
4410
a038fa3e
MM
44112016-02-12 Markus Metzger <markus.t.metzger@intel.com>
4412
4413 * stack.c (frame_info): Check frame_unwind_caller_id.
4414
2f3ef606
MM
44152016-02-12 Markus Metzger <markus.t.metzger@intel.com>
4416
4417 * frame.h (skip_tailcall_frames): New.
4418 * frame.c (skip_tailcall_frames): New.
4419 (frame_pop): Call skip_tailcall_frames.
4420 * infcmd.c (finish_command): Call skip_tailcall_frames.
4421
e352bf0a
PA
44222016-02-11 Pedro Alves <palves@redhat.com>
4423
4424 * Makefile.in (check-parallel): New rule.
4425
bec2ab5a
SM
44262016-02-11 Simon Marchi <simon.marchi@ericsson.com>
4427
4428 * arm-tdep.c (arm_skip_prologue): Remove unused variables.
4429 (arm_analyze_prologue): Likewise.
4430 (arm_scan_prologue): Likewise.
4431 (arm_m_exception_prev_register): Likewise.
4432 (arm_copy_block_xfer): Likewise.
4433 (thumb2_copy_block_xfer): Likewise.
4434 (arm_decode_miscellaneous): Likewise.
4435 (arm_decode_ld_st_word_ubyte): Likewise.
4436 (arm_decode_svc_copro): Likewise.
4437 (thumb2_decode_svc_copro): Likewise.
4438 (thumb_copy_16bit_ldr_literal): Likewise.
4439 (thumb_copy_pop_pc_16bit): Likewise.
4440 (decode_thumb_32bit_ld_mem_hints): Likewise.
4441 (arm_show_force_mode): Likewise.
4442 (_initialize_arm_tdep): Likewise.
4443 (arm_record_strx): Likewise.
4444 (arm_record_extension_space): Likewise.
4445 (arm_record_data_proc_misc_ld_str): Likewise.
4446 (arm_record_exreg_ld_st_insn): Likewise.
4447 (arm_record_vfp_data_proc_insn): Likewise.
4448 (arm_record_coproc_data_proc): Likewise.
4449 (thumb_record_misc): Likewise.
4450 (thumb_record_ldm_stm_swi): Likewise.
4451 (thumb2_record_ld_st_dual_ex_tbb): Likewise.
4452 (thumb2_record_ld_mem_hints): Likewise.
4453 (thumb2_record_lmul_lmla_div): Likewise.
4454 (thumb2_record_asimd_struct_ld_st): Likewise.
4455 (arm_process_record): Likewise.
4456
2ba163c8
SM
44572016-02-11 Simon Marchi <simon.marchi@ericsson.com>
4458
4459 * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
4460 (ARM displaced stepping support): Remove reference to
4461 arm_displaced_step_copy_insn in comment.
4462 * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
4463 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
4464 reference to arm_displaced_step_copy_insn in comment.
4465
615234c1
SM
44662016-02-11 Simon Marchi <simon.marchi@ericsson.com>
4467
4468 * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
4469 (thumb_copy_b): Likewise.
4470 (arm_decode_b_bl_ldmstm): Likewise.
4471 (thumb_copy_16bit_ldr_literal): Likewise.
4472 (thumb_copy_pop_pc_16bit): Likewise.
4473
82e9becd
AT
44742016-02-11 Antoine Tremblay <antoine.tremblay@ericsson.com>
4475
4476 * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
4477 than loc->gdbarch.
4478
5ac87a99
MK
44792016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
4480
4481 * tracefile-tfile.c (trace_tdesc): New static variable.
4482 (tfile_open): Clear trace_tdesc, call target_find_description.
4483 (tfile_interp_line): Recognize tdesc lines.
4484 (tfile_close): Clear trace_tdesc.
4485 (tfile_xfer_partial_features): New function.
4486 (tfile_xfer_partial): Call tfile_xfer_partial_features.
4487 (tfile_append_tdesc_line): New function.
4488
18d3cec5
MK
44892016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
4490
4491 * ctf.c (ctf_write_tdesc): New function.
4492 (ctf_write_ops): Wire in ctf_write_tdesc.
4493 * tracefile-tfile.c (tfile_write_tdesc): New function.
4494 (tfile_write_ops): Wire in tfile_write_tdesc.
4495 * tracefile.c (trace_save): Call write_tdesc method.
4496 * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
4497 * xml-tdesc.c (target_fetch_description_xml): New function.
4498 * xml-tdesc.h: Add target_fetch_description_xml prototype.
4499
550dc4e2
SM
45002016-02-10 Simon Marchi <simon.marchi@ericsson.com>
4501
4502 * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
4503 (arm_decode_dp_misc): Likewise.
4504
62e5fd57
MK
45052016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
4506
4507 * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
4508 (amd64_init_abi): Fill ax_pseudo_register_collect hook.
4509 * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
4510 misleading comment.
4511 (i386_pseudo_register_write): Ditto.
4512 (i386_ax_pseudo_register_collect): New function.
4513 (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
4514 * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
4515
e909d859
MK
45162016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
4517
4518 * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
4519 instead of gdb order.
4520
473b99e5
MK
45212016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
4522
4523 * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
4524 check.
4525
1233c0ba
JB
45262016-02-10 Joel Brobecker <brobecker@adacore.com>
4527
4528 * NEWS: Create a new section for the next release branch.
4529 Rename the section of the current branch, now that it has
4530 been cut.
4531
d1dc0942
JB
45322016-02-10 Joel Brobecker <brobecker@adacore.com>
4533
4534 GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
4535 * version.in: Bump version to 7.11.50.DATE-git.
4536
9ef9e6a6
KS
45372016-02-09 Keith Seitz <keiths@redhat.com>
4538
4539 PR breakpoints/19546
4540 * breakpoint.c (breakpoint_event_location_empty_p): New function.
4541 (update_breakpoints_after_exec, bkpt_re_set): Use this new function
4542 instead of event_location_empty_p.
4543
39a67dc4
KS
45442016-02-09 Keith Seitz <keiths@redhat.com>
4545
4546 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
4547 string_to_event_location_basic instead of string_to_event_location.
4548
a96e36da
KS
45492016-02-09 Keith Seitz <keiths@redhat.com>
4550
4551 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
4552 leading whitespace and use string_to_event_location_basic instead
4553 of new_linespec_location.
4554
9f61929f
KS
45552016-02-09 Keith Seitz <keiths@redhat.com>
4556
4557 PR python/19506
4558 * python/py-breakpoint.c (bppy_init): Use
4559 string_to_event_location_basic instead of new_linespec_location.
4560
eeb1af43
KS
45612016-02-09 Keith Seitz <keiths@redhat.com>
4562
4563 * location.c (string_to_explicit_location): Note that "-p" is
4564 reserved for probe locations and return NULL for any input
4565 that starts with that.
4566 (string_to_event_location): Move "legacy" linespec code to ...
4567 (string_to_event_location_basic): ... here.
4568 * location.h (string_to_event_location): Update comment.
4569 (string_to_event_location_basic): New function.
4570
1e94266c
SM
45712016-02-09 Simon Marchi <simon.marchi@ericsson.com>
4572
4573 * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
4574 to AC_OUTPUT. Remove "exit 0" at the end.
4575 * configure: Regenerate.
4576
2a7f3dff
PA
45772016-02-09 Pedro Alves <palves@redhat.com>
4578
4579 PR breakpoints/19548
4580 * breakpoint.c (create_overlay_event_breakpoint): Don't update
4581 global location list here.
4582 (create_longjmp_master_breakpoint)
4583 (create_std_terminate_master_breakpoint)
4584 (create_exception_master_breakpoint, create_jit_event_breakpoint)
4585 (update_breakpoint_locations):
4586 (breakpoint_re_set): Update global location list after all
4587 breakpoints are re-set.
4588
54887903
SM
45892016-02-08 Simon Marchi <simon.marchi@ericsson.com>
4590
4591 * remote.c (remote_register_number_and_offset): Remove unused
4592 variable(s).
4593 (remote_thread_always_alive): Likewise.
4594 (remote_update_thread_list): Likewise.
4595 (process_initial_stop_replies): Likewise.
4596 (remote_start_remote): Likewise.
4597 (remote_check_symbols): Likewise.
4598 (discard_pending_stop_replies): Likewise.
4599 (process_stop_reply): Likewise.
4600 (putpkt_binary): Likewise.
4601 (getpkt): Likewise.
4602 (remote_add_target_side_condition): Likewise.
4603 (remote_insert_breakpoint): Likewise.
4604 (remote_supports_stopped_by_sw_breakpoint): Likewise.
4605 (remote_supports_stopped_by_hw_breakpoint): Likewise.
4606 (remote_xfer_partial): Likewise.
4607 (remote_read_btrace): Likewise.
4608 (remote_async_serial_handler): Likewise.
4609 (remote_thread_events): Likewise.
4610 (_initialize_remote): Likewise.
4611
30914ca8
SM
46122016-02-07 Simon Marchi <simon.marchi@polymtl.ca>
4613
4614 * varobj.h (varobj_delete): Remove dellist parameter, update and
4615 move documentation here.
4616 * varobj.c (struct cpstack, cppush, cppop): Remove.
4617 (delete_variable): Remove resultp (first) parameter.
4618 (delete_variable_1): Likewise.
4619 (varobj_delete): Remove dellist parameter and unused code.
4620 (update_dynamic_varobj_children): Adjust varobj_delete call.
4621 (update_type_if_necessary): Likewise.
4622 (varobj_set_visualizer): Likewise.
4623 (varobj_update): Likewise.
4624 (value_of_root): Likewise.
4625 (varobj_invalidate_iter): Likewise.
4626 * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
4627
e42e5352
YQ
46282016-02-04 Yao Qi <yao.qi@linaro.org>
4629
4630 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
4631 0 before handling 'F' and set it back afterwards.
4632
6456a18b
SM
46332016-02-02 Simon Marchi <simon.marchi@ericsson.com>
4634
4635 * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
4636
3f2f6cb5
WT
46372016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
4638
4639 * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
4640 New types.
4641 (compat_siginfo): New bound fields added.
4642 (compat_x32_siginfo): New field added.
4643 (cpt_si_addr_lsb): New define.
4644 (compat_siginfo_from_siginfo): Use nat_siginfo.
4645 (siginfo_from_compat_siginfo): Use nat_siginfo.
4646 (compat_x32_siginfo_from_siginfo): Likewise.
4647 (siginfo_from_compat_x32_siginfo): Likewise.
4648
96b5c49f
WT
46492016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
4650
4651 * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
4652 structure to the siginfo if extra_fields contains
4653 LINUX_SIGINFO_FIELD_ADDR_BND.
4654
190b495d
WT
46552016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
4656
4657 * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
4658 * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
4659 * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
4660 function.
4661 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
4662 x86_linux_get_siginfo_type for the amd64 abi.
4663 * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
4664 function.
4665 (i386_linux_init_abi): Add new function at the i386 ABI
4666 initialization.
4667
43564574
WT
46682016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
4669
4670 * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
4671 (linux_siginfo_extra_fields): New enum type.
4672 * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
4673 (linux_get_siginfo_type): Use new function.
4674
93813b37
WT
46752016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
4676
4677 * nat/amd64-linux-siginfo.c: New file.
4678 * nat/amd64-linux-siginfo.h: New file.
4679 * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
4680 (amd64-linux-siginfo.o): New rule.
4681 * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
4682 * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
4683 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
4684 (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
4685 (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
4686 (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
4687 (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
4688 (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
4689
5fdf6324
AB
46902016-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
4691
4692 * value.c (max_value_size): New variable.
4693 (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
4694 (set_max_value_size): New function.
4695 (show_max_value_size): New function.
4696 (check_type_length_before_alloc): New function.
4697 (allocate_value_contents): Call check_type_length_before_alloc.
4698 (set_value_enclosing_type): Likewise.
4699 (_initialize_values): Add set/show handler for max-value-size.
4700 * NEWS: Mention new set/show command.
4701
5fa13070
SM
47022016-01-31 Simon Marchi <simon.marchi@polymtl.ca>
4703
4704 * varobj.h (struct varobj): Fix typos in comments.
4705 (struct lang_varobj_ops): Likewise.
4706 * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
4707 (varobj_create): Move misplaced comment.
4708
a2e3e93f
SM
47092016-01-29 Simon Marchi <simon.marchi@ericsson.com>
4710
4711 * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
4712 to for include additional lines.
4713 * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
4714
56e374a6
SM
47152016-01-28 Simon Marchi <simon.marchi@ericsson.com>
4716
4717 * gnulib/import/Makefile.am: Regenerate.
4718 * gnulib/import/Makefile.in: Regenerate.
4719 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4720 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
4721
8424cc97
SM
47222016-01-28 Simon Marchi <simon.marchi@ericsson.com>
4723
4724 * remote.c (skip_to_semicolon): Remove.
4725 (remote_parse_stop_reply): Use strchrnul instead of
4726 skip_to_semicolon.
4727 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
4728 strchrnul.
4729 * gnulib/aclocal.m4: Regenerate.
4730 * gnulib/config.in: Regenerate.
4731 * gnulib/configure: Regenerate.
4732 * gnulib/import/Makefile.am: Regenerate.
4733 * gnulib/import/Makefile.in: Regenerate.
4734 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4735 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
4736 * gnulib/import/m4/rawmemchr.m4: New file.
4737 * gnulib/import/m4/strchrnul.m4: New file.
4738 * gnulib/import/rawmemchr.c: New file.
4739 * gnulib/import/rawmemchr.valgrind: New file.
4740 * gnulib/import/strchrnul.c: New file.
4741 * gnulib/import/strchrnul.valgrind: New file.
4742
4a6a1ed4
YQ
47432016-01-28 Yao Qi <yao.qi@linaro.org>
4744
4745 * breakpoint.c (build_target_command_list): Don't call continue
4746 if aexpr is NULL.
4747 (build_target_condition_list): Likewise.
4748
94715c17
KB
47492016-01-27 Kevin Buettner <kevinb@redhat.com>
4750
4751 * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
4752 bytes as aggregates.
4753
c07af0ab
JB
47542016-01-27 Joel Brobecker <brobecker@adacore.com>
4755
4756 * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
4757 Linespec Maintainers.
4758
41548caa
SM
47592016-01-26 Simon Marchi <simon.marchi@ericsson.com>
4760
4761 * common/common-utils.c (skip_spaces): Fix comment.
4762 (skip_to_space_const): Likewise.
4763
4d18591b
YQ
47642016-01-25 Yao Qi <yao.qi@linaro.org>
4765
4766 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
4767 Remove argument pc. Get pc by regcache_read_pc. Callers updated.
4768 (arm_deal_with_atomic_sequence_raw): Likewise.
4769 (thumb_get_next_pcs_raw): Likewise.
4770 (arm_get_next_pcs_raw): Likewise.
4771 (arm_get_next_pcs): Remove argument pc. Callers updated.
4772 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
4773
a579cd9a
MW
47742016-01-25 Mark Wielaard <mjw@redhat.com>
4775
4776 * ada-lang.c (ada_evaluate_subexp): Add proper else block.
4777 * c-typeprint.c (c_type_print_base): Fix misleading indentation of
4778 if statement.
4779 * inflow.c (child_terminal_ours_1): Fix misleading indentation of
4780 statement block by introducing an else.
4781 * linux-record.c (record_linux_sockaddr): Fix misleading indentation
4782 of return statements.
4783 (record_linux_msghdr): Likewise.
4784
a2077e25
PA
47852016-01-25 Pedro Alves <palves@redhat.com>
4786
4787 PR threads/19461
4788 * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
4789 parent/child running states.
4790
1d2736d4
PA
47912016-01-25 Pedro Alves <palves@redhat.com>
4792
4793 PR gdb/19494
4794 * linux-nat.c (kill_one_lwp): New, factored out from ...
4795 (kill_callback): ... this.
4796 (kill_wait_callback): New, factored out from ...
4797 (kill_wait_one_lwp): ... this.
4798 (kill_unfollowed_fork_children): New function.
4799 (linux_nat_kill): Use it.
4800
b2bae2f7
JB
48012016-01-22 John Baldwin <jhb@FreeBSD.org>
4802
4803 * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
4804
d86feca3
YQ
48052016-01-22 Yao Qi <yao.qi@linaro.org>
4806
4807 * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
4808 instead of warning.
4809 (store_fpregs, fetch_regs, store_regs): Likewise.
4810 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
4811 (fetch_vfp_regs, store_vfp_regs): Likewise.
4812
b35a8b2f
DE
48132016-01-21 Doug Evans <dje@google.com>
4814
4815 * breakpoint.c (init_breakpoint_sal): Add comment.
4816
f906b857
MK
48172016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
4818
4819 * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
4820
4a099de2
AB
48212016-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
4822
4823 * disasm.c (maybe_add_dis_line_entry): Rename to...
4824 (add_dis_line_entry): ...this, and update header comment.
4825 (do_mixed_source_and_assembly): Now use add_dis_line_entry.
4826
a994041d
PA
48272016-01-21 Pedro Alves <palves@redhat.com>
4828
4829 * Makefile.in (COMPILER_CFLAGS): New.
4830 (CXXFLAGS): Get it from configure.
4831 (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
4832 instead of CFLAGS.
4833 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
4834 COMPILER_CFLAGS.
4835 * configure: Regenerate.
4836
305e13e6
JB
48372016-01-21 Joel Brobecker <brobecker@adacore.com>
4838
4839 * location.h (new_address_location): Add new parameters
4840 "addr_string" and "addr_string_len".
4841 (get_address_string_location): Add declaration.
4842 * location.c (new_address_location): Add new parameters
4843 "addr_string" and "addr_string_len". If not NULL, store
4844 a copy of the addr_string in the new location as well.
4845 (get_address_string_location): New function.
4846 (string_to_event_location): Update call to new_address_location.
4847 * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
4848 Save the event location in the parser's state before
4849 passing it to convert_address_location_to_sals.
4850 * breakpoint.c (create_thread_event_breakpoint): Update call
4851 to new_address_location.
4852 (init_breakpoint_sal): Get the event location's string, if any,
4853 and use it to update call to new_address_location.
4854 * python/py-finishbreakpoint.c (bpfinishpy_init):
4855 Update call to new_address_location.
4856 * spu-tdep.c (spu_catch_start): Likewise.
4857
4858 * config/djgpp/fnchange.lst: Add entries for
4859 gdb/testsuite/gdb.base/break-fun-addr1.c and
4860 gdb/testsuite/gdb.base/break-fun-addr2.c.
4861
f7a6a40d
YQ
48622016-01-21 Yao Qi <yao.qi@linaro.org>
4863
4864 * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
4865 is_thumb and set it according to CPSR saved on the stack.
4866 (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
4867 arm_linux_sigreturn_next_pc.
4868
5f5dfff6
SM
48692016-01-20 Simon Marchi <simon.marchi@polymtl.ca>
4870
4871 * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
4872 Fix enumerators sort key function.
4873
be56871e
JB
48742016-01-20 Joel Brobecker <brobecker@adacore.com>
4875
b12e5614 4876 * printcmd.c (print_scalar_formatted): Move binary operator from
be56871e
JB
4877 end of line to beginning of next line. Adjust formatting
4878 accordingly.
4879
f2feec98
JB
48802016-01-19 John Baldwin <jhb@FreeBSD.org>
4881
4882 * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
4883 "len" with sysctl.
4884
20a0aab3
JB
48852016-01-19 John Baldwin <jhb@FreeBSD.org>
4886
4887 * fbsd-tdep.c (find_stop_signal): Remove.
4888 (struct fbsd_collect_regset_section_cb) <lwp>: New field.
4889 <stop_signal>: New field.
4890 <abort_iteration>: New field.
4891 (fbsd_collect_regset_section_cb): Use new fields.
4892 (fbsd_collect_thread_registers): New function.
4893 (struct fbsd_corefile_thread_data): New structure.
4894 (fbsd_corefile_thread): New function.
4895 (fbsd_make_corefile_notes): Use new function to dump notes for each
4896 non-exited thread in a process.
4897
6e9567fe
JB
48982016-01-19 John Baldwin <jhb@FreeBSD.org>
4899
4900 * configure.ac: Check for support for LWP names on FreeBSD.
4901 * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
4902 [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
4903 (fbsd_fetch_kinfo_proc): Move function earlier.
4904 [PT_LWPINFO] (fbsd_thread_alive): New function.
4905 [PT_LWPINFO] (fbsd_pid_to_str): New function.
4906 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
4907 [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
4908 [PT_LWPINFO] (fbsd_add_threads): New function.
4909 [PT_LWPINFO] (fbsd_update_thread_list): New function.
4910 [PT_LWPINFO] New variable super_resume.
4911 [PT_LWPINFO] (resume_one_thread_cb): New function.
4912 [PT_LWPINFO] (resume_all_threads_cb): New function.
4913 [PT_LWPINFO] (fbsd_resume): New function.
4914 (fbsd_remember_child): Save full ptid instead of plain pid.
4915 (fbsd_is_child_pending): Return ptid of saved child process.
4916 (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
4917 first stop.
4918 [PT_LWP_EVENTS] Handle LWP events.
4919 [TDP_RFPPWAIT] Include LWP in child ptid.
4920 (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
4921 (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
4922 Add threads for existing processes.
4923 (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
4924 "fbsd_thread_alive".
4925 Set "to_pid_to_str" to "fbsd_pid_to_str".
4926 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
4927 "fbsd_thread_name".
4928 [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
4929 Set "to_has_thread_control" to "tc_schedlock".
4930 Set "to_resume" to "fbsd_resume".
4931 (_initialize_fbsd_nat): New function.
4932 * configure: Regenerate.
4933 * config.in: Regenerate.
4934
94309df7
JB
49352016-01-19 John Baldwin <jhb@FreeBSD.org>
4936
4937 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
4938 get_ptrace_pid.
4939 (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
4940 (amd64bsd_dr_get): Use get_ptrace_pid.
4941 (amd64bsd_dr_set): Use get_ptrace_pid.
4942 * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
4943 (i386bsd_store_inferior_registers): Use get_ptrace_pid.
4944 (i386bsd_dr_get): Use get_ptrace_pid.
4945 (i386bsd_dr_set): Use get_ptrace_pid.
4946 * inf-ptrace.c (get_ptrace_pid): Export.
4947 * inf-ptrace.h (get_ptrace_pid): Declare.
4948 * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
4949 (ppcfbsd_store_inferior_registers): Use lwp id.
4950
79117428
JB
49512016-01-19 John Baldwin <jhb@FreeBSD.org>
4952
4953 * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
4954 (fbsd_core_thread_name): New function.
4955 (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
4956 Add "core_thread_name" gdbarch method.
4957
4dfc5dbc
JB
49582016-01-19 John Baldwin <jhb@FreeBSD.org>
4959
4960 * corelow.c (core_thread_name): New function.
4961 (init_core_ops): Use "core_thread_name" for the "to_thread_name"
4962 target op.
4963 * gdbarch.sh (core_thread_name): New gdbarch callback.
4964 * gdbarch.h: Re-generate.
4965 * gdbarch.c: Re-generate.
4966
10e3ed90
SM
49672016-01-19 Simon Marchi <simon.marchi@polymtl.ca>
4968
4969 * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
4970 convert gdb.Value to integer type using int().
4971
a6e69c1f
JB
49722016-01-19 John Baldwin <jhb@FreeBSD.org>
4973
4974 * configure.ac: Include <sys/types.h when checking for "r_fs" in
4975 "struct reg".
4976 * configure: Regenerate.
4977
37e42b4f
PA
49782016-01-19 Pedro Alves <palves@redhat.com>
4979
4980 * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
4981 * break-catch-throw.c (re_set_exception_catchpoint): Pass the
4982 current program space down to linespec decoding and breakpoint
4983 location updating.
4984 * breakpoint.c (parse_breakpoint_sals): Adjust calls to
4985 decode_line_full.
4986 (until_break_command): Adjust calls to decode_line_1.
4987 (base_breakpoint_decode_location, bkpt_decode_location): Add
4988 'search_pspace' parameter. Pass it along.
4989 (bkpt_probe_create_sals_from_location): Adjust calls to
4990 parse_probes.
4991 (tracepoint_decode_location, tracepoint_probe_decode_location)
4992 (strace_marker_decode_location): Add 'search_pspace' parameter.
4993 Pass it along.
4994 (all_locations_are_pending): Rewrite to take a breakpoint and
4995 program space as arguments instead.
4996 (hoist_existing_locations): New function.
4997 (update_breakpoint_locations): Add 'filter_pspace' parameter. Use
4998 hoist_existing_locations instead of always removing all locations,
4999 and adjust to all_locations_are_pending change.
5000 (location_to_sals): Add 'search_pspace' parameter. Pass it along.
5001 Don't disable the breakpoint if there are other locations in
5002 another program space.
5003 (breakpoint_re_set_default): Adjust to pass down the current
5004 program space as filter program space.
5005 (decode_location_default): Add 'search_pspace' parameter and pass
5006 it along.
5007 (prepare_re_set_context): Don't switch program space here.
5008 (breakpoint_re_set): Use save_current_space_and_thread instead of
5009 save_current_program_space.
5010 * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
5011 'search_pspace' parameter.
5012 (update_breakpoint_locations): Add 'filter_pspace' parameter.
5013 * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
5014 decode_line_1.
5015 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
5016 program space as filter program space.
5017 * linespec.c (struct linespec_state) <search_pspace>: New field.
5018 (create_sals_line_offset, convert_explicit_location_to_sals)
5019 (parse_linespec): Pass the search program space down.
5020 (linespec_state_constructor): Add 'search_pspace' parameter.
5021 Store it.
5022 (linespec_parser_new): Add 'search_pspace' parameter and pass it
5023 along.
5024 (linespec_lex_to_end): Adjust.
5025 (decode_line_full, decode_line_1): Add 'search_pspace' parameter
5026 and pass it along.
5027 (decode_line_with_last_displayed): Adjust.
5028 (collect_symtabs_from_filename, symtabs_from_filename): New
5029 'search_pspace' parameter. Use it.
5030 (find_function_symbols): Pass the search program space down.
5031 * linespec.h (decode_line_1, decode_line_full): Add
5032 'search_pspace' parameter.
5033 * probe.c (parse_probes_in_pspace): New function, factored out
5034 from ...
5035 (parse_probes): ... this. Add 'search_pspace' parameter and use
5036 it.
5037 * probe.h (parse_probes): Add pspace' parameter.
5038 * python/python.c (gdbpy_decode_line): Adjust.
5039 * tracepoint.c (scope_info): Adjust.
5040
100b4f2e
MR
50412016-01-18 Maciej W. Rozycki <macro@imgtec.com>
5042
5043 * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
5044 instruction support.
5045 (micromips_next_pc): Likewise.
5046 (micromips_scan_prologue): Likewise.
5047 (micromips_deal_with_atomic_sequence): Likewise.
5048 (micromips_stack_frame_destroyed_p): Likewise.
5049 (mips_breakpoint_from_pc): Likewise.
5050
3f7f3650
MR
50512016-01-18 Maciej W. Rozycki <macro@imgtec.com>
5052
5053 * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
5054 unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
5055
f303dbd6
PA
50562016-01-18 Pedro Alves <palves@redhat.com>
5057
5058 * NEWS: Mention that GDB now displays the ID and name of the
5059 thread that hit a breakpoint or received a signal.
5060 * break-catch-sig.c (signal_catchpoint_print_it): Use
5061 maybe_print_thread_hit_breakpoint.
5062 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
5063 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
5064 * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
5065 (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
5066 (print_it_catch_exec, print_it_ranged_breakpoint)
5067 (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
5068 Use maybe_print_thread_hit_breakpoint.
5069 * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
5070 * gdbthread.h (show_thread_that_caused_stop): Declare.
5071 * infrun.c (print_signal_received_reason): Print which thread
5072 received signal.
5073 * thread.c (show_thread_that_caused_stop): New function.
5074
eb0edac8
GB
50752016-01-18 Gary Benson <gbenson@redhat.com>
5076
5077 * nat/linux-namespaces.c (do_fork): New function.
5078 (linux_mntns_get_helper): Use the above.
5079
dc365182
JH
50802016-01-17 Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> (tiny change)
5081
5082 Pushed by Joel Brobecker <brobecker@adacore.com>.
5083 PR gdb/19208
5084 * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
5085 if the function has no name.
5086
f74f61cb
SL
50872016-01-15 Sandra Loosemore <sandra@codesourcery.com>
5088
5089 * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
5090 Conditionalize for Windows host.
5091 (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
5092 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
5093 (phony_iconv_open): Handle both UTF-32 endiannesses.
5094 (phony_iconv): Likewise. Check for output overflow and clean up
5095 out-of-input cases. Correct adjustment to input buffer pointer.
5096 (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
5097 phony_iconv_open.
5098
71ef29a8
PA
50992016-01-15 Pedro Alves <palves@redhat.com>
5100
5101 * NEWS: Mention star wildcard ranges.
5102 * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
5103 (number_range_setup_range): New function.
5104 * cli/cli-utils.h (number_range_setup_range): New declaration.
5105 * thread.c (thread_apply_command): Support star TID ranges.
5106 * tid-parse.c (tid_range_parser_finished)
5107 (tid_range_parser_string, tid_range_parser_skip)
5108 (get_tid_or_range, get_tid_or_range): Handle
5109 TID_RANGE_STATE_STAR_RANGE.
5110 (tid_range_parser_star_range): New function.
5111 * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
5112 New value.
5113 (tid_range_parser_star_range): New declaration.
5114
3f5b7598
PA
51152016-01-15 Pedro Alves <palves@redhat.com>
5116
5117 * thread.c (thread_apply_command): Use the tid range parser to
5118 advance past the thread ID list.
5119 * tid-parse.c (get_positive_number_trailer): New function.
5120 (parse_thread_id): Use it.
5121 (get_tid_or_range): Use it. Return 0 instead of throwing invalid
5122 thread ID error.
5123 (get_tid_or_range): Detect negative values. Return 0 instead of
5124 throwing invalid thread ID error.
5125
e7cf25a8
YQ
51262016-01-14 Yao Qi <yao.qi@linaro.org>
5127
5128 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
5129 Declare.
5130 (arm_linux_get_next_pcs_ops): Install
5131 arm_linux_get_next_pcs_syscall_next_pc.
5132 (arm_linux_syscall_next_pc): Change to ...
5133 (arm_linux_get_next_pcs_syscall_next_pc): ... it.
5134 (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
5135 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
5136 (arm_get_next_pcs_syscall_next_pc): Make it static. Don't
5137 call tdep->syscall_next_pc.
5138 * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
5139 (arm_get_next_pcs_syscall_next_pc): Remove.
5140
c0518081
YQ
51412016-01-14 Yao Qi <yao.qi@linaro.org>
5142
5143 * remote.c (remote_set_syscall_catchpoint): Cast to char *.
5144 * thread.c (do_captured_thread_select): Cast to const char *.
5145
1b451dda
YQ
51462016-01-14 Yao Qi <yao.qi@linaro.org>
5147
5148 * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
5149 argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
5150 (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
5151 instead.
5152 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
5153 <arm_thumb2_breakpoint>: Remove.
5154 <has_thumb2_breakpoint>: New field.
5155 (arm_get_next_pcs_ctor): Update declaration.
5156 * arm-linux-tdep.c (arm_linux_software_single_step): Pass
5157 1 to arm_get_next_pcs_ctor.
5158 * arm-tdep.c (arm_software_single_step): Pass 0 to
5159 arm_get_next_pcs_ctor.
5160
bc06e0b1
UW
51612016-01-13 Ulrich Weigand <uweigand@de.ibm.com>
5162
5163 * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
5164
4e7b8bea
YQ
51652016-01-13 Yao Qi <yao.qi@linaro.org>
5166
5167 * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
5168 byte_order_for_code to read instruction.
5169
663f6d42
PA
51702016-01-13 Pedro Alves <palves@redhat.com>
5171
5172 * NEWS: Mention $_gthread.
5173 * gdbthread.h (struct thread_info) <global_num>: Mention
5174 $_gthread.
5175 * thread.c (thread_num_make_value_helper): New function.
5176 (thread_id_make_value): Delete.
5177 (thread_id_per_inf_num_make_value, global_thread_id_make_value):
5178 New.
5179 (thread_funcs): Adjust.
5180 (gthread_funcs): New.
5181 (_initialize_thread): Register $_gthread variable.
5182
c84f6bbf
PA
51832016-01-13 Pedro Alves <palves@redhat.com>
5184
5185 * NEWS: Mention "info threads -gid".
5186 * gdbthread.h (struct thread_info) <global_num>: Mention "info
5187 threads -gid".
5188 * thread.c (info_threads_command): Handle "-gid".
5189 (_initialize_thread): Adjust "info threads" help string to mention
5190 -gid.
5191
22a02324
PA
51922016-01-13 Pedro Alves <palves@redhat.com>
5193
5194 * NEWS: Mention InferiorThread.global_num.
5195 * python/py-infthread.c (thpy_get_global_num): New function.
5196 (thread_object_getset): Register "global_num".
5197
5d5658a1
PA
51982016-01-13 Pedro Alves <palves@redhat.com>
5199
5200 * NEWS: Mention that thread IDs are now per inferior and global
5201 thread IDs.
5202 * Makefile.in (SFILES): Add tid-parse.c.
5203 (COMMON_OBS): Add tid-parse.o.
5204 (HFILES_NO_SRCDIR): Add tid-parse.h.
5205 * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
5206 * breakpoint.c (insert_breakpoint_locations)
5207 (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
5208 (print_one_breakpoint_location, set_longjmp_breakpoint)
5209 (check_longjmp_breakpoint_for_call_dummy)
5210 (set_momentary_breakpoint): Adjust to use global IDs.
5211 (find_condition_and_thread, watch_command_1): Use parse_thread_id.
5212 (until_break_command, longjmp_bkpt_dtor)
5213 (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
5214 to use global IDs.
5215 * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
5216 ptid_to_global_thread_id.
5217 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
5218 * gdbthread.h (struct thread_info): Rename field 'num' to
5219 'global_num. Add new fields 'per_inf_num' and 'inf'.
5220 (thread_id_to_pid): Rename thread_id_to_pid to
5221 global_thread_id_to_ptid.
5222 (pid_to_thread_id): Rename to ...
5223 (ptid_to_global_thread_id): ... this.
5224 (valid_thread_id): Rename to ...
5225 (valid_global_thread_id): ... this.
5226 (find_thread_id): Rename to ...
5227 (find_thread_global_id): ... this.
5228 (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
5229 (print_thread_info): Add comment.
5230 * tid-parse.h: New file.
5231 * tid-parse.c: New file.
5232 * infcmd.c (step_command_fsm_prepare)
5233 (step_command_fsm_should_stop): Adjust to use the global thread
5234 ID.
5235 (until_next_command, until_next_command)
5236 (finish_command_fsm_should_stop): Adjust to use the global thread
5237 ID.
5238 (attach_post_wait): Adjust to check the inferior number too.
5239 * inferior.h (struct inferior) <highest_thread_num>: New field.
5240 * infrun.c (handle_signal_stop)
5241 (insert_exception_resume_breakpoint)
5242 (insert_exception_resume_from_probe): Adjust to use the global
5243 thread ID.
5244 * record-btrace.c (record_btrace_open): Use global thread IDs.
5245 * remote.c (process_initial_stop_replies): Also consider the
5246 inferior number.
5247 * target.c (target_pre_inferior): Clear the inferior's highest
5248 thread num.
5249 * thread.c (clear_thread_inferior_resources): Adjust to use the
5250 global thread ID.
5251 (new_thread): New inferior parameter. Adjust to use it. Set both
5252 the thread's global ID and the thread's per-inferior ID.
5253 (add_thread_silent): Adjust.
5254 (find_thread_global_id): New.
5255 (find_thread_id): Make static. Adjust to rename.
5256 (valid_thread_id): Rename to ...
5257 (valid_global_thread_id): ... this.
5258 (pid_to_thread_id): Rename to ...
5259 (ptid_to_global_thread_id): ... this.
5260 (thread_id_to_pid): Rename to ...
5261 (global_thread_id_to_ptid): ... this. Adjust.
5262 (first_thread_of_process): Adjust.
5263 (do_captured_list_thread_ids): Adjust to use global thread IDs.
5264 (should_print_thread): New function.
5265 (print_thread_info): Rename to ...
5266 (print_thread_info_1): ... this, and add new show_global_ids
5267 parameter. Handle it. Iterate over inferiors.
5268 (print_thread_info): Reimplement as wrapper around
5269 print_thread_info_1.
5270 (show_inferior_qualified_tids): New function.
5271 (print_thread_id): Use it.
5272 (tp_array_compar): Compare inferior numbers too.
5273 (thread_apply_command): Use tid_range_parser.
5274 (do_captured_thread_select): Use parse_thread_id.
5275 (thread_id_make_value): Adjust.
5276 (_initialize_thread): Adjust "info threads" help string.
5277 * varobj.c (struct varobj_root): Update comment.
5278 (varobj_create): Adjust to use global thread IDs.
5279 (value_of_root_1): Adjust to use global_thread_id_to_ptid.
5280 * windows-tdep.c (display_tib): No longer accept an argument.
5281 * cli/cli-utils.c (get_number_trailer): Make extern.
5282 * cli/cli-utils.h (get_number_trailer): Declare.
5283 (get_number_const): Adjust documentation.
5284 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
5285 thread IDs.
5286 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
5287 (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
5288 * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
5289 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
5290 Likewise.
5291 * python/py-breakpoint.c (bppy_set_thread): Likewise.
5292 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
5293 * python/py-infthread.c (thpy_get_num): Add comment and return the
5294 per-inferior thread ID.
5295 (thread_object_getset): Update comment of "num".
5296
43792cf0
PA
52972016-01-13 Pedro Alves <palves@redhat.com>
5298
5299 * breakpoint.c (remove_threaded_breakpoints)
5300 (print_one_breakpoint_location): Use print_thread_id.
5301 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
5302 (btrace_fetch, btrace_clear): Use print_thread_id.
5303 * common/print-utils.c (CELLSIZE): Delete.
5304 (get_cell): Rename to ...
5305 (get_print_cell): ... this and made extern. Adjust call callers.
5306 Adjust to use PRINT_CELL_SIZE.
5307 * common/print-utils.h (get_print_cell): Declare.
5308 (PRINT_CELL_SIZE): New.
5309 * gdbthread.h (print_thread_id): Declare.
5310 * infcmd.c (signal_command): Use print_thread_id.
5311 * inferior.c (print_inferior): Use print_thread_id.
5312 * infrun.c (handle_signal_stop)
5313 (insert_exception_resume_breakpoint)
5314 (insert_exception_resume_from_probe)
5315 (print_signal_received_reason): Use print_thread_id.
5316 * record-btrace.c (record_btrace_info)
5317 (record_btrace_resume_thread, record_btrace_cancel_resume)
5318 (record_btrace_step_thread, record_btrace_wait): Use
5319 print_thread_id.
5320 * thread.c (thread_apply_all_command): Use print_thread_id.
5321 (print_thread_id): New function.
5322 (thread_apply_command): Use print_thread_id.
5323 (thread_command, thread_find_command, do_captured_thread_select):
5324 Use print_thread_id.
5325
84654457
PA
53262016-01-13 Pedro Alves <palves@redhat.com>
5327
5328 * NEWS: Mention InferiorThread.inferior.
5329 * python/py-infthread.c (thpy_get_inferior): New.
5330 (thread_object_getset): Register "inferior".
5331
e3940304
PA
53322016-01-13 Pedro Alves <palves@redhat.com>
5333
5334 * NEWS: Mention $_inferior.
5335 * inferior.c (inferior_id_make_value): New.
5336 (inferior_funcs): New.
5337 (_initialize_inferior): Create $_inferior variable.
5338
a911d87a
PA
53392016-01-13 Pedro Alves <palves@redhat.com>
5340
5341 PR breakpoints/19388
5342 * frame.c (get_current_frame): Use validate_registers_access.
5343 * gdbthread.h (validate_registers_access): Declare.
5344 * infrun.c (validate_siginfo_access): Delete.
5345 (siginfo_value_read, siginfo_value_write): Use
5346 validate_registers_access.
5347 * thread.c (validate_registers_access): New function.
5348
82075af2
JS
53492016-01-12 Josh Stone <jistone@redhat.com>
5350 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5351
5352 * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
5353 syscall_entry and syscall_return stop reasons. Mention GDB
5354 support for remote catch syscall.
5355 * remote.c (PACKET_QCatchSyscalls): New enum.
5356 (remote_set_syscall_catchpoint): New function.
5357 (remote_protocol_features): New element for QCatchSyscalls.
5358 (remote_parse_stop_reply): Parse syscall_entry/return stops.
5359 (init_remote_ops): Install remote_set_syscall_catchpoint.
5360 (_initialize_remote): Config QCatchSyscalls.
5361 * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
5362
d18547d8
YQ
53632016-01-12 Yao Qi <yao.qi@linaro.org>
5364
5365 * nat/linux-ptrace.c (linux_child_function): Cast child_stack
5366 to gdb_byte * and pass to linux_fork_to_function.
5367
ba4dd7c4
YQ
53682016-01-12 Yao Qi <yao.qi@linaro.org>
5369
5370 * nat/linux-ptrace.c (linux_fork_to_function): Change type
5371 of argument 'function'.
5372 (linux_grandchild_function): Change return type to 'int'.
5373 Change child_stack's type to 'void *'.
5374 (linux_child_function): Likewise.
5375
bc504a31
PA
53762016-01-12 Pedro Alves <palves@redhat.com>
5377
5378 Remove use of the registered trademark symbol throughout.
5379
5eddd578
TS
53802016-01-12 Thomas Schwinge <thomas@codesourcery.com>
5381
5382 * reply_mig_hack.awk: Rewrite one regular expression.
5383
b835bb52
MF
53842016-01-11 Mike Frysinger <vapier@gentoo.org>
5385
5386 * acinclude.m4: Include new warning.m4 file.
5387 * configure: Regenerated.
5388 * configure.ac: Move all warning logic ...
5389 * warning.m4: ... here.
5390
2f99e8fc
YQ
53912016-01-08 Yao Qi <yao.qi@linaro.org>
5392
5393 * extension.c: Include target.h.
5394 (set_active_ext_lang): Only call install_gdb_sigint_handler,
5395 check_quit_flag, and set_quit_flag if target_terminal_is_ours
5396 returns false.
5397 (restore_active_ext_lang): Likewise.
5398 * target.c (target_terminal_is_ours): New function.
5399 * target.h (target_terminal_is_ours): Declare.
5400
5dd05630
MR
54012016-01-07 Maciej W. Rozycki <macro@imgtec.com>
5402
5403 * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
5404 to `err' in the little-endian leg.
5405
f5aa3069
YQ
54062016-01-06 Yao Qi <yao.qi@linaro.org>
5407
5408 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
5409 lines below.
5410 (thumb_get_next_pcs_raw): Make it static.
5411 (arm_get_next_pcs_raw): Likewise.
5412 * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
5413 declaration.
5414 (arm_get_next_pcs_raw): Likewise.
5415
bf69ad5a
MF
54162016-01-05 Mike Frysinger <vapier@gentoo.org>
5417
5418 * version.in: Change cvs to git.
5419
66750332
MF
54202016-01-05 Mike Frysinger <vapier@gentoo.org>
5421
5422 * configure.tgt (score-*-*): Delete gdb_sim assignment.
5423
976102cd
PA
54242016-01-05 Pedro Alves <palves@redhat.com>
5425
5426 PR sim/13418
5427 * configure.ac: Define WITH_PPC_SIM when linking in the sim and
5428 the target is powerpc*.
fa89c126
PA
5429 * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
5430 of WITH_SIM.
976102cd
PA
5431 * configure: Regenerate.
5432 * config.in: Regenerate.
5433
43368e1d
MM
54342016-01-04 Markus Metzger <markus.t.metzger@intel.com>
5435
5436 * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
5437
32273fe6
MF
54382016-01-02 Mike Frysinger <vapier@gentoo.org>
5439
5440 * configure.tgt (powerpc*-*-*): Delete test call and
5441 always assign gdb_sim.
5442
618f726f
JB
54432016-01-01 Joel Brobecker <brobecker@adacore.com>
5444
5445 Update year range in copyright notice of all files.
5446
edd88788
JB
54472016-01-01 Joel Brobecker <brobecker@adacore.com>
5448
5449 * top.c (print_gdb_version): Change copyright year in version
5450 message.
5451
0f7b3ef4 54522016-01-01 Joel Brobecker <brobecker@adacore.com>
aec47d1d 5453
0f7b3ef4 5454 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
aec47d1d 5455
0f7b3ef4 5456For older changes see ChangeLog-2015.
c906108c
SS
5457\f
5458Local Variables:
5459mode: change-log
5460left-margin: 8
5461fill-column: 74
5462version-control: never
57da7796 5463coding: utf-8
c906108c 5464End:
This page took 2.231338 seconds and 4 git commands to generate.