Eliminate clear_quit_flag
[external/binutils.git] / gdb / ChangeLog
1 2016-04-12  Pedro Alves  <palves@redhat.com>
2
3         * defs.h (clear_quit_flag): Remove declaration.
4         * extension-priv.h (struct extension_language_ops)
5         <clear_quit_flag>: Remove field and update comments.
6         * extension.c (clear_quit_flag): Delete.
7         * guile/guile.c (guile_extension_ops): Adjust.
8         * python/python.c (python_extension_ops): Adjust.
9         (gdbpy_clear_quit_flag): Delete.
10
11 2016-04-12  Pedro Alves  <palves@redhat.com>
12
13         * main.c (captured_main): Don't clear the quit flag.
14
15 2016-04-12  Pedro Alves  <palves@redhat.com>
16
17         * exceptions.c (prepare_to_throw_exception): Don't clear the quit
18         flag.
19
20 2016-04-12  Pedro Alves  <palves@redhat.com>
21
22         * event-top.c (command_handler): Don't call clear_quit_flag.
23
24 2016-04-12  Pedro Alves  <palves@redhat.com>
25
26         * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
27         * remote.c (remote_wait_as): Don't call clear_quit_flag.
28
29 2016-04-12  Pedro Alves  <palves@redhat.com>
30
31         * python/python.c: Include "ser-event.h".
32         (gdbpy_event_fds): Delete.
33         (gdbpy_serial_event): New.
34         (gdbpy_run_events): Change prototype.  Use serial_event_clear
35         instead of serial_readchar.
36         (gdbpy_post_event): Use serial_event_set instead of serial_write.
37         (gdbpy_initialize_events): Use make_serial_event instead of
38         serial_pipe.
39
40 2016-04-12  Pedro Alves  <palves@redhat.com>
41
42         * defs.h: Extend QUIT-related comments to mention
43         interruptible_select.
44         (quit_serial_event_set, quit_serial_event_clear): Declare.
45         * event-top.c: Include "ser-event.h" and "gdb_select.h".
46         (quit_serial_event): New global.
47         (async_init_signals): Make quit_serial_event.
48         (quit_serial_event_set, quit_serial_event_clear)
49         (quit_serial_event_fd, interruptible_select): New functions.
50         * extension.c (set_quit_flag): Set the quit serial event.
51         (check_quit_flag): Clear the quit serial event.
52         * gdb_select.h (interruptible_select): New declaration.
53         * guile/scm-ports.c (ioscm_input_waiting): Use
54         interruptible_select instead of gdb_select.
55         * top.c (gdb_readline_no_editing): Likewise.
56         * ui-file.c (stdio_file_read): Likewise.
57
58 2016-04-12  Pedro Alves  <palves@redhat.com>
59
60         * event-loop.c: Include "ser-event.h".
61         (async_signal_handlers_serial_event): New global.
62         (async_signals_handler, initialize_async_signal_handlers): New
63         functions.
64         (mark_async_signal_handler): Set
65         async_signal_handlers_serial_event.
66         (invoke_async_signal_handlers): Clear
67         async_signal_handlers_serial_event.
68         * event-top.c (async_init_signals): Call
69         initialize_async_signal_handlers.
70
71 2016-04-12  Pedro Alves  <palves@redhat.com>
72
73         * Makefile.in (SFILES): Add ser-event.c.
74         (HFILES_NO_SRCDIR): Add ser-event.h.
75         (COMMON_OBS): Add ser-event.o.
76         * ser-event.c, ser-event.h: New files.
77         * serial.c (new_serial): New function, factored out from
78         (serial_fdopen_ops): ... this.
79         (serial_open_ops_1): New function, factored out from
80         (serial_open): ... this.
81         (serial_open_ops): New function.
82         * serial.h (struct serial): Forware declare.
83         (serial_open_ops): New declaration.
84
85 2016-04-12  Pedro Alves  <palves@redhat.com>
86
87         * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
88         Remove references to name.
89         * serial.h (struct serial) <name>: Delete.
90
91 2016-04-12  Pedro Alves  <palves@redhat.com>
92
93         * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
94         Delete.
95         (async_remote_fileio_interrupt): Delete.
96         (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
97         handler.  Instead just always set the ctrl_c flag.
98         (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
99         re-enabling the SIGINT handler.
100         (remote_fileio_func_open, remote_fileio_func_close)
101         (remote_fileio_func_read, remote_fileio_func_write)
102         (remote_fileio_func_lseek, remote_fileio_func_rename)
103         (remote_fileio_func_unlink, remote_fileio_func_stat)
104         (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
105         (remote_fileio_func_isatty, remote_fileio_func_system)
106         (remote_fileio_request): Remove references to
107         remote_fio_no_longjmp.
108         (initialize_remote_fileio): Don't create an async signal handler.
109
110 2016-04-12  Pedro Alves  <palves@redhat.com>
111
112         * event-top.c (stdin_event_handler): Call QUIT;
113         (prompt_for_continue): Don't run with immediate_quit set.
114
115 2016-04-12  Pedro Alves  <palves@redhat.com>
116
117         * tui/tui-io.c (tui_redisplay_readline): Check
118         gdb_in_secondary_prompt_p instead of immediate_quit.
119         * tui/tui.c: Include top.h.
120         (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
121         immediate_quit.
122
123 2016-04-12  Pedro Alves  <palves@redhat.com>
124
125         * top.c (read_command_file): Inline command_loop here.
126         (command_loop): Delete.
127
128 2016-04-12  Pedro Alves  <palves@redhat.com>
129
130         * top.c: Include "gdb_select.h".
131         (gdb_readline_no_editing): Wait for input with gdb_select instead
132         of blocking in fgetc.
133         (command_line_input): Don't set immediate_quit.
134
135 2016-04-08  Martin Galvan  <martin.galvan@tallertechnologies.com>
136
137         * value.c (value_next): Make pass-by-reference parameters const-correct.
138         (value_parent): Likewise.
139         (value_enclosing_type): Likewise.
140         (value_lazy): Likewise.
141         (value_stack): Likewise.
142         (value_embedded_offset): Likewise.
143         (value_pointed_to_offset): Likewise.
144         (value_raw_address): Likewise.
145         (deprecated_value_modifiable): Likewise.
146         (value_free_to_mark): Likewise.
147         (value_release_to_mark): Likewise.
148         (internalvar_name): Likewise.
149         (readjust_indirect_value_type): Likewise.
150         (value_initialized): Likewise.
151         * value.h (value_next): Likewise.
152         (value_parent): Likewise.
153         (value_enclosing_type): Likewise.
154         (value_lazy): Likewise.
155         (value_stack): Likewise.
156         (value_embedded_offset): Likewise.
157         (value_pointed_to_offset): Likewise.
158         (value_raw_address): Likewise.
159         (deprecated_value_modifiable): Likewise.
160         (value_free_to_mark): Likewise.
161         (value_release_to_mark): Likewise.
162         (internalvar_name): Likewise.
163         (readjust_indirect_value_type): Likewise.
164         (value_initialized): Likewise.
165
166 2016-04-07  Yao Qi  <yao.qi@linaro.org>
167
168         * record-full.c (record_full_insert_breakpoint): Return
169         early if entry on the address is found in
170         record_full_breakpoints.
171
172 2016-04-07  Yao Qi  <yao.qi@linaro.org>
173
174         * record-full.c (record_full_insert_breakpoint): Set
175         bp_tgt->reqstd_address and bp_tgt->placed_size.
176
177 2016-04-06  Don Breazeal  <donb@codesourcery.com>
178
179         * value.c (value_actual_type): Don't try to get rtti type
180         of the value if it has been optimized out.
181         (value_optimized_out): If a memory access error occurs,
182         just check vaue->optimized_out.
183
184 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
185
186         Revert the previous commit adding unknown_v_replies_ok.
187
188 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
189
190         * remote.c (struct remote_state): New field unknown_v_replies_ok.
191         (packet_config_support): Read it.
192         (remote_start_remote): Set it.
193
194 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
195
196         * remote.c: Revert check-in by a mistake in the previous commit.
197
198 2016-04-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
199             Pedro Alves  <palves@redhat.com>
200
201         * exec.c (exec_file_locate_attach): Print warning for unsupported
202         target_pid_to_exec_file.
203         * symfile-mem.c (add_vsyscall_page): Remove the "file" command
204         message part.
205
206 2016-04-04  Simon Marchi  <simon.marchi@ericsson.com>
207
208         * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
209         trailing spaces.
210
211 2016-04-01  Artemiy Volkov  <artemiyv@acm.org>
212
213         PR gdb/19820
214         * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
215         the type of BINOP_REPEAT's second operand.
216
217 2016-03-31  Yichao Yu  <yyc1992@gmail.com>
218
219         PR gdb/19858
220         * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
221         got the breakpoint at the right address.
222         (jit_inferior_created): New function.
223         (_initialize_jit): Install jit_inferior_created as
224         inferior_created observer.
225
226 2016-03-31  Marcin Koƛcielnicki  <koriakin@0x04.net>
227
228         * NEWS: Mention support for tracepoints on powerpc*-linux.
229
230 2016-03-31  Catalin Udma  <catalin.udma@freescale.com>
231
232         PR python/19743
233         * python/python.c (execute_gdb_command): Use console uiout
234         when executing gdb command.
235         * utils.c (restore_ui_out_closure): New structure.
236         (do_restore_ui_out): New function.
237         (make_cleanup_restore_ui_out): Likewise.
238         * utils.h (make_cleanup_restore_ui_out): Declare.
239
240 2016-03-31  Pedro Alves  <palves@redhat.com>
241
242         * NEWS: Mention that support for "target m32rsdi", "target mips",
243         "target pmon", "target ddb", "target rockhopper", and "target lsi"
244         was removed.
245         * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
246         remote-mips.o.
247         (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
248         * configure.tgt: Remove all references to remote-m32r-sdi.o and
249         remote-mips.o.
250         * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
251         function.
252         * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
253         declaration.
254         * remote-m32r-sdi.c, remote-mips.c: Delete files.
255         * symfile.c (generic_load, generic_load): Remove comments.
256
257 2016-03-30  Yao Qi  <yao.qi@linaro.org>
258
259         * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
260         0 rather than NULL.
261
262 2016-03-30  Yao Qi  <yao.qi@linaro.org>
263
264         * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
265         (arm_epilogue_frame_this_id): New function.
266         (arm_epilogue_frame_prev_register): New function.
267         (arm_epilogue_frame_sniffer): New function.
268         (arm_epilogue_frame_unwind): New.
269         (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
270
271 2016-03-30  Yao Qi  <yao.qi@linaro.org>
272
273         * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
274         (arm_stack_frame_destroyed_p_1): ... here.  Don't call
275         arm_pc_is_thumb.
276         (arm_stack_frame_destroyed_p): Call
277         thumb_stack_frame_destroyed_p and
278         arm_stack_frame_destroyed_p_1.
279
280 2016-03-30  Doug Evans  <dje@google.com>
281
282         * python/py-utils.c (host_string_to_python_string): New function.
283         * python/python-internal.h (host_string_to_python_string): Declare it.
284         * python/py-*.c (*): Update all calls to
285         PyString_Decode (str, strlen (str), host_charset (), NULL);
286         to use host_string_to_python_string instead.
287
288 2016-03-30  Marcin Koƛcielnicki  <koriakin@0x04.net>
289
290         * remote.c (remote_check_symbols): Allocate own buffer for reply.
291
292 2016-03-29  Max Filippov  <jcmvbkbc@gmail.com>
293
294         * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
295         Use safe_read_memory_integer instead of read_memory_integer.
296
297 2016-03-29  Marcin Koƛcielnicki  <koriakin@0x04.net>
298
299         * NEWS: Mention support for tracepoints on s390*-linux.
300
301 2016-03-29  Don Breazeal  <donb@codesourcery.com>
302
303         * gdb/value.c (value_actual_type): Fix formatting issue.
304
305 2016-03-23  Yao Qi  <yao.qi@linaro.org>
306
307         * gdbarch.sh (software_single_step): Remove comments.
308         * gdbarch.h: Regenerated.
309
310 2016-03-21  Yao Qi  <yao.qi@linaro.org>
311
312         * arm-tdep.c (arm_record_media): New.
313         (arm_record_ld_st_reg_offset): Call arm_record_media.
314
315 2016-03-21  Yao Qi  <yao.qi@linaro.org>
316
317         * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
318         more syscalls.
319
320 2016-03-18  Yao Qi  <yao.qi@linaro.org>
321
322         * sparc-tdep.c (sparc_software_single_step): Make it static.
323         * sparc-tdep.h (sparc_software_single_step): Remove declaration.
324
325 2016-03-18  Yao Qi  <yao.qi@linaro.org>
326
327         * spu-tdep.c (spu_software_single_step): Throw error when
328         target_read_memory fails.
329
330 2016-03-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
331
332         * linux-thread-db.c (check_pid_namespace_match): Extend the message.
333
334 2016-03-17  Pedro Alves  <palves@redhat.com>
335             Don Breazeal  <donb@codesourcery.com>
336
337         PR remote/19496
338         * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
339         instead of checking the 'non_stop' global.
340         * remote.c (remote_add_thread): New parameter 'executing'.  Use it
341         to set the new thread's executing state.
342         (remote_notice_new_inferior): Rename parameter 'running' to
343         'executing'.  Always set the thread state to THREAD_RUNNING in
344         non-stop mode, and to THREAD_STOPPED in all-stop mode.  Pass
345         EXECUTING to remote_add_thread and notice_new_inferior.
346         (remote_update_thread_list): Update to pass executing state, not
347         running state.
348
349 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
350
351         * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
352         to 374.
353         * syscalls/s390x-linux.xml: Likewise.
354
355 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
356
357         * linux-record.c (record_mem_at_reg): New helper function.
358         (record_linux_system_call): Exploit new helper function where
359         applicable.
360
361 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
362
363         * linux-record.c: Fix whitespace issues; tabify, remove trailing
364         spaces.
365
366 2016-03-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
367
368         * linux-record.c (record_linux_system_call): Add missing return
369         statements to handling of pipe and pipe2 syscalls.
370
371 2016-03-16  Doug Evans  <dje@google.com>
372
373         * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
374
375 2016-03-16  Yao Qi  <yao.qi@linaro.org>
376
377         * arm-linux-tdep.c (arm_linux_init_abi): Fix
378         arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
379         arm_linux_record_tdep.arg3.  Set arm_linux_record_tdep.arg4,
380         arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
381         arm_linux_record_tdep.arg7.
382
383 2016-03-15  Keith Seitz  <keiths@redhat.com>
384
385         PR breakpoints/18303
386         * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
387         look for "::" instead of simply ":".
388         (cp_search_static_and_baseclasses): Return null_block_symbol for
389         malformed input.
390         Remove assertions.
391         * cp-support.c (cp_find_first_component_aux): Do not return
392         a prefix length for ':' unless the next character is also ':'.
393
394 2016-03-15  Doug Evans  <dje@google.com>
395
396         * features/aarch64-core.xml (cpsr_flags): New flags type.
397         (cpsr): Use it.
398         * features/aarch64.c: Regenerate.
399
400 2016-03-15  Doug Evans  <dje@google.com>
401
402         * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
403         * features/i386/32bit-sse.xml (i386_eflags): Ditto.
404         * features/i386/64bit-core.xml (i386_eflags): Ditto.
405         * features/i386/64bit-sse.xml (i386_eflags): Ditto.
406         * features/i386/x32-core.xml (i386_eflags): Ditto.
407
408 2016-03-15  Doug Evans  <dje@google.com>
409             Wei-cheng Wang  <cole945@gmail.com>
410
411         Extend flags to support multibit and enum bitfields.
412         * NEWS: Document new features.
413         * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
414         (c_type_print_varspec_suffix, c_type_print_base): Ditto.
415         * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
416         (append_flags_type_field): New function.
417         (append_flags_type_flag): Call it.
418         * gdbtypes.h (append_flags_type_field): Declare.
419         * target-descriptions.c (struct tdesc_type_flag): Delete.
420         (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
421         (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
422         (struct tdesc_type) <u.f>: Delete.
423         (tdesc_predefined_types): Add "bool".
424         (tdesc_predefined_type): New function.
425         (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
426         Update TDESC_TYPE_FLAGS support.
427         (tdesc_free_type): Handle TDESC_TYPE_ENUM.  Update TDESC_TYPE_FLAGS.
428         (tdesc_create_flags): Update.
429         (tdesc_create_enum): New function.
430         (tdesc_add_field): Initialize start,end to -1.
431         (tdesc_add_typed_bitfield): New function.
432         (tdesc_add_bitfield): Call it.
433         (tdesc_add_flag): Allow TDESC_TYPE_STRUCT.  Update.
434         (tdesc_add_enum_value): New function.
435         (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
436         TDESC_TYPE_STRUCT.  Handle TDESC_TYPE_ENUM.
437         * target-descriptions.h (tdesc_create_enum): Declare.
438         (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
439         * valprint.c (generic_val_print_enum_1): New function.
440         (generic_val_print_enum): Call it.
441         (val_print_type_code_flags): Make static.  Handle multibit bitfields
442         and enum bitfields.
443         * valprint.h (val_print_type_code_flags): Delete.
444         * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
445         Delete.  All uses removed.
446         (tdesc_start_enum): New function.
447         (tdesc_start_field): Handle multibit and enum bitfields.
448         (tdesc_start_enum_value): New function.
449         (enum_value_attributes, enum_children, enum_attributes): New static
450         globals.
451         (feature_children): Add "enum".
452         * features/gdb-target.dtd (enum, evalue): New elements.
453
454 2016-03-15  Doug Evans  <dje@google.com>
455
456         * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
457         from LONGEST to int.
458         (struct tdesc_type) <u.f.size>: Ditto.
459         (tdesc_set_struct_size): Change type of "size" arg from LONGEST
460         to int.  Add assertion size > 0.
461         (tdesc_create_flags): Ditto.
462         * target-descriptions.h (tdesc_set_struct_size): Update.
463         (tdesc_create_flags): Update.
464         * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
465         (MAX_VECTOR_SIZE): New macro.
466         (tdesc_start_struct): Catch conversion errors from LONGEST to int.
467         (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
468
469 2016-03-15  Doug Evans  <dje@google.com>
470
471         * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
472         TYPE_CODE_FLAGS instead of "field_type", for consistency.
473         * features/i386/amd64-avx-linux.c: Regenerate.
474         * features/i386/amd64-avx.c: Regenerate.
475         * features/i386/amd64-avx512-linux.c: Regenerate.
476         * features/i386/amd64-avx512.c: Regenerate.
477         * features/i386/amd64-linux.c: Regenerate.
478         * features/i386/amd64-mpx-linux.c: Regenerate.
479         * features/i386/amd64-mpx.c: Regenerate.
480         * features/i386/amd64.c: Regenerate.
481         * features/i386/i386-avx-linux.c: Regenerate.
482         * features/i386/i386-avx.c: Regenerate.
483         * features/i386/i386-avx512-linux.c: Regenerate.
484         * features/i386/i386-avx512.c: Regenerate.
485         * features/i386/i386-linux.c: Regenerate.
486         * features/i386/i386-mmx-linux.c: Regenerate.
487         * features/i386/i386-mmx.c: Regenerate.
488         * features/i386/i386-mpx-linux.c: Regenerate.
489         * features/i386/i386-mpx.c: Regenerate.
490         * features/i386/i386.c: Regenerate.
491         * features/i386/x32-avx-linux.c: Regenerate.
492         * features/i386/x32-avx.c: Regenerate.
493         * features/i386/x32-avx512-linux.c: Regenerate.
494         * features/i386/x32-avx512.c: Regenerate.
495         * features/i386/x32-linux.c: Regenerate.
496         * features/i386/x32.c: Regenerate.
497
498 2016-03-15  Pedro Alves  <palves@redhat.com>
499
500         PR gdb/19676
501         * linux-thread-db.c (try_thread_db_load_1): Leave
502         info->td_ta_thr_iter_p NULL iff debugging a live process and we
503         have /proc access.
504         (find_new_threads_once): Assert that we have a non-NULL
505         info->td_ta_thr_iter_p instead of checking whether the target has
506         execution.
507
508 2016-03-15  Pedro Alves  <palves@redhat.com>
509
510         PR gdb/19676
511         * infrun.c (displaced_step_prepare): Also disable displaced
512         stepping on NOT_SUPPORTED_ERROR.
513         * linux-tdep.c (linux_displaced_step_location): If reading auxv
514         fails, throw NOT_SUPPORTED_ERROR instead of generic error.
515
516 2016-03-13  Marcin Koƛcielnicki  <koriakin@0x04.net>
517
518         * s390-linux-tdep.c (s390_gen_return_address): New function.
519         (s390_gdbarch_init): Fill gen_return_address hook.
520
521 2016-03-11  Andrew Burgess  <andrew.burgess@embecosm.com>
522
523         * symmisc.c (maintenance_info_line_tables): New function.
524         (maintenance_print_one_line_table): New function.
525         (_initialize_symmisc): Register 'maint info line-table' command.
526         * NEWS: Mention new command.
527
528 2016-03-11  Marcin Koƛcielnicki  <koriakin@0x04.net>
529
530         * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
531         (s390_ax_pseudo_register_push_stack): New function.
532         (s390_gdbarch_init): Fill ax_pseudo_register_collect and
533         ax_pseudo_register_push_stack hooks.
534
535 2016-03-10  Simon Marchi  <simon.marchi@polymtl.ca>
536
537         * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
538         gdb/function/as_string.py.
539         * python/lib/gdb/function/as_string.py: New file.
540         * NEWS: Mention the new $_as_string function.
541
542 2016-03-09  Jose E. Marchesi  <jose.marchesi@oracle.com>
543
544         * target.h: Fix doc string of target_can_use_hardware_watchpoint.
545
546 2016-03-09  Pedro Alves  <palves@redhat.com>
547
548         * event-top.c (more_to_come): Delete.
549         (struct readline_input_state): Delete.
550         (readline_input_state): Delete.
551         (get_command_line_buffer): New function.
552         (command_handler): Update comments.  Don't handle NULL commands
553         here.  Do not execute commented lines.
554         (command_line_append_input_line): New function.
555         (handle_line_of_input): New function, partly based on
556         command_line_handler and command_line_input.
557         (command_line_handler): Rewrite.
558         * event-top.h (command_handler): New declaration.
559         (command_loop): Defer command execution to command_handler.
560         (command_line_input): Update comments.  Simplify, using struct
561         buffer and handle_line_of_input.
562         * top.h (struct buffer): New forward declaration.
563         (handle_line_of_input): New declaration.
564
565 2016-03-09  Pedro Alves  <palves@redhat.com>
566
567         * event-top.c (command_line_handler): Use xfree + xstrdup instead
568         of xrealloc + strcpy.
569         * main.c (captured_main): Use xstrdup instead of xmalloc plus
570         manual clear.
571         * top.c (saved_command_line): Rewrite comment.
572         (saved_command_line_size): Delete.
573         (command_line_input): Use xfree + xstrdup instead of xrealloc +
574         strcpy.
575         * top.h (saved_command_line_size): Delete declaration.
576
577 2016-03-09  Pedro Alves  <palves@redhat.com>
578
579         * event-top.c: Include buffer.h.
580         (gdb_readline_no_editing_callback): Use struct buffer instead
581         of xrealloc.
582
583 2016-03-09  Pedro Alves  <palves@redhat.com>
584
585         * common/buffer.h (buffer_grow_char): New function.
586         * top.c: Include buffer.h.
587         (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
588         'prompt'.  Use struct buffer instead of xrealloc.
589
590 2016-03-09  Pedro Alves  <palves@redhat.com>
591
592         * defs.h (gdb_readline): Delete declaration.
593         * top.c (gdb_readline): Rename to ...
594         (gdb_readline_no_editing): ... this, and make static.
595
596 2016-03-09  Pedro Alves  <palves@redhat.com>
597
598         * utils.c (prompt_for_continue): Update comments.
599
600 2016-03-09  Pedro Alves  <palves@redhat.com>
601
602         * event-top.c (async_annotation_suffix): Delete.
603         (top_level_prompt, command_line_handler): Don't use
604         'async_annotation_suffix' and simplify.
605         * event-top.h (async_annotation_suffix): Delete declaration.
606         (init_main): Remove reference to 'async_annotation_suffix'.
607
608 2016-03-09  Pedro Alves  <palves@redhat.com>
609
610         * event-top.c (gdb_readline2): Rename to ...
611         (gdb_readline_no_editing_callback): ... this.
612         (change_line_handler, stdin_event_handler)
613         (gdb_setup_readline): Adjust.
614         * event-top.h (gdb_readline2): Rename to ...
615         (gdb_readline_no_editing_callback): ... this, and move closer to
616         other readline-related declarations.
617         * mi/mi-interp.c (mi_interpreter_resume): Adjust.
618
619 2016-03-09  Pedro Alves  <palves@redhat.com>
620
621         * top.c (window_hook): Delete.
622         (command_loop): Remove references to window_hook.
623
624 2016-03-09  Marcin Koƛcielnicki  <koriakin@0x04.net>
625
626         * corefile.c (safe_read_memory_unsigned_integer): New function.
627         * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
628         * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
629
630 2016-03-09  Marcin Koƛcielnicki  <koriakin@0x04.net>
631
632         * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
633         (rs6000_gen_return_address): New function.
634         (rs6000_gdbarch_init): Wire in the above.
635
636 2016-03-09  Marcin Koƛcielnicki  <koriakin@0x04.net>
637
638         * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
639         (rs6000_gdbarch_init): Wire in the above.
640
641 2016-03-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
642
643         * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
644         instructions that do nothing or are conditional traps.
645
646 2016-03-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
647
648         * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
649         frame func's PC in info->func before any other failure can occur.
650         (s390_frame_this_id): Use frame_id_build_unavailable_stack if
651         info->func has been filled out.
652
653 2016-03-09  Pedro Alves  <palves@redhat.com>
654
655         * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
656
657 2016-03-09  Pedro Alves  <palves@redhat.com>
658
659         * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
660
661 2016-03-09  Pedro Alves  <palves@redhat.com>
662
663         * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
664         order is BFD_ENDIAN_BIG or if the cris version is unsupported.
665
666 2016-03-09  Pedro Alves  <palves@redhat.com>
667
668         * doublest.c: Extend comments.
669         (floatformat_to_doublest, floatformat_from_doublest): Copy the
670         floatformat's total size, not the host type's size.
671
672 2016-03-09  Pedro Alves  <palves@redhat.com>
673
674         * doublest.c (floatformat_totalsize_bytes): New function.
675         (floatformat_from_type): Assert that the type's length is at least
676         as long as the floatformat's totalsize.
677         * doublest.h (floatformat_totalsize_bytes): New declaration.
678         * gdbtypes.c (arch_float_type): Assert that the type's length is
679         at least as long as the floatformat's totalsize.
680
681 2016-03-09  Pedro Alves  <palves@redhat.com>
682
683         * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
684         format to floatformats_ieee_double.
685
686 2016-03-07  Pedro Alves  <palves@redhat.com>
687
688         * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
689         before calling bfd_get_flavour.
690
691 2016-03-05  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
692
693         * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
694         (avr_push_dummy_call): Correct last needed argument register.
695         Write MSB of argument into register and subsequent bytes into
696         other registers in decreasing order.
697
698 2016-03-04  Yao Qi  <yao.qi@linaro.org>
699
700         * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
701         condition check.  Record the right D register number.
702
703 2016-03-04  Yao Qi  <yao.qi@linaro.org>
704
705         * arm-tdep.c (arm_record_extension_space): Remove code
706         printing "Process record does not support".
707         (arm_record_data_proc_misc_ld_str): Likewise.
708         (decode_insn): Call arm_record_extension_space if condition
709         is 0xf.  Call arm_record_unsupported_insn if ret isn't
710         ARM_RECORD_SUCCESS.  Use 'ret' instead of 'insn_id' to hold
711         the value of thumb2_record_decode_insn_handler.
712
713 2016-03-04  Simon Marchi  <simon.marchi@ericsson.com>
714
715         * features/feature_to_c.sh: Print the help when passing no
716         argument.
717
718 2016-03-02  Bernhard Heckel  <bernhard.heckel@intel.com>
719
720         * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
721
722 2016-03-02  Bernhard Heckel  <bernhard.heckel@intel.com>
723
724         * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
725
726 2016-03-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
727
728         * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
729         exception when attempting to access the inferior's backchain.
730
731 2016-02-29  Yao Qi  <yao.qi@linaro.org>
732
733         * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
734         eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
735         Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
736         for aarch64_sys_epoll_create1.
737
738 2016-02-29  Yao Qi  <yao.qi@linaro.org>
739
740         * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
741         <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
742         <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
743         * linux-record.c (record_linux_system_call): Handle them.
744
745 2016-02-28  Iain Buclaw  <ibuclaw@gdcproject.org>
746
747         * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
748         cyclic imports.
749
750 2016-02-26  Keith Seitz  <keiths@redhat.com>
751
752         * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
753         to avoid invalid conversion from void *.
754
755 2016-02-26  Yao Qi  <yao.qi@linaro.org>
756
757         * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
758         per bit 8.  Check bit 20 instead of bit 4 for VMOV
759         instruction.  Record D registers for instructions changing
760         S registers.  Change of the order of length and address
761         in record_buf_mem array.
762
763 2016-02-26  Yao Qi  <yao.qi@linaro.org>
764
765         * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
766         number of Rd.
767
768 2016-02-25  Doug Evans  <dje@google.com>
769
770         * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
771         compiler warning.
772         (recv_long_data): Ditto.
773
774 2016-02-25  Simon Marchi  <simon.marchi@ericsson.com>
775
776         * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
777         Initialize variables.
778
779 2016-02-25  Antoine Tremblay  <antoine.tremblay@ericsson.com>
780
781         * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
782         (ax_reg_mask): Likewise.
783
784 2016-02-24  Pedro Alves  <palves@redhat.com>
785
786         * linux-nat.c (save_sigtrap) Delete.
787         (stop_wait_callback): Call save_stop_reason instead of
788         save_sigtrap.
789         (check_stopped_by_breakpoint): Rename to ...
790         (save_stop_reason): ... this.  Bits of save_sigtrap folded here.
791         Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
792         GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT.  Factor out
793         common code between the USE_SIGTRAP_SIGINFO and
794         !USE_SIGTRAP_SIGINFO blocks.
795         (linux_nat_filter_event): Call save_stop_reason instead of
796         save_sigtrap.
797         * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
798         si_code for MIPS.
799         * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table.  Add
800         comments on MIPS behavior.
801         (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
802
803 2016-02-24  Marcin Koƛcielnicki  <koriakin@0x04.net>
804
805         * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
806         to avoid spurious warnings.
807
808 2016-02-24  Gary Benson  <gbenson@redhat.com>
809
810         * exec.c (exec_file_locate_attach): Do not attempt to
811         locate main executable locally if not found in sysroot.
812
813 2016-02-24  Joel Brobecker  <brobecker@adacore.com>
814
815         GDB 7.11 released.
816
817 2016-02-24  Wei-cheng Wang  <cole945@gmail.com>
818
819         * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
820         unavailable PC/SP to build unavailable frame.
821
822 2016-02-23  Doug Evans  <dje@google.com>
823
824         Extend "skip" command to support -file, -gfile, -function, -rfunction.
825         * NEWS: Document new features.
826         * skip.c: #include "fnmatch.h", "gdb_regex.h".
827         (skiplist_entry) <file>: Renamed from filename.
828         <function>: Renamed from function_name.
829         <file_is_glob, function_is_regexp>: New members.
830         <compiled_function_regexp, compiled_function_regexp_is_valid>:
831         New members.
832         (make_skip_entry): New function.
833         (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
834         (make_free_skiplist_entry_cleanup): New function.
835         (skip_file_command): Update.
836         (skip_function, skip_function_command): Update.
837         (compile_skip_regexp): New functions.
838         (skip_command): Add support for new options.
839         (skip_info): Update.
840         (skip_file_p, skip_gfile_p): New functions.
841         (skip_function_p, skip_rfunction_p): New functions.
842         (function_name_is_marked_for_skip): Update and simplify.
843         (_initialize_step_skip): Update.
844         * symtab.c: #include "fnmatch.h".
845         (compare_glob_filenames_for_search): New function.
846         * symtab.h (compare_glob_filenames_for_search): Declare.
847         * utils.c (count_path_elements): New function.
848         (strip_leading_path_elements): New function.
849         * utils.h (count_path_elements): Declare.
850         (strip_leading_path_elements): Declare.
851
852 2016-02-23  Simon Marchi  <simon.marchi@ericsson.com>
853
854         * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
855         (thumb_process_displaced_insn): Likewise.
856         (arm_process_displaced_insn): Adjust calls.
857
858 2016-02-23  Yao Qi  <yao.qi@linaro.org>
859
860         * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
861         Remove.
862         <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
863         <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
864         <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
865         <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
866         <aarch64_sys_linkat, aarch64_sys_renameat>: New.
867         <aarch64_sys_faccessat>: New.
868         <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
869         <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
870         <aarch64_sys_newfstatat>: New.
871         (UNSUPPORTED_SYSCALL_MAP): New macro.
872         (aarch64_canonicalize_syscall): Add missing syscalls.
873
874 2016-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
875
876         * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
877
878 2016-02-22  Yao Qi  <yao.qi@linaro.org>
879
880         * arm-tdep.c: Fix code format issues.
881
882 2016-02-21  Iain Buclaw  <ibuclaw@gdcproject.org>
883
884         * d-namespace.c (d_lookup_symbol_imports): Remove argument
885         'search_parents'.  All callers updated.
886
887 2016-02-18  Marcin Koƛcielnicki  <koriakin@0x04.net>
888
889         * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
890         (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
891
892 2016-02-18  Walfred Tedeschi  <walfred.tedeschi@intel.com>
893
894         * NEWS: Add entry for bound violation.
895         * amd64-linux-tdep.c (amd64_linux_init_abi_common):
896         Add handler for segmentation fault.
897         * gdbarch.sh (handle_segmentation_fault): New.
898         * gdbarch.c: Regenerate.
899         * gdbarch.h: Regenerate.
900         * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
901         (SIG_CODE_BONDARY_FAULT): New define.
902         (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
903         * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
904         * i386-tdep.c (i386_mpx_enabled): Add as external.
905         * i386-tdep.c (i386_mpx_enabled): Add as external.
906         * infrun.c (handle_segmentation_fault): New function.
907         (print_signal_received_reason): Use handle_segmentation_fault.
908
909 2016-02-18  Marcin Koƛcielnicki  <koriakin@0x04.net>
910
911         * arch-utils.c (default_guess_tracepoint_registers): New function.
912         * arch-utils.h (default_guess_tracepoint_registers): New prototype.
913         * gdbarch.c: Regenerate.
914         * gdbarch.h: Regenerate.
915         * gdbarch.sh: Add guess_tracepoint_registers hook.
916         * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
917
918 2016-02-17  Gary Benson  <gbenson@redhat.com>
919
920         * exec.c (exec_file_locate_attach): Add missing cleanup.
921
922 2016-02-16  Don Breazeal  <donb@codesourcery.com>
923
924         PR remote/19496
925         * remote.c (remove_new_fork_children): Check for pending
926         fork status in thread_info.suspend.
927
928 2016-02-16  Yao Qi  <yao.qi@linaro.org>
929
930         * arm-linux-tdep.c (arm_linux_software_single_step): Assign
931         'old_chain' later.
932
933 2016-02-16  Yao Qi  <yao.qi@linaro.org>
934
935         * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
936         <syscall_next_pc>: Remove argument PC.  Callers updated.
937         * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
938         Remove argument PC.  Get pc from regcache_read_pc.
939         * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
940         argument PC.
941
942 2016-02-15  Yao Qi  <yao.qi@linaro.org>
943
944         * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
945
946 2016-02-12  Yao Qi  <yao.qi@linaro.org>
947
948         * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
949         nextpc according to instruction.
950
951 2016-02-12  Yao Qi  <yao.qi@linaro.org>
952
953         * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
954         self->ops->fixup if it isn't NULL.
955         * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
956         (struct arm_get_next_pcs_ops) <fixup>: New field.
957         * arch/arm-linux.c: Include common-regcache.h and
958         arch/arm-get-next-pcs.h.
959         (arm_linux_get_next_pcs_fixup): New function.
960         * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
961         * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
962         it with arm_linux_get_next_pcs_fixup.
963         (arm_linux_software_single_step): Move code to
964         arm_linux_get_next_pcs_fixup.
965         * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
966
967 2016-02-12  Marcin Koƛcielnicki  <koriakin@0x04.net>
968
969         * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
970         and return NULL.
971
972 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
973
974         * frame.h (skip_tailcall_frames): Update comment.
975         * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
976         if only artificial frames are found.  Update comment.
977         (frame_unwind_caller_id): Handle NULL return.
978         (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
979         skip_artificial_frames does not return NULL.
980         (frame_pop): Add an error if only tailcall frames are found.
981         * infcmd.c (finish_command): Move skip_tailcall_frames call into
982         forward-execution case.  Add an error if only tailcall frames are
983         found.
984
985 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
986
987         * stack.c (frame_info): Check frame_unwind_caller_id.
988
989 2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
990
991         * frame.h (skip_tailcall_frames): New.
992         * frame.c (skip_tailcall_frames): New.
993         (frame_pop): Call skip_tailcall_frames.
994         * infcmd.c (finish_command): Call skip_tailcall_frames.
995
996 2016-02-11  Pedro Alves  <palves@redhat.com>
997
998         * Makefile.in (check-parallel): New rule.
999
1000 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
1001
1002         * arm-tdep.c (arm_skip_prologue): Remove unused variables.
1003         (arm_analyze_prologue): Likewise.
1004         (arm_scan_prologue): Likewise.
1005         (arm_m_exception_prev_register): Likewise.
1006         (arm_copy_block_xfer): Likewise.
1007         (thumb2_copy_block_xfer): Likewise.
1008         (arm_decode_miscellaneous): Likewise.
1009         (arm_decode_ld_st_word_ubyte): Likewise.
1010         (arm_decode_svc_copro): Likewise.
1011         (thumb2_decode_svc_copro): Likewise.
1012         (thumb_copy_16bit_ldr_literal): Likewise.
1013         (thumb_copy_pop_pc_16bit): Likewise.
1014         (decode_thumb_32bit_ld_mem_hints): Likewise.
1015         (arm_show_force_mode): Likewise.
1016         (_initialize_arm_tdep): Likewise.
1017         (arm_record_strx): Likewise.
1018         (arm_record_extension_space): Likewise.
1019         (arm_record_data_proc_misc_ld_str): Likewise.
1020         (arm_record_exreg_ld_st_insn): Likewise.
1021         (arm_record_vfp_data_proc_insn): Likewise.
1022         (arm_record_coproc_data_proc): Likewise.
1023         (thumb_record_misc): Likewise.
1024         (thumb_record_ldm_stm_swi): Likewise.
1025         (thumb2_record_ld_st_dual_ex_tbb): Likewise.
1026         (thumb2_record_ld_mem_hints): Likewise.
1027         (thumb2_record_lmul_lmla_div): Likewise.
1028         (thumb2_record_asimd_struct_ld_st): Likewise.
1029         (arm_process_record): Likewise.
1030
1031 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
1032
1033         * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
1034         (ARM displaced stepping support): Remove reference to
1035         arm_displaced_step_copy_insn in comment.
1036         * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
1037         * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
1038         reference to arm_displaced_step_copy_insn in comment.
1039
1040 2016-02-11  Simon Marchi  <simon.marchi@ericsson.com>
1041
1042         * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
1043         (thumb_copy_b): Likewise.
1044         (arm_decode_b_bl_ldmstm): Likewise.
1045         (thumb_copy_16bit_ldr_literal): Likewise.
1046         (thumb_copy_pop_pc_16bit): Likewise.
1047
1048 2016-02-11  Antoine Tremblay  <antoine.tremblay@ericsson.com>
1049
1050         * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
1051         than loc->gdbarch.
1052
1053 2016-02-10  Marcin Koƛcielnicki  <koriakin@0x04.net>
1054
1055         * tracefile-tfile.c (trace_tdesc): New static variable.
1056         (tfile_open): Clear trace_tdesc, call target_find_description.
1057         (tfile_interp_line): Recognize tdesc lines.
1058         (tfile_close): Clear trace_tdesc.
1059         (tfile_xfer_partial_features): New function.
1060         (tfile_xfer_partial): Call tfile_xfer_partial_features.
1061         (tfile_append_tdesc_line): New function.
1062
1063 2016-02-10  Marcin Koƛcielnicki  <koriakin@0x04.net>
1064
1065         * ctf.c (ctf_write_tdesc): New function.
1066         (ctf_write_ops): Wire in ctf_write_tdesc.
1067         * tracefile-tfile.c (tfile_write_tdesc): New function.
1068         (tfile_write_ops): Wire in tfile_write_tdesc.
1069         * tracefile.c (trace_save): Call write_tdesc method.
1070         * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
1071         * xml-tdesc.c (target_fetch_description_xml): New function.
1072         * xml-tdesc.h: Add target_fetch_description_xml prototype.
1073
1074 2016-02-10  Simon Marchi  <simon.marchi@ericsson.com>
1075
1076         * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
1077         (arm_decode_dp_misc): Likewise.
1078
1079 2016-02-10  Marcin Koƛcielnicki  <koriakin@0x04.net>
1080
1081         * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
1082         (amd64_init_abi): Fill ax_pseudo_register_collect hook.
1083         * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
1084         misleading comment.
1085         (i386_pseudo_register_write): Ditto.
1086         (i386_ax_pseudo_register_collect): New function.
1087         (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
1088         * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
1089
1090 2016-02-10  Marcin Koƛcielnicki  <koriakin@0x04.net>
1091
1092         * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
1093         instead of gdb order.
1094
1095 2016-02-10  Marcin Koƛcielnicki  <koriakin@0x04.net>
1096
1097         * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
1098         check.
1099
1100 2016-02-10  Joel Brobecker  <brobecker@adacore.com>
1101
1102         * NEWS: Create a new section for the next release branch.
1103         Rename the section of the current branch, now that it has
1104         been cut.
1105
1106 2016-02-10  Joel Brobecker  <brobecker@adacore.com>
1107
1108         GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
1109         * version.in: Bump version to 7.11.50.DATE-git.
1110
1111 2016-02-09  Keith Seitz  <keiths@redhat.com>
1112
1113         PR breakpoints/19546
1114         * breakpoint.c (breakpoint_event_location_empty_p): New function.
1115         (update_breakpoints_after_exec, bkpt_re_set): Use this new function
1116         instead of event_location_empty_p.
1117
1118 2016-02-09  Keith Seitz  <keiths@redhat.com>
1119
1120         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
1121         string_to_event_location_basic instead of string_to_event_location.
1122
1123 2016-02-09  Keith Seitz  <keiths@redhat.com>
1124
1125         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
1126         leading whitespace and use string_to_event_location_basic instead
1127         of new_linespec_location.
1128
1129 2016-02-09  Keith Seitz  <keiths@redhat.com>
1130
1131         PR python/19506
1132         * python/py-breakpoint.c (bppy_init): Use
1133         string_to_event_location_basic instead of new_linespec_location.
1134
1135 2016-02-09  Keith Seitz  <keiths@redhat.com>
1136
1137         * location.c (string_to_explicit_location): Note that "-p" is
1138         reserved for probe locations and return NULL for any input
1139         that starts with that.
1140         (string_to_event_location): Move "legacy" linespec code to ...
1141         (string_to_event_location_basic): ... here.
1142         * location.h (string_to_event_location): Update comment.
1143         (string_to_event_location_basic): New function.
1144
1145 2016-02-09  Simon Marchi  <simon.marchi@ericsson.com>
1146
1147         * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
1148         to AC_OUTPUT.  Remove "exit 0" at the end.
1149         * configure: Regenerate.
1150
1151 2016-02-09  Pedro Alves  <palves@redhat.com>
1152
1153         PR breakpoints/19548
1154         * breakpoint.c (create_overlay_event_breakpoint): Don't update
1155         global location list here.
1156         (create_longjmp_master_breakpoint)
1157         (create_std_terminate_master_breakpoint)
1158         (create_exception_master_breakpoint, create_jit_event_breakpoint)
1159         (update_breakpoint_locations):
1160         (breakpoint_re_set): Update global location list after all
1161         breakpoints are re-set.
1162
1163 2016-02-08  Simon Marchi  <simon.marchi@ericsson.com>
1164
1165         * remote.c (remote_register_number_and_offset): Remove unused
1166         variable(s).
1167         (remote_thread_always_alive): Likewise.
1168         (remote_update_thread_list): Likewise.
1169         (process_initial_stop_replies): Likewise.
1170         (remote_start_remote): Likewise.
1171         (remote_check_symbols): Likewise.
1172         (discard_pending_stop_replies): Likewise.
1173         (process_stop_reply): Likewise.
1174         (putpkt_binary): Likewise.
1175         (getpkt): Likewise.
1176         (remote_add_target_side_condition): Likewise.
1177         (remote_insert_breakpoint): Likewise.
1178         (remote_supports_stopped_by_sw_breakpoint): Likewise.
1179         (remote_supports_stopped_by_hw_breakpoint): Likewise.
1180         (remote_xfer_partial): Likewise.
1181         (remote_read_btrace): Likewise.
1182         (remote_async_serial_handler): Likewise.
1183         (remote_thread_events): Likewise.
1184         (_initialize_remote): Likewise.
1185
1186 2016-02-07  Simon Marchi  <simon.marchi@polymtl.ca>
1187
1188         * varobj.h (varobj_delete): Remove dellist parameter, update and
1189         move documentation here.
1190         * varobj.c (struct cpstack, cppush, cppop): Remove.
1191         (delete_variable): Remove resultp (first) parameter.
1192         (delete_variable_1): Likewise.
1193         (varobj_delete): Remove dellist parameter and unused code.
1194         (update_dynamic_varobj_children): Adjust varobj_delete call.
1195         (update_type_if_necessary): Likewise.
1196         (varobj_set_visualizer): Likewise.
1197         (varobj_update): Likewise.
1198         (value_of_root): Likewise.
1199         (varobj_invalidate_iter): Likewise.
1200         * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
1201
1202 2016-02-04  Yao Qi  <yao.qi@linaro.org>
1203
1204         * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
1205         0 before handling 'F' and set it back afterwards.
1206
1207 2016-02-02  Simon Marchi  <simon.marchi@ericsson.com>
1208
1209         * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
1210
1211 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1212
1213         * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
1214         New types.
1215         (compat_siginfo): New bound fields added.
1216         (compat_x32_siginfo): New field added.
1217         (cpt_si_addr_lsb): New define.
1218         (compat_siginfo_from_siginfo): Use nat_siginfo.
1219         (siginfo_from_compat_siginfo): Use nat_siginfo.
1220         (compat_x32_siginfo_from_siginfo): Likewise.
1221         (siginfo_from_compat_x32_siginfo): Likewise.
1222
1223 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1224
1225         * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
1226         structure to the siginfo if extra_fields contains
1227         LINUX_SIGINFO_FIELD_ADDR_BND.
1228
1229 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1230
1231         * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
1232         * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
1233         * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
1234         function.
1235         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
1236         x86_linux_get_siginfo_type for the amd64 abi.
1237         * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
1238         function.
1239         (i386_linux_init_abi): Add new function at the i386 ABI
1240         initialization.
1241
1242 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1243
1244         * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
1245         (linux_siginfo_extra_fields): New enum type.
1246         * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
1247         (linux_get_siginfo_type): Use new function.
1248
1249 2016-02-02  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1250
1251         * nat/amd64-linux-siginfo.c: New file.
1252         * nat/amd64-linux-siginfo.h: New file.
1253         * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
1254         (amd64-linux-siginfo.o): New rule.
1255         * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
1256         * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
1257         (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
1258         (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
1259         (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
1260         (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
1261         (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
1262         (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
1263
1264 2016-02-01  Andrew Burgess  <andrew.burgess@embecosm.com>
1265
1266         * value.c (max_value_size): New variable.
1267         (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
1268         (set_max_value_size): New function.
1269         (show_max_value_size): New function.
1270         (check_type_length_before_alloc): New function.
1271         (allocate_value_contents): Call check_type_length_before_alloc.
1272         (set_value_enclosing_type): Likewise.
1273         (_initialize_values): Add set/show handler for max-value-size.
1274         * NEWS: Mention new set/show command.
1275
1276 2016-01-31  Simon Marchi  <simon.marchi@polymtl.ca>
1277
1278         * varobj.h (struct varobj): Fix typos in comments.
1279         (struct lang_varobj_ops): Likewise.
1280         * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
1281         (varobj_create): Move misplaced comment.
1282
1283 2016-01-29  Simon Marchi  <simon.marchi@ericsson.com>
1284
1285         * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
1286         to for include additional lines.
1287         * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
1288
1289 2016-01-28  Simon Marchi  <simon.marchi@ericsson.com>
1290
1291         * gnulib/import/Makefile.am: Regenerate.
1292         * gnulib/import/Makefile.in: Regenerate.
1293         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1294         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
1295
1296 2016-01-28  Simon Marchi  <simon.marchi@ericsson.com>
1297
1298         * remote.c (skip_to_semicolon): Remove.
1299         (remote_parse_stop_reply): Use strchrnul instead of
1300         skip_to_semicolon.
1301         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1302         strchrnul.
1303         * gnulib/aclocal.m4: Regenerate.
1304         * gnulib/config.in: Regenerate.
1305         * gnulib/configure: Regenerate.
1306         * gnulib/import/Makefile.am: Regenerate.
1307         * gnulib/import/Makefile.in: Regenerate.
1308         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1309         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1310         * gnulib/import/m4/rawmemchr.m4: New file.
1311         * gnulib/import/m4/strchrnul.m4: New file.
1312         * gnulib/import/rawmemchr.c: New file.
1313         * gnulib/import/rawmemchr.valgrind: New file.
1314         * gnulib/import/strchrnul.c: New file.
1315         * gnulib/import/strchrnul.valgrind: New file.
1316
1317 2016-01-28  Yao Qi  <yao.qi@linaro.org>
1318
1319         * breakpoint.c (build_target_command_list): Don't call continue
1320         if aexpr is NULL.
1321         (build_target_condition_list): Likewise.
1322
1323 2016-01-27  Kevin Buettner  <kevinb@redhat.com>
1324
1325         * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
1326         bytes as aggregates.
1327
1328 2016-01-27  Joel Brobecker  <brobecker@adacore.com>
1329
1330         * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
1331         Linespec Maintainers.
1332
1333 2016-01-26  Simon Marchi  <simon.marchi@ericsson.com>
1334
1335         * common/common-utils.c (skip_spaces): Fix comment.
1336         (skip_to_space_const): Likewise.
1337
1338 2016-01-25  Yao Qi  <yao.qi@linaro.org>
1339
1340         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
1341         Remove argument pc.  Get pc by regcache_read_pc.  Callers updated.
1342         (arm_deal_with_atomic_sequence_raw): Likewise.
1343         (thumb_get_next_pcs_raw): Likewise.
1344         (arm_get_next_pcs_raw): Likewise.
1345         (arm_get_next_pcs): Remove argument pc.  Callers updated.
1346         * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
1347
1348 2016-01-25  Mark Wielaard  <mjw@redhat.com>
1349
1350         * ada-lang.c (ada_evaluate_subexp): Add proper else block.
1351         * c-typeprint.c (c_type_print_base): Fix misleading indentation of
1352         if statement.
1353         * inflow.c (child_terminal_ours_1): Fix misleading indentation of
1354         statement block by introducing an else.
1355         * linux-record.c (record_linux_sockaddr): Fix misleading indentation
1356         of return statements.
1357         (record_linux_msghdr): Likewise.
1358
1359 2016-01-25  Pedro Alves  <palves@redhat.com>
1360
1361         PR threads/19461
1362         * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
1363         parent/child running states.
1364
1365 2016-01-25  Pedro Alves  <palves@redhat.com>
1366
1367         PR gdb/19494
1368         * linux-nat.c (kill_one_lwp): New, factored out from ...
1369         (kill_callback): ... this.
1370         (kill_wait_callback): New, factored out from ...
1371         (kill_wait_one_lwp): ... this.
1372         (kill_unfollowed_fork_children): New function.
1373         (linux_nat_kill): Use it.
1374
1375 2016-01-22  John Baldwin  <jhb@FreeBSD.org>
1376
1377         * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
1378
1379 2016-01-22  Yao Qi  <yao.qi@linaro.org>
1380
1381         * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
1382         instead of warning.
1383         (store_fpregs, fetch_regs, store_regs): Likewise.
1384         (fetch_wmmx_regs, store_wmmx_regs): Likewise.
1385         (fetch_vfp_regs, store_vfp_regs): Likewise.
1386
1387 2016-01-21  Doug Evans  <dje@google.com>
1388
1389         * breakpoint.c (init_breakpoint_sal): Add comment.
1390
1391 2016-01-21  Marcin Koƛcielnicki  <koriakin@0x04.net>
1392
1393         * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
1394
1395 2016-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
1396
1397         * disasm.c (maybe_add_dis_line_entry): Rename to...
1398         (add_dis_line_entry): ...this, and update header comment.
1399         (do_mixed_source_and_assembly): Now use add_dis_line_entry.
1400
1401 2016-01-21  Pedro Alves  <palves@redhat.com>
1402
1403         * Makefile.in (COMPILER_CFLAGS): New.
1404         (CXXFLAGS): Get it from configure.
1405         (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
1406         instead of CFLAGS.
1407         * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
1408         COMPILER_CFLAGS.
1409         * configure: Regenerate.
1410
1411 2016-01-21  Joel Brobecker  <brobecker@adacore.com>
1412
1413         * location.h (new_address_location): Add new parameters
1414         "addr_string" and "addr_string_len".
1415         (get_address_string_location): Add declaration.
1416         * location.c (new_address_location): Add new parameters
1417         "addr_string" and "addr_string_len".  If not NULL, store
1418         a copy of the addr_string in the new location as well.
1419         (get_address_string_location): New function.
1420         (string_to_event_location): Update call to new_address_location.
1421         * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
1422         Save the event location in the parser's state before
1423         passing it to convert_address_location_to_sals.
1424         * breakpoint.c (create_thread_event_breakpoint): Update call
1425         to new_address_location.
1426         (init_breakpoint_sal): Get the event location's string, if any,
1427         and use it to update call to new_address_location.
1428         * python/py-finishbreakpoint.c (bpfinishpy_init):
1429         Update call to new_address_location.
1430         * spu-tdep.c (spu_catch_start): Likewise.
1431
1432         * config/djgpp/fnchange.lst: Add entries for
1433         gdb/testsuite/gdb.base/break-fun-addr1.c and
1434         gdb/testsuite/gdb.base/break-fun-addr2.c.
1435
1436 2016-01-21  Yao Qi  <yao.qi@linaro.org>
1437
1438         * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
1439         is_thumb and set it according to CPSR saved on the stack.
1440         (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
1441         arm_linux_sigreturn_next_pc.
1442
1443 2016-01-20  Simon Marchi  <simon.marchi@polymtl.ca>
1444
1445         * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
1446         Fix enumerators sort key function.
1447
1448 2016-01-20  Joel Brobecker  <brobecker@adacore.com>
1449
1450         * printcmd.c (print_scalar_formatted): Move binary operator from
1451         end of line to beginning of next line.  Adjust formatting
1452         accordingly.
1453
1454 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1455
1456         * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
1457         "len" with sysctl.
1458
1459 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1460
1461         * fbsd-tdep.c (find_stop_signal): Remove.
1462         (struct fbsd_collect_regset_section_cb) <lwp>: New field.
1463         <stop_signal>: New field.
1464         <abort_iteration>: New field.
1465         (fbsd_collect_regset_section_cb): Use new fields.
1466         (fbsd_collect_thread_registers): New function.
1467         (struct fbsd_corefile_thread_data): New structure.
1468         (fbsd_corefile_thread): New function.
1469         (fbsd_make_corefile_notes): Use new function to dump notes for each
1470         non-exited thread in a process.
1471
1472 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1473
1474         * configure.ac: Check for support for LWP names on FreeBSD.
1475         * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
1476         [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
1477         (fbsd_fetch_kinfo_proc): Move function earlier.
1478         [PT_LWPINFO] (fbsd_thread_alive): New function.
1479         [PT_LWPINFO] (fbsd_pid_to_str): New function.
1480         [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
1481         [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
1482         [PT_LWPINFO] (fbsd_add_threads): New function.
1483         [PT_LWPINFO] (fbsd_update_thread_list): New function.
1484         [PT_LWPINFO] New variable super_resume.
1485         [PT_LWPINFO] (resume_one_thread_cb): New function.
1486         [PT_LWPINFO] (resume_all_threads_cb): New function.
1487         [PT_LWPINFO] (fbsd_resume): New function.
1488         (fbsd_remember_child): Save full ptid instead of plain pid.
1489         (fbsd_is_child_pending): Return ptid of saved child process.
1490         (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
1491         first stop.
1492         [PT_LWP_EVENTS] Handle LWP events.
1493         [TDP_RFPPWAIT] Include LWP in child ptid.
1494         (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
1495         (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
1496         Add threads for existing processes.
1497         (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
1498         "fbsd_thread_alive".
1499         Set "to_pid_to_str" to "fbsd_pid_to_str".
1500         [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
1501         "fbsd_thread_name".
1502         [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
1503         Set "to_has_thread_control" to "tc_schedlock".
1504         Set "to_resume" to "fbsd_resume".
1505         (_initialize_fbsd_nat): New function.
1506         * configure: Regenerate.
1507         * config.in: Regenerate.
1508
1509 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1510
1511         * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
1512         get_ptrace_pid.
1513         (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
1514         (amd64bsd_dr_get): Use get_ptrace_pid.
1515         (amd64bsd_dr_set): Use get_ptrace_pid.
1516         * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
1517         (i386bsd_store_inferior_registers): Use get_ptrace_pid.
1518         (i386bsd_dr_get): Use get_ptrace_pid.
1519         (i386bsd_dr_set): Use get_ptrace_pid.
1520         * inf-ptrace.c (get_ptrace_pid): Export.
1521         * inf-ptrace.h (get_ptrace_pid): Declare.
1522         * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
1523         (ppcfbsd_store_inferior_registers): Use lwp id.
1524
1525 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1526
1527         * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
1528         (fbsd_core_thread_name): New function.
1529         (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
1530         Add "core_thread_name" gdbarch method.
1531
1532 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1533
1534         * corelow.c (core_thread_name): New function.
1535         (init_core_ops): Use "core_thread_name" for the "to_thread_name"
1536         target op.
1537         * gdbarch.sh (core_thread_name): New gdbarch callback.
1538         * gdbarch.h: Re-generate.
1539         * gdbarch.c: Re-generate.
1540
1541 2016-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
1542
1543         * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
1544         convert gdb.Value to integer type using int().
1545
1546 2016-01-19  John Baldwin  <jhb@FreeBSD.org>
1547
1548         * configure.ac: Include <sys/types.h when checking for "r_fs" in
1549         "struct reg".
1550         * configure: Regenerate.
1551
1552 2016-01-19  Pedro Alves  <palves@redhat.com>
1553
1554         * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
1555         * break-catch-throw.c (re_set_exception_catchpoint): Pass the
1556         current program space down to linespec decoding and breakpoint
1557         location updating.
1558         * breakpoint.c (parse_breakpoint_sals): Adjust calls to
1559         decode_line_full.
1560         (until_break_command): Adjust calls to decode_line_1.
1561         (base_breakpoint_decode_location, bkpt_decode_location): Add
1562         'search_pspace' parameter.  Pass it along.
1563         (bkpt_probe_create_sals_from_location): Adjust calls to
1564         parse_probes.
1565         (tracepoint_decode_location, tracepoint_probe_decode_location)
1566         (strace_marker_decode_location): Add 'search_pspace' parameter.
1567         Pass it along.
1568         (all_locations_are_pending): Rewrite to take a breakpoint and
1569         program space as arguments instead.
1570         (hoist_existing_locations): New function.
1571         (update_breakpoint_locations): Add 'filter_pspace' parameter.  Use
1572         hoist_existing_locations instead of always removing all locations,
1573         and adjust to all_locations_are_pending change.
1574         (location_to_sals): Add 'search_pspace' parameter.  Pass it along.
1575         Don't disable the breakpoint if there are other locations in
1576         another program space.
1577         (breakpoint_re_set_default): Adjust to pass down the current
1578         program space as filter program space.
1579         (decode_location_default): Add 'search_pspace' parameter and pass
1580         it along.
1581         (prepare_re_set_context): Don't switch program space here.
1582         (breakpoint_re_set): Use save_current_space_and_thread instead of
1583         save_current_program_space.
1584         * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
1585         'search_pspace' parameter.
1586         (update_breakpoint_locations): Add 'filter_pspace' parameter.
1587         * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
1588         decode_line_1.
1589         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
1590         program space as filter program space.
1591         * linespec.c (struct linespec_state) <search_pspace>: New field.
1592         (create_sals_line_offset, convert_explicit_location_to_sals)
1593         (parse_linespec): Pass the search program space down.
1594         (linespec_state_constructor): Add 'search_pspace' parameter.
1595         Store it.
1596         (linespec_parser_new): Add 'search_pspace' parameter and pass it
1597         along.
1598         (linespec_lex_to_end): Adjust.
1599         (decode_line_full, decode_line_1): Add 'search_pspace' parameter
1600         and pass it along.
1601         (decode_line_with_last_displayed): Adjust.
1602         (collect_symtabs_from_filename, symtabs_from_filename): New
1603         'search_pspace' parameter.  Use it.
1604         (find_function_symbols): Pass the search program space down.
1605         * linespec.h (decode_line_1, decode_line_full): Add
1606         'search_pspace' parameter.
1607         * probe.c (parse_probes_in_pspace): New function, factored out
1608         from ...
1609         (parse_probes): ... this.  Add 'search_pspace' parameter and use
1610         it.
1611         * probe.h (parse_probes): Add pspace' parameter.
1612         * python/python.c (gdbpy_decode_line): Adjust.
1613         * tracepoint.c (scope_info): Adjust.
1614
1615 2016-01-18  Maciej W. Rozycki  <macro@imgtec.com>
1616
1617         * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
1618         instruction support.
1619         (micromips_next_pc): Likewise.
1620         (micromips_scan_prologue): Likewise.
1621         (micromips_deal_with_atomic_sequence): Likewise.
1622         (micromips_stack_frame_destroyed_p): Likewise.
1623         (mips_breakpoint_from_pc): Likewise.
1624
1625 2016-01-18  Maciej W. Rozycki  <macro@imgtec.com>
1626
1627         * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
1628         unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
1629
1630 2016-01-18  Pedro Alves  <palves@redhat.com>
1631
1632         * NEWS: Mention that GDB now displays the ID and name of the
1633         thread that hit a breakpoint or received a signal.
1634         * break-catch-sig.c (signal_catchpoint_print_it): Use
1635         maybe_print_thread_hit_breakpoint.
1636         * break-catch-syscall.c (print_it_catch_syscall): Likewise.
1637         * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
1638         * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
1639         (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
1640         (print_it_catch_exec, print_it_ranged_breakpoint)
1641         (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
1642         Use maybe_print_thread_hit_breakpoint.
1643         * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
1644         * gdbthread.h (show_thread_that_caused_stop): Declare.
1645         * infrun.c (print_signal_received_reason): Print which thread
1646         received signal.
1647         * thread.c (show_thread_that_caused_stop): New function.
1648
1649 2016-01-18  Gary Benson  <gbenson@redhat.com>
1650
1651         * nat/linux-namespaces.c (do_fork): New function.
1652         (linux_mntns_get_helper): Use the above.
1653
1654 2016-01-17  Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de>  (tiny change)
1655
1656         Pushed by Joel Brobecker  <brobecker@adacore.com>.
1657         PR gdb/19208
1658         * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
1659         if the function has no name.
1660
1661 2016-01-15  Sandra Loosemore  <sandra@codesourcery.com>
1662
1663         * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
1664         Conditionalize for Windows host.
1665         (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
1666         (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
1667         (phony_iconv_open): Handle both UTF-32 endiannesses.
1668         (phony_iconv): Likewise.  Check for output overflow and clean up
1669         out-of-input cases.  Correct adjustment to input buffer pointer.
1670         (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
1671         phony_iconv_open.
1672
1673 2016-01-15  Pedro Alves  <palves@redhat.com>
1674
1675         * NEWS: Mention star wildcard ranges.
1676         * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
1677         (number_range_setup_range): New function.
1678         * cli/cli-utils.h (number_range_setup_range): New declaration.
1679         * thread.c (thread_apply_command): Support star TID ranges.
1680         * tid-parse.c (tid_range_parser_finished)
1681         (tid_range_parser_string, tid_range_parser_skip)
1682         (get_tid_or_range, get_tid_or_range): Handle
1683         TID_RANGE_STATE_STAR_RANGE.
1684         (tid_range_parser_star_range): New function.
1685         * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
1686         New value.
1687         (tid_range_parser_star_range): New declaration.
1688
1689 2016-01-15  Pedro Alves  <palves@redhat.com>
1690
1691         * thread.c (thread_apply_command): Use the tid range parser to
1692         advance past the thread ID list.
1693         * tid-parse.c (get_positive_number_trailer): New function.
1694         (parse_thread_id): Use it.
1695         (get_tid_or_range): Use it.  Return 0 instead of throwing invalid
1696         thread ID error.
1697         (get_tid_or_range): Detect negative values.  Return 0 instead of
1698         throwing invalid thread ID error.
1699
1700 2016-01-14  Yao Qi  <yao.qi@linaro.org>
1701
1702         * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
1703         Declare.
1704         (arm_linux_get_next_pcs_ops): Install
1705         arm_linux_get_next_pcs_syscall_next_pc.
1706         (arm_linux_syscall_next_pc): Change to ...
1707         (arm_linux_get_next_pcs_syscall_next_pc): ... it.
1708         (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
1709         * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
1710         (arm_get_next_pcs_syscall_next_pc): Make it static.  Don't
1711         call tdep->syscall_next_pc.
1712         * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
1713         (arm_get_next_pcs_syscall_next_pc): Remove.
1714
1715 2016-01-14  Yao Qi  <yao.qi@linaro.org>
1716
1717         * remote.c (remote_set_syscall_catchpoint): Cast to char *.
1718         * thread.c (do_captured_thread_select): Cast to const char *.
1719
1720 2016-01-14  Yao Qi  <yao.qi@linaro.org>
1721
1722         * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
1723         argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
1724         (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
1725         instead.
1726         * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
1727         <arm_thumb2_breakpoint>: Remove.
1728         <has_thumb2_breakpoint>: New field.
1729         (arm_get_next_pcs_ctor): Update declaration.
1730         * arm-linux-tdep.c (arm_linux_software_single_step): Pass
1731         1 to arm_get_next_pcs_ctor.
1732         * arm-tdep.c (arm_software_single_step): Pass 0 to
1733         arm_get_next_pcs_ctor.
1734
1735 2016-01-13  Ulrich Weigand  <uweigand@de.ibm.com>
1736
1737         * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
1738
1739 2016-01-13  Yao Qi  <yao.qi@linaro.org>
1740
1741         * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
1742         byte_order_for_code to read instruction.
1743
1744 2016-01-13  Pedro Alves  <palves@redhat.com>
1745
1746         * NEWS: Mention $_gthread.
1747         * gdbthread.h (struct thread_info) <global_num>: Mention
1748         $_gthread.
1749         * thread.c (thread_num_make_value_helper): New function.
1750         (thread_id_make_value): Delete.
1751         (thread_id_per_inf_num_make_value, global_thread_id_make_value):
1752         New.
1753         (thread_funcs): Adjust.
1754         (gthread_funcs): New.
1755         (_initialize_thread): Register $_gthread variable.
1756
1757 2016-01-13  Pedro Alves  <palves@redhat.com>
1758
1759         * NEWS: Mention "info threads -gid".
1760         * gdbthread.h (struct thread_info) <global_num>: Mention "info
1761         threads -gid".
1762         * thread.c (info_threads_command): Handle "-gid".
1763         (_initialize_thread): Adjust "info threads" help string to mention
1764         -gid.
1765
1766 2016-01-13  Pedro Alves  <palves@redhat.com>
1767
1768         * NEWS: Mention InferiorThread.global_num.
1769         * python/py-infthread.c (thpy_get_global_num): New function.
1770         (thread_object_getset): Register "global_num".
1771
1772 2016-01-13  Pedro Alves  <palves@redhat.com>
1773
1774         * NEWS: Mention that thread IDs are now per inferior and global
1775         thread IDs.
1776         * Makefile.in (SFILES): Add tid-parse.c.
1777         (COMMON_OBS): Add tid-parse.o.
1778         (HFILES_NO_SRCDIR): Add tid-parse.h.
1779         * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
1780         * breakpoint.c (insert_breakpoint_locations)
1781         (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
1782         (print_one_breakpoint_location, set_longjmp_breakpoint)
1783         (check_longjmp_breakpoint_for_call_dummy)
1784         (set_momentary_breakpoint): Adjust to use global IDs.
1785         (find_condition_and_thread, watch_command_1): Use parse_thread_id.
1786         (until_break_command, longjmp_bkpt_dtor)
1787         (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
1788         to use global IDs.
1789         * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
1790         ptid_to_global_thread_id.
1791         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
1792         * gdbthread.h (struct thread_info): Rename field 'num' to
1793         'global_num.  Add new fields 'per_inf_num' and 'inf'.
1794         (thread_id_to_pid): Rename thread_id_to_pid to
1795         global_thread_id_to_ptid.
1796         (pid_to_thread_id): Rename to ...
1797         (ptid_to_global_thread_id): ... this.
1798         (valid_thread_id): Rename to ...
1799         (valid_global_thread_id): ... this.
1800         (find_thread_id): Rename to ...
1801         (find_thread_global_id): ... this.
1802         (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
1803         (print_thread_info): Add comment.
1804         * tid-parse.h: New file.
1805         * tid-parse.c: New file.
1806         * infcmd.c (step_command_fsm_prepare)
1807         (step_command_fsm_should_stop): Adjust to use the global thread
1808         ID.
1809         (until_next_command, until_next_command)
1810         (finish_command_fsm_should_stop): Adjust to use the global thread
1811         ID.
1812         (attach_post_wait): Adjust to check the inferior number too.
1813         * inferior.h (struct inferior) <highest_thread_num>: New field.
1814         * infrun.c (handle_signal_stop)
1815         (insert_exception_resume_breakpoint)
1816         (insert_exception_resume_from_probe): Adjust to use the global
1817         thread ID.
1818         * record-btrace.c (record_btrace_open): Use global thread IDs.
1819         * remote.c (process_initial_stop_replies): Also consider the
1820         inferior number.
1821         * target.c (target_pre_inferior): Clear the inferior's highest
1822         thread num.
1823         * thread.c (clear_thread_inferior_resources): Adjust to use the
1824         global thread ID.
1825         (new_thread): New inferior parameter.  Adjust to use it.  Set both
1826         the thread's global ID and the thread's per-inferior ID.
1827         (add_thread_silent): Adjust.
1828         (find_thread_global_id): New.
1829         (find_thread_id): Make static.  Adjust to rename.
1830         (valid_thread_id): Rename to ...
1831         (valid_global_thread_id): ... this.
1832         (pid_to_thread_id): Rename to ...
1833         (ptid_to_global_thread_id): ... this.
1834         (thread_id_to_pid): Rename to ...
1835         (global_thread_id_to_ptid): ... this.  Adjust.
1836         (first_thread_of_process): Adjust.
1837         (do_captured_list_thread_ids): Adjust to use global thread IDs.
1838         (should_print_thread): New function.
1839         (print_thread_info): Rename to ...
1840         (print_thread_info_1): ... this, and add new show_global_ids
1841         parameter.  Handle it.  Iterate over inferiors.
1842         (print_thread_info): Reimplement as wrapper around
1843         print_thread_info_1.
1844         (show_inferior_qualified_tids): New function.
1845         (print_thread_id): Use it.
1846         (tp_array_compar): Compare inferior numbers too.
1847         (thread_apply_command): Use tid_range_parser.
1848         (do_captured_thread_select): Use parse_thread_id.
1849         (thread_id_make_value): Adjust.
1850         (_initialize_thread): Adjust "info threads" help string.
1851         * varobj.c (struct varobj_root): Update comment.
1852         (varobj_create): Adjust to use global thread IDs.
1853         (value_of_root_1): Adjust to use global_thread_id_to_ptid.
1854         * windows-tdep.c (display_tib): No longer accept an argument.
1855         * cli/cli-utils.c (get_number_trailer): Make extern.
1856         * cli/cli-utils.h (get_number_trailer): Declare.
1857         (get_number_const): Adjust documentation.
1858         * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
1859         thread IDs.
1860         * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
1861         (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
1862         * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
1863         * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
1864         Likewise.
1865         * python/py-breakpoint.c (bppy_set_thread): Likewise.
1866         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1867         * python/py-infthread.c (thpy_get_num): Add comment and return the
1868         per-inferior thread ID.
1869         (thread_object_getset): Update comment of "num".
1870
1871 2016-01-13  Pedro Alves  <palves@redhat.com>
1872
1873         * breakpoint.c (remove_threaded_breakpoints)
1874         (print_one_breakpoint_location): Use print_thread_id.
1875         * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
1876         (btrace_fetch, btrace_clear): Use print_thread_id.
1877         * common/print-utils.c (CELLSIZE): Delete.
1878         (get_cell): Rename to ...
1879         (get_print_cell): ... this and made extern.  Adjust call callers.
1880         Adjust to use PRINT_CELL_SIZE.
1881         * common/print-utils.h (get_print_cell): Declare.
1882         (PRINT_CELL_SIZE): New.
1883         * gdbthread.h (print_thread_id): Declare.
1884         * infcmd.c (signal_command): Use print_thread_id.
1885         * inferior.c (print_inferior): Use print_thread_id.
1886         * infrun.c (handle_signal_stop)
1887         (insert_exception_resume_breakpoint)
1888         (insert_exception_resume_from_probe)
1889         (print_signal_received_reason): Use print_thread_id.
1890         * record-btrace.c (record_btrace_info)
1891         (record_btrace_resume_thread, record_btrace_cancel_resume)
1892         (record_btrace_step_thread, record_btrace_wait): Use
1893         print_thread_id.
1894         * thread.c (thread_apply_all_command): Use print_thread_id.
1895         (print_thread_id): New function.
1896         (thread_apply_command): Use print_thread_id.
1897         (thread_command, thread_find_command, do_captured_thread_select):
1898         Use print_thread_id.
1899
1900 2016-01-13  Pedro Alves  <palves@redhat.com>
1901
1902         * NEWS: Mention InferiorThread.inferior.
1903         * python/py-infthread.c (thpy_get_inferior): New.
1904         (thread_object_getset): Register "inferior".
1905
1906 2016-01-13  Pedro Alves  <palves@redhat.com>
1907
1908         * NEWS: Mention $_inferior.
1909         * inferior.c (inferior_id_make_value): New.
1910         (inferior_funcs): New.
1911         (_initialize_inferior): Create $_inferior variable.
1912
1913 2016-01-13  Pedro Alves  <palves@redhat.com>
1914
1915         PR breakpoints/19388
1916         * frame.c (get_current_frame): Use validate_registers_access.
1917         * gdbthread.h (validate_registers_access): Declare.
1918         * infrun.c (validate_siginfo_access): Delete.
1919         (siginfo_value_read, siginfo_value_write): Use
1920         validate_registers_access.
1921         * thread.c (validate_registers_access): New function.
1922
1923 2016-01-12  Josh Stone  <jistone@redhat.com>
1924             Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1925
1926         * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
1927         syscall_entry and syscall_return stop reasons.  Mention GDB
1928         support for remote catch syscall.
1929         * remote.c (PACKET_QCatchSyscalls): New enum.
1930         (remote_set_syscall_catchpoint): New function.
1931         (remote_protocol_features): New element for QCatchSyscalls.
1932         (remote_parse_stop_reply): Parse syscall_entry/return stops.
1933         (init_remote_ops): Install remote_set_syscall_catchpoint.
1934         (_initialize_remote): Config QCatchSyscalls.
1935         * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
1936
1937 2016-01-12  Yao Qi  <yao.qi@linaro.org>
1938
1939         * nat/linux-ptrace.c (linux_child_function): Cast child_stack
1940         to gdb_byte * and pass to linux_fork_to_function.
1941
1942 2016-01-12  Yao Qi  <yao.qi@linaro.org>
1943
1944         * nat/linux-ptrace.c (linux_fork_to_function): Change type
1945         of argument 'function'.
1946         (linux_grandchild_function): Change return type to 'int'.
1947         Change child_stack's type to 'void *'.
1948         (linux_child_function): Likewise.
1949
1950 2016-01-12  Pedro Alves  <palves@redhat.com>
1951
1952         Remove use of the registered trademark symbol throughout.
1953
1954 2016-01-12  Thomas Schwinge  <thomas@codesourcery.com>
1955
1956         * reply_mig_hack.awk: Rewrite one regular expression.
1957
1958 2016-01-11  Mike Frysinger  <vapier@gentoo.org>
1959
1960         * acinclude.m4: Include new warning.m4 file.
1961         * configure: Regenerated.
1962         * configure.ac: Move all warning logic ...
1963         * warning.m4: ... here.
1964
1965 2016-01-08  Yao Qi  <yao.qi@linaro.org>
1966
1967         * extension.c: Include target.h.
1968         (set_active_ext_lang): Only call install_gdb_sigint_handler,
1969         check_quit_flag, and set_quit_flag if target_terminal_is_ours
1970         returns false.
1971         (restore_active_ext_lang): Likewise.
1972         * target.c (target_terminal_is_ours): New function.
1973         * target.h (target_terminal_is_ours): Declare.
1974
1975 2016-01-07  Maciej W. Rozycki  <macro@imgtec.com>
1976
1977         * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
1978         to `err' in the little-endian leg.
1979
1980 2016-01-06  Yao Qi  <yao.qi@linaro.org>
1981
1982         * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
1983         lines below.
1984         (thumb_get_next_pcs_raw): Make it static.
1985         (arm_get_next_pcs_raw): Likewise.
1986         * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
1987         declaration.
1988         (arm_get_next_pcs_raw): Likewise.
1989
1990 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
1991
1992         * version.in: Change cvs to git.
1993
1994 2016-01-05  Mike Frysinger  <vapier@gentoo.org>
1995
1996         * configure.tgt (score-*-*): Delete gdb_sim assignment.
1997
1998 2016-01-05  Pedro Alves  <palves@redhat.com>
1999
2000         PR sim/13418
2001         * configure.ac: Define WITH_PPC_SIM when linking in the sim and
2002         the target is powerpc*.
2003         * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
2004         of WITH_SIM.
2005         * configure: Regenerate.
2006         * config.in: Regenerate.
2007
2008 2016-01-04  Markus Metzger  <markus.t.metzger@intel.com>
2009
2010         * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
2011
2012 2016-01-02  Mike Frysinger  <vapier@gentoo.org>
2013
2014         * configure.tgt (powerpc*-*-*): Delete test call and
2015         always assign gdb_sim.
2016
2017 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
2018
2019         Update year range in copyright notice of all files.
2020
2021 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
2022
2023         * top.c (print_gdb_version): Change copyright year in version
2024         message.
2025
2026 2016-01-01  Joel Brobecker  <brobecker@adacore.com>
2027
2028         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
2029
2030 For older changes see ChangeLog-2015.
2031 \f
2032 Local Variables:
2033 mode: change-log
2034 left-margin: 8
2035 fill-column: 74
2036 version-control: never
2037 coding: utf-8
2038 End: