Class-ify ui_out
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
112e8700
SM
12016-12-22 Simon Marchi <simon.marchi@ericsson.com>
2
3 * ui-out.h (ui_out_begin, ui_out_end, ui_out_table_header,
4 ui_out_table_body, ui_out_field_int, ui_out_field_fmt_int,
5 ui_out_field_core_addr, ui_out_field_string, ui_out_field_stream,
6 ui_out_field_fmt, ui_out_field_skip, ui_out_spaces, ui_out_text,
7 ui_out_message, ui_out_wrap_hint, ui_out_flush, ui_out_test_flags,
8 ui_out_query_field, ui_out_is_mi_like_p, ui_out_redirect):
9 Remove, replace with a method in class ui_out.
10 (table_begin_ftype): Remove, replace with pure virtual method in
11 class ui_out.
12 (table_body_ftype): Likewise.
13 (table_end_ftype): Likewise.
14 (table_header_ftype): Likewise.
15 (ui_out_begin_ftype): Likewise.
16 (ui_out_end_ftype): Likewise.
17 (field_int_ftype): Likewise.
18 (field_skip_ftype): Likewise.
19 (field_string_ftype): Likewise.
20 (field_fmt_ftype): Likewise.
21 (spaces_ftype): Likewise.
22 (text_ftype): Likewise.
23 (message_ftype): Likewise.
24 (wrap_hint_ftype): Likewise.
25 (flush_ftype): Likewise.
26 (redirect_ftype): Likewise.
27 (data_destroy_ftype): Likewise.
28 (struct ui_out_impl): Remove, replace with class ui_out.
29 (ui_out_new): Remove.
30 (class ui_out): New class.
31 * ui-out.c (struct ui_out): Remove, replaced with class ui_out.
32 (current_level): Remove, replace with ui_out method.
33 (push_level): Likewise.
34 (pop_level): Likewise.
35 (uo_table_begin, uo_table_body, uo_table_end, uo_table_header,
36 uo_begin, uo_end, uo_field_int, uo_field_skip, uo_field_fmt,
37 uo_spaces, uo_text, uo_message, uo_wrap_hint, uo_flush,
38 uo_redirect, uo_field_string): Remove.
39 (ui_out_table_begin): Replace with ...
40 (ui_out::table_begin): ... this.
41 (ui_out_table_body): Replace with ...
42 (ui_out::table_body): ... this.
43 (ui_out_table_end): Replace with ...
44 (ui_out::table_end): ... this.
45 (ui_out_table_header): Replace with ...
46 (ui_out::table_header): ... this.
47 (ui_out_begin): Replace with ...
48 (ui_out::begin): ... this.
49 (ui_out_end): Replace with ...
50 (ui_out::end): ... this.
51 (ui_out_field_int): Replace with ...
52 (ui_out::field_int): ... this.
53 (ui_out_field_fmt_int): Replace with ...
54 (ui_out::field_fmt_int): ... this.
55 (ui_out_field_core_addr): Replace with ...
56 (ui_out::field_core_addr): ... this.
57 (ui_out_field_stream): Replace with ...
58 (ui_out::field_stream): ... this.
59 (ui_out_field_skip): Replace with ...
60 (ui_out::field_skip): ... this.
61 (ui_out_field_string): Replace with ...
62 (ui_out::field_string): ... this.
63 (ui_out_field_fmt): Replace with ...
64 (ui_out::field_fmt): ... this.
65 (ui_out_spaces): Replace with ...
66 (ui_out::spaces): ... this.
67 (ui_out_text): Replace with ...
68 (ui_out::text): ... this.
69 (ui_out_message): Replace with ...
70 (ui_out::message): ... this.
71 (ui_out_wrap_hint): Replace with ...
72 (ui_out::wrap_hint): ... this.
73 (ui_out_flush): Replace with ...
74 (ui_out::flush): ... this.
75 (ui_out_redirect): Replace with ...
76 (ui_out::redirect): ... this.
77 (ui_out_test_flags): Replace with ...
78 (ui_out::test_flags): ... this.
79 (ui_out_is_mi_like_p): Replace with ...
80 (ui_out::is_mi_like_p): ... this.
81 (verify_field): Replace with ...
82 (ui_out::verify_field): ... this.
83 (ui_out_query_field): Replace with ...
84 (ui_out::query_table_field): ... this.
85 (ui_out_data): Remove.
86 (ui_out_new): Remove, replace with ...
87 (ui_out::ui_out): ... this constructor.
88 (do_cleanup_table_end, make_cleanup_ui_out_tuple_begin_end,
89 do_cleanup_end, make_cleanup_ui_out_tuple_begin_end,
90 make_cleanup_ui_out_list_begin_end): Update fallouts of struct
91 ui_out -> class ui_out change.
92 * cli-out.c (cli_out_data): Remove.
93 (cli_uiout_dtor): Remove.
94 (cli_table_begin): Replace with ...
95 (cli_ui_out::do_table_begin): ... this new method.
96 (cli_table_body): Replace with ...
97 (cli_ui_out::do_table_body): ... this new method.
98 (cli_table_end): Replace with ...
99 (cli_ui_out::do_table_end): ... this new method.
100 (cli_table_header): Replace with ...
101 (cli_ui_out::do_table_header): ... this new method.
102 (cli_begin): Replace with ...
103 (cli_ui_out::do_begin): ... this new method.
104 (cli_end): Replace with ...
105 (cli_ui_out::do_end): ... this new method.
106 (cli_field_int): Replace with ...
107 (cli_ui_out::do_field_int): ... this new method.
108 (cli_field_skip): Replace with ...
109 (cli_ui_out::do_field_skip): ... this new method.
110 (cli_field_string): Replace with ...
111 (cli_ui_out::do_field_string): ... this new method.
112 (cli_field_fmt): Replace with ...
113 (cli_ui_out::do_field_fmt): ... this new method.
114 (cli_spaces): Replace with ...
115 (cli_ui_out::do_spaces): ... this new method.
116 (cli_text): Replace with ...
117 (cli_ui_out::do_text): ... this new method.
118 (cli_message): Replace with ...
119 (cli_ui_out::do_message): ... this new method.
120 (cli_wrap_hint): Replace with ...
121 (cli_ui_out::do_wrap_hint): ... this new method.
122 (cli_flush): Replace with ...
123 (cli_ui_out::do_flush): ... this new method.
124 (cli_redirect): Replace with ...
125 (cli_ui_out::do_redirect): ... this new method.
126 (out_field_fmt): Replace with ...
127 (cli_ui_out::out_field_fmt): ... this new method.
128 (field_separator): Replace with ...
129 (cli_ui_out::field_separator): ... this new method.
130 (cli_out_set_stream): Replace with ...
131 (cli_ui_out::set_stream): ... this new method.
132 (cli_ui_out_impl): Remove.
133 (cli_out_data_ctor): Remove.
134 (cli_ui_out_impl::cli_ui_out_impl): New constructor.
135 (cli_ui_out_impl::~cli_ui_out_impl): New destructor.
136 (cli_out_new): Change return type to cli_ui_out *, instantiate a
137 cli_ui_out.
138 * cli-out.h (cli_ui_out_data): Remove, replace with class
139 cli_ui_out.
140 (class cli_ui_out): New class.
141 (cli_ui_out_impl): Remove.
142 (cli_out_data_ctor): Remove.
143 (cli_out_new): Change return type to cli_ui_out*.
144 (cli_out_set_stream): Remove.
145 * cli/cli-interp.c (struct cli_interp) <cli_uiout>: Change type
146 to cli_ui_out*.
147 (cli_interpreter_resume): Adapt.
148 (cli_interpreter_exec): Adapt.
149 * mi/mi-out.c (mi_ui_out_data, mi_out_data): Remove.
150 (mi_ui_out_impl): Remove.
151 (mi_table_begin): Replace with ...
152 (mi_ui_out::do_table_begin): ... this.
153 (mi_table_body): Replace with ...
154 (mi_ui_out::do_table_body): ... this.
155 (mi_table_end): Replace with ...
156 (mi_ui_out::do_table_end): ... this.
157 (mi_table_header): Replace with ...
158 (mi_ui_out::do_table_header): ... this.
159 (mi_begin): Replace with ...
160 (mi_ui_out::do_begin): ... this.
161 (mi_end): Replace with ...
162 (mi_ui_out::do_end): ... this.
163 (mi_field_int): Replace with ...
164 (mi_ui_out::do_field_int): ... this.
165 (mi_field_skip): Replace with ...
166 (mi_ui_out::do_field_skip): ... this.
167 (mi_field_string): Replace with ...
168 (mi_ui_out::do_field_string): ... this.
169 (mi_field_fmt): Replace with ...
170 (mi_ui_out::do_field_fmt): ... this.
171 (mi_spaces): Replace with ...
172 (mi_ui_out::do_spaces): ... this.
173 (mi_text): Replace with ...
174 (mi_ui_out::do_text): ... this.
175 (mi_message): Replace with ...
176 (mi_ui_out::do_message): ... this.
177 (mi_wrap_hint): Replace with ...
178 (mi_ui_out::do_wrap_hint): ... this.
179 (mi_flush): Replace with ...
180 (mi_ui_out::do_flush): ... this.
181 (mi_redirect): Replace with ...
182 (mi_ui_out::do_redirect):
183 (field_separator): Replace with ...
184 (mi_ui_out::field_separator):
185 (mi_open): Replace with ...
186 (mi_ui_out::open): ... this.
187 (mi_close): Replace with ...
188 (mi_ui_out::close): ... this.
189 (mi_out_rewind): Replace with ...
190 (mi_ui_out::rewind): ... this.
191 (mi_out_put): Replace with ...
192 (mi_ui_out::put): ... this.
193 (mi_version): Replace with ...
194 (mi_ui_out::version): ... this.
195 (mi_out_data_ctor): Replace with ...
196 (mi_ui_out::mi_ui_out): ... this.
197 (mi_out_data_dtor): Replace with ...
198 (mi_ui_out::~mi_ui_out): ... this.
199 (mi_out_new): Change return type to mi_ui_out*, instantiate
200 an mi_ui_out object.
201 (as_mi_ui_out): New function.
202 (mi_version): Update fallouts of struct ui_out to class ui_out
203 transition.
204 (mi_out_put): Likewise.
205 (mi_out_rewind): Likewise.
206 * mi/mi-out.h (mi_out_new): Change return type to mi_ui_out*.
207 * tui/tui-out.c (tui_ui_out_data, tui_out_data, tui_ui_out_impl):
208 Remove.
209 (tui_field_int): Replace with ...
210 (tui_ui_out::do_field_int): ... this.
211 (tui_field_string): Replace with ...
212 (tui_ui_out::do_field_string): ... this.
213 (tui_field_fmt): Replace with ...
214 (tui_ui_out::do_field_fmt): ... this.
215 (tui_text): Replace with ...
216 (tui_ui_out::do_text): ... this.
217 (tui_out_new): Change return type to tui_ui_out*, instantiate
218 tui_ui_out object.
219 (tui_ui_out::tui_ui_out): New.
220 * tui/tui-out.h: New file.
221 * tui/tui.h (tui_out_new): Move declaration to tui/tui-out.h.
222 * tui/tui-io.c: Include tui/tui-out.h.
223 (tui_old_uiout): Change type to cli_ui_out*.
224 (tui_setup_io): Use dynamic_cast.
225 * tui/tui-io.h (tui_old_uiout): Change type to cli_ui_out*.
226 * tui/tui-interp.c (tui_resume): Adapt.
227 * ada-lang.c (print_it_exception): Update fallouts of struct
228 ui_out to class ui_out transition.
229 (print_one_exception): Likewise.
230 (print_mention_exception): Likewise.
231 * ada-tasks.c (print_ada_task_info): Likewise.
232 (info_task): Likewise.
233 (task_command): Likewise.
234 * auto-load.c (print_script): Likewise.
235 (auto_load_info_scripts): Likewise.
236 (info_auto_load_cmd): Likewise.
237 * break-catch-sig.c (signal_catchpoint_print_one): Likewise.
238 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
239 (print_one_catch_syscall): Likewise.
240 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
241 (print_one_exception_catchpoint): Likewise.
242 (print_one_detail_exception_catchpoint): Likewise.
243 (print_mention_exception_catchpoint): Likewise.
244 * breakpoint.c (maybe_print_thread_hit_breakpoint): Likewise.
245 (print_solib_event): Likewise.
246 (watchpoint_check): Likewise.
247 (wrap_indent_at_field): Likewise.
248 (print_breakpoint_location): Likewise.
249 (output_thread_groups): Likewise.
250 (print_one_breakpoint_location): Likewise.
251 (breakpoint_1): Likewise.
252 (default_collect_info): Likewise.
253 (watchpoints_info): Likewise.
254 (print_it_catch_fork): Likewise.
255 (print_one_catch_fork): Likewise.
256 (print_it_catch_vfork): Likewise.
257 (print_one_catch_vfork): Likewise.
258 (print_it_catch_solib): Likewise.
259 (print_one_catch_solib): Likewise.
260 (print_it_catch_exec): Likewise.
261 (print_one_catch_exec): Likewise.
262 (mention): Likewise.
263 (print_it_ranged_breakpoint): Likewise.
264 (print_one_ranged_breakpoint): Likewise.
265 (print_one_detail_ranged_breakpoint): Likewise.
266 (print_mention_ranged_breakpoint): Likewise.
267 (print_it_watchpoint): Likewise.
268 (print_mention_watchpoint): Likewise.
269 (print_it_masked_watchpoint): Likewise.
270 (print_one_detail_masked_watchpoint): Likewise.
271 (print_mention_masked_watchpoint): Likewise.
272 (bkpt_print_it): Likewise.
273 (tracepoint_print_one_detail): Likewise.
274 (tracepoint_print_mention): Likewise.
275 (update_static_tracepoint): Likewise.
276 (tracepoints_info): Likewise.
277 (save_breakpoints): Likewise.
278 * cli/cli-cmds.c (complete_command): Likewise.
279 * cli/cli-logging.c (set_logging_redirect): Likewise.
280 (pop_output_files): Likewise.
281 (handle_redirections): Likewise.
282 * cli/cli-script.c (print_command_lines): Likewise.
283 * cli/cli-setshow.c (do_show_command): Likewise.
284 (cmd_show_list): Likewise.
285 * cp-abi.c (list_cp_abis): Likewise.
286 (show_cp_abi_cmd): Likewise.
287 * darwin-nat-info.c (darwin_debug_regions_recurse): Likewise.
288 * disasm.c (gdb_pretty_print_insn): Likewise.
289 (do_mixed_source_and_assembly_deprecated): Likewise.
290 (do_mixed_source_and_assembly): Likewise.
291 * gdb_bfd.c (print_one_bfd): Likewise.
292 (maintenance_info_bfds): Likewise.
293 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Likewise.
294 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
295 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Likewise.
296 * i386-tdep.c (i386_mpx_print_bounds): Likewise.
297 * infcmd.c (run_command_1): Likewise.
298 (print_return_value_1): Likewise.
299 * inferior.c (print_selected_inferior): Likewise.
300 (print_inferior): Likewise.
301 * infrun.c (print_end_stepping_range_reason): Likewise.
302 (print_signal_exited_reason): Likewise.
303 (print_exited_reason): Likewise.
304 (print_signal_received_reason): Likewise.
305 (print_no_history_reason): Likewise.
306 * interps.c (interp_set): Likewise.
307 * linespec.c (decode_line_full): Likewise.
308 * linux-thread-db.c (info_auto_load_libthread_db): Likewise.
309 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
310 (mi_cmd_env_path): Likewise.
311 (mi_cmd_env_dir): Likewise.
312 (mi_cmd_inferior_tty_show): Likewise.
313 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Likewise.
314 (print_partial_file_name): Likewise.
315 (mi_cmd_file_list_exec_source_files): Likewise.
316 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Likewise.
317 (mi_cmd_info_gdb_mi_command): Likewise.
318 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth): Likewise.
319 (mi_cmd_stack_list_args): Likewise.
320 (list_arg_or_local): Likewise.
321 * mi/mi-cmd-var.c (print_varobj): Likewise.
322 (mi_cmd_var_create): Likewise.
323 (mi_cmd_var_delete): Likewise.
324 (mi_cmd_var_set_format): Likewise.
325 (mi_cmd_var_show_format): Likewise.
326 (mi_cmd_var_info_num_children): Likewise.
327 (mi_cmd_var_list_children): Likewise.
328 (mi_cmd_var_info_type): Likewise.
329 (mi_cmd_var_info_path_expression): Likewise.
330 (mi_cmd_var_info_expression): Likewise.
331 (mi_cmd_var_show_attributes): Likewise.
332 (mi_cmd_var_evaluate_expression): Likewise.
333 (mi_cmd_var_assign): Likewise.
334 (varobj_update_one): Likewise.
335 * mi/mi-interp.c (as_mi_interp): Likewise.
336 (mi_on_normal_stop_1): Likewise.
337 (mi_tsv_modified): Likewise.
338 (mi_breakpoint_created): Likewise.
339 (mi_breakpoint_modified): Likewise.
340 (mi_solib_loaded): Likewise.
341 (mi_solib_unloaded): Likewise.
342 (mi_command_param_changed): Likewise.
343 (mi_memory_changed): Likewise.
344 (mi_user_selected_context_changed): Likewise.
345 * mi/mi-main.c (print_one_inferior): Likewise.
346 (output_cores): Likewise.
347 (list_available_thread_groups): Likewise.
348 (mi_cmd_data_list_register_names): Likewise.
349 (mi_cmd_data_list_changed_registers): Likewise.
350 (output_register): Likewise.
351 (mi_cmd_data_evaluate_expression): Likewise.
352 (mi_cmd_data_read_memory): Likewise.
353 (mi_cmd_data_read_memory_bytes): Likewise.
354 (mi_cmd_list_features): Likewise.
355 (mi_cmd_list_target_features): Likewise.
356 (mi_cmd_add_inferior): Likewise.
357 (mi_execute_command): Likewise.
358 (mi_load_progress): Likewise.
359 (print_variable_or_computed): Likewise.
360 (mi_cmd_trace_frame_collected): Likewise.
361 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Likewise.
362 * osdata.c (info_osdata_command): Likewise.
363 * probe.c (gen_ui_out_table_header_info): Likewise.
364 (print_ui_out_not_applicables): Likewise.
365 (print_ui_out_info): Likewise.
366 (info_probes_for_ops): Likewise.
367 (enable_probes_command): Likewise.
368 (disable_probes_command): Likewise.
369 * progspace.c (print_program_space): Likewise.
370 * python/py-breakpoint.c (bppy_get_commands): Likewise.
371 * python/py-framefilter.c (py_print_type): Likewise.
372 (py_print_value): Likewise.
373 (py_print_single_arg): Likewise.
374 (enumerate_args): Likewise.
375 (enumerate_locals): Likewise.
376 (py_print_args): Likewise.
377 (py_print_frame): Likewise.
378 * record-btrace.c (btrace_ui_out_decode_error): Likewise.
379 (btrace_call_history_insn_range): Likewise.
380 (btrace_call_history_src_line): Likewise.
381 (btrace_call_history): Likewise.
382 * remote.c (show_remote_cmd): Likewise.
383 * skip.c (skip_info): Likewise.
384 * solib.c (info_sharedlibrary_command): Likewise.
385 * source.c (print_source_lines_base): Likewise.
386 * spu-tdep.c (info_spu_event_command): Likewise.
387 (info_spu_signal_command): Likewise.
388 (info_spu_mailbox_list): Likewise.
389 (info_spu_dma_cmdlist): Likewise.
390 (info_spu_dma_command): Likewise.
391 (info_spu_proxydma_command): Likewise.
392 * stack.c (print_stack_frame): Likewise.
393 (print_frame_arg): Likewise.
394 (read_frame_arg): Likewise.
395 (print_frame_args): Likewise.
396 (print_frame_info): Likewise.
397 (print_frame): Likewise.
398 * symfile.c (load_progress): Likewise.
399 (generic_load): Likewise.
400 (print_transfer_performance): Likewise.
401 * thread.c (do_captured_list_thread_ids): Likewise.
402 (print_thread_info_1): Likewise.
403 (restore_selected_frame): Likewise.
404 (do_captured_thread_select): Likewise.
405 (print_selected_thread_frame): Likewise.
406 * top.c (execute_command_to_string): Likewise.
407 * tracepoint.c (tvariables_info_1): Likewise.
408 (trace_status_mi): Likewise.
409 (tfind_1): Likewise.
410 (print_one_static_tracepoint_marker): Likewise.
411 (info_static_tracepoint_markers_command): Likewise.
412 * utils.c (do_ui_out_redirect_pop): Likewise.
413 (fputs_maybe_filtered): Likewise.
414
992f1ddc
PA
4152016-12-20 Pedro Alves <palves@redhat.com>
416
417 * nto-tdep.c (nto_find_and_open_solib): Constify 'solib'
418 parameter.
419 * nto-tdep.h (nto_find_and_open_solib): Constify 'solib'
420 parameter.
421 * solib.c (solib_find_1, exec_file_find, solib_find): Constify
422 in_pathname' parameter.
423 * solist.h (struct target_so_ops) <find_and_open_solib>: Constify
424 'soname' parameter.
425 (exec_file_find, solib_find): Constify 'in_pathname' parameter.
426
2693a262
PA
4272016-12-20 Pedro Alves <palves@redhat.com>
428 Yao Qi <yao.qi@linaro.org>
429
430 PR gdb/20977
431 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept): New
432 noexcept function, factored out from ...
433 (gdb_rl_callback_read_char_wrapper): ... this.
434 (gdb_rl_callback_handler): Mark noexcept.
435
ff718840
AT
4362016-12-20 Antoine Tremblay <antoine.tremblay@ericsson.com>
437
438 * .dir-locals.el: Set c++ mode for the directory and set indent
439 properly.
440 * gdb-code-style.el: Set c-set-offset 'innamespace as a safe value
441 to be used in .dir-locals.el.
442
97f00e36
BH
4432016-12-16 Bernhard Heckel <bernhard.heckel@intel.com>
444
445 * darwin-nat-info.c (info_mach_region_command): Use expression_up.
446
d36cab83
YQ
4472016-12-12 Yao Qi <yao.qi@linaro.org>
448
449 PR tdep/20955
450 * cris-tdep.c (cris_delayed_get_disassembler): Remove the
451 assert.
452
1736a7bd
PA
4532016-12-09 Pedro Alves <palves@redhat.com>
454
455 * Makefile.in (ALL_TARGET_OBS): Remove vax-obsd-tdep.o.
456 * alpha-fbsd-tdep.c (_initialize_alphafbsd_tdep): Adjust.
457 * alpha-nbsd-tdep.c: Move comment to _initialize_alphanbsd_tdep.
458 (alphanbsd_core_osabi_sniffer): Delete.
459 (_initialize_alphanbsd_tdep): No longer handle a.out.
460 * alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Adjust.
461 * amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Adjust.
462 * amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Adjust.
463 * amd64-obsd-tdep.c (amd64obsd_supply_regset)
464 (amd64obsd_combined_regset)
465 (amd64obsd_iterate_over_regset_sections, amd64obsd_core_init_abi):
466 Delete.
467 (_initialize_amd64obsd_tdep): Don't handle a.out.
468 * arm-nbsd-nat.c (struct md_core, fetch_core_registers)
469 (arm_netbsd_core_fns): Delete.
470 (_initialize_arm_netbsd_nat): Don't register arm_netbsd_core_fns.
471 * arm-nbsd-tdep.c (arm_netbsd_aout_init_abi)
472 (arm_netbsd_aout_osabi_sniffer): Delete.
473 (_initialize_arm_netbsd_tdep): Don't handle a.out.
474 * arm-obsd-tdep.c (armobsd_core_osabi_sniffer): Delete.
475 (_initialize_armobsd_tdep): Don't handle a.out.
476 * arm-tdep.c (arm_gdbarch_init): Remove bfd_target_aout_flavour
477 case.
478 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Remove
479 SunOS a.out handling.
480 * configure.tgt (vax-*-netbsd* | vax-*-knetbsd*-gnu): Remove
481 vax-obsd-tdep.o from gdb_target_objs.
482 (vax-*-openbsd*): Likewise.
483 (*-*-freebsd*): Adjust default gdb_osabi.
484 (*-*-openbsd*): Likewise.
485 * dbxread.c (block_address_function_relative): Delete.
486 (dbx_symfile_read): Remove reference to
487 block_address_function_relative.
488 (dbx_symfile_read): Don't call read_dbx_dynamic_symtab.
489 (read_dbx_dynamic_symtab): Delete.
490 (process_one_symbol): Remove references to
491 block_address_function_relative.
492 * defs.h (GDB_OSABI_FREEBSD_AOUT, GDB_OSABI_NETBSD_AOUT): Remove.
493 (GDB_OSABI_FREEBSD_ELF): Rename to ...
494 (GDB_OSABI_FREEBSD): ... this.
495 (GDB_OSABI_NETBSD_ELF): Rename to ...
496 (GDB_OSABI_NETBSD): ... this.
497 (GDB_OSABI_OPENBSD_ELF): Rename to ...
498 (GDB_OSABI_OPENBSD): ... this.
499 (GDB_OSABI_HPUX_ELF, GDB_OSABI_HPUX_SOM): Remove.
500 * fbsd-tdep.c: Adjust comment.
501 * hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Adjust.
502 * hppa-obsd-tdep.c (GDB_OSABI_NETBSD_CORE): Delete.
503 (hppaobsd_core_osabi_sniffer): Delete.
504 (_initialize_hppabsd_tdep): Don't handle a.out.
505 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't handle
506 GDB_OSABI_HPUX_SOM.
507 (hppa_gdbarch_init): Likewise.
508 * i386-bsd-tdep.c (i386bsd_aout_osabi_sniffer)
509 (i386bsd_core_osabi_sniffer, _initialize_i386bsd_tdep): Delete.
510 * i386-fbsd-tdep.c (i386fbsdaout_init_abi): Delete. Merge bits
511 with ...
512 (i386fbsd_init_abi): ... this.
513 (_initialize_i386fbsd_tdep): Don't handle a.out.
514 * i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Adjust.
515 * i386-obsd-tdep.c (i386obsd_aout_supply_regset)
516 (i386obsd_aout_gregset)
517 (i386obsd_aout_iterate_over_regset_sections): Delete.
518 (i386obsd_init_abi): Merge with i386obsd_elf_init_abi.
519 (i386obsd_aout_init_abi): Delete.
520 (_initialize_i386obsd_tdep): Don't handle a.out.
521 * m68k-bsd-tdep.c (m68kobsd_sigtramp_cache_init)
522 (m68kobsd_sigtramp): Delete.
523 (m68kbsd_init_abi): Merge with ...
524 (m68kbsd_elf_init_abi): ... this, and delete it.
525 (m68kbsd_aout_init_abi): Delete.
526 (m68kbsd_aout_osabi_sniffer, m68kbsd_core_osabi_sniffer): Delete.
527 (_initialize_m68kbsd_tdep): Don't handle a.out.
528 * mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Adjust.
529 * mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Adjust.
530 * osabi.c (gdb_osabi_names): Remove "a.out" entries. Drop "ELF"
531 suffixes. Remove "HP-UX" entries.
532 (generic_elf_osabi_sniff_abi_tag_sections): Adjust.
533 (generic_elf_osabi_sniffer): No longer handle GDB_OSABI_HPUX_ELF.
534 Adjust.
535 (_initialize_ppcfbsd_tdep): Adjust.
536 * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Adjust.
537 * ppc-obsd-tdep.c (GDB_OSABI_NETBSD_CORE)
538 (ppcobsd_core_osabi_sniffer): Delete.
539 (_initialize_ppcobsd_tdep): Don't handle a.out.
540 * rs6000-tdep.c (rs6000_gdbarch_init): Adjust.
541 * sh-nbsd-tdep.c (GDB_OSABI_NETBSD_CORE)
542 (shnbsd_core_osabi_sniffer): Delete.
543 (_initialize_shnbsd_tdep): Don't handle a.out.
544 * solib.c (clear_solib): Don't handle SunOS/a.out.
545 * sparc-nbsd-tdep.c (sparc32nbsd_init_abi): Make extern.
546 (sparc32nbsd_aout_init_abi): Delete.
547 (sparc32nbsd_elf_init_abi): Merged into sparc32nbsd_init_abi.
548 (sparcnbsd_aout_osabi_sniffer): Delete.
549 (GDB_OSABI_NETBSD_CORE, sparcnbsd_core_osabi_sniffer): Delete.
550 (_initialize_sparcnbsd_tdep): No longer handle a.out.
551 * sparc-obsd-tdep.c (sparc32obsd_init_abi)
552 (_initialize_sparc32obsd_tdep): Adjust.
553 * sparc-tdep.h (sparc32nbsd_elf_init_abi): Rename to ...
554 (sparc32nbsd_init_abi): ... this.
555 * sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Adjust.
556 * sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Adjust.
557 * sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Adjust.
558 * stabsread.c: Update comment.
559 * symmisc.c (print_objfile_statistics): Don't mention "a.out" in
560 output.
561 * vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Adjust.
562 * vax-obsd-tdep.c: Delete file.
563
f94f411b
YQ
5642016-12-09 Yao Qi <yao.qi@linaro.org>
565
566 PR tdep/20954
567 * rx-tdep.c (rx_psw_type): New function.
568 (rx_fpsw_type): New function.
569 (rx_register_type): Call rx_psw_type and rx_fpsw_type.
570 (rx_gdbarch_init): Move code to rx_psw_type and
571 rx_fpsw_type.
572
5732016-12-09 Yao Qi <yao.qi@linaro.org>
574
575 PR tdep/20953
576 * rl78-tdep.c (rl78_psw_type): New function.
577 (rl78_register_type): Call rl78_psw_type.
578 (rl78_gdbarch_init): Move code to rl78_psw_type.
579
fc2f703e
YQ
5802016-12-09 Yao Qi <yao.qi@linaro.org>
581
582 * aarch64-tdep.c (instruction_reader::read): Call
583 read_code_unsigned_integer instead of
584 read_memory_unsigned_integer.
585
198cd59d
YQ
5862016-12-09 Yao Qi <yao.qi@linaro.org>
587
588 * arm-tdep.c (skip_prologue_function): Call
589 read_code_unsigned_integer instead of
590 read_memory_unsigned_integer.
591 (thumb_analyze_prologue): Likewise.
592 (arm_analyze_load_stack_chk_guard): Likewise.
593 (arm_skip_stack_protector): Likewise.
594 (arm_analyze_prologue):Likewise.
595 (extend_buffer_earlier): Call target_read_code instead
596 of target_read_memory.
597 (arm_adjust_breakpoint_address): Likewise.
598
53488a6e
TS
5992016-12-09 Thomas Schwinge <thomas@codesourcery.com>
600
c752a4cc
TS
601 * gnu-nat.c (gnu_create_inferior): After startup_inferior, call
602 prune_threads.
603
53488a6e
TS
604 * inferior.c (print_selected_inferior): Avoid PATH_MAX usage.
605
c3187fa5
SM
6062016-12-08 Simon Marchi <simon.marchi@ericsson.com>
607 Thomas Schwinge <thomas@codesourcery.com>
608
609 * gnu-nat.c (set_sig_thread_cmd): Use parse_thread_id instead of
610 global_thread_id_to_ptid.
611
e9e431d1
TS
6122016-12-08 Thomas Schwinge <thomas@codesourcery.com>
613
21389b7f
TS
614 * config/i386/i386gnu.mh (%_S.o %_U.o): Add "-x c" to
615 "COMPILE.post".
616 * gnu-nat.c: #include Mach/Hurd headers before all others. Wrap
617 Mach/Hurd headers and MIG stubs' prototypes in 'extern "C"'.
618 * i386-gnu-nat.c: Likewise.
619
0947023d
TS
620 * gnu-nat.c (proc_get_exception_port, proc_set_exception_port)
621 (INF_RESUME_MSGPORT_RPC, proc_get_state, _proc_get_exc_port)
622 (proc_steal_exc_port, proc_restore_exc_port, make_proc)
623 (inf_startup, inf_set_pid, inf_validate_procinfo)
624 (inf_validate_task_sc, inf_set_traced, inf_validate_procs)
625 (inf_signal, inf_continue, gnu_wait, S_exception_raise_request)
626 (do_mach_notify_dead_name, S_proc_wait_reply)
627 (S_msg_sig_post_untraced_reply, S_msg_sig_post_reply)
628 (port_msgs_queued, gnu_read_inferior, gnu_write_inferior)
629 (gnu_find_memory_regions, steal_exc_port, thread_takeover_sc_cmd)
630 (flush_inferior_icache): Instead of "error_t" use "kern_return_t".
631 * i386-gnu-nat.c (fetch_fpregs, store_fpregs, i386_gnu_dr_get)
632 (i386_gnu_dr_set): Likewise.
633
785102a7
TS
634 * gnu-nat.c (set_task_pause_cmd, set_signals_cmd)
635 (set_exceptions_cmd): Add variants taking an "int arg" instead of
636 a "char *". Make the "char *" variants use the former.
637 (set_noninvasive_cmd): Also use the "int arg" variants.
638
a9617a42
TS
639 * gnu-nat.c (gnu_create_inferior): Move nested "trace_me"
640 function...
641 (gnu_ptrace_me): ... here.
642
e9e431d1
TS
643 * i386-gnu-nat.c (i386_gnu_dr_set_control_one)
644 (i386_gnu_dr_set_addr_one): Explicitly cast "void *".
645
14f68906
TS
6462016-12-07 Thomas Schwinge <thomas@codesourcery.com>
647
648 * gnu-nat.c (set_sig_thread_cmd): Call global_thread_id_to_ptid
649 instead of thread_id_to_pid.
650
5590c2ba
SM
6512016-12-06 Simon Marchi <simon.marchi@ericsson.com>
652
653 * inferior.c (inferior_command): Remove duplicate
654 find_inferior_id call.
655
7c2ba67e
YQ
6562016-12-06 Yao Qi <yao.qi@linaro.org>
657
658 * frame.c (frame_register_unwind): Set *realnump if *lvalp is
659 lval_register.
660 * value.c (deprecated_value_next_frame_id_hack): Assert
661 value->lval is lval_register.
662 (deprecated_value_regnum_hack): Likewise.
663
bef721e2
SM
6642016-12-02 Simon Marchi <simon.marchi@polymtl.ca>
665
666 * ui-out.h: Include "common/enum-flags.h".
667 (enum ui_flags): Rename to ...
668 (enum ui_out_flag): ... this.
669 (ui_out_flags): Define enum flag type.
670 (ui_out_test_flags): Change type of parameter to ui_out_flags.
671 (ui_out_new): Likewise.
672 * ui-out.c (ui_out_test_flags): Likewise.
673 (ui_out_new): Likewise.
674 * cli-out.c (cli_out_new): Update variable type.
675 * mi/mi-out.c (mi_out_new): Likewise.
676 * tui/tui-out.c (tui_out_new): Likewise.
677
df3ee9ca
PA
6782016-12-02 Pedro Alves <palves@redhat.com>
679
680 * NEWS: Mention that user commands now accept an unlimited number
681 of arguments.
682 * cli/cli-script.c: Include <vector>.
683 (struct string_view): New type.
684 (MAXUSERARGS): Delete.
685 (struct user_args): Now a C++ class.
686 (user_args_stack): New.
687 (struct scoped_user_args_level): New type.
688 (execute_user_command): Use scoped_user_args_level.
689 (arg_cleanup): Delete.
690 (setup_user_args): Deleted, and refactored as ...
691 (user_args::user_args): ... this new constructor. Limit of number
692 of arguments removed.
693 (insert_user_defined_cmd_args): Defer to user_args_stack.
694 (user_args::insert_args): New, bits based on old
695 insert_user_defined_cmd_args with limit of number of arguments
696 eliminated.
697
01770bbd
PA
6982016-12-02 Pedro Alves <palves@redhat.com>
699
700 PR cli/20559
701 * NEWS: Mention "eval" expands user-defined command arguments.
702 * cli/cli-script.c (execute_control_command): Adjust to rename.
703 (insert_args): Rename to ...
704 (insert_user_defined_cmd_args): ... this, and make extern.
705 * cli/cli-script.h (insert_user_defined_cmd_args): New
706 declaration.
707 * printcmd.c: Include "cli/cli-script.h".
708 (eval_command): Call insert_user_defined_cmd_args.
709
0c1b455e
TT
7102016-12-02 Tom Tromey <tom@tromey.com>
711
712 PR symtab/16264:
713 * dwarf2read.c (struct partial_die_info) <main_subprogram>: New
714 member.
715 (add_partial_symbol): Call set_objfile_main_name.
716 (read_partial_die): Handle DW_AT_main_subprogram.
717 <DW_AT_calling_convention>: don't call set_objfile_main_name, but
718 set main_subprogram flag.
719
e5a873b7
SM
7202016-12-02 Simon Marchi <simon.marchi@ericsson.com>
721
722 * tracefile-tfile.c (tfile_write_status): Adjust to renames.
723 * tracefile.c (trace_save_command): Rename to...
724 (tsave_command): ...this.
725 (_initialize_tracefile): Adjust to renames.
726 * tracepoint.c (trace_actions_command): Rename to...
727 (actions_command): ...this.
728 (trace_start_command): Rename to...
729 (tstart_command): ...this, and adjust to renames..
730 (trace_stop_command): Rename to...
731 (tstop_command): ...this.
732 (trace_status_command): Rename to...
733 (tstatus_command): ...this, and adjust to renames.
734 (trace_find_command): Rename to...
735 (tfind_command): ...this.
736 (trace_find_pc_command): Rename to...
737 (tfind_pc_command): ...this.
738 (trace_find_tracepoint_command): Rename to...
739 (tfind_tracepoint_command): ...this.
740 (trace_find_line_command): Rename to...
741 (tfind_line_command): ...this.
742 (trace_find_range_command): Rename to...
743 (tfind_range_command): ...this.
744 (trace_find_outside_command): Rename to...
745 (tfind_outside_command): ...this.
746 (trace_dump_command): Rename to...
747 (tdump_command): ...this.
748 (tfind_1): Adjust to renames.
749 (trace_find_end_command): Rename to...
750 (tfind_end_command): ...this, and adjust to renames..
751 (trace_status_mi): Adjust to renames.
752 (parse_trace_status): Adjust to renames.
753 (_initialize_tracepoint): Adjust to renames.
754 * tracepoint.h (enum trace_stop_reason) <tstop_command>: Rename
755 to...
756 <trace_stop_command>: ...this.
757
233c8c27
SM
7582016-12-02 Simon Marchi <simon.marchi@ericsson.com>
759
760 * mi/mi-out.c (mi_ui_out_data) <suppress_output>: Remove.
761 (mi_table_body): Remove suppress_output check.
762 (mi_table_end): Likewise.
763 (mi_table_header): Likewise.
764 (mi_begin): Likewise.
765 (mi_end): Likewise.
766 (mi_field_int): Likewise.
767 (mi_field_string): Likewise.
768 (mi_field_fmt): Likewise.
769 (mi_out_data_ctor): Likewise.
770
432ec081
YQ
7712016-12-02 Yao Qi <yao.qi@linaro.org>
772 Pedro Alves <palves@redhat.com>
773
774 * aarch64-tdep.c (aarch64_analyze_prologue): Recognize STR
775 instruction.
776 (aarch64_analyze_prologue_test): More tests.
777
4d9a9006
YQ
7782016-12-02 Yao Qi <yao.qi@linaro.org>
779 Pedro Alves <palves@redhat.com>
780
781 * aarch64-tdep.c: Include "selftest.h".
782 (abstract_instruction_reader): New class.
783 (instruction_reader): New class.
784 (aarch64_analyze_prologue): Add new parameter reader. Call
785 reader.read instead of read_memory_unsigned_integer.
786 [GDB_SELF_TEST] (instruction_reader_test): New class.
787 (aarch64_analyze_prologue_test): New function.
788 (_initialize_aarch64_tdep) [GDB_SELF_TEST]: Register
789 selftests::aarch64_analyze_prologue_test.
790 * trad-frame.c (trad_frame_cache_zalloc):
791 (trad_frame_alloc_saved_regs): Add a new function.
792 * trad-frame.h (trad_frame_alloc_saved_regs): Declare.
793
36d18bc5
SM
7942016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
795
796 * ui-out.c (enum ui_out_table_state): Move to class
797 ui_out_table as ui_out_table::state.
798 (struct ui_out_table): Change to ...
799 (class ui_out_table): ... this.
800 <flag>: Remove.
801 <entry_level>: Rename to ...
802 <m_entry_level>: ... this.
803 <columns>: Rename to ...
804 <m_nr_cols>: ... this.
805 <id>: Rename to ...
806 <m_id>: ... this.
807 <headers>: Rename to ...
808 <m_headers>: ... this.
809 <headers_iterator>: Rename to ...
810 <m_headers_iterator>: ... this.
811 <start_body, append_header, start_row, get_next_header,
812 query_field, current_state, entry_level>: New methods.
813 (struct ui_out) <table>: Change type to unique_ptr to
814 ui_out_table.
815 (append_header_to_list, get_next_header, clear_header_list,
816 clear_table): Remove.
817 (ui_out_table_begin): Instantiate ui_out_table object. Update
818 table check.
819 (ui_out_table_body): Update table check, replace code with call
820 to ui_out_table::start_body.
821 (ui_out_table_end): Update table check, replace manual cleanup
822 with assignment of uiout->table unique_ptr to nullptr.
823 (ui_out_table_header): Update table check, replace call to
824 append_header_to_list with call to append_header method.
825 (ui_out_begin): Remove one table state check, update another.
826 Replace code with call to start_row method.
827 (verify_field): Update table checks.
828 (ui_out_query_field): Update table check, replace code with call
829 to query_field method.
830 (ui_out_new): Remove table initialization code.
831
77a179e7
SM
8322016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
833
834 * ui-out.c (enum ui_out_table_state): New enum.
835 (struct ui_out_table) <body_flag>: Remove field.
836 <state>: New field.
837 (ui_out_table_begin): Replace usages of body_flag with state.
838 (ui_out_table_body): Likewise.
839 (ui_out_table_end): Likewise.
840 (ui_out_table_header): Likewise.
841 (ui_out_begin): Likewise.
842 (verify_field): Likewise.
843 (ui_out_new): Likewise.
844
33b2fac6
SM
8452016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
846
847 * ui-out.h (ui_out_begin_ftype): Remove level parameter.
848 (ui_out_end_ftype): Likewise.
849 * ui-out.c (struct ui_out) <level>: Replace field with a method
850 that dynamically computes the result.
851 (current_level): Get vector's back item instead of using
852 uiout->level.
853 (push_level): Make return type void.
854 (pop_level): Make return type void and update access to
855 ui_out::level.
856 (uo_begin): Remove level parameter.
857 (uo_end): Likewise.
858 (ui_out_table_begin): Update access to uiout::level.
859 (ui_out_begin): Don't read return value from push_level, call
860 uiout->level() instead, update call to uo_begin.
861 (ui_out_end): Don't read return value from pop_level, update
862 call to uo_end.
863 (verify_field): Update access to uiout->level.
864 (ui_out_new): Don't initialize ui_out::level, call push_level
865 to push the initial level instead of doing it by hand.
866 * cli-out.c (cli_begin): Remove level parameter.
867 (cli_end): Likewise.
868 * mi/mi-out.c (mi_begin): Likewise.
869 (mi_end): Likewise.
870
909c0aa5
SM
8712016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
872
873 * ui-out.c (struct ui_out_level): Replace with ...
874 (class ui_out_level): ... this.
875 (current_level): Update.
876 (push_level): Update.
877 (pop_level): Update.
878 (verify_field): Update.
879 (ui_out_new): Update.
880
37e20dd6
SM
8812016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
882
883 * ui-out.c (struct ui_out_hdr): Replace with ...
884 (class ui_out_hdr): ... this.
885 (append_header_to_list): Update.
886 (get_next_header): Update.
887 (ui_out_query_field): Update.
888
c5209615
SM
8892016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
890
891 * mi/mi-out.c (mi_table_header): Change char * args to
892 std::string.
893 * cli-out.c (cli_table_header): Likewise.
894 * ui-out.h (table_header_ftype): Likewise.
895 (ui_out_table_header): Constify colhdr argument.
896 (ui_out_query_field): Constify col_name argument.
897 * ui-out.c (ui_out_hdr) <col_name, colhdr>: Change type to
898 std::string.
899 (uo_table_header): Change char * args to std::string.
900 (ui_out_table_header): Likewise.
901 (get_next_header): Constify colhdr argument and adapt.
902 (clear_header_list): Don't free col_name/colhdr fields.
903 (append_header_to_list): Change char * args to std::string and
904 adapt.
905 (verify_field): Constify variable.
906 (ui_out_query_field): Constify col_name argument and adapt.
907 * breakpoint.c (wrap_indent_at_field): Constify variable.
908
78afa7f8
SM
9092016-12-01 Simon Marchi <simon.marchi@polymtl.ca>
910
911 * ui-out.c (struct ui_out_hdr) <next>: Remove.
912 (struct ui_out_table) <header_first, header_last, header_next>: Remove.
913 <headers, headers_iterator>: New fields.
914 (ui_out_table_body): Update for the new data structure.
915 (ui_out_begin): Likewise.
916 (clear_header_list): Likewise.
917 (append_header_to_list): Likewise.
918 (get_next_header): Likewise.
919 (ui_out_query_field): Likewise.
920 (ui_out_new): Likewise.
921
95a23284
SM
9222016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
923
924 * ui-out.c (struct ui_out_table) <id>: Change type to
925 std::string.
926 (ui_out_table_begin): Change tblid parameter type to
927 std::string, adapt code.
928 update following type change.
929 (clear_table): Update.
930 (ui_out_new): Update.
931
b9b118c3
SM
9322016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
933
934 * cli-out.h (cli_ui_out_data) <streams>: Change type to
935 std::vector.
936 * cli-out.c: Remove vec.h include.
937 (cli_uiout_dtor): Update.
938 (cli_field_fmt): Update.
939 (cli_spaces): Update.
940 (cli_text): Update.
941 (cli_message): Update.
942 (cli_flush): Update.
943 (cli_redirect): Update.
944 (out_field_fmt): Update.
945 (field_separator): Update.
946 (cli_out_data_ctor): Update.
947 (cli_out_new): Update.
948 (cli_out_set_stream): Update.
949
4a9d4ea5
SM
9502016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
951
952 * mi/mi-out.c: Remove vec.h include.
953 (mi_ui_out_data) <streams>: Change type to std::vector.
954 (mi_field_string): Update.
955 (mi_field_fmt): Update.
956 (mi_flush): Update.
957 (mi_redirect): Update.
958 (field_separator): Update.
959 (mi_open): Update.
960 (mi_close): Update.
961 (mi_out_buffered): Update.
962 (mi_out_rewind): Update.
963 (mi_out_put): Update.
964 (mi_out_data_ctor): Update.
965 (mi_out_data_dtor): Don't free streams.
966
56df3084
SM
9672016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
968
969 * ui-out.c (ui_out_level_p): Remove typedef.
970 (DEF_VEC_P (ui_out_level_p)): Remove definition.
971 (struct ui_out) <levels>: Change type to vector of unique_ptr of
972 ui_out_level.
973 (current_level): Update.
974 (push_level): Update.
975 (pop_level): Update, don't manually delete the ui_out_level
976 instance.
977 (ui_out_new): Update.
978
5486f164
SM
9792016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
980
981 * cli-out.c (cli_uiout_dtor): Use delete instead of xfree.
982 (cli_out_new): Use new instead of XNEW.
983 * mi/mi-out.c (mi_out_data_dtor): Use delete instead of xfree.
984 (mi_out_new): Use new instead of XNEW.
985 * tui/tui-out.c (tui_out_new): Likewise.
986 * ui-out.c (push_level): Likewise.
987 (pop_level): Use delete instead of xfree.
988 (clear_header_list): Use delete instead of xfree.
989 (append_header_to_list): Use new instead of XNEW.
990 (ui_out_new): Likewise.
991
ad02e4fe
SM
9922016-11-30 Simon Marchi <simon.marchi@polymtl.ca>
993
994 * disable-implicit-rules.mk: New file.
995 * Makefile.in: Include disable-implicit-rules.mk.
996 * data-directory/Makefile.in: Likewise.
997 * gnulib/Makefile.in: Likewise.
998
7913a64c
YQ
9992016-11-30 Yao Qi <yao.qi@linaro.org>
1000
1001 * arm-tdep.c (arm_scan_prologue): Read memory as unsigned integer.
1002 (arm_exidx_unwind_sniffer): Likewise.
1003
0a0640e3
SM
10042016-11-28 Simon Marchi <simon.marchi@polymtl.ca>
1005
1006 * record-full.c (record_full_open_1): Fix debug output.
1007
7fb048a2
SM
10082016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1009
1010 * mi/mi-out.c (mi_message): Remove verbosity argument.
1011 * ada-tasks.c (print_ada_task_info, info_task, task_command):
1012 Update call.
1013 * auto-load.c (auto_load_info_scripts): Likewise.
1014 * breakpoint.c (breakpoint_1, watchpoints_info, tracepoints_info):
1015 Likewise.
1016 * cli-out.c (cli_message): Remove verbosity argument.
1017 * inferior.c (print_inferior): Update call.
1018 * linux-thread-db.c (info_auto_load_libthread_db): Likewise.
1019 * probe.c (info_probes_for_ops): Likewise.
1020 * skip.c (skip_info): Likewise.
1021 * solib.c (info_sharedlibrary_command): Likewise.
1022 * symfile.c (load_progress): Likewise.
1023 * thread.c (print_thread_info_1): Likewise.
1024 * ui-out.c (uo_message, ui_out_message): Remove verbosity argument.
1025 (ui_out_get_verblvl): Remove.
1026 * ui-out.h (ui_out_message): Remove verbosity argument.
1027 (ui_out_get_verblvl): Remove.
1028 (message_ftype): Remove verbosity argument.
1029
d2c0eef4
SM
10302016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1031
1032 * mi/mi-out.c (mi_wrap_hint): Constify argument.
1033 * cli-out.c (cli_wrap_hint): Likewise.
1034 * ui-out.c (ui_out_wrap_hint, uo_wrap_hint): Likewise.
1035 * ui-out.h (ui_out_wrap_hint, wrap_hint_ftype): Likewise.
1036 * utils.c (wrap_here): Likewise.
1037 (wrap_indent): Constify.
1038 * utils.h (wrap_here): Constify argument.
1039
82bbe65a
SM
10402016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1041
1042 * ui-out.c (uo_redirect): Return the return value from the
1043 implementation function.
1044
e4975d6a
SM
10452016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1046
1047 * ui-out.c (ui_out_destroy, uo_data_destroy): Remove.
1048 * ui-out.h (ui_out_destroy): Remove.
1049
0abe66b5
SM
10502016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1051
1052 * mi/mi-out.c (ui_out_data): Rename to ...
1053 (mi_ui_out_data): ... this.
1054
7f904c28
SM
10552016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1056
1057 * ui-out.c (_initialize_ui_out): Remove.
1058 (ui_out_set_flags): Remove.
1059 (ui_out_clear_flags): Remove.
1060 * ui-out.h (ui_out_begin_cleanup_end): Remove.
1061 (ui_out_begin_cleanup_end): Remove.
1062 (ui_out_set_flags): Remove.
1063 (ui_out_clear_flags): Remove.
1064 * mi/mi-out.c (_initialize_mi_out): Remove.
1065 (mi_out_buffered): Remove.
1066 * mi/mi-out.h (mi_out_buffered): Remove.
1067
59b21252
SM
10682016-11-26 Simon Marchi <simon.marchi@polymtl.ca>
1069
1070 * ui-out.h (struct ui_out_impl): Remove comment.
1071 * ui-out.c (struct ui_out): Remove comment.
1072
8227ffad
JB
10732016-11-25 John Baldwin <jhb@FreeBSD.org>
1074
1075 * contrib/ari/gdb_ari.sh (no parameter function): Remove check.
1076
50cc587f
SM
10772016-11-25 Simon Marchi <simon.marchi@ericsson.com>
1078
1079 * Makefile.in: Fix typo.
1080
8ce9efb0
SM
10812016-11-25 Simon Marchi <simon.marchi@ericsson.com>
1082
1083 * record-full.c (record_full_resume): Fix typos in comment.
1084
17e5269b
SM
10852016-11-25 Simon Marchi <simon.marchi@ericsson.com>
1086
1087 * infcmd.c (interrupt_command): Fix typo in comment.
1088
036e657b
JB
10892016-11-24 John Baldwin <jhb@FreeBSD.org>
1090
1091 * ada-lang.c (create_excep_cond_exprs): Do not use 'std::move'.
1092 * ax-gdb.c (agent_eval_command_one): Likewise.
1093 (agent_eval_command_one): Likewise.
1094 * breakpoint.c (parse_cond_to_aexpr): Likewise.
1095 (parse_cmd_to_aexpr): Likewise.
1096 * dtrace-probe.c (dtrace_process_dof_probe): Likewise.
1097 * parse.c (parse_expression_for_completion): Likewise.
1098
bbe910e6
JB
10992016-11-24 John Baldwin <jhb@FreeBSD.org>
1100
1101 * common/new-op.c (operator new): Mark 'noexcept'.
1102 (operator new[]): Likewise.
1103
793c128d
AA
11042016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com>
1105
1106 * dwarf2loc.c (copy_bitwise): Use memcpy for the middle part, if
1107 it is byte-aligned.
1108
ad06383f
AA
11092016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com>
1110 Pedro Alves <palves@redhat.com>
1111
1112 * dwarf2loc.c (bits_to_str, check_copy_bitwise)
1113 (copy_bitwise_tests): New functions.
1114 (_initialize_dwarf2loc): Register the new function
1115 copy_bitwise_tests as a unit test.
1116 * selftest.c (run_self_tests): Improve the failure message's
1117 wording and formatting.
1118
22347e55
AA
11192016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com>
1120
1121 * dwarf2loc.c (extract_bits_primitive): Remove.
1122 (extract_bits): Remove.
1123 (copy_bitwise): Rewrite. Fixes a possible corruption that may
1124 occur for non-byte-aligned copies.
1125
da5b30da
AA
11262016-11-24 Andreas Arnez <arnez@linux.vnet.ibm.com>
1127
1128 PR gdb/12616
1129 * dwarf2read.c (dwarf2_add_field): Handle the DWARF V4 attribute
1130 DW_AT_data_bit_offset.
1131
dcb07cfa
PA
11322016-11-23 Pedro Alves <palves@redhat.com>
1133
1134 * Makefile.in (SFILES): Add common/run-time-clock.c.
1135 (HFILES_NO_SRCDIR): Add common/run-time-clock.h.
1136 (COMMON_OBS): Add run-time-clock.o.
1137 * common/run-time-clock.c, common/run-time-clock.h: New files.
1138 * defs.h (struct timeval, print_transfer_performance): Delete
1139 declarations.
1140 * event-loop.c (struct gdb_timer) <when>: Now a
1141 std::chrono::steady_clock::time_point.
1142 (create_timer): use std::chrono::steady_clock instead of
1143 gettimeofday. Use new instead of malloc.
1144 (delete_timer): Use delete instead of xfree.
1145 (duration_cast_timeval): New.
1146 (update_wait_timeout): Use std::chrono::steady_clock instead of
1147 gettimeofday.
1148 * maint.c: Include <chrono> instead of "gdb_sys_time.h", <time.h>
1149 and "timeval-utils.h".
1150 (scoped_command_stats::~scoped_command_stats)
1151 (scoped_command_stats::scoped_command_stats): Use
1152 std::chrono::steady_clock instead of gettimeofday. Use
1153 user_cpu_time_clock instead of get_run_time.
1154 * maint.h: Include "run-time-clock.h" and <chrono>.
1155 (scoped_command_stats): <m_start_cpu_time>: Now a
1156 user_cpu_time_clock::time_point.
1157 <m_start_wall_time>: Now a std::chrono::steady_clock::time_point.
1158 * mi/mi-main.c: Include "run-time-clock.h" and <chrono> instead of
1159 "gdb_sys_time.h" and <sys/resource.h>.
1160 (rusage): Delete.
1161 (mi_execute_command): Use new instead of XNEW.
1162 (mi_load_progress): Use std::chrono::steady_clock instead of
1163 gettimeofday.
1164 (timestamp): Rewrite in terms of std::chrono::steady_clock,
1165 user_cpu_time_clock and system_cpu_time_clock.
1166 (timeval_diff): Delete.
1167 (print_diff): Adjust to use std::chrono::steady_clock,
1168 user_cpu_time_clock and system_cpu_time_clock.
1169 * mi/mi-parse.h: Include "run-time-clock.h" and <chrono> instead
1170 of "gdb_sys_time.h".
1171 (struct mi_timestamp): Change fields types to
1172 std::chrono::steady_clock::time_point, user_cpu_time_clock::time
1173 and system_cpu_time_clock::time_point, instead of struct timeval.
1174 * symfile.c: Include <chrono> instead of <time.h> and
1175 "gdb_sys_time.h".
1176 (struct time_range): New.
1177 (generic_load): Use std::chrono::steady_clock instead of
1178 gettimeofday.
1179 (print_transfer_performance): Replace timeval parameters with a
1180 std::chrono::steady_clock::duration parameter. Adjust.
1181 * utils.c: Include <chrono> instead of "timeval-utils.h",
1182 "gdb_sys_time.h", and <time.h>.
1183 (prompt_for_continue_wait_time): Now a
1184 std::chrono::steady_clock::duration.
1185 (defaulted_query, prompt_for_continue): Use
1186 std::chrono::steady_clock instead of
1187 gettimeofday/timeval_sub/timeval_add.
1188 (reset_prompt_for_continue_wait_time): Use
1189 std::chrono::steady_clock::duration instead of struct timeval.
1190 (get_prompt_for_continue_wait_time): Return a
1191 std::chrono::steady_clock::duration instead of struct timeval.
1192 (vfprintf_unfiltered): Use std::chrono::steady_clock instead of
1193 gettimeofday. Use std::string. Use '.' instead of ':'.
1194 * utils.h: Include <chrono>.
1195 (get_prompt_for_continue_wait_time): Return a
1196 std::chrono::steady_clock::duration instead of struct timeval.
1197
8629c02c
SM
11982016-11-22 Simon Marchi <simon.marchi@polymtl.ca>
1199
1200 * Makefile.in: Fix whitespace formatting.
1201
03b62bbb
SM
12022016-11-22 Simon Marchi <simon.marchi@polymtl.ca>
1203
1204 * Makefile.in (ALL_64_TARGET_OBS, ALL_TARGET_OBS,
1205 HFILES_NO_SRCDIR, ALLDEPFILES): Rename files.
1206 * alphabsd-nat.c: Rename to ...
1207 * alpha-bsd-nat.c: ... this, adjust include.
1208 * alphabsd-tdep.c: Rename to ...
1209 * alpha-bsd-tdep.c: ... this, adjust include.
1210 * alphabsd-tdep.h: Rename to ...
1211 * alpha-bsd-tdep.h: ... this, adjust include barrier and comment.
1212 * alphafbsd-tdep.c: Rename to ...
1213 * alpha-fbsd-tdep.c: ... this.
1214 * alphanbsd-tdep.c: Rename to ...
1215 * alpha-nbsd-tdep.c: ... this, adjust include.
1216 * alphaobsd-tdep.c: Rename to ...
1217 * alpha-obsd-tdep.c: ... this, adjust include.
1218 * amd64bsd-nat.c: Rename to ...
1219 * amd64-bsd-nat.c: ... this, adjust include.
1220 * amd64fbsd-nat.c: Rename to ...
1221 * amd64-fbsd-nat.c: ... this, adjust include.
1222 * amd64fbsd-tdep.c: Rename to ...
1223 * amd64-fbsd-tdep.c: ... this, adjust include.
1224 * amd64nbsd-nat.c: Rename to ...
1225 * amd64-nbsd-nat.c: ... this.
1226 * amd64nbsd-tdep.c: Rename to ...
1227 * amd64-nbsd-tdep.c: ... this.
1228 * amd64obsd-nat.c: Rename to ...
1229 * amd64-obsd-nat.c: ... this.
1230 * amd64obsd-tdep.c: Rename to ...
1231 * amd64-obsd-tdep.c: ... this.
1232 * amd64-tdep.h: Update comments.
1233 * armbsd-tdep.c: Rename to ...
1234 * arm-bsd-tdep.c: ... this.
1235 * armnbsd-nat.c: Rename to ...
1236 * arm-nbsd-nat.c: ... this.
1237 * armnbsd-tdep.c: Rename to ...
1238 * arm-nbsd-tdep.c: ... this.
1239 * armobsd-tdep.c: Rename to ...
1240 * arm-obsd-tdep.c: ... this.
1241 * arm-tdep.h: Update comments.
1242 * hppabsd-tdep.c: Rename to ...
1243 * hppa-bsd-tdep.c: ... this, adjust include.
1244 * hppabsd-tdep.h: Rename to ...
1245 * hppa-bsd-tdep.h: ... this, adjust include barrier and comment.
1246 * hppanbsd-nat.c: Rename to ...
1247 * hppa-nbsd-nat.c: ... this.
1248 * hppanbsd-tdep.c: Rename to ...
1249 * hppa-nbsd-tdep.c: ... this, adjust include.
1250 * hppaobsd-nat.c: Rename to ...
1251 * hppa-obsd-nat.c: ... this.
1252 * hppaobsd-tdep.c: Rename to ...
1253 * hppa-obsd-tdep.c: ... this, adjust include.
1254 * i386bsd-nat.c: Rename to ...
1255 * i386-bsd-nat.c: ... this, adjust include.
1256 * i386bsd-nat.h: Rename to ...
1257 * i386-bsd-nat.h: ... this, adjust include barrier and comment.
1258 * i386bsd-tdep.c: Rename to ...
1259 * i386-bsd-tdep.c: ... this.
1260 * i386fbsd-nat.c: Rename to ...
1261 * i386-fbsd-nat.c: ... this, adjust include.
1262 * i386fbsd-tdep.c: Rename to ...
1263 * i386-fbsd-tdep.c: ... this, adjust include.
1264 * i386fbsd-tdep.h: Rename to ...
1265 * i386-fbsd-tdep.h: ... this, adjust include barrier and comment.
1266 * i386gnu-nat.c: Rename to ...
1267 * i386-gnu-nat.c: ... this.
1268 * i386gnu-tdep.c: Rename to ...
1269 * i386-gnu-tdep.c: ... this.
1270 * i386nbsd-nat.c: Rename to ...
1271 * i386-nbsd-nat.c: ... this, adjust include.
1272 * i386nbsd-tdep.c: Rename to ...
1273 * i386-nbsd-tdep.c: ... this.
1274 * i386obsd-nat.c: Rename to ...
1275 * i386-obsd-nat.c: ... this, adjust include.
1276 * i386obsd-tdep.c: Rename to ...
1277 * i386-obsd-tdep.c: ... this.
1278 * i386v4-nat.c: Rename to ...
1279 * i386-v4-nat.c: ... this.
1280 * i386-tdep.h: Update comments.
1281 * m68k-tdep.h: Update comments.
1282 * m68kbsd-nat.c: Rename to ...
1283 * m68k-bsd-nat.c: ... this.
1284 * m68kbsd-tdep.c: Rename to ...
1285 * m68k-bsd-tdep.c: ... this.
1286 * m68klinux-nat.c: Rename to ...
1287 * m68k-linux-nat.c: ... this.
1288 * m68klinux-tdep.c: Rename to ...
1289 * m68k-linux-tdep.c: ... this.
1290 * m88kbsd-nat.c: Rename to ...
1291 * m88k-bsd-nat.c: ... this.
1292 * mipsnbsd-nat.c: Rename to ...
1293 * mips-nbsd-nat.c: ... this, adjust include.
1294 * mipsnbsd-tdep.c: Rename to ...
1295 * mips-nbsd-tdep.c: ... this, adjust include.
1296 * mipsnbsd-tdep.h: Rename to ...
1297 * mips-nbsd-tdep.h: ... this, adjust include barrier and comment.
1298 * mips64obsd-nat.c: Rename to ...
1299 * mips64-obsd-nat.c: ... this.
1300 * mips64obsd-tdep.c: Rename to ...
1301 * mips64-obsd-tdep.c: ... this.
1302 * ppcfbsd-nat.c: Rename to ...
1303 * ppc-fbsd-nat.c: ... this, adjust include.
1304 * ppcfbsd-tdep.c: Rename to ...
1305 * ppc-fbsd-tdep.c: ... this, adjust include.
1306 * ppcfbsd-tdep.h: Rename to ...
1307 * ppc-fbsd-tdep.h: ... this, adjust include barrier and comment.
1308 * ppcnbsd-nat.c: Rename to ...
1309 * ppc-nbsd-nat.c: ... this, adjust include.
1310 * ppcnbsd-tdep.c: Rename to ...
1311 * ppc-nbsd-tdep.c: ... this, adjust include.
1312 * ppcnbsd-tdep.h: Rename to ...
1313 * ppc-nbsd-tdep.h: ... this, adjust include barrier and comment.
1314 * ppcobsd-nat.c: Rename to ...
1315 * ppc-obsd-nat.c: ... this, adjust include.
1316 * ppcobsd-tdep.c: Rename to ...
1317 * ppc-obsd-tdep.c: ... this, adjust include.
1318 * ppcobsd-tdep.h: Rename to ...
1319 * ppc-obsd-tdep.h: ... this, adjust include barrier and comment.
1320 * shnbsd-nat.c: Rename to ...
1321 * sh-nbsd-nat.c: ... this.
1322 * shnbsd-tdep.c: Rename to ...
1323 * sh-nbsd-tdep.c: ... this.
1324 * sparcnbsd-nat.c: Rename to ...
1325 * sparc-nbsd-nat.c: ... this.
1326 * sparcnbsd-tdep.c: Rename to ...
1327 * sparc-nbsd-tdep.c: ... this.
1328 * sparcobsd-tdep.c: Rename to ...
1329 * sparc-obsd-tdep.c: ... this.
1330 * sparc64fbsd-nat.c: Rename to ...
1331 * sparc64-fbsd-nat.c: ... this.
1332 * sparc64fbsd-tdep.c: Rename to ...
1333 * sparc64-fbsd-tdep.c: ... this.
1334 * sparc64nbsd-nat.c: Rename to ...
1335 * sparc64-nbsd-nat.c: ... this.
1336 * sparc64nbsd-tdep.c: Rename to ...
1337 * sparc64-nbsd-tdep.c: ... this.
1338 * sparc64obsd-nat.c: Rename to ...
1339 * sparc64-obsd-nat.c: ... this.
1340 * sparc64obsd-tdep.c: Rename to ...
1341 * sparc64-obsd-tdep.c: ... this.
1342 * sparc64-tdep.h: Update comments.
1343 * vaxbsd-nat.c: Rename to ...
1344 * vax-bsd-nat.c: ... this.
1345 * vaxnbsd-tdep.c: Rename to ...
1346 * vax-nbsd-tdep.c: ... this.
1347 * vaxobsd-tdep.c: Rename to ...
1348 * vax-obsd-tdep.c: ... this.
1349 * x86bsd-nat.h: Rename to ...
1350 * x86-bsd-nat.h: ... this, adjust include barrier and comment.
1351 * x86bsd-nat.c: Rename to ...
1352 * x86-bsd-nat.c: ... this, adjust include.
1353 * configure.tgt: Update renamed files.
1354 * config/alpha/fbsd.mh: Update renamed files.
1355 * config/alpha/nbsd.mh: Update renamed files.
1356 * config/arm/nbsdelf.mh: Update renamed files.
1357 * config/djgpp/fnchange.lst: Update renamed files.
1358 * config/i386/fbsd.mh: Update renamed files.
1359 * config/i386/fbsd64.mh: Update renamed files.
1360 * config/i386/i386gnu.mh: Update renamed files.
1361 * config/i386/i386sol2.mh: Update renamed files.
1362 * config/i386/nbsd64.mh: Update renamed files.
1363 * config/i386/nbsdelf.mh: Update renamed files.
1364 * config/i386/obsd.mh: Update renamed files.
1365 * config/i386/obsd64.mh: Update renamed files.
1366 * config/i386/sol2-64.mh: Update renamed files.
1367 * config/m68k/linux.mh: Update renamed files.
1368 * config/m68k/nbsdelf.mh: Update renamed files.
1369 * config/m68k/obsd.mh: Update renamed files.
1370 * config/m88k/obsd.mh: Update renamed files.
1371 * config/mips/nbsd.mh: Update renamed files.
1372 * config/mips/obsd64.mh: Update renamed files.
1373 * config/pa/nbsd.mh: Update renamed files.
1374 * config/pa/obsd.mh: Update renamed files.
1375 * config/powerpc/fbsd.mh: Update renamed files.
1376 * config/powerpc/nbsd.mh: Update renamed files.
1377 * config/powerpc/obsd.mh: Update renamed files.
1378 * config/sh/nbsd.mh: Update renamed files.
1379 * config/sparc/fbsd.mh: Update renamed files.
1380 * config/sparc/nbsd64.mh: Update renamed files.
1381 * config/sparc/nbsdelf.mh: Update renamed files.
1382 * config/sparc/obsd64.mh: Update renamed files.
1383 * config/vax/nbsdelf.mh: Update renamed files.
1384 * config/vax/obsd.mh: Update renamed files.
1385
b593ecca
SM
13862016-11-22 Simon Marchi <simon.marchi@polymtl.ca>
1387
1388 * Makefile.in: Add comment about file lists ordering.
1389 (SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_MI_OBS, SUBDIR_MI_SRCS,
1390 SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS, SUBDIR_GCC_COMPILE_OBS,
1391 SUBDIR_GCC_COMPILE_SRCS, SUBDIR_GUILE_OBS, SUBDIR_GUILE_SRCS,
1392 SUBDIR_PYTHON_OBS, SUBDIR_PYTHON_SRCS, SUBDIR_GDBTK_OBS,
1393 SUBDIR_GDBTK_SRCS, XMLFILES, REMOTE_OBS, ALL_64_TARGET_OBS,
1394 ALL_TARGET_OBS, SFILES, HFILES_NO_SRCDIR, HFILES_WITH_SRCDIR,
1395 COMMON_OBS, YYFILES, YYOBJ, generated_files, ALLDEPFILES):
1396 Flatten list and order alphabetically.
1397 * data-directory/Makefile.in: Add comment about file lists
1398 ordering.
1399 (GEN_SYSCALLS_FILES, PYTHON_FILE_LIST): Flatten list and order
1400 alphabetically.
1401
ca3cbe5c
AM
14022016-11-22 Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
1403
1404 * contrib/expect-read1.sh: Fix spelling in comments.
1405 * gdb_buildall.sh: Fix spelling in comments.
1406 * gdb_mbuild.sh: Fix spelling in comments.
1407
96fe4562
AM
14082016-11-22 Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
1409
1410 * configure.ac: Fix spelling in comments.
1411 * configure: Regenerate.
1412
f5ea389a
YQ
14132016-11-22 Yao Qi <yao.qi@linaro.org>
1414
1415 * gdbarch.sh (software_single_step): Change parameter from frame_info
1416 to regcache.
1417 * gdbarch.c, gdbarch.h: Regenerated.
1418 * aarch64-tdep.c (aarch64_software_single_step): Change parameter
1419 from frame_info to regcache. Don't call get_current_regcache.
1420 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Likewise.
1421 (alpha_software_single_step): Likewise.
1422 * alpha-tdep.h (alpha_software_single_step): Update declaration.
1423 * arm-linux-tdep.c (arm_linux_software_single_step): Likewise.
1424 * arm-tdep.c (arm_software_single_step): Likewise.
1425 * arm-tdep.h (arm_software_single_step): Likewise.
1426 * breakpoint.c (insert_single_step_breakpoint): Pass regcache to
1427 gdbarch_software_single_step.
1428 * cris-tdep.c (cris_software_single_step): Change parameter from
1429 frame_info to regcache. Don't call get_current_regcache.
1430 * mips-tdep.c (mips_software_single_step): Likewise.
1431 * mips-tdep.h (mips_software_single_step): Update declaration.
1432 * moxie-tdep.c (moxie_software_single_step): Likewise.
1433 * nios2-tdep.c (nios2_software_single_step): Likewise.
1434 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Update declaration.
1435 * rs6000-aix-tdep.c (rs6000_software_single_step): Likewise.
1436 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise.
1437 * s390-linux-tdep.c (s390_software_single_step): Likewise.
1438 * sparc-tdep.c (sparc_software_single_step): Likewise.
1439 * spu-tdep.c (spu_software_single_step): Likewise.
1440 * tic6x-tdep.c (tic6x_software_single_step): Likewise.
1441
b2260160
YQ
14422016-11-22 Yao Qi <yao.qi@linaro.org>
1443
1444 * spu-tdep.c (spu_software_single_step): Call get_regcache_arch
1445 instead of get_frame_arch. Call regcache_read_pc instead of
1446 get_frame_pc. Call regcache_raw_get_unsigned instead of
1447 get_frame_register_unsigned.
1448
fb090cfa
YQ
14492016-11-22 Yao Qi <yao.qi@linaro.org>
1450
1451 * tic6x-tdep.c (tic6x_condition_true): Replace frame with
1452 regcache. Call regcache_raw_get_signed instead of
1453 get_frame_register_signed.
1454 (tic6x_get_next_pc): Likewise. Caller updated.
1455
41e26ad3
YQ
14562016-11-22 Yao Qi <yao.qi@linaro.org>
1457
1458 * rs6000-aix-tdep.c (branch_dest): Replace parameter frame with
1459 regcache. Call get_regcache_arch instead of get_frame_arch.
1460 Call regcache_raw_get_unsigned instead of
1461 get_frame_register_unsigned.
1462 (rs6000_software_single_step): Likewise.
1463 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Call
1464 get_regcache_arch instead of get_frame_arch. Call
1465 regcache_read_pc instead of get_frame_pc.
1466
ad769689
YQ
14672016-11-22 Yao Qi <yao.qi@linaro.org>
1468
1469 * s390-linux-tdep.c (s390_software_single_step): Call
1470 get_regcache_arch instead of get_frame_arch. Call
1471 regcache_read_pc instead of get_frame_pc.
1472
cd76b525
YQ
14732016-11-22 Yao Qi <yao.qi@linaro.org>
1474
1475 * sparc-tdep.c (sparc_analyze_control_transfer): Replace parameter
1476 frame with regcache. Call get_current_frame.
1477 (sparc_software_single_step): Call get_regcache_arch instead of
1478 get_frame_arch. Call regcache_raw_get_unsigned instead of
1479 get_frame_register_unsigned.
1480
3889f490
YQ
14812016-11-22 Yao Qi <yao.qi@linaro.org>
1482
1483 * nios2-tdep.c (nios2_get_next_pc): Replace parameter frame
1484 with regcache. Call regcache_raw_get_signed instead of
1485 get_frame_register_unsigned.
1486 (nios2_software_single_step): Call get_regcache_arch
1487 instead of get_frame_arch.
1488
a8f34182
YQ
14892016-11-22 Yao Qi <yao.qi@linaro.org>
1490
1491 * moxie-tdep.c (moxie_software_single_step): Call
1492 get_regcache_arch instead of get_frame_arch. Call
1493 regcache_read_pc instead of get_frame_pc.
1494
7113a196
YQ
14952016-11-22 Yao Qi <yao.qi@linaro.org>
1496
1497 * mips-tdep.c (mips32_bc1_pc): Replace parameter frame with
1498 regcache. Call regcache_raw_get_unsigned instead of
1499 get_frame_register_unsigned.
1500 (mips32_next_pc): Likewise.
1501 (micromips_bc1_pc): Likewise.
1502 (micromips_next_pc): Likewise.
1503 (extended_mips16_next_pc): Likewise.
1504 (mips16_next_pc): Likewise.
1505 (mips_next_pc): Likewise.
1506 (mips_software_single_step): Call get_regcache_arch instead
1507 of get_frame_arch.
1508
5b6e2eee
YQ
15092016-11-22 Yao Qi <yao.qi@linaro.org>
1510
1511 * cris-tdep.c (find_step_target): Replace parameter frame
1512 with regcache. Call get_regcache_arch instead of
1513 get_frame_arch. Call regcache_raw_get_unsigned instead of
1514 get_frame_register_unsigned.
1515 (cris_software_single_step): Call get_regcache_arch instead
1516 of get_frame_arch.
1517
7ab2d087
YQ
15182016-11-22 Yao Qi <yao.qi@linaro.org>
1519
1520 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Call
1521 get_regcache_arch instead of get_frame_arch. Call
1522 regcache_read_pc instead of get_frame_pc.
1523 (alpha_next_pc): Replace parameter frame with regcache.
1524 Call regcache_raw_get_unsigned instead of
1525 get_frame_register_unsigned.
1526
0187a92f
YQ
15272016-11-22 Yao Qi <yao.qi@linaro.org>
1528
1529 * aarch64-tdep.c (aarch64_software_single_step): Call
1530 get_regcache_arch instead of get_frame_arch. Call
1531 regcache_read_pc instead of get_frame_pc.
1532
9fd15b2e
YQ
15332016-11-22 Yao Qi <yao.qi@linaro.org>
1534
1535 * regcache.c (regcache_raw_get_signed): New function.
1536 * regcache.h (regcache_raw_get_signed): Declare.
1537
c5acd815
YQ
15382016-11-22 Yao Qi <yao.qi@linaro.org>
1539
1540 * value.c (value_from_component): Use VALUE_NEXT_FRAME_ID
1541 instead of VALUE_FROM_ID.
1542
d0de53e2
SM
15432016-11-21 Simon Marchi <simon.marchi@ericsson.com>
1544
1545 * Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE
1546 step.
1547
3fff9862
YQ
15482016-11-21 Yao Qi <yao.qi@linaro.org>
1549
1550 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
1551 Don't call value_from_contents_and_address and
1552 set_value_address. Call value_from_component.
1553 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer):
1554 Likewise.
1555 * value.c (value_from_component): New function.
1556 * value.h (value_from_component): Likewise.
1557 * valarith.c (value_subscripted_rvalue): Call
1558 value_from_component.
1559
cc188e5f
JB
15602016-11-19 Joel Brobecker <brobecker@adacore.com>
1561
1562 * contrib/ari/gdb_ari.sh: Add detection of printf_vma and
1563 sprintf_vma.
1564
ef787763
SM
15652016-11-18 Simon Marchi <simon.marchi@polymtl.ca>
1566
1567 * Makefile.in (%.o: $(srcdir)/gdbtk/generic/%.c): Fix typo.
1568
470dd0a6
SM
15692016-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1570
1571 (PYTHON_CFLAGS): Move up.
1572 (%.o: $(srcdir)/arch/%.c): New rule.
1573 (%.o: $(srcdir)/cli/%.c): New rule.
1574 (%.o: $(srcdir)/common/%.c): New rule.
1575 (%.o: $(srcdir)/compile/%.c): New rule.
1576 (%.o: $(srcdir)/gdbtk/generic/%.c): New rule.
1577 (%.o: $(srcdir)/guile/%.c): New rule.
1578 (%.o: $(srcdir)/mi/%.c): New rule.
1579 (%.o: $(srcdir)/nat/%.c): New rule.
1580 (%.o: $(srcdir)/python/%.c): New rule.
1581 (%.o: $(srcdir)/target/%.c): New rule.
1582 (%.o: $(srcdir)/tui/%.c): New rule.
1583 (cli-cmds.o): Remove.
1584 (cli-decode.o): Likewise.
1585 (cli-dump.o): Likewise.
1586 (cli-interp.o): Likewise.
1587 (cli-logging.o): Likewise.
1588 (cli-script.o): Likewise.
1589 (cli-setshow.o): Likewise.
1590 (cli-utils.o): Likewise.
1591 (compile.o): Likewise.
1592 (compile-c-types.o): Likewise.
1593 (compile-c-symbols.o): Likewise.
1594 (compile-object-load.o): Likewise.
1595 (compile-object-run.o): Likewise.
1596 (compile-loc2c.o): Likewise.
1597 (compile-c-support.o): Likewise.
1598 (gdbtk.o): Likewise.
1599 (gdbtk-bp.o): Likewise.
1600 (gdbtk-cmds.o): Likewise.
1601 (gdbtk-hooks.o): Likewise.
1602 (gdbtk-interp.o): Likewise.
1603 (gdbtk-main.o): Likewise.
1604 (gdbtk-register.o): Likewise.
1605 (gdbtk-stack.o): Likewise.
1606 (gdbtk-varobj.o): Likewise.
1607 (gdbtk-wrapper.o): Likewise.
1608 (mi-cmd-break.o): Likewise.
1609 (mi-cmd-catch.o): Likewise.
1610 (mi-cmd-disas.o): Likewise.
1611 (mi-cmd-env.o): Likewise.
1612 (mi-cmd-file.o): Likewise.
1613 (mi-cmd-info.o): Likewise.
1614 (mi-cmds.o): Likewise.
1615 (mi-cmd-stack.o): Likewise.
1616 (mi-cmd-target.o): Likewise.
1617 (mi-cmd-var.o): Likewise.
1618 (mi-console.o): Likewise.
1619 (mi-getopt.o): Likewise.
1620 (mi-interp.o): Likewise.
1621 (mi-main.o): Likewise.
1622 (mi-out.o): Likewise.
1623 (mi-parse.o): Likewise.
1624 (mi-symbol-cmds.o): Likewise.
1625 (mi-common.o): Likewise.
1626 (signals.o): Likewise.
1627 (common-utils.o): Likewise.
1628 (gdb_vecs.o): Likewise.
1629 (xml-utils.o): Likewise.
1630 (ptid.o): Likewise.
1631 (buffer.o): Likewise.
1632 (filestuff.o): Likewise.
1633 (format.o): Likewise.
1634 (vec.o): Likewise.
1635 (print-utils.o): Likewise.
1636 (rsp-low.o): Likewise.
1637 (errors.o): Likewise.
1638 (common-debug.o): Likewise.
1639 (cleanups.o): Likewise.
1640 (common-exceptions.o
1641 (posix-strerror.o): Likewise.
1642 (mingw-strerror.o): Likewise.
1643 (btrace-common.o): Likewise.
1644 (fileio.o): Likewise.
1645 (common-regcache.o): Likewise.
1646 (signals-state-save-restore.o): Likewise.
1647 (new-op.o): Likewise.
1648 (waitstatus.o): Likewise.
1649 (arm.o): Likewise.
1650 (arm-linux.o): Likewise.
1651 (arm-get-next-pcs.o): Likewise.
1652 (x86-dregs.o): Likewise.
1653 (linux-btrace.o): Likewise.
1654 (linux-osdata.o): Likewise.
1655 (linux-procfs.o): Likewise.
1656 (linux-ptrace.o): Likewise.
1657 (linux-waitpid.o): Likewise.
1658 (mips-linux-watch.o): Likewise.
1659 (ppc-linux.o): Likewise.
1660 (linux-personality.o): Likewise.
1661 (x86-linux.o): Likewise.
1662 (x86-linux-dregs.o): Likewise.
1663 (amd64-linux-siginfo.o): Likewise.
1664 (linux-namespaces.o): Likewise.
1665 (aarch64-linux-hw-point.o): Likewise.
1666 (aarch64-linux.o): Likewise.
1667 (aarch64-insn.o): Likewise.
1668 (tui.o): Likewise.
1669 (tui-command.o): Likewise.
1670 (tui-data.o): Likewise.
1671 (tui-disasm.o): Likewise.
1672 (tui-file.o): Likewise.
1673 (tui-hooks.o): Likewise.
1674 (tui-interp.o): Likewise.
1675 (tui-io.o): Likewise.
1676 (tui-layout.o): Likewise.
1677 (tui-out.o): Likewise.
1678 (tui-regs.o): Likewise.
1679 (tui-source.o): Likewise.
1680 (tui-stack.o): Likewise.
1681 (tui-win.o): Likewise.
1682 (tui-windata.o): Likewise.
1683 (tui-wingeneral.o): Likewise.
1684 (tui-winsource.o): Likewise.
1685 (guile.o): Likewise.
1686 (scm-arch.o): Likewise.
1687 (scm-auto-load.o): Likewise.
1688 (scm-block.o): Likewise.
1689 (scm-breakpoint.o): Likewise.
1690 (scm-cmd.o): Likewise.
1691 (scm-disasm.o): Likewise.
1692 (scm-exception.o): Likewise.
1693 (scm-frame.o): Likewise.
1694 (scm-gsmob.o): Likewise.
1695 (scm-iterator.o): Likewise.
1696 (scm-lazy-string.o): Likewise.
1697 (scm-math.o): Likewise.
1698 (scm-objfile.o): Likewise.
1699 (scm-param.o): Likewise.
1700 (scm-ports.o): Likewise.
1701 (scm-pretty-print.o): Likewise.
1702 (scm-progspace.o): Likewise.
1703 (scm-safe-call.o): Likewise.
1704 (scm-string.o): Likewise.
1705 (scm-symbol.o): Likewise.
1706 (scm-symtab.o): Likewise.
1707 (scm-type.o): Likewise.
1708 (scm-utils.o): Likewise.
1709 (scm-value.o): Likewise.
1710 (python.o): Likewise.
1711 (py-arch.o): Likewise.
1712 (py-auto-load.o): Likewise.
1713 (py-block.o): Likewise.
1714 (py-bpevent.o): Likewise.
1715 (py-breakpoint.o): Likewise.
1716 (py-cmd.o): Likewise.
1717 (py-continueevent.o): Likewise.
1718 (py-xmethods.o): Likewise.
1719 (py-event.o): Likewise.
1720 (py-evtregistry.o): Likewise.
1721 (py-evts.o): Likewise.
1722 (py-exitedevent.o): Likewise.
1723 (py-finishbreakpoint.o): Likewise.
1724 (py-frame.o): Likewise.
1725 (py-framefilter.o): Likewise.
1726 (py-function.o): Likewise.
1727 (py-gdb-readline.o): Likewise.
1728 (py-inferior.o): Likewise.
1729 (py-infevents.o): Likewise.
1730 (py-infthread.o): Likewise.
1731 (py-lazy-string.o): Likewise.
1732 (py-linetable.o): Likewise.
1733 (py-newobjfileevent.o): Likewise.
1734 (py-objfile.o): Likewise.
1735 (py-param.o): Likewise.
1736 (py-prettyprint.o): Likewise.
1737 (py-progspace.o): Likewise.
1738 (py-signalevent.o): Likewise.
1739 (py-stopevent.o): Likewise.
1740 (py-symbol.o): Likewise.
1741 (py-symtab.o): Likewise.
1742 (py-threadevent.o): Likewise.
1743 (py-type.o): Likewise.
1744 (py-unwind.o): Likewise.
1745 (py-utils.o): Likewise.
1746 (py-value.o): Likewise.
1747 (py-varobj.o): Likewise.
1748
5443506e
SM
17492016-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1750
1751 * Makefile.in (.c.o): Replace rule with ...
1752 (%.o: %.c): ... this one.
1753 (.po.gmo): Replace rule with ...
1754 (%.gmo: %.po): ... this one.
1755 (.po.pox): Replace rule with ...
1756 (%.pox: %.po): ... this one.
1757 (.y.c): Replace rule with ...
1758 (%.c: %.y): ... this one.
1759 (.l.c): Replace rule with ...
1760 (%.c: %.l): ... this one.
1761 (.SUFFIXES): Remove all instances.
1762
3b165252
SM
17632016-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1764
1765 * Makefile.in: Remove @GMAKE_TRUE@ prefixes and removes lines
1766 prefixed with @GMAKE_FALSE@. Update comment related to non-GNU
1767 make.
1768 * configure.ac: Remove checks for the make program.
1769 * configure: Re-generate.
1770
f2ff9acd
SM
17712016-11-17 Simon Marchi <simon.marchi@polymtl.ca>
1772
1773 * NEWS: Mention requirement of GNU make.
1774
66be918f
PA
17752016-11-17 Pedro Alves <palves@redhat.com>
1776
1777 * c-exp.y (c_print_token): Use parser_fprintf instead of fprintf.
1778
7c2683c4
PA
17792016-11-17 Pedro Alves <palves@redhat.com>
1780
1781 * ctf.c [USE_WIN32API] (mkdir): Delete.
1782
200069c7
PA
17832016-11-16 Pedro Alves <palves@redhat.com>
1784
1785 * ada-lang.c (ada_value_primitive_packed_val): Use unique_ptr and
1786 new gdb_byte[] instead of malloc and cleanups.
1787
19f1935d
PA
17882016-11-17 Pedro Alves <palves@redhat.com>
1789
1790 * tracepoint.c (collection_list::add_memrange): Add gdbarch
1791 parameter. Use paddress instead of printf_vma. Adjust recursive
1792 calls.
1793 (collection_list::stringify): Use paddress and phex_nz instead of
1794 sprintf_vma. Adjust add_memrange call.
1795 * tracepoint.h (collection_list::add_memrange): Add gdbarch
1796 parameter.
1797
256ae5db
KB
17982016-11-16 Kevin Buettner <kevinb@redhat.com>
1799
1800 * frame.c (get_prev_frame): Stash frame id for current frame
1801 prior to computing frame id for previous frame.
1802
33cc7d36
KB
18032016-11-16 Kevin Buettner <kevinb@redhat.com>
1804
1805 * python/py-unwind.c (pending_framepy_read_register): Use
1806 value_of_register() instead of get_frame_register_value().
1807
41b56feb
KB
18082016-11-16 Kevin Buettner <kevinb@redhat.com>
1809
1810 * value.h (VALUE_FRAME_ID): Rename to VALUE_NEXT_FRAME_ID. Update
1811 comment. Create new VALUE_FRAME_ID which is defined in terms of
1812 VALUE_NEXT_FRAME_ID.
1813 (deprecated_value_frame_id_hack): Rename to
1814 deprecated_value_next_frame_id_hack.
1815 * dwarf2loc.c, findvar.c, frame-unwind.c, sentinel-frame.c,
1816 valarith.c, valops.c, value.c: Adjust nearly all occurences of
1817 VALUE_FRAME_ID to VALUE_NEXT_FRAME_ID. Add comments for those
1818 which did not change.
1819 * value.c (struct value): Rename frame_id field to next_frame_id.
1820 Update comment.
1821 (deprecated_value_frame_id_hack): Rename to
1822 deprecated_value_next_frame_id_hack.
1823 (value_fetch_lazy): Call frame_unwind_register_value()
1824 instead of get_frame_register_value().
1825 * frame.c (get_prev_frame_id_by_id): New function.
1826 * frame.h (get_prev_frame_id_by_id): Declare.
1827 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Make
1828 VALUE_NEXT_FRAME_ID refer to the next frame.
1829 * findvar.c (value_of_register_lazy): Likewise.
1830 (default_value_from_register): Likewise.
1831 (value_from_register): Likewise.
1832 * frame_unwind.c (frame_unwind_got_optimized): Likewise.
1833 * sentinel-frame.c (sentinel_frame_prev_register): Likewise.
1834 * value.h (VALUE_FRAME_ID): Update comment describing this macro.
1835
df433d31
KB
18362016-11-16 Kevin Buettner <kevinb@redhat.com>
1837
1838 * frame.h (enum frame_id_stack_status): Add FID_STACK_SENTINEL.
1839 (struct frame_id): Increase number of bits required for storing
1840 stack status to 3 from 2.
1841 (sentinel_frame_id): New declaration.
1842 (get_next_frame_sentinel_okay): Declare.
1843 (frame_find_by_id_sentinel_okay): Declare.
1844 * frame.c (current_frame): Rename this static global to...
1845 (sentinel_frame): ...this static global, which has also been
1846 moved an earlier location in the file.
1847 (fprint_frame_id): Add case for sentinel frame id.
1848 (get_frame_id): Return early for sentinel frame.
1849 (sentinel_frame_id): Define.
1850 (frame_find_by_id): Add case for sentinel_frame_id.
1851 (create_sentinel_frame): Use sentinel_frame_id for this_id.value
1852 instead of null_frame_id.
1853 (get_current_frame): Add local declaration for `current_frame'.
1854 Remove local declaration for `sentinel_frame.'
1855 (get_next_frame_sentinel_okay): New function.
1856 (reinit_frame_cache): Use `sentinel_frame' in place of
1857 `current_frame'.
1858
4c62b19f
PA
18592016-11-15 Pedro Alves <palves@redhat.com>
1860
1861 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
1862 38237baf99386101934cd93278023aa4ae523ec0.
1863 * gnulib/configure, gnulib/config.in: Regenerate.
1864 * gnulib/import/Makefile.am: Regenerate.
1865 * gnulib/import/Makefile.in: Regenerate.
1866 * gnulib/import/canonicalize-lgpl.c: Update.
1867 * gnulib/import/extra/snippet/c++defs.h: Update.
1868 * gnulib/import/m4/stdint.m4: Update.
1869 * gnulib/import/m4/stdlib_h.m4: Update.
1870 * gnulib/import/math.in.h: Update.
1871 * gnulib/import/stdlib.in.h: Update.
1872 * gnulib/import/sys_time.in.h: Update.
1873
5cc8c731
PA
18742016-11-15 Pedro Alves <palves@redhat.com>
1875
1876 * common/common-defs.h: Update comment.
1877 * common/gdb_unique_ptr.h: Update header comment and copyright
1878 year.
1879 (gdb::unique_ptr, gdb::move): Delete.
1880
b22e99fd
PA
18812016-11-15 Pedro Alves <palves@redhat.com>
1882
1883 * ada-lang.c (create_excep_cond_exprs): Use std::move instead of
1884 gdb::move.
1885 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
1886 std::unique_ptr instead of gdb::unique_ptr.
1887 * breakpoint.c (watch_command_1): Use std::move instead of
1888 gdb::move.
1889 * cli/cli-dump.c (dump_memory_to_file, restore_binary_file): Use
1890 std::unique_ptr instead of gdb::unique_ptr.
1891 * dtrace-probe.c (dtrace_process_dof_probe): Use std::move instead
1892 of gdb::move.
1893 * elfread.c (elf_read_minimal_symbols): Use std::unique_ptr
1894 instead of gdb::unique_ptr.
1895 * mi/mi-main.c (mi_cmd_data_read_memory): Use std::unique_ptr
1896 instead of gdb::unique_ptr.
1897 * parse.c (parse_expression_for_completion): Use std::move instead
1898 of gdb::move.
1899 * printcmd.c (display_command): std::move instead of gdb::move.
1900
db58b373
MM
19012016-11-14 Markus Metzger <markus.t.metzger@intel.com>
1902
1903 * nat/linux-btrace.c (perf_event_read): Allow data_head < size.
1904 * nat/linux-btrace.c (perf_event_read_all): Do not adjust size.
1905
8001f118
TT
19062016-11-12 Tom Tromey <tom@tromey.com>
1907
1908 * rust-exp.y (super_name): Use std::vector.
1909 (lex_number): Use std::string.
1910 (convert_params_to_types): Return std::vector.
1911 (convert_ast_to_type, convert_name): Update.
1912 * rust-lang.c (rust_get_disr_info): Use unique_xmalloc_ptr.
1913
d93f4d96
TT
19142016-11-12 Tom Tromey <tom@tromey.com>
1915
1916 * rust-lang.c (rust_get_disr_info): Use std::string in one more
1917 spot.
1918
7d15592e
YQ
19192016-11-11 Yao Qi <yao.qi@linaro.org>
1920
1921 * spu-tdep.c (spu_software_single_step): Don't call
1922 get_frame_register_bytes, call get_frame_register_unsigned
1923 instead.
1924
668e1674
YQ
19252016-11-11 Yao Qi <yao.qi@linaro.org>
1926
1927 * cp-valprint.c (cp_print_value): Remove local base_valaddr.
1928 * extension-priv.h (struct extension_language_ops)
1929 <apply_val_pretty_printer>: Remove the second parameter.
1930 Remove const from "struct value *". Callers updated.
1931 * extension.c (apply_ext_lang_val_pretty_printer): Update
1932 comments. Remove parameter valaddr. Remove const from
1933 "struct value *".
1934 * extension.h (apply_ext_lang_val_pretty_printer): Update
1935 declaration.
1936 * guile/guile-internal.h (gdbscm_apply_val_pretty_printer):
1937 Update declaration.
1938 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
1939 Remove parameter valaddr. Remove const from "struct value *".
1940 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer):
1941 Likewise.
1942 * python/python-internal.h (gdbpy_apply_val_pretty_printer):
1943 Update declaration.
1944
65408fa6
YQ
19452016-11-11 Yao Qi <yao.qi@linaro.org>
1946
1947 * c-lang.h (cp_print_value_fields): Update declaration.
1948 * cp-valprint.c (cp_print_value): Update declaration.
1949 (cp_print_value_fields): Remove parameter valaddr. Callers
1950 updated.
1951 (cp_print_value): Likewise.
1952
9b972014
TT
19532016-11-09 Tom Tromey <tom@tromey.com>
1954
1955 * varobj.h (varobj_get_display_hint): Change return type.
1956 * varobj.c (varobj_get_display_hint): Return unique_xmalloc_ptr.
1957 (varobj_value_get_print_value): Update.
1958 * python/python.c (gdbpy_before_prompt_hook, gdbpy_print_stack)
1959 (gdbpy_apply_type_printers): Update.
1960 * python/python-internal.h (unicode_to_target_string)
1961 (python_string_to_target_string, python_string_to_host_string)
1962 (gdbpy_obj_to_string, gdbpy_exception_to_string)
1963 (gdbpy_get_display_hint): Change return types.
1964 * python/py-varobj.c (py_varobj_iter_next): Update.
1965 * python/py-value.c (valpy_getitem, convert_value_from_python):
1966 Update.
1967 * python/py-utils.c (unicode_to_encoded_string)
1968 (unicode_to_target_string, python_string_to_target_string)
1969 (python_string_to_host_string, gdbpy_obj_to_string)
1970 (gdbpy_exception_to_string): Return unique_xmalloc_ptr.
1971 * python/py-unwind.c (pyuw_parse_register_id): Update.
1972 * python/py-type.c (typy_getitem): Update.
1973 * python/py-prettyprint.c (gdbpy_get_display_hint)
1974 (print_stack_unless_memory_error, print_children)
1975 (gdbpy_apply_val_pretty_printer): Update.
1976 * python/py-param.c (set_parameter_value): Update.
1977 (get_doc_string, call_doc_function): Return unique_xmalloc_ptr.
1978 (get_set_value, get_show_value, compute_enum_values, parmpy_init):
1979 Update.
1980 * python/py-infthread.c (thpy_set_name): Update.
1981 * python/py-function.c (fnpy_call, fnpy_init): Update.
1982 * python/py-framefilter.c (extract_sym): Change "name" to
1983 unique_xmalloc_ptr.
1984 (enumerate_args, enumerate_locals): Update.
1985 (py_print_frame): Use unique_xmalloc_ptr.
1986 * python/py-frame.c (frapy_read_var): Update. Remove cleanup.
1987 * python/py-cmd.c (cmdpy_function, cmdpy_completer, cmdpy_init):
1988 Update.
1989 * python/py-breakpoint.c (bppy_set_condition): Use
1990 unique_xmalloc_ptr.
1991 (bppy_init): Likewise. Remove cleanup.
1992 (local_setattro): Update.
1993 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_list_children)
1994 (varobj_update_one): Update.
1995
6c73cd95
PA
19962016-11-09 Pedro Alves <palves@redhat.com>
1997
1998 * ax-gdb.c (agent_eval_command_one): Use std::move instead of
1999 gdb::move.
2000 * ax.h (agent_expr_up): Use std::unique_ptr instead of
2001 gdb::unique_ptr.
2002 * breakpoint.c (parse_cond_to_aexpr): Use std::move instead of
2003 gdb::move.
2004 * tracepoint.c (collection_list::collect_symbol): Likewise.
2005 (collection_list::~collection_list): Delete.
2006 (encode_actions_1): Use std::move instead of gdb::move.
2007 (collection_list::add_aexpr): Use std::move instead of
2008 unique_ptr::release.
2009 * tracepoint.h (collection_list) <~collection_list>: Delete
2010 declaration.
2011 <m_aexprs>: Now a vector of agent_ptr_up.
2012
7a63494a
PA
20132016-11-09 Pedro Alves <palves@redhat.com>
2014
2015 * main.c (struct cmdarg): Add constructor.
2016 (captured_main_1): Use vector::emplace_back.
2017 * tracepoint.c (collection_list::add_memrange): Likewise.
2018
8c84bffb
AA
20192016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
2020
2021 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove
2022 failed-xmalloc handling.
2023
7bc2c8b8
AA
20242016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
2025
2026 * tui/tui-winsource.c (tui_alloc_source_buffer): Subtract
2027 highlight box's overhead when calculating the content height.
2028
f5396833
AA
20292016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
2030
2031 * tui/tui-disasm.c (tui_set_disassem_content): Fix calculation of
2032 the longest disassembly line's length.
2033
0bb65f1e
AA
20342016-11-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
2035
2036 * tui/tui-disasm.c (tui_set_disassem_content): Fix line buffer
2037 overrun due to unchecked strcpy.
2038
82b19a4d
TG
20392016-11-09 Tristan Gingold <gingold@adacore.com>
2040
2041 * darwin-nat.c (find_inferior_task_it): Fix indentation.
2042 (find_inferior_notify_it): Remove.
2043 (find_inferior_pid_it): New function.
2044 (darwin_find_inferior_by_notify): Remove.
2045 (darwin_find_inferior_by_pid): New function.
2046 (darwin_find_new_inferior): New function.
2047 (darwin_check_message_ndr): New function from
2048 darwin_decode_exception_message.
2049 (darwin_decode_exception_message): Call darwin_check_message_ndr.
2050 Handle SIGTRAP addressed to an unknown task (when a task spawned).
2051 (darwin_decode_notify_message): New function.
2052 (darwin_decode_message): Handle unknown task.
2053 (darwin_deallocate_threads): New function from darwin_mourn_inferior.
2054 (darwin_mourn_inferior): Use darwin_deallocate_threads and
2055 darwin_deallocate_exception_ports.
2056 (darwin_deallocate_exception_ports): New function from
2057 darwin_mourn_inferior.
2058 (darwin_setup_exceptions): New function from darwin_attach_pid.
2059 (darwin_setup_request_notification): Likewise.
2060 (darwin_attach_pid): Call darwin_setup_request_notification and
2061 darwin_setup_request_notification.
2062
30a7bb83
TT
20632016-11-08 Tom Tromey <tom@tromey.com>
2064
2065 * python/py-framefilter.c (py_print_frame): Use
2066 get_addr_from_python. Check for errors when getting line number.
2067
e8b24d9f
YQ
20682016-11-08 Yao Qi <yao.qi@linaro.org>
2069
2070 * ada-lang.h (ada_val_print): Remove second parameter. Remove
2071 const from "struct value *".
2072 * ada-valprint.c (print_field_values): Remove const from
2073 "struct value *".
2074 (val_print_packed_array_elements): Likewise.
2075 (print_variant_part): Likewise.
2076 (ada_val_print_string): Likewise.
2077 (ada_val_print_gnat_array): Likewise.
2078 (ada_val_print_ptr): Likewise.
2079 (ada_val_print_num): Likewise.
2080 (ada_val_print_enum): Likewise.
2081 (ada_val_print_flt): Likewise.
2082 (ada_val_print_union): Likewise.
2083 (ada_val_print_struct_union): Likewise.
2084 (ada_val_print_ref): Likewise.
2085 (ada_val_print_1): Remove second parameter. Remove const from
2086 "struct value *".
2087 (ada_val_print): Likewise.
2088 * c-lang.h (c_val_print): Likewise.
2089 * c-valprint.c (c_val_print_array): Remove const from
2090 "struct value *".
2091 (c_val_print_ptr): Likewise.
2092 (c_val_print_struct): Likewise.
2093 (c_val_print_union): Likewise.
2094 (c_val_print_int): Likewise.
2095 (c_val_print_memberptr): Likewise.
2096 (c_val_print): Remove second parameter. Remove const from
2097 "struct value *". All callers updated.
2098 * cp-valprint.c (cp_print_value): Remove const from
2099 "struct value *".
2100 (cp_print_value_fields): Likewise.
2101 (c_val_print_value): Likewise.
2102 * d-lang.h (d_val_print): Remove second parameter. Remove const
2103 from "struct value *".
2104 * d-valprint.c (dynamic_array_type): Likewise.
2105 (d_val_print): Likewise.
2106 * f-lang.h (f_val_print): Likewise.
2107 * f-valprint.c (f_val_print): Likewise.
2108 * go-lang.h (go_val_print): Likewise.
2109 * go-valprint.c (print_go_string): Likewise.
2110 (go_val_print): Likewise.
2111 * language.c (unk_lang_val_print): Likewise.
2112 * language.h (struct language_defn) <la_val_print>: Likewise.
2113 Update comments.
2114 (LA_VAL_PRINT): Remove.
2115 * m2-lang.h (m2_val_print): Remove const from
2116 "struct value *".
2117 * m2-valprint.c (m2_print_array_contents): Likewise.
2118 (m2_val_print): Likewise.
2119 * p-lang.h (pascal_val_print): Remove second parameter. Remove
2120 const from "struct value *".
2121 (pascal_object_print_value_fields): Likewise.
2122 * p-valprint.c (pascal_val_print): Likewise.
2123 (pascal_object_print_value_fields): Likewise.
2124 (pascal_object_print_value): Likewise.
2125 * rust-lang.c (rust_get_disr_info): Likewise.
2126 (val_print_struct): Likewise.
2127 (rust_val_print): Likewise.
2128 * valprint.c (generic_val_print_array): Likewise.
2129 (generic_val_print_ptr): Likewise.
2130 (generic_val_print_memberptr): Likewise.
2131 (generic_val_print_ref): Likewise.
2132 (generic_val_print_enum): Likewise.
2133 (generic_val_print_flags): Likewise.
2134 (generic_val_print_func): Likewise.
2135 (generic_val_print_bool): Likewise.
2136 (generic_val_print_int): Likewise.
2137 (generic_val_print_char): Likewise.
2138 (generic_val_print_float): Likewise.
2139 (generic_val_print_decfloat): Likewise.
2140 (generic_val_print_complex): Likewise.
2141 (generic_val_print): Likewise.
2142 (val_print): Likewise.
2143 (common_val_print): Likewise.
2144 (val_print_type_code_flags): Likewise.
2145 (val_print_scalar_formatted): Likewise.
2146 (val_print_array_elements): Likewise.
2147 * valprint.h (val_print_array_elements): Update declaration.
2148 (val_print_scalar_formatted): Likewise.
2149 (generic_val_print): Likewise.
2150 * value.h (val_print): Likewise.
2151
cc977dc7
YQ
21522016-11-08 Yao Qi <yao.qi@linaro.org>
2153
2154 * mt-tdep.c (mt_registers_info): Call
2155 get_frame_register_value instead of
2156 deprecated_frame_register_read.
2157 * sh64-tdep.c (sh64_do_register): Likewise.
2158
3cde5c42
PA
21592016-11-08 Pedro Alves <palves@redhat.com>
2160
2161 * ax.h (agent_expr_p): Delete.
2162 (DEF_VEC_P (agent_expr_p)): Delete.
2163 * breakpoint.c (build_target_condition_list)
2164 (build_target_command_list): Adjust to use of std::vector.
2165 (bp_location_dtor): Remove now unnecessary VEC_free calls.
2166 * breakpoint.h: Include <vector>.
2167 (struct bp_target_info) <conditions, tcommands>: Now
2168 std::vector's.
2169 * remote.c (remote_add_target_side_condition): bp_tgt->conditions
2170 is now a std::vector; adjust.
2171 (remote_add_target_side_commands, remote_insert_breakpoint):
2172 bp_tgt->tcommands is now a std::vector; adjust.
2173
833177a4
PA
21742016-11-08 Pedro Alves <palves@redhat.com>
2175
2176 * ax-gdb.c (is_nontrivial_conversion): Use agent_expr_up.
2177 (gen_trace_for_var, gen_trace_for_expr, gen_eval_for_expr)
2178 (gen_trace_for_return_address, gen_printf): Use and return an
2179 agent_expr_up. Don't use make_cleanup_free_agent_expr.
2180 (agent_eval_command_one, maint_agent_printf_command): Use
2181 agent_expr_up. Don't use make_cleanup_free_agent_expr.
2182 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
2183 (gen_trace_for_return_address, gen_eval_for_expr, gen_printf): Use
2184 agent_expr_up.
2185 * ax-general.c (new_agent_expr): Rename to ...
2186 (agent_expr::agent_expr): ... this, and now a constructor.
2187 (free_agent_expr): Rename to ...
2188 (agent_expr::~agent_exp): ... this, and now a destructor.
2189 (do_free_agent_expr_cleanup, make_cleanup_free_agent_expr):
2190 Delete.
2191 * ax.h (struct agent_expr): Add ctor/dtor.
2192 (agent_expr_up): New typedef.
2193 (new_agent_expr, free_agent_expr, make_cleanup_free_agent_expr):
2194 Delete declarations.
2195 * breakpoint.c (parse_cond_to_aexpr): Use and return an
2196 agent_expr_up. Don't use make_cleanup_free_agent_expr.
2197 (build_target_condition_list): Adjust to use agent_expr_up.
2198 (parse_cmd_to_aexpr): Use and return an agent_expr_up. Don't use
2199 make_cleanup_free_agent_expr.
2200 (build_target_command_list): Adjust to use agent_expr_up.
2201 (force_breakpoint_reinsertion): Adjust to use agent_expr_up.
2202 (bp_location_dtor): Remove unnecessary free_agent_expr and xfree
2203 calls.
2204 * breakpoint.h (struct bp_target_info) <cond_bytecode,
2205 cmd_bytecode>: Now agent_expr_up's.
2206 * remote.c (remote_download_tracepoint): Adjust to use
2207 agent_expr_up and remove use of make_cleanup_free_agent_expr.
2208 * tracepoint.c (validate_actionline, collect_symbol): Adjust to
2209 use agent_expr_up and remove uses of make_cleanup_free_agent_expr.
2210 (collection_list::~collection_list): Call delete instead of
2211 free_agent_expr.
2212 (encode_actions_1): Adjust to use agent_expr_up and remove uses of
2213 make_cleanup_free_agent_expr.
2214 (add_aexpr): Change parameter type to agent_expr_up; Return a raw
2215 agent_expr pointer.
2216
2f408ecb
PA
22172016-11-08 Pedro Alves <palves@redhat.com>
2218
2219 * ada-lang.c (ada_name_for_lookup, type_as_string): Use and return
2220 std::string.
2221 (type_as_string_and_cleanup): Delete.
2222 (ada_lookup_struct_elt_type): Use type_as_string.
2223 * ada-lang.h (ada_name_for_lookup): Now returns std::string.
2224 * ada-varobj.c (ada_varobj_scalar_image): Return a std::string.
2225 (ada_varobj_describe_child): Make 'child_name' and
2226 'child_path_expr' parameters std::string pointers.
2227 (ada_varobj_describe_struct_child, ada_varobj_describe_ptr_child):
2228 Likewise, and use string_printf.
2229 (ada_varobj_describe_simple_array_child)
2230 (ada_varobj_describe_child): Likewise.
2231 (ada_varobj_get_name_of_child, ada_varobj_get_path_expr_of_child)
2232 (ada_varobj_get_value_image)
2233 (ada_varobj_get_value_of_array_variable)
2234 (ada_varobj_get_value_of_variable, ada_name_of_variable)
2235 (ada_name_of_child, ada_path_expr_of_child)
2236 (ada_value_of_variable): Now returns std::string. Use
2237 string_printf.
2238 (ada_value_of_child): Adjust.
2239 * break-catch-throw.c (check_status_exception_catchpoint): Adjust
2240 to use std::string.
2241 * breakpoint.c (watch_command_1): Adjust to use std::string.
2242 * c-lang.c (c_get_string): Adjust to use std::string.
2243 * c-typeprint.c (print_name_maybe_canonical): Use std::string.
2244 * c-varobj.c (varobj_is_anonymous_child): Use ==/!= std::string
2245 operators.
2246 (c_name_of_variable): Now returns a std::string.
2247 (c_describe_child): The 'cname' and 'cfull_expression' output
2248 parameters are now std::string pointers. Adjust.
2249 (c_name_of_child, c_path_expr_of_child, c_value_of_variable)
2250 (cplus_number_of_children): Adjust to use std::string and
2251 string_printf.
2252 (cplus_name_of_variable): Now returns a std::string.
2253 (cplus_describe_child): The 'cname' and 'cfull_expression' output
2254 parameters are now std::string pointers. Adjust.
2255 (cplus_name_of_child, cplus_path_expr_of_child)
2256 (cplus_value_of_variable): Now returns a std::string.
2257 * cp-abi.c (cplus_typename_from_type_info): Return std::string.
2258 * cp-abi.h (cplus_typename_from_type_info): Return std::string.
2259 (struct cp_abi_ops) <get_typename_from_type_info>: Return
2260 std::string.
2261 * cp-support.c (inspect_type): Use std::string.
2262 (cp_canonicalize_string_full, cp_canonicalize_string_no_typedefs)
2263 (cp_canonicalize_string): Return std::string and adjust.
2264 * cp-support.h (cp_canonicalize_string)
2265 (cp_canonicalize_string_no_typedefs, cp_canonicalize_string_full):
2266 Return std::string.
2267 * dbxread.c (read_dbx_symtab): Use std::string.
2268 * dwarf2read.c (dwarf2_canonicalize_name): Adjust to use std::string.
2269 * gdbcmd.h (lookup_struct_elt_type): Adjust to use std::string.
2270 * gnu-v3-abi.c (gnuv3_get_typeid): Use std::string.
2271 (gnuv3_get_typename_from_type_info): Return a std::string and
2272 adjust.
2273 (gnuv3_get_type_from_type_info): Adjust to use std::string.
2274 * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
2275 std::string.
2276 * infcmd.c (print_return_value_1): Adjust to use std::string.
2277 * linespec.c (find_linespec_symbols): Adjust to
2278 demangle_for_lookup API change. Use std::string.
2279 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_set_format)
2280 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
2281 (mi_cmd_var_info_expression, mi_cmd_var_evaluate_expression)
2282 (mi_cmd_var_assign, varobj_update_one): Adjust to use std::string.
2283 * minsyms.c (lookup_minimal_symbol): Use std::string.
2284 * python/py-varobj.c (py_varobj_iter_next): Use new instead of
2285 XNEW. vitem->name is a std::string now, adjust.
2286 * rust-exp.y (convert_ast_to_type, convert_name): Adjust to use
2287 std::string.
2288 * stabsread.c (define_symbol): Adjust to use std::string.
2289 * symtab.c (demangle_for_lookup): Now returns 'const char *'. Add
2290 a demangle_result_storage parameter. Use it for storage.
2291 (lookup_symbol_in_language)
2292 (lookup_symbol_in_objfile_from_linkage_name): Adjust to new
2293 demangle_for_lookup API.
2294 * symtab.h (struct demangle_result_storage): New type.
2295 (demangle_for_lookup): Now returns 'const char *'. Add a
2296 demangle_result_storage parameter.
2297 * typeprint.c (type_to_string): Return std::string and use
2298 ui_file_as_string.
2299 * value.h (type_to_string): Change return type to std::string.
2300 * varobj-iter.h (struct varobj_item) <name>: Now a std::string.
2301 (varobj_iter_delete): Use delete instead of xfree.
2302 * varobj.c (create_child): Return std::string instead of char * in
2303 output parameter.
2304 (name_of_variable, name_of_child, my_value_of_variable): Return
2305 std::string instead of char *.
2306 (varobj_create, varobj_get_handle): Constify 'objname' parameter.
2307 Adjust to std::string fields.
2308 (varobj_get_objname): Return a const char * instead of a char *.
2309 (varobj_get_expression): Return a std::string.
2310 (varobj_list_children): Adjust to use std::string.
2311 (varobj_get_type): Return a std::string.
2312 (varobj_get_path_expr): Return a const char * instead of a char *.
2313 Adjust to std::string fields.
2314 (varobj_get_formatted_value, varobj_get_value): Return a
2315 std::string.
2316 (varobj_set_value): Change type of 'expression' parameter to
2317 std::string. Use std::string.
2318 (install_new_value): Use std::string.
2319 (delete_variable_1): Adjust to use std::string.
2320 (create_child): Change the 'name' parameter to a std::string
2321 reference. Swap it into the new item's name.
2322 (create_child_with_value): Swap item's name into the new child's
2323 name. Use string_printf.
2324 (new_variable): Use new instead of XNEW.
2325 (free_variable): Don't xfree fields that are now std::string.
2326 (name_of_variable, name_of_child): Now returns std::string.
2327 (value_of_root): Adjust to use std::string.
2328 (my_value_of_variable, varobj_value_get_print_value): Return
2329 and use std::string.
2330 (varobj_value_get_print_value): Adjust to use ui_file_as_string
2331 and std::string.
2332 * varobj.h (struct varobj) <name, path_expr, obj_name,
2333 print_value>: Now std::string's.
2334 <name_of_variable, name_of_child, path_expr_of_child,
2335 value_of_variable>: Return std::string.
2336 (varobj_create, varobj_get_handle): Constify 'objname' parameter.
2337 (varobj_get_objname): Return a const char * instead of a char *.
2338 (varobj_get_expression, varobj_get_type): Return a std::string.
2339 (varobj_get_path_expr): Return a const char * instead of a char *.
2340 (varobj_get_formatted_value, varobj_get_value): Return a
2341 std::string.
2342 (varobj_set_value): Constify 'expression' parameter.
2343 (varobj_value_get_print_value): Return a std::string.
2344
d2af8993
PA
23452016-11-08 Pedro Alves <palves@redhat.com>
2346
2347 * language.c (add_language): Use ui_file_as_string and adjust to
2348 use std::string.
2349
5698084a
PA
23502016-11-08 Pedro Alves <palves@redhat.com>
2351 Tom Tromey <tom@tromey.com>
2352
2353 * rust-lang.c (struct disr_info) <name>: Now a std::string.
2354 (rust_get_disr_info): Use ui_file_as_string and adjust to use
2355 std::string.
2356 (rust_val_print): Adjust to use std::string.
2357
af1fe7b3
PA
23582016-11-08 Pedro Alves <palves@redhat.com>
2359
2360 * infrun.c (print_target_wait_results): Use ui_file_as_string and
2361 std::string.
2362
3b4de39c
PA
23632016-11-08 Pedro Alves <palves@redhat.com>
2364
2365 * ada-lang.c (type_as_string): Use ui_file_as_string and return
2366 std::string.
2367 (type_as_string_and_cleanup): Delete.
2368 (ada_lookup_struct_elt_type): Use type_as_string.
2369
6f030249
PA
23702016-11-08 Pedro Alves <palves@redhat.com>
2371
2372 * gdbarch.sh (verify_gdbarch): Use ui_file_as_string and
2373 std::string.
2374 * gdbarch.c: Regenerate.
2375
66bbce5b
PA
23762016-11-08 Pedro Alves <palves@redhat.com>
2377
2378 * c-exp.y (OPERATOR NEW): Adjust to use ui_file_as_string and
2379 std::string.
2380
aaee65ae
PA
23812016-11-08 Pedro Alves <palves@redhat.com>
2382
2383 * c-lang.h (c_compute_program): Now returns std::string.
2384 * compile/compile-internal.h (class compile_file_names): New
2385 class.
2386 * compile/compile-object-load.c (compile_object_load): Replace
2387 object_file and source_file parameters with a compile_file_names
2388 parameter. Adjust.
2389 * compile-object-load.h: Include "compile-internal.h".
2390 (compile_object_load): Replace object_file and source_file
2391 parameters with a compile_file_names parameter.
2392 * compile/compile-c-support.c (c_compute_program): Now returns a
2393 std::string. Use ui_file_as_string.
2394 * compile/compile.c (get_new_file_names): Remove parameters and
2395 return a compile_file_names instead.
2396 (compile_to_object): Now returns a compile_file_names. Use
2397 ui_file_as_string.
2398 (eval_compile_command): Use compile_file_names.
2399 * language.h (struct language_defn) <la_compute_program>: Now
2400 returns std::string.
2401
3d8b0d94
PA
24022016-11-08 Pedro Alves <palves@redhat.com>
2403
2404 * cli/cli-setshow.c (do_show_command): Adjust to use
2405 ui_file_as_string and std::string.
2406
b3ced9ba
PA
24072016-11-08 Pedro Alves <palves@redhat.com>
2408
2409 * remote.c (escape_buffer): Use ui_file_as_string and return
2410 std::string.
2411 (putpkt_binary, read_frame): Adjust to use std::string.
2412
c92aed16
PA
24132016-11-08 Pedro Alves <palves@redhat.com>
2414
2415 * python/py-arch.c (archpy_disassemble): Use ui_file_as_string and
2416 std::string.
2417 * python/py-breakpoint.c (bppy_get_commands): Use
2418 ui_file_as_string and std::string.
2419 * python/py-frame.c (frapy_str): Likewise.
2420 * python/py-type.c (typy_str): Likewise.
2421 * python/py-unwind.c (unwind_infopy_str): Likewise.
2422 * python/py-value.c (valpy_str): Likewise.
2423
02030646
PA
24242016-11-08 Pedro Alves <palves@redhat.com>
2425
2426 * printcmd.c (eval_command): Use ui_file_as_string and
2427 std::string.
2428
7b01d34b
PA
24292016-11-08 Pedro Alves <palves@redhat.com>
2430
2431 * top.c (quit_confirm): Use ui_file_as_string and std::string.
2432
db1ec11f
PA
24332016-11-08 Pedro Alves <palves@redhat.com>
2434
2435 * gdbcmd.h (execute_command_to_string): Now returns std::string.
2436 (lookup_struct_elt_type): Adjust to use std::string.
2437 * top.c (execute_command_to_string): Use ui_file_as_string and
2438 return std::string.
2439 * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
2440 std::string.
2441 * python/python.c (execute_gdb_command): Adjust to use
2442 std::string.
2443
3ab692db
PA
24442016-11-08 Pedro Alves <palves@redhat.com>
2445
2446 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
2447 ui_file_as_string and adjust to use std::string.
2448 * guile/scm-disasm.c (gdbscm_arch_disassemble): Likewise.
2449 * guile/scm-frame.c (frscm_print_frame_smob): Likewise.
2450 * guile/scm-type.c (tyscm_type_name): Use ui_file_as_string and
2451 adjust to use std::string. Throw exception directly instead of
2452 returning it in EXCP output parameter.
2453 (tyscm_print_type_smob, gdbscm_type_print_name): Adjust to
2454 tyscm_type_name interface change.
2455 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
2456 Use ui_file_as_string and std::string.
2457
09b0e4b0
PA
24582016-11-08 Pedro Alves <palves@redhat.com>
2459
2460 * arm-tdep.c (_initialize_arm_tdep): Use ui_file_as_string and
2461 std::string.
2462
d16c5475
PA
24632016-11-08 Pedro Alves <palves@redhat.com>
2464
2465 * utils.c (error_stream): Use ui_file_as_string and std::string.
2466
56dbf317
PA
24672016-11-08 Pedro Alves <palves@redhat.com>
2468
2469 * ui-out.c (ui_out_field_stream): Use ui_file_as_string.
2470
77e1c742
PA
24712016-11-08 Pedro Alves <palves@redhat.com>
2472
2473 * ada-valprint.c (ada_print_floating): Use ui_file_as_string and
2474 std::string.
2475
a0f86e73
PA
24762016-11-08 Pedro Alves <palves@redhat.com>
2477
2478 * xtensa-tdep.c (xtensa_verify_config): Use ui_file_as_string and
2479 std::string.
2480
322a8516
PA
24812016-11-08 Pedro Alves <palves@redhat.com>
2482
2483 * dwarf2read.c (dwarf2_compute_name): Use ui_file_as_string and
2484 std::string.
2485
1f45808e
PA
24862016-11-08 Pedro Alves <palves@redhat.com>
2487
2488 * mi/mi-main.c (print_variable_or_computed): Constify 'expression'
2489 parameter.
2490 (mi_cmd_trace_frame_collected): Call encode_actions instead of
2491 encode_actions_and_make_cleanup. Adjust to use std::vector.
2492 * tracepoint.c (memrange_cmp): Delete.
2493 (memrange_comp): New.
2494 (memrange_sortmerge): Take a memrange vector as parameter instead
2495 of a collection_list. Use std::sort instead of qsort.
2496 (add_register): Now a method of collection_list. Adjust to m_
2497 prefix of data fields.
2498 (add_memrange): Now a method of collection_list. Adjust to m_
2499 prefix of data fields. Adjust to use std::vector.
2500 (collect_symbol): Now a method of collection_list. Adjust to m_
2501 prefix of data fields.
2502 (do_collect_symbol): Adjust. Call add_wholly_collected instead of
2503 accessing the vector directly.
2504 (collection_list::add_wholly_collected): New.
2505 (add_local_symbols): Now a method of collection_list.
2506 (add_static_trace_data): Now a method of collection_list. Adjust
2507 to use bool.
2508 (clear_collection_list, do_clear_collection_list): Delete.
2509 (init_collection_list): Delete.
2510 (collection_list::collection_list): New.
2511 (collection_list::~collection_list): New.
2512 (stringify_collection_list): Rename to ...
2513 (collection_list::stringify): ... this and adjust to being a
2514 method of collection_list. Adjust to use of std::vector.
2515 (append_exp): Now a method of collection_list. Use
2516 ui_file_as_string. Adjust to std::vector.
2517 (collection_list::finish): New.
2518 (encode_actions_1): Adjust.
2519 (encode_actions_and_make_cleanup): Rename to ...
2520 (encode_actions)... this. No longer returns a cleanup. No longer
2521 call init_collection_list nor install do_clear_collection_list
2522 cleanups. Call collection_list::finish instead of
2523 memrange_sortmerge directly.
2524 (encode_actions_rsp): Adjust to call encode_actions instead of
2525 encode_actions_and_make_cleanup. Adjust to method renames.
2526 (add_aexpr): Now a method of collection_list.
2527 * tracepoint.h: Include <vector> and <string>.
2528 (struct memrange): Add constructors.
2529 (struct collection_list): Now a class.
2530 (class collection_list) <collection_list, ~collection_list,
2531 add_wholly_collected, append_exp, add_aexpr, add_register,
2532 add_memrange, collect_symbol, add_local_symbols,
2533 add_static_trace_data, finish, stringify, wholly_collected, and
2534 computed>: New methods.
2535 <regs_mask>: Rename to ...
2536 <m_regs_mask>: ... this.
2537 <listsize, next_memrange, list>: Delete fields.
2538 <m_memranges>: New field.
2539 <aexpr_listsize, next_aexpr_elt, aexpr_list>: Delete fields.
2540 <m_aexprs>: New field.
2541 <strace_data>: Rename to ...
2542 <m_strace_data>: ... this. Now a bool.
2543 <wholly_collected>: Rename to ...
2544 <m_wholly_collected>: ... this. Now a std::vector<std::string>.
2545 <computed>: Rename to ...
2546 <m_computed>: ... this. Now a std::vector<std::string>.
2547 (encode_actions_and_make_cleanup): Delete declaration.
2548 (encode_actions): New declaration.
2549
8de00631
PA
25502016-11-08 Pedro Alves <palves@redhat.com>
2551
2552 * ui-file.c (do_ui_file_as_string, ui_file_as_string): New
2553 functions.
2554 * ui-file.h: Include <string>.
2555 (ui_file_as_string): New declaration.
2556
4d01a485
PA
25572016-11-08 Pedro Alves <palves@redhat.com>
2558
2559 * ada-lang.c (ada_read_renaming_var_value): Use expression_up.
2560 (struct ada_catchpoint_location) <excep_cond_expr>: Now an
2561 expression_up.
2562 (ada_catchpoint_location_dtor): Reset excep_cond_expr instead of
2563 using xfree.
2564 (create_excep_cond_exprs): Use expression_up and gdb::move.
2565 (allocate_location_exception): Use new instead of XNEW.
2566 (should_stop_exception): Likewise. Adjust to use expression_up.
2567 (create_ada_exception_catchpoint): Use new instead of XNEW.
2568 * ax-gdb.c (agent_eval_command_one): Use expression_up instead of
2569 cleanups.
2570 (maint_agent_printf_command): Use expression_up.
2571 * break-catch-sig.c (create_signal_catchpoint): Use new instead of
2572 XNEW.
2573 * break-catch-syscall.c (create_syscall_event_catchpoint):
2574 Likewise.
2575 * break-catch-throw.c (handle_gnu_v3_exceptions): Use new instead
2576 of XCNEW. Use gdb::unique_ptr instead of cleanups.
2577 * breakpoint.c (set_breakpoint_condition, update_watchpoint)
2578 (parse_cmd_to_aexpr, watchpoint_check)
2579 (bpstat_check_breakpoint_conditions, watchpoint_locations_match):
2580 Adjust to use expression_up.
2581 (init_bp_location): Adjust.
2582 (free_bp_location): Use delete instead of xfree.
2583 (set_raw_breakpoint_without_location, set_raw_breakpoint)
2584 (add_solib_catchpoint, create_fork_vfork_event_catchpoint)
2585 (new_single_step_breakpoint, create_breakpoint_sal): Use new
2586 instead of XNEW.
2587 (find_condition_and_thread): Adjust to use expression_up.
2588 (create_breakpoint): Use new instead of XNEW.
2589 (dtor_watchpoint): Don't xfree expression pointers, they're
2590 unique_ptr's now.
2591 (insert_watchpoint, remove_watchpoint): Adjust.
2592 (watch_command_1): Use expression_up. Use new instead of XCNEW.
2593 (catch_exec_command_1): Use new instead of XNEW.
2594 (bp_location_dtor): Don't xfree expression pointers, they're
2595 unique_ptr's now.
2596 (base_breakpoint_allocate_location)
2597 (strace_marker_create_breakpoints_sal): Use new instead of XNEW.
2598 (delete_breakpoint): Use delete instead of xfree.
2599 * breakpoint.h (struct bp_location) <cond>: Now an
2600 unique_ptr<expression> instead of a raw pointer.
2601 (struct watchpoint) <exp, cond_exp>: Likewise.
2602 * cli/cli-script.c (execute_control_command): Use expression_up
2603 instead of cleanups.
2604 * dtrace-probe.c (dtrace_process_dof_probe): Use expression_up.
2605 * eval.c (parse_and_eval_address, parse_and_eval_long)
2606 (parse_and_eval, parse_to_comma_and_eval, parse_and_eval_type):
2607 Use expression_up instead of cleanups.
2608 * expression.h (expression_up): New typedef.
2609 (parse_expression, parse_expression_with_language, parse_exp_1):
2610 Change return type to expression_up.
2611 * mi/mi-main.c (mi_cmd_data_evaluate_expression)
2612 (print_variable_or_computed): Use expression_up.
2613 * objc-lang.c (print_object_command): Use expression_up instead of
2614 cleanups.
2615 * parse.c (parse_exp_1, parse_exp_in_context)
2616 (parse_exp_in_context_1, parse_expression)
2617 (parse_expression_with_language): Return an expression_up instead
2618 of a raw pointer.
2619 (parse_expression_for_completion): Use expression_up.
2620 * printcmd.c (struct display) <exp>: Now an expression_up instead
2621 of a raw pointer.
2622 (print_command_1, output_command_const, set_command, x_command):
2623 Use expression_up instead of cleanups.
2624 (display_command): Likewise. Use new instead of XNEW.
2625 (free_display): Use delete instead of xfree.
2626 (do_one_display): Adjust to use expression_up.
2627 * remote.c (remote_download_tracepoint): Likewise.
2628 * stack.c (return_command): Likewise.
2629 * tracepoint.c (validate_actionline, encode_actions_1): Use
2630 expression_up instead of cleanups.
2631 * typeprint.c (whatis_exp, maintenance_print_type): Likewise.
2632 * value.c (init_if_undefined_command): Likewise.
2633 * varobj.c (struct varobj_root) <exp>: Now an expression_up
2634 instead of a raw pointer.
2635 (varobj_create): Adjust.
2636 (varobj_set_value): Use an expression_up instead of cleanups.
2637 (new_root_variable): Use new instead of XNEW.
2638 (free_variable): Use delete instead of xfree.
2639 (value_of_root_1): Use std::swap.
2640
b0646401
PA
26412016-11-08 Pedro Alves <palves@redhat.com>
2642
2643 * cli/cli-script.c (execute_control_command): Use std::string
2644 instead of cleanups.
2645 (locate_arg): Constify return type.
2646 (insert_args): Constify paremeter. Simplify using std::string.
2647 Return a std::string.
2648
896b6bda
PA
26492016-11-08 Pedro Alves <palves@redhat.com>
2650
2651 * breakpoint.c (struct commands_info) <arg>: Constify.
2652 (commands_command_1): Constify 'arg' parameter. Use std::string
2653 and string_printf.
2654 (commands_from_control_command): Constify 'arg' parameter.
2655 (map_breakpoint_numbers): Constify 'args' parameter.
2656 * breakpoint.h (commands_from_control_command): Constify 'arg'
2657 parameter.
2658
4f8ad951
PA
26592016-11-08 Pedro Alves <palves@redhat.com>
2660
2661 * cli/cli-script.c (execute_control_command): Assume insert_args
2662 never returns NULL.
2663 (insert_args): Assume xmalloc never returns NULL.
2664
d4081a38
PA
26652016-11-08 Pedro Alves <palves@redhat.com>
2666
2667 * Makefile.in (COMMON_OBS): Add utils-selftests.o.
2668 * common/common-utils.c (string_printf): New function.
2669 * common/common-utils.h: Include <string>.
2670 (string_printf): Declare.
2671 * utils-selftests.c: New file.
2672
93f9a11f
YQ
26732016-11-08 Yao Qi <yao.qi@linaro.org>
2674
2675 * aarch64-tdep.c (aarch64_software_single_step): Return
2676 VEC (CORE_ADDR) *. Return NULL instead of 0. Don't call
2677 insert_single_step_breakpoint.
2678 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Likewise.
2679 (alpha_software_single_step): Likewise.
2680 * alpha-tdep.h (alpha_software_single_step): Update declaration.
2681 * arm-linux-tdep.c (arm_linux_software_single_step): Return
2682 VEC (CORE_ADDR) *. Return NULL instead of 0.
2683 * arm-tdep.c (arm_software_single_step): Return NULL instead of 0.
2684 * arm-tdep.h (arm_software_single_step): Update declaration.
2685 * breakpoint.c (insert_single_step_breakpoints): New function.
2686 * breakpoint.h (insert_single_step_breakpoints): Declare.
2687 * cris-tdep.c (cris_software_single_step): Return
2688 VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint.
2689 * gdbarch.sh (software_single_step): Change it to return
2690 VEC (CORE_ADDR) *.
2691 * gdbarch.c, gdbarch.h: Regenerated.
2692 * infrun.c (maybe_software_singlestep): Adjust.
2693 * mips-tdep.c (mips_deal_with_atomic_sequence): Return
2694 VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint.
2695 (micromips_deal_with_atomic_sequence): Likewise.
2696 (deal_with_atomic_sequence): Likewise.
2697 (mips_software_single_step): Likewise.
2698 * mips-tdep.h (mips_software_single_step): Update declaration.
2699 * moxie-tdep.c (moxie_software_single_step): Likewise.
2700 * nios2-tdep.c (nios2_software_single_step): Likewise.
2701 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Update
2702 declaration.
2703 * record-full.c (record_full_resume): Adjust.
2704 (record_full_wait_1): Likewise.
2705 * rs6000-aix-tdep.c (rs6000_software_single_step): Return
2706 VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint.
2707 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Return
2708 VEC (CORE_ADDR) *. Don't call insert_single_step_breakpoint.
2709 * s390-linux-tdep.c (s390_software_single_step): Likewise.
2710 * sparc-tdep.c (sparc_software_single_step): Likewise.
2711 * spu-tdep.c (spu_software_single_step): Likewise.
2712 * tic6x-tdep.c (tic6x_software_single_step): Likewise.
2713
0bc5d801
YQ
27142016-11-08 Yao Qi <yao.qi@linaro.org>
2715
2716 * arm-linux-tdep.c (arm_linux_software_single_step): Write
2717 adjusted address back to vector. Call insert_single_step_breakpoint
2718 in a new loop.
2719 * arm-tdep.c (arm_software_single_step): Likewise.
2720
771da62d
YQ
27212016-11-08 Yao Qi <yao.qi@linaro.org>
2722
2723 * arm-linux-tdep.c (arm_linux_software_single_step): Don't
2724 call arm_insert_single_step_breakpoint, call
2725 insert_single_step_breakpoint instead.
2726 * arm-tdep.c (arm_insert_single_step_breakpoint): Remove.
2727 (arm_software_single_step): Don't call
2728 arm_insert_single_step_breakpoint, call
2729 insert_single_step_breakpoint instead.
2730 * arm-tdep.h (arm_insert_single_step_breakpoint): Remove
2731 declaration.
2732
53c3572a
CD
27332016-11-08 Cordian A. Daniluk <th3c0r1uk@gmail.com>
2734
2735 PR breakpoints/20739
2736 * breakpoint.c (check_fast_tracepoint_sals): Don't print duplicate
2737 0x prefix.
2738
20955dbf
YQ
27392016-11-08 Yao Qi <yao.qi@linaro.org>
2740
2741 * rust-lang.c (val_print_struct): Fix indentation.
2742
9dc193c3
LF
27432016-11-08 Lionel Flandrin <lionel@svkt.org>
2744
2745 * remote.c (process_g_packet): Detect truncated registers in 'g'
2746 packets and raise an error.
2747
5996220c
DE
27482016-11-07 Doug Evans <dje@google.com>
2749
2750 * guile/scm-value.c (gdbscm_value_field): Fix call to value_struct_elt.
2751 * python/py-value.c (valpy_getitem): Ditto.
2752
ad9eb1fd
DE
27532016-11-07 Doug Evans <dje@google.com>
2754
2755 * i386-tdep.c (i386_gdbarch_init): Add comments.
2756
bc71081e
DE
27572016-11-07 Doug Evans <dje@google.com>
2758
2759 * python/py-unwind.c (unwind_infopy_str): Fix use of VEC_iterate.
2760
a5716032
DE
27612016-11-07 Doug Evans <dje@google.com>
2762
2763 * configure.tgt (x86_64-*-elf*): Remove i386bsd-tdep.o.
2764
26c4b26f
SM
27652016-11-04 Simon Marchi <simon.marchi@polymtl.ca>
2766
2767 * maint.c (scoped_command_stats::scoped_command_stats): Fix typo.
2768 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Likewise.
2769 * ppcobsd-tdep.c (_initialize_ppcobsd_tdep): Likewise.
2770 * ui-out.c (ui_out_new): Likewise.
2771 * utils.c (init_page_info): Likewise.
2772 (reset_prompt_for_continue_wait_time): Likewise.
2773 * windows-nat.c (windows_init_thread_list): Likewise.
2774 * xtensa-tdep.c (call0_analyze_prologue): Likewise.
2775
cdf5a07c
MG
27762016-10-29 Manish Goregaokar <manish@mozilla.com>
2777
2806dc7e 2778 * rust-exp.y: Parse `sizeof(exp)` as `UNOP_SIZEOF`.
cdf5a07c 2779
b96645f1
MG
27802016-10-28 Manish Goregaokar <manish@mozilla.com>
2781
2806dc7e
PA
2782 * rust-lang.c (rust_union_is_untagged): Add function to check if a
2783 union is an untagged union.
2784 (rust_val_print): Handle printing of untagged union values.
2785 (rust_print_type): Handle printing of untagged union types.
2786 (rust_evaluate_subexp): Handle evaluating field access on untagged
2787 unions.
51a789c3
MG
2788
27892016-10-27 Manish Goregaokar <manish@mozilla.com>
2790
2806dc7e
PA
2791 * rust-lang.c (rust_get_disr_info): Treat univariant enums without
2792 discriminants as encoded enums with a real field.
2793 * rust-lang.c (rust_evaluate_subexp): Handle field access on
2794 encoded struct-like enums.
51a789c3 2795
722bcb33
YQ
27962016-11-03 Yao Qi <yao.qi@linaro.org>
2797
2798 * Makefile.in (.y.c): Replace YY_NULL with YY_NULLPTR.
2799
04180708
YQ
28002016-11-03 Yao Qi <yao.qi@linaro.org>
2801 Pedro Alves <palves@redhat.com>
2802
2803 * aarch64-tdep.c (aarch64_default_breakpoint): Change it to
2804 constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2805 (aarch64_gdbarch_init): Don't use
2806 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2807 * alpha-tdep.c (break_insn): Rename to alpha_break_insn.
2808 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2809 (alpha_gdbarch_init): Don't use
2810 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2811 * arc-tdep.c (arc_gdbarch_init): Don't use
2812 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2813 * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): Remove.
2814 (struct bp_manipulation): New.
2815 (SET_GDBARCH_BREAKPOINT_MANIPULATION): Remove.
2816 (struct bp_manipulation_endian): New.
2817 (BP_MANIPULATION): New.
2818 (BP_MANIPULATION_ENDIAN): New.
2819 * arm-tdep.c (arm_gdbarch_init): Don't use
2820 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2821 * avr-tdep.c (avr_break_insn): Change it constexpr.
2822 (avr_gdbarch_init): Don't use
2823 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2824 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
2825 * cris-tdep.c (cris_gdbarch_init): Likewise.
2826 * frv-tdep.c (breakpoint): Rename it to frv_break_insn, and
2827 change its type to constexpr. Don't use
2828 GDBARCH_BREAKPOINT_MANIPULATION.
2829 (frv_gdbarch_init): Don't use
2830 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2831 * ft32-tdep.c (breakpoint): Rename it to ft32_break_insn and
2832 change its type to constexpr. Don't use
2833 GDBARCH_BREAKPOINT_MANIPULATION.
2834 (ft32_gdbarch_init): Don't use
2835 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2836 * h8300-tdep.c (breakpoint): Rename it to h8300_break_insn.
2837 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2838 (h8300_gdbarch_init): Don't use
2839 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2840 * hppa-tdep.c (breakpoint): Rename it to h8300_break_insn.
2841 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2842 (hppa_gdbarch_init): Don't use
2843 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2844 * i386-tdep.c (break_insn): Rename it to i386_break_insn.
2845 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2846 (i386_gdbarch_init): Don't use
2847 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2848 * iq2000-tdep.c (iq2000_gdbarch_init): Don't use
2849 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2850 * lm32-tdep.c (breakpoint): Rename it to lm32_break_insn and
2851 change its type to constexpr. Don't use
2852 GDBARCH_BREAKPOINT_MANIPULATION.
2853 (lm32_gdbarch_init): Don't use
2854 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2855 * m32c-tdep.c (break_insn): Rename it to m32c_break_insn and change
2856 its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2857 (m32c_gdbarch_init): Don't use
2858 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2859 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
2860 * m68hc11-tdep.c (breakpoint): Rename it to m68hc11_break_insn and
2861 change its type to constexpr.
2862 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2863 (m68hc11_gdbarch_init): Don't use SET_GDBARCH_BREAKPOINT_MANIPULATION.
2864 * m68k-tdep.c (break_insn): Rename it to m68k_break_insn and change
2865 its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2866 (m68k_gdbarch_init): Don't use
2867 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2868 * m88k-tdep.c (break_insn): Rename it to m88k_break_insn and change
2869 its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2870 (m88k_gdbarch_init): Don't use
2871 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2872 * mep-tdep.c (breakpoint): Rename it to mep_break_insn and change
2873 its type to constexpr. Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2874 (mep_gdbarch_init): Don't use
2875 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2876 * microblaze-tdep.c (break_insn): Rename it to
2877 microblaze_break_insn and change its type to constexpr. Don't use
2878 GDBARCH_BREAKPOINT_MANIPULATION.
2879 (microblaze_gdbarch_init): Don't use
2880 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2881 * mips-tdep.c (mips_gdbarch_init): Likewise.
2882 * mn10300-tdep.c (breakpoint): Rename it to mn10300_break_insn and
2883 change its type to constexpr. Don't use
2884 GDBARCH_BREAKPOINT_MANIPULATION.
2885 (mn10300_gdbarch_init): Don't use
2886 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2887 * moxie-tdep.c (breakpoint): Rename it to moxie_break_insn and
2888 change its type to constexpr. Don't use
2889 GDBARCH_BREAKPOINT_MANIPULATION.
2890 (moxie_gdbarch_init): Don't use
2891 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2892 * msp430-tdep.c (breakpoint): Rename it to msp430_break_insn
2893 and change its type to constexpr. Don't use
2894 GDBARCH_BREAKPOINT_MANIPULATION.
2895 (msp430_gdbarch_init): Don't use
2896 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2897 * mt-tdep.c (mt_gdbarch_init): Likewise.
2898 * nds32-tdep.c (break_insn): Rename it to nds32_break_insn
2899 and change its type to constexpr. Don't use
2900 GDBARCH_BREAKPOINT_MANIPULATION.
2901 (nds32_gdbarch_init): Don't use
2902 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2903 * nios2-tdep.c (nios2_gdbarch_init): Likewise.
2904 * rl78-tdep.c (breakpoint): Rename it to rl78_break_ins
2905 and change its type to rl78_break_insn. Don't use
2906 GDBARCH_BREAKPOINT_MANIPULATION.
2907 (rl78_gdbarch_init): Don't use
2908 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2909 * rs6000-tdep.c (big_breakpoint): Change its type to
2910 constexpr.
2911 (little_breakpoint): Likewise.
2912 Don't use GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN.
2913 (rs6000_gdbarch_init): Don't use
2914 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2915 * rx-tdep.c (breakpoint): Rename it to rx_break_insn and
2916 change its type to constexpr. Don't use
2917 GDBARCH_BREAKPOINT_MANIPULATION.
2918 (rx_gdbarch_init): Don't use
2919 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2920 * s390-linux-tdep.c (breakpoint): Rename it to s390_break_insn
2921 and change its type to constexpr. Don't use
2922 GDBARCH_BREAKPOINT_MANIPULATION
2923 (s390_gdbarch_init): Don't use
2924 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2925 * score-tdep.c (score_gdbarch_init): Likewise.
2926 * sh-tdep.c (sh_gdbarch_init): Likewise.
2927 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
2928 * sparc-tdep.c (break_insn): Rename it to sparc_break_insn
2929 and change its type to constexpr. Don't use
2930 GDBARCH_BREAKPOINT_MANIPULATION.
2931 (sparc32_gdbarch_init): Don't use
2932 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2933 * spu-tdep.c (breakpoint): Rename it to spu_break_insn and change
2934 its type to constexpr. Don't use
2935 GDBARCH_BREAKPOINT_MANIPULATION.
2936 (spu_gdbarch_init): Don't use
2937 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2938 * tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
2939 * tilegx-tdep.c (breakpoint): Rename it to tilegx_break_insn
2940 and change its type to constexpr. Don't use
2941 GDBARCH_BREAKPOINT_MANIPULATION.
2942 (tilegx_gdbarch_init): Don't use
2943 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2944 * v850-tdep.c (v850_gdbarch_init): Likewise.
2945 * vax-tdep.c (break_insn): Rename it to vax_break_insn and
2946 change its type to constexpr.
2947 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2948 (vax_gdbarch_init): Don't use
2949 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2950 * xstormy16-tdep.c (breakpoint): Rename it to
2951 xstormy16_break_insn and change its type to constexpr.
2952 Don't use GDBARCH_BREAKPOINT_MANIPULATION.
2953 (xstormy16_gdbarch_init): Don't use
2954 SET_GDBARCH_BREAKPOINT_MANIPULATION.
2955 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
2956
a97c97e8
YQ
29572016-11-03 Yao Qi <yao.qi@linaro.org>
2958
2959 * arm-tdep.c (arm_override_mode): Remove.
2960 (arm_pc_is_thumb): Update.
2961 (arm_insert_single_step_breakpoint): Update.
2962
833b7ab5
YQ
29632016-11-03 Yao Qi <yao.qi@linaro.org>
2964
2965 * arch-utils.c (default_breakpoint_kind_from_current_state):
2966 New function.
2967 * arch-utils.h (default_breakpoint_kind_from_current_state):
2968 Declare.
2969 * arm-tdep.c (arm_breakpoint_kind_from_current_state): New
2970 function.
2971 (arm_gdbarch_init): Call
2972 set_gdbarch_breakpoint_kind_from_current_state.
2973 * breakpoint.c (breakpoint_kind): Call
2974 gdbarch_breakpoint_kind_from_current_state for single step
2975 breakpoint. Update comments.
2976 * gdbarch.sh (breakpoint_kind_from_current_state): New.
2977 * gdbarch.c, gdbarch.h: Regenerate.
2978
22f13eb8
YQ
29792016-11-03 Yao Qi <yao.qi@linaro.org>
2980
2981 * arch-utils.c (default_breakpoint_from_pc): New function.
2982 * arch-utils.h (GDBARCH_BREAKPOINT_FROM_PC): Remove.
2983 (GDBARCH_BREAKPOINT_MANIPULATION): Don't use
2984 GDBARCH_BREAKPOINT_FROM_PC.
2985 (SET_GDBARCH_BREAKPOINT_MANIPULATION): Don't call
2986 set_gdbarch_breakpoint_from_pc.
2987 (default_breakpoint_from_pc): Remove declaration.
2988 * gdbarch.sh (breakpoint_from_pc): Add its default implementation.
2989 * gdbarch.c, gdbarch.h: Regenerate.
2990 * arm-tdep.c: Don't use GDBARCH_BREAKPOINT_FROM_PC.
2991 * arc-tdep.c, bfin-tdep.c, cris-tdep.c, iq2000-tdep.c: Likewise.
2992 * m32r-tdep.c, mips-tdep.c, mt-tdep.c: Likewise.
2993 * nios2-tdep.c, score-tdep.c, sh-tdep.c: Likewise.
2994 * sh64-tdep.c, tic6x-tdep.c, v850-tdep.c, xtensa-tdep.c: Likewise.
2995
c0f4a997
YQ
29962016-11-03 Yao Qi <yao.qi@linaro.org>
2997
2998 * arch-utils.c (default_remote_breakpoint_from_pc): Remove.
2999 * arch-utils.h (default_remote_breakpoint_from_pc): Remove.
3000 * arm-tdep.c (arm_remote_breakpoint_from_pc): Remove.
3001 (arm_gdbarch_init): Don't call
3002 set_gdbarch_remote_breakpoint_from_pc.
3003 * gdbarch.sh (remote_breakpoint_from_pc): Remove.
3004 * gdbarch.c, gdbarch.h: Regenerate.
3005 * mips-tdep.c (mips_remote_breakpoint_from_pc): Remove.
3006 (mips_gdbarch_init): Don't call
3007 set_gdbarch_remote_breakpoint_from_pc.
3008
579c6ad9
YQ
30092016-11-03 Yao Qi <yao.qi@linaro.org>
3010
3011 * breakpoint.h (struct bp_target_info) <placed_size>: Remove.
3012 <kind>: New field.
3013 Update all users.
3014
cd6c3b4f
YQ
30152016-11-03 Yao Qi <yao.qi@linaro.org>
3016
3017 * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): Define
3018 breakpoint_kind_from_pc and sw_breakpoint_from_kind.
3019 (GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN): Likewise.
3020 (SET_GDBARCH_BREAKPOINT_MANIPULATION): Call
3021 set_gdbarch_breakpoint_kind_from_pc and
3022 set_gdbarch_sw_breakpoint_from_kind.
3023 * arm-tdep.c: Add comments.
3024 * bfin-tdep.c: Likewise.
3025 * breakpoint.c (breakpoint_kind): New function.
3026 (insert_bp_location): Set target_info.placed_size and
3027 target_info.placed_address.
3028 (bkpt_insert_location): Likewise.
3029 * cris-tdep.c: Add comments.
3030 * gdbarch.sh (breakpoint_kind_from_pc): New.
3031 (sw_breakpoint_from_kind): New.
3032 * gdbarch.c, gdbarch.h: Regenerated.
3033 * ia64-tdep.c (ia64_memory_insert_breakpoint): Don't set
3034 bp_tgt->placed_size.
3035 (ia64_memory_remove_breakpoint): Don't assert
3036 bp_tgt->placed_size.
3037 (ia64_breakpoint_kind_from_pc): New function.
3038 (ia64_gdbarch_init): Install ia64_breakpoint_kind_from_pc.
3039 * m32r-tdep.c (m32r_memory_insert_breakpoint): Don't set
3040 bp_tgt->placed_size.
3041 * mem-break.c (default_memory_insert_breakpoint): Don't set
3042 bp_tgt->placed_size. Call gdbarch_sw_breakpoint_from_kind.
3043 (default_memory_remove_breakpoint): Call
3044 gdbarch_sw_breakpoint_from_kind.
3045 (memory_validate_breakpoint): Don't check bp_tgt->placed_size.
3046 * mips-tdep.c: Add comments.
3047 * mt-tdep.c: Likewise.
3048 * nios2-tdep.c: Likewise.
3049 * record-full.c (record_full_insert_breakpoint): Don't call
3050 gdbarch_breakpoint_from_pc. Don't set bp_tgt->placed_address
3051 and bp_tgt->placed_size.
3052 * remote.c (remote_insert_breakpoint): Don't call
3053 gdbarch_remote_breakpoint_from_pc. Use bp_tgt->placed_size.
3054 Don't set bp_tgt->placed_address and bp_tgt->placed_size.
3055 (remote_insert_hw_breakpoint): Likewise.
3056 * score-tdep.c: Likewise.
3057 * sh-tdep.c: Likewise.
3058 * tic6x-tdep.c: Likewise.
3059 * v850-tdep.c: Likewise.
3060 * xtensa-tdep.c: Likewise.
3061
d19280ad
YQ
30622016-11-03 Yao Qi <yao.qi@linaro.org>
3063
3064 * arch-utils.h (GDBARCH_BREAKPOINT_FROM_PC): New macro.
3065 (GDBARCH_BREAKPOINT_MANIPULATION_ENDIAN): New macro.
3066 * arm-tdep.c (arm_breakpoint_from_pc): Remove.
3067 (arm_breakpoint_kind_from_pc): New function.
3068 (arm_sw_breakpoint_from_kind): New function.
3069 (arm_breakpoint_from_pc): Call arm_breakpoint_kind_from_pc
3070 and arm_sw_breakpoint_from_kind.
3071 Use GDBARCH_BREAKPOINT_FROM_PC.
3072 (arm_remote_breakpoint_from_pc): Call
3073 arm_breakpoint_kind_from_pc.
3074 (arm_gdbarch_init): Replace set_gdbarch_breakpoint_from_pc
3075 with SET_GDBARCH_BREAKPOINT_MANIPULATION.
3076 * arc-tdep.c: Likewise.
3077 * bfin-tdep.c: Likewise.
3078 * cris-tdep.c: Likewise.
3079 * iq2000-tdep.c: Likewise.
3080 * m32r-tdep.c: Likewise.
3081 * mips-tdep.c: Likewise.
3082 * mt-tdep.c: Likewise.
3083 * nios2-tdep.c: Likewise.
3084 * rs6000-tdep.c: Likewise.
3085 * score-tdep.c: Likewise.
3086 * sh-tdep.c: Likewise.
3087 * sh64-tdep.c: Likewise.
3088 * tic6x-tdep.c: Likewise.
3089 * v850-tdep.c: Likewise.
3090 * xtensa-tdep.c: Likewise.
3091
44f1c4d7
YQ
30922016-11-03 Yao Qi <yao.qi@linaro.org>
3093
3094 * mips-tdep.c (mips_breakpoint_kind): New enum.
3095 (mips_breakpoint_from_pc): Use it.
3096 (mips_remote_breakpoint_from_pc): Likewise.
3097
598cc9dc
YQ
30982016-11-03 Yao Qi <yao.qi@linaro.org>
3099
3100 * arch-utils.h (GDBARCH_BREAKPOINT_MANIPULATION): New macro.
3101 (SET_GDBARCH_BREAKPOINT_MANIPULATION): New macro.
3102 aarch64-tdep.c (aarch64_breakpoint_from_pc): Remove. Use
3103 GDBARCH_BREAKPOINT_MANIPULATION.
3104 (aarch64_gdbarch_init): Replace set_gdbarch_breakpoint_from_pc
3105 with SET_GDBARCH_BREAKPOINT_MANIPULATION.
3106 * alpha-tdep.c: Likewise.
3107 * avr-tdep.c: Likewise.
3108 * frv-tdep.c: Likewise.
3109 * ft32-tdep.c: Likewise.
3110 * h8300-tdep.c: Likewise.
3111 * hppa-tdep.c: Likewise.
3112 * i386-tdep.c: Likewise.
3113 * lm32-tdep.c: Likewise.
3114 * m32c-tdep.c: Likewise.
3115 * m68hc11-tdep.c: Likewise.
3116 * m68k-tdep.c: Likewise.
3117 * m88k-tdep.c: Likewise.
3118 * mep-tdep.c: Likewise.
3119 * microblaze-tdep.c: Likewise.
3120 * mn10300-tdep.c: Likewise.
3121 * moxie-tdep.c: Likewise.
3122 * msp430-tdep.c: Likewise.
3123 * rl78-tdep.c: Likewise.
3124 * rx-tdep.c: Likewise.
3125 * s390-linux-tdep.c: Likewise.
3126 * sparc-tdep.c: Likewise.
3127 * spu-tdep.c: Likewise.
3128 * tilegx-tdep.c: Likewise.
3129 * vax-tdep.c: Likewise.
3130 * xstormy16-tdep.c: Likewise.
3131
8b55a7e4
YQ
31322016-11-03 Yao Qi <yao.qi@linaro.org>
3133
3134 * mem-break.c (default_memory_insert_breakpoint): Don't check
3135 'bp' against NULL.
3136 * microblaze-linux-tdep.c (microblaze_linux_memory_remove_breakpoint):
3137 Likewise.
3138 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
3139
7d5697f9
TT
31402016-11-02 Tom Tromey <tom@tromey.com>
3141
3142 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type): Rename
3143 from impl_get_base_type. Rewrite.
3144 (struct dwarf_expr_baton): Remove.
3145 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value): Save and
3146 restore more fields.
3147 (symbol_needs_eval_context::get_frame_pc): New method.
3148 * dwarf2expr.h (dwarf_expr_context::get_base_type): Now public,
3149 virtual.
3150 (dwarf_expr_context::impl_get_base_type): Remove.
3151 * dwarf2expr.c (dwarf_expr_context::get_base_type): Remove.
3152
c5073021
MR
31532016-10-31 Maciej W. Rozycki <macro@imgtec.com>
3154
3155 * configure.ac <mips-sgi-irix5*>: Remove <sys/proc.h> _KMEMUSER
3156 workaround.
3157 * configure: Regenerate.
3158 * config.in: Regenerate.
3159
7e3d947d
MR
31602016-10-31 Maciej W. Rozycki <macro@imgtec.com>
3161
3162 * mips-tdep.c (mips_r3041_reg_names): Remove.
3163 (mips_breakpoint_from_pc): Remove IDT and PMON breakpoint
3164 encodings.
3165
de4bfa86
MR
31662016-10-31 Maciej W. Rozycki <macro@imgtec.com>
3167
3168 * defs.h (gdb_osabi): Remove GDB_OSABI_IRIX enum value.
3169 * osabi.c (gdb_osabi_names): Remove "Irix" entry.
3170 * mips-tdep.c (mips_irix_reg_names): Remove.
3171 (mips_register_type): Remove GDB_OSABI_IRIX code.
3172 (mips_pseudo_register_type): Likewise.
3173 (mips_breakpoint_from_pc): Likewise.
3174 (mips_gdbarch_init): Likewise.
3175
e6485aaf
PA
31762016-10-29 Pedro Alves <palves@redhat.com>
3177
3178 * NEWS: Clarify C++ requirement.
3179
d2946923
PA
31802016-10-29 Pedro Alves <palves@redhat.com>
3181
3182 * NEWS: Adjust to mention C++11 requirement.
3183
8ba42bc5
EZ
31842016-10-29 Eli Zaretskii <eliz@gnu.org>
3185
3186 * NEWS: Mention support for redirection on MS-Windows.
3187
3188 * windows-nat.c (redir_open, redir_set_redirection)
3189 (redirect_inferior_handles) [!__CYGWIN__]: New functions.
3190 (windows_create_inferior) [!__CYGWIN__]: Use
3191 'redirect_inferior_handles' to redirect standard handles of the
3192 debuggee if the command line requests that.
3193
0bcda685
PA
31942016-10-28 Pedro Alves <palves@redhat.com>
3195
3196 * Makefile.in (CXX_DIALECT): Get from configure.
3197 (COMPILE.pre, CC_LD): Append $(CXX_DIALECT).
3198 (FLAGS_TO_PASS): Pass CXX_DIALECT.
3199 * acinclude.m4: Include ax_cxx_compile_stdcxx.m4.
3200 * ax_cxx_compile_stdcxx.m4: Add FSF copyright header. Set and
3201 AC_SUBST CXX_DIALECT instead of changing CXX/CXXCPP.
3202 * configure.ac: Call AX_CXX_COMPILE_STDCXX.
3203 * config.in: Regenerate.
3204 * configure: Regenerate.
3205
87106a7b
PA
32062016-10-28 Pedro Alves <palves@redhat.com>
3207
3208 * ax_cxx_compile_stdcxx.m4: New file.
3209
44d83468
PA
32102016-10-28 Pedro Alves <palves@redhat.com>
3211
3212 * maint.c (scoped_command_stats::scoped_command_stats): Clear
3213 m_space_enabled, m_time_enabled and m_symtab_enabled.
3214
d87fdac3
MM
32152016-10-28 Markus Metzger <markus.t.metzger@intel.com>
3216
3217 * btrace.c (bfun_s): New typedef.
3218 (ftrace_update_caller): Print caller in debug dump.
3219 (ftrace_get_caller, ftrace_match_backtrace, ftrace_fixup_level)
3220 (ftrace_compute_global_level_offset, ftrace_connect_bfun)
3221 (ftrace_connect_backtrace, ftrace_bridge_gap, btrace_bridge_gaps): New.
3222 (btrace_compute_ftrace_bts): Pass vector of gaps. Collect gaps.
3223 (btrace_compute_ftrace_pt): Likewise.
3224 (btrace_compute_ftrace): Split into this, ...
3225 (btrace_compute_ftrace_1): ... this, and ...
3226 (btrace_finalize_ftrace): ... this. Call btrace_bridge_gaps.
3227
259ba1e8
MM
32282016-10-28 Markus Metzger <markus.t.metzger@intel.com>
3229
3230 * btrace.c (ftrace_new_return): Start from the previous function's
3231 level if we can't find a matching call for a return.
3232
2dfdb47a
MM
32332016-10-28 Markus Metzger <markus.t.metzger@intel.com>
3234
3235 * btrace.c (ftrace_update_function): Update tail call heuristic.
3236
b61ce85c
MM
32372016-10-28 Markus Metzger <markus.t.metzger@intel.com>
3238
3239 * btrace.c (btrace_compute_ftrace_bts, ftrace_add_pt): Allow
3240 leading gaps.
3241 * record-btrace.c (record_btrace_single_step_forward)
3242 (record_btrace_single_step_backward): Jump back to last
3243 instruction if step ends at a gap.
3244 (record_btrace_goto_begin): Skip gaps.
3245
63ab433e
MM
32462016-10-28 Markus Metzger <markus.t.metzger@intel.com>
3247
3248 * btrace.c (ftrace_add_pt): Fix gap indication. Add warning for non-
3249 contiguous trace and overflow. Rephrase trace decode warning and print
3250 instruction number. Remove dead gaps warning.
3251 (btrace_compute_ftrace_bts): Rephrase warnings and print instruction
3252 number.
3253
ecf45d2c
SL
32542016-10-25 Sandra Loosemore <sandra@codesourcery.com>
3255 Luis Machado <lgustavo@codesourcery.com>
3256 Pedro Alves <palves@redhat.com>
3257
3258 PR gdb/20569
3259 * exceptions.c (exception_print_same): Moved here from exec.c.
3260 * exceptions.h (exception_print_same): Declare.
3261 * exec.h: Include "symfile-add-flags.h".
3262 (try_open_exec_file): New declaration.
3263 * exec.c (exception_print_same): Moved to exceptions.c.
3264 (try_open_exec_file): New function.
3265 (exec_file_locate_attach): Rename exec_file and full_exec_path
3266 variables to avoid confusion between target and host pathnames.
3267 Move pathname processing logic to exec_file_find. Do not return
3268 early if pathname lookup fails; Call try_open_exec_file.
3269 * infrun.c (follow_exec): Split and rename execd_pathname variable
3270 to avoid confusion between target and host pathnames. Warn if
3271 pathname lookup fails. Pass target pathname to
3272 target_follow_exec, not hostpathname. Call try_open_exec_file.
3273 * main.c (symbol_file_add_main_adapter): New function.
3274 (captured_main_1): Use it.
3275 * solib-svr4.c (open_symbol_file_object): Adjust to pass
3276 symfile_add_flags to symbol_file_add_main.
3277 * solib.c (exec_file_find): Incorporate fallback logic for relative
3278 pathnames formerly in exec_file_locate_attach.
3279 * symfile.c (symbol_file_add_main, symbol_file_add_main_1):
3280 Replace 'from_tty' parameter with a symfile_add_file.
3281 (symbol_file_command): Adjust to pass symfile_add_flags to
3282 symbol_file_add_main.
3283 * symfile.h (symbol_file_add_main): Replace 'from_tty' parameter
3284 with a symfile_add_file.
3285
b15cc25c
PA
32862016-10-26 Pedro Alves <palves@redhat.com>
3287
3288 * coffread.c (coff_symfile_read): Use symfile_add_flags.
3289 * dbxread.c (dbx_symfile_read): Ditto.
3290 * elfread.c (elf_symfile_read): Ditto.
3291 * inferior.h: Include symfile-add-flags.h.
3292 (struct inferior) <symfile_flags>: Now symfile_add_flags.
3293 * machoread.c (macho_add_oso_symfile, macho_symfile_read_all_oso)
3294 (macho_symfile_read, mipscoff_symfile_read): Use
3295 symfile_add_flags.
3296 * objfile-flags.h: New file.
3297 * objfiles.c (allocate_objfile): Use objfile_flags.
3298 * objfiles.h: Include objfile-flags.h.
3299 (struct objfile) <flags>: Now an objfile_flags.
3300 (OBJF_REORDERED, OBJF_SHARED, OBJF_READNOW, OBJF_USERLOADED)
3301 (OBJF_PSYMTABS_READ, OBJF_MAINLINE, OBJF_NOT_FILENAME): Delete.
3302 Converted to an enum-flags in objfile-flags.h.
3303 (allocate_objfile): Use objfile_flags.
3304 * python/py-objfile.c (objfpy_add_separate_debug_file): Remove
3305 unnecessary local.
3306 * solib.c (solib_read_symbols, solib_add)
3307 (reload_shared_libraries_1): Use symfile_add_flags.
3308 * solib.h: Include "symfile-add-flags.h".
3309 (solib_read_symbols): Use symfile_add_flags.
3310 * symfile-add-flags.h: New file.
3311 * symfile-debug.c (debug_sym_read): Use symfile_add_flags.
3312 * symfile-mem.c (symbol_file_add_from_memory): Use
3313 symfile_add_flags.
3314 * symfile.c (read_symbols, syms_from_objfile_1)
3315 (syms_from_objfile, finish_new_objfile): Use symfile_add_flags.
3316 (symbol_file_add_with_addrs): Use symfile_add_flags and
3317 objfile_flags.
3318 (symbol_file_add_separate): Use symfile_add_flags.
3319 (symbol_file_add_from_bfd, symbol_file_add): Use symfile_add_flags
3320 and objfile_flags.
3321 (symbol_file_add_main_1): : Use objfile_flags. Fix add_flags vs
3322 flags confusion.
3323 (symbol_file_command): Use objfile_flags.
3324 (add_symbol_file_command): Use symfile_add_flags and
3325 objfile_flags.
3326 (clear_symtab_users): Use symfile_add_flags.
3327 * symfile.h: Include "symfile-add-flags.h" and "objfile-flags.h".
3328 (struct sym_fns) <sym_read>: Use symfile_add_flags.
3329 (clear_symtab_users): Use symfile_add_flags.
3330 (enum symfile_add_flags): Delete, moved to symfile-add-flags.h and
3331 converted to enum-flags.
3332 (symbol_file_add, symbol_file_add_from_bfd)
3333 (symbol_file_add_separate): Use symfile_add_flags.
3334 * xcoffread.c (xcoff_initial_scan): Use symfile_add_flags.
3335
85ad3aaf
PA
33362016-10-26 Pedro Alves <palves@redhat.com>
3337
3338 * inferior.h (ALL_NON_EXITED_INFERIORS): New macro.
3339 * infrun.c (do_target_resume): Call target_commit_resume.
3340 (proceed): Defer target_commit_resume while looping over threads,
3341 resuming them. Call target_commit_resume at the end.
3342 * record-btrace.c (record_btrace_commit_resume): New function.
3343 (init_record_btrace_ops): Install it as to_commit_resume method.
3344 * record-full.c (record_full_commit_resume): New function.
3345 (record_full_wait_1): Call the beneath target's to_commit_resume
3346 method.
3347 (init_record_full_ops): Install record_full_commit_resume as
3348 to_commit_resume method.
3349 * remote.c (struct private_thread_info) <last_resume_step,
3350 last_resume_sig, vcont_resumed>: New fields.
3351 (remote_add_thread): Set the new thread's vcont_resumed flag.
3352 (demand_private_info): Delete.
3353 (get_private_info_thread, get_private_info_ptid): New functions.
3354 (remote_update_thread_list): Adjust.
3355 (process_initial_stop_replies): Clear the thread's vcont_resumed
3356 flag.
3357 (remote_resume): If connected in non-stop mode, record the resume
3358 request and return early.
3359 (struct private_inferior): New.
3360 (struct vcont_builder): New.
3361 (vcont_builder_restart, vcont_builder_flush)
3362 (vcont_builder_push_action): New functions.
3363 (MAX_ACTION_SIZE): New macro.
3364 (remote_commit_resume): New function.
3365 (thread_pending_fork_status, is_pending_fork_parent_thread): New
3366 functions.
3367 (check_pending_event_prevents_wildcard_vcont_callback)
3368 (check_pending_events_prevent_wildcard_vcont): New functions.
3369 (process_stop_reply): Adjust. Clear the thread's vcont_resumed
3370 flag.
3371 (init_remote_ops): Install remote_commit_resume.
3372 * target-delegates.c: Regenerate.
3373 * target.c (defer_target_commit_resume): New global.
3374 (target_commit_resume, make_cleanup_defer_target_commit_resume):
3375 New functions.
3376 * target.h (struct target_ops) <to_commit_resume>: New field.
3377 (target_resume): Update comments.
3378 (target_commit_resume): New declaration.
3379
ef4a3395
PA
33802016-10-26 Pedro Alves <palves@redhat.com>
3381
3382 * inferior.c (exit_inferior_1): Free 'priv'.
3383
7b68ffbb
PA
33842016-10-26 Pedro Alves <palves@redhat.com>
3385
3386 * remote.c (remote_resume_with_hc): New function, factored out
3387 from ...
3388 (remote_resume): ... this. Always try vCont first.
3389 (remote_vcont_resume): Rename to ...
3390 (remote_resume_with_vcont): ... this. Bail out if execution
3391 direction is reverse.
3392
beb18c86
PA
33932016-10-25 Pedro Alves <palves@redhat.com>
3394
3395 * dwarf2expr.h (struct dwarf_expr_context) <~dwarf_expr_context>:
3396 Make virtual.
3397
b196bc4c
RO
33982016-10-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3399
3400 PR build/20712
3401 * defs.h: Remove obsolete comment
3402 (atof): Remove.
3403 * procfs.c (do_destroy_procinfo_cleanup): Add cast.
3404 (sysset_t_alloc): Likewise.
3405 (proc_set_traced_sysentry): Likewise.
3406 (proc_set_traced_sysexit): Likewise.
3407 [!PIOCLSTATUS && NEW_PROC_API] (do_closedir_cleanup): Likewise.
3408 (proc_get_LDT_entry): Initiate cleanups before returns.
3409 (procfs_wait): Use GDB_SIGNAL_0.
3410 (procfs_corefile_thread_callback): Add cast.
3411 * sol-thread.c (td_log_ftype, td_ta_new_ftype, td_ta_delete_ftype)
3412 (td_init_ftype, td_ta_get_ph_ftype, td_ta_get_nthreads_ftype)
3413 (td_ta_tsd_iter_ftype, td_ta_thr_iter_ftype)
3414 (td_thr_validate_ftype, td_thr_tsd_ftype, td_thr_get_info_ftype)
3415 (td_thr_getfpregs_ftype, td_thr_getxregsize_ftype)
3416 (td_thr_getxregs_ftype, td_thr_sigsetmask_ftype)
3417 (td_thr_setprio_ftype, td_thr_setsigpending_ftype)
3418 (td_thr_setfpregs_ftype, td_thr_setxregs_ftype)
3419 (td_ta_map_id2thr_ftype, td_ta_map_lwp2thr_ftype)
3420 (td_thr_getgregs_ftype, td_thr_setgregs_ftype): New typedefs.
3421 (p_td_log, p_td_ta_new, p_td_ta_delete, p_td_init, p_td_ta_get_ph)
3422 (p_td_ta_get_nthreads, p_td_ta_tsd_iter, p_td_ta_thr_iter)
3423 (p_td_thr_validate, p_td_thr_tsd, p_td_thr_get_info)
3424 (p_td_thr_getfpregs, p_td_thr_getxregsize, p_td_thr_getxregs)
3425 (p_td_thr_sigsetmask, p_td_thr_setprio, p_td_thr_setsigpending)
3426 (p_td_thr_setfpregs, p_td_thr_setxregs, p_td_ta_map_id2thr)
3427 (p_td_ta_map_lwp2thr, p_td_thr_getgregs, p_td_thr_setgregs): Use them.
3428 (ps_pdread): Add cast.
3429 (ps_ptread): Likewise.
3430 (resolve): Likewise.
3431 * top.c (gdb_safe_append_history): Print pid_t as long.
3432
b30f354a
PA
34332016-10-25 Pedro Alves <palves@redhat.com>
3434
3435 * common/common-defs.h (__STDC_FORMAT_MACROS): Define.
3436
e4426cb4
PA
34372016-10-25 Pedro Alves <palves@redhat.com>
3438
3439 * common/new-op.c: Add comment about -fsanitize=address.
3440
28fe4f87
PA
34412016-10-25 Pedro Alves <palves@redhat.com>
3442
3443 * common/common-defs.h (__STDC_CONSTANT_MACROS)
3444 (__STDC_LIMIT_MACROS): Define.
3445
3ef9d661
YQ
34462016-10-25 Yao Qi <yao.qi@linaro.org>
3447
3448 PR gdb/20716
3449 * common/new-op.c (__has_feature): New macro.
3450 Don't override operator new if asan is used.
3451
b5e1db87
LM
34522016-10-24 Luis Machado <lgustavo@codesourcery.com>
3453
3454 * exec.c (exec_file_locate_attach): Prevent NULL pointer dereference
3455 when duplicating a string.
3456
010ece9c
LM
34572016-10-24 Luis Machado <lgustavo@codesourcery.com>
3458
3459 * exec.c (exception_print_same): Fix string comparison to use
3460 statically-allocated ones.
3461
befbff86
TT
34622016-10-21 Tom Tromey <tom@tromey.com>
3463
3464 * dwarf2expr.h (class dwarf_expr_context)
3465 <get_frame_base, get_frame_cfa, get_tls_address, dwarf_call,
3466 push_dwarf_block_entry_value, get_addr_index, get_object_address>:
3467 Now pure virtual.
3468 * dwarf2-frame.c (class dwarf_expr_executor)
3469 <get_frame_base, get_frame_cfa, get_tls_address, dwarf_call,
3470 push_dwarf_block_entry_value, get_addr_index, get_object_address>:
3471 New methods.
3472 <invalid>: New method.
3473
ce6c454e
TT
34742016-10-21 Tom Tromey <tom@tromey.com>
3475
3476 * minsyms.h (minimal_symbol_reader::record_full): "copy_name" now
3477 a bool.
3478 (record, record_with_info): Update.
3479 * minsyms.c (record): Fix indentation.
3480 (record_full): Fix indentation. Update for type change.
3481 * elfread.c (record_minimal_symbol): "copy_name" now a bool.
3482 (elf_symtab_read): "copy_names" now a bool.
3483 (elf_rel_plt_read, elf_read_minimal_symbols): Update.
3484
f60ee22e
TT
34852016-10-21 Tom Tromey <tom@tromey.com>
3486
3487 * main.c: Include <vector>.
3488 (cmdarg_s): Remove typedef. Don't define VEC.
3489 (captured_main_1): Use vector, not VEC. Remove cleanups.
3490
192ca6d8
TT
34912016-10-21 Tom Tromey <tom@tromey.com>
3492
3493 * dwarf2loc.c (struct dwarf_expr_context_funcs): Don't declare.
3494 (dwarf_expr_read_addr_from_reg, dwarf_expr_get_reg_value)
3495 (dwarf_expr_read_mem, dwarf_expr_frame_base): Rename; turn into
3496 methods.
3497 (get_frame_pc_for_per_cu_dwarf_call): New function.
3498 (dwarf_expr_frame_cfa, dwarf_expr_frame_pc)
3499 (dwarf_expr_tls_address): Rename; turn into methods.
3500 (per_cu_dwarf_call): Remove arguments. Use
3501 get_frame_pc_for_per_cu_dwarf_call.
3502 (dwarf_evaluate_loc_desc): New class.
3503 (dwarf_expr_dwarf_call, dwarf_expr_context)
3504 (dwarf_expr_push_dwarf_reg_entry_value)
3505 (dwarf_expr_get_addr_index, dwarf_expr_get_obj_addr): Rename; turn
3506 into methods.
3507 (dwarf_expr_ctx_funcs): Remove.
3508 (dwarf2_evaluate_loc_desc_full): Update.
3509 (dwarf2_locexpr_baton_eval): Update.
3510 (symbol_needs_eval_context): New class.
3511 (symbol_needs_read_addr_from_reg, symbol_needs_get_reg_value)
3512 (symbol_needs_read_mem, symbol_needs_frame_base)
3513 (symbol_needs_frame_cfa, symbol_needs_tls_address)
3514 (symbol_needs_dwarf_call, needs_dwarf_reg_entry_value): Rename;
3515 turn into methods.
3516 (needs_get_addr_index, needs_get_obj_addr): Remove; turn into
3517 methods.
3518 (symbol_needs_ctx_funcs): Remove.
3519 (dwarf2_loc_desc_get_symbol_read_needs): Update.
3520 * dwarf2expr.h (struct dwarf_expr_context_funcs): Remove; turn
3521 contents into methods.
3522 (struct dwarf_expr_context) <baton, funcs>: Remove.
3523 <read_addr_from_reg, get_reg_value, read_mem, get_frame_base,
3524 get_frame_cfa, get_frame_pc, get_tls_address, dwarf_call,
3525 impl_get_base_type, push_dwarf_block_entry_value, get_addr_index,
3526 get_object_address>: Declare new methods.
3527 (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
3528 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
3529 (ctx_no_get_base_type, ctx_no_push_dwarf_reg_entry_value)
3530 (ctx_no_get_addr_index): Don't declare.
3531 * dwarf2expr.c (get_base_type): Use impl_get_base_type.
3532 (execute_stack_op): Update.
3533 (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
3534 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
3535 (ctx_no_get_base_type, ctx_no_push_dwarf_reg_entry_value)
3536 (ctx_no_get_addr_index): Remove; now methods on
3537 dwarf_expr_context.
3538 * dwarf2-frame.c (read_addr_from_reg): Take a frame_info, not a
3539 baton.
3540 (class dwarf_expr_executor): New class.
3541 (get_reg_value, read_mem): Rename, turn into methods.
3542 (execute_stack_op): Use dwarf_expr_executor.
3543
595d2e30
TT
35442016-10-21 Tom Tromey <tom@tromey.com>
3545
3546 * dwarf2loc.c (per_cu_dwarf_call)
3547 (dwarf_expr_push_dwarf_reg_entry_value)
3548 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval)
3549 (needs_dwarf_reg_entry_value)
3550 (dwarf2_loc_desc_get_symbol_read_needs): Update.
3551 * dwarf2expr.h (dwarf_expr_context) <push_address, eval, fetch,
3552 fetch_address, fetch_in_stack_memory, address_type, grow_stack,
3553 push, stack_empty_p, add_piece, get_base_type, execute_stack_op,
3554 pop>: New method declarations.
3555 (dwarf_expr_push_address, dwarf_expr_eval, dwarf_expr_fetch)
3556 (dwarf_expr_fetch_address, dwarf_expr_fetch_in_stack_memory):
3557 Don't declare.
3558 * dwarf2expr.c (address_type, grow_stack, push, push_address)
3559 (pop, fetch, fetch_address, fetch_in_stack_memory)
3560 (stack_empty_p, add_piece, eval, get_base_type)
3561 (execute_stack_op): Rename. Turn into methods.
3562 * dwarf2-frame.c (execute_stack_op): Update.
3563
718b9626
TT
35642016-10-21 Tom Tromey <tom@tromey.com>
3565
3566 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Stack-allocate
3567 dwarf_expr_context. Remove cleanups.
3568 (dwarf2_locexpr_baton_eval)
3569 (dwarf2_loc_desc_get_symbol_read_needs): Likewise.
3570 * dwarf2expr.h (dwarf_expr_context, ~dwarf_expr_context): Add
3571 constructors and destructors.
3572 (new_dwarf_expr_context, free_dwarf_expr_context)
3573 (make_cleanup_free_dwarf_expr_context): Don't declare.
3574 * dwarf2-frame.c (execute_stack_op): Stack-allocate
3575 dwarf_expr_context. Remove cleanups.
3576 (dwarf_expr_context): Rename from new_dwarf_expr_context. Turn
3577 into constructor.
3578 (free_dwarf_expr_context, free_dwarf_expr_context_cleanup):
3579 Remove.
3580 (~dwarf_expr_context): Rename from
3581 make_cleanup_free_dwarf_expr_context. Turn into destructor.
3582
58414334
TT
35832016-10-21 Tom Tromey <tom@tromey.com>
3584
3585 * dwarf2loc.c: Include <vector>.
3586 (read_pieced_value, write_pieced_value)
3587 (dwarf2_compile_expr_to_ax): Use std::vector.
3588
67ad9399
TT
35892016-10-21 Tom Tromey <tom@tromey.com>
3590
3591 * stack.c (print_stack_frame_to_uiout): Use scoped_restore.
3592 * ui-out.c (make_cleanup_restore_current_uiout)
3593 (restore_current_uiout_cleanup): Remove.
3594 * infrun.c (print_stop_event): Use scoped_restore.
3595 * ui-out.h (make_cleanup_restore_current_uiout): Don't declare.
3596
d1e4a624
TT
35972016-10-21 Tom Tromey <tom@tromey.com>
3598
3599 * elfread.c (elf_read_minimal_symbols): Use gdb::unique_ptr.
3600
cd9da5b0
TT
36012016-10-21 Tom Tromey <tom@tromey.com>
3602
3603 * cli/cli-dump.c (dump_memory_to_file): Use gdb::unique_ptr.
3604 (restore_binary_file): Likewise.
3605
1e3b796d
TT
36062016-10-21 Tom Tromey <tom@tromey.com>
3607
3608 * maint.h (scoped_command_stats): New class.
3609 (make_command_stats_cleanup): Don't declare.
3610 * maint.c (struct cmd_stats): Remove.
3611 (~scoped_command_stats): Rename from report_command_stats. Now a
3612 destructor.
3613 (scoped_command_stats): Rename from make_command_stats_cleanup.
3614 Now a constructor.
3615 * main.c (captured_main_1): New function. Use
3616 scoped_command_stats.
3617 (captured_main): Call captured_main_1.
3618 * event-top.c (command_handler): Use scoped_command_stats.
3619
6fc31fc7
TT
36202016-10-21 Tom Tromey <tom@tromey.com>
3621
3622 * mi/mi-main.c (mi_cmd_data_read_memory): Use gdb::unique_ptr.
3623 Remove some cleanups.
3624
0e454242
TT
36252016-10-21 Tom Tromey <tom@tromey.com>
3626
3627 * tui/tui-interp.c (tui_on_normal_stop, tui_on_signal_received)
3628 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
3629 (tui_on_no_history, tui_on_user_selected_context_changed):
3630 Update.
3631 * top.h (switch_thru_all_uis): New class.
3632 (SWITCH_THRU_ALL_UIS): Rewrite.
3633 (make_cleanup_restore_current_ui, switch_thru_all_uis_init)
3634 (switch_thru_all_uis_cond, switch_thru_all_uis_next): Don't
3635 declare.
3636 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
3637 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
3638 (mi_inferior_exit, mi_inferior_removed, mi_on_signal_received)
3639 (mi_on_end_stepping_range, mi_on_signal_exited, mi_on_exited)
3640 (mi_on_no_history, mi_on_normal_stop, mi_traceframe_changed)
3641 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
3642 (mi_breakpoint_created, mi_breakpoint_deleted)
3643 (mi_breakpoint_modified, mi_output_running_pid, mi_on_resume)
3644 (mi_solib_loaded, mi_solib_unloaded, mi_command_param_changed)
3645 (mi_memory_changed, mi_user_selected_context_changed): Update.
3646 * infrun.c (all_uis_check_sync_execution_done)
3647 (all_uis_on_sync_execution_starting, normal_stop): Update.
3648 * event-top.c (restore_ui_cleanup)
3649 (make_cleanup_restore_current_ui, switch_thru_all_uis_init)
3650 (switch_thru_all_uis_cond, switch_thru_all_uis_next): Remove.
3651 * cli/cli-interp.c (cli_on_normal_stop, cli_on_signal_received)
3652 (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
3653 (cli_on_no_history, cli_on_user_selected_context_changed):
3654 Update.
3655 * breakpoint.c (watchpoint_check): Update.
3656
8dddcb8f
TT
36572016-10-21 Tom Tromey <tom@tromey.com>
3658
3659 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab): Add
3660 "reader" argument. Update.
3661 (xcoff_initial_scan): Update.
3662 * symfile.h (mdebug_build_psymtabs): Add "reader" argument.
3663 * mipsread.c (mipscoff_symfile_read): Update.
3664 (read_alphacoff_dynamic_symtab): Add "reader" argument. Update.
3665 * minsyms.h (minimal_symbol_reader) <record, record_full>:
3666 Declare.
3667 <m_msym_bunch, m_msym_bunch_index, m_msym_count>: New members.
3668 <record_with_info>: New function, renamed from
3669 prim_record_minimal_symbol_and_info.
3670 * minsyms.c (msym_bunch, msym_bunch_index, msym_count): Remove
3671 globals.
3672 (minimal_symbol_reader): Initialize new members.
3673 (minimal_symbol_reader::record): Renamed from
3674 prim_record_minimal_symbol.
3675 (minimal_symbol_reader::record_full): Renamed from
3676 prim_record_minimal_symbol_full.
3677 (prim_record_minimal_symbol_and_info): Move to minsyms.h; rename.
3678 * mdebugread.c (mdebug_build_psymtabs, parse_partial_symbols)
3679 (record_minimal_symbol): Add "reader" argument. Update.
3680 (elfmdebug_build_psymtabs): Update.
3681 * machoread.c (macho_symtab_add_minsym, macho_symtab_read): Add
3682 "reader" argument. Update.
3683 (macho_symfile_read): Update.
3684 * elfread.c (record_minimal_symbol, elf_symtab_read)
3685 (elf_rel_plt_read): Add "reader" argument. Update.
3686 (elf_read_minimal_symbols): Update.
3687 * dbxread.c (record_minimal_symbol, read_dbx_dynamic_symtab)
3688 (read_dbx_symtab): Add "reader" argument. Update.
3689 (dbx_symfile_read): Update.
3690 * coffread.c (record_minimal_symbol, coff_symtab_read): Add
3691 "reader" argument. Update.
3692 (coff_symfile_read): Update.
3693 * coff-pe-read.h (read_pe_exported_syms): Add "reader" argument.
3694 * coff-pe-read.c (add_pe_exported_sym, add_pe_forwarded_sym)
3695 (read_pe_exported_syms): Add "reader" argument. Update.
3696
d25e8719
TT
36972016-10-21 Tom Tromey <tom@tromey.com>
3698
3699 * xcoffread.c (xcoff_initial_scan): Update.
3700 * mipsread.c (mipscoff_symfile_read): Update.
3701 * minsyms.c (minimal_symbol_reader): Add obj argument.
3702 Initialize member.
3703 (install): Remove objfile argument. Update.
3704 * mdebugread.c (elfmdebug_build_psymtabs): Update.
3705 * machoread.c (macho_symfile_read): Update.
3706 * elfread.c (elf_read_minimal_symbols): Update.
3707 * dbxread.c (dbx_symfile_read): Update.
3708 * coffread.c (coff_symfile_read): Update.
3709 * minsyms.h (minimal_symbol_reader): Add m_objfile member.
3710 (constructor): Add objfile argument.
3711 (minimal_symbol_reader::install): Remove objfile argument.
3712
873a915e
TT
37132016-10-21 Tom Tromey <tom@tromey.com>
3714
3715 * xcoffread.c (xcoff_initial_scan): Use
3716 minimal_symbol_reader.
3717 * mipsread.c (mipscoff_symfile_read): Use
3718 minimal_symbol_reader.
3719 * minsyms.h (minimal_symbol_reader): New class.
3720 (init_minimal_symbol_collection)
3721 (make_cleanup_discard_minimal_symbols, install_minimal_symbols):
3722 Don't declare.
3723 * minsyms.c (minimal_symbol_reader): Renamed from
3724 init_minimal_symbol_collection, turned into constructor.
3725 (~minimal_symbol_reader): Renamed from
3726 do_discard_minimal_symbols_cleanup, turned into destructor.
3727 (make_cleanup_discard_minimal_symbols): Remove.
3728 (minimal_symbol_reader::install): Rename form
3729 install_minimal_symbols.
3730 * mdebugread.c (elfmdebug_build_psymtabs): Use
3731 minimal_symbol_reader.
3732 * machoread.c (macho_symfile_read): Use
3733 minimal_symbol_reader.
3734 * elfread.c (elf_read_minimal_symbols): Use
3735 minimal_symbol_reader.
3736 * dbxread.c (dbx_symfile_read): Use minimal_symbol_reader.
3737 * coffread.c (coff_symfile_read): Use
3738 minimal_symbol_reader.
3739
4b6749b9
TT
37402016-10-21 Tom Tromey <tom@tromey.com>
3741
3742 * top.c (new_ui_command, wait_sync_command_done)
3743 (gdb_readline_wrapper): Use scoped_restore.
3744 * infrun.c (fetch_inferior_event): Use scoped_restore.
3745 * infcall.c (call_thread_fsm_should_stop): Use scoped_restore.
3746
97468094
TT
37472016-10-21 Tom Tromey <tom@tromey.com>
3748
3749 * utils.c (make_cleanup_restore_ui_file, do_restore_ui_file)
3750 (struct restore_ui_file_closure): Remove.
3751 * utils.h (make_cleanup_restore_ui_file): Don't declare.
3752 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
3753 scoped_restore.
3754 * top.c (execute_command_to_string): Use scoped_restore.
3755
b7b633e9
TT
37562016-10-21 Tom Tromey <tom@tromey.com>
3757
3758 * common/scoped_restore.h: New file.
3759 * utils.h: Include scoped_restore.h.
3760 * top.c (execute_command_to_string): Use scoped_restore.
3761 * python/python.c (python_interactive_command): Use
3762 scoped_restore.
3763 (python_command, execute_gdb_command): Likewise.
3764 * printcmd.c (do_one_display): Use scoped_restore.
3765 * mi/mi-main.c (exec_continue): Use scoped_restore.
3766 * mi/mi-cmd-var.c (mi_cmd_var_assign): Use scoped_restore.
3767 * linux-fork.c (checkpoint_command): Use scoped_restore.
3768 * infrun.c (restore_execution_direction): Remove.
3769 (fetch_inferior_event): Use scoped_restore.
3770 * compile/compile.c (compile_file_command): Use
3771 scoped_restore.
3772 (compile_code_command, compile_print_command): Likewise.
3773 * cli/cli-script.c (execute_user_command): Use
3774 scoped_restore.
3775 (while_command, if_command, script_from_file): Likewise.
3776 * arm-tdep.c (arm_insert_single_step_breakpoint): Use
3777 scoped_restore.
3778
9a1e3f00
TT
37792016-10-21 Tom Tromey <tom@tromey.com>
3780
3781 * xcoffread.c (read_xcoff_symtab): Make "filestring" const.
3782
d11261fc
UW
37832016-10-21 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
3784 Ulrich Weigand <uweigand@de.ibm.com>
3785
3786 * xcoffread.c (read_xcoff_symtab): Make name of current file as
3787 pst->filename instead of _start_ in AIX.
3788
4db41a0a
PR
37892016-10-21 Philipp Rudo <prudo@linux.vnet.ibm.com>
3790
3791 * solist.h (struct target_so_ops): Delete special_symbol_handling
3792 hook.
3793 * solib.c (solib_add, reload_shared_libraries): Adjust.
3794 * solib-aix.c (solib_aix_special_symbol_handling): Delete
3795 (_initialize_solib_aix): Adjust
3796 * solib-darwin.c (darwin_special_symbol_handling): Delete
3797 (_initialize_darwin_solib): Adjust
3798 * solib-dsbt.c (dsbt_special_symbol_handling): Delete
3799 (_initialize_dsbt_solib): Adjust
3800 * solib-frv.c (frv_special_symbol_handling): Delete
3801 (_initialize_frv_solib): Adjust
3802 * solib-svr4.c (svr4_special_symbol_handling): Delete
3803 (_initialize_svr4_solib): Adjust
3804 * solib-target.c (solib_target_special_symbol_handling): Delete
3805 (_initialize_solib_target): Adjust
3806
78836e90
YQ
38072016-10-20 Yao Qi <yao.qi@linaro.org>
3808
3809 * configure.tgt: Don't configure if target is *-*-vxworks*.
3810
f77a9b48
PA
38112016-10-19 Pedro Alves <palves@redhat.com>
3812
3813 * config.in: Regenerate.
3814
f6abaf7a
PA
38152016-10-18 Pedro Alves <palves@redhat.com>
3816
3817 * common/common-defs.h (__STDC_CONSTANT_MACROS)
3818 (__STDC_LIMIT_MACROS): Delete.
3819
49e4877c
PA
38202016-10-18 Pedro Alves <palves@redhat.com>
3821
3822 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3823 2692e23a48e21f6daa029e8af9f1a143b7532f47.
3824 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
3825 Regenerate.
3826 * gnulib/import/Makefile: Update.
3827 * gnulib/import/alloca: Update.
3828 * gnulib/import/basename-lgpl: Update.
3829 * gnulib/import/canonicalize-lgpl: Update.
3830 * gnulib/import/config: Update.
3831 * gnulib/import/dirent: Update.
3832 * gnulib/import/dirfd: Update.
3833 * gnulib/import/dirname-lgpl: Update.
3834 * gnulib/import/dirname.h: Update.
3835 * gnulib/import/dosname.h: Update.
3836 * gnulib/import/errno: Update.
3837 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
3838 * gnulib/import/extra/snippet/c++defs.h: Update.
3839 * gnulib/import/extra/snippet/warn-on-use.h: Update.
3840 * gnulib/import/extra/update-copyright: Update.
3841 * gnulib/import/flexmember.h: Update.
3842 * gnulib/import/float+.h: Update.
3843 * gnulib/import/float: Update.
3844 * gnulib/import/float: Update.
3845 * gnulib/import/fnmatch: Update.
3846 * gnulib/import/fnmatch: Update.
3847 * gnulib/import/fnmatch_loop: Update.
3848 * gnulib/import/fpucw.h: Update.
3849 * gnulib/import/frexp: Update.
3850 * gnulib/import/frexpl: Update.
3851 * gnulib/import/gettimeofday: Update.
3852 * gnulib/import/hard-locale: Update.
3853 * gnulib/import/hard-locale.h: Update.
3854 * gnulib/import/inttypes: Update.
3855 * gnulib/import/isnan: Update.
3856 * gnulib/import/isnand-nolibm.h: Update.
3857 * gnulib/import/isnand: Update.
3858 * gnulib/import/isnanl-nolibm.h: Update.
3859 * gnulib/import/isnanl: Update.
3860 * gnulib/import/itold: Update.
3861 * gnulib/import/limits: Update.
3862 * gnulib/import/localcharset: Update.
3863 * gnulib/import/localcharset.h: Update.
3864 * gnulib/import/lstat: Update.
3865 * gnulib/import/m4/00gnulib: Update.
3866 * gnulib/import/m4/absolute-header: Update.
3867 * gnulib/import/m4/alloca: Update.
3868 * gnulib/import/m4/canonicalize: Update.
3869 * gnulib/import/m4/codeset: Update.
3870 * gnulib/import/m4/configmake: Update.
3871 * gnulib/import/m4/dirent_h: Update.
3872 * gnulib/import/m4/dirfd: Update.
3873 * gnulib/import/m4/dirname: Update.
3874 * gnulib/import/m4/double-slash-root: Update.
3875 * gnulib/import/m4/eealloc: Update.
3876 * gnulib/import/m4/errno_h: Update.
3877 * gnulib/import/m4/exponentd: Update.
3878 * gnulib/import/m4/exponentl: Update.
3879 * gnulib/import/m4/extensions: Update.
3880 * gnulib/import/m4/extern-inline: Update.
3881 * gnulib/import/m4/fcntl-o: Update.
3882 * gnulib/import/m4/flexmember: Update.
3883 * gnulib/import/m4/float_h: Update.
3884 * gnulib/import/m4/fnmatch: Update.
3885 * gnulib/import/m4/fpieee: Update.
3886 * gnulib/import/m4/frexp: Update.
3887 * gnulib/import/m4/frexpl: Update.
3888 * gnulib/import/m4/gettimeofday: Update.
3889 * gnulib/import/m4/glibc21: Update.
3890 * gnulib/import/m4/gnulib-cache: Update.
3891 * gnulib/import/m4/gnulib-common: Update.
3892 * gnulib/import/m4/gnulib-comp: Update.
3893 * gnulib/import/m4/gnulib-tool: Update.
3894 * gnulib/import/m4/hard-locale: Update.
3895 * gnulib/import/m4/include_next: Update.
3896 * gnulib/import/m4/inttypes-pri: Update.
3897 * gnulib/import/m4/inttypes: Update.
3898 * gnulib/import/m4/isnand: Update.
3899 * gnulib/import/m4/isnanl: Update.
3900 * gnulib/import/m4/largefile: Update.
3901 * gnulib/import/m4/limits-h: Update.
3902 * gnulib/import/m4/localcharset: Update.
3903 * gnulib/import/m4/locale-fr: Update.
3904 * gnulib/import/m4/locale-ja: Update.
3905 * gnulib/import/m4/locale-zh: Update.
3906 * gnulib/import/m4/longlong: Update.
3907 * gnulib/import/m4/lstat: Update.
3908 * gnulib/import/m4/malloc: Update.
3909 * gnulib/import/m4/malloca: Update.
3910 * gnulib/import/m4/math_h: Update.
3911 * gnulib/import/m4/mbrtowc: Update.
3912 * gnulib/import/m4/mbsinit: Update.
3913 * gnulib/import/m4/mbsrtowcs: Update.
3914 * gnulib/import/m4/mbstate_t: Update.
3915 * gnulib/import/m4/memchr: Update.
3916 * gnulib/import/m4/memmem: Update.
3917 * gnulib/import/m4/mmap-anon: Update.
3918 * gnulib/import/m4/multiarch: Update.
3919 * gnulib/import/m4/nocrash: Update.
3920 * gnulib/import/m4/off_t: Update.
3921 * gnulib/import/m4/pathmax: Update.
3922 * gnulib/import/m4/rawmemchr: Update.
3923 * gnulib/import/m4/readlink: Update.
3924 * gnulib/import/m4/rename: Update.
3925 * gnulib/import/m4/rmdir: Update.
3926 * gnulib/import/m4/signal_h: Update.
3927 * gnulib/import/m4/ssize_t: Update.
3928 * gnulib/import/m4/stat: Update.
3929 * gnulib/import/m4/stdbool: Update.
3930 * gnulib/import/m4/stddef_h: Update.
3931 * gnulib/import/m4/stdint: Update.
3932 * gnulib/import/m4/stdio_h: Update.
3933 * gnulib/import/m4/stdlib_h: Update.
3934 * gnulib/import/m4/strchrnul: Update.
3935 * gnulib/import/m4/string_h: Update.
3936 * gnulib/import/m4/strstr: Update.
3937 * gnulib/import/m4/strtok_r: Update.
3938 * gnulib/import/m4/sys_socket_h: Update.
3939 * gnulib/import/m4/sys_stat_h: Update.
3940 * gnulib/import/m4/sys_time_h: Update.
3941 * gnulib/import/m4/sys_types_h: Update.
3942 * gnulib/import/m4/time_h: Update.
3943 * gnulib/import/m4/unistd_h: Update.
3944 * gnulib/import/m4/warn-on-use: Update.
3945 * gnulib/import/m4/wchar_h: Update.
3946 * gnulib/import/m4/wchar_t: Update.
3947 * gnulib/import/m4/wctype_h: Update.
3948 * gnulib/import/m4/wint_t: Update.
3949 * gnulib/import/malloc: Update.
3950 * gnulib/import/malloca: Update.
3951 * gnulib/import/malloca.h: Update.
3952 * gnulib/import/math: Update.
3953 * gnulib/import/math: Update.
3954 * gnulib/import/mbrtowc: Update.
3955 * gnulib/import/mbsinit: Update.
3956 * gnulib/import/mbsrtowcs-impl.h: Update.
3957 * gnulib/import/mbsrtowcs-state: Update.
3958 * gnulib/import/mbsrtowcs: Update.
3959 * gnulib/import/memchr: Update.
3960 * gnulib/import/memmem: Update.
3961 * gnulib/import/pathmax.h: Update.
3962 * gnulib/import/rawmemchr: Update.
3963 * gnulib/import/readlink: Update.
3964 * gnulib/import/ref-add.sin: Update.
3965 * gnulib/import/ref-del.sin: Update.
3966 * gnulib/import/rename: Update.
3967 * gnulib/import/rmdir: Update.
3968 * gnulib/import/same-inode.h: Update.
3969 * gnulib/import/signal: Update.
3970 * gnulib/import/stat: Update.
3971 * gnulib/import/stdbool: Update.
3972 * gnulib/import/stddef: Update.
3973 * gnulib/import/stdint: Update.
3974 * gnulib/import/stdio: Update.
3975 * gnulib/import/stdlib: Update.
3976 * gnulib/import/str-two-way.h: Update.
3977 * gnulib/import/strchrnul: Update.
3978 * gnulib/import/streq.h: Update.
3979 * gnulib/import/string: Update.
3980 * gnulib/import/stripslash: Update.
3981 * gnulib/import/strnlen1: Update.
3982 * gnulib/import/strnlen1.h: Update.
3983 * gnulib/import/strstr: Update.
3984 * gnulib/import/strtok_r: Update.
3985 * gnulib/import/sys_stat: Update.
3986 * gnulib/import/sys_time: Update.
3987 * gnulib/import/sys_types: Update.
3988 * gnulib/import/time: Update.
3989 * gnulib/import/unistd: Update.
3990 * gnulib/import/unistd: Update.
3991 * gnulib/import/verify.h: Update.
3992 * gnulib/import/wchar: Update.
3993 * gnulib/import/wctype: Update.
3994 * gnulib/import/flexmember.h: New file.
3995 * gnulib/import/hard-locale.c: New file.
3996 * gnulib/import/hard-locale.h: New file.
3997 * gnulib/import/limits.in.h: New file.
3998 * gnulib/import/m4/flexmember.m4: New file.
3999 * gnulib/import/m4/hard-locale.m4: New file.
4000 * gnulib/import/m4/limits-h.m4: New file.
4001
da804164
PA
40022016-10-18 Pedro Alves <palves@redhat.com>
4003
4004 * common/common-defs.h: Include "gdb_unique_ptr.h".
4005 * common/gdb_unique_ptr.h: New.
4006
ae71e7b5
MR
40072016-10-18 Maciej W. Rozycki <macro@imgtec.com>
4008
4009 * i386-tdep.c (i386_mpx_info_bounds): Make sure the architecture
4010 is `bfd_arch_i386' before proceeding.
4011 (i386_mpx_set_bounds): Likewise.
4012
b348d11b
MR
40132016-10-18 Maciej W. Rozycki <macro@imgtec.com>
4014
4015 * tilegx-tdep.c (tilegx_analyze_prologue): Use the `long long'
4016 type for `operands'.
4017
5bad3170
SM
40182016-10-17 Simon Marchi <simon.marchi@ericsson.com>
4019
4020 * mi/mi-main.c (mi_cmd_trace_save): Check if argument is present
4021 before using it.
4022
5562a44e
PA
40232016-10-17 Pedro Alves <palves@redhat.com>
4024
4025 * charset.h (class wchar_iterator) [PHONY_ICONV] <m_desc>: Use
4026 'int' as type.
4027
754c39c2
UW
40282016-10-14 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
4029 Ulrich Weigand <uweigand@de.ibm.com>
4030
4031 * solib-aix.c (solib_aix_bfd_open): Call solib_find so that sysroot
4032 path is set properly if program has a dependency on .a archive and
4033 sysroot is set via set sysroot command.
4034
afb1110b
MM
40352016-10-14 Markus Metzger <markus.t.metzger@intel.com>
4036
4037 * nat/linux-btrace.c: Remove leftover comment.
4038
8ffc1bb1
EZ
40392016-10-14 Eli Zaretskii <eliz@gnu.org>
4040
4041 * common/common-defs.h [HAVE_STRINGS_H]: Include strings.h if
4042 available, to get prototypes of 'strcasecmp' and 'strncasecmp'.
4043
1f2e9c5e
PA
40442016-10-13 Pedro Alves <palves@redhat.com>
4045
4046 * contrib/ari/gdb_ari.sh (boolean): Suggest bool instead.
4047 (false, true): Remove checks.
4048
af533a5f
TT
40492016-10-12 Tom Tromey <tom@tromey.com>
4050
4051 * machoread.c (macho_symfile_read_all_oso): Use std::string.
4052
d1a760cb
TT
40532016-10-12 Tom Tromey <tom@tromey.com>
4054
4055 * tracepoint.c (trace_dump_command): Remove unnecessary
4056 null_cleanup.
4057
cda6c55b
TT
40582016-10-12 Tom Tromey <tom@tromey.com>
4059
4060 * valprint.c (generic_emit_char, count_next_character)
4061 (generic_printstr): Update.
4062 * charset.c (struct wchar_iterator): Move to charset.h.
4063 (wchar_iterator::wchar_iterator): Rename from
4064 make_wchar_iterator, turn into a constructor.
4065 (wchar_iterator::~wchar_iterator): Rename from
4066 do_cleanup_iterator, turn into a destructor.
4067 (make_cleanup_wchar_iterator): Remove.
4068 (wchar_iterator::iterate): Rename from wchar_iterate. Remove
4069 "iter" argument. Update.
4070 * charset.h: Include <vector>.
4071 (class wchar_iterator): New class, from old struct
4072 wchar_iterator.
4073 (make_wchar_iterator, make_cleanup_wchar_iterator): Don't
4074 declare.
4075
816d7b53
TT
40762016-10-12 Tom Tromey <tom@tromey.com>
4077
4078 * selftest.c: Include <vector>, not "vec.h".
4079 (self_test_function_ptr): Remove.
4080 (tests): Now a std::vector.
4081 (register_self_test, run_self_tests): Update.
4082
bfd28288
PA
40832016-10-13 Pedro Alves <palves@redhat.com>
4084 Tom Tromey <tom@tromey.com>
4085
4086 * tid-parse.h (tid_range_parser): New class.
4087 (enum tid_range_state): Move into tid_range_parser's scope.
4088 Remove TID_RANGE_ prefix from all values.
4089 (tid_range_parser_get_tid, tid_range_parser_get_tid_range)
4090 (tid_range_parser_star_range, tid_range_parser_finished)
4091 (tid_range_parser_skip, tid_range_parser_qualified): Don't
4092 declare.
4093 (tid_is_in_list): Update comment.
4094 * tid-parse.c (tid_range_parser::tid_range_parser): New.
4095 (init, finished, get_string, skip, tid_is_qualified)
4096 (get_tid_or_range, get_tid_range, get_tid, star_range): Rename;
4097 turn into methods.
4098 (tid_is_in_list): Adjust.
4099 * cli/cli-utils.h (number_or_range_parser): New class.
4100 (init_number_or_range, get_number_or_range)
4101 (number_range_setup_range): Don't declare.
4102 * cli/cli-utils.c
4103 (number_or_range_parser::number_or_range_parser): New.
4104 (init_number_or_range, get_number_or_range)
4105 (number_range_setup_range): Rename; turn into methods.
4106 (number_is_in_list): Adjust.
4107 * breakpoint.c (map_breakpoint_numbers): Adjust. Use bool.
4108 (trace_pass_command, get_tracepoint_by_number): Adjust.
4109 * breakpoint.h (get_tracepoint_by_number): Adjust.
4110 * inferior.c (detach_inferior_command, kill_inferior_command)
4111 (remove_inferior_command): Adjust.
4112 * linespec.c (decode_line_2): Adjust.
4113 * memattr.c (mem_enable_command, mem_disable_command)
4114 (mem_delete_command): Adjust.
4115 * printcmd.c (map_display_numbers): Adjust.
4116 * reverse.c (delete_bookmark_command, bookmarks_info): Adjust.
4117 * thread.c (thread_apply_command): Adjust.
4118
4a2f4826
AK
41192016-10-12 Anton Kolesov <anton.kolesov@synopsys.com>
4120
4121 * arc-newlib-tdep.c: New file.
4122 * configure.tgt: Add newlib support for ARC.
4123
aaf43c48
AK
41242016-10-12 Anton Kolesov <anton.kolesov@synopsys.com>
4125
4126 * arc-tdep.h (struct gdbarch_tdep) <jb_pc>: New field.
4127 * arc-tdep.c (arc_get_longjmp_target): New function.
4128 (arc_gdbarch_init): Set get_longjmp_target if jb_pc is non-negative.
4129 (arc_dump_tdep): Print jb_pc.
4130
b845c31e
AK
41312016-10-12 Anton Kolesov <anton.kolesov@synopsys.com>
4132
4133 * arc-tdep.h (struct gdbarch_tdep): New.
4134 * arc-tdep.c (arc_gdbarch_init): Allocate gdbarch_tdep.
4135
187f5d00
YQ
41362016-10-12 Yao Qi <yao.qi@linaro.org>
4137
4138 PR tdep/20682
4139 * aarch64-tdep.c: Replace 32 with AARCH64_D_REGISTER_COUNT.
4140 (aarch64_analyze_prologue): Extend array 'regs' for D registers.
4141 Assert that operand 0 and 1 can be X or D registers. Update
4142 register number for D registers. Update registers in frame
4143 cache.
4144 * aarch64-tdep.h (AARCH64_D_REGISTER_COUNT): New macro.
4145
a1078bea
YQ
41462016-10-10 Yao Qi <yao.qi@linaro.org>
4147
4148 * arch/arm.h (enum arm_breakpoint_kinds): New.
4149 * arm-tdep.c (arm_remote_breakpoint_from_pc): Use
4150 ARM_BP_KIND_THUMB2.
4151
97ce08cb
YQ
41522016-10-10 Yao Qi <yao.qi@linaro.org>
4153
4154 * m32c-tdep.c (m32c_gdbarch_init): Rename local 'arch' by
4155 'gdbarch'.
4156
ff12a659
YQ
41572016-10-10 Yao Qi <yao.qi@linaro.org>
4158
4159 * v850-tdep.c (v850_breakpoint_from_pc): Use the right
4160 breakpoint instruction.
4161 (v850_dbtrap_breakpoint_from_pc): Remove.
4162 (v850_gdbarch_init): Update.
4163
49d06418
SM
41642016-10-08 Simon Marchi <simon.marchi@polymtl.ca>
4165
4166 * ui-out.c (push_level): Remove "id" parameter.
4167 (ui_out_begin): Update call.
4168
1a307001
JB
41692016-10-07 Joel Brobecker <brobecker@adacore.com>
4170
4171 GDB 7.12 released.
4172
68dadef5
MM
41732016-10-07 Markus Metzger <markus.t.metzger@intel.com>
4174
4175 * python/python.c (gdbpy_decode_line): Call
4176 string_to_event_location_basic instead of new_linespec_location.
4177
1fb77080
SDJ
41782016-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
4179
4180 * target.c (target_supports_multi_process): New function, moved
4181 from...
4182 * target.h (target_supports_multi_process): ... here. Remove
4183 macro.
4184 * target/target.h (target_supports_multi_process): New prototype.
4185
ddb6d633
PA
41862016-10-06 Pedro Alves <palves@redhat.com>
4187
4188 * cp-valprint.c (vtbl_ptr_name): Write "extern const" instead of
4189 EXPORTED_CONST.
4190 * stub-termcap.c: Remove __cplusplus checks.
4191 * common/common-defs.h [!__cplusplus] (EXTERN_C, EXTERN_C_PUSH,
4192 EXTERN_C_POP): Delete.
4193 * common/common-exceptions.h (GDB_XCPT_SJMP): Update comments.
4194 (GDB_XCPT) [!__cplusplus]: Delete.
4195 (throw_exception, throw_exception_sjlj): Update comments.
4196 * guile/guile-internal.h (as_a_scm_t_subr) [!__cplusplus]: Delete.
4197 * guile/guile.c (extension_language_guile): Write "extern const"
4198 instead of EXPORTED_CONST.
4199 * features/feature_to_c.sh: Don't emit !__cplusplus code. Write
4200 "extern const" instead of EXPORTED_CONST.
4201
33fa2c6e
DE
42022016-10-06 Doug Evans <dje@google.com>
4203
4204 * python/py-value.c (valpy_long): Handle unsigned values.
4205
d73f9c4b
SM
42062016-10-06 Simon Marchi <simon.marchi@ericsson.com>
4207
4208 * frame.h: Forward-declare struct ui_out.
4209
9c37b5ae
TT
42102016-10-06 Tom Tromey <tom@tromey.com>
4211
4212 * MAINTAINERS: Remove Java test maintainer.
4213 * varobj.h (java_varobj_ops): Don't declare.
4214 * valprint.h (struct value_print_options)
4215 <pascal_static_field_print>: Update comment.
4216 * utils.c (producer_is_gcc): Remove java reference.
4217 * symtab.h (struct general_symbol_info): Remove java references.
4218 (SYMBOL_SEARCH_NAME): Likewise.
4219 * objfiles.c (allocate_objfile): Update comment.
4220 * linespec.c (find_linespec_symbols): Remove java references.
4221 * gnu-v3-abi.c (gnuv3_rtti_type, gnuv3_baseclass_offset): Remove
4222 java references.
4223 * gdbtypes.h (struct cplus_struct_type) <is_java>: Remove.
4224 (TYPE_CPLUS_REALLY_JAVA): Remove.
4225 * c-varobj.c (enum vsections): Update comment.
4226 * symtab.c (symbol_set_language, symbol_set_names)
4227 (symbol_natural_name, symbol_demangled_name)
4228 (demangle_for_lookup, symbol_matches_domain)
4229 (default_make_symbol_completion_list_break_on_1): Remove java
4230 references.
4231 (JAVA_PREFIX, JAVA_PREFIX_LEN): Remove.
4232 * psymtab.c (match_partial_symbol, psymtab_search_name)
4233 (lookup_partial_symbol): Remove java references.
4234 * dwarf2read.c (find_slot_in_mapped_hash): Remove java references.
4235 (add_partial_symbol, dwarf2_compute_name, dwarf2_physname)
4236 (dwarf2_add_member_fn, is_vtable_name, read_structure_type)
4237 (process_structure_scope, read_subroutine_type)
4238 (read_subrange_type, load_partial_dies)
4239 (new_symbol_full, determine_prefix, typename_concat)
4240 (dwarf2_name): Remove java references.
4241 (set_cu_language): Treat Java as C++.
4242 * c-typeprint.c (c_type_print_args): Remove java reference.
4243 * defs.h (enum language) <language_java>: Remove.
4244 * Makefile.in (SFILES, HFILES_NO_SRCDIR, COMMON_OBS, YYFILES)
4245 (YYOBJ, local-maintainer-clean): Don't mention java files.
4246 * jv-exp.y, jv-lang.c, jv-lang.h, jv-typeprint.c, jv-valprint.c,
4247 jv-varobj.c: Remove.
4248
78b86327
MR
42492016-10-06 Maciej W. Rozycki <macro@imgtec.com>
4250
4251 * mips-tdep.c (mips_pseudo_register_type): Make FCRs always
4252 32-bit.
4253
a6912260
MR
42542016-10-06 Maciej W. Rozycki <macro@imgtec.com>
4255
4256 * mips-tdep.c (mips_pseudo_register_type): Rearrange comments
4257 throughout.
4258
c620c3e4
MM
42592016-10-06 Markus Metzger <markus.t.metzger@intel.com>
4260
4261 * stack.c (frame_info): Call val_print_not_saved instead of
4262 val_print_unavailable if frame_id check fails.
4263
4a556533
PA
42642016-10-06 Pedro Alves <palves@redhat.com>
4265
4266 * jit.c (free_objfile_data): Delete the JIT breakpoint and clear
4267 the cached code address.
4268
ee8da4b8
DE
42692016-10-06 Doug Evans <dje@google.com>
4270
4271 * features/aarch64-core.xml (cpsr_flags): Elide "type" and specify
4272 "end" in all fields.
4273 * features/aarch64.c: Regenerate.
4274 * features/i386/32bit-mpx.xml (_bndcfgu): Specify type of "preserved"
4275 and "enabled" fields. Correct size of "enabled" field.
4276 * features/i386/64bit-mpx.xml (_bndcfgu): Specify type of "preserved"
4277 and "enabled" fields.
4278 * features/i386/i386-avx-mpx-linux.c: Regenerate.
4279 * features/i386/i386-avx-mpx.c: Regenerate.
4280 * features/i386/i386-avx512-linux.c: Regenerate.
4281 * features/i386/i386-avx512.c: Regenerate.
4282 * features/i386/i386-mpx-linux.c: Regenerate.
4283 * features/i386/i386-mpx.c: Regenerate.
4284 * features/arc-arcompact.c: Regenerate.
4285 * features/arc-v2.c: Regenerate.
4286 * xml-tdesc.c (tdesc_start_field): Require "end" spec. Single bit
4287 fields default to "bool" type.
4288
4289 Revert 2016-03-15 Doug Evans <dje@google.com>
4290 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
4291 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
4292 * features/i386/64bit-core.xml (i386_eflags): Ditto.
4293 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
4294 * features/i386/x32-core.xml (i386_eflags): Ditto.
4295
e742d386
TT
42962016-10-05 Tom Tromey <tom@tromey.com>
4297
4298 PR breakpoints/20653:
4299 * location.c (string_to_explicit_location): Use NULL, not '\0'.
4300
3e611445
TT
43012016-10-05 Tom Tromey <tom@tromey.com>
4302
4303 PR symtab/20652:
4304 * psymtab.c (psymbol_compare): Correctly compare "ginfo.value"
4305 fields.
4306
f206f69c
AA
43072016-10-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
4308
4309 * dwarf2expr.c (dwarf_expr_require_composition): Allow
4310 DW_OP_GNU_uninit.
4311 (execute_stack_op): Use dwarf_expr_require_composition instead of
4312 copying its logic.
4313
ed2f09e1
AK
43142016-10-05 Anton Kolesov <anton.kolesov@synopsys.com>
4315
dba48492 4316 * arc-tdep.c (arc_frame_prev_register): Remove annoying log message.
ed2f09e1 4317
5878efd4
YQ
43182016-10-05 Yao Qi <yao.qi@linaro.org>
4319
4320 * features/Makefile (WHICH): Add
4321 rs6000/powerpc-isa205-32l, rs6000/powerpc-isa205-64l,
4322 rs6000/powerpc-isa205-altivec32l, rs6000/powerpc-isa205-altivec64l,
4323 rs6000/powerpc-isa205-vsx32l and rs6000/powerpc-isa205-vsx64l.
4324 * regformats/rs6000/powerpc-isa205-32l.dat: Regenerated.
4325 * regformats/rs6000/powerpc-isa205-64l.dat: Likewise.
4326 * regformats/rs6000/powerpc-isa205-altivec32l.dat: Likewise.
4327 * regformats/rs6000/powerpc-isa205-altivec64l.dat: Likewise.
4328 * regformats/rs6000/powerpc-isa205-vsx32l.dat: Likewise.
4329 * regformats/rs6000/powerpc-isa205-vsx64l.dat: Likewise.
4330
defaaad5
YQ
43312016-10-05 Yao Qi <yao.qi@linaro.org>
4332
4333 * features/Makefile (XMLTOC): Add s390-tevx-linux64.xml,
4334 s390-vx-linux64.xml, s390x-tevx-linux64.xml and
4335 s390x-vx-linux64.xml.
4336
414c838a
YQ
43372016-10-05 Yao Qi <yao.qi@linaro.org>
4338
4339 * features/Makefile: Remove i386/*-expedite. Add i386-expedite,
4340 amd64-expedite, and x32-expedite.
4341
0a69eedb
YQ
43422016-10-05 Terry Guo <terry.guo@arm.com>
4343 Yao Qi <yao.qi@linaro.org>
4344
4345 * arm-tdep.c: Adjust includes.
4346 * features/Makefile (WHICH): Add "arm/" directory to arm
4347 target descriptions.
4348 (XMLTOC): Likewise.
4349 (arm/arm-with-iwmmxt.dat): Adjust the path for
4350 dependencies.
4351 * features/arm-core.xml: Moved to ...
4352 * features/arm/arm-core.xml: ... it.
4353 * features/arm-fpa.xml: Moved to ...
4354 * features/arm/arm-fpa.xml: ... it.
4355 * features/arm-m-profile.xml: Moved to ...
4356 * features/arm/arm-m-profile.xm: ... it.
4357 * features/arm-vfpv2.xml: Moved to ...
4358 * features/arm/arm-vfpv2.xm: ... it.
4359 * features/arm-vfpv3.xml: Moved to ...
4360 * features/arm/arm-vfpv3.xml: ... it.
4361 * features/arm-with-iwmmxt.c: Moved to ...
4362 * features/arm/arm-with-iwmmxt.c: ... it.
4363 * features/arm-with-iwmmxt.xml: Moved to ...
4364 * features/arm/arm-with-iwmmxt.xml: ... it.
4365 * features/arm-with-m-fpa-layout.c: Moved to ...
4366 * features/arm/arm-with-m-fpa-layout.c: ... it.
4367 * features/arm-with-m-fpa-layout.xml: Moved to ...
4368 * features/arm/arm-with-m-fpa-layout.xml: ... it.
4369 * features/arm-with-m-vfp-d16.c: Moved to ...
4370 * features/arm/arm-with-m-vfp-d16.c: ... it.
4371 * features/arm-with-m-vfp-d16.xml: Moved to ...
4372 * features/arm/arm-with-m-vfp-d16.xml: ... it.
4373 * features/arm-with-m.c: Moved to ...
4374 * features/arm/arm-with-m.c: ... it.
4375 * features/arm-with-m.xml: Moved to ...
4376 * features/arm/arm-with-m.xm: ... it.
4377 * features/arm-with-neon.c: Moved to ...
4378 * features/arm/arm-with-neon.c: ... it.
4379 * features/arm-with-neon.xml: Moved to ...
4380 * features/arm/arm-with-neon.xml: ... it.
4381 * features/arm-with-vfpv2.c: Moved to ...
4382 * features/arm/arm-with-vfpv2.c: ... it.
4383 * features/arm-with-vfpv2.xml: Moved to ...
4384 * features/arm/arm-with-vfpv2.xml: ... it.
4385 * features/arm-with-vfpv3.c: Moved to ...
4386 * features/arm/arm-with-vfpv3.c: ... it.
4387 * features/arm-with-vfpv3.xml: Moved to ...
4388 * features/arm/arm-with-vfpv3.xml: ... it.
4389 * features/xscale-iwmmxt.xml: Moved to ...
4390 * features/arm/xscale-iwmmxt.xml: ... it.
4391
4034d0ff
AT
43922016-10-03 Antoine Tremblay <antoine.tremblay@ericsson.com>
43932016-10-03 Simon Marchi <simon.marchi@ericsson.com>
4394
4395 PR gdb/20487
4396 * NEWS: Mention new frame field of =thread-selected event.
4397 * cli/cli-decode.c (add_cmd): Initialize c->suppress_notification.
4398 (add_com_suppress_notification): New function definition.
4399 (cmd_func): Set and restore the suppress_notification flag.
4400 * cli/cli-deicode.h (struct cmd_list_element)
4401 <suppress_notification>: New field.
4402 * cli/cli-interp.c (cli_suppress_notification): New global variable.
4403 (cli_on_user_selected_context_changed): New function.
4404 (_initialize_cli_interp): Attach to user_selected_context_changed
4405 observer.
4406 * command.h (struct cli_suppress_notification): New structure.
4407 (cli_suppress_notification): New global variable declaration.
4408 (add_com_suppress_notification): New function declaration.
4409 * defs.h (enum user_selected_what_flag): New enum.
4410 (user_selected_what): New enum flag type.
4411 * frame.h (print_stack_frame_to_uiout): New function declaration.
4412 * gdbthread.h (print_selected_thread_frame): New function declaration.
4413 * inferior.c (print_selected_inferior): New function definition.
4414 (inferior_command): Remove printing of inferior/thread/frame switch
4415 notifications, notify user_selected_context_changed observer.
4416 * inferior.h (print_selected_inferior): New function declaration.
4417 * mi/mi-cmds.c (struct mi_cmd): Add user_selected_context
4418 suppression to stack-select-frame and thread-select commands.
4419 * mi/mi-interp.c (struct mi_suppress_notification)
4420 <user_selected_context>: Initialize.
4421 (mi_user_selected_context_changed): New function definition.
4422 (_initialize_mi_interp): Attach to user_selected_context_changed.
4423 * mi/mi-main.c (mi_cmd_thread_select): Print thread selection reply.
4424 (mi_execute_command): Handle notification suppression. Notify
4425 user_selected_context_changed observer on thread change instead of printing
4426 event directly. Don't send it if command already sends the notification.
4427 (command_notifies_uscc_observer): New function.
4428 (mi_cmd_execute): Don't handle notification suppression.
4429 * mi/mi-main.h (struct mi_suppress_notification)
4430 <user_selected_context>: New field.
4431 * stack.c (print_stack_frame_to_uiout): New function definition.
4432 (select_frame_command): Notify user_selected_context_changed
4433 observer.
4434 (frame_command): Call print_selected_thread_frame if there's no frame
4435 change or notify user_selected_context_changed observer if there is.
4436 (up_command): Notify user_selected_context_changed observer.
4437 (down_command): Likewise.
4438 (_initialize_stack): Suppress user_selected_context notification for
4439 command select-frame.
4440 * thread.c (thread_command): Notify
4441 user_selected_context_changed if the thread has changed, print
4442 thread info directly if it hasn't.
4443 (do_captured_thread_select): Do not print thread switch event.
4444 (print_selected_thread_frame): New function definition.
4445 * tui/tui-interp.c (tui_on_user_selected_context_changed):
4446 New function definition.
4447 (_initialize_tui_interp): Attach to user_selected_context_changed
4448 observer.
4449
bb805577
JK
44502016-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
4451
4452 PR gdb/20609 - attach of JIT-debug-enabled inf 7.11.1 regression
4453 * exec.c (exec_file_locate_attach): Add parameter defer_bp_reset.
4454 Use it.
4455 * gdbcore.h (exec_file_locate_attach): Add parameter defer_bp_reset.
4456 * infcmd.c (setup_inferior): Update caller.
4457 * remote.c (remote_add_inferior): Likewise.
4458
6d61dee5
PA
44592016-09-28 Pedro Alves <palves@redhat.com>
4460
4461 * infcall.c (run_inferior_call): Remove input from the event
4462 loop while running the infcall.
4463
ca90e760
FH
44642016-09-27 Fredrik Hederstierna <fredrik.hederstierna@verisure.com>
4465
4466 * arm-tdep.c (arm_m_addr_is_magic): New function.
4467 (arm_addr_bits_remove): Call arm_m_addr_is_magic.
4468 (arm_m_exception_unwind_sniffer): Likewise.
4469
9eee20eb
JT
44702016-09-23 Jon Turney <jon.turney@dronecode.org.uk>
4471
4472 * windows-nat.c (windows_delete_thread): Adjusting call to
4473 target_mourn_inferior to include ptid_t argument.
4474
a97e29d2
TT
44752016-09-23 Tom Tromey <tom@tromey.com>
4476
4477 * utils.h (make_cleanup_dyn_string_delete): Remove declaration.
4478 * utils.c: Don't include dyn-string.h.
4479 (do_dyn_string_delete, make_cleanup_dyn_string_delete): Remove.
4480 * cli/cli-cmds.c: Include <string>. Don't include dyn-string.h.
4481 (argv_to_string): Rename. Change return type to std::string.
4482 (alias_command): Use std::string.
4483
cfe826d4
TT
44842016-09-23 Tom Tromey <tom@tromey.com>
4485
4486 * objfiles.c: Include <vector>.
4487 (objfile_relocate): Use std::vector.
4488
ab8b80a8
TT
44892016-09-23 Tom Tromey <tom@tromey.com>
4490
4491 * rust-lang.c: Include <string> and <vector>.
4492 (rust_evaluate_funcall): Use std::vector, std::string.
4493 (rust_evaluate_subexp): Use std::string.
4494 (rust_lookup_symbol_nonlocal): Use std::string.
4495
05d49c37
TT
44962016-09-23 Tom Tromey <tom@tromey.com>
4497
4498 * cp-namespace.c: Include <string>.
4499 (cp_search_static_and_baseclasses)
4500 (cp_lookup_symbol_imports_or_template, find_symbol_in_baseclass):
4501 Use std::string.
4502
5809899d
TT
45032016-09-23 Tom Tromey <tom@tromey.com>
4504
4505 * break-catch-sig.c: Include <string>.
4506 (signal_catchpoint_print_one): Use std::string.
4507
3e25a500
TT
45082016-09-23 Tom Tromey <tom@tromey.com>
4509
4510 * utils.c (struct restore_ui_out_closure): Remove.
4511 * objfiles.h (terminate_minimal_symbol_table): Don't declare.
4512
97e64e5a
YQ
45132016-09-23 Yao Qi <yao.qi@linaro.org>
4514
4515 * nat/linux-osdata.c (linux_xfer_osdata_threads): Replace
4516 sprintf with xsnprintf.
4517 (linux_xfer_osdata_fds): Likewise.
4518
503b1c39
PA
45192016-09-23 Pedro Alves <palves@redhat.com>
4520
4521 * Makefile.in (SFILES): Add common/new-op.c.
4522 (COMMON_OBS): Add common/new-op.o.
4523 (new-op.o): New rule.
4524 * common/common-exceptions.h: Include <new>.
4525 (struct gdb_quit_bad_alloc): New type.
4526 * common/new-op.c: New file.
4527
de678454
EBM
45282016-09-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4529
4530 * rs6000-tdep.c (ppc_process_record_op31): Fix
4531 regcache_raw_read_unsigned call using the correct parameter type.
4532
fa42dd2e
AK
45332016-09-22 Anton Kolesov <anton.kolesov@synopsys.com>
4534
4535 * arc-tdep.c: Fix ARI warning for printf(%p).
4536
31da3f27
AK
45372016-09-21 Anton Kolesov <anton.kolesov@synopsys.com>
4538
4539 * MAINTAINERS (Write After Approval): Add Anton Kolesov.
4540
ad0a504f
AK
45412016-09-21 Anton Kolesov <anton.kolesov@synopsys.com>
4542
4543 * Makefile.in (ALL_TARGET_OBS): Add arc-tdep.o.
4544 (HFILES_NO_SRCDIR): Add arc-tdep.h.
4545 (ALLDEPFILES): Add arc-tdep.c.
4546 * NEWS: Mention new ARC port.
4547 * configure.tgt: Add ARC.
4548 * arc-tdep.c: New file.
4549 * arc-tdep.h: New file.
4550 * features/Makefile (XMLTOC): Add arc-v2.xml and arc-arcompact.xml.
4551 * features/arc-v2.xml: New file.
4552 * features/arc-v2.c: New file (generated).
4553 * features/arc-arcompact.xml: New file.
4554 * features/arc-arcompact.c: New file (generated).
4555
8aabe2e2
EBM
45562016-09-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4557
4558 * rs6000-tdep.c (ppc_process_record_op63): Fix return of instruction
4559 handlers.
4560
36cf1806
TT
45612016-09-21 Tom Tromey <tom@tromey.com>
4562
4563 PR gdb/20604:
4564 * top.h (quit_force): Update.
4565 * top.c (quit_force): Changed type of first argument. Don't
4566 evaluate expression. Pass NULL to kill_or_detach.
4567 * cli/cli-cmds.c (quit_command): Evaluate "args".
4568
74172ecf
SM
45692016-09-21 Simon Marchi <simon.marchi@ericsson.com>
4570
4571 * .gitignore: Ignore more files.
4572 * data-directory/.gitignore: Likewise.
4573
6ec2b213
EBM
45742016-09-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4575
4576 * rs6000-tdep.c (PPC_DQ): New macro.
4577 (ppc_process_record_op4): Add Power ISA 3.0 instructions.
4578 (ppc_process_record_op19): Likewise.
4579 (ppc_process_record_op31): Likewise.
4580 (ppc_process_record_op59): Likewise.
4581 (ppc_process_record_op60): Likewise.
4582 (ppc_process_record_op63): Likewise.
4583 (ppc_process_record): Likewise.
4584 (ppc_process_record_op61): New function.
4585
fc6cda2e
YQ
45862016-09-21 Yao Qi <yao.qi@linaro.org>
4587
4588 * aarch32-linux-nat.c (aarch32_gp_regcache_collect): Keep
4589 bits 20 to 23.
4590
12c58cd4
TT
45912016-09-20 Tom Tromey <tom@tromey.com>
4592
4593 * python/py-value.c (convert_value_from_python): Make PyInt_Check
4594 conditional on Python 2.
4595 * python/py-arch.c (archpy_disassemble): Make PyInt_Check
4596 conditional on Python 2.
4597
9f7efd5b
EBM
45982016-09-20 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4599
4600 * rs6000-tdep.c (ppc_process_record_op31): Fix record of Store String
4601 Word instructions.
4602
7d5adfe3
SDJ
46032016-09-20 Sergio Durigan Junior <sergiodj@redhat.com>
4604
4605 * fork-inferior.c (startup_inferior): Pass 'event_ptid' instead of
4606 'resume_ptid' to 'target_mourn_inferior'. Fix regression
4607 introduced by my last commit.
4608
66797541
PA
46092016-09-19 Pedro Alves <palves@redhat.com>
4610
4611 * common/gdb_locale.h [!ENABLE_NLS] (gettext, dgettext, dcgettext,
4612 textdomain, bindtextdomain): Delete macros.
4613 * main.c (captured_main) [!ENABLE_NLS]: Skip bintextdomain and
4614 textdomain calls.
4615
bc1e6c81
SDJ
46162016-09-19 Sergio Durigan Junior <sergiodj@redhat.com>
4617
4618 * darwin-nat.c (darwin_kill_inferior): Adjusting call to
4619 target_mourn_inferior to include ptid_t argument.
4620 * fork-child.c (startup_inferior): Likewise.
4621 * gnu-nat.c (gnu_kill_inferior): Likewise.
4622 * inf-ptrace.c (inf_ptrace_kill): Likewise.
4623 * infrun.c (handle_inferior_event_1): Likewise.
4624 * linux-nat.c (linux_nat_attach): Likewise.
4625 (linux_nat_kill): Likewise.
4626 * nto-procfs.c (interrupt_query): Likewise.
4627 (procfs_interrupt): Likewise.
4628 (procfs_kill_inferior): Likewise.
4629 * procfs.c (procfs_kill_inferior): Likewise.
4630 * record.c (record_mourn_inferior): Likewise.
4631 * remote-sim.c (gdbsim_kill): Likewise.
4632 * remote.c (remote_detach_1): Likewise.
4633 (remote_kill): Likewise.
4634 * target.c (target_mourn_inferior): Change declaration to accept
4635 new ptid_t argument; use gdb_assert on it.
4636 * target.h (target_mourn_inferior): Move function prototype from
4637 here...
4638 * target/target.h (target_mourn_inferior): ... to here. Adjust it
4639 to accept new ptid_t argument.
4640 * windows-nat.c (get_windows_debug_event): Adjusting call to
4641 target_mourn_inferior to include ptid_t argument.
4642
93689493
PA
46432016-09-18 Pedro Alves <palves@redhat.com>
4644
4645 * s390-linux-nat.c: Include <algorithm>.
4646
768adc05
PA
46472016-09-18 Pedro Alves <palves@redhat.com>
4648
4649 * breakpoint.c (hardware_watchpoint_inserted_in_range): Explicitly
4650 specify the std:min/std::max specialization.
4651 * exec.c (section_table_read_available_memory): Likewise.
4652 * remote.c (remote_read_qxfer): Likewise.
4653 * target.c (simple_verify_memory): Likewise.
4654
cd94f6d5
SM
46552016-09-16 Simon Marchi <simark@simark.ca>
4656
4657 * infrun.c (restore_current_uiout_cleanup): Move to ui-out.c.
4658 (print_stop_event): Use make_cleanup_restore_current_uiout.
4659 * python/python.c (execute_gdb_command): Likewise.
4660 * ui-out.c (restore_current_uiout_cleanup): Move from infrun.c.
4661 (make_cleanup_restore_current_uiout): New function definition.
4662 * ui-out.h (make_cleanup_restore_current_uiout): New function
4663 declaration.
4664 * utils.c (do_restore_ui_out): Remove.
4665 (make_cleanup_restore_ui_out): Remove.
4666 * utils.h (make_cleanup_restore_ui_out): Remove.
4667
325fac50
PA
46682016-09-16 Pedro Alves <palves@redhat.com>
4669
4670 * defs.h (min, max): Delete.
4671 * aarch64-tdep.c: Include <algorithm> and use std::min and
4672 std::max throughout.
4673 * aarch64-tdep.c: Likewise.
4674 * alpha-tdep.c: Likewise.
4675 * amd64-tdep.c: Likewise.
4676 * amd64-windows-tdep.c: Likewise.
4677 * arm-tdep.c: Likewise.
4678 * avr-tdep.c: Likewise.
4679 * breakpoint.c: Likewise.
4680 * btrace.c: Likewise.
4681 * ctf.c: Likewise.
4682 * disasm.c: Likewise.
4683 * doublest.c: Likewise.
4684 * dwarf2loc.c: Likewise.
4685 * dwarf2read.c: Likewise.
4686 * environ.c: Likewise.
4687 * exec.c: Likewise.
4688 * f-exp.y: Likewise.
4689 * findcmd.c: Likewise.
4690 * ft32-tdep.c: Likewise.
4691 * gcore.c: Likewise.
4692 * hppa-tdep.c: Likewise.
4693 * i386-darwin-tdep.c: Likewise.
4694 * i386-tdep.c: Likewise.
4695 * linux-thread-db.c: Likewise.
4696 * lm32-tdep.c: Likewise.
4697 * m32r-tdep.c: Likewise.
4698 * m88k-tdep.c: Likewise.
4699 * memrange.c: Likewise.
4700 * minidebug.c: Likewise.
4701 * mips-tdep.c: Likewise.
4702 * moxie-tdep.c: Likewise.
4703 * nds32-tdep.c: Likewise.
4704 * nios2-tdep.c: Likewise.
4705 * nto-procfs.c: Likewise.
4706 * parse.c: Likewise.
4707 * ppc-sysv-tdep.c: Likewise.
4708 * probe.c: Likewise.
4709 * record-btrace.c: Likewise.
4710 * remote.c: Likewise.
4711 * rs6000-tdep.c: Likewise.
4712 * rx-tdep.c: Likewise.
4713 * s390-linux-nat.c: Likewise.
4714 * s390-linux-tdep.c: Likewise.
4715 * ser-tcp.c: Likewise.
4716 * sh-tdep.c: Likewise.
4717 * sh64-tdep.c: Likewise.
4718 * source.c: Likewise.
4719 * sparc-tdep.c: Likewise.
4720 * symfile.c: Likewise.
4721 * target-memory.c: Likewise.
4722 * target.c: Likewise.
4723 * tic6x-tdep.c: Likewise.
4724 * tilegx-tdep.c: Likewise.
4725 * tracefile-tfile.c: Likewise.
4726 * tracepoint.c: Likewise.
4727 * valprint.c: Likewise.
4728 * value.c: Likewise.
4729 * xtensa-tdep.c: Likewise.
4730 * cli/cli-cmds.c: Likewise.
4731 * compile/compile-object-load.c: Likewise.
4732
8193adea
AA
47332016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4734
4735 * s390-linux-nat.c (PER_BIT, PER_EVENT_BRANCH, PER_EVENT_IFETCH)
4736 (PER_EVENT_STORE, PER_EVENT_NULLIFICATION)
4737 (PER_CONTROL_BRANCH_ADDRESS, PER_CONTROL_SUSPENSION)
4738 (PER_CONTROL_ALTERATION): New macros.
4739 (struct s390_debug_reg_state) <break_areas>: New member.
4740 (s390_forget_process): Free break_areas as well.
4741 (s390_linux_new_fork): Copy break_areas as well.
4742 (s390_prepare_to_resume): Install hardware breakpoints.
4743 (s390_can_use_hw_breakpoint): Indicate support for hardware
4744 breakpoints.
4745 (s390_insert_hw_breakpoint, s390_remove_hw_breakpoint): New
4746 linux_nat target methods.
4747 (_initialize_s390_nat): Register them.
4748
0e00e962
AA
47492016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4750
4751 * nat/linux-nat.h (lwp_is_stepping): New declaration.
4752 * linux-nat.c (lwp_is_stepping): New function.
4753
169fe0df
AA
47542016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4755
4756 * s390-linux-nat.c (gdbcmd.h): New include.
4757 (s390_show_debug_regs): New function.
4758 (s390_stopped_by_watchpoint): Call it, if show_debug_regs is set.
4759 (s390_prepare_to_resume): Likewise.
4760 (_initialize_s390_nat): Register the command "maint set
4761 show-debug-regs".
4762
373c3dad
AA
47632016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4764
4765 * s390-linux-nat.c (watch_areas): Remove variable. Replace by a
4766 member of...
4767 (struct s390_debug_reg_state): ...this. New struct.
4768 (struct s390_process_info): New struct.
4769 (s390_process_list): New variable.
4770 (s390_find_process_pid, s390_add_process, s390_process_info_get)
4771 (s390_get_debug_reg_state): New functions.
4772 (s390_stopped_by_watchpoint): Now access the watch_areas VEC via
4773 s390_get_debug_reg_state.
4774 (s390_prepare_to_resume): Likewise.
4775 (s390_insert_watchpoint): Likewise.
4776 (s390_remove_watchpoint): Likewise.
4777 (s390_forget_process, s390_linux_new_fork): New linux_nat target
4778 methods.
4779 (_initialize_s390_nat): Register them.
4780
17c84cca
AA
47812016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4782
4783 * s390-linux-nat.c (s390_watch_area): New typedef. Define a VEC.
4784 (watch_base): Remove variable.
4785 (watch_areas): New variable.
4786 (s390_stopped_by_watchpoint): Transform operations on the
4787 watch_base list to equivalent operations on the watch_areas VEC.
4788 (s390_prepare_to_resume): Likewise.
4789 (s390_insert_watchpoint): Likewise.
4790 (s390_remove_watchpoint): Likewise.
4791
9c2996c9
AA
47922016-09-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4793
4794 * s390-linux-nat.c (s390_prepare_to_resume): Use advertised lwp
4795 functions instead of accessing lwp_info structure members.
4796 (s390_mark_per_info_changed): New function.
4797 (s390_new_thread): Use it.
4798 (s390_refresh_per_info_cb): New function.
4799 (s390_refresh_per_info): Remove parameter. Refresh all lwps of
4800 the current process.
4801 (s390_insert_watchpoint): Adjust call to s390_refresh_per_info.
4802 (s390_remove_watchpoint): Likewise.
4803
e1b2624a
AA
48042016-09-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
4805
4806 * elfread.c (auxv.h): New include.
4807 (elf_gnu_ifunc_resolve_addr): Pass HWCAP to ifunc resolver.
4808
f5c4fcd9
TT
48092016-09-08 Tom Tromey <tom@tromey.com>
4810
4811 * remote.c (remote_notif_stop_ack, remote_wait_as)
4812 (show_remote_cmd): Remove unneeded casts.
4813
4295e285
PA
48142016-09-06 Pedro Alves <palves@redhat.com>
4815
4816 * top.c (wait_sync_command_done): Don't assume current_ui doesn't
4817 change across events. Restore the current UI before returning.
4818 (gdb_readline_wrapper): Restore the current UI before returning.
4819
a025b477
PA
48202016-09-06 Pedro Alves <palves@redhat.com>
4821
4822 * event-top.c (restore_ui_cleanup): Now static.
4823 (make_cleanup_restore_current_ui): New function.
4824 (switch_thru_all_uis_init): Use it.
4825 * infcall.c (call_thread_fsm_should_stop): Use it.
4826 * infrun.c (fetch_inferior_event): Use it.
4827 * top.c (new_ui_command): Use it.
4828 * top.h (restore_ui_cleanup): Delete declaration.
4829 (make_cleanup_restore_current_ui): New declaration.
4830
00d5215e
UW
48312016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4832
4833 * i386-tdep.c (i386_floatformat_for_type): New function.
4834 (i386_gdbarch_init): Install it.
4835 * ppc-linux-tdep.c (ppc_floatformat_for_type): New function.
4836 (ppc_linux_init_abi): Install it.
4837
9b790ce7
UW
48382016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4839
4840 * gdbarch.sh (floatformat_for_type): New gdbarch callback.
4841 * gdbarch.h, gdbarch.c: Re-generate.
4842 * arch-utils.h (default_floatformat_for_type): New prototype.
4843 * arch-utils.c (default_floatformat_for_type): New function.
4844
4845 * doublest.c (floatformat_from_length): Remove.
4846 (floatformat_from_type): Assume TYPE_FLOATFORMAT is non-NULL.
4847 * gdbtypes.c (verify_floatformat): Require non-NULL format.
4848
4849 * dwarf2read.c (dwarf2_init_float_type): New function.
4850 (read_base_type): Use it.
4851 * stabsread.c (dbx_init_float_type): New function.
4852 (read_sun_floating_type): Use it.
4853 (read_range_type): Likewise.
4854
49f190bc
UW
48552016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4856
4857 * ada-lang.c (ada_language_arch_info): Use gdbarch-provided
4858 platform ABI floating-point formats for built-in types.
4859 * d-lang.c (build_d_types): Likewise.
4860 * f-lang.c (build_fortran_types): Likewise.
4861 * m2-lang.c (build_m2_types): Likewise.
4862 * mdebugread.c (basic_type): Likewise.
4863
4864 * go-lang.c (build_go_types): Use IEEE floating-point formats
4865 for language built-in types as mandanted by the language.
4866 * jv-lang.c (build_java_types): Likewise.
4867 * rust-lang.c (rust_language_arch_info): Likewise.
4868 * stabsread.c (rs6000_builtin_type): Likewise.
4869
c413c448
UW
48702016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4871
4872 * gdbtypes.c (init_type): Remove "char" special case.
4873 (arch_integer_type): Likewise.
4874 (gdbtypes_post_init): Set TYPE_NOSIGN for "char" type.
4875 (objfile_type): Likewise.
4876 * mdebugread.c (basic_type): Likewise.
4877 * stabsread.c (rs6000_builtin_type): Likewise.
4878
a9ff5f12
UW
48792016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4880
4881 * gdbtypes.h (enum type_flag_value): Remove.
4882 Remove references to TYPE_FLAG_... in comments throughout.
4883 * gdbtypes.c (recursive_dump_type): Do not print TYPE_FLAG_...
4884 flags, print the corresponding TYPE_... access macro names.
4885 Remove references to TYPE_FLAG_... in comments throughout.
4886 * infcall.c: Remove references to TYPE_FLAG_... in comments.
4887 * valprint.c: Likewise.
4888 * gdb-gdb.py (class TypeFlag): No longer consider TYPE_FLAG_...
4889 values, only TYPE_INSTANCE_FLAG_... values.
4890 (class TypeFlagsPrinter): Likewise.
4891
19f392bc
UW
48922016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4893
4894 * gdbtypes.h (init_type): Remove FLAGS argument. Move OBJFILE
4895 argument to first position.
4896 (init_integer_type): New prototype.
4897 (init_character_type): Likewise.
4898 (init_boolean_type): Likewise.
4899 (init_float_type): Likewise.
4900 (init_decfloat_type): Likewise.
4901 (init_complex_type): Likewise.
4902 (init_pointer_type): Likewise.
4903 * gdbtypes.c (verify_floatflormat): New function.
4904 (init_type): Remove FLAGS argument and processing. Move OBJFILE
4905 argument to first position.
4906 (init_integer_type): New function.
4907 (init_character_type): Likewise.
4908 (init_boolean_type): Likewise.
4909 (init_float_type): Likewise.
4910 (init_decfloat_type): Likewise.
4911 (init_complex_type): Likewise.
4912 (init_pointer_type): Likewise.
4913 (arch_float_type): Use verify_floatflormat.
4914 (objfile_type): Use init_..._type helpers instead of calling
4915 init_type directly.
4916 * dwarf2read.c (fixup_go_packaging): Update to changed init_type
4917 prototype.
4918 (read_namespace_type): Likewise.
4919 (read_module_type): Likewise.
4920 (read_typedef): Likewise.
4921 (read_unspecified_type): Likewise.
4922 (build_error_marker_type): Likewise.
4923 (read_base_type): Use init_..._type helpers.
4924 * mdebugread.c (basic_type): Use init_..._type helpers.
4925 (parse_type): Update to changed init_type prototype.
4926 (cross_ref): Likewise.
4927 * stabsread.c (rs6000_builtin_type): Use init_..._type helpers.
4928 (read_sun_builtin_type): Likewise.
4929 (read_sun_floating_type): Likewise.
4930 (read_range_type): Likewise. Also update to changed init_type
4931 prototype.
4932
88dfca6c
UW
49332016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4934
4935 * gdbtypes.h (arch_decfloat_type): New prototype.
4936 (arch_pointer_type): Likewise.
4937 * gdbtypes.c (arch_decfloat_type): New function.
4938 (arch_pointer_type): Likewise.
4939 (gdbtypes_post_init): Use arch_decfloat_type.
4940 * avr-tdep.c (avr_gdbarch_init): Use arch_pointer_type.
4941 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
4942 * m32c-tdep.c (make_types): Likewise.
4943 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
4944
ae438bc5
UW
49452016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4946
4947 * gdbtypes.c (set_type_code): New function.
4948 (init_type, arch_type): Use it.
4949
5f3bceb6
UW
49502016-09-05 Ulrich Weigand <uweigand@de.ibm.com>
4951
4952 * ada-lang.c (ada_language_arch_info): Use gdbarch_long_double_bit
4953 instead of gdbarch_double_bit for "long_long_float".
4954
cf6de44d
PA
49552016-09-05 Pedro Alves <palves@redhat.com>
4956
4957 * NEWS: Mention that a C++ compiler is now required.
4958 * Makefile.in (COMPILER, COMPILER_CFLAGS): Remove.
4959 (COMPILE.pre, CC_LD): Use CXX directly.
4960 (INTERNAL_CFLAGS_BASE): Use CXXFLAGS directly.
4961 * acinclude.m4: Don't include build-with-cxx.m4.
4962 * build-with-cxx.m4: Delete file.
4963 * configure.ac: Remove GDB_AC_BUILD_WITH_CXX call.
4964 * warning.m4: Assume $enable_build_with_cxx is yes.
4965 * configure: Regenerate.
4966
f245535c
PA
49672016-09-05 Pedro Alves <palves@redhat.com>
4968
4969 PR backtrace/19927
4970 * frame.c (get_frame_id): Compute the frame id if not computed
4971 yet.
4972 (unwind_to_current_frame): Delete.
4973 (get_current_frame): Use get_prev_frame_always_1 to get the
4974 current frame and assert that that always succeeds.
4975 (get_prev_frame_if_no_cycle): Skip cycle detection if returning
4976 the current frame.
4977
4aa4e28b
TT
49782016-09-02 Tom Tromey <tom@tromey.com>
4979
4980 PR gdb/11616:
4981 * dwarf2read.c (decode_locdesc): Handle DW_OP_form_tls_address.
4982 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Handle
4983 DW_OP_form_tls_address.
4984 (locexpr_describe_location_piece): Likewise.
4985 * dwarf2expr.h (struct dwarf_expr_context_funcs): Update comment.
4986 * dwarf2expr.c (execute_stack_op): Handle DW_OP_form_tls_address.
4987 (ctx_no_get_tls_address): Mention DW_OP_form_tls_address.
4988 * compile/compile-loc2c.c (struct insn_info): Update comment.
4989 (compute_stack_depth_worker): Handle DW_OP_form_tls_address.
4990
f2b9e3df
SDJ
49912016-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
4992
4993 * target.c (target_wait): Mention that the function's prototype
4994 can be found at target/target.h.
4995 * target.h (target_wait): Move prototype from here...
4996 * target/target.h (target_wait): ... to here.
4997
049a8570
SDJ
49982016-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
4999
5000 * fork-child.c (startup_inferior): Replace calls to target_resume
5001 by target_continue{,_no_signal}, depending on the case.
5002 * linux-nat.c (cleanup_target_stop): Call
5003 target_continue_no_signal instead of target_resume.
5004 * procfs.c (procfs_wait): Likewise.
5005 * target.c (target_continue): New function.
5006 * target/target.h (target_continue): New prototype.
5007
f99bd5f2
YQ
50082016-08-31 Yao Qi <yao.qi@linaro.org>
5009
5010 * record-full.c (record_full_insert_breakpoint): Fix typo.
5011
5af962df
AA
50122016-08-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
5013
5014 * thread.c (tp_array_compar): Insert missing parentheses.
5015
ae68ff9f
AA
50162016-08-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
5017
5018 * xtensa-tdep.h (XTENSA_GDBARCH_TDEP_INSTANTIATE): Replace
5019 designated initializer list by plain initializer list, for C++
5020 compliance.
5021
754653a7
AZ
50222016-08-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5023
5024 * aarch64-linux-nat.c (ps_get_thread_area): Remove const from
5025 struct ps_prochandle.
5026 * amd64-linux-nat.c (ps_get_thread_area): Likewise.
5027 * arm-linux-nat.c (ps_get_thread_area): Likewise.
5028 * gdb_proc_service.h (ps_get_thread_area): Likewise.
5029 * i386-linux-nat.c (ps_get_thread_area): Likewise.
5030 * m68klinux-nat.c (ps_get_thread_area): Likewise.
5031 * mips-linux-nat.c (ps_get_thread_area): Likewise.
5032 * nat/aarch64-linux.c (aarch64_ps_get_thread_area): Likewise.
5033 * nat/aarch64-linux.h (aarch64_ps_get_thread_area): Likewise.
5034 * xtensa-linux-nat.c (ps_get_thread_area): Likewise.
5035
0a1ddfa6
SM
50362016-08-24 Simon Marchi <simon.marchi@ericsson.com>
5037
5038 * infcmd.c (set_inferior_io_terminal): Set inferior terminal to
5039 NULL if terminal_name is an empty string.
5040 (_initialize_infcmd): Make the argument of "set inferior-tty"
5041 optional, mention it in the help doc.
5042
bdd78711
CL
50432016-08-24 Carl Love <cel@us.ibm.com>
5044
5045 * rs6000-tdep.c (rs6000_gdbarch_init): Remove call
5046 set_gdbarch_deprecated_fp_regnum() architecture
5047 initialization function.
5048
34f81801
SM
50492016-08-23 Simon Marchi <simon.marchi@ericsson.com>
5050
5051 * stack.c (parse_frame_specification): Fix typo in comment.
5052
d9de1fe3
PA
50532016-08-23 Pedro Alves <palves@redhat.com>
5054
5055 PR gdb/20494
5056 * inflow.c (our_terminal_info, initial_gdb_ttystate): Update
5057 comments.
5058 (enum gdb_has_a_terminal_flag_enum, gdb_has_a_terminal_flag):
5059 Delete.
5060 (set_initial_gdb_ttystate): Record our_terminal_info here too,
5061 instead of ...
5062 (gdb_has_a_terminal): ... here. Reimplement in terms of
5063 initial_gdb_ttystate. Make static.
5064 * terminal.h (gdb_has_a_terminal): Delete declaration.
5065 (set_initial_gdb_ttystate): Add comment.
5066 * top.c (show_interactive_mode): Use input_interactive_p instead
5067 of gdb_has_a_terminal.
5068
6bb90213
PA
50692016-08-22 Pedro Alves <palves@redhat.com>
5070
5071 PR gdb/20505
5072 * linux-tdep.c (linux_vsyscall_range_raw): For core inferiors,
5073 find the vDSO's start address with AT_SYSINFO_EHDR too, and
5074 determine the vDSO's size by finding the PT_LOAD segment that
5075 matches AT_SYSINFO_EHDR.
5076
03bcd739
YQ
50772016-08-19 Yao Qi <yao.qi@linaro.org>
5078
5079 * aarch64-tdep.c (aarch64_analyze_prologue): Handle register
5080 based STP instruction.
5081
bbfa2517
YQ
50822016-08-19 Yao Qi <yao.qi@linaro.org>
5083
5084 * completer.c (linespec_location_completer): Make file_to_match
5085 null-terminated.
5086
f077e978
PA
50872016-08-19 Pedro Alves <palves@redhat.com>
5088
5089 * amd64-tdep.c (amd64_relocate_instruction) <callq>: Handle return
5090 addresses over 0x7fffffff.
5091
46da9242
CL
50922016-08-18 Carl Love <cel@us.ibm.com>
5093
5094 * MAINTANERS Write After Approval): Add "Carl Love".
5095
d44c67f3
EBM
50962016-08-18 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
5097
5098 * rs6000-tdep.c (ppc_process_record_op31): Handle HTM instructions.
5099
eb2332d7
SM
51002016-08-17 Simon Marchi <simon.marchi@ericsson.com>
5101
5102 * inferior.c (remove_inferior_command): Fix error message.
5103
9b19e390
SM
51042016-08-17 Simon Marchi <simon.marchi@ericsson.com>
5105
5106 * inferior.c (exit_inferior_1): Remove comment.
5107
31925464
MW
51082016-08-15 Matthew Wahab <matthew.wahab@arm.com>
5109
5110 PR gdb/20457
5111 * gdb_proc_service.h: Add an include of gregset.h
5112 [!HAVE_PROC_SERVICE_H]: Remove the include of gregset.h.
5113
b31f9478
YQ
51142016-08-15 Yao Qi <yao.qi@linaro.org>
5115
5116 * location.c (explicit_location_lex_one): Compare the return
5117 value of strncmp with zero. Don't check (*inp)[9]. Increment
5118 *inp by 8.
5119
39b22471
PA
51202016-08-11 Pedro Alves <palves@redhat.com>
5121
5122 PR gdb/20413
5123 * nat/linux-ptrace.c: Include <sys/procfs.h> instead of
5124 "gregset.h".
5125
01d3dedf
PA
51262016-08-10 Pedro Alves <palves@redhat.com>
5127
5128 PR gdb/19187
5129 * record-full.c (record_full_remove_breakpoint): Don't remove the
5130 breakpoint from the record_full_breakpoints VEC if we're detaching
5131 the breakpoint from a fork child.
5132
73971819
PA
51332016-08-10 Pedro Alves <palves@redhat.com>
5134
5135 PR gdb/19187
5136 * break-catch-sig.c (signal_catchpoint_remove_location): Adjust
5137 interface.
5138 * break-catch-syscall.c (remove_catch_syscall):
5139 * breakpoint.c (enum remove_bp_reason): Moved to breakpoint.h.
5140 (remove_breakpoint_1): Pass 'reason' down.
5141 (remove_catch_fork, remove_catch_vfork, remove_catch_solib)
5142 (remove_catch_exec, remove_watchpoint, remove_masked_watchpoint)
5143 (base_breakpoint_remove_location, bkpt_remove_location)
5144 (bkpt_probe_remove_location, bkpt_probe_remove_location): Adjust
5145 interface.
5146 * breakpoint.h (enum remove_bp_reason): Moved here from
5147 breakpoint.c.
5148 (struct breakpoint_ops) <remove_location>: Add 'reason' parameter.
5149 * corelow.c (core_remove_breakpoint): New function.
5150 (init_core_ops): Install it as to_remove_breakpoint method.
5151 * exec.c (exec_remove_breakpoint): New function.
5152 (init_exec_ops): Install it as to_remove_breakpoint method.
5153 * mem-break.c (memory_remove_breakpoint): Adjust interface.
5154 * record-btrace.c (record_btrace_remove_breakpoint): Adjust
5155 interface.
5156 * record-full.c (record_full_remove_breakpoint)
5157 (record_full_core_remove_breakpoint): Adjust interface.
5158 * remote.c (remote_remove_breakpoint): Adjust interface.
5159 * target-debug.h (target_debug_print_enum_remove_bp_reason): New
5160 macro.
5161 * target-delegates.c: Regenerate.
5162 * target.c (target_remove_breakpoint): Add 'reason' parameter.
5163 * target.h (struct target_ops) <to_remove_breakpoint>: Add
5164 'reason' parameter.
5165 (target_remove_breakpoint, memory_remove_breakpoint): Add 'reason'
5166 parameter.
5167
b2b6a7da
PA
51682016-08-10 Pedro Alves <palves@redhat.com>
5169
5170 PR gdb/19187
5171 * breakpoint.c (insertion_state_t): Delete.
5172 (enum remove_bp_reason): New.
5173 (detach_breakpoints, remove_breakpoint_1, remove_breakpoint):
5174 Adjust to use enum remove_bp_reason instead of insertion_state_t.
5175
834c0d03
PA
51762016-08-10 Pedro Alves <palves@redhat.com>
5177
5178 PR gdb/19187
5179 * breakpoint.c (remove_breakpoint): Remove 'is' parameter and
5180 always pass mark_uninserted to remove_breakpoint_1.
5181 (insert_breakpoint_locations, remove_breakpoints)
5182 (remove_breakpoints_pid, update_global_location_list): Update
5183 callers.
5184
24cdb46e
РИ
51852016-08-10 Руслан Ижбулатов <lrn1986@gmail.com>
5186 Pedro Alves <palves@redhat.com>
5187
5188 * windows-nat.c (MS_VC_EXCEPTION): New define.
5189 (handle_exception_result): New enum.
5190 (windows_delete_thread): Free the thread's name.
5191 (handle_exception): Handle MS_VC_EXCEPTION.
5192 (get_windows_debug_event): Handle HANDLE_EXCEPTION_IGNORED.
5193 (windows_thread_name): New function.
5194 (windows_target): Install it as to_thread_name method.
5195 * NEWS: Mention the thread naming support on MS-Windows.
5196
669f9429
PA
51972016-08-10 Pedro Alves <palves@redhat.com>
5198
5199 * common/signals-state-save-restore.c
5200 (save_original_signals_state, restore_original_signals_state):
5201 Wrap perror_with_name arguments with '()'.
5202
3eb7562a
PA
52032016-08-09 Pedro Alves <palves@redhat.com>
5204
5205 PR gdb/20418
5206 * event-top.c (ui_register_input_event_handler)
5207 (ui_unregister_input_event_handler): New functions.
5208 (async_enable_stdin): Register input in the event loop.
5209 (async_disable_stdin): Unregister input from the event loop.
5210 (gdb_setup_readline): Register input in the event loop.
5211 * infrun.c (check_curr_ui_sync_execution_done): Register input in
5212 the event loop.
5213 * target.c (target_terminal_inferior): Don't unregister input from
5214 the event loop.
5215 (target_terminal_ours): Don't register input in the event loop.
5216 * target.h (target_terminal_inferior)
5217 (target_terminal_ours_for_output, target_terminal_ours): Update
5218 comments.
5219 * top.h (ui_register_input_event_handler)
5220 (ui_unregister_input_event_handler): New declarations.
5221 * utils.c (ui_unregister_input_event_handler_cleanup)
5222 (prepare_to_handle_input): New functions.
5223 (defaulted_query, prompt_for_continue): Use
5224 prepare_to_handle_input.
5225
80614914
PA
52262016-08-09 Pedro Alves <palves@redhat.com>
5227
5228 PR mi/20431
5229 * mi/mi-main.c (mi_execute_command): Enable input and set prompt
5230 state to PROMPT_NEEDED.
5231
f348d89a
PA
52322016-08-09 Pedro Alves <palves@redhat.com>
5233
5234 PR gdb/18653
5235 * Makefile.in (SFILES): Add
5236 common/signals-state-save-restore.c.
5237 (HFILES_NO_SRCDIR): Add common/signals-state-save-restore.h.
5238 (COMMON_OBS): Add signals-state-save-restore.o.
5239 (signals-state-save-restore.o): New rule.
5240 * configure: Regenerate.
5241 * fork-child.c: Include "signals-state-save-restore.h".
5242 (fork_inferior): Call restore_original_signals_state.
5243 * main.c: Include "signals-state-save-restore.h".
5244 (captured_main): Call save_original_signals_state.
5245 * common/common.m4: Add sigaction to AC_CHECK_FUNCS checks.
5246 * common/signals-state-save-restore.c: New file.
5247 * common/signals-state-save-restore.h: New file.
5248
e5ca03b4
PA
52492016-08-09 Pedro Alves <palves@redhat.com>
5250
5251 * value.c (unpack_value_bitfield): Skip unpacking if the parent
5252 has no contents buffer to begin with.
5253
6a17ca31
PA
52542016-08-08 Pedro Alves <palves@redhat.com>
5255
5256 * features/i386/amd64-avx-mpx-linux.c: Regenerate.
5257 * features/i386/amd64-avx-mpx.c: Regenerate.
5258 * features/i386/i386-avx-mpx-linux.c: Regenerate.
5259 * features/i386/i386-avx-mpx.c: Regenerate.
5260
c632e428
SM
52612016-08-05 Simon Marchi <simon.marchi@ericsson.com>
5262
5263 * event-top.h (cli_command_loop): Remove.
5264
3906a8fc
PA
52652016-08-05 Pedro Alves <palves@redhat.com>
5266
5267 PR remote/20398
5268 * remote-fileio.c (remote_fileio_quit_handler): Check the quit
5269 flag before calling quit.
5270
69ffd7f2
PA
52712016-08-05 Pedro Alves <palves@redhat.com>
5272
5273 * NEWS: Mention that GDB and GDBserver build with a C++ compiler
5274 by default.
5275
1baf5149
PA
52762016-08-05 Pedro Alves <palves@redhat.com>
5277
5278 * build-with-cxx.m4: Change help string to be in terms of
5279 --disable-build-with-cxx.
5280 * configure: Regenerate.
5281
6f67973b
YQ
52822016-08-04 Yao Qi <yao.qi@linaro.org>
5283
5284 * aarch64-linux-nat.c (tdesc_arm_with_vfpv3): Remove the
5285 declaration.
5286 (aarch64_linux_read_description): Remove code on getting
5287 auxv and select target description on it. Select target
5288 description by the result of NT_ARM_VFP ptrace request.
5289
282a0691
TT
52902016-08-03 Tom Tromey <tom@tromey.com>
5291
5292 PR python/18565:
5293 * python/py-frame.c (frapy_function): Use find_frame_funname.
5294
d10153cf
TT
52952016-08-03 Tom Tromey <tom@tromey.com>
5296
5297 * stack.c (find_frame_funname): Avoid any possible leak in case
5298 cp_remove_params can throw.
5299
8d2a0a14
TT
53002016-08-03 Tom Tromey <tom@tromey.com>
5301
5302 * NEWS: Mention new Python breakpoint events.
5303
33541b2e
TT
53042016-08-02 Tom Tromey <tom@tromey.com>
5305
5306 * MAINTAINERS (Core): Add self as Rust maintainer.
5307
751b375e
JB
53082016-08-01 Joel Brobecker <brobecker@adacore.com>
5309
5310 * NEWS: Create a new section for the next release branch.
5311 Rename the section of the current branch, now that it has
5312 been cut.
5313
b2bd7787
JB
53142016-08-01 Joel Brobecker <brobecker@adacore.com>
5315
5316 GDB 7.12 branch created (41bfcd638a4e0e48b96ce4de2845372dea481322):
5317 * version.in: Bump version to 7.12.50.DATE-git.
5318
293acfae
AM
53192016-07-27 Alan Modra <amodra@gmail.com>
5320
5321 * amd64-darwin-tdep.c: Don't include libbfd.h.
5322 * i386-darwin-tdep.c: Likewise.
5323 * rs6000-nat.c: Likewise.
5324 * rs6000-tdep.c: Likewise.
5325
0b31a4bc
TT
53262016-07-26 Tom Tromey <tom@tromey.com>
5327
5328 * symtab.c (register_symbol_computed_impl): Update.
5329 PR python/20190:
5330 * value.h (symbol_read_needs): Declare.
5331 (symbol_read_needs_frame): Add comment.
5332 * symtab.h (struct symbol_computed_ops) <read_variable>: Update
5333 comment.
5334 <get_symbol_read_needs>: Rename. Change return type.
5335 * findvar.c (symbol_read_needs): New function.
5336 (symbol_read_needs_frame): Rewrite.
5337 (default_read_var_value): Use symbol_read_needs.
5338 * dwarf2loc.c (struct symbol_needs_baton): Rename.
5339 <needs>: Renamed from needs_frame. Changed type.
5340 (needs_frame_read_addr_from_reg, symbol_needs_get_reg_value)
5341 (symbol_needs_read_mem, symbol_needs_frame_base)
5342 (symbol_needs_frame_cfa, symbol_needs_tls_address)
5343 (symbol_needs_dwarf_call): Rename.
5344 (needs_dwarf_reg_entry_value): Update.
5345 (symbol_needs_ctx_funcs, dwarf2_loc_desc_get_symbol_read_needs):
5346 Rename and update.
5347 (locexpr_get_symbol_read_needs, loclist_symbol_needs): Likewise.
5348 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Update.
5349 * defs.h (enum symbol_needs_kind): New.
5350
40c31709
PA
53512016-07-26 Pedro Alves <palves@redhat.com>
5352
5353 * nat/linux-ptrace.c: Include "gregset.h".
5354 (linux_ptrace_test_ret_to_nx): Use PTRACE_GETREGS instead of
5355 PTRACE_PEEKUSER.
5356
9cf12d57
PA
53572016-07-26 Pedro Alves <palves@redhat.com>
5358
5359 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Rename 'native'
5360 parameter to 'ptrace'.
5361 * nat/amd64-linux-siginfo.c (GDB_SI_SIZE): New define.
5362 (nat_uptr_t): New an unsigned long.
5363 (nat_clock_t): Remove attribute __aligned__.
5364 (struct nat_timeval): Delete.
5365 (nat_siginfo_t): Remove attribute __aligned__.
5366 (ptrace_siginfo_t): Define.
5367 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
5368 (compat_x32_siginfo_from_siginfo)
5369 (siginfo_from_compat_x32_siginfo): Make 'from' parameter const.
5370 Convert through a ptrace_siginfo_t instead of a nat_siginfo_t.
5371 Remove casts.
5372 (amd64_linux_siginfo_fixup_common): Rename 'native' parameter to
5373 'ptrace'. Remove static assertions.
5374 (top level): New static assertions.
5375
8194e927
SM
53762016-07-25 Simon Marchi <simon.marchi@ericsson.com>
5377
5378 * top.h (make_delete_ui_cleanup): New declaration.
5379 * top.c (delete_ui_cleanup): New function.
5380 (make_delete_ui_cleanup): New function.
5381 (new_ui_command): Create restore_ui cleanup earlier, create a
5382 delete_ui cleanup and discard it on success.
5383
0e1a6a51
PA
53842016-07-25 Pedro Alves <palves@redhat.com>
5385 Jan Kratochvil <jan.kratochvil@redhat.com>
5386
5387 * nat/linux-procfs.c (parse_proc_status_state): Handle lowercase
5388 't'.
5389
d617208b
PA
53902016-07-25 Pedro Alves <palves@redhat.com>
5391
5392 * nat/linux-procfs.c (enum proc_state): New enum.
5393 (parse_proc_status_state): New function.
5394 (linux_proc_pid_get_state): Replace output string buffer parameter
5395 with an output proc_state parameter. Use parse_proc_status_state.
5396 (linux_proc_pid_is_gone): Adjust to use proc_state values.
5397 (linux_proc_pid_has_state): Change type of 'state' parameter; now
5398 an enum proc_state. Adjust to linux_proc_pid_get_state interface
5399 change.
5400 (linux_proc_pid_is_stopped)
5401 (linux_proc_pid_is_trace_stopped_nowarn)
5402 (linux_proc_pid_is_zombie_maybe_warn): Adjust to
5403 linux_proc_pid_get_state interface change.
5404
3a1518e4
TW
54052016-07-25 Tim Wiederhake <tim.wiederhake@intel.com>
5406
5407 * MAINTAINERS (Write After Approval): Add Tim Wiederhake
5408
c0272db5
TW
54092016-07-25 Tim Wiederhake <tim.wiederhake@intel.com>
5410
5411 * NEWS: Resume btrace on reconnect.
5412 * record-btrace.c: Added record-btrace.h include.
5413 (record_btrace_open): Split into this and ...
5414 (record_btrace_push_target): ... this.
5415 (record_btrace_disconnect): New function.
5416 (init_record_btrace_ops): Use record_btrace_disconnect.
5417 * record-btrace.h: New file.
5418 * remote.c: Added record-btrace.h include.
5419 (remote_start_remote): Check recording status.
5420 (remote_btrace_maybe_reopen): New function.
5421
e3487908
GKB
54222016-07-23 Gabriel Krisman Bertazi <gabriel@krisman.be>
5423
5424 * xml-syscall.c (get_syscalls_by_group): New.
5425 (get_syscall_group_names): New.
5426 (struct syscall_group_desc): New structure to store group data.
5427 (struct syscalls_info): Include field to store the group list.
5428 (sysinfo_free_syscall_group_desc): New.
5429 (free_syscalls_info): Free group list.
5430 (syscall_group_create_syscall_group_desc): New.
5431 (syscall_group_add_syscall): New.
5432 (syscall_create_syscall_desc): Add syscall to its groups.
5433 (syscall_start_syscall): Load group attribute.
5434 (syscall_group_get_group_by_name): New.
5435 (xml_list_syscalls_by_group): New.
5436 (xml_list_of_groups): New.
5437 * xml-syscall.h (get_syscalls_by_group): Export function
5438 to retrieve a list of syscalls filtered by the group name.
5439 (get_syscall_group_names): Export function to retrieve the list
5440 of syscall groups.
5441 * break-catch-syscall.c (catch_syscall_split_args): Verify if
5442 argument is a syscall group and expand it to a list of syscalls
5443 when creating catchpoints.
5444 (catch_syscall_completer): Add word completion for system call
5445 groups.
5446 * configure.ac: Include dependency for xsltproc when building
5447 in maintainer-mode.
5448 * break-catch-syscall.c (_initialize_breakpoint): Update catch
5449 syscall command documentation.
5450 * NEWS: Include section about catching groups of syscalls.
5451 * configure: Regenerate.
5452 * data-directory/Makefile.in: Generate syscall xml when building
5453 in maintainer mode.
5454 * syscalls/gdb-syscalls.dtd: Include group attribute to the
5455 syscall element.
5456 * syscalls/apply-defaults.xsl: New.
5457 * syscalls/linux-defaults.xml.in: New.
5458 * syscalls/aarch64-linux.xml: Rename to aarch64-linux.xml.in.
5459 * syscalls/amd64-linux.xml: Rename to amd64-linux.xml.in.
5460 * syscalls/arm-linux.xml: Rename to arm-linux.xml.in.
5461 * syscalls/bfin-linux.xml: Rename to bfin-linux.xml.in.
5462 * syscalls/i386-linux.xml: Rename to i386-linux.xml.in.
5463 * syscalls/mips-n32-linux.xml: Rename to mips-n32-linux.xml.in.
5464 * syscalls/mips-n64-linux.xml: Rename to mips-n64-linux.xml.in.
5465 * syscalls/mips-o32-linux.xml: Rename to mips-o32-linux.xml.in.
5466 * syscalls/ppc-linux.xml: Rename to ppc-linux.xml.in.
5467 * syscalls/ppc64-linux.xml: Rename to ppc64-linux.xml.in.
5468 * syscalls/s390-linux.xml: Rename to s390-linux.xml.in.
5469 * syscalls/s390x-linux.xml: Rename to s390x-linux.xml.in.
5470 * syscalls/sparc-linux.xml: Rename to sparc-linux.xml.in.
5471 * syscalls/sparc64-linux.xml: Rename to sparc64-linux.xml.in.
5472 * syscalls/aarch64-linux.xml: Regenerate.
5473 * syscalls/amd64-linux.xml: Regenerate.
5474 * syscalls/arm-linux.xml: Regenerate.
5475 * syscalls/i386-linux.xml: Regenerate.
5476 * syscalls/mips-n32-linux.xml: Regenerate.
5477 * syscalls/mips-n64-linux.xml: Regenerate.
5478 * syscalls/mips-o32-linux.xml: Regenerate.
5479 * syscalls/ppc-linux.xml: Regenerate.
5480 * syscalls/ppc64-linux.xml: Regenerate.
5481 * syscalls/s390-linux.xml: Regenerate.
5482 * syscalls/s390x-linux.xml: Regenerate.
5483 * syscalls/sparc-linux.xml: Regenerate.
5484 * syscalls/sparc64-linux.xml: Regenerate.
5485
49ecef2a
AP
54862016-07-23 Andrew Pinski <apinski@cavium.com>
5487
5488 * nat/aarch64-linux-hw-point.c
5489 (aarch64_linux_get_debug_reg_capacity): Handle
5490 ARMv8.1 and ARMv8.2 debug versions.
5491 * nat/aarch64-linux-hw-point.h
5492 (AARCH64_DEBUG_ARCH_V8_1): New define.
5493 (AARCH64_DEBUG_ARCH_V8_2): New define.
5494
463888ab
РИ
54952016-06-30 Руслан Ижбулатов <lrn1986@gmail.com>
5496
5497 PR gdb/14529
5498 * windows-nat.c (signal_event_command): New command 'signal-event'
5499 for W32 JIT debug support.
5500 * NEWS: Add an entry about the new 'signal-event' command.
5501
e98c9e7c
TT
55022016-07-22 Tom Tromey <tom@tromey.com>
5503
5504 PR rust/20162:
5505 * dwarf2read.c (scan_partial_symbols) <DW_TAG_structure_type>:
5506 Call scan_partial_symbols for children when reading a Rust CU.
5507 (dwarf2_physname): Ignore invalid DW_AT_linkage_name generated by
5508 rustc.
5509 (process_structure_scope) <DW_TAG_subprogram>: Call
5510 read_func_scope for Rust.
5511
eed2386e
YQ
55122016-07-22 Yao Qi <yao.qi@linaro.org>
5513
5514 * ctf.c (ctf_traceframe_info): Call bt_ctf_get_uint64 rather than
5515 bt_ctf_get_int64.
5516
12df5c00
TT
55172016-07-21 Tom Tromey <tom@tromey.com>
5518
5519 * rust-lang.c (rust_tuple_struct_type_p): Return false for empty
5520 structs.
5521 * rust-exp.y (struct_expr_list): Allow empty elements.
5522
305450ed
TT
55232016-07-21 Tom Tromey <tom@tromey.com>
5524
5525 * configure: Rebuild.
5526 * warning.m4 (AM_GDB_WARNINGS) <build_warnings>: Add
5527 -Wunused-but-set-parameter, -Wunused-but-set-variable.
5528
f515a1d6
PA
55292016-07-21 Pedro Alves <palves@redhat.com>
5530
5531 * go32-nat.c (go32_create_inferior): Add cast.
5532 * ser-go32.c (dos_noop): Delete.
5533 (dos_flush_output, dos_setparity, dos_drain_output): New
5534 functions.
5535 (dos_write): Add cast.
5536 (dos_ops): Use dos_flush_output, dos_setparity and
5537 dos_drain_output.
5538 * top.c (do_chdir_cleanup): Add cast.
5539
c25b7cce
PA
55402016-07-21 Pedro Alves <palves@redhat.com>
5541
5542 * windows-nat.c (handle_exception): Remove "th".
5543
e3821cca
PA
55442016-07-21 Pedro Alves <palves@redhat.com>
5545
5546 * varobj.c (varobj_value_get_print_value): Move "gdbarch" to block
5547 scope that uses it.
5548
dbaed385
JB
55492016-07-20 John Baldwin <jhb@FreeBSD.org>
5550
5551 * fbsd-nat.c (fbsd_enable_proc_events): Enable "PTRACE_VFORK"
5552 events.
5553 (fbsd_pending_vfork_done): Only define if "PTRACE_VFORK" is not
5554 defined.
5555 (fbsd_add_vfork_done): Likewise.
5556 (fbsd_is_vfork_done_pending): Likewise.
5557 (fbsd_next_vfork_done): Likewise.
5558 (fbsd_resume): Only ignore pending vfork done events if
5559 "PTRACE_VFORK" is not defined.
5560 (fbsd_wait): Only look for pending vfork done events if
5561 "PTRACE_VFORK" is not defined.
5562 [PTRACE_VFORK]: Handle "PL_FLAG_VFORKED" and "PL_FLAG_VFORK_DONE"
5563 events.
5564 (fbsd_follow_fork): Only fake a vfork done event if "PTRACE_VFORK"
5565 is not defined.
5566
5fa14c6b
JB
55672016-07-20 John Baldwin <jhb@FreeBSD.org>
5568
5569 * fbsd-nat.c (fbsd_wait): Use "fbsd_enable_proc_events" on
5570 new child processes.
5571
da95a26c
JB
55722016-07-20 John Baldwin <jhb@FreeBSD.org>
5573
5574 * fbsd-nat.c (fbsd_enable_lwp_events): Remove function.
5575 (fbsd_enable_proc_events): New function.
5576 (fbsd_enable_follow_fork): Remove function.
5577 (fbsd_post_startup_inferior): Use "fbsd_enable_proc_events".
5578 (fbsd_post_attach): Likewise.
5579
bc7b765a
JB
55802016-07-15 John Baldwin <jhb@FreeBSD.org>
5581
5582 * common/signals.c (gdb_signal_from_host): Handle SIGLIBRT.
5583 (do_gdb_signal_to_host): Likewise.
5584 * infrun.c (_initialize_infrun): Pass GDB_SIGNAL_LIBRT through to
5585 programs.
5586 * proc-events.c (signal_table): Add entry for SIGLIBRT.
5587
7f131b39
TT
55882016-07-14 Tom Tromey <tom@tromey.com>
5589
5590 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Add missing
5591 newline.
5592
78cc6c2d
TT
55932016-07-14 Tom Tromey <tom@tromey.com>
5594
5595 * mips-tdep.c (micromips_scan_prologue): Remove "frame_addr".
5596 (mips_o32_push_dummy_call): Remove "stack_used_p".
5597 * aarch64-tdep.c (aarch64_record_data_proc_imm): Remove
5598 "insn_bit28".
5599 * rust-lang.c (rust_print_type): Remove "len".
5600 * rust-exp.y (super_name): Remove "current_len".
5601 * python/py-framefilter.c (py_print_type): Remove "type".
5602 * mdebugread.c (parse_partial_symbols): Remove
5603 "past_first_source_file".
5604 <N_SO>: Remove "valu", "first_so_symnum", "prev_textlow_not_set".
5605 * m2-valprint.c (m2_print_unbounded_array): Remove
5606 "content_type".
5607 (m2_val_print): Remove "i".
5608 * linespec.c (unexpected_linespec_error): Remove "cleanup".
5609 * f-valprint.c (f_val_print): Remove "i".
5610 * elfread.c (elf_symtab_read): Remove "offset".
5611 * dwarf2-frame.c (dwarf2_fetch_cfa_info): Remove "addr_size".
5612 * jit.c (jit_dealloc_cache): Remove "i" and "frame_arch".
5613
ac298888
TT
56142016-07-14 Tom Tromey <tom@tromey.com>
5615
5616 * arch-utils.c (default_skip_permanent_breakpoint): Remove
5617 "bp_insn".
5618 * disasm.c (do_assembly_only): Remove "num_displayed".
5619 * dwarf2read.c (read_abbrev_offset): Remove "length".
5620 (dwarf_decode_macro_bytes) <DW_MACINFO_vendor_ext>: Remove
5621 "constant".
5622 * m32c-tdep.c (make_regs): Remove "r2hl", "r3hl", and "intbhl".
5623 * microblaze-tdep.c (microblaze_frame_cache): Remove "func".
5624 * tracefile.c (trace_save): Remove "status".
5625
764c99c1
TT
56262016-07-14 Tom Tromey <tom@tromey.com>
5627
5628 * symfile.c (simple_overlay_update_1): Remove initialization
5629 of "size", and commented-out code.
5630 (simple_overlay_update): Likewise.
5631
cecc8b99
TT
56322016-07-14 Tom Tromey <tom@tromey.com>
5633
5634 * tui/tui-winsource.c (tui_show_source_line): Use getcurx.
5635 * tui/tui-io.c (tui_puts): Use getcurx.
5636 (tui_redisplay_readline): Likewise.
5637
821fc4ae
TT
56382016-07-14 Tom Tromey <tom@tromey.com>
5639
5640 * inflow.c (child_terminal_ours_1): Use ATTRIBUTE_UNUSED.
5641
537d9b85
TT
56422016-07-14 Tom Tromey <tom@tromey.com>
5643
5644 * corefile.c (reopen_exec_file): Only examine st.st_mtime if stat
5645 succeeded.
5646
dac790e1
TT
56472016-07-13 Tom Tromey <tom@tromey.com>
5648
5649 PR python/15620, PR python/18620:
5650 * python/py-evts.c (gdbpy_initialize_py_events): Call
5651 add_new_registry for new events.
5652 * python/py-events.h (events_object) <breakpoint_created,
5653 breakpoint_deleted, breakpoint_modified>: New fields.
5654 * python/py-breakpoint.c (gdbpy_breakpoint_created): Emit the
5655 breakpoint changed event.
5656 (gdbpy_breakpoint_deleted): Emit the breakpoint deleted event.
5657 (gdbpy_breakpoint_modified): New function.
5658 (gdbpy_initialize_breakpoints): Attach to the breakpoint modified
5659 observer.
5660
93daf339
TT
56612016-07-13 Tom Tromey <tom@tromey.com>
5662
5663 PR python/17698:
5664 * NEWS: Update.
5665 * python/py-breakpoint.c (bppy_get_pending): New function.
5666 (breakpoint_object_getset): Add entry for "pending".
5667 * breakpoint.h (pending_breakpoint_p): Declare.
5668 * breakpoint.c (pending_breakpoint_p): New function.
5669
43684a7b
TT
56702016-07-13 Tom Tromey <tom@tromey.com>
5671
5672 * python/py-breakpoint.c (bppy_get_visibility)
5673 (gdbpy_breakpoint_created): Use user_breakpoint_p.
5674
6571a381
TT
56752016-07-13 Tom Tromey <tom@tromey.com>
5676
5677 PR cli/18053:
5678 * jit.c (jit_reader_load_command): Use tilde_expand.
5679 (_initialize_jit): Fix help for jit-reader-unload. Set completer
5680 for new commands.
5681
e0f3fd7c
TT
56822016-07-12 Tom Tromey <tom@tromey.com>
5683
5684 PR python/19293:
5685 * python/lib/gdb/command/unwinders.py (do_enable_unwinder): Call
5686 gdb.invalidate_cached_frames.
5687 * python/lib/gdb/unwinder.py (register_unwinder): Call
5688 gdb.invalidate_cached_frames.
5689 * python/python.c (gdbpy_invalidate_cached_frames): New function.
5690 (python_GdbMethods): Add entry for invalidate_cached_frames.
5691
41c977aa
WT
56922016-07-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
5693
5694 * cp-namespace.c (cp_lookup_bare_symbol): Initialize
5695 lang_this.symbol.
5696
4f19a0e6
WT
56972016-07-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
5698
5699 * cp-namespace.c (cp_lookup_bare_symbol): Use language passed as
5700 parameter to look for the symbol "this".
5701
5702
fb36c6bf
JB
57032016-07-06 John Baldwin <jhb@FreeBSD.org>
5704
5705 * h8300-tdep.c (h8300_print_register): Remove extraneous parentheses.
5706
db297a65
JB
57072016-07-06 John Baldwin <jhb@FreeBSD.org>
5708
5709 * ada-lang.c (ada_unpack_from_contents): Use unsigned constants with
5710 left shifts.
5711
9ca10714
JB
57122016-07-06 John Baldwin <jhb@FreeBSD.org>
5713
5714 * sh64-tdep.c (sh64_analyze_prologue): Set "uses_fp" when setting
5715 the MEDIA_FP_REGNUM register.
5716
d66ff635
JB
57172016-07-06 John Baldwin <jhb@FreeBSD.org>
5718
5719 * score-tdep.c (score7_malloc_and_get_memblock): Remove check for
5720 negative size.
5721
ee950322
JB
57222016-07-06 John Baldwin <jhb@FreeBSD.org>
5723
5724 * fbsd-nat.c (fbsd_is_vfork_done_pending): Fix return type.
5725
1040b979
YQ
57262016-07-06 Yao Qi <yao.qi@linaro.org>
5727
5728 * arm-tdep.c (arm_vfp_cprc_sub_candidate): Don't call
5729 arm_vfp_cprc_sub_candidate for static field.
5730
42d94011
MG
57312016-07-06 Manish Goregaokar <manish@mozilla.com>
5732
2806dc7e 5733 * rust-lang.c (rust_subscript): Allow subscripting pointers.
42d94011 5734
13cdc2af
JK
57352016-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5736
5737 * configure: Regenerate.
5738 * configure.ac (HAVE_LIBBABELTRACE): Fix pos variable dereference.
5739
09c98b44
DB
57402016-07-01 Don Breazeal <donb@codesourcery.com>
5741
5742 * remote.c (remote_get_memory_xfer_limit): New function.
5743 * target-delegates.c: Regenerate.
5744 * target.c (memory_xfer_partial): Call
5745 target_ops.to_get_memory_xfer_limit.
5746 * target.h (struct target_ops) <to_get_memory_xfer_limit>: New
5747 member.
5748
2c5c2a33
JB
57492016-07-01 John Baldwin <jhb@FreeBSD.org>
5750
5751 * fbsd-nat.c (struct fbsd_fork_child_info): Rename to ...
5752 (struct fbsd_fork_info): ... this.
5753 (struct fbsd_fork_info) <child>: Rename to ...
5754 (struct fbsd_fork_info) <ptid>: ... this.
5755 (fbsd_pending_children): Update type.
5756 (fbsd_remember_child): Update type and field name.
5757 (fbsd_is_child_pending): Likewise.
5758 (fbsd_pending_vfork_done): New variable.
5759 (fbsd_is_vfork_done_pending): New function.
5760 (fbsd_next_vfork_done): New function.
5761 (fbsd_resume): Don't resume processes with a pending vfork done
5762 event.
5763 (fbsd_wait): Report pending vfork done events.
5764 (fbsd_follow_fork): Delay and record a pending vfork done event
5765 for a vfork parent when detaching the child.
5766
8607ea63
JB
57672016-07-01 John Baldwin <jhb@FreeBSD.org>
5768
5769 * fbsd-nat.c (super_resume): Move earlier next to "super_wait".
5770 (resume_one_thread_cb): Move below fork following helper code.
5771 (resume_all_threads_cb): Likewise.
5772 (fbsd_resume): Likewise.
5773
bb2a62e6
JB
57742016-07-01 John Baldwin <jhb@FreeBSD.org>
5775
5776 * fbsd-nat.c (fbsd_follow_fork): Only detach child if
5777 "detach_fork" is true.
5778
5077bfff
JB
57792016-07-01 John Baldwin <jhb@FreeBSD.org>
5780
5781 * x86bsd-nat.c: Include 'gdbthread.h'.
5782 (x86bsd_dr_set): Set debug registers on all threads belonging to
5783 the current inferior.
5784
a3405d12
JB
57852016-07-01 John Baldwin <jhb@FreeBSD.org>
5786
5787 * Makefile.in [HFILES_NO_SRCDIR]: Replace 'amd64bsd-nat.h' with
5788 'x86bsd-nat.h'.
5789 * amd64bsd-nat.c: Include 'x86bsd-nat.h' instead of
5790 'amd64bsd-nat.h'.
5791 (amd64bsd_xsave_len): Rename and move to x86bsd-nat.c.
5792 (amd64bsd_fetch_inferior_registers): Replace 'amd64bsd_xsave_len'
5793 with 'x86bsd_xsave_len'.
5794 (amd64bsd_store_inferior_registers): Likewise.
5795 (amd64bsd_target): Inherit from x86bsd_target.
5796 (amd64bsd_dr_get): Rename and move to x86bsd-nat.c.
5797 (amd64bsd_dr_set): Likewise.
5798 (amd64bsd_dr_set_control): Likewise.
5799 (amd64bsd_dr_set_addr): Likewise.
5800 (amd64bsd_dr_get_addr): Likewise.
5801 (amd64bsd_dr_get_status): Likewise.
5802 (amd64bsd_dr_get_control): Likewise.
5803 * amd64fbsd-nat.c: Include 'x86bsd-nat.h' instead of
5804 'amd64bsd-nat.h'.
5805 (super_mourn_inferior): Move to x86bsd-nat.c.
5806 (amd64fbsd_mourn_inferior): Rename and move to x86bsd-nat.c.
5807 (amd64fbsd_read_description): Replace 'amd64bsd_xsave_len' with
5808 'x86bsd_xsave_len'.
5809 (_initialize_amd64fbsd_nat): Remove x86 watchpoint setup and
5810 mourn_inferior' target op.
5811 * config/i386/fbsd.mh (NATDEPFILES): Add x86bsd-nat.o.
5812 * config/i386/fbsd64.mh: Likewise.
5813 * config/i386/nbsd64.mh: Likewise.
5814 * config/i386/nbsdelf.mh: Likewise.
5815 * config/i386/obsd.mh: Likewise.
5816 * config/i386/obsd64.mh: Likewise.
5817 * i386bsd-nat.c: Include 'x86bsd-nat.h'.
5818 (i386bsd_xsave_len): Rename and move to x86bsd-nat.c.
5819 (i386bsd_fetch_inferior_registers): Replace 'i386bsd_xsave_len'
5820 with 'x86bsd_xsave_len'.
5821 (i386bsd_store_inferior_registers): Likewise.
5822 (i386bsd_target): Inherit from x86bsd_target.
5823 (i386bsd_dr_get): Rename and move to x86bsd-nat.c.
5824 (i386bsd_dr_set): Likewise.
5825 (i386bsd_dr_set_control): Likewise.
5826 (i386bsd_dr_set_addr): Likewise.
5827 (i386bsd_dr_get_addr): Likewise.
5828 (i386bsd_dr_get_status): Likewise.
5829 (i386bsd_dr_get_control): Likewise.
5830 * i386bsd-nat.h (i386bsd_xsave_len): Remove.
5831 (i386bsd_dr_set_control): Remove.
5832 (i386bsd_dr_set_addr): Remove.
5833 (i386bsd_dr_get_addr): Remove.
5834 (i386bsd_dr_get_status): Remove.
5835 (i386bsd_dr_get_control): Remove.
5836 * i386fbsd-nat.c: Include 'x86bsd-nat.h'.
5837 (i386fbsd_read_description): Replace 'i386bsd_xsave_len' with
5838 'x86bsd_xsave_len'.
5839 (_initialize_i386fbsd_nat): Remove x86 watchpoint setup and
5840 mourn_inferior' target op.
5841 * x86bsd-nat.c: New file.
5842 * x86bsd-nat.h: New file.
5843
20aa2c60
PA
58442016-07-01 Pedro Alves <palves@redhat.com>
5845 Tom Tromey <tom@tromey.com>
5846
5847 * jit.c (jit_reader_load_command): Call reinit_frame_cache and
5848 jit_inferior_created_hook.
5849 (jit_reader_unload_command): Call reinit_frame_cache and
5850 jit_inferior_exit_hook.
5851 * jit.c (struct jit_unwind_private) <registers>: Delete field.
5852 <regcache>: New field.
5853 (jit_unwind_reg_set_impl): Set the register's value in the
5854 regcache. Free the passed-in gdb_reg_value.
5855 (jit_dealloc_cache): Adjust to free the regcache.
5856 (jit_frame_sniffer): Allocate a regcache instead of an array of
5857 gdb_reg_value pointers.
5858 (jit_frame_this_id): Adjust.
5859 (jit_frame_prev_register): Read raw registers off of the regcache
5860 instead of from the gdb_reg_value pointer array. Use
5861 gdbarch_pseudo_register_read_value to read pseudo registers.
5862 * regcache.c (regcache_raw_set_cached_value): New function,
5863 factored out from ...
5864 (regcache_raw_write): ... here.
5865 * regcache.h (regcache_raw_set_cached_value): Declare.
5866
ced2dffb
PA
58672016-07-01 Pedro Alves <palves@redhat.com>
5868 Antoine Tremblay <antoine.tremblay@ericsson.com>
5869
5870 * inf-ptrace.c (inf_ptrace_detach_success): New function, factored
5871 out from ...
5872 (inf_ptrace_detach): ... here.
5873 * inf-ptrace.h (inf_ptrace_detach_success): New declaration.
5874 * linux-nat.c (get_pending_status): Rename to ...
5875 (get_detach_signal): ... this, and return a host signal instead of
5876 filling in a wait status.
5877 (detach_one_lwp): New function, factored out from detach_callback
5878 and adjusted to handle detaching from a zombie thread.
5879 (detach_callback): Skip the leader thread.
5880 (linux_nat_detach): No longer defer to inf_ptrace_detach to detach
5881 the leader thread, nor build a signal string to pass down.
5882 Instead, use target_announce_detach, detach_one_lwp and
5883 inf_ptrace_detach_success.
5884
63000888
PA
58852016-07-01 Pedro Alves <palves@redhat.com>
5886
5887 * breakpoint.c (breakpoint_init_inferior): Discard watchpoint
5888 locations.
5889 * infcmd.c (detach_command): Call breakpoint_init_inferior.
5890
0f48b757
PA
58912016-07-01 Pedro Alves <palves@redhat.com>
5892
5893 * darwin-nat.c (darwin_detach): Use target_announce_detach.
5894 * inf-ptrace.c (inf_ptrace_detach): Likewise.
5895 * nto-procfs.c (procfs_detach): Likewise.
5896 * remote.c (remote_detach_1): Likewise.
5897 * target.c (target_announce_detach): New function.
5898 * target.h (target_announce_detach): New declaration.
5899
803b47e5
TT
59002016-06-29 Tom Tromey <tom@tromey.com>
5901
5902 PR python/20129:
5903 * python/lib/gdb/command/frame_filters.py (_do_enable_frame_filter)
5904 (SetFrameFilterPriority._set_filter_priority): Use "frame_filter",
5905 not "name".
5906
9d78f827
TT
59072016-06-29 Tom Tromey <tom@tromey.com>
5908
5909 PR gdb/17210:
5910 * target.c (free_memory_read_result_vector): Take a pointer to the
5911 VEC as an argument.
5912 (read_memory_robust): Install a cleanup for "result".
5913 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update.
5914
a405c228
MG
59152016-06-29 Manish Goregaokar <manish@mozilla.com>
5916
9bf74fb2
MG
5917 * rust-lang.c (rust_get_disr_info): Initialize saveptr to NULL.
5918
59192016-06-29 Manish Goregaokar <manish@mozilla.com>
5920
a405c228
MG
5921 * rust-lang.c (rust_get_disr_info): Use strtok_r instead of strsep.
5922
2ac09a5b
YQ
59232016-06-28 Yao Qi <yao.qi@linaro.org>
5924
5925 * aarch64-tdep.c (aarch64_displaced_step_b): Use int64_t for
5926 variable new_offset.
5927
921d8f54
MG
59282016-06-27 Manish Goregaokar <manish@mozilla.com>
5929
6763d566 5930 * rust-lang.c (rust_print_type, rust_decorations): Print unit
0b08e1f3
PA
5931 types as "()".
5932 (rust_print_type): Omit return type for functions returning unit.
921d8f54 5933
f4952523
PMR
59342016-06-25 Pierre-Marie de Rodat <derodat@adacore.com>
5935
5936 * python/py-breakpoint.c (bppy_init): Clear bppy_pending_object
5937 when there is an error during the breakpoint creation.
5938
9e8a8ea8
TT
59392016-06-25 Tom Tromey <tom@tromey.com>
5940
5941 * rust-lang.c (rust_get_disr_info, rust_print_type): Fix
5942 formatting.
5943
b5a4b3c5
MG
59442016-06-25 Manish Goregaokar <manish@mozilla.com>
5945
5946 PR gdb/20239
5947 * rust-lang.c (rust_get_disr_info): Correctly interpret
5948 NonZero-optimized enums of arbitrary depth.
5949 (rust_print_type): Correctly print NonZero-optimized
5950 enums.
5951
6b850546
DT
59522016-06-24 David Taylor <dtaylor@emc.com>
5953
5954 PR gdb/17520 Structure offset wrong when 1/4 GB or greater.
5955 * c-lang.h: Change all parameters, variables, and struct or union
5956 members used as struct or union fie3ld offsets from int to
5957 LONGEST.
5958 * c-valprint.c: Likewise.
5959 * cp-abi.c: Likewise.
5960 * cp-abi.h: Likewise.
5961 * cp-valprint.c: Likewise.
5962 * d-valprint.c: Likewise.
5963 * dwarf2loc.c: Likewise.
5964 * eval.c: Likewise.
5965 * extension-priv.h: Likewise.
5966 * extension.c: Likewise.
5967 * extension.h: Likewise.
5968 * findvar.c: Likewise.
5969 * gdbtypes.h: Likewise.
5970 * gnu-v2-abi.c: Likewise.
5971 * gnu-v3-abi.c: Likewise.
5972 * go-valprint.c: Likewise.
5973 * guile/guile-internal.h: Likewise.
5974 * guile/scm-pretty-print.c: Likewise.
5975 * jv-valprint.c Likewise.
5976 * opencl-lang.c: Likewise.
5977 * p-lang.h: Likewise.
5978 * python/py-prettyprint.c: Likewise.
5979 * python/python-internal.h: Likewise.
5980 * spu-tdep.c: Likewise.
5981 * typeprint.c: Likewise.
5982 * valarith.c: Likewise.
5983 * valops.c: Likewise.
5984 * valprint.c: Likewise.
5985 * valprint.h: Likewise.
5986 * value.c: Likewise.
5987 * value.h: Likewise.
5988 * p-valprint.c: Likewise.
5989 * c-typeprint.c (c_type_print_base): When printing offset, use
5990 plongest, not %d.
5991 * gdbtypes.c (recursive_dump_type): Ditto.
5992
2907f414
DT
59932016-06-24 David Taylor <david.taylor@emc.com>
5994
5995 * MAINTAINERS (Write After Approval): Add David Taylor.
5996
e6cdd38e
JB
59972016-06-24 John Baldwin <jhb@FreeBSD.org>
5998
5999 * configure.ac: Check for support for system call LWP fields on
6000 FreeBSD.
6001 * config.in, configure: Rebuild.
6002 * data-directory/Makefile.in (SYSCALLS_FILES): Add freebsd.xml.
6003 * fbsd-nat.c (fbsd_wait) [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]:
6004 Report system call events.
6005 [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]
6006 (fbsd_set_syscall_catchpoint): New function.
6007 (fbsd_nat_add_target) [HAVE_STRUCT_PTRACE_LWPINFO_PL_SYSCALL_CODE]:
6008 Set "to_set_syscall_catchpoint" to "fbsd_set_syscall_catchpoint".
6009 * fbsd-tdep.c: Include xml-syscall.h
6010 (fbsd_get_syscall_number): New function.
6011 (fbsd_init_abi): Set XML system call file name.
6012 Add "get_syscall_number" gdbarch method.
6013 * syscalls/freebsd.xml: New file.
6014
82372b2f
JB
60152016-06-24 John Baldwin <jhb@FreeBSD.org>
6016
6017 * fbsd-tdep.c: Include "auxv.h".
6018 (fbsd_print_auxv_entry): New function.
6019 (fbsd_init_abi): Install gdbarch "print_auxv_entry" method.
6020
2faa3447
JB
60212016-06-24 John Baldwin <jhb@FreeBSD.org>
6022
6023 * auxv.c (fprint_auxv_entry): New function.
6024 (default_print_auxv_entry): New function.
6025 (fprint_target_auxv): Use gdbarch_print_auxv_entry.
6026 * auxv.h (enum auxv_format): New enum.
6027 (fprint_auxv_entry): Declare.
6028 (default_print_auxv_entry): Declare.
6029 * gdbarch.sh (print_auxv_entry): New.
6030 * gdbarch.c, gdbarch.h: Re-generated.
6031
7697fc9e
JB
60322016-06-24 John Baldwin <jhb@FreeBSD.org>
6033
6034 * fbsd-nat.c [KERN_PROC_AUXV] New variable super_xfer_partial.
6035 (fbsd_xfer_partial): New function.
6036 (fbsd_nat_add_target) [KERN_PROC_AUXV] Set "to_xfer_partial" to
6037 "fbsd_xfer_partial".
6038
8b302db8
TT
60392016-06-23 Tom Tromey <tom@tromey.com>
6040
6041 * symtab.c (symbol_find_demangled_name): Loop over languages and
6042 use language_sniff_from_mangled_name.
6043 * rust-lang.c (rust_sniff_from_mangled_name): New function.
6044 (rust_language_defn): Update.
6045 * p-lang.c (pascal_language_defn): Update.
6046 * opencl-lang.c (opencl_language_defn): Update.
6047 * objc-lang.c (objc_sniff_from_mangled_name): New function.
6048 (objc_language_defn): Update.
6049 * m2-lang.c (m2_language_defn): Update.
6050 * language.h (struct language_defn) <la_sniff_from_mangled_name>: New
6051 field.
6052 (language_sniff_from_mangled_name): Declare.
6053 * language.c (language_sniff_from_mangled_name): New function.
6054 (unknown_language_defn, auto_language_defn, local_language_defn):
6055 Update.
6056 * jv-lang.c (java_sniff_from_mangled_name): New function.
6057 (java_language_defn): Use it.
6058 * go-lang.c (go_sniff_from_mangled_name): New function.
6059 (go_language_defn): Use it.
6060 * f-lang.c (f_language_defn): Update.
6061 * defs.h (enum language): Reorder.
6062 * d-lang.c (d_sniff_from_mangled_name): New function.
6063 (d_language_defn): Use it.
6064 * cp-support.h (gdb_sniff_from_mangled_name): Declare.
6065 * cp-support.c (gdb_sniff_from_mangled_name): New function.
6066 * c-lang.c (c_language_defn, cplus_language_defn)
6067 (asm_language_defn, minimal_language_defn): Update.
6068 * ada-lang.c (ada_sniff_from_mangled_name): New function.
6069 (ada_language_defn): Use it.
6070
56618e20
TT
60712016-06-23 Tom Tromey <tom@tromey.com>
6072
6073 * ada-lang.c (ada_extensions): New array.
6074 (ada_language_defn): Use it.
6075 * c-lang.c (c_extensions): New array.
6076 (c_language_defn): Use it.
6077 (cplus_extensions): New array.
6078 (cplus_language_defn): Use it.
6079 (asm_extensions): New array.
6080 (asm_language_defn): Use it.
6081 (minimal_language_defn): Update.
6082 * d-lang.c (d_extensions): New array.
6083 (d_language_defn): Use it.
6084 * f-lang.c (f_extensions): New array.
6085 (f_language_defn): Use it.
6086 * go-lang.c (go_language_defn): Update.
6087 * jv-lang.c (java_extensions): New array.
6088 (java_language_defn): Use it.
6089 * language.c (add_language): Call add_filename_language.
6090 (unknown_language_defn, auto_language_defn, local_language_defn):
6091 Update.
6092 * language.h (struct language_defn) <la_filename_extensions>: New
6093 field.
6094 * m2-lang.c (m2_language_defn): Update.
6095 * objc-lang.c (objc_extensions): New array.
6096 (objc_language_defn): Use it.
6097 * opencl-lang.c (opencl_language_defn): Update.
6098 * p-lang.c (p_extensions): New array.
6099 (pascal_language_defn): Use it.
6100 * rust-lang.c (rust_extensions): New array.
6101 (rust_language_defn): Use it.
6102 * symfile.c (add_filename_language): No longer static. Make "ext"
6103 const.
6104 (init_filename_language_table): Remove.
6105 (_initialize_symfile): Update.
6106 * symfile.h (add_filename_language): Declare.
6107
3fcf0b0d
TT
61082016-06-23 Tom Tromey <tom@tromey.com>
6109
6110 * symfile.c (filename_language_table): Now a VEC.
6111 (fl_table_size, fl_table_next): Remove.
6112 (add_filename_language): Use VEC_safe_push.
6113 (set_ext_lang_command, info_ext_lang_command)
6114 (deduce_language_from_filename): Use VEC_iterate.
6115 (init_filename_language_table): Use VEC_empty.
6116
0c72ed4c
TT
61172016-06-23 Tom Tromey <tom@tromey.com>
6118
6119 * python/python.c (gdbpy_parameter): Now static.
6120 * python/python-internal.h (gdbpy_parameter): Don't declare.
6121
17621150
TT
61222016-06-23 Tom Tromey <tom@tromey.com>
6123
6124 PR gdb/16483:
6125 * python/lib/gdb/command/frame_filters.py
6126 (InfoFrameFilter.list_frame_filters): Rename to print_list. Print
6127 nothing if no filters found. Return value indicating whether
6128 filters were printed.
6129 (InfoFrameFilter.print_list): Remove.
6130 (InfoFrameFilter.invoke): Print message if no frame filters
6131 found.
6132
04d59df6
WT
61332016-06-21 Walfred Tedeschi <walfred.tedeschi@intel.com>
6134
6135 * f-valprint.c (f_val_print): Add field names for printing
6136 derived types fields.
6137
34a60ddb
AA
61382016-06-21 Andreas Arnez <arnez@linux.vnet.ibm.com>
6139
6140 * s390-linux-tdep.c (s390_iterate_over_regset_sections): Fix typo
6141 in name of last-break regset.
6142
49940788
PA
61432016-06-21 Pedro Alves <palves@redhat.com>
6144
6145 * fork-child.c (fork_inferior): Switch the child to the main UI
6146 right after vfork. Save/restore the current UI in the parent.
6147 Flush outputs of the main UI instead of the current UI.
6148
468afe6c
PA
61492016-06-21 Pedro Alves <palves@redhat.com>
6150
6151 * breakpoint.c (watchpoint_check): Send watchpoint-deleted output
6152 to all UIs.
6153
86f78169
PA
61542016-06-21 Pedro Alves <palves@redhat.com>
6155
6156 * NEWS: Mention support for running interpreters on separate
6157 UIs and the new new-ui command.
6158
60eb5395
PA
61592016-06-21 Pedro Alves <palves@redhat.com>
6160
6161 * interps.c (set_top_level_interpreter): New function, factored
6162 out from captured_main.
6163 (interpreter_completer): Make extern.
6164 * interps.h (set_top_level_interpreter, interpreter_completer):
6165 New declarations.
6166 (captured_main): Use set_top_level_interpreter.
6167 * top.c [!O_NOCTTY] (O_NOCTTY): Define as 0.
6168 (open_terminal_stream, new_ui_command): New functions.
6169 (init_main): Install the "new-ui" command.
6170
268a799a
PA
61712016-06-21 Pedro Alves <palves@redhat.com>
6172
6173 * cli/cli-script.c (read_next_line): Adjust to per-UI stdin.
6174 (read_command_lines): Use input_interactive_p instead of
6175 input_from_terminal_p.
6176 * defs.h (struct ui): Forward declare.
6177 (input_from_terminal_p): Rename to ...
6178 (input_interactive_p): ... this.
6179 * event-top.c (stdin_event_handler): Pass 0 as from_tty argument
6180 to quit_command.
6181 (command_handler): Adjust to per-UI stdin.
6182 (handle_line_of_input): Adjust to per-UI stdin and use
6183 input_interactive_p instead of ISATTY and input_from_terminal_p.
6184 (gdb_readline_no_editing_callback): Adjust to per-UI stdin.
6185 (command_line_handler): Always pass true as "from_tty" parameter
6186 of handle_line_of_input and execute_command.
6187 (async_sigterm_handler): Pass 0 as from_tty argument to
6188 quit_command.
6189 * inflow.c (interactive_mode, show_interactive_mode): Moved to ...
6190 (gdb_has_a_terminal): Don't check interactive_mode here.
6191 (_initialize_inflow): Don't install "set interactive-mode" here.
6192 * main.c (captured_command_loop): Adjust to per-UI stdin.
6193 * mi/mi-interp.c (mi_execute_command_wrapper): Adjust to per-UI
6194 stdin.
6195 * top.c (new_ui): Save the stdin stream and whether it's a tty.
6196 (dont_repeat): Adjust to per-UI stdin.
6197 (command_line_input): Adjust to per-UI stdin and to use
6198 input_interactive_p.
6199 (quit_force): Write history if any UI supports interactive input.
6200 (interactive_mode, show_interactive_mode): Move here, from
6201 inflow.c.
6202 (input_from_terminal_p): Rename to ...
6203 (input_interactive_p): ... this, and check the "interactive_mode"
6204 global instead of calling gdb_has_a_terminal.
6205 (_initialize_top): Install "set interactive-mode" here.
6206 * top.h (struct ui) <stdin_stream, input_interactive_p>: New
6207 fields.
6208 * utils.c (quit): Pass 0 as from_tty argument to quit_force.
6209 (defaulted_query): Adjust to per-UI stdin and to use
6210 input_interactive_p.
6211
07169ff7
PA
62122016-06-21 Pedro Alves <palves@redhat.com>
6213
6214 * event-top.c (stdin_event_handler): Don't quit gdb if it was a
6215 secondary UI's input stream that closed. Instead, just delete the
6216 UI.
6217
98d9f24e
PA
62182016-06-21 Pedro Alves <palves@redhat.com>
6219
6220 * event-top.c (main_ui_): Delete.
6221 (main_ui, current_ui, ui_list): No longer initialize here.
6222 * main.c (captured_main): UI initialization code factored out to
6223 new new_ui function.
6224 (gdb_main): Wrap captured_main with TRY/CATCH instead of
6225 catch_errors.
6226 * top.c (highest_ui_num): New global.
6227 (new_ui): New function.
6228 * top.h (struct ui) <num>: New field.
6229 (new_ui): New declaration.
6230
eaae60fd
PA
62312016-06-21 Pedro Alves <palves@redhat.com>
6232
6233 * cli/cli-interp.c (cli_on_normal_stop): Bail out early if there's
6234 nothing to print. Use should_print_stop_to_console.
6235 * tui/tui-interp.c (tui_on_normal_stop): Likewise.
6236
8980e177
PA
62372016-06-21 Pedro Alves <palves@redhat.com>
6238
6239 * breakpoint.c (new_until_break_fsm): Add 'cmd_interp' parameter.
6240 (until_break_fsm_should_stop, until_break_fsm_clean_up): Add
6241 thread parameter.
6242 (until_break_command): Pass command interpreter to thread fsm
6243 ctor.
6244 * cli/cli-interp.c (should_print_stop_to_console): Adjust.
6245 * gdbthread.h (struct thread_control_state) <command_interp>:
6246 Delete field.
6247 * infcall.c (new_call_thread_fsm): Add 'cmd_interp' parameter.
6248 Pass it down.
6249 (call_thread_fsm_should_stop): Add thread parameter.
6250 (call_function_by_hand_dummy): Pass command interpreter to thread
6251 fsm ctor. Pass thread pointer to fsm clean up method.
6252 * infcmd.c: Include interps.h.
6253 (struct step_command_fsm) <thread>: Delete field.
6254 (new_step_command_fsm): Add 'cmd_interp' parameter. Pass it down.
6255 (step_command_fsm_prepare): Remove references to fsm's thread
6256 field.
6257 (step_1): Pass command interpreter to thread
6258 fsm ctor. Pass thread pointer to fsm clean up method.
6259 (step_command_fsm_should_stop, step_command_fsm_clean_up): Add
6260 thread parameter and use it.
6261 (new_until_next_fsm): Add 'cmd_interp' parameter. Pass it down.
6262 (until_next_fsm_should_stop, until_next_fsm_clean_up): Add thread
6263 parameter and use it.
6264 (until_next_command): Pass command interpreter to thread fsm ctor.
6265 (struct finish_command_fsm) <thread>: Delete field.
6266 (finish_command_fsm_ops): Add NULL slot for should_notify_stop.
6267 (new_finish_command_fsm): Add 'cmd_interp' parameter and pass it
6268 down. Remove thread parameter and adjust.
6269 (finish_command_fsm_should_stop, finish_command_fsm_clean_up): Add
6270 thread parameter and use it.
6271 (finish_command): Pass command interpreter to thread fsm ctor.
6272 Don't pass thread.
6273 * infrun.c (follow_fork): Move thread fsm to child fork instead of
6274 command interpreter, only.
6275 (clear_proceed_status_thread): Remove reference to command_interp.
6276 (proceed): Don't record the thread's command interpreter.
6277 (clean_up_just_stopped_threads_fsms): Pass thread to fsm clean_up
6278 method.
6279 (fetch_inferior_event): Pass thread to fsm should_stop method.
6280 * thread-fsm.c (thread_fsm_ctor): Add 'cmd_interp' parameter.
6281 Store it.
6282 (thread_fsm_clean_up, thread_fsm_should_stop): Add thread
6283 parameter and pass it down.
6284 * thread-fsm.h (struct thread_fsm) <command_interp>: New field.
6285 (struct thread_fsm_ops) <clean_up, should_stop>: Add thread
6286 parameter.
6287 (thread_fsm_ctor): Add 'cmd_interp' parameter.
6288 (thread_fsm_clean_up, thread_fsm_should_stop): Add thread
6289 parameter.
6290 * thread.c (thread_cancel_execution_command): Pass thread to
6291 thread fsm clean_up method.
6292
26cde2cc
PA
62932016-06-21 Pedro Alves <palves@redhat.com>
6294
6295 * cli/cli-interp.c: Include gdbthread.h and thread-fsm.h.
6296 (should_print_stop_to_console): New function, factored out from
6297 mi_on_normal_stop_1.
6298 * cli/cli-interp.h (should_print_stop_to_console): Declare.
6299 * mi/mi-interp.c (mi_on_normal_stop_1): Use
6300 should_print_stop_to_console. Pass it the current UI's console
6301 interpreter.
6302 * mi/mi-main.c (captured_mi_execute_command): Use the
6303 INTERP_CONSOLE symbol rather than explicit "console".
6304
a8836c93
PA
63052016-06-21 Pedro Alves <palves@redhat.com>
6306
6307 * infcmd.c (prepare_execution_command): Use
6308 all_uis_on_sync_execution_starting.
6309 * infrun.c (all_uis_on_sync_execution_starting): New function.
6310 * infrun.h (all_uis_on_sync_execution_starting): Declare.
6311
3b12939d
PA
63122016-06-21 Pedro Alves <palves@redhat.com>
6313
6314 * annotate.c: Include top.h.
6315 (async_background_execution_p): Delete.
6316 (print_value_flags): Check the UI's prompt state rather then
6317 async_background_execution_p.
6318 * event-loop.c (start_event_loop): Set the prompt state to
6319 PROMPT_NEEDED.
6320 * event-top.c (display_gdb_prompt, async_enable_stdin)
6321 (async_disable_stdin): Check the current UI's prompt state instead
6322 of the sync_execution global.
6323 (command_line_handler): Set the prompt state to PROMPT_NEEDED
6324 before running a command, and display the prompt if still needed
6325 afterwards.
6326 * infcall.c (struct call_thread_fsm) <waiting_ui>: New field.
6327 (new_call_thread_fsm): New parameter 'waiting_ui'. Store it.
6328 (call_thread_fsm_should_stop): Set the prompt state to
6329 PROMPT_NEEDED.
6330 (run_inferior_call): Adjust to temporarily set the prompt state to
6331 PROMPT_BLOCKED instead of using the sync_execution global.
6332 (call_function_by_hand_dummy): Pass the current UI to
6333 new_call_thread_fsm.
6334 * infcmd.c: Include top.h.
6335 (continue_1): Check the current UI's prompt state instead of the
6336 sync_execution global.
6337 (continue_command): Validate global execution state before calling
6338 prepare_execution_command.
6339 (step_1): Call all_uis_check_sync_execution_done.
6340 (attach_post_wait): Don't call async_enable_stdin here. Remove
6341 reference to sync_execution.
6342 * infrun.c (sync_execution): Delete global.
6343 (follow_fork_inferior)
6344 (reinstall_readline_callback_handler_cleanup): Check the current
6345 UI's prompt state instead of the sync_execution global.
6346 (check_curr_ui_sync_execution_done)
6347 (all_uis_check_sync_execution_done): New functions.
6348 (fetch_inferior_event): Call all_uis_check_sync_execution_done
6349 instead of trying to determine whether the global sync execution
6350 changed.
6351 (handle_no_resumed): Check the prompt state of all UIs.
6352 (normal_stop): Emit the no unwait-for even to all PROMPT_BLOCKED
6353 UIs. Emit the "Switching to" notification to all UIs. Enable
6354 stdin in all UIs.
6355 * infrun.h (sync_execution): Delete.
6356 (all_uis_check_sync_execution_done): Declare.
6357 * main.c (captured_command_loop): Don't call
6358 interp_pre_command_loop if the prompt is blocked.
6359 (catch_command_errors, catch_command_errors_const): Adjust.
6360 (captured_main): Set the initial prompt state to PROMPT_NEEDED.
6361 * mi/mi-interp.c (display_mi_prompt): Set the prompt state to
6362 PROMPTED.
6363 (mi_interpreter_resume): Don't clear sync_execution. Remove hack
6364 comment.
6365 (mi_execute_command_input_handler): Set the prompt state to
6366 PROMPT_NEEDED before executing the command, and only display the
6367 prompt if the prompt state is PROMPT_NEEDED afterwards.
6368 (mi_on_resume_1): Adjust to check the prompt state.
6369 * target.c (target_terminal_inferior): Adjust to check the prompt
6370 state.
6371 * top.c (wait_sync_command_done, maybe_wait_sync_command_done)
6372 (execute_command): Check the current UI's prompt state instead of
6373 sync_execution.
6374 * top.h (enum prompt_state): New.
6375 (struct ui) <prompt_state>: New field.
6376 (ALL_UIS): New macro.
6377
dbf30ca3
PA
63782016-06-21 Pedro Alves <palves@redhat.com>
6379
6380 * top.c (gdb_secondary_prompt_depth): Delete.
6381 (gdb_in_secondary_prompt_p): Add ui parameter. Use it.
6382 (gdb_readline_wrapper_cleanup, gdb_readline_wrapper): Adjust to
6383 per-UI gdb_secondary_prompt_depth.
6384 * top.h (struct ui) <secondary_prompt_depth>: New field.
6385
b2d86570
PA
63862016-06-21 Pedro Alves <palves@redhat.com>
6387
6388 * cli/cli-interp.c (cli_interpreter_pre_command_loop): New
6389 function.
6390 (cli_interp_procs): Install it instead of cli_command_loop.
6391 * cli/cli-interp.h (cli_interpreter_pre_command_loop): Declare.
6392 * event-top.c (cli_command_loop): Delete.
6393 * interps.c (interp_new): Remove reference to command_loop_proc.
6394 (current_interp_command_loop): Delete.
6395 (interp_pre_command_loop): New function.
6396 (interp_command_loop_ftype): Delete.
6397 * interps.h (interp_pre_command_loop_ftype): New typedef.
6398 (struct interp_procs) <command_loop_proc>: Delele field.
6399 <pre_command_loop_proc>: New field.
6400 (current_interp_command_loop): Delete declaration.
6401 (interp_pre_command_loop): New declaration.
6402 * main.c (captured_command_loop): Call interp_pre_command_loop
6403 instead of current_interp_command_loop and start an event loop.
6404 * mi/mi-interp.c (mi_command_loop): Delete.
6405 (mi_interpreter_pre_command_loop): New.
6406 (mi_interp_procs): Update.
6407 * tui/tui-interp.c (tui_interp_procs): Install
6408 cli_interpreter_pre_command_loop instead of cli_command_loop.
6409
9204d692
PA
64102016-06-21 Pedro Alves <palves@redhat.com>
6411
6412 * interps.c (current_interpreter): New function.
6413 * interps.h (current_interpreter): New declaration.
6414 * mi/mi-cmds.h (raw_stdout): Delete declaration.
6415 * mi/mi-common.h (struct mi_interp) <raw_stdout,
6416 saved_raw_stdout>: New field.
6417 * mi/mi-interp.c (display_mi_prompt): New parameter 'mi'. Adjust
6418 to per-UI raw_stdout.
6419 (mi_interpreter_init): Adjust to per-UI raw_stdout.
6420 (mi_on_sync_execution_done, mi_execute_command_input_handler)
6421 (mi_command_loop): Pass MI instance to display_mi_prompt.
6422 (mi_on_normal_stop_1, mi_output_running_pid, mi_on_resume_1)
6423 (mi_on_resume): Adjust to per-UI raw_stdout.
6424 (saved_raw_stdout): Delete.
6425 (mi_set_logging): Adjust to per-UI raw_stdout and
6426 saved_raw_stdout.
6427 * mi/mi-main.c (raw_stdout): Delete.
6428 (mi_cmd_gdb_exit, captured_mi_execute_command)
6429 (mi_print_exception, mi_load_progress): Adjust to per-UI
6430 raw_stdout.
6431 (print_diff_now, mi_print_timing_maybe): New ui_file parameter.
6432 Pass it along.
6433 (print_diff): New ui_file parameter. Send output there instead of
6434 raw_stdout.
6435 * mi/mi-main.h (struct ui_file): Forward declare.
6436 (mi_print_timing_maybe): Add ui_file parameter.
6437
05beb275
PA
64382016-06-21 Pedro Alves <palves@redhat.com>
6439
6440 * mi/mi-interp.c (display_mi_prompt): New function.
6441
215d3118
PA
64422016-06-21 Pedro Alves <palves@redhat.com>
6443
6444 * target.c (target_terminal_inferior): Bail out after
6445 unregistering input_fd if not on the main UI.
6446 (target_terminal_ours): Bail out after registering input_fd if not
6447 on the main UI.
6448 (target_terminal_ours_for_output): Bail out if not on the main UI.
6449
c61db772
PA
64502016-06-21 Pedro Alves <palves@redhat.com>
6451
6452 * event-top.c (restore_ui_cleanup): Make extern.
6453 * infrun.c (fetch_inferior_event): Always switch to the main UI.
6454 * top.h (restore_ui_cleanup): Declare.
6455
3c216924
PA
64562016-06-21 Pedro Alves <palves@redhat.com>
6457
6458 PR mi/20034
6459 * cli/cli-interp.c: Include cli-interp.h and event-top.h.
6460 (cli_interpreter_resume): Pass 1 to gdb_setup_readline. Set the
6461 UI's input_handler here.
6462 (cli_interpreter_supports_command_editing): New function.
6463 (cli_interp_procs): Install it.
6464 * cli/cli-interp.h: New file.
6465 * event-top.c (async_command_editing_p): Rename to ...
6466 (set_editing_cmd_var): ... this.
6467 (change_line_handler): Add parameter 'editing', and use it. Bail
6468 early if the interpreter doesn't support editing. Don't touch
6469 readline state if editing is off.
6470 (gdb_rl_callback_handler_remove, gdb_rl_callback_handler_install)
6471 (gdb_rl_callback_handler_reinstall): Assert the current UI is the
6472 main UI.
6473 (display_gdb_prompt): Don't call gdb_rl_callback_handler_remove if
6474 not using readline. Check whether the current UI is using command
6475 editing instead of checking the async_command_editing_p global.
6476 (set_async_editing_command): Delete.
6477 (gdb_setup_readline): Add 'editing' parameter. Only allow editing
6478 on the main UI. Don't touch readline state if editing is off.
6479 (gdb_disable_readline): Don't touch readline state if editing is
6480 off.
6481 * event-top.h (gdb_setup_readline): Add 'int' parameter.
6482 (set_async_editing_command): Delete declaration.
6483 (change_line_handler, command_line_handler): Declare.
6484 (async_command_editing_p): Rename to ...
6485 (set_editing_cmd_var): ... this.
6486 * infrun.c (reinstall_readline_callback_handler_cleanup): Check
6487 whether the current UI has editing enabled rather than checking
6488 the async_command_editing_p global.
6489 * interps.c (interp_supports_command_editing): New function.
6490 * interps.h (interp_supports_command_editing_ftype): New typedef.
6491 (struct interp_procs) <supports_command_editing_proc>: New field.
6492 (interp_supports_command_editing): Declare.
6493 * mi/mi-interp.c (mi_interpreter_resume): Pass 0 to
6494 gdb_setup_readline. Don't clear the async_command_editing_p
6495 global. Update comments.
6496 * top.c (gdb_readline_wrapper_line, gdb_readline_wrapper): Check
6497 whether the current UI has editing enabled rather than checking
6498 the async_command_editing_p global. Don't touch readline state if
6499 editing is off.
6500 (undo_terminal_modifications_before_exit): Switch to the main UI.
6501 Unconditionally call gdb_disable_readline.
6502 (set_editing): New function.
6503 (show_async_command_editing_p): Rename to ...
6504 (show_editing): ... this. Show the state of the current UI.
6505 (_initialize_top): Adjust.
6506 * top.h (struct ui) <command_editing>: New field.
6507 * tui/tui-interp.c: Include cli/cli-interp.h.
6508 (tui_resume): Pass 1 to gdb_setup_readline. Set the UI's
6509 input_handler.
6510 (tui_interp_procs): Install
6511 cli_interpreter_supports_command_editing.
6512 * tui/tui-io.c (tui_getc): Check whether the current UI has
6513 editing enabled rather than checking the async_command_editing_p
6514 global.
6515
b6dcde57
PA
65162016-06-21 Pedro Alves <palves@redhat.com>
6517
6518 * top.c: Call gen_ret_current_ui_field_ptr for current_uiout.
6519 * top.h (struct ui) <m_current_uiout>: New field.
6520 * ui-out.c (current_uiout): Delete.
6521 * ui-out.h (current_uiout): Delete.
6522 (current_ui_current_uiout_ptr): New declaration.
6523 (current_uiout): Reimplement as wrapper around
6524 current_ui_current_uiout_ptr.
6525
23ff98d2
PA
65262016-06-21 Pedro Alves <palves@redhat.com>
6527
6528 * ui-out.c (default_ui_out_impl): Delete.
6529 (def_uiout): Delete.
6530 (current_uiout): Set to NULL.
6531 (default_table_begin, default_table_body, default_table_end)
6532 (default_table_header, default_begin, default_end)
6533 (default_field_int, default_field_skip, default_field_string)
6534 (default_field_fmt, default_spaces, default_text, default_message)
6535 (default_wrap_hint, default_flush, default_data_destroy): Delete.
6536
694ec099
PA
65372016-06-21 Pedro Alves <palves@redhat.com>
6538
6539 * event-top.c (gdb_setup_readline): Pass the UI's outstream and
6540 errstream to stdout_fileopen and stderr_fileopen.
6541 * exceptions.c: Include top.h.
6542 (print_flush): Open the current UI's outstream file descriptor,
6543 instead of hardcoding file descriptor 1.
6544 * main.c (captured_main): Save the main UI's out and error
6545 streams. Adjust stderr_fileopen call.
6546 * top.h (struct ui) <outstream, errstream>: New fields.
6547 * ui-file.c (stderr_fileopen): Add stream parameter. Use it
6548 instead of stderr.
6549 * ui-file.h (stderr_fileopen): Add stream parameter and update
6550 comment.
6551
41fd2b0f
PA
65522016-06-21 Pedro Alves <palves@redhat.com>
6553
6554 * event-top.c (input_fd): Delete.
6555 (stdin_event_handler): Switch to the UI whose input descriptor got
6556 the event. Adjust to per-UI input_fd.
6557 (gdb_setup_readline): Don't set the input_fd global. Adjust to
6558 per-UI input_fd.
6559 (gdb_disable_readline): Adjust to per-UI input_fd.
6560 * event-top.h (input_fd): Delete declaration.
6561 * linux-nat.c (linux_nat_terminal_inferior): Don't remove input_fd
6562 from the event-loop here.
6563 (linux_nat_terminal_ours): Don't register input_fd in the
6564 event-loop here.
6565 * main.c (captured_main): Adjust to per-UI input_fd.
6566 * remote.c (remote_terminal_inferior): Don't remove input_fd from
6567 the event-loop here.
6568 (remote_terminal_ours): Don't register input_fd in the event-loop
6569 here.
6570 * target.c: Include top.h and event-top.h.
6571 (target_terminal_inferior): Remove input_fd from the event-loop
6572 here.
6573 (target_terminal_ours): Register input_fd in the event-loop.
6574 * top.h (struct ui) <input_fd>: New field.
6575
f38d3ad1
PA
65762016-06-21 Pedro Alves <palves@redhat.com>
6577
6578 * cli/cli-script.c (execute_user_command, read_next_line)
6579 (read_next_line): Adjust to per-UI instream.
6580 * event-top.c (stdin_event_handler, command_handler)
6581 (handle_line_of_input, command_line_handler)
6582 (gdb_readline_no_editing_callback, async_sigterm_handler)
6583 (gdb_setup_readline): Likewise.
6584 * inflow.c: Include top.h.
6585 (gdb_has_a_terminal, child_terminal_init_with_pgrp)
6586 (gdb_save_tty_state, child_terminal_inferior)
6587 (child_terminal_ours_1, copy_terminal_info): Use the main UI.
6588 (initialize_stdin_serial): Adjust to per-UI instream.
6589 * main.c (captured_command_loop, captured_main): Adjust to per-UI
6590 instream.
6591 * mi/mi-interp.c (mi_execute_command_wrapper): Likewise.
6592 * python/python.c (python_interactive_command): Likewise.
6593 * terminal.h (struct ui): Forward declare.
6594 (initialize_stdin_serial): Add struct ui parameter.
6595 * top.c (instream): Delete.
6596 (do_restore_instream_cleanup, read_command_file, dont_repeat)
6597 (gdb_readline_no_editing, command_line_input)
6598 (input_from_terminal_p, gdb_init): Adjust to per-UI instream.
6599 * top.h (struct ui) <instream>: New field.
6600 (instream): Delete declaration.
6601 (quit): Adjust to per-UI instream.
6602
66032016-06-21 Pedro Alves <palves@redhat.com>
6604
6605 * event-loop.c: Include top.h.
6606 (invoke_async_signal_handlers): Switch to the main UI.
6607 * event-top.c (main_ui_): Update comment.
6608 (main_ui): New global.
6609 * top.h (main_ui): Declare.
6610
73ab01a0
PA
66112016-06-21 Pedro Alves <palves@redhat.com>
6612
6613 * cli/cli-interp.c (cli_interp): Delete.
6614 (as_cli_interp): New function.
6615 (cli_on_normal_stop, cli_on_signal_received)
6616 (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
6617 (cli_on_no_history): Send output to all CLI UIs.
6618 (cli_on_sync_execution_done, cli_on_command_error): Skip output if
6619 the top level interpreter is not a CLI.
6620 (cli_interpreter_init): Don't set cli_interp or install observers
6621 here.
6622 (_initialize_cli_interp): Install observers here.
6623 * event-top.c (main_ui_, ui_list): New globals.
6624 (current_ui): Point to main_ui_.
6625 (restore_ui_cleanup, switch_thru_all_uis_init)
6626 (switch_thru_all_uis_cond, switch_thru_all_uis_next): New
6627 functions.
6628 * mi/mi-interp.c (as_mi_interp): New function.
6629 (mi_interpreter_init): Don't install observers here.
6630 (mi_on_sync_execution_done): Skip output if the top level
6631 interpreter is not a MI.
6632 (mi_new_thread, mi_thread_exit, mi_record_changed)
6633 (mi_inferior_added, mi_inferior_appeared, mi_inferior_exit)
6634 (mi_inferior_removed): Send output to all MI UIs.
6635 (find_mi_interpreter, mi_interp_data): Delete.
6636 (find_mi_interp): New function.
6637 (mi_on_signal_received, mi_on_end_stepping_range)
6638 (mi_on_signal_exited, mi_on_exited, mi_on_no_history): Send output
6639 to all MI UIs.
6640 (mi_on_normal_stop): Rename to ...
6641 (mi_on_normal_stop_1): ... this.
6642 (mi_on_normal_stop): Reimplement, sending output to all MI UIs.
6643 (mi_traceframe_changed, mi_tsv_created, mi_tsv_deleted)
6644 (mi_tsv_modified, mi_breakpoint_created, mi_breakpoint_deleted)
6645 (mi_breakpoint_modified, mi_output_running_pid): Send output to
6646 all MI UIs.
6647 (mi_on_resume): Rename to ...
6648 (mi_on_resume_1): ... this. Don't handle infcalls here.
6649 (mi_on_resume): Reimplement, sending output to all MI UIs.
6650 (mi_solib_loaded, mi_solib_unloaded, mi_command_param_changed)
6651 (mi_memory_changed): Send output to all MI UIs.
6652 (report_initial_inferior): Install observers here.
6653 * top.h (struct ui) <next>: New field.
6654 (ui_list): Declare.
6655 (struct switch_thru_all_uis): New.
6656 (switch_thru_all_uis_init, switch_thru_all_uis_cond)
6657 (switch_thru_all_uis_next): Declare.
6658 (SWITCH_THRU_ALL_UIS): New macro.
6659 * tui/tui-interp.c (tui_interp): Delete global.
6660 (as_tui_interp): New function.
6661 (tui_on_normal_stop, tui_on_signal_received)
6662 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
6663 (tui_on_no_history): Send output to all TUI UIs.
6664 (tui_on_sync_execution_done, tui_on_command_error): Skip output if
6665 the top level interpreter is not a TUI.
6666 (tui_init): Don't set tui_interp or install observers here.
6667 (_initialize_tui_interp): Install observers here.
6668
8322445e
PA
66692016-06-21 Pedro Alves <palves@redhat.com>
6670
6671 * cli/cli-interp.c (cli_uiout): Delete, moved into ...
6672 (struct cli_interp): ... this new structure.
6673 (cli_on_normal_stop, cli_on_signal_received)
6674 (cli_on_end_stepping_range, cli_on_signal_exited, cli_on_exited)
6675 (cli_on_no_history): Use interp_ui_out.
6676 (cli_interpreter_init): If top level, set the cli_interp global.
6677 (cli_interpreter_init): Return the interp's data instead of NULL.
6678 (cli_interpreter_resume, cli_interpreter_exec, cli_ui_out): Adjust
6679 to cli_uiout being in the interpreter's data.
6680 (cli_interp_procs): New, factored out from _initialize_cli_interp.
6681 (cli_interp_factory): New function.
6682 (_initialize_cli_interp): Call interp_factory_register.
6683 * interps.c (get_interp_info): New, factored out from ...
6684 (get_current_interp_info): ... this.
6685 (interp_new): Add parameter 'data'. Store it.
6686 (struct interp_factory): New function.
6687 (interp_factory_p): New typedef. Define a VEC_P.
6688 (interpreter_factories): New global.
6689 (interp_factory_register): New function.
6690 (interp_add): Add 'ui' parameter. Use get_interp_info and
6691 interp_lookup_existing.
6692 (interp_lookup): Rename to ...
6693 (interp_lookup_existing): ... this. Add 'ui' parameter. Don't
6694 check for NULL or empty name here.
6695 (interp_lookup): Add 'ui' parameter and reimplement.
6696 (interp_set_temp, interpreter_exec_cmd): Adjust.
6697 (interpreter_completer): Complete on registered interpreter
6698 factories instead of interpreters.
6699 * interps.h (interp_factory_func): New typedef.
6700 (interp_factory_register): Declare.
6701 (interp_new, interp_add): Adjust.
6702 (interp_lookup): Declare.
6703 * main.c (captured_main): Adjust.
6704 * mi/mi-interp.c (mi_cmd_interpreter_exec): Adjust.
6705 (mi_interp_procs): New, factored out from
6706 _initialize_mi_interp.
6707 (mi_interp_factory): New function.
6708 * python/python.c (execute_gdb_command): Adjust.
6709 * tui/tui-interp.c (tui_init): If top level, set the tui_interp
6710 global.
6711 (tui_interp_procs): New.
6712 (tui_interp_factory): New function.
6713 (_initialize_tui_interp): Call interp_factory_register.
6714
cb814510
PA
67152016-06-21 Pedro Alves <palves@redhat.com>
6716
6717 * breakpoint.c (bpstat_do_actions_1): Access the current UI's
6718 async field instead of the interpreter_async global.
6719 * cli/cli-script.c (execute_user_command, while_command)
6720 (if_command, script_from_file): Likewise.
6721 * compile/compile.c: Include top.h instead of interps.h.
6722 (compile_file_command, compile_code_command)
6723 (compile_print_command): Access the current UI's async field
6724 instead of the interpreter_async global.
6725 * guile/guile.c: Include top.h instead of interps.h.
6726 (guile_repl_command, guile_command, gdbscm_execute_gdb_command):
6727 Access the current UI's async field instead of the
6728 interpreter_async global.
6729 * guile/scm-ports.c: Include top.h instead of interps.h.
6730 (ioscm_with_output_to_port_worker): Access the current UI's async
6731 field instead of the interpreter_async global.
6732 * inf-loop.c (inferior_event_handler): Likewise.
6733 * infcall.c (run_inferior_call): Likewise.
6734 * infrun.c (reinstall_readline_callback_handler_cleanup)
6735 (fetch_inferior_event): Likewise.
6736 * interps.c (interpreter_async): Delete.
6737 (struct ui_interp_info): New.
6738 (get_current_interp_info): New function.
6739 (interp_list, current_interpreter, top_level_interpreter_ptr):
6740 Delete.
6741 (interp_add, interp_set, interp_lookup, interp_ui_out)
6742 (current_interp_set_logging, interp_set_temp)
6743 (current_interp_named_p): Adjust to per-UI interpreters.
6744 (command_interpreter): Delete.
6745 (command_interp, current_interp_command_loop, interp_quiet_p)
6746 (interp_exec, interpreter_exec_cmd, interpreter_completer)
6747 (top_level_interpreter, top_level_interpreter_data): Adjust to
6748 per-UI interpreters.
6749 * interps.h (interpreter_async): Delete.
6750 * main.c (captured_command_loop): Access the current UI's async
6751 field instead of the interpreter_async global.
6752 * python/python.c (python_interactive_command, python_command)
6753 (execute_gdb_command): Likewise.
6754 * top.c (maybe_wait_sync_command_done, execute_command_to_string):
6755 Access the current UI's async field instead of the
6756 interpreter_async global.
6757 * top.h (struct tl_interp_info): Forward declare.
6758 (struct ui) <interp_info, async>: New fields.
6759
79aa2fe8
PA
67602016-06-21 Pedro Alves <palves@redhat.com>
6761
6762 * main.c (gdb_stdout, gdb_stderr, gdb_stdlog, gdb_stdin): Delete
6763 globals.
6764 (gen_ret_current_ui_field_ptr): New macro. Use it to generate
6765 wrappers for gdb_stdout, gdb_stderr, gdb_stdlog and gdb_stdin.
6766 * top.h (struct ui) <m_gdb_stdout, m_gdb_stdin, m_gdb_stderr,
6767 m_gdb_stdlog>: New fields.
6768 (current_ui_gdb_stdout_ptr, current_ui_gdb_stdin_ptr)
6769 (current_ui_gdb_stderr_ptr, current_ui_gdb_stdlog_ptr): Declare.
6770 (gdb_stdout, gdb_stdin, gdb_stderr, gdb_stdlog): Reimplement as
6771 macros.
6772
a74e1786
PA
67732016-06-21 Pedro Alves <palves@redhat.com>
6774
6775 * event-top.c: Update readline-related comments.
6776 (input_handler, call_readline): Delete globals.
6777 (gdb_rl_callback_handler): Call the current UI's input_handler
6778 method.
6779 (change_line_handler): Adjust to set current UI's properties
6780 instead of globals.
6781 (current_ui_, current_ui): New globals.
6782 (get_command_line_buffer): Rewrite to refer to the current UI.
6783 (stdin_event_handler): Adjust to call the call_readline method of
6784 the current UI.
6785 (gdb_readline_no_editing_callback): Adjust to call the current UI's
6786 input_handler method.
6787 (gdb_setup_readline): Adjust to set current UI's properties
6788 instead of globals.
6789 * event-top.h (call_readline, input_handler): Delete declarations.
6790 * mi/mi-interp.c (mi_interpreter_resume): Adjust to set current
6791 UI's properties instead of globals.
6792 * top.c (gdb_readline_wrapper_cleanup): Adjust to set current UI's
6793 properties instead of globals.
6794 (gdb_readline_wrapper): Adjust to call and set current UI's
6795 methods instead of globals.
6796 * top.h: Include buffer.h and event-loop.h.
6797 (struct ui): New struct.
6798 (current_ui): New declaration.
6799
45db7c09
PA
68002016-06-21 Pedro Alves <palves@redhat.com>
6801
6802 * ada-lang.c (ada_exception_name_addr_1): Add comment.
6803 (print_it_exception): Select the current frame.
6804
a28d8e50
YTL
68052016-06-17 Yan-Ting Lin <currygt52@gmail.com>
6806
6807 * Makefile.in (ALL_TARGET_OBS): Add nds32-tdep.o.
6808 (HFILES_NO_SRCDIR): Add nds32-tdep.h.
6809 (ALLDEPFILES): Add nds32-tdep.c.
6810 * NEWS: Mention new NDS32 port.
6811 * configure.tgt: Add NDS32.
6812 * nds32-tdep.c: New file.
6813 * nds32-tdep.h: New file.
6814 * features/Makefile (XMLTOC): Add nds32.xml.
6815 * features/nds32-core.xml: New file.
6816 * features/nds32-fpu.xml: New file.
6817 * features/nds32-system.xml: New file.
6818 * features/nds32.c: New file (generated).
6819 * features/nds32.xml: New file.
6820
4bf5402d
JB
68212016-06-14 John Baldwin <jhb@FreeBSD.org>
6822
6823 * v850-tdep.c (v850_use_struct_convention): Trim type length checks.
6824
683cd65e
JB
68252016-06-14 John Baldwin <jhb@FreeBSD.org>
6826
6827 * tui/tui-stack.c (tui_show_frame_info): Fix type mismatch.
6828
bec734b2
JB
68292016-06-14 John Baldwin <jhb@FreeBSD.org>
6830
6831 * rs6000-tdep.c (ppc_process_record_op31): Initialize ra.
6832
e46dd0f4
NC
68332016-06-13 Nick Clifton <nickc@redhat.com>
6834
6835 * gdbtypes.c (replace_type): Fix assertion.
6836
695bfa52
TT
68372016-06-10 Tom Tromey <tom@tromey.com>
6838
6839 * gdbtypes.c (arch_type, arch_integer_type, arch_character_type)
6840 (arch_boolean_type, arch_float_type, arch_complex_type)
6841 (arch_flags_type, append_flags_type_field)
6842 (append_flags_type_flag, arch_composite_type)
6843 (append_composite_type_field_raw)
6844 (append_composite_type_field_aligned)
6845 (append_composite_type_field): Make "name" parameter const.
6846 * gdbtypes.h (arch_type, arch_integer_type, arch_character_type)
6847 (arch_boolean_type, arch_float_type, arch_complex_type)
6848 (append_composite_type_field, append_composite_type_field_aligned)
6849 (append_composite_type_field_raw, arch_flags_type)
6850 (append_flags_type_field, append_flags_type_flag): Constify.
6851
347dc102
TT
68522016-06-10 Tom Tromey <tom@tromey.com>
6853
6854 PR rust/20110:
6855 * rust-exp.y (lex_number): Don't truncate large numbers to i32.
6856
edef7b8c
TT
68572016-06-10 Tom Tromey <tom@tromey.com>
6858
6859 * Makefile.in (COMMON_OBS): Remove rust-exp.o.
6860 (YYFILES): Add rust-exp.c.
6861 (YYOBJ): Add rust-exp.o.
6862 (local-maintainer-clean): Remove rust-exp.c.
6863
bb556f1f
TK
68642016-06-09 Toshihito Kikuchi <k.toshihito@yahoo.de>
6865
6866 * NEWS: Mention that GDB now supports a negative repeat count in
6867 the 'x' command.
6868 * printcmd.c (decode_format): Allow '-' in the parameter
6869 "string_ptr" to accept a negative repeat count.
6870 (find_instruction_backward): New function.
6871 (read_memory_backward): New function.
6872 (integer_is_zero): New function.
6873 (find_string_backward): New function.
6874 (do_examine): Use new functions to examine memory backward.
6875 (_initialize_printcmd): Mention that 'x' command supports a negative
6876 repeat count.
6877
c040f3fb
TK
68782016-06-09 Toshihito Kikuchi <k.toshihito@yahoo.de>
6879
6880 * MAINTAINERS (Write After Approval): Add Toshihito Kikuchi.
6881
4dee3531
TT
68822016-06-09 Tom Tromey <tom@tromey.com>
6883
6884 PR python/19819:
6885 * python/py-xmethods.c (invoke_method_name)
6886 (py_get_result_type_method_name, py_invoke_method_name): Remove.
6887 (gdbpy_initialize_xmethods): Don't initialize
6888 py_invoke_method_name, py_get_result_type_method_name.
6889
1aec0b6a
SM
68902016-06-07 Simon Marchi <simon.marchi@ericsson.com>
6891
6892 * mi/mi-interp.c (mi_record_changed): Add missing braces.
6893
2091da29
BH
68942016-06-07 Bernhard Heckel <bernhard.heckel@intel.com>
6895
6896 * findvar.c (follow_static_link): Check for valid pointer.
6897
38b022b4
SM
68982016-06-06 Simon Marchi <simon.marchi@ericsson.com>
6899
6900 * NEWS: Mention the new fields in =record-started.
6901 * common/btrace-common.h (btrace_format_short_string): New function
6902 declaration.
6903 * common/btrace-common.c (btrace_format_short_string): New
6904 function.
6905 * mi/mi-interp.c (mi_record_changed): Output method and format
6906 fields in the =record-started record.
6907 * record-btrace.c (record_btrace_open): Adapt record_changed
6908 notification.
6909 * record-full.c (record_full_open): Likewise.
6910 * record.c (cmd_record_stop): Likewise.
6911
0ae534d2
JT
69122016-06-02 Jon Turney <jon.turney@dronecode.org.uk>
6913
6914 * windows-nat.c (handle_output_debug_string): Return type of
6915 gdb_signal_from_host() is gdb_signal, not an int.
6916 (windows_get_exec_module_filename): Add pointer casts for C++.
6917
1b40ec05
TT
69182016-06-02 Tom Tromey <tom@tromey.com>
6919
6920 PR python/18984:
6921 * python/python.c (gdbpy_solib_name): Use GDB_PY_LLU_ARG.
6922
bb7c96de
PA
69232016-06-01 Pedro Alves <palves@redhat.com>
6924
6925 * remote-fileio.c (remote_fio_ctrl_c_flag, remote_fio_sa)
6926 (remote_fio_osa)
6927 (remote_fio_ofunc, remote_fileio_sig_init, remote_fileio_sig_set)
6928 (remote_fileio_sig_exit, remote_fileio_ctrl_c_signal_handler):
6929 Delete.
6930 (remote_fileio_o_quit_handler): New global.
6931 (remote_fileio_quit_handler): New function.
6932 (remote_fileio_reply): Check the quit flag instead of the custom
6933 'remote_fio_ctrl_c_flag' flag. Restore the quit handler instead
6934 of changing the SIGINT handler.
6935 (do_remote_fileio_request): Override the quit handler instead of
6936 changing the SIGINT handler.
6937
51403f74
NC
69382016-06-01 Nick Clifton <nickc@redhat.com>
6939
6940 * common/common-utils.c (xmalloc_failed): New function. Provided
6941 so that the version in libiberty is not linked in.
6942
e3b5daf9
MM
69432016-06-01 Markus Metzger <markus.t.metzger@intel.com>
6944
6945 * infcmd.c (skip_finish_frames): New.
6946 (finish_command): Call skip_finish_frames.
6947
03d73f1f
YQ
69482016-06-01 Yao Qi <yao.qi@linaro.org>
6949
6950 PR remote/19998
6951 * remote-fileio.c (remote_fileio_ctrl_c_signal_handler): Call
6952 quit_serial_event_set.
6953
c799dec7
JB
69542016-06-01 Joel Brobecker <brobecker@adacore.com>
6955
6956 GDB 7.11.1 released.
6957
3326303b
MG
69582016-05-31 Martin Galvan <martin.galvan@tallertechnologies.com>
6959
6960 PR c++/19893
6961 * dwarf2loc.c (coerce_pieced_ref, indirect_synthetic_pointer,
6962 fetch_const_value_from_synthetic_pointer): New functions.
6963 (indirect_pieced_value): Move lower half to indirect_synthetic_pointer.
6964 (pieced_value_funcs): Implement coerce_ref.
6965 * valops.c (value_addr): Call coerce_ref for synthetic references.
6966 * valprint.c (valprint_check_validity): Return true for synthetic
6967 references. Also, don't show "<synthetic pointer>" if they reference
6968 addressable values.
6969 (generic_val_print_ref): Handle synthetic references. Also move some
6970 code to print_ref_address.
6971 (print_ref_address, get_value_addr_contents): New functions.
6972
e385593e
JK
69732016-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
6974
6975 PR c++/15231
6976 * dwarf2read.c (enum pc_bounds_kind): Add PC_BOUNDS_INVALID.
6977 (process_psymtab_comp_unit_reader, read_func_scope): Adjust callers.
6978 (read_lexical_block_scope): Import DIEs from bare DW_TAG_lexical_block.
6979 (read_call_site_scope): Adjust callers.
6980 (dwarf2_get_pc_bounds): Implement pc_bounds_invalid.
6981 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
6982
3a2b436a
JK
69832016-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
6984
6985 Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum
6986 * dwarf2read.c (enum pc_bounds_kind) New.
6987 (dwarf2_get_pc_bounds): Use it in the declaration.
6988 (process_psymtab_comp_unit_reader): Adjust caller. Rename has_pc_info
6989 to cu_bounds_kind.
6990 (read_func_scope, read_lexical_block_scope, read_call_site_scope):
6991 Adjust callers.
6992 (dwarf2_get_pc_bounds): Use enum pc_bounds_kind in the definition.
6993 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds): Adjust callers.
6994
aab3c527
JK
69952016-05-29 Jan Kratochvil <jan.kratochvil@redhat.com>
6996
6997 * NEWS (QCatchSyscalls): Remove the parameter. Include ...
6998 (QCatchSyscalls:1 in qSupported) ... this separate entry which got
6999 deleted.
7000
c64e0f61
JK
70012016-05-29 Jan Kratochvil <jan.kratochvil@redhat.com>
7002
7003 * NEWS (N stop reply): Remove empty line.
7004
1a72702b
AM
70052016-05-28 Alan Modra <amodra@gmail.com>
7006
7007 * compile/compile-object-load.c (link_callbacks_multiple_definition,
7008 link_callbacks_warning, link_callbacks_undefined_symbol,
7009 link_callbacks_undefined_symbol, link_callbacks_reloc_overflow,
7010 link_callbacks_reloc_dangerous,
7011 link_callbacks_unattached_reloc): Return void.
7012
51415b9f
AB
70132016-05-27 Andrew Burgess <andrew.burgess@embecosm.com>
7014
7015 * opencl-lang.c (evaluate_subexp_opencl): If
7016 EVAL_AVOID_SIDE_EFFECTS mode, forward the VALUE_LVAL attribute to
7017 the returned value in the STRUCTOP_STRUCT case.
7018
ac775bf4
AB
70192016-05-27 Andrew Burgess <andrew.burgess@embecosm.com>
7020
7021 * eval.c (evaluate_subexp_standard): If EVAL_AVOID_SIDE_EFFECTS
7022 mode, forward the VALUE_LVAL attribute to the returned value in
7023 the STRUCTOP_PTR case.
7024
7bd787e8
TT
70252016-05-25 Tom Tromey <tom@tromey.com>
7026
7027 * python/py-value.c (value_object_as_number): Use correct spelling
7028 of HAVE_LIBPYTHON2_4.
7029
2bbad2ea
BH
70302016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
7031
7032 * f-typeprint.c (f_type_print_base): Replace 0 by show.
7033
e188eb36
BH
70342016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
7035
7036 * f-typeprint.c (f_type_print_base): Decrease show by one.
7037
9b2db1fd
BH
70382016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
7039
7040 * f-typeprint.c (f_type_print_base): Don't print fields when show < 0.
7041
72b17055
BH
70422016-05-25 Bernhard Heckel <bernhard.heckel@intel.com>
7043
7044 * f-typeprint.c (f_type_print_base): Take print level into account.
7045
ddae9462
TT
70462016-05-24 Tom Tromey <tom@tromey.com>
7047
7048 PR python/17386:
7049 * python/py-value.c (value_object_as_number): Add
7050 nb_inplace_floor_divide, nb_inplace_true_divide, nb_index.
7051
e2b7f516
TT
70522016-05-24 Tom Tromey <tom@tromey.com>
7053
7054 * python/py-value.c (value_object_as_number): Add
7055 nb_inplace_divide for Python 2.
7056
1957f6b8
TT
70572016-05-23 Tom Tromey <tom@tromey.com>
7058
7059 PR python/17981:
7060 * python/py-breakpoint.c (gdbpy_breakpoints): Return a new tuple
7061 when there are no breakpoints.
7062
026a9174
PA
70632016-05-24 Pedro Alves <palves@redhat.com>
7064
7065 PR gdb/19828
7066 * linux-nat.c (attach_proc_task_lwp_callback): Mark the lwp
7067 resumed, and add the thread to GDB's thread list.
7068
72b049d3
PA
70692016-05-24 Pedro Alves <palves@redhat.com>
7070
7071 PR gdb/19828
7072 * linux-nat.c (get_pending_status): If the thread reported the
7073 event to the core and it's pending, use the pending status signal
7074 number.
7075
774113b0
PA
70762016-05-24 Pedro Alves <palves@redhat.com>
7077
7078 PR gdb/19828
7079 * linux-nat.c (lwp_lwpid_htab): New htab.
7080 (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
7081 (lwp_lwpid_htab_add_lwp): New functions.
7082 (lwp_list): Tweak comment.
7083 (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
7084 functions.
7085 (purge_lwp_list): Rewrite, using htab_traverse_noresize.
7086 (add_initial_lwp): Add lwp to htab too. Use lwp_list_add.
7087 (delete_lwp): Use lwp_list_remove. Remove htab too.
7088 (find_lwp_pid): Search in htab.
7089 (_initialize_linux_nat): Call lwp_lwpid_htab_create.
7090 * linux-nat.h (struct lwp_info) <prev>: New field.
7091
70922016-05-24 Pedro Alves <palves@redhat.com>
7093
7094 PR gdb/19828
7095 * linux-nat.c (lwp_lwpid_htab): New htab.
7096 (lwp_info_hash, lwp_lwpid_htab_eq, lwp_lwpid_htab_create)
7097 (lwp_lwpid_htab_add_lwp): New functions.
7098 (lwp_list): Tweak comment.
7099 (lwp_list_add, lwp_list_remove, lwp_lwpid_htab_remove_pid): New
7100 functions.
7101 (purge_lwp_list): Rewrite, using htab_traverse_noresize.
7102 (add_initial_lwp): Add lwp to htab too. Use lwp_list_add.
7103 (delete_lwp): Use lwp_list_remove. Remove htab too.
7104 (find_lwp_pid): Search in htab.
7105 (_initialize_linux_nat): Call lwp_lwpid_htab_create.
7106 * linux-nat.h (struct lwp_info) <prev>: New field.
7107
1ad3de98
PA
71082016-05-24 Pedro Alves <palves@redhat.com>
7109
7110 PR gdb/19828
7111 * linux-nat.c (linux_resume_one_lwp_throw): Clear the LWP's core
7112 field.
7113 (linux_nat_update_thread_list): Don't fetch the core if already
7114 known.
7115
95e94c3f
PA
71162016-05-24 Pedro Alves <palves@redhat.com>
7117
7118 PR gdb/19828
7119 * linux-tdep.c (find_mapping_size): Delete.
7120 (linux_vsyscall_range_raw): Rewrite reading from
7121 /proc/PID/task/PID/maps directly instead of using
7122 gdbarch_find_memory_regions.
7123
aa01bd36
PA
71242016-05-24 Pedro Alves <palves@redhat.com>
7125
7126 PR gdb/19828
7127 * linux-nat.c (report_thread_events): New global.
7128 (linux_handle_extended_wait): Report
7129 TARGET_WAITKIND_THREAD_CREATED if thread event reporting is
7130 enabled.
7131 (wait_lwp, linux_nat_filter_event): Report all thread exits if
7132 thread event reporting is enabled. Remove comment.
7133 (filter_exit_event): New function.
7134 (linux_nat_wait_1): Use it.
7135 (linux_nat_thread_events): New function.
7136 (linux_nat_add_target): Install it as target_thread_events method.
7137
00a3cb9c
YTL
71382016-05-24 Yan-Ting Lin <currygt52@gmail.com>
7139
7140 * MAINTAINERS (Write After Approval): Add "Yan-Ting Lin".
7141
7eb89530
YQ
71422016-05-23 Yao Qi <yao.qi@arm.com>
7143
7144 * arch-utils.c (default_code_of_frame_writable): New function.
7145 * arch-utils.h (default_code_of_frame_writable): Declare.
7146 * arm-tdep.c (arm_code_of_frame_writable): New function.
7147 (arm_gdbarch_init): Install gdbarch method
7148 code_of_frame_writable if the target is M-profile.
7149 * frame.c (skip_unwritable_frames): New function.
7150 * frame.h (skip_unwritable_frames): Declare.
7151 * gdbarch.sh (code_of_frame_writable): New.
7152 * gdbarch.c, gdbarch.h: Re-generated.
7153 * infcmd.c (finish_command): Call skip_unwritable_frames.
7154
0f6ed0e0
TT
71552016-05-23 Tom Tromey <tom@tromey.com>
7156
7157 PR python/19438, PR python/18393:
7158 * python/py-objfile.c (objfpy_initialize): Initialize self->dict.
7159 * python/py-progspace.c (pspy_initialize): Initialize self->dict.
7160
d0571b99
GB
71612016-05-23 Gary Benson <gbenson@redhat.com>
7162
7163 * nat/gdb_thread_db.h (td_thr_validate_ftype): Remove typedef.
7164 * linux-thread-db.c (struct thread_db_info) <td_thr_validate_p>:
7165 Remove field.
7166 (try_thread_db_load_1): Remove td_thr_validate initialization.
7167
37773e78
JB
71682016-05-23 Jon Boden <jon@ubuntubsd.org> (tiny change)
7169
7170 * configure.ac: Search for libutil-freebsd as alternative to libutil.
7171 * configure: Re-generated.
7172
bfb0d950
AS
71732016-05-19 Andreas Schwab <schwab@suse.de>
7174
7175 * ia64-libunwind-tdep.c (libunwind_descr): Add cast from void *.
7176 (libunwind_frame_set_descr): Likewise.
7177 (libunwind_frame_cache): Likewise.
7178 (libunwind_frame_dealloc_cache): Likewise.
7179 (libunwind_frame_sniffer): Likewise.
7180 (libunwind_search_unwind_table): Likewise.
7181 (libunwind_sigtramp_frame_sniffer): Likewise.
7182 (libunwind_get_reg_special): Likewise.
7183 (libunwind_load): Likewise.
7184 * ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
7185 (ia64_linux_store_register): Likewise.
7186 (ia64_linux_xfer_partial): Likewise.
7187 * ia64-tdep.c (ia64_access_reg): Likewise.
7188 (ia64_access_fpreg): Likewise.
7189 (ia64_access_rse_reg): Likewise.
7190 (ia64_access_rse_fpreg): Likewise.
7191
45f4ed92
TT
71922016-05-18 Tom Tromey <tom@tromey.com>
7193
7194 * rust-lang.c (rust_subscript): Initialize "high".
7195
28addb40
SM
71962016-05-17 Simon Marchi <simon.marchi@ericsson.com>
7197
7198 PR gdb/20045
7199 * mi/mi-main.c (mi_on_resume): Call target_can_async_p instead
7200 of target_is_async_p.
7201
61c6156d
SM
72022016-05-17 Simon Marchi <simon.marchi@ericsson.com>
7203
7204 PR gdb/18077
7205 * mi/mi-main.c (run_one_inferior): Use run target to determine
7206 whether to run async or not.
7207 (mi_cmd_exec_run): Likewise.
7208
01739a3b
TT
72092016-05-17 Tom Tromey <tom@tromey.com>
7210
7211 * std-operator.def (OP_RANGE): Rename from OP_F90_RANGE.
7212 * rust-lang.c: Don't include f-lang.h.
7213 (rust_range, rust_compute_range, rust_subscript)
7214 (rust_evaluate_subexp): Update.
7215 * rust-exp.y: Don't include f-lang.h.
7216 (ast_range, convert_ast_to_expression): Update.
7217 * parse.c (operator_length_standard): Update.
7218 * f-lang.h (enum f90_range_type): Move to expression.h.
7219 * f-exp.y: Use OP_RANGE.
7220 * expression.h (enum range_type): New enum; renamed from
7221 f90_range_type.
7222 * expprint.c: Don't include f-lang.h.
7223 (print_subexp_standard, dump_subexp_body_standard): Use OP_RANGE.
7224 * eval.c (value_f90_subarray, evaluate_subexp_standard): Update.
7225
0bdfa368
TT
72262016-05-17 Tom Tromey <tom@tromey.com>
7227
7228 * NEWS: Add Rust item.
7229
c44af4eb
TT
72302016-05-17 Tom Tromey <tom@tromey.com>
7231 Manish Goregaokar <manishsmail@gmail.com>
7232
7233 * symtab.c (symbol_find_demangled_name): Handle Rust.
7234 * symfile.c (init_filename_language_table): Treat ".rs" as Rust.
7235 * std-operator.def (STRUCTOP_ANONYMOUS, OP_RUST_ARRAY): New
7236 constants.
7237 * rust-lang.h: New file.
7238 * rust-lang.c: New file.
7239 * rust-exp.y: New file.
7240 * dwarf2read.c (read_file_scope): Add Rust producer sniffing.
7241 (dwarf2_compute_name, read_func_scope, read_structure_type)
7242 (read_base_type, read_subrange_type, set_cu_language)
7243 (new_symbol_full, determine_prefix): Handle Rust.
7244 * defs.h (enum language) <language_rust>: New constant.
7245 * Makefile.in (SFILES): Add rust-exp.y, rust-lang.c.
7246 (COMMON_OBS): Add rust-exp.o, rust-lang.o.
7247
00272ec4
TT
72482016-05-17 Tom Tromey <tom@tromey.com>
7249
7250 * valprint.h (struct generic_val_print_array) <array_start,
7251 array_end>: New fields.
7252 * valprint.c (generic_val_print_array): Add "decorations"
7253 parameter. Use "array_start", "array_end".
7254 (generic_val_print) <TYPE_CODE_ARRAY>: Update.
7255 * p-valprint.c (p_decorations): Update.
7256 * m2-valprint.c (m2_decorations): Update.
7257 * f-valprint.c (f_decorations): Update.
7258 * c-valprint.c (c_decorations): Update.
7259
dcd1f979
TT
72602016-05-17 Tom Tromey <tom@tromey.com>
7261
7262 * NEWS: Add "maint selftest" entry.
7263 * selftest.h: New file.
7264 * selftest.c: New file.
7265 * maint.c: Include selftest.h.
7266 (maintenance_selftest): New function.
7267 (_initialize_maint_cmds): Add "maint selftest" command.
7268 * configure.ac (GDB_SELF_TEST): Maybe define.
7269 * config.in, configure: Rebuild.
7270 * Makefile.in (SFILES): Add selftest.c.
7271 (COMMON_OBS): Add selftest.o.
7272
e4b8a1c8
TT
72732016-05-17 Tom Tromey <tom@tromey.com>
7274
7275 * expprint.c: Include f-lang.h.
7276 (print_subexp_standard, dump_subexp_body_standard): Handle
7277 OP_F90_RANGE.
7278
9ab0bb2a
TT
72792016-05-17 Tom Tromey <tom@tromey.com>
7280
7281 * Makefile.in (init.c): Search .y files for initialization
7282 functions.
7283
8ddd5a6c
DE
72842016-05-12 Doug Evans <dje@google.com>
7285
7286 PR symtab/19999
7287 * dwarf2loc.c (dwarf2_find_location_expression): For DWO files still
7288 add base_offset.
7289
df140a0b
TS
72902016-05-10 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
7291
7292 * iq2000-tdep.c (iq2000_scan_prologue): Remove if that shouldn't guard
7293 anything.
7294 * linespec.c (add_sal_to_sals): Restore call to symtab_to_fullname.
7295
39d911fc
TP
72962016-05-10 Thomas Preud'homme <thomas.preudhomme@arm.com>
7297
7298 * arm-tdep.c (arm_elf_make_msymbol_special): Use
7299 ARM_GET_SYM_BRANCH_TYPE to get branch type of a symbol.
7300
870f88f7
TS
73012016-05-07 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
7302
7303 * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Remove unused
7304 variables.
7305 * aarch64-tdep.c (aarch64_skip_prologue): Likewise.
7306 (aarch64_scan_prologue): Likewise.
7307 (aarch64_prologue_prev_register): Likewise.
7308 (aarch64_dwarf2_prev_register): Likewise.
7309 (pass_in_v): Likewise.
7310 (aarch64_push_dummy_call): Likewise.
7311 (aarch64_breakpoint_from_pc): Likewise.
7312 (aarch64_return_in_memory): Likewise.
7313 (aarch64_return_value): Likewise.
7314 (aarch64_displaced_step_b_cond): Likewise.
7315 (aarch64_displaced_step_cb): Likewise.
7316 (aarch64_displaced_step_tb): Likewise.
7317 (aarch64_gdbarch_init): Likewise.
7318 (aarch64_process_record): Likewise.
7319 * alpha-mdebug-tdep.c (alpha_mdebug_init_abi): Likewise.
7320 * alpha-tdep.c (_initialize_alpha_tdep): Likewise.
7321 * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
7322 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Likewise.
7323 * amd64-tdep.c (fixup_riprel): Likewise.
7324 * amd64-windows-tdep.c (amd64_windows_frame_decode_epilogue): Likewise.
7325 (amd64_windows_frame_decode_insns): Likewise.
7326 (amd64_windows_frame_cache): Likewise.
7327 (amd64_windows_frame_prev_register): Likewise.
7328 (amd64_windows_frame_this_id): Likewise.
7329 (amd64_windows_init_abi): Likewise.
7330 * arm-linux-tdep.c (arm_linux_get_syscall_number): Likewise.
7331 (arm_linux_get_next_pcs_syscall_next_pc): Likewise.
7332 * arm-symbian-tdep.c (arm_symbian_init_abi): Likewise.
7333 * arm-tdep.c (arm_make_epilogue_frame_cache): Likewise.
7334 (arm_epilogue_frame_prev_register): Likewise.
7335 (arm_record_vdata_transfer_insn): Likewise.
7336 (arm_record_exreg_ld_st_insn): Likewise.
7337 * auto-load.c (execute_script_contents): Likewise.
7338 (print_scripts): Likewise.
7339 * avr-tdep.c (avr_frame_prev_register): Likewise.
7340 (avr_push_dummy_call): Likewise.
7341 * bfin-linux-tdep.c (bfin_linux_sigframe_init): Likewise.
7342 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
7343 * blockframe.c (find_pc_partial_function_gnu_ifunc): Likewise.
7344 * break-catch-throw.c (fetch_probe_arguments): Likewise.
7345 * breakpoint.c (breakpoint_xfer_memory): Likewise.
7346 (breakpoint_init_inferior): Likewise.
7347 (breakpoint_inserted_here_p): Likewise.
7348 (software_breakpoint_inserted_here_p): Likewise.
7349 (hardware_breakpoint_inserted_here_p): Likewise.
7350 (bpstat_what): Likewise.
7351 (break_range_command): Likewise.
7352 (save_breakpoints): Likewise.
7353 * coffread.c (coff_symfile_read): Likewise.
7354 * cris-tdep.c (cris_push_dummy_call): Likewise.
7355 (cris_scan_prologue): Likewise.
7356 (cris_register_size): Likewise.
7357 (_initialize_cris_tdep): Likewise.
7358 * d-exp.y: Likewise.
7359 * dbxread.c (dbx_read_symtab): Likewise.
7360 (process_one_symbol): Likewise.
7361 (coffstab_build_psymtabs): Likewise.
7362 (elfstab_build_psymtabs): Likewise.
7363 * dicos-tdep.c (dicos_init_abi): Likewise.
7364 * disasm.c (do_mixed_source_and_assembly): Likewise.
7365 (gdb_disassembly): Likewise.
7366 * dtrace-probe.c (dtrace_process_dof): Likewise.
7367 * dwarf2read.c (error_check_comp_unit_head): Likewise.
7368 (build_type_psymtabs_1): Likewise.
7369 (skip_one_die): Likewise.
7370 (process_imported_unit_die): Likewise.
7371 (dwarf2_physname): Likewise.
7372 (read_file_scope): Likewise.
7373 (setup_type_unit_groups): Likewise.
7374 (create_dwo_cu_reader): Likewise.
7375 (create_dwo_cu): Likewise.
7376 (create_dwo_unit_in_dwp_v1): Likewise.
7377 (create_dwo_unit_in_dwp_v2): Likewise.
7378 (lookup_dwo_unit_in_dwp): Likewise.
7379 (free_dwo_file): Likewise.
7380 (check_producer): Likewise.
7381 (dwarf2_add_typedef): Likewise.
7382 (dwarf2_add_member_fn): Likewise.
7383 (read_unsigned_leb128): Likewise.
7384 (read_signed_leb128): Likewise.
7385 (dwarf2_const_value): Likewise.
7386 (follow_die_sig_1): Likewise.
7387 (dwarf_decode_macro_bytes): Likewise.
7388 * extension.c (restore_active_ext_lang): Likewise.
7389 * frv-linux-tdep.c (frv_linux_sigtramp_frame_cache): Likewise.
7390 * ft32-tdep.c (ft32_analyze_prologue): Likewise.
7391 * gdbtypes.c (lookup_typename): Likewise.
7392 (resolve_dynamic_range): Likewise.
7393 (check_typedef): Likewise.
7394 * h8300-tdep.c (h8300_is_argument_spill): Likewise.
7395 (h8300_gdbarch_init): Likewise.
7396 * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
7397 (hppa_frame_this_id): Likewise.
7398 (_initialize_hppa_tdep): Likewise.
7399 * hppanbsd-tdep.c (hppanbsd_sigtramp_cache_init): Likewise.
7400 * hppaobsd-tdep.c (hppaobsd_supply_fpregset): Likewise.
7401 * i386-dicos-tdep.c (i386_dicos_init_abi): Likewise.
7402 * i386-tdep.c (i386_bnd_type): Likewise.
7403 (i386_gdbarch_init): Likewise.
7404 (i386_mpx_bd_base): Likewise.
7405 * i386nbsd-tdep.c (i386nbsd_sigtramp_cache_init): Likewise.
7406 * i386obsd-tdep.c (i386obsd_elf_init_abi): Likewise.
7407 * ia64-tdep.c (examine_prologue): Likewise.
7408 (ia64_frame_cache): Likewise.
7409 (ia64_push_dummy_call): Likewise.
7410 * infcmd.c (finish_command_fsm_async_reply_reason): Likewise.
7411 (default_print_one_register_info): Likewise.
7412 * infrun.c (infrun_thread_ptid_changed): Likewise.
7413 (thread_still_needs_step_over): Likewise.
7414 (stop_all_threads): Likewise.
7415 (restart_threads): Likewise.
7416 (keep_going_stepped_thread): Likewise.
7417 * iq2000-tdep.c (iq2000_scan_prologue): Likewise.
7418 * language.c (language_init_primitive_type_symbols): Likewise.
7419 * linespec.c (add_sal_to_sals): Likewise.
7420 * linux-nat.c (status_callback): Likewise.
7421 (kill_unfollowed_fork_children): Likewise.
7422 (linux_nat_kill): Likewise.
7423 * linux-tdep.c (linux_fill_prpsinfo): Likewise.
7424 * linux-thread-db.c (thread_db_notice_clone): Likewise.
7425 (record_thread): Likewise.
7426 * location.c (string_to_event_location_basic): Likewise.
7427 * m32c-tdep.c (m32c_prev_register): Likewise.
7428 * m32r-linux-tdep.c (m32r_linux_init_abi): Likewise.
7429 * m32r-tdep.c (decode_prologue): Likewise.
7430 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_cache): Likewise.
7431 * machoread.c (macho_symtab_read): Likewise.
7432 (macho_symfile_read): Likewise.
7433 (macho_symfile_offsets): Likewise.
7434 * maint.c (set_per_command_cmd): Likewise.
7435 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
7436 (mi_cmd_stack_list_variables): Likewise.
7437 * mi/mi-main.c (mi_cmd_exec_run): Likewise.
7438 (output_register): Likewise.
7439 (mi_cmd_execute): Likewise.
7440 (mi_cmd_trace_define_variable): Likewise.
7441 (print_variable_or_computed): Likewise.
7442 * minsyms.c (prim_record_minimal_symbol_full): Likewise.
7443 * mn10300-tdep.c (mn10300_frame_prev_register): Likewise.
7444 * msp430-tdep.c (msp430_pseudo_register_write): Likewise.
7445 * mt-tdep.c (mt_registers_info): Likewise.
7446 * nios2-tdep.c (nios2_analyze_prologue): Likewise.
7447 (nios2_push_dummy_call): Likewise.
7448 (nios2_frame_unwind_cache): Likewise.
7449 (nios2_stub_frame_cache): Likewise.
7450 (nios2_stub_frame_sniffer): Likewise.
7451 (nios2_gdbarch_init): Likewise.
7452 * ppc-ravenscar-thread.c: Likewise.
7453 * ppcfbsd-tdep.c (ppcfbsd_sigtramp_frame_cache): Likewise.
7454 * python/py-evts.c (add_new_registry): Likewise.
7455 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
7456 (bpfinishpy_detect_out_scope_cb): Likewise.
7457 * python/py-framefilter.c (py_print_value): Likewise.
7458 * python/py-inferior.c (infpy_write_memory): Likewise.
7459 * python/py-infevents.c (create_inferior_call_event_object): Likewise.
7460 * python/py-infthread.c (thpy_get_ptid): Likewise.
7461 * python/py-linetable.c (ltpy_get_pcs_for_line): Likewise.
7462 (ltpy_get_all_source_lines): Likewise.
7463 (ltpy_is_valid): Likewise.
7464 (ltpy_iternext): Likewise.
7465 * python/py-symtab.c (symtab_and_line_to_sal_object): Likewise.
7466 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Likewise.
7467 (unwind_infopy_str): Likewise.
7468 * python/py-varobj.c (py_varobj_get_iterator): Likewise.
7469 * ravenscar-thread.c (ravenscar_inferior_created): Likewise.
7470 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
7471 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
7472 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Likewise.
7473 * s390-linux-tdep.c (s390_supply_tdb_regset): Likewise.
7474 (s390_frame_prev_register): Likewise.
7475 (s390_dwarf2_frame_init_reg): Likewise.
7476 (s390_record_vr): Likewise.
7477 (s390_process_record): Likewise.
7478 * score-tdep.c (score_push_dummy_call): Likewise.
7479 (score3_analyze_prologue): Likewise.
7480 * sh-tdep.c (sh_extract_return_value_nofpu): Likewise.
7481 * sh64-tdep.c (sh64_analyze_prologue): Likewise.
7482 (sh64_push_dummy_call): Likewise.
7483 (sh64_extract_return_value): Likewise.
7484 (sh64_do_fp_register): Likewise.
7485 * solib-aix.c (solib_aix_get_section_offsets): Likewise.
7486 * solib-darwin.c (darwin_read_exec_load_addr_from_dyld): Likewise.
7487 (darwin_solib_read_all_image_info_addr): Likewise.
7488 * solib-dsbt.c (enable_break): Likewise.
7489 * solib-frv.c (enable_break2): Likewise.
7490 (frv_fdpic_find_canonical_descriptor): Likewise.
7491 * solib-svr4.c (svr4_handle_solib_event): Likewise.
7492 * sparc-tdep.c (sparc_skip_stack_check): Likewise.
7493 * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): Likewise.
7494 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
7495 * spu-tdep.c (info_spu_dma_cmdlist): Likewise.
7496 * stack.c (read_frame_local): Likewise.
7497 * symfile.c (symbol_file_add_separate): Likewise.
7498 (remove_symbol_file_command): Likewise.
7499 * symmisc.c (maintenance_print_one_line_table): Likewise.
7500 * symtab.c (symbol_cache_flush): Likewise.
7501 (basic_lookup_transparent_type): Likewise.
7502 (sort_search_symbols_remove_dups): Likewise.
7503 * target.c (target_memory_map): Likewise.
7504 (target_detach): Likewise.
7505 (target_resume): Likewise.
7506 (acquire_fileio_fd): Likewise.
7507 (target_store_registers): Likewise.
7508 * thread.c (print_thread_info_1): Likewise.
7509 * tic6x-tdep.c (tic6x_analyze_prologue): Likewise.
7510 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Likewise.
7511 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
7512 (tilegx_analyze_prologue): Likewise.
7513 (tilegx_stack_frame_destroyed_p): Likewise.
7514 (tilegx_frame_cache): Likewise.
7515 * tracefile.c (trace_save): Likewise.
7516 * tracepoint.c (encode_actions_and_make_cleanup): Likewise.
7517 (start_tracing): Likewise.
7518 (print_one_static_tracepoint_marker): Likewise.
7519 * tui/tui.c (tui_enable): Likewise.
7520 * valops.c (value_struct_elt_bitpos): Likewise.
7521 (find_overload_match): Likewise.
7522 (find_oload_champ): Likewise.
7523 * value.c (value_contents_copy_raw): Likewise.
7524 * windows-tdep.c (windows_get_tlb_type): Likewise.
7525 * x86-linux-nat.c (x86_linux_enable_btrace): Likewise.
7526 * xcoffread.c (record_minimal_symbol): Likewise.
7527 (scan_xcoff_symtab): Likewise.
7528 * xtensa-tdep.c (execute_code): Likewise.
7529 (xtensa_gdbarch_init): Likewise.
7530 (_initialize_xtensa_tdep): Likewise.
7531
c1aebf87
UW
75322016-05-04 Ulrich Weigand <uweigand@de.ibm.com>
7533
7534 * spu-linux-nat.c (spu_bfd_iovec_pread): Add pointer cast for C++.
7535 (spu_bfd_open): Likewise.
7536
edf689f0
YQ
75372016-05-04 Yao Qi <yao.qi@linaro.org>
7538
7539 PR gdb/19947
7540 * corefile.c (read_memory): Rename it to ...
7541 (read_memory_object): ... it. Add parameter object.
7542 (read_memory): Call read_memory_object.
7543 (read_stack): Likewise.
7544 (read_code): Likewise.
7545
6c447423
DE
75462016-05-03 Yunlian Jiang <yunlian@google.com>
7547 Doug Evans <dje@google.com>
7548
7549 PR symtab/19914
7550 * dwarf2read.c (open_and_init_dwp_file): Look at backlink if objfile
7551 is separate debug file.
7552
a1ec3d24
DB
75532016-05-03 Don Breazeal <donb@codesourcery.com>
7554
7555 * serial.h (gdb_pipe): Fix argument names in comment.
7556
86f1abec
PA
75572016-05-03 Pedro Alves <palves@redhat.com>
7558
7559 PR python/20037
7560 * python/python.c (_initialize_python) [IS_PY3K]: xstrdup/xfree
7561 oldloc.
7562
1aa96702
PA
75632016-05-03 Pedro Alves <palves@redhat.com>
7564
7565 * python/python.c (_initialize_python) [IS_PY3K]: Remove dead
7566 code.
7567
a4a1c157
PA
75682016-05-03 Pedro Alves <palves@redhat.com>
7569
7570 * configure.ac (PYTHON_LIBS): Sed away "-Xlinker -export-dynamic".
7571 * configure: Regenerate.
7572
1b4f615e
PA
75732016-05-03 Pedro Alves <palves@redhat.com>
7574
7575 * configure.ac (checking for the dynamic export flag): Add
7576 $PYTHON_CPPFLAGS to CPPFLAGS.
7577 * configure: Regenerate.
7578
b631e59b
KT
75792016-05-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
7580
7581 * symfile.c (find_pc_overlay): Add braces to avoid -Wparentheses
7582 warning.
7583 (find_pc_mapped_section): Likewise.
7584 (list_overlays_command): Likewise.
7585
1270fac6
EZ
75862016-05-02 Eli Zaretskii <eliz@gnu.org>
7587
7588 * windows-nat.c (_initialize_check_for_gdb_ini): Fix off-by-one
7589 error in allocation of space for "$HOME/.gdbinit" string. This
7590 caused GDB to abort on startup whenever a '~/gdb.ini' file was
7591 actually found, because xsnprintf would hit an assertion
7592 violation.
7593
0400cf2f
SM
75942016-04-28 Simon Marchi <simon.marchi@ericsson.com>
7595
7596 * cli/cli-decode.c (help_cmd_list): Do not list commands that
7597 are deprecated.
7598
57809e5e
JK
75992016-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
7600
7601 * remote.c (remote_start_remote): Detect PACKET_vFile_setfs.support.
7602
476350ba
MG
76032016-04-27 Martin Galvan <martin.galvan@tallertechnologies.com>
7604
7605 * c-valprint.c (c_value_print): Always convert val back to reference
7606 type if we converted it to a pointer type.
7607
2d681be4
AA
76082016-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
7609
7610 * configure.ac: Enhance configure check for babeltrace to reject
7611 non-C++-enabled versions.
7612 * configure: Regenerate.
7613
3e2e34f8
KB
76142016-04-26 Sanimir Agovic <sanimir.agovic@intel.com>
7615 Keven Boell <keven.boell@intel.com>
7616 Bernhard Heckel <bernhard.heckel@intel.com>
7617
7618 * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
7619 function.
7620 (F77_DIM_SIZE, F77_DIM_OFFSET): Remove macro.
7621 (f77_print_array_1): Use value_subscript to subscript a
7622 value array.
7623 (f77_print_array): Remove call to f77_create_arrayprint_offset_tbl.
7624 (f_val_print): Use value_field to construct a field value.
7625
8f07e298
BH
76262016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
7627
7628 * valarith.c (value_address): Resolve dynamic types.
7629
9920b434
BH
76302016-04-26 Bernhard Heckel <bernhard.heckel@intel.com>
7631 Keven Boell <kevel.boell@intel.com>
7632
7633 * NEWS: Add new supported features for fortran.
7634 * gdbtypes.c (remove_dyn_prop): New.
7635 (resolve_dynamic_struct): Keep type length for fortran structs.
7636 * gdbtypes.h: Forward declaration of new function.
7637 * value.c (value_address): Return dynamic resolved location of a value.
7638 (set_value_component_location): Adjust the value address
7639 for single value prints.
7640 (value_primitive_field): Support value types with a dynamic location.
7641 (set_internalvar): Remove dynamic location property of
7642 internal variables.
7643
20249ae4
YQ
76442016-04-25 Pedro Alves <palves@redhat.com>
7645 Yao Qi <yao.qi@linaro.org>
7646
7647 * mem-break.c (set_raw_breakpoint_at): Create a raw breakpoint
7648 object. Insert it if it is not inserted yet. Increase the
7649 refcount and link it into the proc's raw breakpoint list.
7650
21edc42f
YQ
76512016-04-25 Yao Qi <yao.qi@linaro.org>
7652
7653 * breakpoint.c (should_be_inserted): Return 0 if the location's
7654 owner is not single step breakpoint or single step breakpoint's
7655 thread isn't the thread which is stepping past a breakpoint.
7656 * gdbarch.sh (software_single_step): Update comments.
7657 * gdbarch.h: Regenerated.
7658 * infrun.c (struct step_over_info) <thread>: New field.
7659 (set_step_over_info): New argument 'thread'. Callers updated.
7660 (clear_step_over_info): Set field thread to -1.
7661 (thread_is_stepping_over_breakpoint): New function.
7662 * infrun.h (thread_is_stepping_over_breakpoint): Declaration.
7663
0154d990
EBM
76642016-04-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
7665
7666 * ppc-linux-nat.c (ppc_linux_read_description): Use PPC_FEATURE_HAS_VSX
7667 and PPC_FEATURE_HAS_ALTIVEC to check if such features are available.
7668
6d7e9d3b
YQ
76692016-04-22 Yao Qi <yao.qi@linaro.org>
7670
7671 * valops.c (read_value_memory): New local variable 'stack'.
7672 Set it to either TARGET_OBJECT_STACK_MEMORY or
7673 TARGET_OBJECT_MEMORY.
7674
b3f11165
PA
76752016-04-22 Pedro Alves <palves@redhat.com>
7676
7677 * ada-exp.y: Remove all yy symbol remappings.
7678 (GDB_YY_REMAP_PREFIX): Define.
7679 Include "yy-remap.h".
7680 * ada-lang.c (ada_language_defn): Adjust.
7681 * ada-lang.h (ada_error): Rename to ...
7682 (ada_yyerror): ... this.
7683 * c-exp.y: Remove all yy symbol remappings.
7684 (GDB_YY_REMAP_PREFIX): Define.
7685 Include "yy-remap.h".
7686 * c-lang.c (c_language_defn, cplus_language_defn)
7687 (asm_language_defn, minimal_language_defn): Adjust.
7688 * c-lang.h (c_error): Rename to ...
7689 (c_yyerror): ... this.
7690 * d-exp.y: Remove all yy symbol remappings.
7691 (GDB_YY_REMAP_PREFIX): Define.
7692 Include "yy-remap.h".
7693 * d-lang.c (d_language_defn): Adjust.
7694 * d-lang.h (d_error): Rename to ...
7695 (d_yyerror): ... this.
7696 * f-exp.y: Remove all yy symbol remappings.
7697 (GDB_YY_REMAP_PREFIX): Define.
7698 Include "yy-remap.h".
7699 * f-lang.c (f_language_defn): Adjust.
7700 * f-lang.h (f_error): Rename to ...
7701 (f_yyerror): ... this.
7702 * go-exp.y: Remove all yy symbol remappings.
7703 (GDB_YY_REMAP_PREFIX): Define.
7704 Include "yy-remap.h".
7705 * go-lang.c (go_language_defn): Adjust.
7706 * go-lang.h (go_error): Rename to ...
7707 (go_yyerror): ... this.
7708 * jv-exp.y: Remove all yy symbol remappings.
7709 (GDB_YY_REMAP_PREFIX): Define.
7710 Include "yy-remap.h".
7711 * jv-lang.c (java_language_defn): Adjust.
7712 * jv-lang.h (java_error): Rename to ...
7713 (java_yyerror): ... this.
7714 * m2-exp.y: Remove all yy symbol remappings.
7715 (GDB_YY_REMAP_PREFIX): Define.
7716 Include "yy-remap.h".
7717 * m2-lang.c (m2_language_defn): Adjust.
7718 * m2-lang.h (m2_error): Rename to ...
7719 (m2_yyerror): ... this.
7720 * objc-exp.y: Remove all yy symbol remappings.
7721 (GDB_YY_REMAP_PREFIX): Define.
7722 Include "yy-remap.h".
7723 * objc-lang.c (objc_language_defn): Adjust.
7724 * opencl-lang.c (opencl_language_defn): Adjust.
7725 * p-exp.y: Remove all yy symbol remappings.
7726 (GDB_YY_REMAP_PREFIX): Define.
7727 Include "yy-remap.h".
7728 * p-lang.c (pascal_language_defn): Adjust.
7729 * p-lang.h (pascal_error): Rename to ...
7730 (pascal_yyerror): ... this.
7731 * yy-remap.h: New file.
7732
6290672f
PA
77332016-04-22 Pedro Alves <palves@redhat.com>
7734
7735 * common/common-exceptions.h (GDB_XCPT_TRY): Remove mention of
7736 the foreign frames issue.
7737 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
7738
89525768
PA
77392016-04-22 Pedro Alves <palves@redhat.com>
7740
7741 * common/common-exceptions.c (enum catcher_state, struct catcher)
7742 (current_catcher): Define in C++ mode too.
7743 (exceptions_state_mc_catch): Call throw_exception_sjlj instead of
7744 throw_exception.
7745 (throw_exception_sjlj, throw_exception_cxx): New functions,
7746 factored out from throw_exception.
7747 (throw_exception): Reimplement.
7748 * common/common-exceptions.h (exceptions_state_mc_init)
7749 (exceptions_state_mc_action_iter)
7750 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
7751 Declare in C++ mode too.
7752 (TRY): Rename to ...
7753 (TRY_SJLJ): ... this.
7754 (CATCH): Rename to ...
7755 (CATCH_SJLJ): ... this.
7756 (END_CATCH): Rename to ...
7757 (END_CATCH_SJLJ): ... this.
7758 [GDB_XCPT == GDB_XCPT_SJMP] (TRY, CATCH, END_CATCH): Map to SJLJ
7759 equivalents.
7760 (throw_exception): Update comments.
7761 (throw_exception_sjlj): Declare.
7762 * event-top.c (gdb_rl_callback_read_char_wrapper): Extend intro
7763 comment. Wrap body in TRY_SJLJ/CATCH_SJLJ and rethrow any
7764 intercepted exception.
7765 (gdb_rl_callback_handler): New function.
7766 (gdb_rl_callback_handler_install): Always install
7767 gdb_rl_callback_handler as readline callback.
7768
3c610247
PA
77692016-04-22 Pedro Alves <palves@redhat.com>
7770
7771 * event-top.c (rl_callback_read_char_wrapper): Rename to ...
7772 (gdb_rl_callback_read_char_wrapper): ... this.
7773 (change_line_handler, gdb_setup_readline): Adjust.
7774
3539aa13
YQ
77752016-04-22 Yao Qi <yao.qi@linaro.org>
7776
7777 * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Clear CPSR
7778 bits 20 to 23.
7779
0f60e29b
JB
77802016-04-22 Joel Brobecker <brobecker@adacore.com>
7781
7782 * MAINTAINER: Remove myself as AIX Maintainer.
7783
3877922e
MR
77842016-04-22 Maciej W. Rozycki <macro@imgtec.com>
7785
7786 * mips-tdep.c (mips_gdbarch_init): For GDB_OSABI_LINUX set
7787 `num_regs' to 90 rather than 79. Where a target description is
7788 present adjust the setting appropriately.
7789
88c3cd8d
PA
77902016-04-21 Pedro Alves <palves@redhat.com>
7791
7792 * common/common-exceptions.h (GDB_XCPT_TRY): Add comment.
7793 (GDB_XCPT): Always define as GDB_XCPT_SJMP.
7794
71829b1a
PA
77952016-04-21 Pedro Alves <palves@redhat.com>
7796
7797 * aix-thread.c (pdc_read_data, pdc_write_data): Add cast.
7798 (aix_thread_resume): Use PTRACE_TYPE_ARG5.
7799 * rs6000-nat.c (rs6000_ptrace64): Use PTRACE_TYPE_ARG5.
7800 (rs6000_ptrace_ldinfo): Change type of 'ldi' local to void
7801 pointer, and cast return to gdb_byte pointer.
7802
3451269c
PA
78032016-04-21 Pedro Alves <palves@redhat.com>
7804
7805 * s390-linux-nat.c (fetch_regset, store_regset, check_regset): Use
7806 void * instead of gdb_byte *.
7807
b36cec19
PA
78082016-04-21 Pedro Alves <palves@redhat.com>
7809
7810 * dwarf2read.c (try_open_dwop_file, open_dwo_file)
7811 (file_file_name, file_full_name): Add char * cast to sentinel in
7812 concat/reconcat calls.
7813 * event-top.c (top_level_prompt): Likewise.
7814 * guile/guile.c (initialize_scheme_side): Likewise.
7815 * linux-tdep.c (linux_fill_prpsinfo): Likewise.
7816 * macrotab.c (macro_source_fullname): Likewise.
7817 * main.c (get_init_files, captured_main): Likewise.
7818 * psymtab.c (psymtab_to_fullname): Likewise.
7819 * python/python.c (_initialize_python)
7820 (gdbpy_finish_initialization): Likewise.
7821 * source.c (symtab_to_fullname): Likewise.
7822
a2358508
PA
78232016-04-20 Pedro Alves <palves@redhat.com>
7824
7825 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Default to yes.
7826 * configure: Renegerate.
7827
5ae00552
PA
78282016-04-20 Pedro Alves <palves@redhat.com>
7829
7830 * darwin-nat.c (darwin_decode_message): Use gdb_signal_from_host.
7831
d9436c7c
PA
78322016-04-20 Pedro Alves <palves@redhat.com>
7833
7834 * aarch64-tdep.c (aarch64_record_load_store): Change type of
7835 'reg_rm_val' local to ULONGEST.
7836
597e448c
PA
78372016-04-20 Pedro Alves <palves@redhat.com>
7838
7839 * darwin-nat.c (darwin_resume_thread): Add uintptr_t cast.
7840
6c739336
DE
78412016-04-20 Doug Evans <xdje42@gmail.com>
7842
7843 * symmisc.c (dump_symtab_1): Print owning compunit for identical
7844 blockvectors.
7845
8cef59a2
YQ
78462016-04-20 Yao Qi <yao.qi@linaro.org>
7847
7848 * aarch32-linux-nat.c: Include "arch/arm-linux.h".
7849
6885166d
YQ
78502016-04-20 Yao Qi <yao.qi@linaro.org>
7851
7852 * arm-linux-tdep.h (ARM_CPSR_GREGNUM): Move it to ...
7853 * arch/arm-linux.h: ... here.
7854
21002a63
JB
78552016-04-19 John Baldwin <jhb@FreeBSD.org>
7856
7857 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Change xstateregs
7858 to void *.
7859 (amd64bsd_store_inferior_registers): Likewise.
7860 * fbsd-nat.c (resume_one_thread_cb): Explicitly cast data to ptid_t *.
7861 (resume_all_threads_cb): Likewise.
7862 * i386bsd-nat.c (i386bsd_supply_gregset): Cast gregs to char *.
7863 (i386bsd_collect_gregset): Likewise.
7864 (i386bsd_fetch_inferior_registers): Change xstateregs to void *.
7865 (i386bsd_store_inferior_registers): Likewise.
7866
f39c07ac
JB
78672016-04-19 John Baldwin <jhb@FreeBSD.org>
7868
7869 * main.c (setup_alternate_signal_stack): Cast to char *.
7870
d04c1a59
DE
78712016-04-19 Doug Evans <xdje42@gmail.com>
7872
7873 * symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile.
7874 All callers updated.
7875
a55411b9
DE
78762016-04-19 Doug Evans <xdje42@gmail.com>
7877
ee2915c9 7878 PR gdb/17911
a55411b9
DE
7879 * source.c (is_regular_file): New arg errno_ptr.
7880 All callers updated.
7881
73e6209f
AA
78822016-04-19 Andreas Arnez <arnez@linux.vnet.ibm.com>
7883
7884 * linux-record.c (record_linux_system_call): Merge handling for
7885 readlink/recv/read and pipe/pipe2.
7886
f42bf748
WT
78872016-04-14 Walfred Tedeschi <walfred.tedeschi@intel.com>
7888
7889 * features/i386/amd64-mpx-linux.xml: Remove AVX feature.
7890 * features/i386/amd64-mpx.xml: Remove AVX feature.
7891 * features/i386/i386-mpx-linux.xml: Remove AVX feature.
7892 * features/i386/i386-mpx.xml: Remove AVX feature.
7893 * features/i386/amd64-mpx-linux.c: Regenerate.
7894 * features/i386/amd64-mpx.c: Regenerate.
7895 * features/i386/i386-mpx-linux.c: Regenerate.
7896 * features/i386/i386-mpx.c: Regenerate.
7897 * regformats/i386/amd64-mpx-linux.dat: Regenerate.
7898 * regformats/i386/amd64-mpx.dat: Regenerate.
7899 * regformats/i386/i386-mpx-linux.dat: Regenerate.
7900 * regformats/i386/i386-mpx.dat: Regenerate.
7901
2b863f51
WT
79022016-04-16 Walfred Tedeschi <walfred.tedeschi@intel.com>
7903
7904 * amd64-linux-tdep.c (features/i386/amd64-avx-mpx-linux.c):
7905 New include.
7906 (amd64_linux_core_read_description): Add case for
7907 X86_XSTATE_AVX_MPX_MASK.
7908 (_initialize_amd64_linux_tdep): Call initialize_tdesc_amd64_avx_mpx_linux.
7909 * amd64-linux-tdep.h (tdesc_amd64_avx_mpx_linux): New definition.
7910 * amd64-tdep.c (features/i386/amd64-avx-mpx.c): New include.
7911 (amd64_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
7912 (_initialize_amd64_tdep): Call initialize_tdesc_amd64_avx_mpx.
7913 * common/x86-xstate.h (X86_XSTATE_MPX_MASK): Remove AVX bits.
7914 (X86_XSTATE_AVX_MPX_MASK): New case.
7915 * features/Makefile (i386/i386-avx-mpx, i386/i386-avx-mpx-linux)
7916 (i386/amd64-avx-mpx, i386/amd64-avx-mpx-linux): New rules.
7917 (i386/i386-avx-mpx-expedite, i386/i386-avx-mpx-linux-expedite)
7918 (i386/amd64-avx-mpx-expedite, i386/amd64-avx-mpx-linux-expedite):
7919 New expedites.
7920 * i386-linux-tdep.c (features/i386/i386-avx-mpx-linux.c): New
7921 include.
7922 (i386_linux_core_read_description): Add case
7923 X86_XSTATE_AVX_MPX_MASK.
7924 (_initialize_i386_linux_tdep): Call
7925 initialize_tdesc_i386_avx_mpx_linux.
7926 * i386-linux-tdep.h (tdesc_i386_avx_mpx_linux): New include.
7927 * i386-tdep.c (features/i386/i386-avx-mpx.c): New include.
7928 (i386_target_description): Add case for X86_XSTATE_AVX_MPX_MASK.
7929 * x86-linux-nat.c (x86_linux_read_description): Add case for
7930 X86_XSTATE_AVX_MPX_MASK.
7931 * features/i386/amd64-avx-mpx-linux.xml: New file.
7932 * features/i386/i386-avx-mpx-linux.xml: New file.
7933 * features/i386/i386-avx-mpx.xml: New file.
7934 * features/i386/amd64-avx-mpx.xml: New file.
7935 * features/i386/amd64-avx-mpx-linux.c: Generated.
7936 * features/i386/amd64-avx-mpx.c: Generated.
7937 * features/i386/i386-avx-mpx-linux.c: Generated.
7938 * features/i386/i386-avx-mpx.c: Generated.
7939 * regformats/i386/amd64-avx-mpx-linux.dat: Generated.
7940 * regformats/i386/amd64-avx-mpx.dat: Generated.
7941 * regformats/i386/i386-avx-mpx-linux.dat: Generated.
7942 * regformats/i386/i386-avx-mpx.dat: Generated.
7943
9b30624b
PA
79442016-04-18 Pedro Alves <palves@redhat.com>
7945
7946 * ptrace.m4 (GDB_AC_PTRACE): Don't run tests in C++ mode.
7947 * configure: Regenerate.
7948
a22df60a
MG
79492016-04-18 Martin Galvan <martin.galvan@tallertechnologies.com>
7950
7951 * valops.c (value_addr): For C++ references, set the copied value's
7952 enclosing_type as well.
7953
5947319e
YQ
79542016-04-18 Yao Qi <yao.qi@linaro.org>
7955
7956 Revert:
7957 2016-04-15 Yao Qi <yao.qi@linaro.org>
7958
7959 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
7960 PC is far from the end of function.
7961
58484447
PA
79622016-04-16 Pedro Alves <palves@redhat.com>
7963
7964 * ada-exp.y (yydefred): Define as ada_yydefred.
7965
2b2798cc
PA
79662016-04-15 Pedro Alves <palves@redhat.com>
7967
7968 * ada-lang.c (ada_lookup_struct_elt_type): Constify 'type_str' and
7969 'name_str' locals.
7970
d7abe101
PA
79712016-04-15 Pedro Alves <palves@redhat.com>
7972
7973 * btrace.c (pt_btrace_insn_flags): Change return type to
7974 btrace_insn_flags. Use btrace_insn_flags for local.
7975
77770d83
PA
79762016-04-15 Pedro Alves <palves@redhat.com>
7977
7978 * nat/linux-ptrace.h [__mips__] (GDB_ARCH_IS_TRAP_BRKPT): Also
7979 accept TRAP_BRKPT.
7980 [__mips__] (GDB_ARCH_IS_TRAP_HWBKPT): Also accept TRAP_HWBKPT.
7981
415fa612
YQ
79822016-04-15 Yao Qi <yao.qi@linaro.org>
7983
7984 * arm-tdep.c (thumb_stack_frame_destroyed_p): Return zero if
7985 PC is far from the end of function.
7986
7f31862a
PA
79872016-04-14 Pedro Alves <palves@redhat.com>
7988
7989 * cli/cli-cmds.c (alias_usage_error): New function.
7990 (alias_command): Use it.
7991 * ctf.c (ctf_save_metadata_header): Inline metadata_fmt local in
7992 ctf_save_write_metadata call.
7993
aebf07fc
PA
79942016-04-14 Pedro Alves <palves@redhat.com>
7995
7996 * ada-typeprint.c (print_fixed_point_type): Don't pass float as
7997 argument to function expecting LONGEST.
7998 * value.c (unpack_long): Add casts to LONGEST.
7999
57d1de9c
LM
80002016-04-13 Luis Machado <lgustavo@codesourcery.com>
8001
8002 * exec.c (exec_file_locate_attach): Guard a couple functions
8003 that can throw errors.
8004 (exception_print_same): New helper function.
8005
3a00c802
PA
80062016-04-13 Pedro Alves <palves@redhat.com>
8007
8008 PR remote/19840
8009 * remote.c (struct remote_state) <last_resume_exec_dir>: New
8010 field.
8011 (new_remote_state): Default last_resume_exec_dir to EXEC_FORWARD.
8012 (remote_open_1): Reset last_resume_exec_dir to EXEC_FORWARD.
8013 (remote_resume): Store the last execution direction.
8014 (remote_execution_direction): New function.
8015 (init_remote_ops): Install it as to_execution_direction target_ops
8016 method.
8017
0f41b320
PA
80182016-04-12 Pedro Alves <palves@redhat.com>
8019
8020 * common/common-exceptions.h (GDB_XCPT_TRY): Update comment.
8021 [__cplusplus] (GDB_XCPT): Define as GDB_XCPT_TRY.
8022
173981bc
PA
80232016-04-12 Pedro Alves <palves@redhat.com>
8024
8025 * common/common-exceptions.c (struct catcher) <buf>: Now a
8026 'jmp_buf' instead of SIGJMP_BUF.
8027 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
8028 (throw_exception): Use longjmp instead of SIGLONGJMP.
8029 * common/common-exceptions.h: Include <setjmp.h> instead of
8030 "gdb_setjmp.h".
8031 (exceptions_state_mc_init): Change return type to 'jmp_buf'.
8032 [GDB_XCPT == GDB_XCPT_SJMP] (TRY): Use setjmp instead of
8033 SIGSETJMP.
8034 * cp-support.c: Include "gdb_setjmp.h".
8035
2afc13ff
PA
80362016-04-12 Pedro Alves <palves@redhat.com>
8037
8038 * common/common-exceptions.c (exception_rethrow): Remove
8039 prepare_to_throw_exception call.
8040 * common/common-exceptions.h (prepare_to_throw_exception): Delete
8041 declaration.
8042 * exceptions.c (prepare_to_throw_exception): Delete.
8043
cfd0fbdd
PA
80442016-04-12 Pedro Alves <palves@redhat.com>
8045
8046 * target.c (target_check_pending_interrupt): Delete.
8047 * target.h (struct target_ops) <to_check_pending_interrupt>:
8048 Remove method.
8049 (target_check_pending_interrupt): Remove declaration.
8050 * target-delegates.c: Regenerate.
8051
585a46a2
PA
80522016-04-12 Pedro Alves <palves@redhat.com>
8053
8054 * defs.h: Update comments on SIGINT handling.
8055 (immediate_quit): Delete declaration.
8056 * event-loop.c (call_async_signal_handler): Delete.
8057 * event-loop.h (call_async_signal_handler): Delete declaration.
8058 (mark_async_signal_handler): Update comments.
8059 (gdb_call_async_signal_handler): Delete declaration.
8060 * event-top.c (handle_sigint): Call mark_async_signal_handler
8061 instead of gdb_call_async_signal_handler.
8062 * exceptions.c (prepare_to_throw_exception): Remove reference to
8063 immediate_quit.
8064 (exception_fprintf): Remove comments about immediate_quit.
8065 * mingw-hdep.c (sigint_event, sigint_handler): Delete.
8066 (gdb_select): Don't wait on sigint_event.
8067 (gdb_call_async_signal_handler): Delete.
8068 (_initialize_mingw_hdep): Delete.
8069 * posix-hdep.c (gdb_call_async_signal_handler): Delete.
8070 * utils.c (immediate_quit): Delete.
8071
048094ac
PA
80722016-04-12 Pedro Alves <palves@redhat.com>
8073
8074 * defs.h (quit_handler_ftype, quit_handler)
8075 (make_cleanup_override_quit_handler, default_quit_handler): New.
8076 (QUIT): Adjust comments.
8077 * event-top.c (default_quit_handler): New function.
8078 (quit_handler): New global.
8079 (struct quit_handler_cleanup_data): New.
8080 (restore_quit_handler, restore_quit_handler_dtor)
8081 (make_cleanup_override_quit_handler): New.
8082 (async_request_quit): Call QUIT.
8083 * remote.c (struct remote_state) <got_ctrlc_during_io>: New field.
8084 (async_sigint_remote_twice_token, async_sigint_remote_token):
8085 Delete.
8086 (remote_close): Update comments.
8087 (remote_start_remote): Don't set immediate_quit. Set starting_up
8088 earlier.
8089 (remote_serial_quit_handler, remote_unpush_and_throw): New
8090 functions.
8091 (remote_open_1): Clear got_ctrlc_during_io. Set
8092 remote_async_terminal_ours_p unconditionally.
8093 (async_initialize_sigint_signal_handler)
8094 (async_handle_remote_sigint, async_handle_remote_sigint_twice)
8095 (remote_check_pending_interrupt, async_remote_interrupt)
8096 (async_remote_interrupt_twice)
8097 (async_cleanup_sigint_signal_handler, ofunc)
8098 (sync_remote_interrupt, sync_remote_interrupt_twice): Delete.
8099 (remote_terminal_inferior, remote_terminal_ours): Remove async
8100 checks.
8101 (remote_wait_as): Don't install a SIGINT handler in sync mode.
8102 (readchar, remote_serial_write): Override the quit handler with
8103 remote_serial_quit_handler.
8104 (getpkt_or_notif_sane_1): Don't call QUIT.
8105 (initialize_remote_ops): Don't install
8106 remote_check_pending_interrupt.
8107 (_initialize_remote): Don't create async_sigint_remote_token and
8108 async_sigint_remote_twice_token.
8109 * ser-base.c (ser_base_wait_for): Call QUIT and use
8110 interruptible_select.
8111 (ser_base_write): Call QUIT.
8112 * ser-go32.c (dos_readchar, dos_write): Call QUIT.
8113 * ser-unix.c (wait_for): Don't use VTIME. Always take the
8114 gdb_select path, but call QUIT and interruptible_select.
8115 * utils.c (maybe_quit): Call the current quit handler. Don't call
8116 target_check_pending_interrupt.
8117 (defaulted_query, prompt_for_continue): Override the quit handler
8118 with the default quit handler.
8119
a12ac513
PA
81202016-04-12 Pedro Alves <palves@redhat.com>
8121
8122 * tui/tui-hooks.c (tui_target_has_run): Delete.
8123 (tui_about_to_proceed): Delete.
8124 (tui_about_to_proceed_observer): Delete.
8125 (tui_install_hooks, tui_remove_hooks): Don't install/remove an
8126 about_to_proceed observer.
8127
5fe96654
PA
81282016-04-12 Pedro Alves <palves@redhat.com>
8129
8130 * mi/mi-interp.c (mi_new_thread): Put
8131 target_terminal_ours_for_output in effect while outputting.
8132 (mi_thread_exit): Use target_terminal_ours_for_output instead of
8133 target_terminal_ours.
8134 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
8135 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
8136 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
8137 (mi_breakpoint_created, mi_breakpoint_deleted)
8138 (mi_breakpoint_modified, mi_solib_loaded, mi_solib_unloaded)
8139 (mi_command_param_changed, mi_memory_changed)
8140 (report_initial_inferior): Use target_terminal_ours_for_output
8141 instead of target_terminal_ours. Restore terminal settings.
8142 * mi/mi-main.c (mi_execute_command): Use
8143 target_terminal_ours_for_output instead of target_terminal_ours.
8144 Restore terminal settings.
8145
651ce16a
PA
81462016-04-12 Pedro Alves <palves@redhat.com>
8147
8148 PR gdb/19828
8149 * gnu-nat.c (inf_validate_task_sc): Don't call
8150 target_terminal_ours / target_terminal_inferior around query.
8151 * i386-tdep.c (i386_record_lea_modrm, i386_process_record): Don't
8152 call target_terminal_ours / target_terminal_inferior around
8153 yquery.
8154 * linux-record.c (record_linux_system_call): Don't call
8155 target_terminal_ours / target_terminal_inferior around yquery.
8156 * nto-procfs.c (interrupt_query): Don't call target_terminal_ours
8157 / target_terminal_inferior around query.
8158 * record-full.c (record_full_check_insn_num): Remove
8159 'set_terminal' parameter. Don't call target_terminal_ours /
8160 target_terminal_inferior around query.
8161 (record_full_message, record_full_registers_change)
8162 (record_full_xfer_partial): Adjust.
8163 * remote.c (interrupt_query): Don't call target_terminal_ours /
8164 target_terminal_inferior around query.
8165 * utils.c (defaulted_query): Install cleanup to restore target
8166 terminal. Put target_terminal_ours_for_output in effect while
8167 defaulted producing, and target_terminal_ours in in effect while
8168 handling input.
8169 (prompt_for_continue): Install cleanup to restore target terminal.
8170 Put target_terminal_ours in in effect while handling input.
8171
80dbc9fd
PA
81722016-04-12 Pedro Alves <palves@redhat.com>
8173
8174 * utils.c (defaulted_query, prompt_for_continue): Free temporary
8175 strings with cleanups, instead of xfree.
8176
c5ac1540
PA
81772016-04-12 Pedro Alves <palves@redhat.com>
8178
8179 * utils.c (vwarning, internal_vproblem): Use
8180 make_cleanup_restore_target_terminal and
8181 target_terminal_ours_for_output.
8182
f8e3ef9d
PA
81832016-04-12 Pedro Alves <palves@redhat.com>
8184
8185 * infcmd.c (post_create_inferior, prepare_one_step): Use
8186 target_terminal_ours_for_output instead of target_terminal_ours.
8187
481ac8c9
PA
81882016-04-12 Pedro Alves <palves@redhat.com>
8189
8190 * exceptions.c (print_flush): Use target_terminal_ours_for_output
8191 instead of target_terminal_ours, and restore target terminal with
8192 a cleanup.
8193
c509f1e1
PA
81942016-04-12 Pedro Alves <palves@redhat.com>
8195
8196 * cp-support.c (gdb_demangle): Use target_terminal_ours_for_output
8197 instead of target_terminal_ours, and restore target terminal with
8198 a cleanup.
8199
99bbb428
PA
82002016-04-12 Pedro Alves <palves@redhat.com>
8201
8202 * ada-lang.c (type_as_string, type_as_string_and_cleanup): New
8203 functions.
8204 (ada_lookup_struct_elt_type): Use type_as_string_and_cleanup.
8205
75ee5925
PA
82062016-04-12 Pedro Alves <palves@redhat.com>
8207
8208 * ser-base.c (fd_event): Retry read_prim on EINTR.
8209 (do_ser_base_readchar): Retry read_prim on EINTR.
8210 (ser_base_write): Retry write_prim on EINTR.
8211 * ser-unix.c (ser_unix_read_prim): Don't retry on EINTR here.
8212 (ser_unix_write_prim): Remove comment.
8213
93692b58
PA
82142016-04-12 Pedro Alves <palves@redhat.com>
8215
8216 * remote.c (remote_pass_ctrlc): New function.
8217 (init_remote_ops): Install it.
8218 * target.c (target_terminal_inferior): Pass pending Ctrl-C to the
8219 target.
8220 (target_pass_ctrlc, default_target_pass_ctrlc): New functions.
8221 * target.h (struct target_ops) <to_pass_ctrlc>: New method.
8222 (target_pass_ctrlc, default_target_pass_ctrlc): New declarations.
8223 * target-delegates.c: Regenerate.
8224
e42de8c7
PA
82252016-04-12 Pedro Alves <palves@redhat.com>
8226
8227 * infcmd.c (interrupt_target_1): Call target_stop is in non-stop
8228 mode.
8229 * linux-nat.c (linux_nat_interrupt): Delete.
8230 (linux_nat_add_target): Don't install linux_nat_interrupt.
8231 * remote.c (remote_interrupt_ns): Change return type to void.
8232 Throw error if interrupting the target is not supported.
8233 (remote_interrupt): Don't call the remote_stop_ns/remote_stop_as.
8234
a149683b
PA
82352016-04-12 Pedro Alves <palves@redhat.com>
8236
8237 * defs.h (clear_quit_flag): Remove declaration.
8238 * extension-priv.h (struct extension_language_ops)
8239 <clear_quit_flag>: Remove field and update comments.
8240 * extension.c (clear_quit_flag): Delete.
8241 * guile/guile.c (guile_extension_ops): Adjust.
8242 * python/python.c (python_extension_ops): Adjust.
8243 (gdbpy_clear_quit_flag): Delete.
8244
da1e5f54
PA
82452016-04-12 Pedro Alves <palves@redhat.com>
8246
8247 * main.c (captured_main): Don't clear the quit flag.
8248
0af679c6
PA
82492016-04-12 Pedro Alves <palves@redhat.com>
8250
8251 * exceptions.c (prepare_to_throw_exception): Don't clear the quit
8252 flag.
8253
4a81fd47
PA
82542016-04-12 Pedro Alves <palves@redhat.com>
8255
8256 * event-top.c (command_handler): Don't call clear_quit_flag.
8257
abf009ef
PA
82582016-04-12 Pedro Alves <palves@redhat.com>
8259
8260 * remote-sim.c (gdb_os_poll_quit): Don't call clear_quit_flag.
8261 * remote.c (remote_wait_as): Don't call clear_quit_flag.
8262
6eddd09a
PA
82632016-04-12 Pedro Alves <palves@redhat.com>
8264
8265 * python/python.c: Include "ser-event.h".
8266 (gdbpy_event_fds): Delete.
8267 (gdbpy_serial_event): New.
8268 (gdbpy_run_events): Change prototype. Use serial_event_clear
8269 instead of serial_readchar.
8270 (gdbpy_post_event): Use serial_event_set instead of serial_write.
8271 (gdbpy_initialize_events): Use make_serial_event instead of
8272 serial_pipe.
8273
f0881b37
PA
82742016-04-12 Pedro Alves <palves@redhat.com>
8275
8276 * defs.h: Extend QUIT-related comments to mention
8277 interruptible_select.
8278 (quit_serial_event_set, quit_serial_event_clear): Declare.
8279 * event-top.c: Include "ser-event.h" and "gdb_select.h".
8280 (quit_serial_event): New global.
8281 (async_init_signals): Make quit_serial_event.
8282 (quit_serial_event_set, quit_serial_event_clear)
8283 (quit_serial_event_fd, interruptible_select): New functions.
8284 * extension.c (set_quit_flag): Set the quit serial event.
8285 (check_quit_flag): Clear the quit serial event.
8286 * gdb_select.h (interruptible_select): New declaration.
8287 * guile/scm-ports.c (ioscm_input_waiting): Use
8288 interruptible_select instead of gdb_select.
8289 * top.c (gdb_readline_no_editing): Likewise.
8290 * ui-file.c (stdio_file_read): Likewise.
8291
5cc3ce8b
PA
82922016-04-12 Pedro Alves <palves@redhat.com>
8293
8294 * event-loop.c: Include "ser-event.h".
8295 (async_signal_handlers_serial_event): New global.
8296 (async_signals_handler, initialize_async_signal_handlers): New
8297 functions.
8298 (mark_async_signal_handler): Set
8299 async_signal_handlers_serial_event.
8300 (invoke_async_signal_handlers): Clear
8301 async_signal_handlers_serial_event.
8302 * event-top.c (async_init_signals): Call
8303 initialize_async_signal_handlers.
8304
00340e1b
PA
83052016-04-12 Pedro Alves <palves@redhat.com>
8306
8307 * Makefile.in (SFILES): Add ser-event.c.
8308 (HFILES_NO_SRCDIR): Add ser-event.h.
8309 (COMMON_OBS): Add ser-event.o.
8310 * ser-event.c, ser-event.h: New files.
8311 * serial.c (new_serial): New function, factored out from
8312 (serial_fdopen_ops): ... this.
8313 (serial_open_ops_1): New function, factored out from
8314 (serial_open): ... this.
8315 (serial_open_ops): New function.
8316 * serial.h (struct serial): Forware declare.
8317 (serial_open_ops): New declaration.
8318
5f5219fc
PA
83192016-04-12 Pedro Alves <palves@redhat.com>
8320
8321 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
8322 Remove references to name.
8323 * serial.h (struct serial) <name>: Delete.
8324
acd5494d
PA
83252016-04-12 Pedro Alves <palves@redhat.com>
8326
8327 * remote-fileio.c (sigint_fileio_token, remote_fio_no_longjmp):
8328 Delete.
8329 (async_remote_fileio_interrupt): Delete.
8330 (remote_fileio_ctrl_c_signal_handler): Don't call the async signal
8331 handler. Instead just always set the ctrl_c flag.
8332 (remote_fileio_reply): Clear remote_fio_ctrl_c_flag before
8333 re-enabling the SIGINT handler.
8334 (remote_fileio_func_open, remote_fileio_func_close)
8335 (remote_fileio_func_read, remote_fileio_func_write)
8336 (remote_fileio_func_lseek, remote_fileio_func_rename)
8337 (remote_fileio_func_unlink, remote_fileio_func_stat)
8338 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
8339 (remote_fileio_func_isatty, remote_fileio_func_system)
8340 (remote_fileio_request): Remove references to
8341 remote_fio_no_longjmp.
8342 (initialize_remote_fileio): Don't create an async signal handler.
8343
d2acc30b
PA
83442016-04-12 Pedro Alves <palves@redhat.com>
8345
8346 * event-top.c (stdin_event_handler): Call QUIT;
8347 (prompt_for_continue): Don't run with immediate_quit set.
8348
ab33ab13
PA
83492016-04-12 Pedro Alves <palves@redhat.com>
8350
8351 * tui/tui-io.c (tui_redisplay_readline): Check
8352 gdb_in_secondary_prompt_p instead of immediate_quit.
8353 * tui/tui.c: Include top.h.
8354 (tui_rl_startup_hook): Check gdb_in_secondary_prompt_p instead of
8355 immediate_quit.
8356
faa4ebe1
PA
83572016-04-12 Pedro Alves <palves@redhat.com>
8358
8359 * top.c (read_command_file): Inline command_loop here.
8360 (command_loop): Delete.
8361
3212b858
PA
83622016-04-12 Pedro Alves <palves@redhat.com>
8363
8364 * top.c: Include "gdb_select.h".
8365 (gdb_readline_no_editing): Wait for input with gdb_select instead
8366 of blocking in fgetc.
8367 (command_line_input): Don't set immediate_quit.
8368
4bf7b526
MG
83692016-04-08 Martin Galvan <martin.galvan@tallertechnologies.com>
8370
8371 * value.c (value_next): Make pass-by-reference parameters const-correct.
8372 (value_parent): Likewise.
8373 (value_enclosing_type): Likewise.
8374 (value_lazy): Likewise.
8375 (value_stack): Likewise.
8376 (value_embedded_offset): Likewise.
8377 (value_pointed_to_offset): Likewise.
8378 (value_raw_address): Likewise.
8379 (deprecated_value_modifiable): Likewise.
8380 (value_free_to_mark): Likewise.
8381 (value_release_to_mark): Likewise.
8382 (internalvar_name): Likewise.
8383 (readjust_indirect_value_type): Likewise.
8384 (value_initialized): Likewise.
8385 * value.h (value_next): Likewise.
8386 (value_parent): Likewise.
8387 (value_enclosing_type): Likewise.
8388 (value_lazy): Likewise.
8389 (value_stack): Likewise.
8390 (value_embedded_offset): Likewise.
8391 (value_pointed_to_offset): Likewise.
8392 (value_raw_address): Likewise.
8393 (deprecated_value_modifiable): Likewise.
8394 (value_free_to_mark): Likewise.
8395 (value_release_to_mark): Likewise.
8396 (internalvar_name): Likewise.
8397 (readjust_indirect_value_type): Likewise.
8398 (value_initialized): Likewise.
8399
e390720b
YQ
84002016-04-07 Yao Qi <yao.qi@linaro.org>
8401
8402 * record-full.c (record_full_insert_breakpoint): Return
8403 early if entry on the address is found in
8404 record_full_breakpoints.
8405
1ccd06e4
YQ
84062016-04-07 Yao Qi <yao.qi@linaro.org>
8407
8408 * record-full.c (record_full_insert_breakpoint): Set
8409 bp_tgt->reqstd_address and bp_tgt->placed_size.
8410
ecf2e90c
DB
84112016-04-06 Don Breazeal <donb@codesourcery.com>
8412
8413 * value.c (value_actual_type): Don't try to get rtti type
8414 of the value if it has been optimized out.
8415 (value_optimized_out): If a memory access error occurs,
8416 just check vaue->optimized_out.
8417
14731617
JK
84182016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8419
8420 Revert the previous commit adding unknown_v_replies_ok.
8421
319cb5d0
JK
84222016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8423
8424 * remote.c (struct remote_state): New field unknown_v_replies_ok.
8425 (packet_config_support): Read it.
8426 (remote_start_remote): Set it.
8427
052d2eb2
JK
84282016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8429
8430 * remote.c: Revert check-in by a mistake in the previous commit.
8431
fef3cb9f
JK
84322016-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
8433 Pedro Alves <palves@redhat.com>
8434
8435 * exec.c (exec_file_locate_attach): Print warning for unsupported
8436 target_pid_to_exec_file.
8437 * symfile-mem.c (add_vsyscall_page): Remove the "file" command
8438 message part.
8439
2aa08bd1
SM
84402016-04-04 Simon Marchi <simon.marchi@ericsson.com>
8441
8442 * cli/cli-decode.c (help_cmd_list): Fix function doc and remove
8443 trailing spaces.
8444
cc63428a
AV
84452016-04-01 Artemiy Volkov <artemiyv@acm.org>
8446
8447 PR gdb/19820
8448 * eval.c (evaluate_subexp_standard): Allow TYPE_CODE_ENUM to be
8449 the type of BINOP_REPEAT's second operand.
8450
9bb84c9f
YY
84512016-03-31 Yichao Yu <yyc1992@gmail.com>
8452
8453 PR gdb/19858
8454 * jit.c (jit_breakpoint_re_set_internal): Return 0 if we already
8455 got the breakpoint at the right address.
8456 (jit_inferior_created): New function.
8457 (_initialize_jit): Install jit_inferior_created as
8458 inferior_created observer.
8459
22084c42
MK
84602016-03-31 Marcin Kościelnicki <koriakin@0x04.net>
8461
8462 * NEWS: Mention support for tracepoints on powerpc*-linux.
8463
e7ea3ec7
CU
84642016-03-31 Catalin Udma <catalin.udma@freescale.com>
8465
8466 PR python/19743
8467 * python/python.c (execute_gdb_command): Use console uiout
8468 when executing gdb command.
8469 * utils.c (restore_ui_out_closure): New structure.
8470 (do_restore_ui_out): New function.
8471 (make_cleanup_restore_ui_out): Likewise.
8472 * utils.h (make_cleanup_restore_ui_out): Declare.
8473
f7c38292
PA
84742016-03-31 Pedro Alves <palves@redhat.com>
8475
8476 * NEWS: Mention that support for "target m32rsdi", "target mips",
8477 "target pmon", "target ddb", "target rockhopper", and "target lsi"
8478 was removed.
8479 * Makefile.in (ALL_TARGET_OBS): Remove remote-m32r-sdi.o and
8480 remote-mips.o.
8481 (ALLDEPFILES): Remove remote-m32r-sdi.c and remote-mips.c.
8482 * configure.tgt: Remove all references to remote-m32r-sdi.o and
8483 remote-mips.o.
8484 * mips-tdep.c (deprecated_mips_set_processor_regs_hack): Delete
8485 function.
8486 * mips-tdep.h (deprecated_mips_set_processor_regs_hack): Delete
8487 declaration.
8488 * remote-m32r-sdi.c, remote-mips.c: Delete files.
8489 * symfile.c (generic_load, generic_load): Remove comments.
8490
fb3f3d25
YQ
84912016-03-30 Yao Qi <yao.qi@linaro.org>
8492
8493 * arm-tdep.c (arm_epilogue_frame_this_id): Check 'func' against
8494 0 rather than NULL.
8495
779aa56f
YQ
84962016-03-30 Yao Qi <yao.qi@linaro.org>
8497
8498 * arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
8499 (arm_epilogue_frame_this_id): New function.
8500 (arm_epilogue_frame_prev_register): New function.
8501 (arm_epilogue_frame_sniffer): New function.
8502 (arm_epilogue_frame_unwind): New.
8503 (arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.
8504
c58b006a
YQ
85052016-03-30 Yao Qi <yao.qi@linaro.org>
8506
8507 * arm-tdep.c (arm_stack_frame_destroyed_p): Rename it ...
8508 (arm_stack_frame_destroyed_p_1): ... here. Don't call
8509 arm_pc_is_thumb.
8510 (arm_stack_frame_destroyed_p): Call
8511 thumb_stack_frame_destroyed_p and
8512 arm_stack_frame_destroyed_p_1.
8513
4ae6cc19
DE
85142016-03-30 Doug Evans <dje@google.com>
8515
8516 * python/py-utils.c (host_string_to_python_string): New function.
8517 * python/python-internal.h (host_string_to_python_string): Declare it.
8518 * python/py-*.c (*): Update all calls to
8519 PyString_Decode (str, strlen (str), host_charset (), NULL);
8520 to use host_string_to_python_string instead.
8521
28170b88
MK
85222016-03-30 Marcin Kościelnicki <koriakin@0x04.net>
8523
8524 * remote.c (remote_check_symbols): Allocate own buffer for reply.
8525
a08b52b5
MF
85262016-03-29 Max Filippov <jcmvbkbc@gmail.com>
8527
8528 * xtensa-tdep.c (xtensa_frame_cache): Change op1 type to LONGEST.
8529 Use safe_read_memory_integer instead of read_memory_integer.
8530
c37c0ba6
MK
85312016-03-29 Marcin Kościelnicki <koriakin@0x04.net>
8532
8533 * NEWS: Mention support for tracepoints on s390*-linux.
8534
444bca65
DB
85352016-03-29 Don Breazeal <donb@codesourcery.com>
8536
8537 * gdb/value.c (value_actual_type): Fix formatting issue.
8538
cc651c1c
YQ
85392016-03-23 Yao Qi <yao.qi@linaro.org>
8540
8541 * gdbarch.sh (software_single_step): Remove comments.
8542 * gdbarch.h: Regenerated.
8543
c55978a6
YQ
85442016-03-21 Yao Qi <yao.qi@linaro.org>
8545
8546 * arm-tdep.c (arm_record_media): New.
8547 (arm_record_ld_st_reg_offset): Call arm_record_media.
8548
479fe002
YQ
85492016-03-21 Yao Qi <yao.qi@linaro.org>
8550
8551 * arm-linux-tdep.c (arm_canonicalize_syscall): Canonicalize
8552 more syscalls.
8553
9c3f2234
YQ
85542016-03-18 Yao Qi <yao.qi@linaro.org>
8555
8556 * sparc-tdep.c (sparc_software_single_step): Make it static.
8557 * sparc-tdep.h (sparc_software_single_step): Remove declaration.
8558
941319d1
YQ
85592016-03-18 Yao Qi <yao.qi@linaro.org>
8560
8561 * spu-tdep.c (spu_software_single_step): Throw error when
8562 target_read_memory fails.
8563
708bf0a1
JK
85642016-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8565
8566 * linux-thread-db.c (check_pid_namespace_match): Extend the message.
8567
0d5b594f
PA
85682016-03-17 Pedro Alves <palves@redhat.com>
8569 Don Breazeal <donb@codesourcery.com>
8570
8571 PR remote/19496
8572 * infcmd.c (notice_new_inferior): Use the 'leave_running' argument
8573 instead of checking the 'non_stop' global.
8574 * remote.c (remote_add_thread): New parameter 'executing'. Use it
8575 to set the new thread's executing state.
8576 (remote_notice_new_inferior): Rename parameter 'running' to
8577 'executing'. Always set the thread state to THREAD_RUNNING in
8578 non-stop mode, and to THREAD_STOPPED in all-stop mode. Pass
8579 EXECUTING to remote_add_thread and notice_new_inferior.
8580 (remote_update_thread_list): Update to pass executing state, not
8581 running state.
8582
bba960fc
AA
85832016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
8584
8585 * syscalls/s390-linux.xml: Add NUMA syscalls and new syscalls up
8586 to 374.
8587 * syscalls/s390x-linux.xml: Likewise.
8588
5fd0888a
AA
85892016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
8590
8591 * linux-record.c (record_mem_at_reg): New helper function.
8592 (record_linux_system_call): Exploit new helper function where
8593 applicable.
8594
0fc8f115
AA
85952016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
8596
8597 * linux-record.c: Fix whitespace issues; tabify, remove trailing
8598 spaces.
8599
afdab916
AA
86002016-03-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
8601
8602 * linux-record.c (record_linux_system_call): Add missing return
8603 statements to handling of pipe and pipe2 syscalls.
8604
bfeeb14b
DE
86052016-03-16 Doug Evans <dje@google.com>
8606
8607 * xml-tdesc.c (tdesc_start_enum): Fix c++ build.
8608
6b94a855
YQ
86092016-03-16 Yao Qi <yao.qi@linaro.org>
8610
8611 * arm-linux-tdep.c (arm_linux_init_abi): Fix
8612 arm_linux_record_tdep.arg1, arm_linux_record_tdep.arg2 and
8613 arm_linux_record_tdep.arg3. Set arm_linux_record_tdep.arg4,
8614 arm_linux_record_tdep.arg5, arm_linux_record_tdep.arg6, and
8615 arm_linux_record_tdep.arg7.
8616
1cafadb4
DB
86172016-03-15 Keith Seitz <keiths@redhat.com>
8618
8619 PR breakpoints/18303
8620 * cp-namespace.c (cp_lookup_bare_symbol): Change assertion to
8621 look for "::" instead of simply ":".
8622 (cp_search_static_and_baseclasses): Return null_block_symbol for
8623 malformed input.
8624 Remove assertions.
8625 * cp-support.c (cp_find_first_component_aux): Do not return
8626 a prefix length for ':' unless the next character is also ':'.
8627
89c200ed
DE
86282016-03-15 Doug Evans <dje@google.com>
8629
8630 * features/aarch64-core.xml (cpsr_flags): New flags type.
8631 (cpsr): Use it.
8632 * features/aarch64.c: Regenerate.
8633
49b7ae7b
DE
86342016-03-15 Doug Evans <dje@google.com>
8635
8636 * features/i386/32bit-core.xml (i386_eflags): Remove "end" spec.
8637 * features/i386/32bit-sse.xml (i386_eflags): Ditto.
8638 * features/i386/64bit-core.xml (i386_eflags): Ditto.
8639 * features/i386/64bit-sse.xml (i386_eflags): Ditto.
8640 * features/i386/x32-core.xml (i386_eflags): Ditto.
8641
81516450 86422016-03-15 Doug Evans <dje@google.com>
79427bd2 8643 Wei-cheng Wang <cole945@gmail.com>
81516450
DE
8644
8645 Extend flags to support multibit and enum bitfields.
79427bd2 8646 * NEWS: Document new features.
81516450
DE
8647 * c-typeprint.c (c_type_print_varspec_prefix): Handle TYPE_CODE_FLAGS.
8648 (c_type_print_varspec_suffix, c_type_print_base): Ditto.
8649 * gdbtypes.c (arch_flags_type): Don't assume all fields are one bit.
8650 (append_flags_type_field): New function.
8651 (append_flags_type_flag): Call it.
8652 * gdbtypes.h (append_flags_type_field): Declare.
8653 * target-descriptions.c (struct tdesc_type_flag): Delete.
8654 (enum tdesc_type_kind) <TDESC_TYPE_BOOL>: New enum value.
8655 (enum tdesc_type_kind) <TDESC_TYPE_ENUM>: Ditto.
8656 (struct tdesc_type) <u.f>: Delete.
8657 (tdesc_predefined_types): Add "bool".
8658 (tdesc_predefined_type): New function.
8659 (tdesc_gdb_type): Handle TDESC_TYPE_BOOL, TDESC_TYPE_ENUM.
8660 Update TDESC_TYPE_FLAGS support.
8661 (tdesc_free_type): Handle TDESC_TYPE_ENUM. Update TDESC_TYPE_FLAGS.
8662 (tdesc_create_flags): Update.
8663 (tdesc_create_enum): New function.
8664 (tdesc_add_field): Initialize start,end to -1.
8665 (tdesc_add_typed_bitfield): New function.
8666 (tdesc_add_bitfield): Call it.
8667 (tdesc_add_flag): Allow TDESC_TYPE_STRUCT. Update.
8668 (tdesc_add_enum_value): New function.
8669 (maint_print_c_tdesc_cmd): Fold TDESC_TYPE_FLAGS support into
8670 TDESC_TYPE_STRUCT. Handle TDESC_TYPE_ENUM.
8671 * target-descriptions.h (tdesc_create_enum): Declare.
8672 (tdesc_add_typed_bitfield, tdesc_add_enum_value): Declare.
8673 * valprint.c (generic_val_print_enum_1): New function.
8674 (generic_val_print_enum): Call it.
8675 (val_print_type_code_flags): Make static. Handle multibit bitfields
8676 and enum bitfields.
8677 * valprint.h (val_print_type_code_flags): Delete.
8678 * xml-tdesc.c (struct tdesc_parsing_data) <current_type_is_flags>:
8679 Delete. All uses removed.
8680 (tdesc_start_enum): New function.
8681 (tdesc_start_field): Handle multibit and enum bitfields.
8682 (tdesc_start_enum_value): New function.
8683 (enum_value_attributes, enum_children, enum_attributes): New static
8684 globals.
8685 (feature_children): Add "enum".
8686 * features/gdb-target.dtd (enum, evalue): New elements.
8687
54157a25
DE
86882016-03-15 Doug Evans <dje@google.com>
8689
8690 * target-descriptions.c (struct tdesc_type) <u.u.size>: Change type
8691 from LONGEST to int.
8692 (struct tdesc_type) <u.f.size>: Ditto.
8693 (tdesc_set_struct_size): Change type of "size" arg from LONGEST
8694 to int. Add assertion size > 0.
8695 (tdesc_create_flags): Ditto.
8696 * target-descriptions.h (tdesc_set_struct_size): Update.
8697 (tdesc_create_flags): Update.
8698 * xml-tdesc.c (MAX_FIELD_SIZE, MAX_FIELD_BITSIZE): New macros.
8699 (MAX_VECTOR_SIZE): New macro.
8700 (tdesc_start_struct): Catch conversion errors from LONGEST to int.
8701 (tdesc_start_flags, tdesc_start_field, tdesc_start_vector): Ditto.
8702
73b4f516
DE
87032016-03-15 Doug Evans <dje@google.com>
8704
8705 * target-descriptions.c (maint_print_c_tdesc_cmd): Use "type" for
8706 TYPE_CODE_FLAGS instead of "field_type", for consistency.
8707 * features/i386/amd64-avx-linux.c: Regenerate.
8708 * features/i386/amd64-avx.c: Regenerate.
8709 * features/i386/amd64-avx512-linux.c: Regenerate.
8710 * features/i386/amd64-avx512.c: Regenerate.
8711 * features/i386/amd64-linux.c: Regenerate.
8712 * features/i386/amd64-mpx-linux.c: Regenerate.
8713 * features/i386/amd64-mpx.c: Regenerate.
8714 * features/i386/amd64.c: Regenerate.
8715 * features/i386/i386-avx-linux.c: Regenerate.
8716 * features/i386/i386-avx.c: Regenerate.
8717 * features/i386/i386-avx512-linux.c: Regenerate.
8718 * features/i386/i386-avx512.c: Regenerate.
8719 * features/i386/i386-linux.c: Regenerate.
8720 * features/i386/i386-mmx-linux.c: Regenerate.
8721 * features/i386/i386-mmx.c: Regenerate.
8722 * features/i386/i386-mpx-linux.c: Regenerate.
8723 * features/i386/i386-mpx.c: Regenerate.
8724 * features/i386/i386.c: Regenerate.
8725 * features/i386/x32-avx-linux.c: Regenerate.
8726 * features/i386/x32-avx.c: Regenerate.
8727 * features/i386/x32-avx512-linux.c: Regenerate.
8728 * features/i386/x32-avx512.c: Regenerate.
8729 * features/i386/x32-linux.c: Regenerate.
8730 * features/i386/x32.c: Regenerate.
8731
1eb2dbb8
PA
87322016-03-15 Pedro Alves <palves@redhat.com>
8733
8734 PR gdb/19676
8735 * linux-thread-db.c (try_thread_db_load_1): Leave
8736 info->td_ta_thr_iter_p NULL iff debugging a live process and we
8737 have /proc access.
8738 (find_new_threads_once): Assert that we have a non-NULL
8739 info->td_ta_thr_iter_p instead of checking whether the target has
8740 execution.
8741
16b41842
PA
87422016-03-15 Pedro Alves <palves@redhat.com>
8743
8744 PR gdb/19676
8745 * infrun.c (displaced_step_prepare): Also disable displaced
8746 stepping on NOT_SUPPORTED_ERROR.
8747 * linux-tdep.c (linux_displaced_step_location): If reading auxv
8748 fails, throw NOT_SUPPORTED_ERROR instead of generic error.
8749
70104a90
MK
87502016-03-13 Marcin Kościelnicki <koriakin@0x04.net>
8751
8752 * s390-linux-tdep.c (s390_gen_return_address): New function.
8753 (s390_gdbarch_init): Fill gen_return_address hook.
8754
f2403c39
AB
87552016-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
8756
8757 * symmisc.c (maintenance_info_line_tables): New function.
8758 (maintenance_print_one_line_table): New function.
8759 (_initialize_symmisc): Register 'maint info line-table' command.
8760 * NEWS: Mention new command.
8761
c4b3e547
MK
87622016-03-11 Marcin Kościelnicki <koriakin@0x04.net>
8763
8764 * s390-linux-tdep.c (s390_ax_pseudo_register_collect): New function.
8765 (s390_ax_pseudo_register_push_stack): New function.
8766 (s390_gdbarch_init): Fill ax_pseudo_register_collect and
8767 ax_pseudo_register_push_stack hooks.
8768
f2f3ccb9
SM
87692016-03-10 Simon Marchi <simon.marchi@polymtl.ca>
8770
8771 * data-directory/Makefile.in (PYTHON_FILE_LIST): Install
8772 gdb/function/as_string.py.
8773 * python/lib/gdb/function/as_string.py: New file.
8774 * NEWS: Mention the new $_as_string function.
8775
2343b78a
JM
87762016-03-09 Jose E. Marchesi <jose.marchesi@oracle.com>
8777
8778 * target.h: Fix doc string of target_can_use_hardware_watchpoint.
8779
b69d38af
PA
87802016-03-09 Pedro Alves <palves@redhat.com>
8781
8782 * event-top.c (more_to_come): Delete.
8783 (struct readline_input_state): Delete.
8784 (readline_input_state): Delete.
8785 (get_command_line_buffer): New function.
8786 (command_handler): Update comments. Don't handle NULL commands
8787 here. Do not execute commented lines.
8788 (command_line_append_input_line): New function.
8789 (handle_line_of_input): New function, partly based on
8790 command_line_handler and command_line_input.
8791 (command_line_handler): Rewrite.
8792 * event-top.h (command_handler): New declaration.
8793 (command_loop): Defer command execution to command_handler.
8794 (command_line_input): Update comments. Simplify, using struct
8795 buffer and handle_line_of_input.
8796 * top.h (struct buffer): New forward declaration.
8797 (handle_line_of_input): New declaration.
8798
2669cade
PA
87992016-03-09 Pedro Alves <palves@redhat.com>
8800
8801 * event-top.c (command_line_handler): Use xfree + xstrdup instead
8802 of xrealloc + strcpy.
8803 * main.c (captured_main): Use xstrdup instead of xmalloc plus
8804 manual clear.
8805 * top.c (saved_command_line): Rewrite comment.
8806 (saved_command_line_size): Delete.
8807 (command_line_input): Use xfree + xstrdup instead of xrealloc +
8808 strcpy.
8809 * top.h (saved_command_line_size): Delete declaration.
8810
187212b3
PA
88112016-03-09 Pedro Alves <palves@redhat.com>
8812
8813 * event-top.c: Include buffer.h.
8814 (gdb_readline_no_editing_callback): Use struct buffer instead
8815 of xrealloc.
8816
7a3bde34
PA
88172016-03-09 Pedro Alves <palves@redhat.com>
8818
8819 * common/buffer.h (buffer_grow_char): New function.
8820 * top.c: Include buffer.h.
8821 (gdb_readline_no_editing): Rename 'prompt_arg' parameter to
8822 'prompt'. Use struct buffer instead of xrealloc.
8823
c5c136ea
PA
88242016-03-09 Pedro Alves <palves@redhat.com>
8825
8826 * defs.h (gdb_readline): Delete declaration.
8827 * top.c (gdb_readline): Rename to ...
8828 (gdb_readline_no_editing): ... this, and make static.
8829
720d2e96
PA
88302016-03-09 Pedro Alves <palves@redhat.com>
8831
8832 * utils.c (prompt_for_continue): Update comments.
8833
608ff013
PA
88342016-03-09 Pedro Alves <palves@redhat.com>
8835
8836 * event-top.c (async_annotation_suffix): Delete.
8837 (top_level_prompt, command_line_handler): Don't use
8838 'async_annotation_suffix' and simplify.
8839 * event-top.h (async_annotation_suffix): Delete declaration.
8840 (init_main): Remove reference to 'async_annotation_suffix'.
8841
c70061cf
PA
88422016-03-09 Pedro Alves <palves@redhat.com>
8843
8844 * event-top.c (gdb_readline2): Rename to ...
8845 (gdb_readline_no_editing_callback): ... this.
8846 (change_line_handler, stdin_event_handler)
8847 (gdb_setup_readline): Adjust.
8848 * event-top.h (gdb_readline2): Rename to ...
8849 (gdb_readline_no_editing_callback): ... this, and move closer to
8850 other readline-related declarations.
8851 * mi/mi-interp.c (mi_interpreter_resume): Adjust.
8852
8a243832
PA
88532016-03-09 Pedro Alves <palves@redhat.com>
8854
8855 * top.c (window_hook): Delete.
8856 (command_loop): Remove references to window_hook.
8857
cc2c4da8
MK
88582016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
8859
8860 * corefile.c (safe_read_memory_unsigned_integer): New function.
8861 * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
8862 * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
8863
a67914de
MK
88642016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
8865
8866 * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
8867 (rs6000_gen_return_address): New function.
8868 (rs6000_gdbarch_init): Wire in the above.
8869
2a2fa07b
MK
88702016-03-09 Marcin Kościelnicki <koriakin@0x04.net>
8871
8872 * rs6000-tdep.c (rs6000_ax_pseudo_register_collect): New function.
8873 (rs6000_gdbarch_init): Wire in the above.
8874
bc0e3f49
AA
88752016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
8876
8877 * s390-linux-tdep.c (s390_analyze_prologue): Ignore BRC and BRCL
8878 instructions that do nothing or are conditional traps.
8879
6d53bec8
AA
88802016-03-09 Andreas Arnez <arnez@linux.vnet.ibm.com>
8881
8882 * s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
8883 frame func's PC in info->func before any other failure can occur.
8884 (s390_frame_this_id): Use frame_id_build_unavailable_stack if
8885 info->func has been filled out.
8886
f7990f16
PA
88872016-03-09 Pedro Alves <palves@redhat.com>
8888
8889 * osabi.c (gdb_osabi_names): Avoid spaces in osabi names.
8890
087ccc6a
PA
88912016-03-09 Pedro Alves <palves@redhat.com>
8892
8893 * frv-tdep.c (frv_gdbarch_init): Handle bfd_mach_fr300.
8894
114d7832
PA
88952016-03-09 Pedro Alves <palves@redhat.com>
8896
8897 * cris-tdep.c (cris_gdbarch_init): Return 0 if the info's byte
8898 order is BFD_ENDIAN_BIG or if the cris version is unsupported.
8899
d7a87b5e
PA
89002016-03-09 Pedro Alves <palves@redhat.com>
8901
8902 * doublest.c: Extend comments.
8903 (floatformat_to_doublest, floatformat_from_doublest): Copy the
8904 floatformat's total size, not the host type's size.
8905
b79497cb
PA
89062016-03-09 Pedro Alves <palves@redhat.com>
8907
8908 * doublest.c (floatformat_totalsize_bytes): New function.
8909 (floatformat_from_type): Assert that the type's length is at least
8910 as long as the floatformat's totalsize.
8911 * doublest.h (floatformat_totalsize_bytes): New declaration.
8912 * gdbtypes.c (arch_float_type): Assert that the type's length is
8913 at least as long as the floatformat's totalsize.
8914
aacca8a7
PA
89152016-03-09 Pedro Alves <palves@redhat.com>
8916
8917 * hppa-linux-tdep.c (hppa_linux_init_abi): Set the long double
8918 format to floatformats_ieee_double.
8919
e6c2f47b
PA
89202016-03-07 Pedro Alves <palves@redhat.com>
8921
8922 * mips-tdep.c (mips_gdbarch_init): Check whether info.abfd is NULL
8923 before calling bfd_get_flavour.
8924
cb86f388
DC
89252016-03-05 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
8926
8927 * avr-tdep.c (AVR_LAST_ARG_REGNUM): Define.
8928 (avr_push_dummy_call): Correct last needed argument register.
8929 Write MSB of argument into register and subsequent bytes into
8930 other registers in decreasing order.
8931
f1771dce
YQ
89322016-03-04 Yao Qi <yao.qi@linaro.org>
8933
8934 * arm-tdep.c (arm_record_vdata_transfer_insn): Simplify the
8935 condition check. Record the right D register number.
8936
ca92db2d
YQ
89372016-03-04 Yao Qi <yao.qi@linaro.org>
8938
8939 * arm-tdep.c (arm_record_extension_space): Remove code
8940 printing "Process record does not support".
8941 (arm_record_data_proc_misc_ld_str): Likewise.
8942 (decode_insn): Call arm_record_extension_space if condition
8943 is 0xf. Call arm_record_unsupported_insn if ret isn't
8944 ARM_RECORD_SUCCESS. Use 'ret' instead of 'insn_id' to hold
8945 the value of thumb2_record_decode_insn_handler.
8946
73519cce
SM
89472016-03-04 Simon Marchi <simon.marchi@ericsson.com>
8948
8949 * features/feature_to_c.sh: Print the help when passing no
8950 argument.
8951
650beae3
BH
89522016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
8953
8954 * MAINTAINERS (Write After Approval): Add Bernhard Heckel.
8955
28586665
BH
89562016-03-02 Bernhard Heckel <bernhard.heckel@intel.com>
8957
8958 * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers.
8959
f2489477
AA
89602016-03-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
8961
8962 * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid
8963 exception when attempting to access the inferior's backchain.
8964
d5219069
YQ
89652016-02-29 Yao Qi <yao.qi@linaro.org>
8966
8967 * aarch64-linux-tdep.c (aarch64_canonicalize_syscall): Support
8968 eventfd2, eventfd2, dup3, inotify_init1, fallocate and pipe2.
8969 Return gdb_sys_epoll_create1 instead of gdb_sys_epoll_create
8970 for aarch64_sys_epoll_create1.
8971
253b4d3a
YQ
89722016-02-29 Yao Qi <yao.qi@linaro.org>
8973
8974 * linux-record.h (enum gdb_syscall) <gdb_sys_fallocate>: New.
8975 <gdb_sys_eventfd2, gdb_sys_epoll_create1, gdb_sys_dup3>: New.
8976 <gdb_sys_pipe2, gdb_sys_inotify_init1>: New.
8977 * linux-record.c (record_linux_system_call): Handle them.
8978
38899f16
IB
89792016-02-28 Iain Buclaw <ibuclaw@gdcproject.org>
8980
8981 * d-namespace.c (d_lookup_symbol_imports): Avoid recursive lookups from
8982 cyclic imports.
8983
1ed0c2a4
KS
89842016-02-26 Keith Seitz <keiths@redhat.com>
8985
8986 * rs6000-tdep.c (rs6000_frame_cache): Explicitly cast return result
8987 to avoid invalid conversion from void *.
8988
9fde51ed
YQ
89892016-02-26 Yao Qi <yao.qi@linaro.org>
8990
8991 * arm-tdep.c (arm_record_exreg_ld_st_insn): Set 'single_reg'
8992 per bit 8. Check bit 20 instead of bit 4 for VMOV
8993 instruction. Record D registers for instructions changing
8994 S registers. Change of the order of length and address
8995 in record_buf_mem array.
8996
1f33efec
YQ
89972016-02-26 Yao Qi <yao.qi@linaro.org>
8998
8999 * arm-tdep.c (thumb_record_ld_st_reg_offset): Fix the register
9000 number of Rd.
9001
1547ef64
DE
90022016-02-25 Doug Evans <dje@google.com>
9003
9004 * remote-m32r-sdi.c (recv_char_data): Initialize val to avoid
9005 compiler warning.
9006 (recv_long_data): Ditto.
9007
166616ce
SM
90082016-02-25 Simon Marchi <simon.marchi@ericsson.com>
9009
9010 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault):
9011 Initialize variables.
9012
1eb7c2d8
AT
90132016-02-25 Antoine Tremblay <antoine.tremblay@ericsson.com>
9014
9015 * ax-general.c (ax_reg): Call gdbarch_remote_register_number.
9016 (ax_reg_mask): Likewise.
9017
e7ad2f14
PA
90182016-02-24 Pedro Alves <palves@redhat.com>
9019
9020 * linux-nat.c (save_sigtrap) Delete.
9021 (stop_wait_callback): Call save_stop_reason instead of
9022 save_sigtrap.
9023 (check_stopped_by_breakpoint): Rename to ...
9024 (save_stop_reason): ... this. Bits of save_sigtrap folded here.
9025 Use GDB_ARCH_IS_TRAP_HWBKPT and handle ambiguous
9026 GDB_ARCH_IS_TRAP_BRKPT / GDB_ARCH_IS_TRAP_HWBKPT. Factor out
9027 common code between the USE_SIGTRAP_SIGINFO and
9028 !USE_SIGTRAP_SIGINFO blocks.
9029 (linux_nat_filter_event): Call save_stop_reason instead of
9030 save_sigtrap.
9031 * nat/linux-ptrace.h: Check for both SI_KERNEL and TRAP_BRKPT
9032 si_code for MIPS.
9033 * nat/linux-ptrace.h: Fix "TRAP_HWBPT" typo in x86 table. Add
9034 comments on MIPS behavior.
9035 (GDB_ARCH_IS_TRAP_HWBKPT): Define for all archs.
9036
338435ef
MK
90372016-02-24 Marcin Kościelnicki <koriakin@0x04.net>
9038
9039 * rs6000-tdep.c (rs6000_frame_cache): Initialize frame and pc to 0
9040 to avoid spurious warnings.
9041
bf74e428
GB
90422016-02-24 Gary Benson <gbenson@redhat.com>
9043
9044 * exec.c (exec_file_locate_attach): Do not attempt to
9045 locate main executable locally if not found in sysroot.
9046
62fb310b
JB
90472016-02-24 Joel Brobecker <brobecker@adacore.com>
9048
9049 GDB 7.11 released.
9050
50ae56ec
WW
90512016-02-24 Wei-cheng Wang <cole945@gmail.com>
9052
9053 * rs6000-tdep.c (rs6000_frame_cache, rs6000_frame_this_id): Handle
9054 unavailable PC/SP to build unavailable frame.
9055
cce0e923
DE
90562016-02-23 Doug Evans <dje@google.com>
9057
9058 Extend "skip" command to support -file, -gfile, -function, -rfunction.
9059 * NEWS: Document new features.
9060 * skip.c: #include "fnmatch.h", "gdb_regex.h".
9061 (skiplist_entry) <file>: Renamed from filename.
9062 <function>: Renamed from function_name.
9063 <file_is_glob, function_is_regexp>: New members.
9064 <compiled_function_regexp, compiled_function_regexp_is_valid>:
9065 New members.
9066 (make_skip_entry): New function.
9067 (free_skiplist_entry, free_skiplist_entry_cleanup): New functions.
9068 (make_free_skiplist_entry_cleanup): New function.
9069 (skip_file_command): Update.
9070 (skip_function, skip_function_command): Update.
9071 (compile_skip_regexp): New functions.
9072 (skip_command): Add support for new options.
9073 (skip_info): Update.
9074 (skip_file_p, skip_gfile_p): New functions.
9075 (skip_function_p, skip_rfunction_p): New functions.
9076 (function_name_is_marked_for_skip): Update and simplify.
9077 (_initialize_step_skip): Update.
9078 * symtab.c: #include "fnmatch.h".
9079 (compare_glob_filenames_for_search): New function.
9080 * symtab.h (compare_glob_filenames_for_search): Declare.
9081 * utils.c (count_path_elements): New function.
9082 (strip_leading_path_elements): New function.
9083 * utils.h (count_path_elements): Declare.
9084 (strip_leading_path_elements): Declare.
9085
12545665
SM
90862016-02-23 Simon Marchi <simon.marchi@ericsson.com>
9087
9088 * arm-tdep.c (arm_decode_svc_copro): Remove "to" parameter.
9089 (thumb_process_displaced_insn): Likewise.
9090 (arm_process_displaced_insn): Adjust calls.
9091
c955ae73
YQ
90922016-02-23 Yao Qi <yao.qi@linaro.org>
9093
9094 * aarch64-linux-tdep.c (enum aarch64_syscall) <aarch64_sys_mknod>:
9095 Remove.
9096 <aarch64_sys_mkdir, aarch64_sys_unlink, aarch64_sys_symlink>: Remove.
9097 <aarch64_sys_link, aarch64_sys_rename, aarch64_sys_faccess>: Remove.
9098 <aarch64_sys_mknodat, aarch64_sys_mkdirat>: New.
9099 <aarch64_sys_unlinkat, aarch64_sys_symlinkat>: New.
9100 <aarch64_sys_linkat, aarch64_sys_renameat>: New.
9101 <aarch64_sys_faccessat>: New.
9102 <aarch64_sys_open, aarch64_sys_readlink, aarch64_sys_fstatat>: Remove.
9103 <aarch64_sys_openat, aarch64_sys_readlinkat>: New.
9104 <aarch64_sys_newfstatat>: New.
9105 (UNSUPPORTED_SYSCALL_MAP): New macro.
9106 (aarch64_canonicalize_syscall): Add missing syscalls.
9107
ac46107c
JK
91082016-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9109
9110 * gdb-gdb.py (class TypeFlagsPrinter): Use parentheses for print.
9111
01e57735
YQ
91122016-02-22 Yao Qi <yao.qi@linaro.org>
9113
9114 * arm-tdep.c: Fix code format issues.
9115
30a6a7f0
IB
91162016-02-21 Iain Buclaw <ibuclaw@gdcproject.org>
9117
9118 * d-namespace.c (d_lookup_symbol_imports): Remove argument
9119 'search_parents'. All callers updated.
9120
f79a3bae
MK
91212016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
9122
9123 * s390-linux-tdep.c (s390_guess_tracepoint_registers): New function.
9124 (s390_gdbarch_init): Fill guess_tracepoint_registers hook.
9125
012b3a21
WT
91262016-02-18 Walfred Tedeschi <walfred.tedeschi@intel.com>
9127
9128 * NEWS: Add entry for bound violation.
9129 * amd64-linux-tdep.c (amd64_linux_init_abi_common):
9130 Add handler for segmentation fault.
9131 * gdbarch.sh (handle_segmentation_fault): New.
9132 * gdbarch.c: Regenerate.
9133 * gdbarch.h: Regenerate.
9134 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): New.
9135 (SIG_CODE_BONDARY_FAULT): New define.
9136 (i386_linux_init_abi): Use i386_mpx_bound_violation_handler.
9137 * i386-linux-tdep.h (i386_linux_handle_segmentation_fault) New.
9138 * i386-tdep.c (i386_mpx_enabled): Add as external.
9139 * i386-tdep.c (i386_mpx_enabled): Add as external.
9140 * infrun.c (handle_segmentation_fault): New function.
9141 (print_signal_received_reason): Use handle_segmentation_fault.
9142
5f034a78
MK
91432016-02-18 Marcin Kościelnicki <koriakin@0x04.net>
9144
9145 * arch-utils.c (default_guess_tracepoint_registers): New function.
9146 * arch-utils.h (default_guess_tracepoint_registers): New prototype.
9147 * gdbarch.c: Regenerate.
9148 * gdbarch.h: Regenerate.
9149 * gdbarch.sh: Add guess_tracepoint_registers hook.
9150 * tracefile.c (tracefile_fetch_registers): Use the new gdbarch hook.
9151
88178e82
GB
91522016-02-17 Gary Benson <gbenson@redhat.com>
9153
9154 * exec.c (exec_file_locate_attach): Add missing cleanup.
9155
4041ed77
DB
91562016-02-16 Don Breazeal <donb@codesourcery.com>
9157
9158 PR remote/19496
9159 * remote.c (remove_new_fork_children): Check for pending
9160 fork status in thread_info.suspend.
9161
b442c911
YQ
91622016-02-16 Yao Qi <yao.qi@linaro.org>
9163
9164 * arm-linux-tdep.c (arm_linux_software_single_step): Assign
9165 'old_chain' later.
9166
553cb527
YQ
91672016-02-16 Yao Qi <yao.qi@linaro.org>
9168
9169 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs_ops)
9170 <syscall_next_pc>: Remove argument PC. Callers updated.
9171 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
9172 Remove argument PC. Get pc from regcache_read_pc.
9173 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Remove
9174 argument PC.
9175
0a0da556
YQ
91762016-02-15 Yao Qi <yao.qi@linaro.org>
9177
9178 * aarch64-tdep.c (aarch64_analyze_prologue): Remove "0x".
9179
01113bc1
YQ
91802016-02-12 Yao Qi <yao.qi@linaro.org>
9181
9182 * arch/arm-linux.c (arm_linux_get_next_pcs_fixup): Calculate
9183 nextpc according to instruction.
9184
ed443b61
YQ
91852016-02-12 Yao Qi <yao.qi@linaro.org>
9186
9187 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Call
9188 self->ops->fixup if it isn't NULL.
9189 * arch/arm-get-next-pcs.h: Include gdb_vecs.h.
9190 (struct arm_get_next_pcs_ops) <fixup>: New field.
9191 * arch/arm-linux.c: Include common-regcache.h and
9192 arch/arm-get-next-pcs.h.
9193 (arm_linux_get_next_pcs_fixup): New function.
9194 * arch/arm-linux.h (arm_linux_get_next_pcs_fixup): Declare.
9195 * arm-linux-tdep.c (arm_linux_get_next_pcs_ops): Initialize
9196 it with arm_linux_get_next_pcs_fixup.
9197 (arm_linux_software_single_step): Move code to
9198 arm_linux_get_next_pcs_fixup.
9199 * arm-tdep.c (arm_get_next_pcs_ops): Initialize it.
9200
d21b5f15
MK
92012016-02-12 Marcin Kościelnicki <koriakin@0x04.net>
9202
9203 * xml-tdesc.c (target_fetch_description_xml) [!HAVE_LIBEXPAT]: Warn
9204 and return NULL.
9205
33b4777c
MM
92062016-02-12 Markus Metzger <markus.t.metzger@intel.com>
9207
9208 * frame.h (skip_tailcall_frames): Update comment.
9209 * frame.c (skip_artificial_frames, skip_tailcall_frames): Return NULL
9210 if only artificial frames are found. Update comment.
9211 (frame_unwind_caller_id): Handle NULL return.
9212 (frame_unwind_caller_pc, frame_unwind_caller_arch): Assert that
9213 skip_artificial_frames does not return NULL.
9214 (frame_pop): Add an error if only tailcall frames are found.
9215 * infcmd.c (finish_command): Move skip_tailcall_frames call into
9216 forward-execution case. Add an error if only tailcall frames are
9217 found.
9218
a038fa3e
MM
92192016-02-12 Markus Metzger <markus.t.metzger@intel.com>
9220
9221 * stack.c (frame_info): Check frame_unwind_caller_id.
9222
2f3ef606
MM
92232016-02-12 Markus Metzger <markus.t.metzger@intel.com>
9224
9225 * frame.h (skip_tailcall_frames): New.
9226 * frame.c (skip_tailcall_frames): New.
9227 (frame_pop): Call skip_tailcall_frames.
9228 * infcmd.c (finish_command): Call skip_tailcall_frames.
9229
e352bf0a
PA
92302016-02-11 Pedro Alves <palves@redhat.com>
9231
9232 * Makefile.in (check-parallel): New rule.
9233
bec2ab5a
SM
92342016-02-11 Simon Marchi <simon.marchi@ericsson.com>
9235
9236 * arm-tdep.c (arm_skip_prologue): Remove unused variables.
9237 (arm_analyze_prologue): Likewise.
9238 (arm_scan_prologue): Likewise.
9239 (arm_m_exception_prev_register): Likewise.
9240 (arm_copy_block_xfer): Likewise.
9241 (thumb2_copy_block_xfer): Likewise.
9242 (arm_decode_miscellaneous): Likewise.
9243 (arm_decode_ld_st_word_ubyte): Likewise.
9244 (arm_decode_svc_copro): Likewise.
9245 (thumb2_decode_svc_copro): Likewise.
9246 (thumb_copy_16bit_ldr_literal): Likewise.
9247 (thumb_copy_pop_pc_16bit): Likewise.
9248 (decode_thumb_32bit_ld_mem_hints): Likewise.
9249 (arm_show_force_mode): Likewise.
9250 (_initialize_arm_tdep): Likewise.
9251 (arm_record_strx): Likewise.
9252 (arm_record_extension_space): Likewise.
9253 (arm_record_data_proc_misc_ld_str): Likewise.
9254 (arm_record_exreg_ld_st_insn): Likewise.
9255 (arm_record_vfp_data_proc_insn): Likewise.
9256 (arm_record_coproc_data_proc): Likewise.
9257 (thumb_record_misc): Likewise.
9258 (thumb_record_ldm_stm_swi): Likewise.
9259 (thumb2_record_ld_st_dual_ex_tbb): Likewise.
9260 (thumb2_record_ld_mem_hints): Likewise.
9261 (thumb2_record_lmul_lmla_div): Likewise.
9262 (thumb2_record_asimd_struct_ld_st): Likewise.
9263 (arm_process_record): Likewise.
9264
2ba163c8
SM
92652016-02-11 Simon Marchi <simon.marchi@ericsson.com>
9266
9267 * arm-tdep.c (arm_displaced_step_copy_insn): Remove.
9268 (ARM displaced stepping support): Remove reference to
9269 arm_displaced_step_copy_insn in comment.
9270 * arm-tdep.h (arm_displaced_step_copy_insn): Remove.
9271 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Remove
9272 reference to arm_displaced_step_copy_insn in comment.
9273
615234c1
SM
92742016-02-11 Simon Marchi <simon.marchi@ericsson.com>
9275
9276 * arm-tdep.c (thumb_copy_unmodified_16bit): Change type of insn.
9277 (thumb_copy_b): Likewise.
9278 (arm_decode_b_bl_ldmstm): Likewise.
9279 (thumb_copy_16bit_ldr_literal): Likewise.
9280 (thumb_copy_pop_pc_16bit): Likewise.
9281
82e9becd
AT
92822016-02-11 Antoine Tremblay <antoine.tremblay@ericsson.com>
9283
9284 * tracepoint.c (encode_actions_1): Use target_gdbarch () rather
9285 than loc->gdbarch.
9286
5ac87a99
MK
92872016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
9288
9289 * tracefile-tfile.c (trace_tdesc): New static variable.
9290 (tfile_open): Clear trace_tdesc, call target_find_description.
9291 (tfile_interp_line): Recognize tdesc lines.
9292 (tfile_close): Clear trace_tdesc.
9293 (tfile_xfer_partial_features): New function.
9294 (tfile_xfer_partial): Call tfile_xfer_partial_features.
9295 (tfile_append_tdesc_line): New function.
9296
18d3cec5
MK
92972016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
9298
9299 * ctf.c (ctf_write_tdesc): New function.
9300 (ctf_write_ops): Wire in ctf_write_tdesc.
9301 * tracefile-tfile.c (tfile_write_tdesc): New function.
9302 (tfile_write_ops): Wire in tfile_write_tdesc.
9303 * tracefile.c (trace_save): Call write_tdesc method.
9304 * tracefile.h (struct trace_file_write_ops): Add write_tdesc method.
9305 * xml-tdesc.c (target_fetch_description_xml): New function.
9306 * xml-tdesc.h: Add target_fetch_description_xml prototype.
9307
550dc4e2
SM
93082016-02-10 Simon Marchi <simon.marchi@ericsson.com>
9309
9310 * arm-tdep.c (arm_copy_extra_ld_st): Fix "unpriveleged" typo.
9311 (arm_decode_dp_misc): Likewise.
9312
62e5fd57
MK
93132016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
9314
9315 * amd64-tdep.c (amd64_ax_pseudo_register_collect): New function.
9316 (amd64_init_abi): Fill ax_pseudo_register_collect hook.
9317 * gdb/i386-tdep.c (i386_pseudo_register_read_into_value): Remove
9318 misleading comment.
9319 (i386_pseudo_register_write): Ditto.
9320 (i386_ax_pseudo_register_collect): New function.
9321 (i386_gdbarch_init): Fill ax_pseudo_register_collect hook.
9322 * i386-tdep.h: Add i386_ax_pseudo_register_collect prototype.
9323
e909d859
MK
93242016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
9325
9326 * tracefile-tfile.c (tfile_fetch_registers): Use g packet order
9327 instead of gdb order.
9328
473b99e5
MK
93292016-02-10 Marcin Kościelnicki <koriakin@0x04.net>
9330
9331 * tracefile-tfile.c (tfile_fetch_registers): Fix off-by-one in bounds
9332 check.
9333
1233c0ba
JB
93342016-02-10 Joel Brobecker <brobecker@adacore.com>
9335
9336 * NEWS: Create a new section for the next release branch.
9337 Rename the section of the current branch, now that it has
9338 been cut.
9339
d1dc0942
JB
93402016-02-10 Joel Brobecker <brobecker@adacore.com>
9341
9342 GDB 7.11 branch created (9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a):
9343 * version.in: Bump version to 7.11.50.DATE-git.
9344
9ef9e6a6
KS
93452016-02-09 Keith Seitz <keiths@redhat.com>
9346
9347 PR breakpoints/19546
9348 * breakpoint.c (breakpoint_event_location_empty_p): New function.
9349 (update_breakpoints_after_exec, bkpt_re_set): Use this new function
9350 instead of event_location_empty_p.
9351
39a67dc4
KS
93522016-02-09 Keith Seitz <keiths@redhat.com>
9353
9354 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Use
9355 string_to_event_location_basic instead of string_to_event_location.
9356
a96e36da
KS
93572016-02-09 Keith Seitz <keiths@redhat.com>
9358
9359 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Skip
9360 leading whitespace and use string_to_event_location_basic instead
9361 of new_linespec_location.
9362
9f61929f
KS
93632016-02-09 Keith Seitz <keiths@redhat.com>
9364
9365 PR python/19506
9366 * python/py-breakpoint.c (bppy_init): Use
9367 string_to_event_location_basic instead of new_linespec_location.
9368
eeb1af43
KS
93692016-02-09 Keith Seitz <keiths@redhat.com>
9370
9371 * location.c (string_to_explicit_location): Note that "-p" is
9372 reserved for probe locations and return NULL for any input
9373 that starts with that.
9374 (string_to_event_location): Move "legacy" linespec code to ...
9375 (string_to_event_location_basic): ... here.
9376 * location.h (string_to_event_location): Update comment.
9377 (string_to_event_location_basic): New function.
9378
1e94266c
SM
93792016-02-09 Simon Marchi <simon.marchi@ericsson.com>
9380
9381 * configure.ac: Use AC_CONFIG_FILES instead of passing arguments
9382 to AC_OUTPUT. Remove "exit 0" at the end.
9383 * configure: Regenerate.
9384
2a7f3dff
PA
93852016-02-09 Pedro Alves <palves@redhat.com>
9386
9387 PR breakpoints/19548
9388 * breakpoint.c (create_overlay_event_breakpoint): Don't update
9389 global location list here.
9390 (create_longjmp_master_breakpoint)
9391 (create_std_terminate_master_breakpoint)
9392 (create_exception_master_breakpoint, create_jit_event_breakpoint)
9393 (update_breakpoint_locations):
9394 (breakpoint_re_set): Update global location list after all
9395 breakpoints are re-set.
9396
54887903
SM
93972016-02-08 Simon Marchi <simon.marchi@ericsson.com>
9398
9399 * remote.c (remote_register_number_and_offset): Remove unused
9400 variable(s).
9401 (remote_thread_always_alive): Likewise.
9402 (remote_update_thread_list): Likewise.
9403 (process_initial_stop_replies): Likewise.
9404 (remote_start_remote): Likewise.
9405 (remote_check_symbols): Likewise.
9406 (discard_pending_stop_replies): Likewise.
9407 (process_stop_reply): Likewise.
9408 (putpkt_binary): Likewise.
9409 (getpkt): Likewise.
9410 (remote_add_target_side_condition): Likewise.
9411 (remote_insert_breakpoint): Likewise.
9412 (remote_supports_stopped_by_sw_breakpoint): Likewise.
9413 (remote_supports_stopped_by_hw_breakpoint): Likewise.
9414 (remote_xfer_partial): Likewise.
9415 (remote_read_btrace): Likewise.
9416 (remote_async_serial_handler): Likewise.
9417 (remote_thread_events): Likewise.
9418 (_initialize_remote): Likewise.
9419
30914ca8
SM
94202016-02-07 Simon Marchi <simon.marchi@polymtl.ca>
9421
9422 * varobj.h (varobj_delete): Remove dellist parameter, update and
9423 move documentation here.
9424 * varobj.c (struct cpstack, cppush, cppop): Remove.
9425 (delete_variable): Remove resultp (first) parameter.
9426 (delete_variable_1): Likewise.
9427 (varobj_delete): Remove dellist parameter and unused code.
9428 (update_dynamic_varobj_children): Adjust varobj_delete call.
9429 (update_type_if_necessary): Likewise.
9430 (varobj_set_visualizer): Likewise.
9431 (varobj_update): Likewise.
9432 (value_of_root): Likewise.
9433 (varobj_invalidate_iter): Likewise.
9434 * mi/mi-cmd-var.c (mi_cmd_var_delete): Likewise.
9435
e42e5352
YQ
94362016-02-04 Yao Qi <yao.qi@linaro.org>
9437
9438 * remote.c (remote_wait_as): Set rs->waiting_for_stop_reply to
9439 0 before handling 'F' and set it back afterwards.
9440
6456a18b
SM
94412016-02-02 Simon Marchi <simon.marchi@ericsson.com>
9442
9443 * ui-out.c (MAX_UI_OUT_LEVELS): Remove.
9444
3f2f6cb5
WT
94452016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
9446
9447 * amd64-linux-siginfo.c (nat_siginfo_t, nat_sigval_t, nat_timeval):
9448 New types.
9449 (compat_siginfo): New bound fields added.
9450 (compat_x32_siginfo): New field added.
9451 (cpt_si_addr_lsb): New define.
9452 (compat_siginfo_from_siginfo): Use nat_siginfo.
9453 (siginfo_from_compat_siginfo): Use nat_siginfo.
9454 (compat_x32_siginfo_from_siginfo): Likewise.
9455 (siginfo_from_compat_x32_siginfo): Likewise.
9456
96b5c49f
WT
94572016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
9458
9459 * linux-tdep.c (linux_get_siginfo_type): Add the _addr_bnd
9460 structure to the siginfo if extra_fields contains
9461 LINUX_SIGINFO_FIELD_ADDR_BND.
9462
190b495d
WT
94632016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
9464
9465 * linux-tdep.h (linux_get_siginfo_type_with_fields): Make extern.
9466 * linux-tdep.c (linux_get_siginfo_type_with_fields): Make extern.
9467 * i386-linux-tdep.h (x86_linux_get_siginfo_type): New
9468 function.
9469 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Add
9470 x86_linux_get_siginfo_type for the amd64 abi.
9471 * i386-linux-tdep.c (x86_linux_get_siginfo_type): New
9472 function.
9473 (i386_linux_init_abi): Add new function at the i386 ABI
9474 initialization.
9475
43564574
WT
94762016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
9477
9478 * linux-tdep.h (linux_siginfo_extra_field_values): New enum values.
9479 (linux_siginfo_extra_fields): New enum type.
9480 * linux-tdep.c (linux_get_siginfo_type_with_fields): New function.
9481 (linux_get_siginfo_type): Use new function.
9482
93813b37
WT
94832016-02-02 Walfred Tedeschi <walfred.tedeschi@intel.com>
9484
9485 * nat/amd64-linux-siginfo.c: New file.
9486 * nat/amd64-linux-siginfo.h: New file.
9487 * Makefile.in (HFILES_NO_SRCDIR): Add nat/amd64-linux-siginfo.h.
9488 (amd64-linux-siginfo.o): New rule.
9489 * config/i386/linux64.mh (NATDEPFILES): Add amd64-linux-siginfo.o.
9490 * amd64-linux-nat.c (nat/amd64-linux-siginfo.h): New include.
9491 (compat_siginfo_from_siginfo, siginfo_from_compat_siginfo)
9492 (compat_x32_siginfo_from_siginfo, siginfo_from_compat_x32_siginfo)
9493 (compat_timeval, compat_sigval, compat_x32_clock, cpt_si_pid)
9494 (cpt_si_uid, cpt_si_timerid, cpt_si_overrun, cpt_si_status)
9495 (cpt_si_utime, cpt_si_stime, cpt_si_ptr, cpt_si_addr, cpt_si_band)
9496 (cpt_si_fd, si_timerid, si_overrun): Move to nat/amd64-linux-siginfo.c.
9497
5fdf6324
AB
94982016-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
9499
9500 * value.c (max_value_size): New variable.
9501 (MIN_VALUE_FOR_MAX_VALUE_SIZE): New define.
9502 (set_max_value_size): New function.
9503 (show_max_value_size): New function.
9504 (check_type_length_before_alloc): New function.
9505 (allocate_value_contents): Call check_type_length_before_alloc.
9506 (set_value_enclosing_type): Likewise.
9507 (_initialize_values): Add set/show handler for max-value-size.
9508 * NEWS: Mention new set/show command.
9509
5fa13070
SM
95102016-01-31 Simon Marchi <simon.marchi@polymtl.ca>
9511
9512 * varobj.h (struct varobj): Fix typos in comments.
9513 (struct lang_varobj_ops): Likewise.
9514 * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
9515 (varobj_create): Move misplaced comment.
9516
a2e3e93f
SM
95172016-01-29 Simon Marchi <simon.marchi@ericsson.com>
9518
9519 * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
9520 to for include additional lines.
9521 * xcoffread.c (scan_xcoff_symtab): Remove unnecessary braces.
9522
56e374a6
SM
95232016-01-28 Simon Marchi <simon.marchi@ericsson.com>
9524
9525 * gnulib/import/Makefile.am: Regenerate.
9526 * gnulib/import/Makefile.in: Regenerate.
9527 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
9528 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add rawmemchr.
9529
8424cc97
SM
95302016-01-28 Simon Marchi <simon.marchi@ericsson.com>
9531
9532 * remote.c (skip_to_semicolon): Remove.
9533 (remote_parse_stop_reply): Use strchrnul instead of
9534 skip_to_semicolon.
9535 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
9536 strchrnul.
9537 * gnulib/aclocal.m4: Regenerate.
9538 * gnulib/config.in: Regenerate.
9539 * gnulib/configure: Regenerate.
9540 * gnulib/import/Makefile.am: Regenerate.
9541 * gnulib/import/Makefile.in: Regenerate.
9542 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
9543 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
9544 * gnulib/import/m4/rawmemchr.m4: New file.
9545 * gnulib/import/m4/strchrnul.m4: New file.
9546 * gnulib/import/rawmemchr.c: New file.
9547 * gnulib/import/rawmemchr.valgrind: New file.
9548 * gnulib/import/strchrnul.c: New file.
9549 * gnulib/import/strchrnul.valgrind: New file.
9550
4a6a1ed4
YQ
95512016-01-28 Yao Qi <yao.qi@linaro.org>
9552
9553 * breakpoint.c (build_target_command_list): Don't call continue
9554 if aexpr is NULL.
9555 (build_target_condition_list): Likewise.
9556
94715c17
KB
95572016-01-27 Kevin Buettner <kevinb@redhat.com>
9558
9559 * rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
9560 bytes as aggregates.
9561
c07af0ab
JB
95622016-01-27 Joel Brobecker <brobecker@adacore.com>
9563
9564 * MAINTAINERS (Responsible Maintainers): Add Keith Seitz as
9565 Linespec Maintainers.
9566
41548caa
SM
95672016-01-26 Simon Marchi <simon.marchi@ericsson.com>
9568
9569 * common/common-utils.c (skip_spaces): Fix comment.
9570 (skip_to_space_const): Likewise.
9571
4d18591b
YQ
95722016-01-25 Yao Qi <yao.qi@linaro.org>
9573
9574 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
9575 Remove argument pc. Get pc by regcache_read_pc. Callers updated.
9576 (arm_deal_with_atomic_sequence_raw): Likewise.
9577 (thumb_get_next_pcs_raw): Likewise.
9578 (arm_get_next_pcs_raw): Likewise.
9579 (arm_get_next_pcs): Remove argument pc. Callers updated.
9580 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Update declaration.
9581
a579cd9a
MW
95822016-01-25 Mark Wielaard <mjw@redhat.com>
9583
9584 * ada-lang.c (ada_evaluate_subexp): Add proper else block.
9585 * c-typeprint.c (c_type_print_base): Fix misleading indentation of
9586 if statement.
9587 * inflow.c (child_terminal_ours_1): Fix misleading indentation of
9588 statement block by introducing an else.
9589 * linux-record.c (record_linux_sockaddr): Fix misleading indentation
9590 of return statements.
9591 (record_linux_msghdr): Likewise.
9592
a2077e25
PA
95932016-01-25 Pedro Alves <palves@redhat.com>
9594
9595 PR threads/19461
9596 * infrun.c (handle_inferior_event_1) <fork/vfork>: Update
9597 parent/child running states.
9598
1d2736d4
PA
95992016-01-25 Pedro Alves <palves@redhat.com>
9600
9601 PR gdb/19494
9602 * linux-nat.c (kill_one_lwp): New, factored out from ...
9603 (kill_callback): ... this.
9604 (kill_wait_callback): New, factored out from ...
9605 (kill_wait_one_lwp): ... this.
9606 (kill_unfollowed_fork_children): New function.
9607 (linux_nat_kill): Use it.
9608
b2bae2f7
JB
96092016-01-22 John Baldwin <jhb@FreeBSD.org>
9610
9611 * fbsd-nat.c (fbsd_pid_to_str): Adjust string format.
9612
d86feca3
YQ
96132016-01-22 Yao Qi <yao.qi@linaro.org>
9614
9615 * arm-linux-nat.c (fetch_fpregs): Call perror_with_name
9616 instead of warning.
9617 (store_fpregs, fetch_regs, store_regs): Likewise.
9618 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
9619 (fetch_vfp_regs, store_vfp_regs): Likewise.
9620
b35a8b2f
DE
96212016-01-21 Doug Evans <dje@google.com>
9622
9623 * breakpoint.c (init_breakpoint_sal): Add comment.
9624
f906b857
MK
96252016-01-21 Marcin Kościelnicki <koriakin@0x04.net>
9626
9627 * ax-gdb.c (gen_traced_pop): Use gen_fetch for string collection.
9628
4a099de2
AB
96292016-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
9630
9631 * disasm.c (maybe_add_dis_line_entry): Rename to...
9632 (add_dis_line_entry): ...this, and update header comment.
9633 (do_mixed_source_and_assembly): Now use add_dis_line_entry.
9634
a994041d
PA
96352016-01-21 Pedro Alves <palves@redhat.com>
9636
9637 * Makefile.in (COMPILER_CFLAGS): New.
9638 (CXXFLAGS): Get it from configure.
9639 (INTERNAL_CFLAGS_BASE, INTERNAL_LDFLAGS): Use COMPILER_CFLAGS
9640 instead of CFLAGS.
9641 * build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Set and AC_SUBST
9642 COMPILER_CFLAGS.
9643 * configure: Regenerate.
9644
305e13e6
JB
96452016-01-21 Joel Brobecker <brobecker@adacore.com>
9646
9647 * location.h (new_address_location): Add new parameters
9648 "addr_string" and "addr_string_len".
9649 (get_address_string_location): Add declaration.
9650 * location.c (new_address_location): Add new parameters
9651 "addr_string" and "addr_string_len". If not NULL, store
9652 a copy of the addr_string in the new location as well.
9653 (get_address_string_location): New function.
9654 (string_to_event_location): Update call to new_address_location.
9655 * linespec.c (event_location_to_sals) <ADDRESS_LOCATION>:
9656 Save the event location in the parser's state before
9657 passing it to convert_address_location_to_sals.
9658 * breakpoint.c (create_thread_event_breakpoint): Update call
9659 to new_address_location.
9660 (init_breakpoint_sal): Get the event location's string, if any,
9661 and use it to update call to new_address_location.
9662 * python/py-finishbreakpoint.c (bpfinishpy_init):
9663 Update call to new_address_location.
9664 * spu-tdep.c (spu_catch_start): Likewise.
9665
9666 * config/djgpp/fnchange.lst: Add entries for
9667 gdb/testsuite/gdb.base/break-fun-addr1.c and
9668 gdb/testsuite/gdb.base/break-fun-addr2.c.
9669
f7a6a40d
YQ
96702016-01-21 Yao Qi <yao.qi@linaro.org>
9671
9672 * arm-linux-tdep.c (arm_linux_sigreturn_next_pc): Add parameter
9673 is_thumb and set it according to CPSR saved on the stack.
9674 (arm_linux_get_next_pcs_syscall_next_pc): Pass is_thumb to
9675 arm_linux_sigreturn_next_pc.
9676
5f5dfff6
SM
96772016-01-20 Simon Marchi <simon.marchi@polymtl.ca>
9678
9679 * python/lib/gdb/printing.py (FlagEnumerationPrinter.__call__):
9680 Fix enumerators sort key function.
9681
be56871e
JB
96822016-01-20 Joel Brobecker <brobecker@adacore.com>
9683
b12e5614 9684 * printcmd.c (print_scalar_formatted): Move binary operator from
be56871e
JB
9685 end of line to beginning of next line. Adjust formatting
9686 accordingly.
9687
f2feec98
JB
96882016-01-19 John Baldwin <jhb@FreeBSD.org>
9689
9690 * fbsd-nat.c (fbsd_pid_to_exec_file): Use new "buflen" instead of
9691 "len" with sysctl.
9692
20a0aab3
JB
96932016-01-19 John Baldwin <jhb@FreeBSD.org>
9694
9695 * fbsd-tdep.c (find_stop_signal): Remove.
9696 (struct fbsd_collect_regset_section_cb) <lwp>: New field.
9697 <stop_signal>: New field.
9698 <abort_iteration>: New field.
9699 (fbsd_collect_regset_section_cb): Use new fields.
9700 (fbsd_collect_thread_registers): New function.
9701 (struct fbsd_corefile_thread_data): New structure.
9702 (fbsd_corefile_thread): New function.
9703 (fbsd_make_corefile_notes): Use new function to dump notes for each
9704 non-exited thread in a process.
9705
6e9567fe
JB
97062016-01-19 John Baldwin <jhb@FreeBSD.org>
9707
9708 * configure.ac: Check for support for LWP names on FreeBSD.
9709 * fbsd-nat.c [PT_LWPINFO] New variable debug_fbsd_lwp.
9710 [TDP_RFPPWAIT || HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]
9711 (fbsd_fetch_kinfo_proc): Move function earlier.
9712 [PT_LWPINFO] (fbsd_thread_alive): New function.
9713 [PT_LWPINFO] (fbsd_pid_to_str): New function.
9714 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME] (fbsd_thread_name): New function.
9715 [PT_LWP_EVENTS] (fbsd_enable_lwp_events): New function.
9716 [PT_LWPINFO] (fbsd_add_threads): New function.
9717 [PT_LWPINFO] (fbsd_update_thread_list): New function.
9718 [PT_LWPINFO] New variable super_resume.
9719 [PT_LWPINFO] (resume_one_thread_cb): New function.
9720 [PT_LWPINFO] (resume_all_threads_cb): New function.
9721 [PT_LWPINFO] (fbsd_resume): New function.
9722 (fbsd_remember_child): Save full ptid instead of plain pid.
9723 (fbsd_is_child_pending): Return ptid of saved child process.
9724 (fbsd_wait): Include lwp in returned ptid and switch to LWP ptid on
9725 first stop.
9726 [PT_LWP_EVENTS] Handle LWP events.
9727 [TDP_RFPPWAIT] Include LWP in child ptid.
9728 (fbsd_post_startup_inferior) [PT_LWP_EVENTS]: Enable LWP events.
9729 (fbsd_post_attach) [PT_LWP_EVENTS]: Enable LWP events.
9730 Add threads for existing processes.
9731 (fbsd_nat_add_target) [PT_LWPINFO]: Set "to_thread_alive" to
9732 "fbsd_thread_alive".
9733 Set "to_pid_to_str" to "fbsd_pid_to_str".
9734 [HAVE_STRUCT_PTRACE_LWPINFO_PL_TDNAME]: Set "to_thread_name" to
9735 "fbsd_thread_name".
9736 [PT_LWPINFO]: Set "to_update_thread_list" to "fbsd_update_thread_list".
9737 Set "to_has_thread_control" to "tc_schedlock".
9738 Set "to_resume" to "fbsd_resume".
9739 (_initialize_fbsd_nat): New function.
9740 * configure: Regenerate.
9741 * config.in: Regenerate.
9742
94309df7
JB
97432016-01-19 John Baldwin <jhb@FreeBSD.org>
9744
9745 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
9746 get_ptrace_pid.
9747 (amd64bsd_store_inferior_registers): Use get_ptrace_pid.
9748 (amd64bsd_dr_get): Use get_ptrace_pid.
9749 (amd64bsd_dr_set): Use get_ptrace_pid.
9750 * i386bsd-nat.c (i386bsd_fetch_inferior_registers): Use get_ptrace_pid.
9751 (i386bsd_store_inferior_registers): Use get_ptrace_pid.
9752 (i386bsd_dr_get): Use get_ptrace_pid.
9753 (i386bsd_dr_set): Use get_ptrace_pid.
9754 * inf-ptrace.c (get_ptrace_pid): Export.
9755 * inf-ptrace.h (get_ptrace_pid): Declare.
9756 * ppcfbsd-nat.c (ppcfbsd_fetch_inferior_registers): Use lwp id.
9757 (ppcfbsd_store_inferior_registers): Use lwp id.
9758
79117428
JB
97592016-01-19 John Baldwin <jhb@FreeBSD.org>
9760
9761 * fbsd_tdep.c (fbsd_core_pid_to_str): New function.
9762 (fbsd_core_thread_name): New function.
9763 (fbsd_init_abi): Add "core_pid_to_str" gdbarch method.
9764 Add "core_thread_name" gdbarch method.
9765
4dfc5dbc
JB
97662016-01-19 John Baldwin <jhb@FreeBSD.org>
9767
9768 * corelow.c (core_thread_name): New function.
9769 (init_core_ops): Use "core_thread_name" for the "to_thread_name"
9770 target op.
9771 * gdbarch.sh (core_thread_name): New gdbarch callback.
9772 * gdbarch.h: Re-generate.
9773 * gdbarch.c: Re-generate.
9774
10e3ed90
SM
97752016-01-19 Simon Marchi <simon.marchi@polymtl.ca>
9776
9777 * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly
9778 convert gdb.Value to integer type using int().
9779
a6e69c1f
JB
97802016-01-19 John Baldwin <jhb@FreeBSD.org>
9781
9782 * configure.ac: Include <sys/types.h when checking for "r_fs" in
9783 "struct reg".
9784 * configure: Regenerate.
9785
37e42b4f
PA
97862016-01-19 Pedro Alves <palves@redhat.com>
9787
9788 * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
9789 * break-catch-throw.c (re_set_exception_catchpoint): Pass the
9790 current program space down to linespec decoding and breakpoint
9791 location updating.
9792 * breakpoint.c (parse_breakpoint_sals): Adjust calls to
9793 decode_line_full.
9794 (until_break_command): Adjust calls to decode_line_1.
9795 (base_breakpoint_decode_location, bkpt_decode_location): Add
9796 'search_pspace' parameter. Pass it along.
9797 (bkpt_probe_create_sals_from_location): Adjust calls to
9798 parse_probes.
9799 (tracepoint_decode_location, tracepoint_probe_decode_location)
9800 (strace_marker_decode_location): Add 'search_pspace' parameter.
9801 Pass it along.
9802 (all_locations_are_pending): Rewrite to take a breakpoint and
9803 program space as arguments instead.
9804 (hoist_existing_locations): New function.
9805 (update_breakpoint_locations): Add 'filter_pspace' parameter. Use
9806 hoist_existing_locations instead of always removing all locations,
9807 and adjust to all_locations_are_pending change.
9808 (location_to_sals): Add 'search_pspace' parameter. Pass it along.
9809 Don't disable the breakpoint if there are other locations in
9810 another program space.
9811 (breakpoint_re_set_default): Adjust to pass down the current
9812 program space as filter program space.
9813 (decode_location_default): Add 'search_pspace' parameter and pass
9814 it along.
9815 (prepare_re_set_context): Don't switch program space here.
9816 (breakpoint_re_set): Use save_current_space_and_thread instead of
9817 save_current_program_space.
9818 * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
9819 'search_pspace' parameter.
9820 (update_breakpoint_locations): Add 'filter_pspace' parameter.
9821 * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
9822 decode_line_1.
9823 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
9824 program space as filter program space.
9825 * linespec.c (struct linespec_state) <search_pspace>: New field.
9826 (create_sals_line_offset, convert_explicit_location_to_sals)
9827 (parse_linespec): Pass the search program space down.
9828 (linespec_state_constructor): Add 'search_pspace' parameter.
9829 Store it.
9830 (linespec_parser_new): Add 'search_pspace' parameter and pass it
9831 along.
9832 (linespec_lex_to_end): Adjust.
9833 (decode_line_full, decode_line_1): Add 'search_pspace' parameter
9834 and pass it along.
9835 (decode_line_with_last_displayed): Adjust.
9836 (collect_symtabs_from_filename, symtabs_from_filename): New
9837 'search_pspace' parameter. Use it.
9838 (find_function_symbols): Pass the search program space down.
9839 * linespec.h (decode_line_1, decode_line_full): Add
9840 'search_pspace' parameter.
9841 * probe.c (parse_probes_in_pspace): New function, factored out
9842 from ...
9843 (parse_probes): ... this. Add 'search_pspace' parameter and use
9844 it.
9845 * probe.h (parse_probes): Add pspace' parameter.
9846 * python/python.c (gdbpy_decode_line): Adjust.
9847 * tracepoint.c (scope_info): Adjust.
9848
100b4f2e
MR
98492016-01-18 Maciej W. Rozycki <macro@imgtec.com>
9850
9851 * mips-tdep.c (mips_insn_size): Remove 48-bit microMIPS
9852 instruction support.
9853 (micromips_next_pc): Likewise.
9854 (micromips_scan_prologue): Likewise.
9855 (micromips_deal_with_atomic_sequence): Likewise.
9856 (micromips_stack_frame_destroyed_p): Likewise.
9857 (mips_breakpoint_from_pc): Likewise.
9858
3f7f3650
MR
98592016-01-18 Maciej W. Rozycki <macro@imgtec.com>
9860
9861 * mips-tdep.c (micromips_insn_at_pc_has_delay_slot): Pass
9862 unshifted 16-bit microMIPS instruction word to `mips_insn_size'.
9863
f303dbd6
PA
98642016-01-18 Pedro Alves <palves@redhat.com>
9865
9866 * NEWS: Mention that GDB now displays the ID and name of the
9867 thread that hit a breakpoint or received a signal.
9868 * break-catch-sig.c (signal_catchpoint_print_it): Use
9869 maybe_print_thread_hit_breakpoint.
9870 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
9871 * break-catch-throw.c (print_it_exception_catchpoint): Likewise.
9872 * breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
9873 (print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
9874 (print_it_catch_exec, print_it_ranged_breakpoint)
9875 (print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
9876 Use maybe_print_thread_hit_breakpoint.
9877 * breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
9878 * gdbthread.h (show_thread_that_caused_stop): Declare.
9879 * infrun.c (print_signal_received_reason): Print which thread
9880 received signal.
9881 * thread.c (show_thread_that_caused_stop): New function.
9882
eb0edac8
GB
98832016-01-18 Gary Benson <gbenson@redhat.com>
9884
9885 * nat/linux-namespaces.c (do_fork): New function.
9886 (linux_mntns_get_helper): Use the above.
9887
dc365182
JH
98882016-01-17 Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> (tiny change)
9889
9890 Pushed by Joel Brobecker <brobecker@adacore.com>.
9891 PR gdb/19208
9892 * dwarf2read.c (read_partial_die): Do not call set_objfile_main_name
9893 if the function has no name.
9894
f74f61cb
SL
98952016-01-15 Sandra Loosemore <sandra@codesourcery.com>
9896
9897 * charset.c [PHONY_ICONV] (GDB_DEFAULT_HOST_CHARSET):
9898 Conditionalize for Windows host.
9899 (GDB_DEFAULT_TARGET_CHARSET): Match GDB_DEFAULT_HOST_CHARSET.
9900 (GDB_DEFAULT_TARGET_WIDE_CHARSET): Use UTF-32.
9901 (phony_iconv_open): Handle both UTF-32 endiannesses.
9902 (phony_iconv): Likewise. Check for output overflow and clean up
9903 out-of-input cases. Correct adjustment to input buffer pointer.
9904 (set_be_le_names) [PHONY_ICONV]: Use hard-wired names to match
9905 phony_iconv_open.
9906
71ef29a8
PA
99072016-01-15 Pedro Alves <palves@redhat.com>
9908
9909 * NEWS: Mention star wildcard ranges.
9910 * cli/cli-utils.c (get_number_or_range): Check state->in_range first.
9911 (number_range_setup_range): New function.
9912 * cli/cli-utils.h (number_range_setup_range): New declaration.
9913 * thread.c (thread_apply_command): Support star TID ranges.
9914 * tid-parse.c (tid_range_parser_finished)
9915 (tid_range_parser_string, tid_range_parser_skip)
9916 (get_tid_or_range, get_tid_or_range): Handle
9917 TID_RANGE_STATE_STAR_RANGE.
9918 (tid_range_parser_star_range): New function.
9919 * tid-parse.h (enum tid_range_state) <TID_RANGE_STATE_STAR_RANGE>:
9920 New value.
9921 (tid_range_parser_star_range): New declaration.
9922
3f5b7598
PA
99232016-01-15 Pedro Alves <palves@redhat.com>
9924
9925 * thread.c (thread_apply_command): Use the tid range parser to
9926 advance past the thread ID list.
9927 * tid-parse.c (get_positive_number_trailer): New function.
9928 (parse_thread_id): Use it.
9929 (get_tid_or_range): Use it. Return 0 instead of throwing invalid
9930 thread ID error.
9931 (get_tid_or_range): Detect negative values. Return 0 instead of
9932 throwing invalid thread ID error.
9933
e7cf25a8
YQ
99342016-01-14 Yao Qi <yao.qi@linaro.org>
9935
9936 * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc):
9937 Declare.
9938 (arm_linux_get_next_pcs_ops): Install
9939 arm_linux_get_next_pcs_syscall_next_pc.
9940 (arm_linux_syscall_next_pc): Change to ...
9941 (arm_linux_get_next_pcs_syscall_next_pc): ... it.
9942 (arm_linux_init_abi): Don't set tdep->syscall_next_pc.
9943 * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare.
9944 (arm_get_next_pcs_syscall_next_pc): Make it static. Don't
9945 call tdep->syscall_next_pc.
9946 * arm-tdep.h (struct gdbarch_tdep) <syscall_next_pc>: Remove.
9947 (arm_get_next_pcs_syscall_next_pc): Remove.
9948
c0518081
YQ
99492016-01-14 Yao Qi <yao.qi@linaro.org>
9950
9951 * remote.c (remote_set_syscall_catchpoint): Cast to char *.
9952 * thread.c (do_captured_thread_select): Cast to const char *.
9953
1b451dda
YQ
99542016-01-14 Yao Qi <yao.qi@linaro.org>
9955
9956 * arch/arm-get-next-pcs.c (arm_get_next_pcs_ctor): Change
9957 argument arm_thumb2_breakpoint to has_thumb2_breakpoint.
9958 (thumb_get_next_pcs_raw): Check has_thumb2_breakpoint
9959 instead.
9960 * arch/arm-get-next-pcs.h (struct arm_get_next_pcs)
9961 <arm_thumb2_breakpoint>: Remove.
9962 <has_thumb2_breakpoint>: New field.
9963 (arm_get_next_pcs_ctor): Update declaration.
9964 * arm-linux-tdep.c (arm_linux_software_single_step): Pass
9965 1 to arm_get_next_pcs_ctor.
9966 * arm-tdep.c (arm_software_single_step): Pass 0 to
9967 arm_get_next_pcs_ctor.
9968
bc06e0b1
UW
99692016-01-13 Ulrich Weigand <uweigand@de.ibm.com>
9970
9971 * MAINTAINERS: Add Andreas Arnez as s390 target maintainer.
9972
4e7b8bea
YQ
99732016-01-13 Yao Qi <yao.qi@linaro.org>
9974
9975 * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Use
9976 byte_order_for_code to read instruction.
9977
663f6d42
PA
99782016-01-13 Pedro Alves <palves@redhat.com>
9979
9980 * NEWS: Mention $_gthread.
9981 * gdbthread.h (struct thread_info) <global_num>: Mention
9982 $_gthread.
9983 * thread.c (thread_num_make_value_helper): New function.
9984 (thread_id_make_value): Delete.
9985 (thread_id_per_inf_num_make_value, global_thread_id_make_value):
9986 New.
9987 (thread_funcs): Adjust.
9988 (gthread_funcs): New.
9989 (_initialize_thread): Register $_gthread variable.
9990
c84f6bbf
PA
99912016-01-13 Pedro Alves <palves@redhat.com>
9992
9993 * NEWS: Mention "info threads -gid".
9994 * gdbthread.h (struct thread_info) <global_num>: Mention "info
9995 threads -gid".
9996 * thread.c (info_threads_command): Handle "-gid".
9997 (_initialize_thread): Adjust "info threads" help string to mention
9998 -gid.
9999
22a02324
PA
100002016-01-13 Pedro Alves <palves@redhat.com>
10001
10002 * NEWS: Mention InferiorThread.global_num.
10003 * python/py-infthread.c (thpy_get_global_num): New function.
10004 (thread_object_getset): Register "global_num".
10005
5d5658a1
PA
100062016-01-13 Pedro Alves <palves@redhat.com>
10007
10008 * NEWS: Mention that thread IDs are now per inferior and global
10009 thread IDs.
10010 * Makefile.in (SFILES): Add tid-parse.c.
10011 (COMMON_OBS): Add tid-parse.o.
10012 (HFILES_NO_SRCDIR): Add tid-parse.h.
10013 * ada-tasks.c: Adjust to use ptid_to_global_thread_id.
10014 * breakpoint.c (insert_breakpoint_locations)
10015 (remove_threaded_breakpoints, bpstat_check_breakpoint_conditions)
10016 (print_one_breakpoint_location, set_longjmp_breakpoint)
10017 (check_longjmp_breakpoint_for_call_dummy)
10018 (set_momentary_breakpoint): Adjust to use global IDs.
10019 (find_condition_and_thread, watch_command_1): Use parse_thread_id.
10020 (until_break_command, longjmp_bkpt_dtor)
10021 (breakpoint_re_set_thread, insert_single_step_breakpoint): Adjust
10022 to use global IDs.
10023 * dummy-frame.c (pop_dummy_frame_bpt): Adjust to use
10024 ptid_to_global_thread_id.
10025 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10026 * gdbthread.h (struct thread_info): Rename field 'num' to
10027 'global_num. Add new fields 'per_inf_num' and 'inf'.
10028 (thread_id_to_pid): Rename thread_id_to_pid to
10029 global_thread_id_to_ptid.
10030 (pid_to_thread_id): Rename to ...
10031 (ptid_to_global_thread_id): ... this.
10032 (valid_thread_id): Rename to ...
10033 (valid_global_thread_id): ... this.
10034 (find_thread_id): Rename to ...
10035 (find_thread_global_id): ... this.
10036 (ALL_THREADS, ALL_THREADS_BY_INFERIOR): Declare.
10037 (print_thread_info): Add comment.
10038 * tid-parse.h: New file.
10039 * tid-parse.c: New file.
10040 * infcmd.c (step_command_fsm_prepare)
10041 (step_command_fsm_should_stop): Adjust to use the global thread
10042 ID.
10043 (until_next_command, until_next_command)
10044 (finish_command_fsm_should_stop): Adjust to use the global thread
10045 ID.
10046 (attach_post_wait): Adjust to check the inferior number too.
10047 * inferior.h (struct inferior) <highest_thread_num>: New field.
10048 * infrun.c (handle_signal_stop)
10049 (insert_exception_resume_breakpoint)
10050 (insert_exception_resume_from_probe): Adjust to use the global
10051 thread ID.
10052 * record-btrace.c (record_btrace_open): Use global thread IDs.
10053 * remote.c (process_initial_stop_replies): Also consider the
10054 inferior number.
10055 * target.c (target_pre_inferior): Clear the inferior's highest
10056 thread num.
10057 * thread.c (clear_thread_inferior_resources): Adjust to use the
10058 global thread ID.
10059 (new_thread): New inferior parameter. Adjust to use it. Set both
10060 the thread's global ID and the thread's per-inferior ID.
10061 (add_thread_silent): Adjust.
10062 (find_thread_global_id): New.
10063 (find_thread_id): Make static. Adjust to rename.
10064 (valid_thread_id): Rename to ...
10065 (valid_global_thread_id): ... this.
10066 (pid_to_thread_id): Rename to ...
10067 (ptid_to_global_thread_id): ... this.
10068 (thread_id_to_pid): Rename to ...
10069 (global_thread_id_to_ptid): ... this. Adjust.
10070 (first_thread_of_process): Adjust.
10071 (do_captured_list_thread_ids): Adjust to use global thread IDs.
10072 (should_print_thread): New function.
10073 (print_thread_info): Rename to ...
10074 (print_thread_info_1): ... this, and add new show_global_ids
10075 parameter. Handle it. Iterate over inferiors.
10076 (print_thread_info): Reimplement as wrapper around
10077 print_thread_info_1.
10078 (show_inferior_qualified_tids): New function.
10079 (print_thread_id): Use it.
10080 (tp_array_compar): Compare inferior numbers too.
10081 (thread_apply_command): Use tid_range_parser.
10082 (do_captured_thread_select): Use parse_thread_id.
10083 (thread_id_make_value): Adjust.
10084 (_initialize_thread): Adjust "info threads" help string.
10085 * varobj.c (struct varobj_root): Update comment.
10086 (varobj_create): Adjust to use global thread IDs.
10087 (value_of_root_1): Adjust to use global_thread_id_to_ptid.
10088 * windows-tdep.c (display_tib): No longer accept an argument.
10089 * cli/cli-utils.c (get_number_trailer): Make extern.
10090 * cli/cli-utils.h (get_number_trailer): Declare.
10091 (get_number_const): Adjust documentation.
10092 * mi/mi-cmd-var.c (mi_cmd_var_update_iter): Adjust to use global
10093 thread IDs.
10094 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
10095 (mi_on_normal_stop, mi_output_running_pid, mi_on_resume):
10096 * mi/mi-main.c (mi_execute_command, mi_cmd_execute): Likewise.
10097 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_thread_x):
10098 Likewise.
10099 * python/py-breakpoint.c (bppy_set_thread): Likewise.
10100 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
10101 * python/py-infthread.c (thpy_get_num): Add comment and return the
10102 per-inferior thread ID.
10103 (thread_object_getset): Update comment of "num".
10104
43792cf0
PA
101052016-01-13 Pedro Alves <palves@redhat.com>
10106
10107 * breakpoint.c (remove_threaded_breakpoints)
10108 (print_one_breakpoint_location): Use print_thread_id.
10109 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
10110 (btrace_fetch, btrace_clear): Use print_thread_id.
10111 * common/print-utils.c (CELLSIZE): Delete.
10112 (get_cell): Rename to ...
10113 (get_print_cell): ... this and made extern. Adjust call callers.
10114 Adjust to use PRINT_CELL_SIZE.
10115 * common/print-utils.h (get_print_cell): Declare.
10116 (PRINT_CELL_SIZE): New.
10117 * gdbthread.h (print_thread_id): Declare.
10118 * infcmd.c (signal_command): Use print_thread_id.
10119 * inferior.c (print_inferior): Use print_thread_id.
10120 * infrun.c (handle_signal_stop)
10121 (insert_exception_resume_breakpoint)
10122 (insert_exception_resume_from_probe)
10123 (print_signal_received_reason): Use print_thread_id.
10124 * record-btrace.c (record_btrace_info)
10125 (record_btrace_resume_thread, record_btrace_cancel_resume)
10126 (record_btrace_step_thread, record_btrace_wait): Use
10127 print_thread_id.
10128 * thread.c (thread_apply_all_command): Use print_thread_id.
10129 (print_thread_id): New function.
10130 (thread_apply_command): Use print_thread_id.
10131 (thread_command, thread_find_command, do_captured_thread_select):
10132 Use print_thread_id.
10133
84654457
PA
101342016-01-13 Pedro Alves <palves@redhat.com>
10135
10136 * NEWS: Mention InferiorThread.inferior.
10137 * python/py-infthread.c (thpy_get_inferior): New.
10138 (thread_object_getset): Register "inferior".
10139
e3940304
PA
101402016-01-13 Pedro Alves <palves@redhat.com>
10141
10142 * NEWS: Mention $_inferior.
10143 * inferior.c (inferior_id_make_value): New.
10144 (inferior_funcs): New.
10145 (_initialize_inferior): Create $_inferior variable.
10146
a911d87a
PA
101472016-01-13 Pedro Alves <palves@redhat.com>
10148
10149 PR breakpoints/19388
10150 * frame.c (get_current_frame): Use validate_registers_access.
10151 * gdbthread.h (validate_registers_access): Declare.
10152 * infrun.c (validate_siginfo_access): Delete.
10153 (siginfo_value_read, siginfo_value_write): Use
10154 validate_registers_access.
10155 * thread.c (validate_registers_access): New function.
10156
82075af2
JS
101572016-01-12 Josh Stone <jistone@redhat.com>
10158 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10159
10160 * NEWS (Changes since GDB 7.10): Mention QCatchSyscalls and the
10161 syscall_entry and syscall_return stop reasons. Mention GDB
10162 support for remote catch syscall.
10163 * remote.c (PACKET_QCatchSyscalls): New enum.
10164 (remote_set_syscall_catchpoint): New function.
10165 (remote_protocol_features): New element for QCatchSyscalls.
10166 (remote_parse_stop_reply): Parse syscall_entry/return stops.
10167 (init_remote_ops): Install remote_set_syscall_catchpoint.
10168 (_initialize_remote): Config QCatchSyscalls.
10169 * linux-nat.h (struct lwp_info) <syscall_state>: Comment typo.
10170
d18547d8
YQ
101712016-01-12 Yao Qi <yao.qi@linaro.org>
10172
10173 * nat/linux-ptrace.c (linux_child_function): Cast child_stack
10174 to gdb_byte * and pass to linux_fork_to_function.
10175
ba4dd7c4
YQ
101762016-01-12 Yao Qi <yao.qi@linaro.org>
10177
10178 * nat/linux-ptrace.c (linux_fork_to_function): Change type
10179 of argument 'function'.
10180 (linux_grandchild_function): Change return type to 'int'.
10181 Change child_stack's type to 'void *'.
10182 (linux_child_function): Likewise.
10183
bc504a31
PA
101842016-01-12 Pedro Alves <palves@redhat.com>
10185
10186 Remove use of the registered trademark symbol throughout.
10187
5eddd578
TS
101882016-01-12 Thomas Schwinge <thomas@codesourcery.com>
10189
10190 * reply_mig_hack.awk: Rewrite one regular expression.
10191
b835bb52
MF
101922016-01-11 Mike Frysinger <vapier@gentoo.org>
10193
10194 * acinclude.m4: Include new warning.m4 file.
10195 * configure: Regenerated.
10196 * configure.ac: Move all warning logic ...
10197 * warning.m4: ... here.
10198
2f99e8fc
YQ
101992016-01-08 Yao Qi <yao.qi@linaro.org>
10200
10201 * extension.c: Include target.h.
10202 (set_active_ext_lang): Only call install_gdb_sigint_handler,
10203 check_quit_flag, and set_quit_flag if target_terminal_is_ours
10204 returns false.
10205 (restore_active_ext_lang): Likewise.
10206 * target.c (target_terminal_is_ours): New function.
10207 * target.h (target_terminal_is_ours): Declare.
10208
5dd05630
MR
102092016-01-07 Maciej W. Rozycki <macro@imgtec.com>
10210
10211 * mips-tdep.c (mips_breakpoint_from_pc): Rename local `status'
10212 to `err' in the little-endian leg.
10213
f5aa3069
YQ
102142016-01-06 Yao Qi <yao.qi@linaro.org>
10215
10216 * arch/arm-get-next-pcs.c (arm_get_next_pcs): Move it to some
10217 lines below.
10218 (thumb_get_next_pcs_raw): Make it static.
10219 (arm_get_next_pcs_raw): Likewise.
10220 * arch/arm-get-next-pcs.h (thumb_get_next_pcs_raw): Remove the
10221 declaration.
10222 (arm_get_next_pcs_raw): Likewise.
10223
bf69ad5a
MF
102242016-01-05 Mike Frysinger <vapier@gentoo.org>
10225
10226 * version.in: Change cvs to git.
10227
66750332
MF
102282016-01-05 Mike Frysinger <vapier@gentoo.org>
10229
10230 * configure.tgt (score-*-*): Delete gdb_sim assignment.
10231
976102cd
PA
102322016-01-05 Pedro Alves <palves@redhat.com>
10233
10234 PR sim/13418
10235 * configure.ac: Define WITH_PPC_SIM when linking in the sim and
10236 the target is powerpc*.
fa89c126
PA
10237 * rs6000-tdep.c (init_sim_regno_table): Check WITH_PPC_SIM instead
10238 of WITH_SIM.
976102cd
PA
10239 * configure: Regenerate.
10240 * config.in: Regenerate.
10241
43368e1d
MM
102422016-01-04 Markus Metzger <markus.t.metzger@intel.com>
10243
10244 * btrace.c (btrace_pt_readmem_callback): Do not return in TRY/CATCH.
10245
32273fe6
MF
102462016-01-02 Mike Frysinger <vapier@gentoo.org>
10247
10248 * configure.tgt (powerpc*-*-*): Delete test call and
10249 always assign gdb_sim.
10250
618f726f
JB
102512016-01-01 Joel Brobecker <brobecker@adacore.com>
10252
10253 Update year range in copyright notice of all files.
10254
edd88788
JB
102552016-01-01 Joel Brobecker <brobecker@adacore.com>
10256
10257 * top.c (print_gdb_version): Change copyright year in version
10258 message.
10259
0f7b3ef4 102602016-01-01 Joel Brobecker <brobecker@adacore.com>
aec47d1d 10261
0f7b3ef4 10262 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2015.
aec47d1d 10263
0f7b3ef4 10264For older changes see ChangeLog-2015.
c906108c
SS
10265\f
10266Local Variables:
10267mode: change-log
10268left-margin: 8
10269fill-column: 74
10270version-control: never
57da7796 10271coding: utf-8
c906108c 10272End:
This page took 2.302831 seconds and 4 git commands to generate.