Change search_symbols to return std::vector
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2017-10-08 Tom Tromey <tom@tromey.com>
2
3 * symtab.c (free_search_symbols, do_free_search_symbols_cleanup)
4 (make_cleanup_free_search_symbols): Remove.
5 (search_symbols): Return std::vector.
6 (symbol_search::compare_search_syms): Now member of
7 symbol_search. Change arguments.
8 (sort_search_symbols_remove_dups): Change arguments. Rewrite.
9 (symtab_symbol_info, rbreak_command): Update.
10 * symtab.h (struct symbol_search) <next>: Remove.
11 Add constructors.
12 (symbol_search::operator<): New function.
13 (symbol_search::operator==): New function.
14 (search_symbols): Remove std::vector.
15 (free_search_symbols, make_cleanup_free_search_symbols): Remove.
16 (symbol_search::compare_search_syms): Declare.
17
18 2017-10-06 Yao Qi <yao.qi@linaro.org>
19
20 * Makefile.in (ALL_64_TARGET_OBS): Replace aarch64-insn.o with
21 arch/aarch64-insn.o.
22 Remove one rule.
23 * configure.tgt: Replace aarch64-insn.o with arch/aarch64-insn.o.
24
25 2017-10-06 Yao Qi <yao.qi@linaro.org>
26
27 * Makefile.in (ALL_TARGET_OBS): Replace arm.o, arm-get-next-pcs.o,
28 and arm-linux.o with arch/arm.o, arch/arm-get-next-pcs.o and
29 arch/arm-linux.o respectively.
30 * configure.tgt: Likewise.
31
32 2017-10-06 Yao Qi <yao.qi@linaro.org>
33
34 * Makefile.in (ALL_TARGET_OBS): Rename i386.o to arch/i386.o.
35 * configure.tgt (i386_tobjs): Replace i386.o with arch/i386.o.
36
37 2017-10-06 Pedro Alves <palves@redhat.com>
38
39 * windows-nat.c: Include <algorithm>.
40
41 2017-10-06 Yao Qi <yao.qi@linaro.org>
42
43 * configure.tgt (i386_tobjs): New variable.
44 (amd64_tobjs): New variable.
45 Set $cpu_obs and $os_obs.
46
47 2017-10-06 Yao Qi <yao.qi@linaro.org>
48
49 * Makefile.in (CONFIG_SRC_SUBDIR): New.
50 (ALL_64_TARGET_OBS): Replace amd64.o with arch/amd64.o.
51 (clean): Remove object files and dependency files.
52 (distclean): Remove the directory.
53 * configure.ac: Invoke AC_CONFIG_COMMANDS.
54 * configure: Re-generated.
55 * configure.tgt: Replace amd64.o with arch/amd64.o.
56
57 2017-10-05 Jose E. Marchesi <jose.marchesi@oracle.com>
58
59 PR build/22188
60 * arm-tdep.c (arm_decode_misc_memhint_neon): Fix decoding of CPS
61 and SETEND.
62
63 2017-10-05 Pedro Alves <palves@redhat.com>
64
65 * linux-nat.c (linux_child_follow_fork): When following the parent
66 and detaching the child, consult the parent thread's architecture
67 instead of the child's.
68
69 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
70
71 * ax.h: Do not include "doublest.h".
72 (union agent_val): Remove.
73
74 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
75
76 * dfp.h (MAX_DECIMAL_STRING): Move to dfp.c.
77 (decimal_to_string): Return std::string object.
78 (decimal_from_string): Accept std::string object. Return bool.
79 (decimal_from_integral, decimal_from_doublest): Remove.
80 (decimal_from_longest): Add prototype.
81 (decimal_from_ulongest): Likewise.
82 (decimal_to_longest): Likewise.
83 (decimal_from_doublest): Likewise.
84 * dfp.c: Do not include "gdbtypes.h" or "value.h".
85 (MAX_DECIMAL_STRING): Move here.
86 (decimal_to_string): Return std::string object.
87 (decimal_from_string): Accept std::string object. Return bool.
88 (decimal_from_integral): Remove, replace by ...
89 (decimal_from_longest, decimal_from_ulongest): ... these new functions.
90 (decimal_to_longest): New function.
91 (decimal_from_floating): Remove, replace by ...
92 (decimal_from_doublest): ... this new function.
93 (decimal_to_doublest): Update to new decimal_to_string interface.
94
95 * value.c (unpack_long): Use decimal_to_longest.
96 * valops.c (value_cast): Use decimal_from_doublest instead of
97 decimal_from_floating. Use decimal_from_[u]longest isntead of
98 decimal_from_integral.
99 * valarith.c (value_args_as_decimal): Likewise.
100 * valprint.c (print_decimal_floating): Update to new
101 decimal_to_string interface.
102 * printcmd.c (printf_decfloat): Likewise.
103 * c-exp.y (parse_number): Update to new decimal_from_string interface.
104
105 2017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
106
107 * doublest.h: Do not include "floatformat.h". Remove stale comments.
108 * gdbtypes.c: Include "floatformat.h".
109 * value.c: Likewise.
110 * m68k-tdep.c: Likewise.
111
112 * findvar.c: Do not include "floatformat.h".
113 * amd64-darwin-tdep.c: Likewise.
114 * arm-linux-tdep.c: Likewise.
115 * i386-darwin-tdep.c: Likewise.
116 * i387-tdep.c: Likewise.
117 * m68k-linux-tdep.c: Likewise.
118 * mep-tdep.c: Likewise.
119 * mips-tdep.c: Likewise.
120 * nios2-tdep.c: Likewise.
121 * s390-linux-tdep.c: Likewise.
122 * sparc-obsd-tdep.c: Likewise.
123 * sparc-tdep.c: Likewise.
124 * sparc64-tdep.c: Likewise.
125 * spu-tdep.c: Likewise.
126 * tic6x-tdep.c: Likewise.
127 * tilegx-tdep.c: Likewise.
128 * vax-tdep.c: Likewise.
129 * xstormy16-tdep.c: Likewise.
130 * xtensa-tdep.c: Likewise.
131
132 * top.c: Do not include "doublest.h".
133 * aarch64-tdep.c: Likewise.
134 * alpha-tdep.c: Likewise.
135 * arm-linux-tdep.c: Likewise.
136 * m68k-linux-tdep.c: Likewise.
137 * tilegx-tdep.c: Likewise.
138 * xstormy16-tdep.c: Likewise.
139
140 2017-10-05 John Baldwin <jhb@FreeBSD.org>
141
142 * mips-fbsd-tdep.c (MIPS_INST_ADDIU_A0_SP_N32): Define.
143 (mipsn32_fbsd_sigframe): Define.
144 (mips_fbsd_init_abi): Install mipsn32_fbsd_sigframe unwinder
145 for FreeBSD/mipsn32.
146
147 2017-10-05 John Baldwin <jhb@FreeBSD.org>
148
149 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_EHDRFLAGS and
150 AT_HWCAP.
151
152 2017-10-05 Tristan Gingold <tgingold@free.fr>
153
154 * MAINTAINERS (Misc): Update my email address.
155
156 2017-10-04 Pedro Alves <palves@redhat.com>
157
158 * remote.c (get_remote_arch_state): New 'gdbarch' parameter. Use
159 it instead of target_gdbarch.
160 (get_remote_state, get_remote_packet_size): Adjust
161 get_remote_arch_state calls, passing down target_gdbarch
162 explicitly.
163 (packet_reg_from_regnum, packet_reg_from_pnum): New parameter
164 'gdbarch' and use it instead of target_gdbarch.
165 (get_memory_packet_size): Adjust get_remote_arch_state calls,
166 passing down target_gdbarch explicitly.
167 (struct stop_reply) <arch>: New field.
168 (remote_parse_stop_reply): Use the stopped thread's architecture,
169 not the current inferior's. Save the architecture in the
170 stop_reply.
171 (process_stop_reply): Use the stop reply's architecture.
172 (process_g_packet, remote_fetch_registers)
173 (remote_prepare_to_store, store_registers_using_G)
174 (remote_store_registers): Adjust get_remote_arch_state calls,
175 using the regcache's architecture.
176 (remote_get_trace_status): Adjust get_remote_arch_state calls,
177 passing down target_gdbarch explicitly.
178 * spu-multiarch.c (spu_thread_architecture): Defer to the target
179 beneath instead of calling target_gdbarch.
180 * target.c (default_thread_architecture): Use the specified
181 inferior's architecture, instead of the current inferior's
182 architecture (via target_gdbarch).
183
184 2017-10-04 Pedro Alves <palves@redhat.com>
185
186 * regcache.c (get_thread_arch_regcache): Remove null_ptid special
187 case.
188 (regcache_print): Handle !target_has_registers here instead.
189
190 2017-10-04 Pedro Alves <palves@redhat.com>
191
192 * frame.c (create_test_frame): Delete.
193 * frame.h (create_test_frame): Delete.
194 * gdbarch-selftests.c: Include gdbthread.h and target.h.
195 (class regcache_test): Delete.
196 (test_target_has_registers, test_target_has_stack)
197 (test_target_has_memory, test_target_prepare_to_store)
198 (test_target_store_registers): New functions.
199 (test_target_ops): New class.
200 (register_to_value_test): Error out if there's already a
201 process_stratum (or higher) target pushed. Create a fuller mock
202 environment, with mock target_ops, inferior, address space, thread
203 and inferior_ptid.
204 * progspace.c (struct address_space): Move to ...
205 * progspace.h (struct address_space): ... here.
206 * regcache.h (regcache::~regcache, regcache::raw_write)
207 [GDB_SELF_TEST]: No longer virtual.
208
209 2017-10-04 Simon Marchi <simon.marchi@ericsson.com>
210
211 * mi/mi-main.c (list_available_thread_groups): Reverse filter logic.
212
213 2017-10-04 Pedro Alves <palves@redhat.com>
214
215 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Move code
216 out of 'between TRY and CATCH'.
217
218 2017-10-04 Pedro Alves <palves@redhat.com>
219
220 * cli/cli-cmds.c (complete_command): Add missing END_CATCH.
221 * common/common-exceptions.h (TRY): Open an outermost scope.
222 Expand intro comment.
223 (CATCH): Reindent.
224 (END_CATCH): Close the outermost scope.
225 * completer.c (complete_line_internal): Add missing END_CATCH.
226
227 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
228
229 * NEWS (Changes since GDB 8.0): Add entry about new
230 'set-cwd-on-gdbserver' feature.
231 (New remote packets): Add entry for QSetWorkingDir.
232 * common/common-inferior.h (set_inferior_cwd): New prototype.
233 * infcmd.c (set_inferior_cwd): Remove "static".
234 (show_cwd_command): Expand text to include remote debugging.
235 * remote.c: Add PACKET_QSetWorkingDir.
236 (remote_protocol_features) <QSetWorkingDir>: New entry for
237 PACKET_QSetWorkingDir.
238 (extended_remote_set_inferior_cwd): New function.
239 (extended_remote_create_inferior): Call
240 "extended_remote_set_inferior_cwd".
241 (_initialize_remote): Call "add_packet_config_cmd" for
242 QSetWorkingDir.
243
244 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
245
246 * NEWS (New commands): Mention "set/show cwd".
247 * cli/cli-cmds.c (_initialize_cli_cmds): Mention "set cwd" on
248 "cd" command's help text.
249 * common/common-inferior.h (get_inferior_cwd): New prototype.
250 * infcmd.c (inferior_cwd_scratch): New global variable.
251 (set_inferior_cwd): New function.
252 (get_inferior_cwd): Likewise.
253 (set_cwd_command): Likewise.
254 (show_cwd_command): Likewise.
255 (_initialize_infcmd): Add "set/show cwd" commands.
256 * inferior.h (class inferior) <cwd>: New field.
257 * nat/fork-inferior.c: Include "gdb_tilde_expand.h".
258 (fork_inferior): Change inferior's cwd before its execution.
259 * windows-nat.c (windows_create_inferior): Pass inferior's cwd
260 to CreateProcess.
261
262 2017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
263
264 * Makefile.in (SFILES): Add gdb_tilde_expand.c.
265 (HFILES_NO_SRCDIR): Add gdb_tilde_expand.h.
266 (COMMON_OBS): Add gdb_tilde_expand.o.
267 * common/gdb_tilde_expand.c: New file.
268 * common/gdb_tilde_expand.h: Likewise.
269
270 2017-10-03 Maciej W. Rozycki <macro@imgtec.com>
271
272 * gdbarch.sh (objfile): Remove duplicate declaration.
273 * gdbarch.h: Regenerate.
274
275 2017-10-03 Tom Tromey <tom@tromey.com>
276
277 * utils.c (internal_vproblem): Use string_vprintf.
278
279 2017-10-03 Tom Tromey <tom@tromey.com>
280
281 * printcmd.c (info_symbol_command): Use std::string.
282
283 2017-10-03 Tom Tromey <tom@tromey.com>
284
285 * top.c (gdb_safe_append_history): Use std::string.
286
287 2017-10-03 Tom Tromey <tom@tromey.com>
288
289 * event-top.c (stdin_event_handler): Update.
290 * main.c (captured_main_1): Update.
291 * top.h (make_delete_ui_cleanup): Remove.
292 (struct ui): Add constructor and destructor.
293 (new_ui, delete_ui): Remove.
294 * top.c (make_delete_ui_cleanup): Remove.
295 (new_ui_command): Use std::unique_ptr.
296 (delete_ui_cleanup): Remove.
297 (ui::ui): Rename from new_ui. Update.
298 (free_ui): Remove.
299 (ui::~ui): Rename from delete_ui. Update.
300
301 2017-10-03 Tom Tromey <tom@tromey.com>
302
303 * symfile.c (load_progress): Use gdb::byte_vector.
304
305 2017-10-03 Tom Tromey <tom@tromey.com>
306
307 * mi/mi-main.c (mi_cmd_trace_frame_collected): Remove unused
308 declaration.
309 * printcmd.c (x_command): Remove unused declaration.
310 * symfile.c (symbol_file_command): Remove unused declaration.
311
312 2017-10-03 Tom Tromey <tom@tromey.com>
313
314 * utils.c (internal_vproblem): Use std::string.
315 (defaulted_query): Likewise.
316
317 2017-10-03 Tom Tromey <tom@tromey.com>
318
319 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Update.
320 * top.c (execute_command_to_string): Update.
321 * utils.c (make_cleanup_restore_page_info): Remove.
322 (do_restore_page_info_cleanup): Remove.
323 (set_batch_flag_and_restore_page_info):
324 New.
325 (make_cleanup_restore_page_info): Remove.
326 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
327 (~set_batch_flag_and_restore_page_info): New
328 (make_cleanup_restore_uinteger): Remove.
329 (make_cleanup_restore_integer): Remove.
330 (struct restore_integer_closure): Remove.
331 (restore_integer): Remove.
332 * utils.h (struct set_batch_flag_and_restore_page_info): New
333 class.
334 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
335 (make_cleanup_restore_page_info): Remove.
336 (make_cleanup_restore_uinteger) Remove.
337 (make_cleanup_restore_integer) Remove.
338
339 2017-10-03 Tom Tromey <tom@tromey.com>
340
341 * record-full.h (record_full_gdb_operation_disable_set): Return
342 scoped_restore_tmpl<int>.
343 * infrun.c (adjust_pc_after_break): Update.
344 (handle_signal_stop): Update.
345 * record-full.c (record_full_gdb_operation_disable_set): Return
346 scoped_restore_tmpl<int>.
347 (record_full_wait_1, record_full_insert_breakpoint)
348 (record_full_remove_breakpoint, record_full_save)
349 (record_full_goto_insn): Update.
350
351 2017-10-02 Tom Tromey <tom@tromey.com>
352
353 PR rust/22236:
354 * rust-lang.c (rust_val_print_str): New function.
355 (val_print_struct): Call it.
356 (rust_subscript): Preserve name of slice type.
357
358 2017-10-02 Tom Tromey <tom@tromey.com>
359
360 * rust-lang.c (rust_subscript): Handle slices in
361 EVAL_AVOID_SIDE_EFFECTS case.
362
363 2017-10-02 Tom Tromey <tom@tromey.com>
364
365 * rust-lang.c (rust_slice_type_p): Recognize &str as a slice type.
366
367 2017-10-02 Tom Tromey <tom@tromey.com>
368
369 * rust-lang.h (rust_slice_type): Add "extern".
370
371 2017-10-02 Tom Tromey <tom@tromey.com>
372 Pedro Alves <palves@redhat.com>
373
374 * ada-lang.h (ada_exc_info::operator<): Make const.
375 (ada_exc_info::operator==): Make const.
376 * ada-lang.c (ada_exc_info::operator<, ada_exc_info::operator==):
377 Make const.
378
379 2017-09-29 Tom Tromey <tom@tromey.com>
380
381 * target.c (read_whatever_is_readable): Change type of "result".
382 Update.
383 (free_memory_read_result_vector): Remove.
384 (read_memory_robust): Change return type. Update.
385 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update. Use
386 bin2hex, std::string.
387 * target.h (memory_read_result_s): Remove typedef.
388 (free_memory_read_result_vector): Remove.
389 (read_memory_robust): Return std::vector.
390
391 2017-09-29 Tom Tromey <tom@tromey.com>
392
393 * mi/mi-main.c (captured_mi_execute_command): Use scope_restore.
394
395 2017-09-29 Tom Tromey <tom@tromey.com>
396
397 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Update.
398 * ada-lang.h (struct ada_exc_info): Remove typedef. Declare
399 operator< and operator==.
400 (ada_exceptions_list): Return a std::vector.
401 * ada-lang.c (ada_exc_info::operator<): Rename from
402 compare_ada_exception_info.
403 (ada_exc_info::operator==): New.
404 (sort_remove_dups_ada_exceptions_list): Change type of
405 "exceptions".
406 (ada_add_standard_exceptions, ada_add_exceptions_from_frame)
407 (ada_add_global_exceptions): Likewise.
408 (ada_exceptions_list_1): Return a std::vector.
409 (ada_exceptions_list): Likewise.
410
411 2017-09-29 Tom Tromey <tom@tromey.com>
412
413 * mi/mi-main.c (struct print_one_inferior_data) <inferiors>: Now a
414 'std::set *'.
415 (print_one_inferior): Update.
416 (free_vector_of_ints): Remove.
417 (list_available_thread_groups): Change "ids" to std::set.
418 (mi_cmd_list_thread_groups): Update.
419 (struct collect_cores_data) <core>: Now a std::set.
420 (collect_cores): Update.
421 (unique): Remove.
422 (print_one_inferior): Update.
423
424 2017-09-29 Tom Tromey <tom@tromey.com>
425
426 * mi/mi-main.c (mi_execute_cli_command): Use std::string.
427 (mi_execute_async_cli_command): Likewise.
428 (mi_cmd_trace_frame_collected): Use field_fmt.
429
430 2017-09-29 Tom Tromey <tom@tromey.com>
431
432 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Use
433 gdb::byte_vector.
434
435 2017-09-29 Tom Tromey <tom@tromey.com>
436
437 * mi/mi-parse.c (mi_parse): Remove unused declaration.
438
439 2017-09-29 Tom Tromey <tom@tromey.com>
440
441 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Don't copy "oarg".
442
443 2017-09-29 Tom Tromey <tom@tromey.com>
444
445 * varobj.h (varobj_gen_name): Return std::string.
446 * varobj.c (varobj_gen_name): Return std::string.
447 * mi/mi-cmd-var.c (mi_cmd_var_create): Use std::string.
448 (mi_cmd_var_delete): Don't copy "name".
449
450 2017-09-29 Tom Tromey <tom@tromey.com>
451
452 * mi/mi-cmd-break.c (mi_argv_to_format): Return std::string.
453 (mi_cmd_break_insert_1): Update.
454
455 2017-09-29 Tom Tromey <tom@tromey.com>
456
457 * target.h (make_scoped_defer_target_commit_resume): Update.
458 * target.c (make_scoped_defer_target_commit_resume): Rename from
459 make_cleanup_defer_target_commit_resume. Return a
460 scoped_restore.
461 * infrun.c (proceed): Use make_scoped_defer_target_commit_resume.
462
463 2017-09-29 Tom Tromey <tom@tromey.com>
464
465 * main.c (captured_main_1): Remove unused declaration.
466 * spu-multiarch.c (parse_spufs_run): Remove unused declaration.
467
468 2017-09-29 Tom Tromey <tom@tromey.com>
469
470 * symtab.c (search_symbols): Remove unused outer cleanup.
471 (make_source_files_completion_list): Remove unused declaration.
472
473 2017-09-29 Tom Tromey <tom@tromey.com>
474
475 * mt-tdep.c (mt_push_dummy_call): Use gdb::byte_vector.
476
477 2017-09-29 Tom Tromey <tom@tromey.com>
478
479 * xstormy16-tdep.c (xstormy16_push_dummy_call): Use
480 gdb::byte_vector.
481
482 2017-09-29 Tom Tromey <tom@tromey.com>
483
484 * complaints.c (vcomplaint): Use std::string.
485
486 2017-09-29 Tom Tromey <tom@tromey.com>
487
488 * tracepoint.c (trace_variable_command): Use std::string.
489 (encode_actions_1): Remove unused declarations.
490 (create_tsv_from_upload): Use std::string.
491
492 2017-09-29 Tom Tromey <tom@tromey.com>
493
494 * cp-support.c (gdb_demangle): Use std::string.
495
496 2017-09-29 Tom Tromey <tom@tromey.com>
497
498 * stack.c (parse_frame_specification): Use std::string
499 (info_frame_command): Use gdb::unique_xmalloc_ptr.
500
501 2017-09-29 Tom Tromey <tom@tromey.com>
502
503 * tilegx-tdep.c (tilegx_push_dummy_call): Use gdb::byte_vector.
504
505 2017-09-29 Tom Tromey <tom@tromey.com>
506
507 * utils.c (vfprintf_maybe_filtered): Use std::string.
508 (vfprintf_unfiltered): Likewise.
509
510 2017-09-29 Tom Tromey <tom@tromey.com>
511
512 * event-top.c (top_level_prompt): Return std::string.
513 (display_gdb_prompt): Update.
514
515 2017-09-29 Tom Tromey <tom@tromey.com>
516
517 * unittests/common-utils-selftests.c (format): New function.
518 (string_vprintf_tests): New function.
519 (_initialize_common_utils_selftests): Register new tests.
520 * common/common-utils.c (string_vprintf): New function.
521 * common/common-utils.h (string_vprintf): Declare.
522
523 2017-09-29 Pedro Alves <palves@redhat.com>
524
525 * common/rsp-low.c (unpack_varlen_hex): Constify.
526 * common/rsp-low.h (unpack_varlen_hex): Constify.
527 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
528 Constify.
529 * remote.c (remote_set_permissions, read_ptid)
530 (remote_current_thread, remote_get_threads_with_qthreadinfo)
531 (remote_static_tracepoint_marker_at)
532 (remote_static_tracepoint_markers_by_strid)
533 (stop_reply_extract_thread, remote_parse_stop_reply): Constify.
534 * tracepoint.c (parse_trace_status, parse_tracepoint_status)
535 (parse_tracepoint_definition, parse_tsv_definition)
536 (parse_static_tracepoint_marker_definition): Constify.
537 * tracepoint.h (parse_static_tracepoint_marker_definition)
538 (parse_trace_status, parse_tracepoint_status)
539 (parse_tracepoint_definition, parse_tsv_definition): Constify.
540
541 2017-09-29 Pedro Alves <palves@redhat.com>
542
543 * remote.c (target_buf, target_buf_size): Delete.
544 (remote_get_noisy_reply): Remove buf_p and sizeof_buf parameters.
545 Use the connection's packet buffer instead.
546 All callers adjusted.
547 (_initialize_remote): Remove references to target_buf and
548 target_buf_size.
549
550 2017-09-28 Pedro Alves <palves@redhat.com>
551
552 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
553 unittests/common-utils-selftests.c.
554 (SUBDIR_UNITTESTS_OBS): Add common-utils-selftests.o.
555 (COMMON_OBS): Remove utils-selftests.o.
556 * utils-selftests.c: Move to ...
557 * unittests/common-utils-selftests.c: ... here and rename self
558 test to "string_printf".
559
560 2017-09-28 Alexander Shaposhnikov <alexander.v.shaposhnikov@gmail.com> (tiny patch)
561
562 * dwarf2read.c (open_and_init_dwp_file): Protect against dwp_file
563 having NULL cus or tus.
564
565 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
566
567 * arm-tdep.c: (convert_from_extended): Remove.
568 (convert_to_extended): Likewise.
569 (arm_extract_return_value): Use convert_typed_floating.
570 (arm_store_return_value): Likewise.
571
572 * sh-tdep.h (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
573 * sh-tdep.c: Do not include "floatformat.h".
574 (sh_littlebyte_bigword_type): New function.
575 (sh_register_convert_to_virtual): Use convert_typed_floating.
576 (sh_register_convert_to_raw): Likewise.
577 * sh64-tdep.c: (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
578 (sh64_littlebyte_bigword_type): New function.
579 (sh64_extract_return_value): Use convert_typed_floating.
580 (sh64_register_convert_to_virtual): Likewise.
581 (sh64_register_convert_to_raw): Likewise.
582
583 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
584
585 * doublest.h (floatformat_from_type): Move to gdbtypes.h.
586 * doublest.c (floatformat_from_type): Move to gdbtypes.c.
587
588 * gdbtypes.h (union type_specific): Make field floatformat hold
589 just a single struct floatformat, not an array.
590 (floatformat_from_type): Move here.
591 * gdbtypes.c (floatformat_from_type): Move here. Update to
592 changed TYPE_FLOATFORMAT definition.
593 (verify_floatformat): Update to changed TYPE_FLOATFORMAT.
594 (recursive_dump_type): Likewise.
595 (init_float_type): Install correct floatformat for byte order.
596 (arch_float_type): Likewise.
597
598 2017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
599
600 * gdbtypes.c (init_type): Change incoming argument from
601 length-in-bytes to length-in-bits. Assert length is a
602 multiple of TARGET_CHAR_BITS.
603 (arch_type, arch_flags_type): Likewise.
604 (init_integer_type): Update call to init_type.
605 (init_character_type): Likewise.
606 (init_boolean_type): Likewise.
607 (init_float_type): Likewise.
608 (init_decfloat_type): Likewise.
609 (init_complex_type): Likewise.
610 (init_pointer_type): Likewise.
611 (objfile_type): Likewise.
612 (arch_integer_type): Update call to arch_type.
613 (arch_character_type): Likewise.
614 (arch_boolean_type): Likewise.
615 (arch_float_type): Likewise.
616 (arch_decfloat_type): Likewise.
617 (arch_complex_type): Likewise.
618 (arch_pointer_type): Likewise.
619 (gdbtypes_post_init): Likewise.
620
621 * dwarf2read.c (dwarf2_init_float_type): Update call to init_type.
622 (read_base_type): Likewise.
623 * mdebugread.c (basic_type): Likewise.
624 * stabsread.c (dbx_init_float_type): Likewise.
625 (rs6000_builtin_type): Likewise.
626 (read_range_type): Likewise. Also, fix call to init_integer_type
627 with erroneous length argument.
628
629 * ada-lang.c (ada_language_arch_info): Update call to arch_type.
630 * d-lang.c (build_d_types): Likewise.
631 * f-lang.c (build_fortran_types): Likewise.
632 * go-lang.c (build_go_types): Likewise.
633 * opencl-lang.c (build_opencl_types): Likewise.
634 * jit.c (finalize_symtab): Likewise.
635 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
636 (build_std_type_info_type): Likewise.
637 * target-descriptions.c (tdesc_gdb_type): Likewise. Also,
638 update call to arch_flags_type.
639
640 * linux-tdep.c (linux_get_siginfo_type_with_fields): Update call to
641 arch_type.
642 * fbsd-tdep.c (fbsd_get_siginfo_type): Likewise.
643 * windows-tdep.c (windows_get_tlb_type): Likewise.
644
645 * avr-tdep.c (avr_gdbarch_init): Update call to arch_type.
646 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
647 * m32c-tdep.c (make_types): Likewise.
648 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
649 (rl78_psw_type): Update call to arch_flags_type.
650 * m68k-tdep.c (m68k_ps_type): Update call to arch_flags_type.
651 * rx-tdep.c (rx_psw_type): Likewise.
652 (rx_fpsw_type): Likewise.
653 * sparc-tdep.c (sparc_psr_type): Likewise.
654 (sparc_fsr_type): Likewise.
655 * sparc64-tdep.c (sparc64_pstate_type): Likewise.
656 (sparc64_ccr_type): Likewise.
657 (sparc64_fsr_type): Likewise.
658 (sparc64_fprs_type): Likewise.
659
660 2017-09-27 Tom Tromey <tom@tromey.com>
661
662 * findcmd.c (find_command): Constify.
663
664 2017-09-27 Tom Tromey <tom@tromey.com>
665
666 * ada-tasks.c (task_command_1, task_command): Constify.
667
668 2017-09-27 Tom Tromey <tom@tromey.com>
669
670 * symtab.c (maintenance_print_symbol_cache)
671 (maintenance_flush_symbol_cache)
672 (maintenance_print_symbol_cache_statistics): Constify.
673
674 2017-09-27 Tom Tromey <tom@tromey.com>
675
676 * inferior.c (detach_inferior_command, kill_inferior_command)
677 (inferior_command): Constify.
678
679 2017-09-27 Tom Tromey <tom@tromey.com>
680
681 * regcache.c (regcache_print, maintenance_print_registers)
682 (maintenance_print_raw_registers)
683 (maintenance_print_cooked_registers)
684 (maintenance_print_register_groups)
685 (maintenance_print_remote_registers): Constify.
686
687 2017-09-27 Tom Tromey <tom@tromey.com>
688
689 * printcmd.c (map_display_numbers, undisplay_command)
690 (enable_disable_display_command, enable_display_command)
691 (disable_display_command): Constify.
692
693 2017-09-27 Tom Tromey <tom@tromey.com>
694
695 * breakpoint.h (delete_command): Don't declare.
696 * breakpoint.c (delete_command, enable_once_command)
697 (enable_count_command, enable_delete_command, breakpoint_1)
698 (maintenance_info_breakpoints, stopin_command, stopat_command)
699 (delete_command, delete_trace_command, save_breakpoints)
700 (save_breakpoints_command, save_tracepoints_command): Constify.
701
702 2017-09-27 Tom Tromey <tom@tromey.com>
703
704 * macrocmd.c (macro_expand_command, macro_expand_once_command)
705 (skip_ws, extract_identifier, macro_define_command)
706 (macro_undef_command, macro_list_command): Constify.
707
708 2017-09-27 Tom Tromey <tom@tromey.com>
709
710 * infcmd.c (environment_info, set_environment_command)
711 (unset_environment_command, path_info, info_proc_cmd_1)
712 (info_proc_cmd_mappings, info_proc_cmd_stat)
713 (info_proc_cmd_status, info_proc_cmd_cwd, info_proc_cmd_cmdline)
714 (info_proc_cmd_exe, info_proc_cmd_all): Constify.
715
716 2017-09-27 Tom Tromey <tom@tromey.com>
717
718 * i386-tdep.c (i386_mpx_info_bounds, i386_mpx_set_bounds):
719 Constify.
720
721 2017-09-27 Tom Tromey <tom@tromey.com>
722
723 * symfile-mem.c (add_symbol_file_from_memory_command): Constify.
724
725 2017-09-27 Tom Tromey <tom@tromey.com>
726
727 * demangle.c (demangle_command): Constify.
728
729 2017-09-27 Tom Tromey <tom@tromey.com>
730
731 * progspace.c (maintenance_info_program_spaces_command):
732 Constify.
733
734 2017-09-27 Tom Tromey <tom@tromey.com>
735
736 * compile/compile.c (check_raw_argument, compile_file_command)
737 (compile_code_command, compile_print_command): Constify.
738
739 2017-09-27 Tom Tromey <tom@tromey.com>
740
741 * reggroups.c (maintenance_print_reggroups): Constify.
742
743 2017-09-27 Tom Tromey <tom@tromey.com>
744
745 * dwarf2read.c (save_gdb_index_command): Constify.
746
747 2017-09-27 Tom Tromey <tom@tromey.com>
748
749 * stap-probe.c (info_probes_stap_command): Constify.
750
751 2017-09-27 Tom Tromey <tom@tromey.com>
752
753 * fork-child.c (unset_exec_wrapper_command): Constify.
754
755 2017-09-27 Tom Tromey <tom@tromey.com>
756
757 * btrace.c (get_uint, get_context_size, no_chunk)
758 (maint_btrace_packet_history_cmd)
759 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
760 (maint_info_btrace_cmd): Constify.
761
762 2017-09-27 Tom Tromey <tom@tromey.com>
763
764 * reverse.c (delete_bookmark_command): Constify.
765
766 2017-09-27 Tom Tromey <tom@tromey.com>
767
768 * remote.c (set_memory_packet_size)
769 (set_memory_write_packet_size, show_memory_write_packet_size)
770 (set_memory_read_packet_size, show_memory_read_packet_size)
771 (compare_sections_command, packet_command, remote_put_command)
772 (remote_get_command, remote_delete_command): Constify.
773
774 2017-09-27 Tom Tromey <tom@tromey.com>
775
776 * mips-tdep.c (show_mipsfpu_command, set_mipsfpu_single_command)
777 (set_mipsfpu_double_command, set_mipsfpu_none_command)
778 (set_mipsfpu_auto_command): Constify.
779
780 2017-09-27 Tom Tromey <tom@tromey.com>
781
782 * cli/cli-cmds.h (cd_command): Constify.
783 * cli/cli-cmds.c (cd_command): Constify.
784
785 2017-09-27 Tom Tromey <tom@tromey.com>
786
787 * thread.c (thread_name_command, thread_find_command): Constify.
788
789 2017-09-27 Tom Tromey <tom@tromey.com>
790
791 * probe.c (enable_probes_command, disable_probes_command):
792 Constify.
793
794 2017-09-27 Tom Tromey <tom@tromey.com>
795
796 * symfile.c (symbol_file_command): Constify.
797 * gdbcore.h (deprecated_file_changed_hook): Constify.
798 * exec.c (deprecated_file_changed_hook, exec_file_command)
799 (file_command): Constify.
800 * defs.h (symbol_file_command): Constify.
801
802 2017-09-27 Tom Tromey <tom@tromey.com>
803
804 * remote-fileio.c (set_system_call_allowed)
805 (show_system_call_allowed): Constify.
806
807 2017-09-27 Tom Tromey <tom@tromey.com>
808
809 * tracepoint.c (delete_trace_variable_command)
810 (tfind_end_command, tfind_start_command, tfind_pc_command)
811 (tfind_tracepoint_command, tfind_line_command)
812 (tfind_range_command, tfind_outside_command): Constify.
813
814 2017-09-27 Tom Tromey <tom@tromey.com>
815
816 * ax-gdb.c (maint_agent_printf_command, agent_command)
817 (agent_eval_command): Constify.
818
819 2017-09-27 Tom Tromey <tom@tromey.com>
820
821 * tracepoint.c (info_scope_command): Constify.
822 * python/python.c (gdbpy_decode_line): Constify.
823 * python/py-breakpoint.c (bppy_init): Constify.
824 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Constify.
825 * location.h: (new_linespec_location)
826 (string_to_event_location_basic, string_to_event_location):
827 Constify.
828 * location.c (new_linespec_location)
829 (string_to_event_location_basic, string_to_event_location):
830 Constify.
831 * linespec.h (decode_line_with_current_source)
832 (decode_line_with_last_displayed, linespec_lex_to_end): Constify.
833 * linespec.c (linespec_lex_to_end)
834 (decode_line_with_current_source)
835 (decode_line_with_last_displayed): Constify.
836 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x):
837 Constify.
838 * cli/cli-cmds.c (edit_command, list_command): Constify.
839 * breakpoint.h (until_break_command, watch_command_wrapper)
840 (awatch_command_wrapper, rwatch_command_wrapper)
841 (init_ada_exception_breakpoint): Constify.
842 * breakpoint.c (break_command_1, dprintf_command)
843 (break_range_command, watch_command_wrapper)
844 (rwatch_command_wrapper, awatch_command_wrapper)
845 (until_break_command, init_ada_exception_breakpoint)
846 (strace_marker_create_sals_from_location, trace_command)
847 (ftrace_command, strace_command, struct tracepoint): Constify.
848 * ax-gdb.c (agent_command_1): Constify.
849 * ada-lang.c (ada_exception_sal): Constify.
850
851 2017-09-27 Tom Tromey <tom@tromey.com>
852
853 * record.c (cmd_record_delete, cmd_record_stop, cmd_record_save)
854 (cmd_record_goto_begin, cmd_record_goto_end, get_insn_number)
855 (get_context_size, no_chunk, get_insn_history_modifiers)
856 (cmd_record_insn_history, get_call_history_modifiers)
857 (cmd_record_call_history): Constify.
858
859 2017-09-27 Tom Tromey <tom@tromey.com>
860
861 * source.c (show_substitute_path_command)
862 (unset_substitute_path_command, set_substitute_path_command):
863 Constify.
864
865 2017-09-27 Tom Tromey <tom@tromey.com>
866
867 * typeprint.c (maintenance_print_type): Constify.
868 * maint.c (maintenance_dump_me, maintenance_demangle)
869 (maintenance_time_display, maintenance_info_sections)
870 (maintenance_print_statistics, maintenance_deprecate)
871 (maintenance_undeprecate): Constify.
872 (maintenance_do_deprecate): Constify. Use std::string.
873 (maintenance_selftest): Constify.
874 * gdbtypes.h (maintenance_print_type): Constify.
875
876 2017-09-27 Tom Tromey <tom@tromey.com>
877
878 * hppa-tdep.c (unwind_command): Constify.
879
880 2017-09-27 Tom Tromey <tom@tromey.com>
881
882 * target-descriptions.c (unset_tdesc_filename_cmd)
883 (maint_print_c_tdesc_cmd, maintenance_check_xml_descriptions):
884 Constify.
885
886 2017-09-27 Tom Tromey <tom@tromey.com>
887
888 * dummy-frame.c (maintenance_print_dummy_frames): Constify.
889
890 2017-09-27 Tom Tromey <tom@tromey.com>
891
892 * tui/tui.c (tui_enable_command, tui_disable_command): Constify.
893
894 2017-09-27 Tom Tromey <tom@tromey.com>
895
896 * tui/tui-regs.c (tui_reg_command): Constify.
897
898 2017-09-27 Tom Tromey <tom@tromey.com>
899
900 * skip.c (skip_file_command, skip_function_command)
901 (skip_enable_command, skip_disable_command, skip_delete_command):
902 Constify.
903
904 2017-09-27 Tom Tromey <tom@tromey.com>
905
906 * record-btrace.c (cmd_record_btrace_bts_start)
907 (cmd_record_btrace_pt_start): Constify.
908
909 2017-09-27 Tom Tromey <tom@tromey.com>
910
911 * symmisc.c (maintenance_print_symbols)
912 (maintenance_print_msymbols, maintenance_print_objfiles)
913 (maintenance_info_symtabs, maintenance_check_symtabs)
914 (maintenance_expand_symtabs, maintenance_info_line_tables):
915 Constify.
916
917 2017-09-27 Tom Tromey <tom@tromey.com>
918
919 * top.c (new_ui_command): Constify.
920
921 2017-09-27 Tom Tromey <tom@tromey.com>
922
923 * symfile.c (add_symbol_file_command)
924 (remove_symbol_file_command, list_overlays_command)
925 (map_overlay_command, unmap_overlay_command)
926 (overlay_auto_command, overlay_manual_command)
927 (overlay_off_command, overlay_load_command): Constify.
928
929 2017-09-27 Tom Tromey <tom@tromey.com>
930
931 * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
932 (info_spu_mailbox_command, info_spu_dma_command)
933 (info_spu_proxydma_command): Constify.
934
935 2017-09-27 Tom Tromey <tom@tromey.com>
936
937 * cli/cli-logging.c (set_logging_on, set_logging_off): Constify.
938
939 2017-09-27 Tom Tromey <tom@tromey.com>
940
941 * cli/cli-script.c (user_defined_command): Constify.
942
943 2017-09-27 Tom Tromey <tom@tromey.com>
944
945 * cli/cli-dump.c (dump_memory_command, dump_value_command)
946 (dump_srec_memory, dump_srec_value, dump_ihex_memory)
947 (dump_ihex_value, dump_verilog_memory, dump_verilog_value)
948 (dump_tekhex_memory, dump_tekhex_value, dump_binary_memory)
949 (dump_binary_value, append_binary_memory, append_binary_value):
950 Constify.
951 (struct dump_context) <func>: Constify.
952 (add_dump_command): Update.
953
954 2017-09-27 Tom Tromey <tom@tromey.com>
955
956 * cli/cli-cmds.c (show_version, show_configuration)
957 (source_command, show_user): Constify.
958
959 2017-09-27 Tom Tromey <tom@tromey.com>
960
961 * target.c (maintenance_print_target_stack): Constify.
962
963 2017-09-27 Tom Tromey <tom@tromey.com>
964
965 * interps.c (interpreter_exec_cmd): Constify.
966
967 2017-09-27 Tom Tromey <tom@tromey.com>
968
969 * record-full.c (cmd_record_full_restore): Constify.
970
971 2017-09-27 Tom Tromey <tom@tromey.com>
972
973 * memattr.c (enable_mem_command, disable_mem_command)
974 (delete_mem_command): Constify.
975
976 2017-09-27 Tom Tromey <tom@tromey.com>
977
978 * value.c (show_convenience): Constify.
979
980 2017-09-27 Tom Tromey <tom@tromey.com>
981
982 * gdbcore.h (core_file_command): Update.
983 * corefile.c (core_file_command): Constify.
984
985 2017-09-27 Tom Tromey <tom@tromey.com>
986
987 * user-regs.c (maintenance_print_user_registers): Constify.
988
989 2017-09-27 Tom Tromey <tom@tromey.com>
990
991 * cp-namespace.c (maintenance_cplus_namespace): Constify.
992
993 2017-09-27 Tom Tromey <tom@tromey.com>
994
995 * cp-support.c (first_component_command): Constify.
996
997 2017-09-27 Tom Tromey <tom@tromey.com>
998
999 * psymtab.c (maintenance_print_psymbols)
1000 (maintenance_info_psymtabs, maintenance_check_psymtabs):
1001 Constify.
1002
1003 2017-09-27 Tom Tromey <tom@tromey.com>
1004
1005 * windows-tdep.c (display_tib): Constify.
1006
1007 2017-09-27 Tom Tromey <tom@tromey.com>
1008
1009 * linux-fork.c (delete_checkpoint_command)
1010 (detach_checkpoint_command): Constify.
1011
1012 2017-09-27 Tom Tromey <tom@tromey.com>
1013
1014 * cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
1015
1016 2017-09-27 Tom Tromey <tom@tromey.com>
1017
1018 * arc-tdep.c (dump_arc_instruction_command): Constify.
1019
1020 2017-09-27 Tom Tromey <tom@tromey.com>
1021
1022 * valprint.c (set_radix, show_radix): Constify.
1023
1024 2017-09-27 Tom Tromey <tom@tromey.com>
1025
1026 * dtrace-probe.c (info_probes_dtrace_command): Constify.
1027
1028 2017-09-27 Tom Tromey <tom@tromey.com>
1029
1030 * command.h (not_just_help_class_command): Update.
1031 * cli/cli-decode.h (not_just_help_class_command): Update.
1032 * cli/cli-decode.c (not_just_help_class_command): Constify.
1033
1034 2017-09-27 Tom Tromey <tom@tromey.com>
1035
1036 * gdb_bfd.c (maintenance_info_bfds): Constify.
1037
1038 2017-09-27 Tom Tromey <tom@tromey.com>
1039
1040 * cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
1041 overloads.
1042 (do_add_cmd): Rename from add_cmd. Don't call set_cmd_cfunc.
1043 (do_const_cfunc): New function.
1044 (cmd_cfunc_eq): New overload.
1045 (cli_user_command_p): Check do_const_cfunc.
1046 * cli/cli-decode.h (struct cmd_list_element) <function>: New field
1047 const_cfunc.
1048 * command.h (add_cmd): Add const overload and no-function
1049 overload.
1050 (set_cmd_cfunc): Add const overload.
1051 (cmd_const_cfunc_ftype): Declare.
1052 (cmd_cfunc_eq): Add const overload.
1053 * breakpoint.c, cli-cmds.c, cli-dump.c, guile/scm-cmd.c,
1054 python/py-cmd.c, target.c, tracepoint.c: Use no-function add_cmd
1055 overload.
1056
1057 2017-09-27 Tom Tromey <tom@tromey.com>
1058
1059 * macroexp.c (get_next_token_for_substitution): New function.
1060 (substitute_args): Call it. Check for __VA_OPT__.
1061
1062 2017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
1063 Pedro Alves <palves@redhat.com>
1064
1065 * dwarf2read.c (dwarf2_cu): Remove field producer_is_icc and add
1066 producer_is_icc_lt_14.
1067 (producer_is_icc_lt_14): New function.
1068 (check_producer): Add code for checking version of ICC.
1069 (producer_is_icc): Move to producer.c.
1070 (read_structure_type): Restrict ICC workaround to ICC<14.
1071 * producer.c: Include selftest.h.
1072 (producer_is_icc, producer_parsing_tests, _initialize_producer):
1073 New functions.
1074 * producer.h (producer_is_icc): New declaration.
1075
1076 2017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
1077
1078 * Makefile.in (SFILES): Add producer.c.
1079 (COMMON_OBS): Add producer.o
1080 * amd64-tdep.c (producer.h): Add new include.
1081 * dwarf2read.c (producer.h): Add new include.
1082 * producer.c: New file.
1083 * producer.h: New file.
1084 * utils.c (producer_is_gcc, producer_is_gcc_ge_4): Move to
1085 producer.c.
1086 * utils.h (producer_is_gcc, producer_is_gcc_ge_4): Move to
1087 producer.h.
1088
1089 2017-09-26 Matthias Klose <doko@ubuntu.com>
1090
1091 * configure.ac: Search ncursesw before ncurses.
1092 Check ncursesw/ncurses.h before ncurses/ncurses.h.
1093 * gdb_curses.h: Include <ncursesw/ncurses.h>
1094 * config.in, configure: Regenerate.
1095
1096 2017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1097
1098 PR gdb/22185
1099 * configure.host <*-*-solaris2.[01], *-*-solaris2.[2-9]*>: Mark as
1100 obsolete.
1101 Use gdb_host sol2 for i[34567]86-*-solaris2*, x86_64-*-solaris2*.
1102 Remove i386sol2 support.
1103 * configure.nat <i386sol2>: Remove.
1104 <sol2-64>: Fold into ...
1105 <sol2>: ... this.
1106 Move common settings to default section.
1107 Add sol-thread.o.
1108 * configure.tgt <i[34567]86-*-solaris2.1[0-9]*,
1109 x86_64-*-solaris2.1[0-9]*>: Rename to ...
1110 <i[34567]86-*-solaris2*, x86_64-*-solaris2*>: ... this.
1111 <i[34567]86-*-solaris*>: Remove.
1112 <sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*>: Remove.
1113
1114 * configure.ac: Remove wctype in libw check.
1115 (_MSE_INT_H): Don't define on Solaris 7-9.
1116 <solaris*>: Remove libthread_db.so.1 check.
1117 * configure: Regenerate.
1118 * config.in: Regenerate.
1119
1120 * proc-service.c: Remove PROC_SERVICE_IS_OLD handling.
1121 (gdb_ps_prochandle_t, gdb_ps_read_buf_t, gdb_ps_write_buf_t)
1122 (gdb_ps_size_t): Remove.
1123 Use base types in users.
1124 * sol-thread.c: Likewise, also for gdb_ps_addr_t.
1125
1126 * NEWS (Changes since GDB 8.0): Document Solaris 2.0-9 removal.
1127
1128 2017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1129
1130 PR build/22206
1131 * sparc64-tdep.c (adi_tag_fd): Print pid as long.
1132 (adi_is_addr_mapped): Likewise.
1133 (PSR_ICC): Don't redefine.
1134 (PSR_IMPL): Likewise.
1135
1136 2017-09-25 Tom Tromey <tom@tromey.com>
1137
1138 * regcache.c (regcache::dump): Use string_printf.
1139
1140 2017-09-25 Tom Tromey <tom@tromey.com>
1141
1142 * regcache.c (class regcache_invalidator): New.
1143 (struct register_to_invalidate): Remove.
1144 (make_cleanup_regcache_invalidate): Remove.
1145 (regcache::raw_write): Use regcache_invalidator.
1146
1147 2017-09-25 Tom Tromey <tom@tromey.com>
1148
1149 * spu-tdep.c (spu2ppu_sniffer): Update.
1150 * regcache.h (make_cleanup_regcache_xfree): Don't declare.
1151 * regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
1152 Remove.
1153 * ppc-linux-tdep.c (ppu2spu_sniffer): Update.
1154 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
1155 * frame.h (frame_save_as_regcache): Return std::unique_ptr.
1156 * frame.c (frame_save_as_regcache): Return std::unique_ptr.
1157 (frame_pop): Update.
1158
1159 2017-09-25 Tom Tromey <tom@tromey.com>
1160
1161 * spu-tdep.c (spu2ppu_dealloc_cache): Use delete.
1162 * regcache.h (regcache_xfree): Don't declare.
1163 * regcache.c (regcache_xfree): Remove.
1164 (do_regcache_xfree): Use delete.
1165 * ppc-linux-tdep.c (ppu2spu_dealloc_cache): Use delete.
1166 * linux-fork.c (free_fork): Use delete.
1167 (fork_save_infrun_state): Likewise.
1168 * jit.c (jit_dealloc_cache): Use delete.
1169 * infrun.c (discard_infcall_suspend_state): Use delete.
1170
1171 2017-09-25 Tom Tromey <tom@tromey.com>
1172
1173 * regcache.h (regcache_xmalloc): Don't declare.
1174 (regcache_raw_set_cached_value): Update comment.
1175 * regcache.c (regcache_xmalloc): Remove.
1176 * ppc-linux-tdep.c (ppu2spu_sniffer): Use new.
1177 * jit.c (jit_frame_sniffer): Use new.
1178 * frame.c (frame_save_as_regcache): Use new.
1179
1180 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1181
1182 * NEWS: Advertise support for guarded-storage registers on IBM z.
1183
1184 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1185
1186 * s390-linux-nat.c (have_regset_gs): New static variable.
1187 (s390_linux_fetch_inferior_registers): Handle guarded-storage
1188 control block and guarded-storage broadcast control regsets.
1189 (s390_read_description): Detect whether the target has
1190 guarded-storage support, return appropriate tdesc.
1191 * s390-linux-tdep.c (features/s390-gs-linux64.c): New include.
1192 (features/s390x-gs-linux64.c): Likewise.
1193 (struct gdbarch_tdep) <have_gs>: New field.
1194 (s390_regmap_gs, s390_regmap_gsbc, s390_gs_regset)
1195 (s390_gsbc_regset): New variables.
1196 (s390_iterate_over_regset_sections): Iterate over s390_gs_regset
1197 and s390_gsbc_regset, if applicable.
1198 (s390_core_read_description): Check whether core file was from a
1199 target with guarded-storage support; include appropriate regsets.
1200 (s390_gdbarch_init): Add registers for guarded-storage support.
1201 (_initialize_s390_tdep): Initialize new target descriptions that
1202 include registers for guarded-storage support.
1203 * s390-linux-tdep.h (HWCAP_S390_GS, S390_GSD_REGNUM)
1204 (S390_GSSM_REGNUM, S390_GSEPLA_REGNUM)
1205 (S390_BC_GSD_REGNUM, S390_BC_GSSM_REGNUM): New defines.
1206 (S390_NUM_REGS): Adjust macro definition.
1207 (s390_gs_regset, s390_gsbc_regset, tdesc_s390_gs_linux64)
1208 (tdesc_s390x_gs_linux64): New declarations.
1209
1210 2017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1211
1212 * features/s390-gs-linux64.xml: New file.
1213 * features/s390-gs.xml: New file.
1214 * features/s390-gsbc.xml: New file.
1215 * features/s390x-gs-linux64.xml: New file.
1216 * features/Makefile (WHICH): Add s390-gs-linux64 and
1217 s390x-gs-linux64.
1218 (s390-gs-linux64-expedite, s390x-gs-linux64-expedite): New macros.
1219 (XMLTOC): Add s390-gs-linux64.xml and s390x-linux64.xml.
1220 * features/s390-gs-linux64.c: New generated file.
1221 * features/s390x-gs-linux64.c: New file.
1222 * regformats/s390-gs-linux64.dat: New file.
1223 * regformats/s390x-gs-linux64.dat: New file.
1224
1225 2017-09-23 Tom Tromey <tom@tromey.com>
1226
1227 * defs.h (make_cleanup_override_quit_handler): Don't declare.
1228
1229 2017-09-22 Tom Tromey <tom@tromey.com>
1230
1231 * utils.c (class scoped_input_handler) <m_quit_handler>: Change
1232 type to scoped_restore_tmpl.
1233 <scoped_input_handler>: Initialize m_quit_handler directly.
1234
1235 2017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
1236
1237 * cli/cli-cmds.c (pwd_command): Use "getcwd (NULL, 0)".
1238 (cd_command): Likewise. Free "current_directory" before
1239 assigning to it.
1240 * main.c (captured_main_1): Use "getcwd (NULL, 0)".
1241 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
1242 * top.c (gdb_dirbuf): Remove global declaration.
1243 * top.h (gdb_dirbuf): Likewise.
1244
1245 2017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
1246
1247 * gnulib/aclocal.m4: Regenerate.
1248 * gnulib/config.in: Regenerate.
1249 * gnulib/configure: Regenerate.
1250 * gnulib/import/Makefile.am: Regenerate.
1251 * gnulib/import/Makefile.in: Regenerate.
1252 * gnulib/import/assure.h: New file.
1253 * gnulib/import/at-func.c: Likewise
1254 * gnulib/import/chdir-long.c: New file.
1255 * gnulib/import/chdir-long.h: New file.
1256 * gnulib/import/cloexec.c: New file.
1257 * gnulib/import/cloexec.h: New file.
1258 * gnulib/import/close.c: New file.
1259 * gnulib/import/closedir.c: New file.
1260 * gnulib/import/dirent-private.h: New file.
1261 * gnulib/import/dup-safer.c: New file.
1262 * gnulib/import/dup.c: New file.
1263 * gnulib/import/dup2.c: New file.
1264 * gnulib/import/error.c: New file.
1265 * gnulib/import/error.h: New file.
1266 * gnulib/import/exitfail.c: New file.
1267 * gnulib/import/exitfail.h: New file.
1268 * gnulib/import/fchdir.c: New file.
1269 * gnulib/import/fcntl.c: New file.
1270 * gnulib/import/fcntl.in.h: New file.
1271 * gnulib/import/fd-hook.c: New file.
1272 * gnulib/import/fd-hook.h: New file.
1273 * gnulib/import/fd-safer.c: New file.
1274 * gnulib/import/fdopendir.c: New file.
1275 * gnulib/import/filename.h: New file.
1276 * gnulib/import/filenamecat-lgpl.c: New file.
1277 * gnulib/import/filenamecat.h: New file.
1278 * gnulib/import/fstat.c: New file.
1279 * gnulib/import/fstatat.c: New file.
1280 * gnulib/import/getcwd-lgpl.c: New file.
1281 * gnulib/import/getcwd.c: New file.
1282 * gnulib/import/getdtablesize.c: New file.
1283 * gnulib/import/getlogin_r.c: New file.
1284 * gnulib/import/getprogname.c: New file.
1285 * gnulib/import/getprogname.h: New file.
1286 * gnulib/import/gettext.h: New file.
1287 * gnulib/import/glob-libc.h: New file.
1288 * gnulib/import/glob.c: New file.
1289 * gnulib/import/glob.in.h: New file.
1290 * gnulib/import/intprops.h: New file.
1291 * gnulib/import/m4/chdir-long.m4: New file.
1292 * gnulib/import/m4/close.m4: New file.
1293 * gnulib/import/m4/closedir.m4: New file.
1294 * gnulib/import/m4/d-ino.m4: New file.
1295 * gnulib/import/m4/d-type.m4: New file.
1296 * gnulib/import/m4/dup.m4: New file.
1297 * gnulib/import/m4/dup2.m4: New file.
1298 * gnulib/import/m4/error.m4: New file.
1299 * gnulib/import/m4/fchdir.m4: New file.
1300 * gnulib/import/m4/fcntl.m4: New file.
1301 * gnulib/import/m4/fcntl_h.m4: New file.
1302 * gnulib/import/m4/fdopendir.m4: New file.
1303 * gnulib/import/m4/filenamecat.m4: New file.
1304 * gnulib/import/m4/fstat.m4: New file.
1305 * gnulib/import/m4/fstatat.m4: New file.
1306 * gnulib/import/m4/getcwd-abort-bug.m4: New file.
1307 * gnulib/import/m4/getcwd-path-max.m4: New file.
1308 * gnulib/import/m4/getcwd.m4: New file.
1309 * gnulib/import/m4/getdtablesize.m4: New file.
1310 * gnulib/import/m4/getlogin_r.m4: New file.
1311 * gnulib/import/m4/getprogname.m4: New file.
1312 * gnulib/import/m4/glob.m4: New file.
1313 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1314 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1315 * gnulib/import/m4/mempcpy.m4: New file.
1316 * gnulib/import/m4/memrchr.m4: New file.
1317 * gnulib/import/m4/mode_t.m4: New file.
1318 * gnulib/import/m4/msvc-inval.m4: New file.
1319 * gnulib/import/m4/msvc-nothrow.m4: New file.
1320 * gnulib/import/m4/open.m4: New file.
1321 * gnulib/import/m4/openat.m4: New file.
1322 * gnulib/import/m4/opendir.m4: New file.
1323 * gnulib/import/m4/readdir.m4: New file.
1324 * gnulib/import/m4/realloc.m4: New file.
1325 * gnulib/import/m4/rewinddir.m4: New file.
1326 * gnulib/import/m4/save-cwd.m4: New file.
1327 * gnulib/import/m4/strdup.m4: New file.
1328 * gnulib/import/m4/strerror.m4: New file.
1329 * gnulib/import/m4/unistd-safer.m4: New file.
1330 * gnulib/import/mempcpy.c: New file.
1331 * gnulib/import/memrchr.c: New file.
1332 * gnulib/import/msvc-inval.c: New file.
1333 * gnulib/import/msvc-inval.h: New file.
1334 * gnulib/import/msvc-nothrow.c: New file.
1335 * gnulib/import/msvc-nothrow.h: New file.
1336 * gnulib/import/open.c: New file.
1337 * gnulib/import/openat-die.c: New file.
1338 * gnulib/import/openat-priv.h: New file.
1339 * gnulib/import/openat-proc.c: New file.
1340 * gnulib/import/openat.c: New file.
1341 * gnulib/import/openat.h: New file.
1342 * gnulib/import/opendir.c: New file.
1343 * gnulib/import/pipe-safer.c: New file.
1344 * gnulib/import/readdir.c: New file.
1345 * gnulib/import/realloc.c: New file.
1346 * gnulib/import/rewinddir.c: New file.
1347 * gnulib/import/save-cwd.c: New file.
1348 * gnulib/import/save-cwd.h: New file.
1349 * gnulib/import/strdup.c: New file.
1350 * gnulib/import/strerror-override.c: New file.
1351 * gnulib/import/strerror-override.h: New file.
1352 * gnulib/import/strerror.c: New file.
1353 * gnulib/import/unistd--.h: New file.
1354 * gnulib/import/unistd-safer.h: New file.
1355 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1356 "getcwd" and "glob".
1357 * ser-tcp.c: Undefine "close" before redefining it.
1358
1359 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
1360
1361 * guile/scm-value.c (gdbscm_value_address): Initialize address,
1362 get rid of res_val.
1363
1364 2017-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1365
1366 * configure.nat <i386sol2,i386>: Add fork-inferior.o to NATDEPFILES.
1367 <sol2,sparc>: Likewise.
1368 <sol2-64,i386>: Likewise.
1369
1370 * warning.m4 (AM_GDB_WARNINGS): Disable -Wunknown-pragmas,
1371 -Wdeprecated-declarations on *-*-solaris*.
1372 * configure: Regenerate.
1373
1374 * procfs.c: Include "nat/inferior.h".
1375 (procfs_info_proc): Fix typo.
1376
1377 2017-09-21 Kevin Buettner <kevinb@redhat.com>
1378
1379 * remote.c (vector): Include.
1380 (struct private_thread_info): Add field, thread_handle.
1381 (free_private_thread_info): Deallocate storage associated with
1382 thread handle.
1383 (get_private_info_thread): Initialize `thread_handle' field.
1384 (struct thread_item): Add field, thread_handle.
1385 (clear_threads_listing_context): Deallocate storage associated
1386 with thread handle.
1387 (start_thread): Add support for "handle" attribute.
1388 (thread_attributes): Add "handle".
1389 (remote_get_threads_with_qthreadinfo): Initialize thread_handle
1390 field.
1391 (remote_update_thread_list): Update thread_handle.
1392 (remote_thread_handle_to_thread_info): New function.
1393 (init_remote_ops): Initialize to_thread_handle_to_thread_info.
1394
1395 2017-09-21 Kevin Buettner <kevinb@redhat.com>
1396
1397 * python/py-inferior.c (gdbpy_thread_from_thread_handle): New
1398 function.
1399 (inferior_object_methods): Add gdbpy_thread_from_thread_handle.
1400 * python/python-internal.h (thread_object_type): Declare.
1401
1402 2017-09-21 Kevin Buettner <kevinb@redhat.com>
1403
1404 * target.h (struct target_ops): Add to_thread_handle_to_thread_info.
1405 (target_thread_handle_to_thread_info): Declare.
1406 * target.c (target_thread_handle_to_thread_info): New function.
1407 * target-delegates.c: Regenerate.
1408 * gdbthread.h (find_thread_by_handle): Declare.
1409 * thread.c (find_thread_by_handle): New function.
1410 * linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
1411 function.
1412 (init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
1413
1414 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
1415
1416 * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
1417
1418 2017-09-21 Simon Marchi <simon.marchi@ericsson.com>
1419
1420 * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
1421
1422 2017-09-21 Yao Qi <yao.qi@linaro.org>
1423
1424 * configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
1425 to gdb_target_obs.
1426
1427 2017-09-20 Tom Tromey <tom@tromey.com>
1428
1429 * breakpoint.c (struct counted_command_line): Remove.
1430 (breakpoint_commands): Update.
1431 (alloc_counted_command_line, incref_counted_command_line)
1432 (decref_counted_command_line, do_cleanup_counted_command_line)
1433 (make_cleanup_decref_counted_command_line): Remove.
1434 (breakpoint_set_commands, commands_command_1, ~bpstats, bpstats)
1435 (bpstat_clear_actions, bpstat_do_actions_1, watchpoint_check)
1436 (bpstat_stop_status, print_one_breakpoint_location, ~breakpoint)
1437 (save_breakpoints): Update.
1438 * breakpoint.h (counted_command_line): Now a typedef to
1439 shared_ptr.
1440 (struct breakpoint) <commands>: Now a counted_command_line.
1441 (struct bpstats) <command>: Likewise.
1442
1443 2017-09-20 Tom Tromey <tom@tromey.com>
1444
1445 * breakpoint.c (struct commands_info, do_map_commands_command):
1446 Remove.
1447 (commands_command_1): Update.
1448 (iterate_over_related_breakpoints): Take a function_view.
1449 (do_delete_breakpoint, do_map_delete_breakpoint): Remove.
1450 (delete_command): Update.
1451 (map_breakpoint_numbers): Take a function_view.
1452 (do_disable_breakpoint, do_map_delete_breakpoint): Remove.
1453 (disable_command): Update.
1454 (do_enable_breakpoint, do_map_enable_breakpoint): Remove.
1455 (enable_command): Update.
1456 (struct disp_data, do_enable_breakpoint_disp)
1457 (do_map_enable_once_breakpoint, do_map_enable_count_breakpoint)
1458 (do_map_enable_delete_breakpoint): Remove.
1459 (enable_once_command, enable_count_command, enable_delete_command)
1460 (delete_trace_variable_command): Update.
1461
1462 2017-09-20 Tom Tromey <tom@tromey.com>
1463
1464 * breakpoint.c (~bpstats): Rename from bpstat_free. Update.
1465 (bpstat_clear): Use delete.
1466 (bpstats): New constructors.
1467 (bpstat_copy, bpstat_stop_status): Use new.
1468 (dprintf_after_condition_true): Update.
1469 * breakpoint.h (bpstats::bpstats): Add constructors.
1470 (bpstats::~bpstats): Add destructor.
1471
1472 2017-09-20 Pedro Alves <palves@redhat.com>
1473
1474 * eval.c (make_params): Delete, refactored as ...
1475 (class fake_method): ... this new type's ctor.
1476 (fake_method::~fake_method): New.
1477 (evaluate_subexp_standard): Use 'fake_method'.
1478
1479 2017-09-20 Tom Tromey <tom@tromey.com>
1480
1481 * windows-nat.c (get_windows_debug_event, windows_wait)
1482 (do_initial_windows_stuff, windows_attach): Update.
1483 * utils.c (vwarning, internal_vproblem): Update.
1484 (ui_unregister_input_event_handler_cleanup)
1485 (prepare_to_handle_input): Remove.
1486 (class scoped_input_handler): New.
1487 (defaulted_query, prompt_for_continue): Update.
1488 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
1489 Update.
1490 * top.c (undo_terminal_modifications_before_exit): Update.
1491 * target/target.h (target_terminal_init, target_terminal_inferior)
1492 (target_terminal_ours): Don't declare.
1493 (class target_terminal): New.
1494 * target.h (target_terminal_is_inferior, target_terminal_is_ours)
1495 (target_terminal_ours_for_output)
1496 (make_cleanup_restore_target_terminal): Don't declare.
1497 (target_terminal_info): Remove.
1498 * target.c (enum terminal_state, terminal_state): Remove.
1499 (target_terminal::terminal_state): Define.
1500 (target_terminal::init): Rename from target_terminal_init.
1501 (target_terminal::inferior): Rename from
1502 target_terminal_inferior.
1503 (target_terminal::ours): Rename from target_terminal_ours.
1504 (target_terminal::ours_for_output): Rename from
1505 target_terminal_ours_for_output.
1506 (target_terminal::info): New method.
1507 (cleanup_restore_target_terminal)
1508 (make_cleanup_restore_target_terminal): Remove.
1509 * solib.c (handle_solib_event): Update.
1510 * remote.c (remote_serial_quit_handler): Update.
1511 (remote_terminal_inferior, remote_wait_as): Update.
1512 * record-full.c (record_full_wait_1): Update.
1513 * nto-procfs.c (procfs_create_inferior): Update.
1514 * nat/fork-inferior.c (startup_inferior): Update.
1515 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
1516 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
1517 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
1518 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
1519 (mi_breakpoint_created, mi_breakpoint_deleted)
1520 (mi_breakpoint_modified, mi_on_resume, mi_solib_loaded)
1521 (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
1522 (mi_user_selected_context_changed, report_initial_inferior):
1523 Update.
1524 * linux-nat.c (linux_nat_attach, linux_nat_terminal_ours)
1525 (linux_nat_terminal_inferior): Update.
1526 * infrun.c (follow_fork_inferior)
1527 (handle_vfork_child_exec_or_exit, do_target_resume)
1528 (check_curr_ui_sync_execution_done, handle_inferior_event_1)
1529 (handle_signal_stop, maybe_remove_breakpoints, normal_stop):
1530 Update.
1531 * inflow.c (child_terminal_init, info_terminal_command): Update.
1532 * infcmd.c (post_create_inferior, continue_1, prepare_one_step)
1533 (attach_command): Update.
1534 * infcall.c (call_thread_fsm_should_stop): Update.
1535 * gnu-nat.c (gnu_attach): Update.
1536 * extension.c (struct active_ext_lang_state)
1537 (restore_active_ext_lang): Update.
1538 * exceptions.c (print_flush): Update.
1539 * event-top.c (async_enable_stdin, default_quit_handler): Update.
1540 (struct quit_handler_cleanup_data, restore_quit_handler)
1541 (restore_quit_handler_dtor, make_cleanup_override_quit_handler):
1542 Remove.
1543 * cp-support.c (gdb_demangle): Update.
1544 * breakpoint.c (update_inserted_breakpoint_locations)
1545 (insert_breakpoint_locations, handle_jit_event)
1546 (disable_breakpoints_in_unloaded_shlib): Update.
1547 * annotate.c (annotate_breakpoints_invalid)
1548 (annotate_frames_invalid): Update.
1549
1550 2017-09-20 Tom Tromey <tom@tromey.com>
1551
1552 * main.c (catch_command_errors): Rename from
1553 catch_command_errors_const.
1554 (captured_main_1): Update.
1555
1556 2017-09-20 Pedro Alves <palves@redhat.com>
1557
1558 * cli/cli-cmds.c (list_command): Use print_sal_location.
1559 (print_sal_location): New function.
1560 (ambiguous_line_spec): Use print_sal_location.
1561 * linespec.c (symbol_to_sal): Record the symbol in the sal.
1562 * symtab.c (find_function_start_sal): Likewise.
1563 * symtab.h (symtab_and_line::symbol): New field.
1564
1565 2017-09-20 Pedro Alves <palves@redhat.com>
1566
1567 * linespec.c (minsym_found): Handle non-text minsyms.
1568 (symbol_to_sal): Record a sal.pc for non-block, non-label symbols.
1569
1570 2017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
1571
1572 * features/Makefile (i386-avx-mpx-avx512-pku.dat): Add missing
1573 backslash.
1574
1575 2017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
1576
1577 * gdb.arch/i386-avx512.c (move_zmm_data_to_reg): Use
1578 vmovups instead vmovaps.
1579 (move_zmm_data_to_memory): Use vmovups instead vmovaps.
1580
1581 2017-09-19 John Baldwin <jhb@FreeBSD.org>
1582
1583 * NEWS (Changes since GDB 8.0): Add starti.
1584 * infcmd.c (enum run_break): New.
1585 (run_command_1): Queue pending event for RUN_STOP_AT_FIRST_INSN
1586 case.
1587 (run_command): Use enum run_how.
1588 (start_command): Likewise.
1589 (starti_command): New function.
1590 (RUN_ARGS_HELP): New macro.
1591 (_initialize_infcmd): Use RUN_ARGS_HELP for run and start
1592 commands. Add starti command.
1593
1594 2017-09-19 Yao Qi <yao.qi@linaro.org>
1595
1596 * Makefile.in (monitor.o): Remove the rule.
1597
1598 2017-09-19 Yao Qi <yao.qi@linaro.org>
1599
1600 * annotate.h (struct annotate_arg_emitter): Use
1601 DISABLE_COPY_AND_ASSIGN.
1602 * common/refcounted-object.h (refcounted_object): Likewise.
1603 * completer.h (struct completion_result): Likewise.
1604 * dwarf2read.c (struct dwarf2_per_objfile): Likewise.
1605 * filename-seen-cache.h (filename_seen_cache): Likewise.
1606 * gdbcore.h (thread_section_name): Likewise.
1607 * gdb_regex.h (compiled_regex): Likewise.
1608 * gdbthread.h (scoped_restore_current_thread): Likewise.
1609 * inferior.h (scoped_restore_current_inferior): Likewise.
1610 * jit.c (jit_reader): Likewise.
1611 * linespec.h (struct linespec_result): Likewise.
1612 * mi/mi-parse.h (struct mi_parse): Likewise.
1613 * nat/fork-inferior.c (execv_argv): Likewise.
1614 * progspace.h (scoped_restore_current_program_space): Likewise.
1615 * python/python-internal.h (class gdbpy_enter): Likewise.
1616 * regcache.h (regcache): Likewise.
1617 * target-descriptions.c (struct tdesc_reg): Likewise.
1618 (struct tdesc_type): Likewise.
1619 (struct tdesc_feature): Likewise.
1620 * ui-out.h (ui_out_emit_type): Likewise.
1621
1622 2017-09-18 Simon Marchi <simon.marchi@ericsson.com>
1623
1624 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
1625 label abort_expression.
1626
1627 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
1628
1629 * common/buffer.c (buffer_xml_printf): Adjust.
1630 * common/xml-utils.c (xml_escape_text): Change return type to
1631 std::string, update code accordingly.
1632 * common/xml-utils.h (xml_escape_text): Change return type to
1633 std::string.
1634 * rs6000-aix-tdep.c (rs6000_aix_shared_library_to_xml): Adjust.
1635 * windows-tdep.c (windows_xfer_shared_library): Adjust.
1636 * unittests/xml-utils-selftests.c (test_xml_escape_text):
1637 Adjust.
1638
1639 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
1640
1641 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new source file.
1642 (SUBDIR_UNITTESTS_OBS): Add new object file.
1643 * unittests/xml-utils-selftests.c: New file.
1644
1645 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
1646
1647 * common/selftest.h (selftest): New struct/interface.
1648 (register_test): Add name parameter, add new overload.
1649 (run_tests): Add filter parameter.
1650 (for_each_selftest_ftype): New typedef.
1651 (for_each_selftest): New declaration.
1652 * common/selftest.c (tests): Change type to
1653 map<string, unique_ptr<selftest>>.
1654 (simple_selftest): New struct.
1655 (register_test): New function.
1656 (register_test): Add name parameter and use it.
1657 (run_tests): Add filter parameter and use it. Add prints.
1658 Adjust to vector -> map change.
1659 * aarch64-tdep.c (_initialize_aarch64_tdep): Add names when
1660 registering selftests.
1661 * arm-tdep.c (_initialize_arm_tdep): Likewise.
1662 * disasm-selftests.c (_initialize_disasm_selftests): Likewise.
1663 * dwarf2-frame.c (_initialize_dwarf2_frame): Likewise.
1664 * dwarf2loc.c (_initialize_dwarf2loc): Likewise.
1665 * findvar.c (_initialize_findvar): Likewise.
1666 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Likewise.
1667 * maint.c (maintenance_selftest): Update call to run_tests.
1668 (maintenance_info_selftests): New function.
1669 (_initialize_maint_cmds): Register "maintenance info selftests"
1670 command. Update "maintenance selftest" doc.
1671 * regcache.c (_initialize_regcache): Add names when registering
1672 selftests.
1673 * rust-exp.y (_initialize_rust_exp): Likewise.
1674 * selftest-arch.c (gdbarch_selftest): New struct.
1675 (gdbarch_tests): Remove.
1676 (register_test_foreach_arch): Add name parameter. Call
1677 register_test.
1678 (tests_with_arch): Remove, move most content to
1679 gdbarch_selftest::operator().
1680 (_initialize_selftests_foreach_arch): Remove.
1681 * selftest-arch.h (register_test_foreach_arch): Add name
1682 parameter.
1683 (run_tests_with_arch): New declaration.
1684 * utils-selftests.c (_initialize_utils_selftests): Add names
1685 when registering selftests.
1686 * utils.c (_initialize_utils): Likewise.
1687 * unittests/array-view-selftests.c
1688 (_initialize_array_view_selftests): Likewise.
1689 * unittests/environ-selftests.c (_initialize_environ_selftests):
1690 Likewise.
1691 * unittests/function-view-selftests.c
1692 (_initialize_function_view_selftests): Likewise.
1693 * unittests/offset-type-selftests.c
1694 (_initialize_offset_type_selftests): Likewise.
1695 * unittests/optional-selftests.c
1696 (_initialize_optional_selftests): Likewise.
1697 * unittests/scoped_restore-selftests.c
1698 (_initialize_scoped_restore_selftests): Likewise.
1699 * NEWS: Document "maintenance selftest" and "maint info
1700 selftests".
1701
1702 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
1703
1704 * mi/mi-main.c (mi_load_progress): Restore current_uiout using a
1705 scoped_restore.
1706
1707 2017-09-16 Simon Marchi <simon.marchi@ericsson.com>
1708
1709 * mi/mi-main.c (mi_load_progress): Make uiout variable
1710 a unique_ptr.
1711
1712 2017-09-15 Pedro Alves <palves@redhat.com>
1713
1714 * compile/compile-c-types.c (convert_enum, convert_int)
1715 (convert_float): Adjust to refer to int_type_v0 and float_type_v0.
1716
1717 2017-09-15 Simon Marchi <simon.marchi@ericsson.com>
1718
1719 * dwarf2read.c (copy_string): Remove.
1720 (parse_macro_definition): Replace copy_string with savestring.
1721
1722 2017-09-15 Yao Qi <yao.qi@linaro.org>
1723
1724 * configure.tgt (i[34567]86-*-darwin*): Append amd64.o to
1725 gdb_target_obs.
1726 (i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*):
1727 Likewise.
1728 (i[34567]86-*-linux*): Likewise.
1729
1730 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
1731
1732 * dwarf2expr.h (dwarf_stack_value): Add constructor.
1733 (dwarf_expr_context) <~dwarf_expr_context>: Define as default.
1734 <stack>: Change type to std::vector.
1735 <stack_len, stack_allocated>: Remove.
1736 <grow_stack>: Remove.
1737 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
1738 (dwarf_expr_context::~dwarf_expr_context): Remove.
1739 (dwarf_expr_context::grow_stack): Remove.
1740 (dwarf_expr_context::push): Adjust.
1741 (dwarf_expr_context::pop): Adjust.
1742 (dwarf_expr_context::fetch): Adjust.
1743 (dwarf_expr_context::fetch_in_stack_memory): Adjust.
1744 (dwarf_expr_context::stack_empty_p): Adjust.
1745 (dwarf_expr_context::execute_stack_op): Adjust.
1746
1747 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
1748
1749 * dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
1750 return type to bool.
1751 * dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
1752
1753 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
1754
1755 * dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
1756 Change type to bool.
1757 (dwarf_stack_value) <in_stack_memory>: Likewise.
1758 (dwarf_expr_context) <push_address>: Change parameter type to
1759 bool.
1760 <fetch_in_stack_memory>: Change return type to bool.
1761 <push>: Change parameter type to bool.
1762 * dwarf2expr.c (dwarf_expr_context::push): Change parameter type
1763 to bool.
1764 (dwarf_expr_context::push_address): Likewise.
1765 (dwarf_expr_context::fetch_in_stack_memory): Change return type
1766 to bool.
1767 (dwarf_expr_context::execute_stack_op): Adjust.
1768 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
1769
1770 2017-09-14 Simon Marchi <simon.marchi@ericsson.com>
1771
1772 * dwarf2expr.h (struct dwarf_expr_piece): Move up.
1773 (struct dwarf_expr_context) <n_pieces>: Remove.
1774 <pieces>: Change type to std::vector.
1775 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
1776 (dwarf_expr_context::~dwarf_expr_context): Don't manually free
1777 pieces.
1778 (dwarf_expr_context::add_piece): Adjust.
1779 * dwarf2loc.c (struct piece_closure): Initialize fields.
1780 <n_pieces>: Remove.
1781 <pieces>: Change type to std::vector.
1782 (allocate_piece_closure): Adjust, change parameter to
1783 std::vector rvalue and std::move it to piece_closure.
1784 (rw_pieced_value): Adjust.
1785 (check_pieced_synthetic_pointer): Adjust.
1786 (indirect_synthetic_pointer): Adjust.
1787 (coerce_pieced_ref): Adjust.
1788 (free_pieced_value_closure): Adjust. Use delete to free
1789 piece_closure.
1790 (dwarf2_evaluate_loc_desc_full): Adjust. std::move ctx.pieces
1791 to allocate_piece_closure.
1792 (dwarf2_loc_desc_get_symbol_read_needs): Adjust.
1793
1794 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
1795
1796 * probe.h (probe_ops_cp): Remove typedef.
1797 (DEF_VEC_P (probe_ops_cp)): Remove.
1798 (all_probe_ops): Change type to std::vector.
1799 * probe.c (info_probes_for_ops): Adjust to vector change.
1800 (probe_linespec_to_ops): Likewise.
1801 (all_probe_ops): Change type to std::vector.
1802 (_initialize_probe): Adjust to vector change.
1803 * dtrace-probe.c (_initialize_dtrace_probe): Likewise.
1804 * elfread.c (elf_get_probes): Likewise.
1805 * stap-probe.c (_initialize_stap_probe): Likewise.
1806
1807 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
1808
1809 * probe.h (struct bound_probe): Define constructors.
1810 * probe.c (bound_probe_s): Remove typedef.
1811 (DEF_VEC_O (bound_probe_s)): Remove VEC.
1812 (collect_probes): Change return type to std::vector, remove
1813 cleanup.
1814 (compare_probes): Return bool, change parameter type. Change
1815 semantic to "less than".
1816 (gen_ui_out_table_header_info): Change parameter to std::vector
1817 and update.
1818 (exists_probe_with_pops): Likewise.
1819 (info_probes_for_ops): Update to std::vector change.
1820 (enable_probes_command): Likewise.
1821 (disable_probes_command): Likewise.
1822
1823 2017-09-12 Simon Marchi <simon.marchi@ericsson.com>
1824
1825 * probe.h (struct probe_ops) <get_probes>: Change parameter from
1826 vec to std::vector.
1827 * probe.c (parse_probes_in_pspace): Update.
1828 (find_probes_in_objfile): Update.
1829 (find_probe_by_pc): Update.
1830 (collect_probes): Update.
1831 (probe_any_get_probes): Update.
1832 * symfile.h (struct sym_probe_fns) <sym_get_probes> Change
1833 return type to reference to std::vector.
1834 * dtrace-probe.c (dtrace_process_dof_probe): Change parameter to
1835 std::vector and update.
1836 (dtrace_process_dof): Likewise.
1837 (dtrace_get_probes): Likewise.
1838 * elfread.c (elf_get_probes): Change return type to std::vector,
1839 store an std::vector in bfd_data.
1840 (probe_key_free): Update to std::vector.
1841 * stap-probe.c (handle_stap_probe): Change parameter to
1842 std::vector and update.
1843 (stap_get_probes): Likewise.
1844 * symfile-debug.c (debug_sym_get_probes): Change return type to
1845 std::vector and update.
1846
1847 2017-09-11 Tom Tromey <tom@tromey.com>
1848
1849 * breakpoint.c (program_breakpoint_here_p): Update.
1850 * target.c (make_scoped_restore_show_memory_breakpoints): Rename
1851 from make_show_memory_breakpoints_cleanup. Return a
1852 scoped_restore_tmpl<int>.
1853 (restore_show_memory_breakpoints): Remove.
1854 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Update.
1855 * mem-break.c (memory_validate_breakpoint): Update.
1856 * ia64-tdep.c (ia64_memory_insert_breakpoint): Update.
1857 (ia64_memory_remove_breakpoint): Update.
1858 (ia64_breakpoint_from_pc): Update.
1859 * target.h (make_scoped_restore_show_memory_breakpoints): Rename
1860 from make_show_memory_breakpoints_cleanup.
1861
1862 2017-09-11 Tom Tromey <tom@tromey.com>
1863
1864 * d-namespace.c (d_lookup_symbol): Use std::string.
1865 (find_symbol_in_baseclass): Likewise.
1866
1867 2017-09-11 Tom Tromey <tom@tromey.com>
1868
1869 * ctf.c (ctf_start): Use std::string.
1870
1871 2017-09-11 Tom Tromey <tom@tromey.com>
1872
1873 * ada-lang.c (is_known_support_routine): Update.
1874 (ada_unhandled_exception_name_addr_from_raise): Update.
1875 * guile/scm-frame.c (gdbscm_frame_name): Update.
1876 * python/py-frame.c (frapy_name): Update.
1877 (frapy_function): Update.
1878 * stack.h (find_frame_funname): Update.
1879 * stack.c (find_frame_funname): Return unique_xmalloc_ptr.
1880 (print_frame): Update.
1881
1882 2017-09-11 Tom Tromey <tom@tromey.com>
1883
1884 * findcmd.c (put_bits): Take a gdb::byte_vector.
1885 (parse_find_args): Return gdb::byte_vector. "args" now const.
1886 Remove "pattern_bufp" and "pattern_lenp" parameters. Remove
1887 cleanups.
1888 (find_command): Update.
1889
1890 2017-09-11 Tom Tromey <tom@tromey.com>
1891
1892 * cli/cli-script.c (class scoped_restore_hook_in): New.
1893 (clear_hook_in_cleanup): Remove.
1894 (execute_cmd_pre_hook, execute_cmd_post_hook): Use
1895 scoped_restore_hook_in.
1896
1897 2017-09-11 Tom Tromey <tom@tromey.com>
1898
1899 * cli/cli-script.c (restore_interp): Remove.
1900 (read_command_lines): Use scoped_restore_interp.
1901 * interps.c (scoped_restore_interp::set_temp): Rename from
1902 interp_set_temp.
1903 * interps.h (class scoped_restore_interp): New.
1904 (interp_set_temp): Remove.
1905
1906 2017-09-11 Tom Tromey <tom@tromey.com>
1907
1908 * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
1909 (mi_cmd_catch_exception, mi_catch_load_unload): Update.
1910 * mi/mi-cmd-break.c (setup_breakpoint_reporting): Return a
1911 scoped_restore.
1912 (mi_cmd_break_insert_1): Update.
1913 * mi/mi-cmd-break.h (setup_breakpoint_reporting): Return a
1914 scoped_restore.
1915
1916 2017-09-11 Tom Tromey <tom@tromey.com>
1917
1918 * demangle.c (demangle_command): Update.
1919 * breakpoint.c (disable_command): Update.
1920 (enable_command): Update.
1921 (find_location_by_number): Make "number" const. Use
1922 get_number_trailer.
1923 * cli/cli-utils.c (extract_arg): Return std::string.
1924 * probe.c (parse_probe_linespec): Update. Change types.
1925 (collect_probes): Take string arguments.
1926 (parse_probe_linespec): Likewise.
1927 (info_probes_for_ops): Update.
1928 (enable_probes_command): Update.
1929 (disable_probes_command): Update.
1930 * break-catch-sig.c (catch_signal_split_args): Update.
1931 * mi/mi-parse.c (mi_parse): Update.
1932
1933 2017-09-11 Tom Tromey <tom@tromey.com>
1934
1935 * language.h (language_enum): Make argument const.
1936 * language.c (language_enum): Make argument const.
1937
1938 2017-09-11 Tom Tromey <tom@tromey.com>
1939
1940 * common/common-utils.h (skip_to_space): Remove macro, redeclare
1941 as function.
1942 (skip_to_space): Rename from skip_to_space_const.
1943 * common/common-utils.c (skip_to_space): New function.
1944 (skip_to_space): Rename from skip_to_space_const.
1945 * cli/cli-utils.h (get_number): Rename from get_number_const.
1946 (extract_arg): Rename from extract_arg_const.
1947 * cli/cli-utils.c (get_number): Rename from get_number_const.
1948 (extract_arg): Rename from extract_arg_const.
1949 (number_or_range_parser::get_number): Use ::get_number.
1950 * aarch64-linux-tdep.c, ada-lang.c, arm-linux-tdep.c, ax-gdb.c,
1951 break-catch-throw.c, breakpoint.c, cli/cli-cmds.c, cli/cli-dump.c,
1952 cli/cli-script.c, cli/cli-setshow.c, compile/compile.c,
1953 completer.c, demangle.c, disasm.c, findcmd.c, linespec.c,
1954 linux-tdep.c, linux-thread-db.c, location.c, mi/mi-parse.c,
1955 minsyms.c, nat/linux-procfs.c, printcmd.c, probe.c,
1956 python/py-breakpoint.c, record.c, rust-exp.y, serial.c, stack.c,
1957 stap-probe.c, tid-parse.c, tracepoint.c: Update all callers.
1958
1959 2017-09-11 Tom Tromey <tom@tromey.com>
1960
1961 * python/python.c (do_start_initialization): Use
1962 py-event-types.def to initialize types.
1963 Define all object type structures.
1964 * python/python-internal.h: Don't declare event initialization
1965 functions.
1966 * python/py-threadevent.c (thread_event_object_type): Don't
1967 define.
1968 * python/py-stopevent.c (stop_event_object_type): Don't define.
1969 * python/py-signalevent.c (signal_event_object_type): Don't
1970 declare or define.
1971 * python/py-newobjfileevent.c (new_objfile_event_object_type)
1972 (clear_objfiles_event_object_type): Don't declare or define.
1973 * python/py-infevents.c (inferior_call_pre_event_object_type)
1974 (inferior_call_post_event_object_type)
1975 (register_changed_event_object_type)
1976 (memory_changed_event_object_type): Don't declare or define.
1977 * python/py-inferior.c (new_thread_event_object_type)
1978 (new_inferior_event_object_type)
1979 (inferior_deleted_event_object_type): Don't declare or define.
1980 * python/py-exitedevent.c (exited_event_object_type): Don't
1981 declare or define.
1982 * python/py-evts.c (gdbpy_initialize_py_events): Use
1983 py-all-events.def.
1984 * python/py-events.h (thread_event_object_type): Don't declare.
1985 (events_object): Use py-all-events.def.
1986 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove. Use
1987 py-event-types.def.
1988 * python/py-event-types.def: New file.
1989 * python/py-continueevent.c (create_continue_event_object): Don't
1990 declare or define.
1991 * python/py-bpevent.c (breakpoint_event_object_type): Don't
1992 declare or define.
1993 * python/py-all-events.def: New file.
1994
1995 2017-09-11 Tom Tromey <tom@tromey.com>
1996
1997 * python/py-threadevent.c (create_thread_event_object): Return
1998 gdbpy_ref.
1999 * python/py-stopevent.h (create_stop_event_object)
2000 (create_breakpoint_event_object, create_signal_event_object):
2001 Update.
2002 * python/py-stopevent.c (create_stop_event_object): Return
2003 gdbpy_ref.
2004 (emit_stop_event): Update.
2005 * python/py-signalevent.c (create_signal_event_object): Return
2006 gdbpy_ref.
2007 * python/py-infevents.c (create_inferior_call_event_object):
2008 Update.
2009 * python/py-event.h (create_event_object)
2010 (create_thread_event_object): Update.
2011 * python/py-event.c (create_event_object): Return gdbpy_ref.
2012 * python/py-continueevent.c: Return gdbpy_ref.
2013 * python/py-bpevent.c (create_breakpoint_event_object): Return
2014 gdbpy_ref.
2015
2016 2017-09-11 Tom Tromey <tom@tromey.com>
2017
2018 PR python/15622:
2019 * NEWS: Add entry.
2020 * python/python.c (do_start_initialization): Initialize new event
2021 types.
2022 * python/python-internal.h (gdbpy_initialize_new_inferior_event)
2023 (gdbpy_initialize_inferior_deleted_event)
2024 (gdbpy_initialize_new_thread_event): Declare.
2025 * python/py-threadevent.c (create_thread_event_object): Add option
2026 "thread" parameter.
2027 * python/py-inferior.c (new_thread_event_object_type)
2028 (new_inferior_event_object_type)
2029 (inferior_deleted_event_object_type): Declare.
2030 (python_new_inferior, python_inferior_deleted): New functions.
2031 (add_thread_object): Emit new_thread event.
2032 (gdbpy_initialize_inferior): Attach new functions to corresponding
2033 observers.
2034 (new_thread, new_inferior, inferior_deleted): Define new event
2035 types.
2036 * python/py-evts.c (gdbpy_initialize_py_events): Add new
2037 registries.
2038 * python/py-events.h (events_object) <new_inferior,
2039 inferior_deleted, new_thread>: New fields.
2040 * python/py-event.h (create_thread_event_breakpoint): Add optional
2041 "thread" parameter.
2042
2043 2017-09-10 Andrew Burgess <andrew.burgess@embecosm.com>
2044
2045 * utils.c (abort_with_message): Don't compare gdb_stderr to NULL,
2046 check current_ui instead.
2047 (internal_vproblem): Likewise.
2048
2049 2017-09-09 Simon Marchi <simon.marchi@ericsson.com>
2050
2051 * thread.c (print_thread_info_1): Remove unnecessary calls to
2052 uiout->is_mi_like_p.
2053
2054 2017-09-09 Tom Tromey <tom@tromey.com>
2055
2056 * namespace.h (add_using_directive): Update.
2057 * namespace.c (add_using_directive): Change type of excludes to
2058 std::vector.
2059 * dwarf2read.c (read_import_statement): Use std::vector.
2060 (read_namespace): Update.
2061 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
2062
2063 2017-09-09 Tom Tromey <tom@tromey.com>
2064
2065 * linespec.c (create_sals_line_offset): Use gdb::def_vector.
2066
2067 2017-09-09 Tom Tromey <tom@tromey.com>
2068
2069 * p-valprint.c (pascal_object_print_value): Use gdb::byte_vector.
2070
2071 2017-09-09 Tom Tromey <tom@tromey.com>
2072
2073 * stack.c (func_command): Use gdb::def_vector.
2074
2075 2017-09-09 Tom Tromey <tom@tromey.com>
2076
2077 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Use gdb::optional,
2078 ui_out_emit_list, ui_out_emit_tuple.
2079 (mi_cmd_var_update): Likewise.
2080
2081 2017-09-09 Tom Tromey <tom@tromey.com>
2082
2083 * mi/mi-interp.c (mi_user_selected_context_changed): Use
2084 ui_out_redirect_pop.
2085 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
2086 ui_out_redirect_pop.
2087 * utils.c (do_ui_out_redirect_pop)
2088 (make_cleanup_ui_out_redirect_pop): Remove.
2089 * top.c (execute_command_to_string): Use ui_out_redirect_pop.
2090 * utils.h (make_cleanup_ui_out_redirect_pop): Remove.
2091 * ui-out.h (ui_out_redirect_pop): New class.
2092
2093 2017-09-09 Tom Tromey <tom@tromey.com>
2094
2095 * mi/mi-main.c (output_cores): Use ui_out_emit_list.
2096 (list_available_thread_groups, mi_cmd_list_thread_groups)
2097 (mi_cmd_data_list_changed_registers, mi_cmd_data_read_memory)
2098 (mi_cmd_data_read_memory_bytes, mi_cmd_trace_frame_collected):
2099 Likewise.
2100
2101 2017-09-09 Tom Tromey <tom@tromey.com>
2102
2103 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
2104 ui_out_emit_tuple.
2105
2106 2017-09-09 Tom Tromey <tom@tromey.com>
2107
2108 * target.c (flash_erase_command): Use ui_out_emit_tuple.
2109 * stack.c (print_frame): Use ui_out_emit_tuple.
2110 * spu-tdep.c (info_spu_event_command): Use ui_out_emit_tuple.
2111 (info_spu_mailbox_command, info_spu_dma_command)
2112 (info_spu_proxydma_command): Likewise.
2113 * mi/mi-main.c (mi_cmd_trace_frame_collected): Use
2114 ui_out_emit_tuple, gdb::byte_vector, bin2hex.
2115 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
2116 ui_out_emit_tuple.
2117 * breakpoint.c (print_it_watchpoint): Use ui_out_emit_tuple.
2118
2119 2017-09-09 Tom Tromey <tom@tromey.com>
2120
2121 * ui-out.h (make_cleanup_ui_out_table_begin_end): Remove.
2122 (class ui_out_emit_table): Update comment.
2123 * ui-out.c (do_cleanup_table_end)
2124 (make_cleanup_ui_out_table_begin_end): Remove.
2125 * spu-tdep.c (info_spu_mailbox_list): Use ui_out_emit_table.
2126 (info_spu_dma_cmdlist): Likewise.
2127 * probe.c (info_probes_for_ops): Use ui_out_emit_table.
2128 * darwin-nat-info.c (darwin_debug_regions_recurse): Use
2129 ui_out_emit_table.
2130
2131 2017-09-09 Tom Tromey <tom@tromey.com>
2132
2133 * thread.c (print_thread_info_1): Use ui_out_emit_table,
2134 ui_out_emit_list, gdb::optional.
2135
2136 2017-09-09 John Baldwin <jhb@FreeBSD.org>
2137
2138 * aarch64-linux-nat.c: Remove _initialize_aarch64_linux_nat
2139 prototype.
2140 * aarch64-linux-tdep.c: Remove _initialize_aarch64_linux_tdep
2141 prototype.
2142 * aarch64-newlib-tdep.c: Remove _initialize_aarch64_newlib_tdep
2143 prototype.
2144 * aarch64-tdep.c: Remove _initialize_aarch64_tdep prototype.
2145 * ada-exp.y: Remove _initialize_ada_exp prototype.
2146 * ada-lang.c: Remove _initialize_ada_language prototype.
2147 * ada-tasks.c: Remove _initialize_tasks prototype.
2148 * addrmap.c: Remove _initialize_addrmap prototype.
2149 * agent.c: Remove _initialize_agent prototype.
2150 * aix-thread.c: Remove _initialize_aix_thread prototype.
2151 * alpha-bsd-nat.c: Remove _initialize_alphabsd_nat prototype.
2152 * alpha-linux-nat.c: Remove _initialize_alpha_linux_nat prototype.
2153 * alpha-linux-tdep.c: Remove _initialize_alpha_linux_tdep
2154 prototype.
2155 * alpha-nbsd-tdep.c: Remove _initialize_alphanbsd_tdep prototype.
2156 * alpha-obsd-tdep.c: Remove _initialize_alphaobsd_tdep prototype.
2157 * alpha-tdep.c: Remove _initialize_alpha_tdep prototype.
2158 * amd64-darwin-tdep.c: Remove _initialize_amd64_darwin_tdep
2159 prototype.
2160 * amd64-dicos-tdep.c: Remove _initialize_amd64_dicos_tdep
2161 prototype.
2162 * amd64-fbsd-nat.c: Remove _initialize_amd64fbsd_nat prototype.
2163 * amd64-fbsd-tdep.c: Remove _initialize_amd64fbsd_tdep prototype.
2164 * amd64-linux-nat.c: Remove _initialize_amd64_linux_nat prototype.
2165 * amd64-linux-tdep.c: Remove _initialize_amd64_linux_tdep
2166 prototype.
2167 * amd64-nbsd-nat.c: Remove _initialize_amd64nbsd_nat prototype.
2168 * amd64-nbsd-tdep.c: Remove _initialize_amd64nbsd_tdep prototype.
2169 * amd64-obsd-nat.c: Remove _initialize_amd64obsd_nat prototype.
2170 * amd64-obsd-tdep.c: Remove _initialize_amd64obsd_tdep prototype.
2171 * amd64-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
2172 * amd64-tdep.c: Remove _initialize_amd64_tdep prototype.
2173 * amd64-windows-nat.c: Remove _initialize_amd64_windows_nat
2174 prototype.
2175 * amd64-windows-tdep.c: Remove _initialize_amd64_windows_tdep
2176 prototype.
2177 * annotate.c: Remove _initialize_annotate prototype.
2178 * arc-newlib-tdep.c: Remove _initialize_arc_newlib_tdep prototype.
2179 * arc-tdep.c: Remove _initialize_arc_tdep prototype.
2180 * arch-utils.c: Remove _initialize_gdbarch_utils prototype.
2181 * arm-linux-nat.c: Remove _initialize_arm_linux_nat prototype.
2182 * arm-linux-tdep.c: Remove _initialize_arm_linux_tdep prototype.
2183 * arm-nbsd-tdep.c: Remove _initialize_arm_netbsd_tdep prototype.
2184 * arm-obsd-tdep.c: Remove _initialize_armobsd_tdep prototype.
2185 * arm-symbian-tdep.c: Remove _initialize_arm_symbian_tdep
2186 prototype.
2187 * arm-tdep.c: Remove _initialize_arm_tdep prototype.
2188 * arm-wince-tdep.c: Remove _initialize_arm_wince_tdep prototype.
2189 * auto-load.c: Remove _initialize_auto_load prototype.
2190 * auxv.c: Remove _initialize_auxv prototype.
2191 * avr-tdep.c: Remove _initialize_avr_tdep prototype.
2192 * ax-gdb.c: Remove _initialize_ax_gdb prototype.
2193 * bfin-linux-tdep.c: Remove _initialize_bfin_linux_tdep prototype.
2194 * bfin-tdep.c: Remove _initialize_bfin_tdep prototype.
2195 * break-catch-sig.c: Remove _initialize_break_catch_sig prototype.
2196 * break-catch-syscall.c: Remove _initialize_break_catch_syscall
2197 prototype.
2198 * break-catch-throw.c: Remove _initialize_break_catch_throw
2199 prototype.
2200 * breakpoint.c: Remove _initialize_breakpoint prototype.
2201 * bsd-uthread.c: Remove _initialize_bsd_uthread prototype.
2202 * btrace.c: Remove _initialize_btrace prototype.
2203 * charset.c: Remove _initialize_charset prototype.
2204 * cli/cli-cmds.c: Remove _initialize_cli_cmds prototype.
2205 * cli/cli-dump.c: Remove _initialize_cli_dump prototype.
2206 * cli/cli-interp.c: Remove _initialize_cli_interp prototype.
2207 * cli/cli-logging.c: Remove _initialize_cli_logging prototype.
2208 * cli/cli-script.c: Remove _initialize_cli_script prototype.
2209 * coff-pe-read.c: Remove _initialize_coff_pe_read prototype.
2210 * coffread.c: Remove _initialize_coffread prototype.
2211 * compile/compile.c: Remove _initialize_compile prototype.
2212 * complaints.c: Remove _initialize_complaints prototype.
2213 * completer.c: Remove _initialize_completer prototype.
2214 * copying.awk: Remove _initialize_copying prototype.
2215 * copying.c: Regenerate.
2216 * core-regset.c: Remove _initialize_core_regset prototype.
2217 * corefile.c: Remove _initialize_core prototype.
2218 * corelow.c: Remove _initialize_corelow prototype.
2219 * cp-abi.c: Remove _initialize_cp_abi prototype.
2220 * cp-namespace.c: Remove _initialize_cp_namespace prototype.
2221 * cp-support.c: Remove _initialize_cp_support prototype.
2222 * cp-valprint.c: Remove _initialize_cp_valprint prototype.
2223 * cris-linux-tdep.c: Remove _initialize_cris_linux_tdep prototype.
2224 * cris-tdep.c: Remove _initialize_cris_tdep prototype.
2225 * ctf.c: Remove _initialize_ctf prototype.
2226 * d-lang.c: Remove _initialize_d_language prototype.
2227 * darwin-nat-info.c: Remove _initialize_darwin_info_commands
2228 prototype.
2229 * darwin-nat.c: Remove _initialize_darwin_inferior prototype.
2230 * dbxread.c: Remove _initialize_dbxread prototype.
2231 * dcache.c: Remove _initialize_dcache prototype.
2232 * demangle.c: Remove _initialize_demangler prototype.
2233 * disasm-selftests.c: Remove _initialize_disasm_selftests
2234 prototype.
2235 * disasm.c: Remove _initialize_disasm prototype.
2236 * dtrace-probe.c: Remove _initialize_dtrace_probe prototype.
2237 * dummy-frame.c: Remove _initialize_dummy_frame prototype.
2238 * dwarf2-frame-tailcall.c: Remove _initialize_tailcall_frame
2239 prototype.
2240 * dwarf2-frame.c: Remove _initialize_dwarf2_frame prototype.
2241 * dwarf2expr.c: Remove _initialize_dwarf2expr prototype.
2242 * dwarf2loc.c: Remove _initialize_dwarf2loc prototype.
2243 * dwarf2read.c: Remove _initialize_dwarf2_read prototype.
2244 * elfread.c: Remove _initialize_elfread prototype.
2245 * exec.c: Remove _initialize_exec prototype.
2246 * extension.c: Remove _initialize_extension prototype.
2247 * f-lang.c: Remove _initialize_f_language prototype.
2248 * f-valprint.c: Remove _initialize_f_valprint prototype.
2249 * fbsd-nat.c: Remove _initialize_fbsd_nat prototype.
2250 * fbsd-tdep.c: Remove _initialize_fbsd_tdep prototype.
2251 * filesystem.c: Remove _initialize_filesystem prototype.
2252 * findcmd.c: Remove _initialize_mem_search prototype.
2253 * fork-child.c: Remove _initialize_fork_child prototype.
2254 * frame-base.c: Remove _initialize_frame_base prototype.
2255 * frame-unwind.c: Remove _initialize_frame_unwind prototype.
2256 * frame.c: Remove _initialize_frame prototype.
2257 * frv-linux-tdep.c: Remove _initialize_frv_linux_tdep prototype.
2258 * frv-tdep.c: Remove _initialize_frv_tdep prototype.
2259 * ft32-tdep.c: Remove _initialize_ft32_tdep prototype.
2260 * gcore.c: Remove _initialize_gcore prototype.
2261 * gdb_bfd.c: Remove _initialize_gdb_bfd prototype.
2262 * gdbarch.c: Regenerate.
2263 * gdbarch.sh: Remove _initialize_gdbarch prototype.
2264 * gdbtypes.c: Remove _initialize_gdbtypes prototype.
2265 * gnu-nat.c: Remove _initialize_gnu_nat prototype.
2266 * gnu-v2-abi.c: Remove _initialize_gnu_v2_abi prototype.
2267 * gnu-v3-abi.c: Remove _initialize_gnu_v3_abi prototype.
2268 * go-lang.c: Remove _initialize_go_language prototype.
2269 * go32-nat.c: Remove _initialize_go32_nat prototype.
2270 * guile/guile.c: Remove _initialize_guile prototype.
2271 * h8300-tdep.c: Remove _initialize_h8300_tdep prototype.
2272 * hppa-linux-nat.c: Remove _initialize_hppa_linux_nat prototype.
2273 * hppa-linux-tdep.c: Remove _initialize_hppa_linux_tdep prototype.
2274 * hppa-nbsd-nat.c: Remove _initialize_hppanbsd_nat prototype.
2275 * hppa-nbsd-tdep.c: Remove _initialize_hppanbsd_tdep prototype.
2276 * hppa-obsd-nat.c: Remove _initialize_hppaobsd_nat prototype.
2277 * hppa-obsd-tdep.c: Remove _initialize_hppaobsd_tdep prototype.
2278 * hppa-tdep.c: Remove _initialize_hppa_tdep prototype.
2279 * i386-bsd-nat.c: Remove _initialize_i386bsd_nat prototype.
2280 * i386-cygwin-tdep.c: Remove _initialize_i386_cygwin_tdep
2281 prototype.
2282 * i386-darwin-tdep.c: Remove _initialize_i386_darwin_tdep
2283 prototype.
2284 * i386-dicos-tdep.c: Remove _initialize_i386_dicos_tdep prototype.
2285 * i386-fbsd-nat.c: Remove _initialize_i386fbsd_nat prototype.
2286 * i386-fbsd-tdep.c: Remove _initialize_i386fbsd_tdep prototype.
2287 * i386-gnu-nat.c: Remove _initialize_i386gnu_nat prototype.
2288 * i386-gnu-tdep.c: Remove _initialize_i386gnu_tdep prototype.
2289 * i386-linux-nat.c: Remove _initialize_i386_linux_nat prototype.
2290 * i386-linux-tdep.c: Remove _initialize_i386_linux_tdep prototype.
2291 * i386-nbsd-nat.c: Remove _initialize_i386nbsd_nat prototype.
2292 * i386-nbsd-tdep.c: Remove _initialize_i386nbsd_tdep prototype.
2293 * i386-nto-tdep.c: Remove _initialize_i386nto_tdep prototype.
2294 * i386-obsd-nat.c: Remove _initialize_i386obsd_nat prototype.
2295 * i386-obsd-tdep.c: Remove _initialize_i386obsd_tdep prototype.
2296 * i386-sol2-nat.c: Remove _initialize_amd64_sol2_nat prototype.
2297 * i386-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
2298 * i386-tdep.c: Remove _initialize_i386_tdep prototype.
2299 * i386-windows-nat.c: Remove _initialize_i386_windows_nat
2300 prototype.
2301 * ia64-libunwind-tdep.c: Remove _initialize_libunwind_frame
2302 prototype.
2303 * ia64-linux-nat.c: Remove _initialize_ia64_linux_nat prototype.
2304 * ia64-linux-tdep.c: Remove _initialize_ia64_linux_tdep prototype.
2305 * ia64-tdep.c: Remove _initialize_ia64_tdep prototype.
2306 * ia64-vms-tdep.c: Remove _initialize_ia64_vms_tdep prototype.
2307 * infcall.c: Remove _initialize_infcall prototype.
2308 * infcmd.c: Remove _initialize_infcmd prototype.
2309 * inferior.c: Remove _initialize_inferiors prototype.
2310 * inflow.c: Remove _initialize_inflow prototype.
2311 * infrun.c: Remove _initialize_infrun prototype.
2312 * interps.c: Remove _initialize_interpreter prototype.
2313 * iq2000-tdep.c: Remove _initialize_iq2000_tdep prototype.
2314 * jit.c: Remove _initialize_jit prototype.
2315 * language.c: Remove _initialize_language prototype.
2316 * linux-fork.c: Remove _initialize_linux_fork prototype.
2317 * linux-nat.c: Remove _initialize_linux_nat prototype.
2318 * linux-tdep.c: Remove _initialize_linux_tdep prototype.
2319 * linux-thread-db.c: Remove _initialize_thread_db prototype.
2320 * lm32-tdep.c: Remove _initialize_lm32_tdep prototype.
2321 * m2-lang.c: Remove _initialize_m2_language prototype.
2322 * m32c-tdep.c: Remove _initialize_m32c_tdep prototype.
2323 * m32r-linux-nat.c: Remove _initialize_m32r_linux_nat prototype.
2324 * m32r-linux-tdep.c: Remove _initialize_m32r_linux_tdep prototype.
2325 * m32r-tdep.c: Remove _initialize_m32r_tdep prototype.
2326 * m68hc11-tdep.c: Remove _initialize_m68hc11_tdep prototype.
2327 * m68k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
2328 * m68k-bsd-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
2329 * m68k-linux-nat.c: Remove _initialize_m68k_linux_tdep prototype.
2330 * m68k-linux-tdep.c: Remove _initialize_m68k_linux_tdep prototype.
2331 * m68k-tdep.c: Remove _initialize_m68k_tdep prototype.
2332 * m88k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
2333 * m88k-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
2334 * machoread.c: Remove _initialize_machoread prototype.
2335 * macrocmd.c: Remove _initialize_macrocmd prototype.
2336 * macroscope.c: Remove _initialize_macroscope prototype.
2337 * maint.c: Remove _initialize_maint_cmds prototype.
2338 * mdebugread.c: Remove _initialize_mdebugread prototype.
2339 * memattr.c: Remove _initialize_mem prototype.
2340 * mep-tdep.c: Remove _initialize_mep_tdep prototype.
2341 * mi/mi-cmd-env.c: Remove _initialize_mi_cmd_env prototype.
2342 * mi/mi-cmds.c: Remove _initialize_mi_cmds prototype.
2343 * mi/mi-interp.c: Remove _initialize_mi_interp prototype.
2344 * mi/mi-main.c: Remove _initialize_mi_main prototype.
2345 * microblaze-linux-tdep.c: Remove
2346 _initialize_microblaze_linux_tdep prototype.
2347 * microblaze-tdep.c: Remove _initialize_microblaze_tdep prototype.
2348 * mips-fbsd-nat.c: Remove _initialize_mips_fbsd_nat prototype.
2349 * mips-fbsd-tdep.c: Remove _initialize_mips_fbsd_tdep prototype.
2350 * mips-linux-nat.c: Remove _initialize_mips_linux_nat prototype.
2351 * mips-linux-tdep.c: Remove _initialize_mips_linux_tdep prototype.
2352 * mips-nbsd-nat.c: Remove _initialize_mipsnbsd_nat prototype.
2353 * mips-nbsd-tdep.c: Remove _initialize_mipsnbsd_tdep prototype.
2354 * mips-sde-tdep.c: Remove _initialize_mips_sde_tdep prototype.
2355 * mips-tdep.c: Remove _initialize_mips_tdep prototype.
2356 * mips64-obsd-nat.c: Remove _initialize_mips64obsd_nat prototype.
2357 * mips64-obsd-tdep.c: Remove _initialize_mips64obsd_tdep
2358 prototype.
2359 * mipsread.c: Remove _initialize_mipsread prototype.
2360 * mn10300-linux-tdep.c: Remove _initialize_mn10300_linux_tdep
2361 prototype.
2362 * mn10300-tdep.c: Remove _initialize_mn10300_tdep prototype.
2363 * moxie-tdep.c: Remove _initialize_moxie_tdep prototype.
2364 * msp430-tdep.c: Remove _initialize_msp430_tdep prototype.
2365 * mt-tdep.c: Remove _initialize_mt_tdep prototype.
2366 * nds32-tdep.c: Remove _initialize_nds32_tdep prototype.
2367 * nios2-linux-tdep.c: Remove _initialize_nios2_linux_tdep
2368 prototype.
2369 * nios2-tdep.c: Remove _initialize_nios2_tdep prototype.
2370 * nto-procfs.c: Remove _initialize_procfs prototype.
2371 * nto-tdep.c: Remove _initialize_nto_tdep prototype.
2372 * objc-lang.c: Remove _initialize_objc_language prototype.
2373 * objfiles.c: Remove _initialize_objfiles prototype.
2374 * observer.c: Remove observer_test_first_notification_function,
2375 observer_test_second_notification_function,
2376 observer_test_third_notification_function, and
2377 _initialize_observer prototypes.
2378 * opencl-lang.c: Remove _initialize_opencl_language prototypes.
2379 * osabi.c: Remove _initialize_gdb_osabi prototype.
2380 * osdata.c: Remove _initialize_osdata prototype.
2381 * p-valprint.c: Remove _initialize_pascal_valprint prototype.
2382 * parse.c: Remove _initialize_parse prototype.
2383 * ppc-fbsd-nat.c: Remove _initialize_ppcfbsd_nat prototype.
2384 * ppc-fbsd-tdep.c: Remove _initialize_ppcfbsd_tdep prototype.
2385 * ppc-linux-nat.c: Remove _initialize_ppc_linux_nat prototype.
2386 * ppc-linux-tdep.c: Remove _initialize_ppc_linux_tdep prototype.
2387 * ppc-nbsd-nat.c: Remove _initialize_ppcnbsd_nat prototype.
2388 * ppc-nbsd-tdep.c: Remove _initialize_ppcnbsd_tdep prototype.
2389 * ppc-obsd-nat.c: Remove _initialize_ppcobsd_nat prototype.
2390 * ppc-obsd-tdep.c: Remove _initialize_ppcobsd_tdep prototype.
2391 * printcmd.c: Remove _initialize_printcmd prototype.
2392 * probe.c: Remove _initialize_probe prototype.
2393 * proc-api.c: Remove _initialize_proc_api prototype.
2394 * proc-events.c: Remove _initialize_proc_events prototype.
2395 * proc-service.c: Remove _initialize_proc_service prototype.
2396 * procfs.c: Remove _initialize_procfs prototype.
2397 * psymtab.c: Remove _initialize_psymtab prototype.
2398 * python/python.c: Remove _initialize_python prototype.
2399 * ravenscar-thread.c: Remove _initialize_ravenscar prototype.
2400 * record-btrace.c: Remove _initialize_record_btrace prototype.
2401 * record-full.c: Remove _initialize_record_full prototype.
2402 * record.c: Remove _initialize_record prototype.
2403 * regcache.c: Remove _initialize_regcache prototype.
2404 * reggroups.c: Remove _initialize_reggroup prototype.
2405 * remote-notif.c: Remove _initialize_notif prototype.
2406 * remote-sim.c: Remove _initialize_remote_sim prototype.
2407 * remote.c: Remove _initialize_remote prototype.
2408 * reverse.c: Remove _initialize_reverse prototype.
2409 * rl78-tdep.c: Remove _initialize_rl78_tdep prototype.
2410 * rs6000-aix-tdep.c: Remove _initialize_rs6000_aix_tdep prototype.
2411 * rs6000-lynx178-tdep.c: Remove _initialize_rs6000_lynx178_tdep
2412 prototype.
2413 * rs6000-nat.c: Remove _initialize_rs6000_nat prototype.
2414 * rs6000-tdep.c: Remove _initialize_rs6000_tdep prototype.
2415 * rust-exp.y: Remove _initialize_rust_exp prototype.
2416 * rx-tdep.c: Remove _initialize_rx_tdep prototype.
2417 * s390-linux-nat.c: Remove _initialize_s390_nat prototype.
2418 * s390-linux-tdep.c: Remove _initialize_s390_tdep prototype.
2419 * score-tdep.c: Remove _initialize_score_tdep prototype.
2420 * selftest-arch.c: Remove _initialize_selftests_foreach_arch
2421 prototype.
2422 * ser-go32.c: Remove _initialize_ser_dos prototype.
2423 * ser-mingw.c: Remove _initialize_ser_windows prototype.
2424 * ser-pipe.c: Remove _initialize_ser_pipe prototype.
2425 * ser-tcp.c: Remove _initialize_ser_tcp prototype.
2426 * ser-unix.c: Remove _initialize_ser_hardwire prototype.
2427 * serial.c: Remove _initialize_serial prototype.
2428 * sh-linux-tdep.c: Remove _initialize_sh_linux_tdep prototype.
2429 * sh-nbsd-nat.c: Remove _initialize_shnbsd_nat prototype.
2430 * sh-nbsd-tdep.c: Remove _initialize_shnbsd_tdep prototype.
2431 * sh-tdep.c: Remove _initialize_sh_tdep prototype.
2432 * skip.c: Remove _initialize_step_skip prototype.
2433 * sol-thread.c: Remove _initialize_sol_thread prototype.
2434 * solib-aix.c: Remove _initialize_solib_aix prototype.
2435 * solib-darwin.c: Remove _initialize_darwin_solib prototype.
2436 * solib-dsbt.c: Remove _initialize_dsbt_solib prototype.
2437 * solib-frv.c: Remove _initialize_frv_solib prototype.
2438 * solib-spu.c: Remove _initialize_spu_solib prototype.
2439 * solib-svr4.c: Remove _initialize_svr4_solib prototype.
2440 * solib-target.c: Remove _initialize_solib_target prototype.
2441 * solib.c: Remove _initialize_solib prototype.
2442 * source.c: Remove _initialize_source prototype.
2443 * sparc-linux-nat.c: Remove _initialize_sparc_linux_nat prototype.
2444 * sparc-linux-tdep.c: Remove _initialize_sparc_linux_tdep
2445 prototype.
2446 * sparc-nat.c: Remove _initialize_sparc_nat prototype.
2447 * sparc-nbsd-nat.c: Remove _initialize_sparcnbsd_nat prototype.
2448 * sparc-nbsd-tdep.c: Remove _initialize_sparcnbsd_tdep prototype.
2449 * sparc-obsd-tdep.c: Remove _initialize_sparc32obsd_tdep
2450 prototype.
2451 * sparc-sol2-nat.c: Remove _initialize_sparc_sol2_nat prototype.
2452 * sparc-sol2-tdep.c: Remove _initialize_sparc_sol2_tdep prototype.
2453 * sparc-tdep.c: Remove _initialize_sparc_tdep prototype.
2454 * sparc64-fbsd-nat.c: Remove _initialize_sparc64fbsd_nat
2455 prototype.
2456 * sparc64-fbsd-tdep.c: Remove _initialize_sparc64fbsd_tdep
2457 prototype.
2458 * sparc64-linux-nat.c: Remove _initialize_sparc64_linux_nat
2459 prototype.
2460 * sparc64-linux-tdep.c: Remove _initialize_sparc64_linux_tdep
2461 prototype.
2462 * sparc64-nat.c: Remove _initialize_sparc64_nat prototype.
2463 * sparc64-nbsd-nat.c: Remove _initialize_sparc64nbsd_nat
2464 prototype.
2465 * sparc64-nbsd-tdep.c: Remove _initialize_sparc64nbsd_tdep
2466 prototype.
2467 * sparc64-obsd-nat.c: Remove _initialize_sparc64obsd_nat
2468 prototype.
2469 * sparc64-obsd-tdep.c: Remove _initialize_sparc64obsd_tdep
2470 prototype.
2471 * sparc64-sol2-tdep.c: Remove _initialize_sparc64_sol2_tdep
2472 prototype.
2473 * spu-linux-nat.c: Remove _initialize_spu_nat prototype.
2474 * spu-multiarch.c: Remove _initialize_spu_multiarch prototype.
2475 * spu-tdep.c: Remove _initialize_spu_tdep prototype.
2476 * stabsread.c: Remove _initialize_stabsread prototype.
2477 * stack.c: Remove _initialize_stack prototype.
2478 * stap-probe.c: Remove _initialize_stap_probe prototype.
2479 * std-regs.c: Remove _initialize_frame_reg prototype.
2480 * symfile-debug.c: Remove _initialize_symfile_debug prototype.
2481 * symfile-mem.c: Remove _initialize_symfile_mem prototype.
2482 * symfile.c: Remove _initialize_symfile prototype.
2483 * symmisc.c: Remove _initialize_symmisc prototype.
2484 * symtab.c: Remove _initialize_symtab prototype.
2485 * target-dcache.c: Remove _initialize_target_dcache prototype.
2486 * target-descriptions.c: Remove _initialize_target_descriptions
2487 prototype.
2488 * thread.c: Remove _initialize_thread prototype.
2489 * tic6x-linux-tdep.c: Remove _initialize_tic6x_linux_tdep
2490 prototype.
2491 * tic6x-tdep.c: Remove _initialize_tic6x_tdep prototype.
2492 * tilegx-linux-nat.c: Remove _initialize_tile_linux_nat prototype.
2493 * tilegx-linux-tdep.c: Remove _initialize_tilegx_linux_tdep
2494 prototype.
2495 * tilegx-tdep.c: Remove _initialize_tilegx_tdep prototype.
2496 * tracefile-tfile.c: Remove _initialize_tracefile_tfile prototype.
2497 * tracefile.c: Remove _initialize_tracefile prototype.
2498 * tracepoint.c: Remove _initialize_tracepoint prototype.
2499 * tui/tui-hooks.c: Remove _initialize_tui_hooks prototype.
2500 * tui/tui-interp.c: Remove _initialize_tui_interp prototype.
2501 * tui/tui-layout.c: Remove _initialize_tui_layout prototype.
2502 * tui/tui-regs.c: Remove _initialize_tui_regs prototype.
2503 * tui/tui-stack.c: Remove _initialize_tui_stack prototype.
2504 * tui/tui-win.c: Remove _initialize_tui_win prototype.
2505 * tui/tui.c: Remove _initialize_tui prototype.
2506 * typeprint.c: Remove _initialize_typeprint prototype.
2507 * user-regs.c: Remove _initialize_user_regs prototype.
2508 * utils.c: Remove _initialize_utils prototype.
2509 * v850-tdep.c: Remove _initialize_v850_tdep prototype.
2510 * valarith.c: Remove _initialize_valarith prototype.
2511 * valops.c: Remove _initialize_valops prototype.
2512 * valprint.c: Remove _initialize_valprint prototype.
2513 * value.c: Remove _initialize_values prototype.
2514 * varobj.c: Remove _initialize_varobj prototype.
2515 * vax-bsd-nat.c: Remove _initialize_vaxbsd_nat prototype.
2516 * vax-nbsd-tdep.c: Remove _initialize_vaxnbsd_tdep prototype.
2517 * vax-tdep.c: Remove _initialize_vax_tdep prototype.
2518 * windows-nat.c: Remove _initialize_windows_nat,
2519 _initialize_check_for_gdb_ini, and _initialize_loadable
2520 prototypes.
2521 * windows-tdep.c: Remove _initialize_windows_tdep prototype.
2522 * xcoffread.c: Remove _initialize_xcoffread prototype.
2523 * xml-support.c: Remove _initialize_xml_support prototype.
2524 * xstormy16-tdep.c: Remove _initialize_xstormy16_tdep prototype.
2525 * xtensa-linux-nat.c: Remove _initialize_xtensa_linux_nat
2526 prototype.
2527 * xtensa-linux-tdep.c: Remove _initialize_xtensa_linux_tdep
2528 prototype.
2529 * xtensa-tdep.c: Remove _initialize_xtensa_tdep prototype.
2530
2531 2017-09-08 Keith Seitz <keiths@redhat.com>
2532
2533 * dwarf2read.c (struct field_info) <fnfields>: Remove unused
2534 field.
2535
2536 2017-09-08 Christoph Weinmann <christoph.t.weinmann@intel.com>
2537
2538 * f-valprint.c (f_val_print): Remove check for one byte
2539 sized integers. Remove printing of character type.
2540
2541 2017-09-08 Frank Penczek <frank.penczek@intel.com>
2542 Christoph Weinmann <christoph.t.weinmann@intel.com>
2543 Bernhard Heckel <bernhard.heckel@intel.com>
2544
2545 * f-typeprint.c (f_type_print_base): Use fprintfi_filtered
2546 to maintain proper indentation when printing pointers/refs.
2547
2548 2017-09-07 Joel Brobecker <brobecker@adacore.com>
2549
2550 GDB 8.0.1 released.
2551
2552 2017-09-07 Joel Brobecker <brobecker@adacore.com>
2553
2554 * NEWS (Changes in GDB 7.11): Remove entry for QStartupWithShell.
2555
2556 2017-09-05 Tom Tromey <tom@tromey.com>
2557
2558 * parse.c (funcall_chain): Now a std::vector.
2559 (start_arglist, end_arglist): Simplify.
2560 (free_funcalls): Remove.
2561 (parse_exp_in_context_1): Remove cleanup.
2562
2563 2017-09-05 Tom Tromey <tom@tromey.com>
2564
2565 * go-exp.y (go_parse): Don't create a cleanup.
2566
2567 2017-09-05 Tom Tromey <tom@tromey.com>
2568
2569 * d-exp.y (PrimaryExpression): Use std::string.
2570 (d_parse): Don't create a cleanup.
2571
2572 2017-09-05 Tom Tromey <tom@tromey.com>
2573
2574 * utils.c (do_clear_parser_state): Remove.
2575 (make_cleanup_clear_parser_state): Remove.
2576 * p-exp.y (pascal_parse): Use scoped_restore.
2577 * m2-exp.y (m2_parse): Use scoped_restore.
2578 * f-exp.y (f_parse): Use scoped_restore.
2579 * d-exp.y (d_parse): Use scoped_restore.
2580 * c-exp.y (c_parse): Use scoped_restore.
2581 * ada-exp.y (ada_parse): Use scoped_restore.
2582 * utils.h (make_cleanup_clear_parser_state): Remove.
2583
2584 2017-09-06 Keith Seitz <keiths@redhat.com>
2585
2586 * dwarf2read.c (dw2_linkage_name_attr): New function.
2587 (dw2_linkage_name): New function.
2588 (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
2589 (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
2590 (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
2591
2592 2017-09-06 Kamil Rytarowski <n54@gmx.com>
2593
2594 * config/djgpp/djconfig.sh: Correct shell portability issue.
2595
2596 2017-09-06 Kamil Rytarowski <n54@gmx.com>
2597
2598 * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
2599
2600 2017-09-06 John Baldwin <jhb@FreeBSD.org>
2601
2602 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
2603 * NEWS: Mention new FreeBSD/mips native configuration.
2604 * configure.host: Add aarch64*-*-freebsd*.
2605 * configure.nat: Likewise.
2606 * aarch64-fbsd-nat.c: New file.
2607
2608 2017-09-06 John Baldwin <jhb@FreeBSD.org>
2609
2610 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
2611 (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
2612 * NEWS: Mention new FreeBSD/aarch64 target.
2613 * configure.tgt: Add aarch64*-*-freebsd*.
2614 * aarch64-fbsd-tdep.c: New file.
2615 * aarch64-fbsd-tdep.h: New file.
2616
2617 2017-09-06 Kamil Rytarowski <n54@gmx.com>
2618
2619 * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
2620
2621 2017-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2622
2623 * parse.c (find_minsym_type_and_address): Don't relocate addresses
2624 of TLS symbols.
2625
2626 2017-09-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2627
2628 * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
2629 call.
2630
2631 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
2632
2633 * infrun.c (follow_exec): Call add_thread after
2634 target_find_description.
2635
2636 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
2637
2638 * infrun.c (handle_inferior_event_1): When exec'ing, read
2639 stop_pc after follow_exec.
2640
2641 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
2642
2643 * remote.c (process_g_packet): Update error message.
2644
2645 2017-09-05 Yao Qi <yao.qi@linaro.org>
2646
2647 * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
2648 targets.
2649
2650 2017-09-05 Pedro Alves <palves@redhat.com>
2651
2652 * eval.c (eval_call, evaluate_funcall): New functions, factored
2653 out from ...
2654 (evaluate_subexp_standard): ... this.
2655
2656 2017-09-05 Yao Qi <yao.qi@linaro.org>
2657
2658 * amd64-tdep.c (amd64_target_description): Create target
2659 descriptions.
2660 (_initialize_amd64_tdep): Don't call functions
2661 initialize_tdesc_amd64_*. Add self tests.
2662 * arch/amd64.c (amd64_create_target_description): Add parameter
2663 is_linux. Call set_tdesc_osabi if is_linux is true.
2664 * arch/amd64.h (amd64_create_target_description): Update the
2665 declaration.
2666 * arch/i386.c (i386_create_target_description): Add parameter
2667 is_linux. Call set_tdesc_osabi if is_linux is true.
2668 * arch/i386.h (i386_create_target_description): Update
2669 declaration.
2670 * configure.tgt: Add i386.o to gdb_target_obs.
2671 * features/Makefile (XMLTOC): Remove i386/*.xml.
2672 * features/i386/amd64-avx-avx512.c: Remove.
2673 * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
2674 * features/i386/amd64-avx-mpx.c: Remove.
2675 * features/i386/amd64-avx.c: Remove.
2676 * features/i386/amd64-mpx.c: Remove.
2677 * features/i386/amd64.c: Remove.
2678 * features/i386/i386-avx-avx512.c: Remove.
2679 * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
2680 * features/i386/i386-avx-mpx.c: Remove.
2681 * features/i386/i386-avx.c: Remove.
2682 * features/i386/i386-mmx.c: Remove.
2683 * features/i386/i386-mpx.c: Remove.
2684 * features/i386/i386.c: Remove.
2685 * i386-tdep.c: Don't include features/i386/i386*.c., include
2686 target-descriptions.h and arch/i386.h.
2687 (i386_target_description): Create target descriptions.
2688 (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
2689 functions. Do self tests.
2690
2691 2017-09-05 Yao Qi <yao.qi@linaro.org>
2692
2693 * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
2694 * features/i386/amd64-avx-avx512-linux.c: Removed.
2695 * features/i386/amd64-avx-linux.c: Removed.
2696 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
2697 * features/i386/amd64-avx-mpx-linux.c: Removed.
2698 * features/i386/amd64-linux.c: Removed.
2699 * features/i386/amd64-mpx-linux.c: Removed.
2700 * features/i386/x32-avx-avx512-linux.c: Removed.
2701 * features/i386/x32-avx-linux.c: Removed.
2702 * features/i386/x32-linux.c: Removed.
2703
2704 2017-09-05 Yao Qi <yao.qi@linaro.org>
2705
2706 * amd64-linux-tdep.c: Include arch/amd64.h. Don't include
2707 features/i386/*.c.
2708 (amd64_linux_read_description): Call
2709 amd64_create_target_description.
2710 * arch/amd64.c: New file.
2711 * arch/amd64.h: New file.
2712 * configure.tgt (x86_64-*-linux*): Append amd64.o.
2713 * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
2714
2715 2017-09-05 Yao Qi <yao.qi@linaro.org>
2716
2717 * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
2718 x32-XXX-linux.c. Include 64bit-XX.c and x32-XX.c.
2719 (amd64_linux_read_description): Create target descriptions.
2720 (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
2721 functions. Add unit tests.
2722 * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
2723 x32-core.xml.
2724 * features/i386/64bit-avx.c: Generated.
2725 * features/i386/64bit-avx512.c: Generated.
2726 * features/i386/64bit-core.c: Generated.
2727 * features/i386/64bit-linux.c: Generated.
2728 * features/i386/64bit-mpx.c: Generated.
2729 * features/i386/64bit-pkeys.c: Generated.
2730 * features/i386/64bit-segments.c: Generated.
2731 * features/i386/64bit-sse.c: Generated.
2732 * features/i386/x32-core.c: Generated.
2733 * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
2734 c files for amd64-linux and x32-linux.
2735
2736 2017-09-05 Yao Qi <yao.qi@linaro.org>
2737
2738 * amd64-linux-tdep.c (amd64_linux_read_description): New
2739 function.
2740 (amd64_linux_core_read_description): Call
2741 amd64_linux_read_description.
2742 (amd64_linux_init_abi): Likewise.
2743 (amd64_x32_linux_init_abi): Likewise.
2744 * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
2745 * x86-linux-nat.c (x86_linux_read_description): Call
2746 amd64_linux_read_description.
2747
2748 2017-09-05 Yao Qi <yao.qi@linaro.org>
2749
2750 * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
2751 comments.
2752
2753 2017-09-05 Yao Qi <yao.qi@linaro.org>
2754
2755 * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
2756 * features/i386/i386-avx-avx512-linux.c: Remove.
2757 * features/i386/i386-avx-linux.c: Remove.
2758 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
2759 * features/i386/i386-avx-mpx-linux.c: Remove.
2760 * features/i386/i386-linux.c: Remove.
2761 * features/i386/i386-mmx-linux.c: Remove.
2762 * features/i386/i386-mpx-linux.c: Remove.
2763
2764 2017-09-05 Yao Qi <yao.qi@linaro.org>
2765
2766 * Makefile.in (ALL_TARGET_OBS): Add i386.o.
2767 (SFILES): Add arch/i386.c.
2768 (HFILES_NO_SRCDIR): Add arch/i386.h.
2769 * arch/i386.c: New file.
2770 * arch/i386.h: New file.
2771 * arch/tdesc.h (allocate_target_description): Declare.
2772 (set_tdesc_architecture): Declare.
2773 (set_tdesc_osabi): Declare.
2774 * configure.tgt (i[34567]86-*-linux*): Add i386.o.
2775 * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
2776 include arch/i386.h.
2777 (i386_linux_read_description): Remove code and call
2778 i386_create_target_description.
2779 (set_tdesc_architecture): New function.
2780 (set_tdesc_osabi): New function.
2781 * target-descriptions.h (allocate_target_description): Remove.
2782
2783 2017-09-05 Yao Qi <yao.qi@linaro.org>
2784
2785 * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
2786 * target-descriptions.c (tdesc_create_feature): Likewise, and
2787 adjust code.
2788 * features/i386/32bit-avx.c: Re-generated.
2789 * features/i386/32bit-avx512.c: Re-generated.
2790 * features/i386/32bit-core.c: Re-generated.
2791 * features/i386/32bit-linux.c: Re-generated.
2792 * features/i386/32bit-mpx.c: Re-generated.
2793 * features/i386/32bit-pkeys.c: Re-generated.
2794 * features/i386/32bit-sse.c: Re-generated.
2795
2796 2017-09-05 Yao Qi <yao.qi@linaro.org>
2797
2798 * regformats/regdef.h (struct reg): Override operator == and !=.
2799
2800 2017-09-05 Yao Qi <yao.qi@linaro.org>
2801
2802 * arch/tdesc.h: New file.
2803 * regformats/regdat.sh: Generate code using tdesc_create_reg.
2804 * target-descriptions.c: Update comments.
2805 * target-descriptions.h: Include "arch/tdesc.h". Remove the
2806 declarations.
2807 * features/i386/32bit-avx.c: Re-generated.
2808 * features/i386/32bit-avx512.c: Re-generated.
2809 * features/i386/32bit-core.c: Re-generated.
2810 * features/i386/32bit-linux.c: Re-generated.
2811 * features/i386/32bit-mpx.c: Re-generated.
2812 * features/i386/32bit-pkeys.c: Re-generated.
2813 * features/i386/32bit-sse.c: Re-generated.
2814
2815 2017-09-05 Yao Qi <yao.qi@linaro.org>
2816
2817 * regformats/regdat.sh: Update generated code.
2818
2819 2017-09-05 Yao Qi <yao.qi@linaro.org>
2820
2821 * regformats/regdat.sh: Adjust code order.
2822
2823 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
2824
2825 * expprint.c (dump_subexp_body_standard): Use constant format
2826 string in fprintf_filtered call.
2827
2828 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2829
2830 * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
2831 NetBSD/i386.
2832 * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
2833
2834 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2835
2836 * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
2837
2838 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2839
2840 * bsd-kvm.o: Define _KMEMUSER.
2841 * configure.ac: Define _KMEMUSER when checking for "struct lwp".
2842 * configure: Regenerate.
2843
2844 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2845
2846 * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
2847 * i386-fbsd-nat.c: Likewise.
2848
2849 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2850
2851 * unittests/array-view-selftests.c: Add include of <array>.
2852
2853 2017-09-04 John Baldwin <jhb@FreeBSD.org>
2854
2855 * spu-tdep.c (flush_ea_cache): Add missing argument to
2856 call_function_by_hand.
2857
2858 2017-09-04 Pedro Alves <palves@redhat.com>
2859
2860 * NEWS (Safer support for debugging with no debug info): New.
2861
2862 2017-09-04 Pedro Alves <palves@redhat.com>
2863
2864 * c-exp.y (function_method, function_method_void): Add current
2865 instance flags to TYPE_INSTANCE.
2866 * dwarf2read.c (check_modifier): New.
2867 (compute_delayed_physnames): Assert that only C++ adds delayed
2868 physnames. Mark fn_fields as const/volatile depending on
2869 physname.
2870 * eval.c (make_params): New type_instance_flags parameter. Use
2871 it as the new type's instance flags.
2872 (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
2873 flags element and pass it to make_params.
2874 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
2875 instance flags element.
2876 (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
2877 * gdbtypes.h: Include "enum-flags.h".
2878 (type_instance_flags): New enum-flags type.
2879 (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
2880 (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
2881 * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
2882 (follow_type_instance_flags): New function.
2883 (operator_check_standard) <TYPE_INSTANCE>: Adjust.
2884 * parser-defs.h (follow_type_instance_flags): Declare.
2885 * valops.c (value_struct_elt_for_reference): const/volatile must
2886 match too.
2887
2888 2017-09-04 Pedro Alves <palves@redhat.com>
2889
2890 * cp-namespace.c (cp_search_static_and_baseclasses): Handle
2891 function/method scopes; lookup the nested name as a function local
2892 static variable.
2893
2894 2017-09-04 Pedro Alves <palves@redhat.com>
2895
2896 (%type <voidval>): Add function_method.
2897 * c-exp.y (exp): New production for calls with no arguments.
2898 (function_method, function_method_void_or_typelist): New
2899 productions.
2900 (exp): New production for "method()::static_var".
2901 * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
2902 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
2903 Handle OP_FUNC_STATIC_VAR.
2904 * parse.c (operator_length_standard):
2905 Handle OP_FUNC_STATIC_VAR.
2906
2907 2017-09-04 Pedro Alves <palves@redhat.com>
2908
2909 * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
2910 handling.
2911 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
2912 Ditto.
2913 * parse.c (operator_length_standard, operator_check_standard):
2914 Ditto.
2915 * std-operator.def (UNOP_MEMVAL_TLS): Delete.
2916
2917 2017-09-04 Pedro Alves <palves@redhat.com>
2918
2919 * ax-gdb.c: Include "typeprint.h".
2920 (gen_expr_for_cast): New function.
2921 (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
2922 <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
2923 type is unknown.
2924 * dwarf2read.c (new_symbol_full): Fallback to int instead of
2925 nodebug_data_symbol.
2926 * eval.c: Include "typeprint.h".
2927 (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
2928 Error out if symbol has unknown type.
2929 <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
2930 evaluate_subexp_for_cast.
2931 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
2932 OP_VAR_MSYM_VALUE.
2933 (evaluate_subexp_for_cast): New function.
2934 * gdbtypes.c (init_nodebug_var_type): New function.
2935 (objfile_type): Use it to initialize types of variables with no
2936 debug info.
2937 * typeprint.c (error_unknown_type): New.
2938 * typeprint.h (error_unknown_type): New declaration.
2939 * compile/compile-c-types.c (convert_type_basic): Handle
2940 TYPE_CODE_ERROR; warn and fallback to int for variables with
2941 unknown type.
2942
2943 2017-09-04 Pedro Alves <palves@redhat.com>
2944
2945 * eval.c (evaluate_var_value): New function, factored out from ...
2946 (evaluate_subexp_standard): ... here.
2947
2948 2017-09-04 Pedro Alves <palves@redhat.com>
2949
2950 * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
2951 Remove useless assignments to 'op'.
2952
2953 2017-09-04 Pedro Alves <palves@redhat.com>
2954
2955 * eval.c (eval_skip_value): New function.
2956 (evaluate_subexp_standard): Use it.
2957
2958 2017-09-04 Pedro Alves <palves@redhat.com>
2959
2960 * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
2961 function name from symbol/minsym and pass it to
2962 error_call_unknown_return_type.
2963
2964 2017-09-04 Pedro Alves <palves@redhat.com>
2965
2966 * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
2967 * ax-gdb.c (gen_msym_var_ref): New function.
2968 (gen_expr): Handle OP_VAR_MSYM_VALUE.
2969 * eval.c (evaluate_var_msym_value): New function.
2970 * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
2971 <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
2972 to call_function_by_hand.
2973 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
2974 Handle OP_VAR_MSYM_VALUE.
2975 (union exp_element) <msymbol>: New field.
2976 * minsyms.h (struct type): Forward declare.
2977 (find_minsym_type_and_address): Declare.
2978 * parse.c (write_exp_elt_msym): New function.
2979 (write_exp_msymbol): Delete, refactored as ...
2980 (find_minsym_type_and_address): ... this new function.
2981 (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
2982 (operator_length_standard, operator_check_standard): Handle
2983 OP_VAR_MSYM_VALUE.
2984 * std-operator.def (OP_VAR_MSYM_VALUE): New.
2985
2986 2017-09-04 Pedro Alves <palves@redhat.com>
2987
2988 * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
2989 TYPE_GNU_IFUNC specially here. Throw error if return type is
2990 unknown.
2991 * ada-typeprint.c (print_func_type): Handle functions with unknown
2992 return type.
2993 * c-typeprint.c (c_type_print_base): Handle functions and methods
2994 with unknown return type.
2995 * compile/compile-c-symbols.c (convert_symbol_bmsym)
2996 <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
2997 * compile/compile-c-types.c: Include "objfiles.h".
2998 (convert_func): For functions with unknown return type, warn and
2999 default to int.
3000 * compile/compile-object-run.c (compile_object_run): Adjust call
3001 to call_function_by_hand_dummy.
3002 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
3003 call_function_by_hand.
3004 * eval.c (evaluate_subexp_standard): Adjust calls to
3005 call_function_by_hand. Handle functions and methods with unknown
3006 return type. Pass expect_type to call_function_by_hand.
3007 * f-typeprint.c (f_type_print_base): Handle functions with unknown
3008 return type.
3009 * gcore.c (call_target_sbrk): Adjust call to
3010 call_function_by_hand.
3011 * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
3012 return type instead of int. Make nodebug_text_gnu_ifunc_symbol be
3013 an integer address type instead of nodebug.
3014 * guile/scm-value.c (gdbscm_value_call): Adjust call to
3015 call_function_by_hand.
3016 * infcall.c (error_call_unknown_return_type): New function.
3017 (call_function_by_hand): New "default_return_type" parameter.
3018 Pass it down.
3019 (call_function_by_hand_dummy): New "default_return_type"
3020 parameter. Use it instead of defaulting to int. If there's no
3021 default and the return type is unknown, throw an error. If
3022 there's a default return type, and the called function has no
3023 debug info, then assume the function is prototyped.
3024 * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
3025 New "default_return_type" parameter.
3026 (error_call_unknown_return_type): New declaration.
3027 * linux-fork.c (call_lseek): Cast return type of lseek.
3028 (inferior_call_waitpid, checkpoint_command): Adjust calls to
3029 call_function_by_hand.
3030 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
3031 calls to call_function_by_hand.
3032 * m2-typeprint.c (m2_procedure): Handle functions with unknown
3033 return type.
3034 * objc-lang.c (lookup_objc_class, lookup_child_selector)
3035 (value_nsstring, print_object_command): Adjust calls to
3036 call_function_by_hand.
3037 * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
3038 functions with unknown return type.
3039 (pascal_type_print_func_varspec_suffix): New function.
3040 (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
3041 TYPE_CODE_METHOD>: Use it.
3042 * python/py-value.c (valpy_call): Adjust call to
3043 call_function_by_hand.
3044 * rust-lang.c (rust_evaluate_funcall): Adjust call to
3045 call_function_by_hand.
3046 * valarith.c (value_x_binop, value_x_unop): Adjust calls to
3047 call_function_by_hand.
3048 * valops.c (value_allocate_space_in_inferior): Adjust call to
3049 call_function_by_hand.
3050 * typeprint.c (type_print_unknown_return_type): New function.
3051 * typeprint.h (type_print_unknown_return_type): New declaration.
3052
3053 2017-09-04 Pedro Alves <palves@redhat.com>
3054
3055 * gdbtypes.c (lookup_function_type_with_arguments): Mark function
3056 types with more than one parameter as prototyped.
3057
3058 2017-09-04 Pedro Alves <palves@redhat.com>
3059
3060 * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
3061 (disassemble_command): Use gdb_disassembly_flags instead of bare
3062 int.
3063 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
3064 (dump_insns, do_mixed_source_and_assembly_deprecated)
3065 (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
3066 Use gdb_disassembly_flags instead of bare int.
3067 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
3068 (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
3069 (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
3070 (DISASSEMBLY_SPECULATIVE): No longer macros. Instead they're...
3071 (enum gdb_disassembly_flag): ... values of this new enumeration.
3072 (gdb_disassembly_flags): Define.
3073 (gdb_disassembly)
3074 (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
3075 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
3076 gdb_disassembly_flags instead of bare int.
3077 * record-btrace.c (btrace_insn_history)
3078 (record_btrace_insn_history, record_btrace_insn_history_range)
3079 (record_btrace_insn_history_from): Use gdb_disassembly_flags
3080 instead of bare int.
3081 * record.c (get_insn_history_modifiers, cmd_record_insn_history):
3082 Use gdb_disassembly_flags instead of bare int.
3083 * target-debug.h (target_debug_print_gdb_disassembly_flags):
3084 Define.
3085 * target-delegates.c: Regenerate.
3086 * target.c (target_insn_history, target_insn_history_from)
3087 (target_insn_history_range): Use gdb_disassembly_flags instead of
3088 bare int.
3089 * target.h: Include "disasm.h".
3090 (struct target_ops) <to_insn_history, to_insn_history_from,
3091 to_insn_history_range>: Use gdb_disassembly_flags instead of bare
3092 int.
3093 (target_insn_history, target_insn_history_from)
3094 (target_insn_history_range): Use gdb_disassembly_flags instead of
3095 bare int.
3096
3097 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3098
3099 * cli/cli-script.c (build_command_line): For if/while commands,
3100 check whether args is empty.
3101
3102 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3103
3104 * cli/cli-script.h (enum misc_command_type): Move from defs.h.
3105 (enum command_control_type): Likewise.
3106 (struct command_line): Likewise.
3107 (free_command_lines): Likewise.
3108 (struct command_lines_deleter): Likewise.
3109 (command_line_up): Likewise.
3110 (read_command_lines): Likewise.
3111 (read_command_lines_1): Likewise.
3112 * defs.h (enum misc_command_type): Move to cli/cli-script.h.
3113 (enum command_control_type): Likewise.
3114 (struct command_line): Likewise.
3115 (free_command_lines): Likewise.
3116 (struct command_lines_deleter): Likewise.
3117 (command_line_up): Likewise.
3118 (read_command_lines): Likewise.
3119 (read_command_lines_1): Likewise.
3120 * breakpoint.h: Include cli/cli-script.h.
3121 * extension-priv.h: Likewise.
3122 * gdbcmd.h: Likewise.
3123
3124 2017-09-04 Pedro Alves <palves@redhat.com>
3125
3126 * ada-lang.c (is_known_support_routine): Move sal declaration to
3127 where it is initialized.
3128 * breakpoint.c (create_internal_breakpoint, init_catchpoint)
3129 (parse_breakpoint_sals, decode_static_tracepoint_spec)
3130 (clear_command, update_static_tracepoint): Remove init_sal
3131 references. Move declarations closer to initializations.
3132 * cli/cli-cmds.c (list_command): Move sal declarations closer to
3133 initializations.
3134 * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
3135 references. Move sal declarations closer to initializations.
3136 * frame.c (find_frame_sal): Return a symtab_and_line via function
3137 return instead of output parameter. Remove init_sal references.
3138 * frame.h (find_frame_sal): Return a symtab_and_line via function
3139 return instead of output parameter.
3140 * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
3141 * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
3142 instead of memset.
3143 (gdbscm_find_pc_line): Remove init_sal reference.
3144 * infcall.c (call_function_by_hand_dummy): Remove init_sal
3145 references. Move declarations closer to initializations.
3146 * infcmd.c (set_step_frame): Update. Move declarations closer to
3147 initializations.
3148 (finish_backward): Remove init_sal references. Move declarations
3149 closer to initializations.
3150 * infrun.c (process_event_stop_test, handle_step_into_function)
3151 (insert_hp_step_resume_breakpoint_at_frame)
3152 (insert_step_resume_breakpoint_at_caller): Likewise.
3153 * linespec.c (create_sals_line_offset, decode_digits_ordinary)
3154 (symbol_to_sal): Likewise.
3155 * probe.c (parse_probes_in_pspace): Remove init_sal reference.
3156 * python/py-frame.c (frapy_find_sal): Move sal declaration closer
3157 to its initialization.
3158 * reverse.c (save_bookmark_command): Use new/delete. Remove
3159 init_sal references. Move declarations closer to initializations.
3160 * source.c (get_current_source_symtab_and_line): Remove brace
3161 initialization.
3162 (set_current_source_symtab_and_line): Now takes the sal by const
3163 reference. Remove brace initialization.
3164 (line_info): Remove init_sal reference.
3165 * source.h (set_current_source_symtab_and_line): Now takes a
3166 symtab_and_line via const reference.
3167 * stack.c (set_current_sal_from_frame): Adjust.
3168 (print_frame_info): Adjust.
3169 (get_last_displayed_sal): Return the sal via function return
3170 instead of via output parameter. Simplify.
3171 (frame_info): Adjust.
3172 * stack.h (get_last_displayed_sal): Return the sal via function
3173 return instead of via output parameter.
3174 * symtab.c (init_sal): Delete.
3175 (find_pc_sect_line): Remove init_sal references. Move
3176 declarations closer to initializations.
3177 (find_function_start_sal): Remove init_sal references. Move
3178 declarations closer to initializations.
3179 * symtab.h (struct symtab_and_line): In-class initialize all
3180 fields.
3181 * tracepoint.c (set_traceframe_context)
3182 (print_one_static_tracepoint_marker): Remove init_sal references.
3183 Move declarations closer to initializations.
3184 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
3185 * tui/tui-stack.c (tui_show_frame_info): Adjust. Move
3186 declarations closer to initializations.
3187 * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
3188 init_sal references. Adjust.
3189
3190 2017-09-04 Pedro Alves <palves@redhat.com>
3191
3192 * ax-gdb.c (agent_command_1): Use range-for.
3193 * break-catch-throw.c (re_set_exception_catchpoint): Update.
3194 * breakpoint.c: Include "common/array-view.h".
3195 (init_breakpoint_sal, create_breakpoint_sal): Change sals
3196 parameter from struct symtabs_and_lines to
3197 array_view<symtab_and_line>. Adjust. Use range-for. Update.
3198 (breakpoint_sals_to_pc): Change sals parameter from struct
3199 symtabs_and_lines to std::vector reference.
3200 (check_fast_tracepoint_sals): Change sals parameter from struct
3201 symtabs_and_lines to std::array_view. Use range-for.
3202 (decode_static_tracepoint_spec): Return a std::vector instead of
3203 symtabs_and_lines. Update.
3204 (create_breakpoint): Update.
3205 (break_range_command, until_break_command, clear_command): Update.
3206 (base_breakpoint_decode_location, bkpt_decode_location)
3207 (bkpt_probe_create_sals_from_location)
3208 (bkpt_probe_decode_location, tracepoint_decode_location)
3209 (tracepoint_probe_decode_location)
3210 (strace_marker_create_sals_from_location): Return a std::vector
3211 instead of symtabs_and_lines.
3212 (strace_marker_create_breakpoints_sal): Update.
3213 (strace_marker_decode_location): Return a std::vector instead of
3214 symtabs_and_lines. Update.
3215 (update_breakpoint_locations): Change struct symtabs_and_lines
3216 parameters to gdb::array_view. Adjust.
3217 (location_to_sals): Return a std::vector instead of
3218 symtabs_and_lines. Update.
3219 (breakpoint_re_set_default): Use std::vector instead of struct
3220 symtabs_and_lines.
3221 (decode_location_default): Return a std::vector instead of
3222 symtabs_and_lines. Update.
3223 * breakpoint.h: Include "common/array-view.h".
3224 (struct breakpoint_ops) <decode_location>: Now returns a
3225 std::vector instead of returning a symtabs_and_lines via output
3226 parameter.
3227 (update_breakpoint_locations): Change sals parameters to use
3228 gdb::array_view.
3229 * cli/cli-cmds.c (edit_command, list_command): Update to use
3230 std::vector and gdb::array_view.
3231 (ambiguous_line_spec): Adjust to use gdb::array_view and
3232 range-for.
3233 (compare_symtabs): Rename to ...
3234 (cmp_symtabs): ... this. Change parameters to symtab_and_line
3235 const reference and adjust.
3236 (filter_sals): Rewrite using std::vector and standard algorithms.
3237 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
3238 (jump_command): Update to use std::vector.
3239 * linespec.c (struct linespec_state) <canonical_names>: Update
3240 comment.
3241 (add_sal_to_sals_basic): Delete.
3242 (add_sal_to_sals, filter_results, convert_results_to_lsals)
3243 (decode_line_2, create_sals_line_offset)
3244 (convert_address_location_to_sals, convert_linespec_to_sals)
3245 (convert_explicit_location_to_sals, parse_linespec)
3246 (event_location_to_sals, decode_line_full, decode_line_1)
3247 (decode_line_with_current_source)
3248 (decode_line_with_last_displayed, decode_objc)
3249 (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
3250 (linespec_result::~linespec_result): Adjust to use std::vector
3251 instead of symtabs_and_lines.
3252 * linespec.h (linespec_sals::sals): Now a std::vector.
3253 (struct linespec_result): Use std::vector, bool, and in-class
3254 initialization.
3255 (decode_line_1, decode_line_with_current_source)
3256 (decode_line_with_last_displayed): Return std::vector.
3257 * macrocmd.c (info_macros_command): Use std::vector.
3258 * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
3259 * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
3260 std::vector.
3261 * probe.h (parse_probes): Return a std::vector.
3262 * python/python.c (gdbpy_decode_line): Use std::vector and
3263 gdb::array_view.
3264 * source.c (select_source_symtab, line_info): Use std::vector.
3265 * stack.c (func_command): Use std::vector.
3266 * symtab.h (struct symtabs_and_lines): Delete.
3267 * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
3268
3269 2017-09-04 Pedro Alves <palves@redhat.com>
3270
3271 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3272 unittests/array-view-selftests.c.
3273 (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
3274 * common/array-view.h: New file.
3275 * unittests/array-view-selftests.c: New file.
3276
3277 2017-09-04 Pedro Alves <palves@redhat.com>
3278
3279 * cli/cli-cmds.c (edit_command): Pass message to
3280 ambiguous_line_spec.
3281 (list_command): Pass message to ambiguous_line_spec. Say
3282 "first"/"last" instead of "start" and "end" to be consistent with
3283 the manual.
3284 (ambiguous_line_spec): Add 'format' and vararg parameters. Use
3285 them to print formatted message.
3286
3287 2017-09-04 Pedro Alves <palves@redhat.com>
3288
3289 * btrace.c (ftrace_add_pt): Pass btrace_insn to
3290 ftrace_update_insns by reference instead of pointer.
3291
3292 2017-09-04 Yao Qi <yao.qi@linaro.org>
3293
3294 * i386-go32-tdep.c: Include x86-xstate.h.
3295 (i386_go32_init_abi): Call i386_target_description.
3296 * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
3297 if xcr0 is X86_XSTATE_X87_MASK.
3298 * i386-tdep.h (tdesc_i386): Remove the declaration.
3299 (tdesc_i386_mmx): Likewise.
3300
3301 2017-09-04 Yao Qi <yao.qi@linaro.org>
3302
3303 * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
3304 X86_XSTATE_SSE_MASK instead of 0.
3305
3306 2017-09-04 Yao Qi <yao.qi@linaro.org>
3307
3308 * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
3309 i386_target_description.
3310 * i386-fbsd-nat.c (i386fbsd_read_description): Call
3311 i386_target_description.
3312 * i386-tdep.c (i386_gdbarch_init): Likewise.
3313
3314 2017-09-04 Yao Qi <yao.qi@linaro.org>
3315
3316 * amd64-darwin-tdep.c: Include "x86-xstate.h".
3317 (x86_darwin_init_abi_64): Call amd64_target_description.
3318 * amd64-dicos-tdep.c: Likewise.
3319 * amd64-fbsd-nat.c: Likewise.
3320 * amd64-fbsd-tdep.c: Likewise.
3321 * amd64-nbsd-tdep.c: Likewise.
3322 * amd64-obsd-tdep.c: Likewise.
3323 * amd64-sol2-tdep.c: Likewise.
3324 * amd64-windows-tdep.c: Likewise.
3325 * amd64-tdep.h (tdesc_amd64): Remove the declaration.
3326
3327 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3328
3329 * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
3330 (btrace_function) <insn>: Change type to use std::vector.
3331 * btrace.c (ftrace_debug, ftrace_call_num_insn,
3332 ftrace_find_call, ftrace_new_gap, ftrace_update_function,
3333 ftrace_update_insns, ftrace_compute_global_level_offset,
3334 btrace_stitch_bts, btrace_clear, btrace_insn_get,
3335 btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
3336 change to std::vector.
3337 (ftrace_update_insns): Adjust to change to std::vector, change
3338 type of INSN parameter.
3339 (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
3340 * record-btrace.c (btrace_call_history_insn_range,
3341 btrace_compute_src_line_range,
3342 record_btrace_frame_prev_register): Adjust to change to
3343 std::vector.
3344 * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
3345 to change to std::vector.
3346
3347 2017-09-03 Tom Tromey <tom@tromey.com>
3348
3349 * corefile.c (reopen_exec_file): Use std::string.
3350
3351 2017-09-03 Tom Tromey <tom@tromey.com>
3352
3353 * compile/compile.c (compile_register_name_mangled): Return
3354 std::string.
3355 * compile/compile-loc2c.c (pushf_register_address): Update.
3356 (pushf_register): Update.
3357 * compile/compile-c-types.c (convert_array): Update.
3358 * compile/compile-c-symbols.c (generate_vla_size): Update.
3359 (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
3360 (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
3361 (convert_one_symbol): Update.
3362 (generate_c_for_for_one_variable): Update.
3363 * compile/compile-c-support.c (c_get_range_decl_name): Return a
3364 std::string.
3365 (generate_register_struct): Update.
3366 * compile/compile-internal.h (c_get_range_decl_name): Return a
3367 std::string.
3368 (compile_register_name_mangled): Return std::string.
3369
3370 2017-09-03 Tom Tromey <tom@tromey.com>
3371
3372 * utils.c (perror_string): Return a std::string.
3373 (throw_perror_with_name, perror_warning_with_name): Update.
3374
3375 2017-09-03 Tom Tromey <tom@tromey.com>
3376
3377 * demangle.c (demangle_command): Use std::string,
3378 unique_xmalloc_ptr.
3379
3380 2017-09-03 Tom Tromey <tom@tromey.com>
3381
3382 * cli/cli-setshow.c (do_set_command): Use std::string.
3383
3384 2017-09-03 Tom Tromey <tom@tromey.com>
3385
3386 * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
3387
3388 2017-09-03 Tom Tromey <tom@tromey.com>
3389
3390 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
3391
3392 2017-09-03 Tom Tromey <tom@tromey.com>
3393
3394 * mi/mi-cmd-env.c (env_execute_cli_command): Use
3395 gdb::unique_xmalloc_ptr.
3396
3397 2017-09-03 Tom Tromey <tom@tromey.com>
3398
3399 * thread.c (print_thread_info_1): Use string_printf.
3400 (thread_apply_command, thread_apply_all_command): Use
3401 std::string.
3402
3403 2017-09-03 Tom Tromey <tom@tromey.com>
3404
3405 * valprint.c (val_print_string): Update.
3406 * gdbcore.h (memory_error_message): Return std::string.
3407 * corefile.c (memory_error_message): Return std::string.
3408 (memory_error): Update.
3409 * breakpoint.c (insert_bp_location): Update.
3410
3411 2017-09-03 Simon Marchi <simon.marchi@ericsson.com>
3412
3413 * target/waitstatus.h (target_waitstatus_to_string): Change
3414 return type to std::string.
3415 * target/waitstatus.c (target_waitstatus_to_string): Return
3416 std::string.
3417 * target.h (target_waitstatus_to_string): Remove declaration.
3418 * infrun.c (resume, clear_proceed_status_thread,
3419 print_target_wait_results, do_target_wait, save_waitstatus,
3420 stop_all_threads): Adjust.
3421 * record-btrace.c (record_btrace_wait): Adjust.
3422 * target-debug.h
3423 (target_debug_print_struct_target_waitstatus_p): Adjust.
3424
3425 2017-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3426
3427 PR gdb/22046
3428 * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
3429 detection.
3430
3431 2017-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
3432
3433 * NEWS (Changes since GDB 8.0): Add entry mentioning new support
3434 for setting/unsetting environment variables on the remote target.
3435 (New remote packets): Add entries for QEnvironmentHexEncoded,
3436 QEnvironmentUnset and QEnvironmentReset.
3437 * common/environ.c (gdb_environ::operator=): Extend method to
3438 handle m_user_set_env_list and m_user_unset_env_list.
3439 (gdb_environ::clear): Likewise.
3440 (match_var_in_string): Change type of first parameter from 'char
3441 *' to 'const char *'.
3442 (gdb_environ::set): Extend method to handle
3443 m_user_set_env_list and m_user_unset_env_list.
3444 (gdb_environ::unset): Likewise.
3445 (gdb_environ::clear_user_set_env): New method.
3446 (gdb_environ::user_set_envp): Likewise.
3447 (gdb_environ::user_unset_envp): Likewise.
3448 * common/environ.h (gdb_environ): Handle m_user_set_env_list and
3449 m_user_unset_env_list on move constructor/assignment.
3450 (unset): Add new default parameter 'update_unset_list = true'.
3451 (clear_user_set_env): New method.
3452 (user_set_envp): Likewise.
3453 (user_unset_envp): Likewise.
3454 (m_user_set_env_list): New std::set.
3455 (m_user_unset_env_list): Likewise.
3456 * common/rsp-low.c (hex2str): New function.
3457 (bin2hex): New overload for bin2hex function.
3458 * common/rsp-low.c (hex2str): New prototype.
3459 (str2hex): New overload prototype.
3460 * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
3461 QEnvironmentUnset and QEnvironmentReset.
3462 (remote_protocol_features): Add QEnvironmentHexEncoded,
3463 QEnvironmentUnset and QEnvironmentReset packets.
3464 (send_environment_packet): New function.
3465 (extended_remote_environment_support): Likewise.
3466 (extended_remote_create_inferior): Call
3467 extended_remote_environment_support.
3468 (_initialize_remote): Add QEnvironmentHexEncoded,
3469 QEnvironmentUnset and QEnvironmentReset packet configs.
3470 * unittests/environ-selftests.c (gdb_selftest_env_var):
3471 New variable.
3472 (test_vector_initialization): New function.
3473 (test_init_from_host_environ): Likewise.
3474 (test_reinit_from_host_environ): Likewise.
3475 (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
3476 Likewise.
3477 (test_unset_set_empty_vector): Likewise.
3478 (test_vector_clear): Likewise.
3479 (test_std_move): Likewise.
3480 (test_move_constructor):
3481 (test_self_move): Likewise.
3482 (test_set_unset_reset): Likewise.
3483 (run_tests): Rewrite in terms of the functions above.
3484
3485 2017-08-31 Weimin Pan <weimin.pan@oracle.com>
3486
3487 * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
3488 (adi_available): Use a temp variable of type CORE_ADDR as argument
3489 3 when calling target_auxv_search.
3490 (adi_normalize_address): Use masks and xor operators to calculate
3491 normalized address.
3492 (adi_read_versions, adi_write_versions, adi_print_versions)
3493 (do_examine, do_assign): Use paddress.
3494
3495 2017-08-29 John Baldwin <jhb@FreeBSD.org>
3496
3497 * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
3498 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
3499 out of loop and add supply of FIR.
3500 (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
3501 add collect of FIR.
3502
3503 2017-08-28 Simon Marchi <simon.marchi@ericsson.com>
3504
3505 PR gdb/21827
3506 * cli/cli-script.c (define_command): Don't convert command name
3507 to lower case.
3508
3509 2017-08-25 Joel Brobecker <brobecker@adacore.com>
3510
3511 * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
3512 Update all callers accordingly. Remove all code blocks handling
3513 the case where DISPP is not NULL.
3514
3515 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3516
3517 PR symtab/22003
3518 * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
3519 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
3520 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
3521
3522 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3523
3524 * dwarf2read.c (build_type_psymtabs_reader): New prototype.
3525 (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
3526 (read_comp_units_from_section): New parameter abbrev_section, use
3527 read_and_check_comp_unit_head, allocate signatured_type if needed.
3528 (create_all_comp_units): Update read_comp_units_from_section caller.
3529
3530 2017-08-23 Pedro Alves <palves@redhat.com>
3531
3532 PR remote/21852
3533 * remote.c (add_current_inferior_and_thread): Set inferior_ptid
3534 to null_ptid and switch to thread without reading the registers
3535 after adding the inferior.
3536
3537 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3538
3539 * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
3540 compile-gcc.
3541 * compile/compile.c (compile_gcc, show_compile_gcc): New.
3542 (compile_to_object): Implement compile_gcc.
3543 (_initialize_compile): Install "set compile-gcc". Initialize
3544 compile_gcc.
3545
3546 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3547
3548 * compile/compile.c (compile_to_object): Conditionally call
3549 set_verbose. Conditionally call compile or compile_v0.
3550
3551 2017-08-07 Weimin Pan <weimin.pan@oracle.com>
3552
3553 * sparc64-tdep.h: (adi_normalize_address): New export.
3554 * sparc-nat.h: (open_adi_tag_fd): New export.
3555 * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
3556 * sparc64-linux-tdep.c:
3557 (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
3558 (sparc64_linux_handle_segmentation_fault): New function.
3559 (sparc64_linux_init_abi): Register
3560 sparc64_linux_handle_segmentation_fault
3561 * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
3562 (sparc64_addr_bits_remove): New function.
3563 (sparc64_init_abi): Register sparc64_addr_bits_remove.
3564 (MAX_PROC_NAME_SIZE): New macro.
3565 (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
3566 (sparc64adilist): New variable.
3567 (adi_proc_list): New variable.
3568 (find_adi_info): New function.
3569 (add_adi_info): New function.
3570 (get_adi_info_proc): New function.
3571 (get_adi_info): New function.
3572 (info_adi_command): New function.
3573 (read_maps_entry): New function.
3574 (adi_available): New function.
3575 (adi_normalize_address): New function.
3576 (adi_align_address): New function.
3577 (adi_convert_byte_count): New function.
3578 (adi_tag_fd): New function.
3579 (adi_is_addr_mapped): New function.
3580 (adi_read_versions): New function.
3581 (adi_write_versions): New function.
3582 (adi_print_versions): New function.
3583 (do_examine): New function.
3584 (do_assign): New function.
3585 (adi_examine_command): New function.
3586 (adi_assign_command): New function.
3587 (_initialize_sparc64_adi_tdep): New function.
3588
3589 2017-08-22 Simon Marchi <simon.marchi@ericsson.com>
3590
3591 * breakpoint.c (breakpoints_info): Rename to ...
3592 (info_breakpoints_command): ... this.
3593 (watchpoints_info): Rename to ...
3594 (info_watchpoints_command): ... this.
3595 (tracepoints_info): Rename to ...
3596 (info_tracepoints_command): ... this.
3597 (_initialize_breakpoint): Adjust.
3598 * dcache.c (dcache_info): Rename to ...
3599 (info_display_command): ... this.
3600 (_initialize_dcache): Adjust.
3601 * frame.h (args_info): Rename to ...
3602 (info_args_command): ... this.
3603 (locals_info): Rename to ...
3604 (info_locals_command): ... this.
3605 * infcmd.c (nofp_registers_info): Rename to ...
3606 (info_registers_command): ... this.
3607 (float_info): Rename to ...
3608 (info_float_command): ... this.
3609 (program_info): Rename to ...
3610 (info_program_command): ... this.
3611 (all_registers_info): Rename to ...
3612 (info_all_registers_command): ... this.
3613 (vector_info): Rename to ...
3614 (info_vector_command): ... this.
3615 (float_info): Rename to ...
3616 (info_float_command): ... this.
3617 (_initialize_infcmd): Adjust.
3618 * inferior.h (term_info): Rename to ...
3619 (info_terminal_command): ... this.
3620 * inflow.c (term_info): Rename to ...
3621 (info_terminal_command): ... this.
3622 (_initialize_inflow): Adjust.
3623 * infrun.c (signals_info): Rename to ...
3624 (info_signals_command): ... this.
3625 (_initialize_infrun): Adjust.
3626 * objc-lang.c (classes_info): Rename to ...
3627 (info_classes_command): ... this.
3628 (selectors_info): Rename to ...
3629 (info_selectors_command): ... this.
3630 (_initialize_objc_language): Adjust.
3631 * printcmd.c (sym_info): Rename to ...
3632 (info_symbol_command): ... this.
3633 (address_info): Rename to ...
3634 (info_address_command): ... this.
3635 (display_info): Rename to ...
3636 (info_display_command): ... this.
3637 (_initialize_printcmd): Adjust.
3638 * reverse.c (bookmarks_info): Rename to ...
3639 (info_breakpoints_command): ... this.
3640 (_initialize_reverse): Adjust.
3641 * ser-go32.c (dos_info): Rename to ...
3642 (info_serial_command): ... this.
3643 (_initialize_ser_dos): Adjust.
3644 * skip.c (skip_info): Rename to ...
3645 (info_skip_command): ... this.
3646 (_initialize_step_skip): Adjust.
3647 * source.c (line_info): Rename to ...
3648 (info_line_command): ... this.
3649 (source_info): Rename to ...
3650 (info_source_command)
3651 * stack.c (frame_info): Rename to ...
3652 (info_frame_command): ... this.
3653 (locals_info): Rename to ...
3654 (info_locals_command): ... this.
3655 (args_info): Rename to ...
3656 (info_args_command): ... this.
3657 (_initialize_stack): Adjust.
3658 * symtab.c (sources_info): Rename to ...
3659 (info_sources_command): ... this.
3660 (variables_info): Rename to ...
3661 (info_variables_command): ... this.
3662 (functions_info): Rename to ...
3663 (info_functions_command): ... this.
3664 (types_info): Rename to ...
3665 (info_types_command): ... this.
3666 (_initialize_symtab): Adjust.
3667 * target.c (target_info): Rename to ...
3668 (info_target_command): ... this.
3669 (initialize_targets): Adjust.
3670 * tracepoint.c (tvariables_info): Rename to ...
3671 (info_tvariables_command): ... this.
3672 (scope_info): Rename to ...
3673 (info_scope_command): ... this.
3674 (trace_dump_actions): Adjust.
3675 (_initialize_tracepoint): Adjust.
3676
3677 2017-08-22 Tom Tromey <tom@tromey.com>
3678
3679 * breakpoint.h (install_breakpoint): Update.
3680 * breakpoint.c (add_solib_catchpoint): Update.
3681 (install_breakpoint): Change argument to a std::unique_ptr.
3682 (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
3683 (create_breakpoint_sal, create_breakpoint): Update.
3684 (watch_command_1, catch_exec_command_1)
3685 (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
3686 (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
3687 Return the breakpoint.
3688 (set_raw_breakpoint_without_location, set_raw_breakpoint)
3689 (new_single_step_breakpoint): Update.
3690 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
3691 std::unique_ptr.
3692 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
3693 std::unique_ptr.
3694 * break-catch-sig.c (create_signal_catchpoint): Use
3695 std::unique_ptr.
3696 * ada-lang.c (create_ada_exception_catchpoint): Use
3697 std::unique_ptr.
3698
3699 2017-08-22 Tom Tromey <tom@tromey.com>
3700
3701 * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
3702
3703 2017-08-22 Tom Tromey <tom@tromey.com>
3704
3705 * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
3706 (lookup_partial_symbol): Update.
3707
3708 2017-08-22 Tom Tromey <tom@tromey.com>
3709
3710 * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
3711 * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
3712 (find_and_open_source, symtab_to_fullname): Update.
3713 * psymtab.c (psymtab_to_fullname): Update.
3714
3715 2017-08-22 Tom Tromey <tom@tromey.com>
3716
3717 * exec.c (exec_file_attach): Update.
3718 * linux-thread-db.c (try_thread_db_load): Update.
3719 * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
3720 * utils.c (gdb_realpath): Change return type.
3721 (gdb_realpath_keepfile): Update.
3722 (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
3723 (_initialize_utils): Register the new self test.
3724 * source.c (openp): Update.
3725 (find_and_open_source): Update.
3726 * nto-tdep.c (nto_find_and_open_solib): Update.
3727 * main.c (set_gdb_data_directory): Update.
3728 (captured_main_1): Update.
3729 * dwarf2read.c (dwarf2_get_dwz_file): Update
3730 (dw2_map_symbol_filenames): Update.
3731 * auto-load.c (auto_load_safe_path_vec_update): Update.
3732 (filename_is_in_auto_load_safe_path_vec): Change type of
3733 "filename_realp".
3734 (auto_load_objfile_script): Update.
3735 (file_is_auto_load_safe): Update. Use std::string.
3736 * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
3737
3738 2017-08-22 Tom Tromey <tom@tromey.com>
3739
3740 * utils.c (gdb_realpath_keepfile): Return a
3741 gdb::unique_xmalloc_ptr.
3742 * exec.c (exec_file_attach): Update.
3743 * utils.h (gdb_realpath_keepfile): Return a
3744 gdb::unique_xmalloc_ptr.
3745
3746 2017-08-22 Tom Tromey <tom@tromey.com>
3747
3748 * compile/compile.c (compile_file_command): Use
3749 gdb::unique_xmalloc_ptr, std::string.
3750 * utils.c (gdb_abspath): Change return type.
3751 * source.c (openp): Update.
3752 * objfiles.c (allocate_objfile): Update.
3753 * main.c (set_gdb_data_directory): Update.
3754 * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
3755
3756 2017-08-22 Zhouyi Zhou <zhouzhouyi@gmail.com>
3757
3758 * cli-cmds.c (list_commands): List actual code around more than
3759 one location.
3760
3761 2017-08-21 John Baldwin <jhb@FreeBSD.org>
3762
3763 * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
3764
3765 2017-08-21 Pedro Alves <palves@redhat.com>
3766
3767 PR gdb/19487
3768 * c-exp.y (variable production): Handle function aliases.
3769 * minsyms.c (msymbol_is_text): New function.
3770 * minsyms.h (msymbol_is_text): Declare.
3771 * symtab.c (find_function_alias_target): New function.
3772 * symtab.h (find_function_alias_target): Declare.
3773
3774 2017-08-21 Pedro Alves <palves@redhat.com>
3775
3776 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
3777 typedefs.
3778 * typeprint.c (whatis_exp): If handling "whatis", and expression
3779 is OP_TYPE, strip one typedef level. Otherwise don't strip
3780 typedefs here.
3781 * valops.c (value_cast): Save "to" type before resolving
3782 stubs/typedefs. Use that type as resulting value's type.
3783
3784 2017-08-18 Tom Tromey <tom@tromey.com>
3785 Pedro Alves <palves@redhat.com>
3786
3787 * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
3788 * sol-thread.c (sol_thread_resume, sol_thread_wait)
3789 (sol_thread_xfer_partial, rw_common): Use scoped_restore.
3790 * procfs.c (procfs_do_thread_registers): Use scoped_restore.
3791 * proc-service.c (ps_xfer_memory): Use scoped_restore.
3792 * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
3793 (linux_get_siginfo_data): Add "thread" argument. Use
3794 scoped_restore.
3795 * linux-nat.c (linux_child_follow_fork)
3796 (check_stopped_by_watchpoint): Use scoped_restore.
3797 * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
3798 (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
3799 (restore_inferior_ptid, save_inferior_ptid): Remove.
3800 * btrace.c (btrace_fetch): Use scoped_restore.
3801 * bsd-uthread.c (bsd_uthread_fetch_registers)
3802 (bsd_uthread_store_registers): Use scoped_restore.
3803 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
3804 scoped_restore.
3805 * aix-thread.c (aix_thread_resume, aix_thread_wait)
3806 (aix_thread_xfer_partial): Use scoped_restore.
3807 * inferior.h (save_inferior_ptid): Remove.
3808
3809 2017-08-18 Yao Qi <yao.qi@linaro.org>
3810
3811 PR tdep/21818
3812 * arm-tdep.c (gdb_print_insn_arm): Mark
3813 USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
3814
3815 2017-08-18 Yao Qi <yao.qi@linaro.org>
3816
3817 * NEWS: Mention GDBserver's new option "--selftest".
3818 * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
3819 * selftest.c: Move it to common/selftest.c.
3820 * selftest.h: Move it to common/selftest.h.
3821 * selftest-arch.c (reset): New function.
3822 (tests_with_arch): Call reset.
3823
3824 2017-08-18 Yao Qi <yao.qi@linaro.org>
3825
3826 * selftest.c (run_tests): Don't call QUIT. Call debug_printf
3827 instead of exception_fprintf and printf_filtered.
3828
3829 2017-08-18 Yao Qi <yao.qi@linaro.org>
3830
3831 * selftest.c (register_self_test): Rename it to
3832 selftests::register_test.
3833 (run_self_tests): selftest::run_tests.
3834 * selftest.h: Update declarations.
3835 * selftest-arch.c (register_self_test_foreach_arch): Rename it to
3836 selftests::register_test_foreach_arch.
3837 * selftest-arch.h: Update declaration.
3838 * aarch64-tdep.c: Update.
3839 * arm-tdep.c: Likewise.
3840 * disasm-selftests.c: Likewise.
3841 * dwarf2loc.c: Likewise.
3842 * dwarf2-frame.c: Likewise.
3843 * findvar.c: Likewise.
3844 * gdbarch-selftests.c: Likewise.
3845 * maint.c (maintenance_selftest): Likewise.
3846 * regcache.c: Likewise.
3847 * rust-exp.y: Likewise.
3848 * selftest-arch.c: Likewise.
3849 * unittests/environ-selftests.c: Likewise.
3850 * unittests/function-view-selftests.c: Likewise.
3851 * unittests/offset-type-selftests.c: Likewise.
3852 * unittests/optional-selftests.c: Likewise.
3853 * unittests/scoped_restore-selftests.c: Likewise.
3854 * utils-selftests.c: Likewise.
3855
3856 2017-08-17 Pedro Alves <palves@redhat.com>
3857
3858 * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
3859 local.
3860
3861 2017-08-17 Pedro Alves <palves@redhat.com>
3862
3863 * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
3864 field.
3865 (reset_die_in_process): Delete, replaced by ...
3866 (process_die_scope): ... this new class. Make it responsible for
3867 freeing cu->line_header too.
3868 (process_die): Use process_die_scope.
3869 (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
3870 cu->line_header_die_owner. Don't release the line header if it's
3871 owned by the CU.
3872 (setup_type_unit_groups): Make the CU/DIE own the line header.
3873 Don't release the line header here.
3874
3875 2017-08-17 Alex Lindsay <alexlindsay239@gmail.com> (tiny change)
3876
3877 * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
3878
3879 2017-08-17 Ruslan Kabatsayev <b7.10110111@gmail.com>
3880
3881 * NEWS: Mention new shortcuts for nexti and stepi in TUI
3882 Single-Key mode
3883
3884 2017-08-16 Ruslan Kabatsayev <b7.10110111@gmail.com>
3885
3886 * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
3887 mode command list.
3888
3889 2017-08-15 Stafford Horne <shorne@gmail.com>
3890
3891 * MAINTAINERS (Write After Approval): Add Stafford Horne.
3892
3893 2017-08-15 Stafford Horne <shorne@gmail.com>
3894
3895 * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
3896
3897 2017-08-15 Sergio Durigan Junior <sergiodj@redhat.com>
3898
3899 PR gdb/21954
3900 * infcmd.c (unset_environment_command): Use the 'clear' method on
3901 the environment instead of resetting it.
3902
3903 2017-08-15 John Baldwin <jhb@FreeBSD.org>
3904
3905 * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
3906 platforms.
3907
3908 2017-08-14 Tom Tromey <tom@tromey.com>
3909
3910 * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
3911 (print_binary_chars): Likewise.
3912 (BITS_IN_BYTES): Remove.
3913
3914 2017-08-14 Tom Tromey <tom@tromey.com>
3915
3916 PR gdb/21675
3917 * valprint.c (LOW_ZERO): Change value to 034.
3918 (print_octal_chars): Add static_asserts for octal constants.
3919 * printcmd.c (print_scalar_formatted): Add 'd' case.
3920
3921 2017-08-11 Tom Tromey <tom@tromey.com>
3922
3923 * symfile.c (add_symbol_file_command): Use std::vector.
3924
3925 2017-08-14 Tom Tromey <tom@tromey.com>
3926
3927 * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
3928 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
3929 std::move.
3930 * break-catch-sig.c (create_signal_catchpoint): Use std::move.
3931
3932 2017-08-11 Pedro Alves <palves@redhat.com>
3933
3934 * infrun.c (process_event_stop_test): Adjust
3935 function_name_is_marked_for_skip call.
3936 * skip.c: Include <list>.
3937 (skiplist_entry): Make it a class with private fields, and
3938 getters/setters.
3939 (skiplist_entry_chain): Delete.
3940 (skiplist_entries): New.
3941 (skiplist_entry_count): Delete.
3942 (highest_skiplist_entry_num): New.
3943 (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
3944 (add_skiplist_entry): Delete.
3945 (skiplist_entry::skiplist_entry): New.
3946 (skiplist_entry::add_entry): New.
3947 (skip_file_command, skip_function): Adjust.
3948 (compile_skip_regexp): Delete.
3949 (skip_command): Don't compile regexp here. Adjust to use
3950 skiplist_entry::add_entry.
3951 (skip_info): Adjust to use range-for and getters.
3952 (skip_enable_command, skip_disable_command): Adjust to use
3953 range-for and setters.
3954 (skip_delete_command): Adjust to use std::list.
3955 (add_skiplist_entry): Delete.
3956 (skip_file_p): Delete, refactored as ...
3957 (skiplist_entry::do_skip_file_p): ... this new method.
3958 (skip_gfile_p): Delete, refactored as ...
3959 (skiplist_entry::do_gskip_file_p): ... this new method.
3960 (skip_function_p, skip_rfunction_p): Delete, refactored as ...
3961 (skiplist_entry::skip_function_p): ... this new method.
3962 (function_name_is_marked_for_skip): Now returns bool, and takes
3963 the function sal by const reference. Adjust to use range-for and
3964 skiplist_entry methods.
3965 (_initialize_step_skip): Remove references to
3966 skiplist_entry_chain, skiplist_entry_count.
3967 * skip.h (function_name_is_marked_for_skip): Now returns bool, and
3968 takes the function sal by const reference.
3969
3970 2017-08-11 Yao Qi <yao.qi@linaro.org>
3971
3972 * dwarf2-frame.c (clear_pointer_cleanup): Remove.
3973 (dwarf2_frame_cache): Remove reset_cache_cleanup.
3974 (dwarf2_frame_cache):
3975 * frame-unwind.c (frame_unwind_try_unwinder): Catch
3976 RETURN_MASK_ALL and set *this_case to NULL.
3977 * frame-unwind.h: Update comments.
3978
3979 2017-08-11 Yao Qi <yao.qi@linaro.org>
3980
3981 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
3982 (dwarf2_frame_state_copy_regs): Remove.
3983 (dwarf2_frame_state_free_regs): Remove.
3984 (dwarf2_frame_state::~dwarf2_frame_state): Remove.
3985 (dwarf2_restore_rule): Call method .alloc_regs instead of
3986 dwarf2_frame_state_alloc_regs.
3987 (execute_cfa_program): Likewise. Call dwarf2_frame_state_reg_info
3988 constructor. Call std::move.
3989 (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
3990 (dwarf2_frame_cache): Likewise.
3991
3992 [GDB_SELF_TEST]: Include selftest.h and
3993 selftest-arch.h.
3994 [GDB_SELF_TEST] (execute_cfa_program_test): New function.
3995 (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
3996 execute_cfa_program_test.
3997
3998 * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
3999 copy ctor, assignment operator, move assignment.
4000 <alloc_regs>: New method.
4001 <swap>: New method.
4002 (struct dwarf2_frame_state): Delete dtor.
4003 (dwarf2_frame_state_alloc_regs): Remove declaration.
4004 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
4005 dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
4006
4007 2017-08-11 Yao Qi <yao.qi@linaro.org>
4008
4009 * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
4010 (dwarf2_frame_state::dwarf2_frame_state): New.
4011 (dwarf2_frame_state::~dwarf2_frame_state): New.
4012 (dwarf2_fetch_cfa_info): Update.
4013 (dwarf2_frame_cache): Remove old_chain. Change 'fs' to an object
4014 rather than a pointer. Update code.
4015 * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
4016 dtor.
4017 <data_align, code_align, retaddr_column>: Change them to const.
4018 <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
4019 to bool.
4020
4021 2017-08-11 Yao Qi <yao.qi@linaro.org>
4022
4023 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
4024 <loc.exp>: New field.
4025 * dwarf2-frame.c (execute_cfa_program): Update.
4026 (dwarf2_frame_prev_register): Update.
4027
4028 2017-08-10 Pedro Alves <palves@redhat.com>
4029
4030 * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
4031
4032 2017-08-09 John Baldwin <jhb@FreeBSD.org>
4033
4034 * fbsd-nat.c (struct fbsd_fork_info): Remove.
4035 (fbsd_pending_children): Use std::list.
4036 (fbsd_remember_child): Likewise.
4037 (fbsd_is_child_pending): Likewise.
4038 (fbsd_pending_vfork_done): Use std::forward_list.
4039 (fbsd_add_vfork_done): Likewise.
4040 (fbsd_is_vfork_done_pending): Likewise.
4041 (fbsd_next_vfork_done): Likewise.
4042
4043 2017-08-09 John Baldwin <jhb@FreeBSD.org>
4044
4045 * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
4046 (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
4047 [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
4048 for `mapfilename'.
4049 (fbsd_xfer_partial): Use gdb::byte_vector.
4050 (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
4051
4052 2017-08-09 John Baldwin <jhb@FreeBSD.org>
4053
4054 * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
4055 "filestuff.h".
4056 (fbsd_find_memory_regions): Fix `mapfile' initialization.
4057
4058 2017-08-09 Tom Tromey <tom@tromey.com>
4059
4060 * skip.c (skiplist_entry): New constructor.
4061 (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
4062 (skiplist_entry::file_is_glob): Now bool.
4063 (skiplist_entry::file, skiplist_entry::function): Now
4064 std::string.
4065 (make_skip_entry): Return a unique_ptr. Use new.
4066 (free_skiplist_entry, free_skiplist_entry_cleanup)
4067 (make_free_skiplist_entry_cleanup): Remove.
4068 (skip_command, skip_disable_command, add_skiplist_entry)
4069 (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
4070 (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
4071 (function_name_is_marked_for_skip): Update.
4072 (skip_delete_command): Update. Use delete.
4073
4074 2017-08-09 Jiong Wang <jiong.wang@arm.com>
4075
4076 * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
4077 (aarch64_linux_core_read_description): New function.
4078 (aarch64_linux_init_abi): Register gdbarch_core_read_description.
4079
4080 2017-08-09 Pedro Alves <palves@redhat.com>
4081
4082 * cp-name-parser.y (cp_comp_to_string): Return a
4083 gdb::unique_xmalloc_ptr<char>.
4084 * cp-support.c (replace_typedefs_qualified_name)
4085 (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
4086 (cp_canonicalize_string_full): Use op= instead of explicit
4087 convertion.
4088 (cp_class_name_from_physname, method_name_from_physname)
4089 (cp_func_name, cp_remove_params): Adjust to use
4090 gdb::unique_xmalloc_ptr<char>.
4091 * cp-support.h (cp_comp_to_string): Return a
4092 gdb::unique_xmalloc_ptr<char>.
4093 * python/py-type.c (typy_lookup_type): Adjust to use
4094 gdb::unique_xmalloc_ptr<char>.
4095
4096 2017-08-09 H.J. Lu <hongjiu.lu@intel.com>
4097
4098 * dwarf2read.c (dwarf2_string_attr): Fix a typo.
4099
4100 2017-08-09 Alex Lindsay <alexlindsay239@gmail.com>
4101 Yao Qi <yao.qi@linaro.org>
4102
4103 * cp-support.c (cp_canonicalize_string_full): Use
4104 gdb::unique_xmalloc_ptr<char>.
4105 (cp_canonicalize_string): Likewise.
4106
4107 2017-08-09 Yao Qi <yao.qi@linaro.org>
4108
4109 * features/Makefile (WHICH): Remove i386/ non-linux stuff.
4110 * regformats/i386/amd64-avx-avx512.dat: Remove.
4111 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
4112 * regformats/i386/amd64-avx-mpx.dat:Remove.
4113 * regformats/i386/amd64-avx.dat: Remove.
4114 * regformats/i386/amd64-mpx.dat: Remove.
4115 * regformats/i386/i386-avx-avx512.dat: Remove.
4116 * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
4117 * regformats/i386/i386-avx-mpx.dat: Remove.
4118 * regformats/i386/i386-mmx.dat: Remove.
4119 * regformats/i386/i386-mpx.dat: Remove.
4120
4121 2017-08-09 Yao Qi <yao.qi@linaro.org>
4122
4123 * amd64-tdep.h (tdesc_x32): Remove the declaration.
4124 * amd64-tdep.c: Don't include features/i386/x32*.c.
4125 (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
4126 functions.
4127 * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
4128 and i386/x32-avx-avx512.
4129 (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
4130 and i386/x32.xml.
4131 * features/i386/x32-avx-avx512.c: Removed.
4132 * features/i386/x32-avx-avx512.xml: Removed.
4133 * features/i386/x32-avx.c: Removed.
4134 * features/i386/x32-avx.xml: Removed.
4135 * features/i386/x32.c: Removed.
4136 * features/i386/x32.xml: Removed.
4137 * regformats/i386/x32-avx-avx512.dat: Removed.
4138 * regformats/i386/x32-avx.dat: Removed.
4139 * regformats/i386/x32.dat: Removed.
4140
4141 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4142
4143 PR breakpoints/21886
4144 * mem-break.c (default_memory_insert_breakpoint): Use
4145 `->placed_address' rather than `->reqstd_address' for the
4146 breakpoint location.
4147
4148 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4149
4150 * arch-utils.c (default_print_insn): Remove arch/mach/endian
4151 assertions.
4152
4153 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4154
4155 * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
4156 a union of `tdep_info', `tdesc_data' and `id'.
4157 * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
4158 rather than `info.tdep_info'.
4159 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
4160 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4161 * i386-tdep.c (i386_gdbarch_init): Likewise.
4162 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
4163 * mips-tdep.c (mips_gdbarch_init): Likewise.
4164 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
4165 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
4166 * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
4167 `info.tdep_info'.
4168 (ppc_linux_init_abi): Use `info.tdesc_data' rather than
4169 `info.tdep_info'.
4170 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
4171 * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
4172 `info.tdep_info'.
4173 * spu-tdep.c (spu_gdbarch_init): Likewise.
4174 * gdbarch.h: Regenerate.
4175
4176 2017-08-07 Leszek Swirski <leszeks@google.com>
4177
4178 PR symtab/20899
4179 * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
4180
4181 2017-08-07 Simon Marchi <simon.marchi@ericsson.com>
4182
4183 * remote-sim.c (gdbsim_load): Remove char **argv local variable.
4184 (gdbsim_open): Rename gdb_argv args object to argv.
4185
4186 2017-08-05 Tom Tromey <tom@tromey.com>
4187
4188 * compile/compile-object-load.c (compile_object_load): Use
4189 gdb::unique_xmalloc_ptr.
4190 * cli/cli-dump.c (scan_filename): Rename from
4191 scan_filename_with_cleanup. Change return type.
4192 (scan_expression): Rename from scan_expression_with_cleanup.
4193 Change return type.
4194 (dump_memory_to_file, dump_value_to_file, restore_command):
4195 Use gdb::unique_xmalloc_ptr. Update.
4196 * cli/cli-cmds.c (find_and_open_script): Use
4197 gdb::unique_xmalloc_ptr.
4198 * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
4199 * symmisc.c (maintenance_print_symbols)
4200 (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
4201 * symfile.c (symfile_bfd_open, generic_load)
4202 (add_symbol_file_command, remove_symbol_file_command): Use
4203 gdb::unique_xmalloc_ptr.
4204 * source.c (openp): Use gdb::unique_xmalloc_ptr.
4205 * psymtab.c (maintenance_print_psymbols): Use
4206 gdb::unique_xmalloc_ptr.
4207 * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
4208 * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
4209 * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
4210 (reload_shared_libraries_1): Likewise.
4211
4212 2017-08-05 Tom Tromey <tom@tromey.com>
4213
4214 * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
4215 (rust_op_vector, rust_set_vector): New typedefs.
4216 (current_parser): New global.
4217 (work_obstack): Change to pointer type. Update all users.
4218 (rust_ast, pstate): Remove globals.
4219 (struct rust_parser): New.
4220 (%union) <params, field_inits>: Change type.
4221 (start, tuple_expr, unit_expr, struct_expr_list, literal)
4222 (field_expr, expr_list, maybe_expr_list, type_list): Update.
4223 (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
4224 (convert_params_to_types, convert_params_to_expression): Change
4225 type of "params".
4226 (ast_string): Change type of "fields".
4227 (rust_parse): Make a rust_parser. Remove cleanups.
4228 (rust_lex_tests): Make and install an auto_obstack.
4229
4230 2017-08-04 Yao Qi <yao.qi@linaro.org>
4231
4232 * configure.srv (ipa_x32_linux_regobj): New.
4233 * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
4234 instead of X86_TDESC_AVX512.
4235 (initialize_low_tracepoint): Call
4236 init_registers_x32_avx_avx512_linux.
4237
4238 2017-08-04 Yao Qi <yao.qi@linaro.org>
4239
4240 * utils.h (gdb_argv): Add namespace std for nullptr_t.
4241
4242 2017-08-03 Ruslan Kabatsayev <b7.10110111@gmail.com>
4243
4244 * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
4245
4246 2017-08-03 Tom Tromey <tom@tromey.com>
4247
4248 * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
4249 Remove.
4250 * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
4251
4252 2017-08-03 Tom Tromey <tom@tromey.com>
4253
4254 * python/py-param.c (compute_enum_values): Use gdb_argv.
4255
4256 2017-08-03 Tom Tromey <tom@tromey.com>
4257
4258 * utils.h (struct gdb_argv_deleter): New.
4259 (gdb_argv): New class.
4260 * utils.c (gdb_argv::reset): New method.
4261 * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
4262 * tracefile.c (tsave_command): Use gdb_argv.
4263 * top.c (new_ui_command): Use gdb_argv.
4264 * symmisc.c (maintenance_print_symbols)
4265 (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
4266 * symfile.c (symbol_file_command, generic_load)
4267 (remove_symbol_file_command): Use gdb_argv.
4268 * stack.c (backtrace_command): Use gdb_argv.
4269 * source.c (add_path, show_substitute_path_command)
4270 (unset_substitute_path_command, set_substitute_path_command):
4271 Use gdb_argv.
4272 * skip.c (skip_command): Use gdb_argv. Use gdb_buildargv.
4273 * ser-mingw.c (pipe_windows_open): Use gdb_argv.
4274 * remote.c (extended_remote_run, remote_put_command)
4275 (remote_get_command, remote_delete_command): Use gdb_argv.
4276 * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
4277 (gdbsim_open): Use gdb_argv.
4278 * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
4279 * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
4280 * procfs.c (procfs_info_proc): Use gdb_argv.
4281 * interps.c (interpreter_exec_cmd): Use gdb_argv.
4282 * infrun.c (handle_command): Use gdb_argv.
4283 * inferior.c (add_inferior_command, clone_inferior_command):
4284 Use gdb_argv.
4285 * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
4286 * exec.c (exec_file_command): Use gdb_argv.
4287 * cli/cli-cmds.c (alias_command): Use gdb_argv.
4288 * compile/compile.c (build_argc_argv): Use gdb_argv.
4289
4290 2017-08-03 Tom Tromey <tom@tromey.com>
4291
4292 * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
4293
4294 2017-08-03 Tom Tromey <tom@tromey.com>
4295
4296 * python/python.c (compute_python_string): Return std::string.
4297 (gdbpy_eval_from_control_command): Update.
4298 (do_start_initialization): Use std::string.
4299 * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
4300 xstrprintf.
4301 * python/py-breakpoint.c (local_setattro): Use string_printf, not
4302 xstrprintf.
4303
4304 2017-08-03 Tom Tromey <tom@tromey.com>
4305
4306 * top.h (do_restore_instream_cleanup): Remove.
4307 * top.c (do_restore_instream_cleanup): Remove.
4308 (read_command_file): Use scoped_restore.
4309 * cli/cli-script.c (execute_user_command): Use scoped_restore.
4310
4311 2017-08-03 Tom Tromey <tom@tromey.com>
4312
4313 * cli/cli-script.c (execute_user_command)
4314 (execute_control_command): Use scoped_restore.
4315
4316 2017-08-03 Tom Tromey <tom@tromey.com>
4317
4318 * cli/cli-script.c (do_restore_user_call_depth): Remove.
4319 (execute_user_command): Remove user_call_depth; use
4320 user_args_stack's size instead.
4321
4322 2017-08-03 Tom Tromey <tom@tromey.com>
4323
4324 * top.h (in_user_command): Remove.
4325 * top.c (in_user_command): Remove.
4326 * cli/cli-script.c (do_restore_user_call_depth)
4327 (execute_user_command): Update.
4328
4329 2017-08-03 Tom Tromey <tom@tromey.com>
4330
4331 * valops.c (search_struct_method): Use gdb::byte_vector.
4332 * valarith.c (value_concat): Use std::vector.
4333 * target.c (memory_xfer_partial): Use gdb::byte_vector.
4334 (simple_search_memory): Likewise.
4335 * printcmd.c (find_string_backward): Use gdb::byte_vector.
4336 * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
4337 * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
4338 * elfread.c (elf_rel_plt_read): Use std::string.
4339 * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
4340 * cli/cli-dump.c (restore_section_callback): Use
4341 gdb::byte_vector.
4342
4343 2017-08-03 Tom Tromey <tom@tromey.com>
4344
4345 * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
4346
4347 2017-08-03 Tom Tromey <tom@tromey.com>
4348
4349 * tui/tui-regs.c (tui_restore_gdbout): Remove.
4350 (tui_register_format): Use scoped_restore.
4351
4352 2017-08-03 Tom Tromey <tom@tromey.com>
4353
4354 * reverse.c (exec_direction_default): Remove.
4355 (exec_reverse_once): Use scoped_restore.
4356 * remote.c (restore_remote_timeout): Remove.
4357 (remote_flash_erase, remote_flash_write, remote_flash_done)
4358 (readchar, remote_serial_write): Use scoped_restore.
4359 * cli/cli-script.c (struct source_cleanup_lines_args)
4360 (source_cleanup_lines): Remove.
4361 (script_from_file): Use scoped_restore.
4362 * cli/cli-cmds.c (source_verbose_cleanup): Remove.
4363 (source_command): Use scoped_restore.
4364
4365 2017-08-03 Tom Tromey <tom@tromey.com>
4366
4367 * utils.h (make_cleanup_free_so): Remove.
4368 * utils.c (do_free_so, make_cleanup_free_so): Remove.
4369 * solist.h (struct so_deleter): New.
4370 (so_list_up): New typedef.
4371 * solib-svr4.c (svr4_read_so_list): Use so_list_up.
4372
4373 2017-08-03 Tom Tromey <tom@tromey.com>
4374
4375 * utils.h (make_cleanup_restore_current_language): Remove.
4376 * utils.c (do_restore_current_language)
4377 (make_cleanup_restore_current_language): Remove.
4378 * parse.c (parse_exp_in_context_1)
4379 (parse_expression_with_language): Use
4380 scoped_restore_current_language.
4381 * mi/mi-main.c (mi_cmd_execute): Use
4382 scoped_restore_current_language.
4383 * language.h (scoped_restore_current_language): New class.
4384
4385 2017-08-03 Tom Tromey <tom@tromey.com>
4386
4387 * compile/compile.c (cleanup_unlink_file): Remove.
4388 (compile_to_object): Use gdb::unlinker.
4389 (eval_compile_command): Likewise.
4390
4391 2017-08-03 Tom Tromey <tom@tromey.com>
4392
4393 * utils.h (make_cleanup_fclose): Remove.
4394 * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
4395
4396 2017-08-03 Tom Tromey <tom@tromey.com>
4397
4398 * top.c (open_terminal_stream): Return gdb_file_up.
4399 (new_ui_command): Update.
4400
4401 2017-08-03 Tom Tromey <tom@tromey.com>
4402
4403 * source.c (print_source_lines_base, forward_search_command)
4404 (reverse_search_command): Use gdb_file_up.
4405
4406 2017-08-03 Tom Tromey <tom@tromey.com>
4407
4408 * fbsd-nat.c (fbsd_find_memory_regions): Update.
4409
4410 2017-08-03 Tom Tromey <tom@tromey.com>
4411
4412 * cli/cli-cmds.c (find_and_open_script): Change return type.
4413 Remove "streamp" and "full_path" parameters.
4414 (source_script_with_search): Update.
4415 * auto-load.c (source_script_file): Update.
4416 * cli/cli-cmds.h (find_and_open_script): Change type.
4417 (open_script): New struct.
4418
4419 2017-08-03 Tom Tromey <tom@tromey.com>
4420
4421 * xml-support.c (xml_fetch_content_from_file): Update.
4422 * ui-file.c (stdio_file::open): Update.
4423 * tracefile-tfile.c (tfile_start): Update.
4424 * remote.c (remote_file_put, remote_file_get): Update.
4425 * nat/linux-procfs.c (linux_proc_get_int)
4426 (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
4427 * nat/linux-osdata.c (linux_common_core_of_thread): Update.
4428 (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
4429 (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
4430 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
4431 * nat/linux-btrace.c (linux_determine_kernel_start): Update.
4432 * linux-nat.c (linux_proc_pending_signals): Update.
4433 * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
4434 (file_closer): Remove.
4435 * compile/compile.c (compile_to_object): Update.
4436 * common/filestuff.h (struct gdb_file_deleter): New.
4437 (gdb_file_up): New typedef.
4438 (gdb_fopen_cloexec): Change return type.
4439 * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
4440 * cli/cli-dump.c (fopen_with_cleanup): Remove.
4441 (dump_binary_file, restore_binary_file): Update.
4442 * auto-load.c (auto_load_objfile_script_1): Update.
4443
4444 2017-08-03 Tom Tromey <tom@tromey.com>
4445
4446 * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
4447 (info_static_tracepoint_markers_command): Likewise.
4448 * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
4449 * skip.c (skip_info): Use ui_out_emit_table.
4450 * progspace.c (print_program_space): Use ui_out_emit_table.
4451 * osdata.c (info_osdata): Use ui_out_emit_table.
4452 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
4453 ui_out_emit_table.
4454 * linux-thread-db.c (info_auto_load_libthread_db): Use
4455 ui_out_emit_table.
4456 * inferior.c (print_inferior): Use ui_out_emit_table.
4457 * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
4458 * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
4459 * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
4460 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
4461 * ui-out.h (class ui_out_emit_table): New.
4462
4463 2017-08-02 Maciej W. Rozycki <macro@imgtec.com>
4464
4465 * mips-tdep.c (mips_fpu_type_str): New function.
4466 (mips_dump_tdep): Call it.
4467
4468 2017-08-01 Maciej W. Rozycki <macro@imgtec.com>
4469
4470 * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
4471 `->mips_fpu_type'.
4472
4473 2017-07-31 Xavier Roirand <roirand@adacore.com>
4474
4475 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
4476
4477 2017-07-27 Xavier Roirand <roirand@adacore.com>
4478
4479 * MAINTAINERS (Write After Approval): Add Xavier Roirand.
4480
4481 2017-07-26 Yao Qi <yao.qi@linaro.org>
4482
4483 * cli/cli-cmds.c (maintenancechecklist): New variable.
4484 * gdbcmd.h (maintenancechecklist): Declare it.
4485 * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
4486 Call i386_linux_read_description with different masks.
4487 * maint.c (maintenance_check_command): New function.
4488 (_initialize_maint_cmds): Call add_prefix_cmd.
4489 * target-descriptions.c (tdesc_reg): override operator != and ==.
4490 (tdesc_type): Likewise.
4491 (tdesc_feature): Likewise.
4492 (target_desc): Likewise.
4493 [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
4494 (maintenance_check_xml_descriptions): New function.
4495 (_initialize_target_descriptions) Add command "xml-descriptions".
4496 * target-descriptions.h (selftests::record_xml_tdesc): Declare.
4497
4498 2017-07-26 Yao Qi <yao.qi@linaro.org>
4499
4500 * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
4501 Include features/i386/32bit-*.c.
4502 (i386_linux_read_description): Generate target description if it
4503 doesn't exist.
4504 (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
4505 functions.
4506 * features/i386/32bit-linux.c: Re-generated.
4507 * features/i386/32bit-sse.c: Likewise.
4508 * target-descriptions.c (print_c_feature::visit): Print code to
4509 set register number if needed.
4510 (print_c_feature) <m_next_regnum>: New field.
4511
4512 2017-07-26 Yao Qi <yao.qi@linaro.org>
4513
4514 * features/Makefile (CFILES): Rename with TDESC_CFILES.
4515 (FEATURE_XMLFILES): New.
4516 (FEATURE_CFILES): New.
4517 New rules.
4518 (clean-cfiles): Remove generated c files.
4519 * features/i386/32bit-avx.c: Generated.
4520 * features/i386/32bit-avx512.c: Generated.
4521 * features/i386/32bit-core.c: Generated.
4522 * features/i386/32bit-linux.c: Generated.
4523 * features/i386/32bit-mpx.c: Generated.
4524 * features/i386/32bit-pkeys.c: Generated.
4525 * features/i386/32bit-sse.c: Generated.
4526 * target-descriptions.c: Include algorithm.
4527 (tdesc_element_visitor): Add method visit_end.
4528 (print_c_tdesc): Implement visit_end.
4529 (print_c_tdesc:: m_filename_after_features): Move it to
4530 protected.
4531 (print_c_feature): New class.
4532 (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
4533 name starts with "i386/32bit-".
4534
4535 2017-07-26 Yao Qi <yao.qi@linaro.org>
4536
4537 * target-descriptions.c (tdesc_element_visitor): New class.
4538 (tdesc_element): New class.
4539 (tdesc_reg): Inherit from tdesc_element.
4540 (tdesc_reg::accept): New function.
4541 (tdesc_type): Inherit from tdesc_element.
4542 (tdesc_type::accept): New function.
4543 (tdesc_feature): Inherit from tdesc_element.
4544 (tdesc_feature::accept): New function.
4545 (target_desc): Inherit from tdesc_element.
4546 (target_desc::target_desc): New.
4547 (target_desc::~target_desc): New.
4548 (target_desc::accept): New.
4549 (allocate_target_description): Use new.
4550 (free_target_description): Use delete.
4551 (print_c_tdesc): New class.
4552 (maint_print_c_tdesc_cmd): Adjust.
4553
4554 * features/aarch64.c: Re-generated.
4555 * features/arc-arcompact.c: Re-generated.
4556 * features/arc-v2.c: Re-generated.
4557 * features/arm/arm-with-iwmmxt.c: Re-generated.
4558 * features/arm/arm-with-m.c: Re-generated.
4559 * features/arm/arm-with-m-fpa-layout.c: Re-generated.
4560 * features/arm/arm-with-m-vfp-d16.c: Re-generated.
4561 * features/arm/arm-with-neon.c: Re-generated.
4562 * features/arm/arm-with-vfpv2.c: Re-generated.
4563 * features/arm/arm-with-vfpv3.c: Re-generated.
4564 * features/i386/amd64-avx-avx512.c: Re-generated.
4565 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
4566 * features/i386/amd64-avx.c: Re-generated.
4567 * features/i386/amd64-avx-linux.c: Re-generated.
4568 * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
4569 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
4570 * features/i386/amd64-avx-mpx.c: Re-generated.
4571 * features/i386/amd64-avx-mpx-linux.c: Re-generated.
4572 * features/i386/amd64.c: Re-generated.
4573 * features/i386/amd64-linux.c: Re-generated.
4574 * features/i386/amd64-mpx.c: Re-generated.
4575 * features/i386/amd64-mpx-linux.c: Re-generated.
4576 * features/i386/i386-avx-avx512.c: Re-generated.
4577 * features/i386/i386-avx-avx512-linux.c: Re-generated.
4578 * features/i386/i386-avx.c: Re-generated.
4579 * features/i386/i386-avx-linux.c: Re-generated.
4580 * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
4581 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
4582 * features/i386/i386-avx-mpx.c: Re-generated.
4583 * features/i386/i386-avx-mpx-linux.c: Re-generated.
4584 * features/i386/i386.c: Re-generated.
4585 * features/i386/i386-linux.c: Re-generated.
4586 * features/i386/i386-mmx.c: Re-generated.
4587 * features/i386/i386-mmx-linux.c: Re-generated.
4588 * features/i386/i386-mpx.c: Re-generated.
4589 * features/i386/i386-mpx-linux.c: Re-generated.
4590 * features/i386/x32-avx-avx512.c: Re-generated.
4591 * features/i386/x32-avx-avx512-linux.c: Re-generated.
4592 * features/i386/x32-avx.c: Re-generated.
4593 * features/i386/x32-avx-linux.c: Re-generated.
4594 * features/i386/x32.c: Re-generated.
4595 * features/i386/x32-linux.c: Re-generated.
4596 * features/microblaze.c: Re-generated.
4597 * features/microblaze-with-stack-protect.c: Re-generated.
4598 * features/mips64-dsp-linux.c: Re-generated.
4599 * features/mips64-linux.c: Re-generated.
4600 * features/mips-dsp-linux.c: Re-generated.
4601 * features/mips-linux.c: Re-generated.
4602 * features/nds32.c: Re-generated.
4603 * features/nios2.c: Re-generated.
4604 * features/nios2-linux.c: Re-generated.
4605 * features/rs6000/powerpc-32.c: Re-generated.
4606 * features/rs6000/powerpc-32l.c: Re-generated.
4607 * features/rs6000/powerpc-403.c: Re-generated.
4608 * features/rs6000/powerpc-403gc.c : Re-generated.
4609 * features/rs6000/powerpc-405.c: Re-generated.
4610 * features/rs6000/powerpc-505.c: Re-generated.
4611 * features/rs6000/powerpc-601.c: Re-generated.
4612 * features/rs6000/powerpc-602.c: Re-generated.
4613 * features/rs6000/powerpc-603.c: Re-generated.
4614 * features/rs6000/powerpc-604.c: Re-generated.
4615 * features/rs6000/powerpc-64.c: Re-generated.
4616 * features/rs6000/powerpc-64l.c: Re-generated.
4617 * features/rs6000/powerpc-7400.c: Re-generated.
4618 * features/rs6000/powerpc-750.c: Re-generated.
4619 * features/rs6000/powerpc-860.c: Re-generated.
4620 * features/rs6000/powerpc-altivec32.c: Re-generated.
4621 * features/rs6000/powerpc-altivec32l.c: Re-generated.
4622 * features/rs6000/powerpc-altivec64.c: Re-generated.
4623 * features/rs6000/powerpc-altivec64l.c: Re-generated.
4624 * features/rs6000/powerpc-cell32l.c: Re-generated.
4625 * features/rs6000/powerpc-cell64l.c: Re-generated.
4626 * features/rs6000/powerpc-e500.c: Re-generated.
4627 * features/rs6000/powerpc-e500l.c: Re-generated.
4628 * features/rs6000/powerpc-isa205-32l.c: Re-generated.
4629 * features/rs6000/powerpc-isa205-64l.c: Re-generated.
4630 * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
4631 * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
4632 * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
4633 * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
4634 * features/rs6000/powerpc-vsx32.c: Re-generated.
4635 * features/rs6000/powerpc-vsx32l.c: Re-generated.
4636 * features/rs6000/powerpc-vsx64.c: Re-generated.
4637 * features/rs6000/powerpc-vsx64l.c: Re-generated.
4638 * features/rs6000/rs6000.c: Re-generated.
4639 * features/s390-linux32.c: Re-generated.
4640 * features/s390-linux32v1.c: Re-generated.
4641 * features/s390-linux32v2.c: Re-generated.
4642 * features/s390-linux64.c: Re-generated.
4643 * features/s390-linux64v1.c: Re-generated.
4644 * features/s390-linux64v2.c: Re-generated.
4645 * features/s390-te-linux64.c: Re-generated.
4646 * features/s390-tevx-linux64.c: Re-generated.
4647 * features/s390-vx-linux64.c: Re-generated.
4648 * features/s390x-linux64.c: Re-generated.
4649 * features/s390x-linux64v1.c: Re-generated.
4650 * features/s390x-linux64v2.c: Re-generated.
4651 * features/s390x-te-linux64.c: Re-generated.
4652 * features/s390x-tevx-linux64.c: Re-generated.
4653 * features/s390x-vx-linux64.c: Re-generated.
4654 * features/sparc/sparc32-solaris.c: Re-generated.
4655 * features/sparc/sparc64-solaris.c: Re-generated.
4656 * features/tic6x-c62x.c: Re-generated.
4657 * features/tic6x-c62x-linux.c: Re-generated.
4658 * features/tic6x-c64x.c: Re-generated.
4659 * features/tic6x-c64x-linux.c: Re-generated.
4660 * features/tic6x-c64xp.c: Re-generated.
4661 * features/tic6x-c64xp-linux.c: Re-generated.
4662
4663 2017-07-26 Yao Qi <yao.qi@linaro.org>
4664
4665 * i386-linux-tdep.c (i386_linux_read_description): New function.
4666 (i386_linux_core_read_description): Call
4667 i386_linux_read_description.
4668 * i386-linux-tdep.h (i386_linux_read_description): Declare.
4669 (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
4670 (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
4671 (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
4672 (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
4673 * x86-linux-nat.c (x86_linux_read_description): Call
4674 i386_linux_read_description.
4675
4676 2017-07-26 Yao Qi <yao.qi@linaro.org>
4677
4678 * NEWS: Mention it.
4679 * features/Makefile (%.c: %.xml): Pass the xml file name to
4680 command "maint print c-tdesc".
4681 * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
4682 name from 'arg'.
4683
4684 2017-07-26 Yao Qi <yao.qi@linaro.org>
4685
4686 * target-descriptions.c (target_desc): Add ctor and dtor. Do
4687 in-class initialization.
4688 (tdesc_create_feature): Call new instead of XCNEW.
4689 (free_target_description): Ue delete.
4690
4691 2017-07-25 John Baldwin <jhb@FreeBSD.org>
4692
4693 * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
4694
4695 2017-07-25 Yao Qi <yao.qi@linaro.org>
4696
4697 * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
4698 constant.
4699 (amd64_x32_init_abi): Likewise.
4700 * amd64-tdep.h (amd64_init_abi): Update declaration.
4701 (amd64_x32_init_abi): Likewise.
4702
4703 2017-07-25 Yao Qi <yao.qi@linaro.org>
4704
4705 PR tdep/21717
4706 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
4707 condition for FPSCR.
4708 (arm_linux_store_inferior_registers): Likewise.
4709
4710 2017-07-22 Tom Tromey <tom@tromey.com>
4711
4712 * break-catch-syscall.c (struct catch_syscall_inferior_data)
4713 <syscalls_counts>: Now a std::vector.
4714 (get_catch_syscall_inferior_data): Use "new".
4715 (catch_syscall_inferior_data_cleanup): Use "delete".
4716 (insert_catch_syscall, remove_catch_syscall)
4717 (clear_syscall_counts): Update.
4718
4719 2017-07-22 Tom Tromey <tom@tromey.com>
4720
4721 * break-catch-syscall.c (syscall_catchpoint)
4722 <syscalls_to_be_caught>: Now a std::vector<int>
4723 (~syscall_catchpoint): Remove.
4724 (insert_catch_syscall, remove_catch_syscall)
4725 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
4726 (print_mention_catch_syscall, print_recreate_catch_syscall):
4727 Update.
4728 (create_syscall_event_catchpoint): Change type of "filter"
4729 parameter.
4730 (catch_syscall_split_args): Return a std::vector.
4731 (catch_syscall_command_1, catching_syscall_number_1): Update.
4732
4733 2017-07-22 Tom Tromey <tom@tromey.com>
4734
4735 * break-catch-throw.c (struct exception_catchpoint)
4736 <exception_rx>: Now a std::string.
4737 (~exception_catchpoint): Remove.
4738 (print_one_detail_exception_catchpoint): Update.
4739 (handle_gnu_v3_exceptions): Change type of except_rx.
4740 (extract_exception_regexp): Return a std::string.
4741 (catch_exception_command_1): Update.
4742
4743 2017-07-22 Tom Tromey <tom@tromey.com>
4744
4745 * break-catch-sig.c (gdb_signal_type): Remove typedef.
4746 (struct signal_catchpoint) <signals_to_be_caught>: Now a
4747 std::vector.
4748 <catch_all>: Now a bool.
4749 (~signal_catchpoint): Remove.
4750 (signal_catchpoint_insert_location)
4751 (signal_catchpoint_remove_location)
4752 (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
4753 (signal_catchpoint_print_mention)
4754 (signal_catchpoint_print_recreate)
4755 (signal_catchpoint_explains_signal): Update.
4756 (create_signal_catchpoint): Change type of "filter" and
4757 "catch_all".
4758 (catch_signal_split_args): Return a std::vector. Change type of
4759 "catch_all".
4760 (catch_signal_command): Update.
4761
4762 2017-07-20 Pedro Alves <palves@redhat.com>
4763
4764 * ada-lang.c (ada_language_defn): Make extern.
4765 (_initialize_ada_language): Remove add_language call.
4766 * c-lang.c (c_language_defn, cplus_language_defn)
4767 (asm_language_defn, minimal_language_defn): Make extern.
4768 (_initialize_c_language): Delete.
4769 * completer.c (compare_cstrings): Delete, moved to utils.h.
4770 * d-lang.c (d_language_defn): Make extern.
4771 (_initialize_d_language): Remove add_language calls.
4772 * defs.h (enum language): Add comment.
4773 * f-lang.c (f_language_defn): Make extern.
4774 (_initialize_f_language): Remove add_language call.
4775 * go-lang.c (go_language_defn): Make extern.
4776 (_initialize_go_language): Remove add_language call.
4777 * language.c: Include <algorithm>.
4778 (languages): Redefine as const array.
4779 (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
4780 (set_language_command): Handle "local". Use for-range loop.
4781 (set_language): Remove loop.
4782 (language_enum): Rewrite.
4783 (language_def, language_str): Remove loops.
4784 (add_language): Delete.
4785 (add_set_language_command): New, based on add_languages.
4786 (skip_language_trampoline): Adjust.
4787 (local_language_defn): Delete.
4788 (language_gdbarch_post_init): Adjust.
4789 (_initialize_language): Remove add_language calls. Call
4790 add_set_language_command.
4791 * language.h (add_language): Delete.
4792 (auto_language_defn)
4793 (unknown_language_defn, minimal_language_defn, ada_language_defn)
4794 (asm_language_defn, c_language_defn, cplus_language_defn)
4795 (d_language_defn, f_language_defn, go_language_defn)
4796 (m2_language_defn, objc_language_defn, opencl_language_defn)
4797 (pascal_language_defn, rust_language_defn): Declare.
4798 * m2-lang.c (m2_language_defn): Make extern.
4799 (_initialize_m2_language): Remove add_language call.
4800 * objc-lang.c (objc_language_defn): Make extern.
4801 (_initialize_objc_language): Remove add_language call.
4802 * opencl-lang.c (opencl_language_defn): Make extern.
4803 (_initialize_opencl_language): Remove add_language call.
4804 * p-lang.c (pascal_language_defn): Make extern.
4805 (_initialize_pascal_language): Delete.
4806 * rust-lang.c (rust_language_defn): Make extern.
4807 (_initialize_rust_language): Delete.
4808 * utils.h (compare_cstrings): New static inline function.
4809
4810 2017-07-20 Pedro Alves <palves@redhat.com>
4811
4812 * ada-lang.c (ada_to_fixed_type_1): Adjust.
4813 (get_var_value): Constify parameters.
4814 (get_int_var_value): Change prototype.
4815 (to_fixed_range_type): Adjust.
4816 * ada-lang.h (get_int_var_value): Change prototype.
4817
4818 2017-07-20 Pedro Alves <palves@redhat.com>
4819
4820 * dwarf2read.c (dw2_lookup_symbol): Use
4821 SYMBOL_MATCHES_SEARCH_NAME.
4822 * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
4823
4824 2017-07-20 Pedro Alves <palves@redhat.com>
4825
4826 * block.c (block_iter_name_step, block_iter_name_first)
4827 (block_iter_name_next): Delete.
4828 (block_lookup_symbol_primary): Adjust to use
4829 dict_iter_match_first/dict_iter_match_next.
4830 * block.h (block_iter_name_first, block_iter_name_next): Delete
4831 declarations.
4832 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
4833 dict_iter_match_first/dict_iter_match_next.
4834
4835 2017-07-20 Pedro Alves <palves@redhat.com>
4836
4837 * cp-support.c (cp_find_first_component_aux): Add missing case for
4838 end of string.
4839
4840 2017-07-18 David Blaikie <dblaikie@gmail.com>
4841
4842 * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
4843 of dwo_cu's dwo_file.
4844
4845 2017-07-18 Yao Qi <yao.qi@linaro.org>
4846
4847 * remote.c (store_registers_using_G): Remove one line comment.
4848
4849 2017-07-18 Yao Qi <yao.qi@linaro.org>
4850
4851 * regcache.c (regcache_cpy): Simplify it.
4852 (regcache::cpy_no_passthrough): Remove it.
4853 * regcache.h (cpy_no_passthrough): Remove it.
4854 (regcache_dup, regcache_cpy): Update comments.
4855
4856 2017-07-18 Pedro Alves <palves@redhat.com>
4857
4858 * remote-sim.c (sim_command_completer): Adjust to work with a
4859 completion_tracker instead of a VEC.
4860
4861 2017-07-17 Pedro Alves <palves@redhat.com>
4862
4863 * completer.c (complete_source_filenames): New function.
4864 (complete_address_and_linespec_locations): New function.
4865 (location_completer): Use complete_address_and_linespec_locations.
4866 (completion_tracker::build_completion_result): Honor the tracker's
4867 request to suppress append.
4868 * completer.h (completion_tracker::suppress_append_ws)
4869 (completion_tracker::set_suppress_append_ws): New methods.
4870 (completion_tracker::m_suppress_append_ws): New field.
4871 (complete_source_filenames): New declaration.
4872 * linespec.c (linespec_complete_what): New.
4873 (struct ls_parser) <complete_what, completion_word,
4874 completion_quote_char, completion_quote_end, completion_tracker>:
4875 New fields.
4876 (string_find_incomplete_keyword_at_end): New.
4877 (linespec_lexer_lex_string): Record quote char. If in completion
4878 mode, don't throw.
4879 (linespec_lexer_consume_token): Advance the completion word point.
4880 (linespec_lexer_peek_token): Save/restore completion info.
4881 (save_stream_and_consume_token): New.
4882 (set_completion_after_number): New.
4883 (linespec_parse_basic): Set what to complete next depending on
4884 token. Handle function and label completions specially.
4885 (parse_linespec): Disable objc shortcut in completion mode. Set
4886 what to complete next depending on token type. Skip keyword if in
4887 completion mode.
4888 (complete_linespec_component, linespec_complete): New.
4889 * linespec.h (linespec_complete): Declare.
4890
4891 2017-07-17 Pedro Alves <palves@redhat.com>
4892
4893 * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
4894 Handle 'operator<' / 'operator<<'.
4895
4896 2017-07-17 Pedro Alves <palves@redhat.com>
4897
4898 * completer.c (collect_explicit_location_matches): Handle
4899 MATCH_LABEL.
4900 (convert_explicit_location_to_linespec): New, factored out from
4901 ...
4902 (convert_explicit_location_to_sals): ... this.
4903 (complete_label): New.
4904 (linespec_complete_label, find_label_symbols_in_block): New.
4905 (find_label_symbols): Add completion_mode parameter and adjust to
4906 call find_label_symbols_in_block.
4907 * linespec.h (linespec_complete_label): Declare.
4908
4909 2017-07-17 Pedro Alves <palves@redhat.com>
4910
4911 * ada-lang.c (ada_collect_symbol_completion_matches): Add
4912 complete_symbol_mode parameter.
4913 * cli/cli-cmds.c (complete_command): Get the completion result out
4914 of the handle_brkchars tracker if used a custom word point.
4915 * completer.c: Include "linespec.h".
4916 (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
4917 (advance_to_expression_complete_word_point): New.
4918 (completion_tracker::completes_to_completion_word): New.
4919 (complete_files_symbols): Pass down
4920 complete_symbol_mode::EXPRESSION.
4921 (explicit_options, probe_options): New.
4922 (collect_explicit_location_matches): Complete on the
4923 explictit_loc->foo instead of word. Use
4924 linespec_complete_function. Handle MATCH_LINE. Handle offering
4925 keyword and options completions.
4926 (backup_text_ptr): Delete.
4927 (skip_keyword): New.
4928 (complete_explicit_location): Remove 'word' parameter. Add
4929 language, quoted_arg_start and quoted_arg_end parameters.
4930 Rewrite, parsing left to right.
4931 (location_completer): Rewrite.
4932 (location_completer_handle_brkchars): New function.
4933 (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
4934 (enum complete_line_internal_reason): Adjust comments.
4935 (completion_tracker::discard_completions): New.
4936 (completer_handle_brkchars_func_for_completer): Handle
4937 location_completer.
4938 (gdb_custom_word_point_brkchars)
4939 (gdb_org_rl_basic_quote_characters): New.
4940 (gdb_completion_word_break_characters_throw)
4941 (completion_find_completion_word): Handle trackers that use a
4942 custom word point.
4943 (completion_tracker::advance_custom_word_point_by): New.
4944 (completion_tracker::build_completion_result): Don't rely on
4945 readline appending the quote char.
4946 (gdb_rl_attempted_completion_function_throw): Handle trackers that
4947 use a custom word point.
4948 (gdb_rl_attempted_completion_function): Restore
4949 rl_basic_quote_characters.
4950 * completer.h (class completion_tracker): Extend intro comment.
4951 (completion_tracker::set_quote_char)
4952 (completion_tracker::quote_char)
4953 (completion_tracker::set_use_custom_word_point)
4954 (completion_tracker::use_custom_word_point)
4955 (completion_tracker::custom_word_point)
4956 (completion_tracker::set_custom_word_point)
4957 (completion_tracker::advance_custom_word_point_by)
4958 (completion_tracker::completes_to_completion_word)
4959 (completion_tracker::discard_completions): New methods.
4960 (completion_tracker::m_quote_char)
4961 (completion_tracker::m_use_custom_word_point)
4962 (completion_tracker::m_custom_word_point): New fields.
4963 (advance_to_expression_complete_word_point): Declare.
4964 * f-lang.c (f_collect_symbol_completion_matches): Add
4965 complete_symbol_mode parameter.
4966 * language.h (struct language_defn)
4967 <la_collect_symbol_completion_matches>: Add complete_symbol_mode
4968 parameter.
4969 * linespec.c (linespec_keywords): Add NULL terminator. Make extern.
4970 (linespec_complete_function): New function.
4971 (linespec_lexer_lex_keyword): Adjust.
4972 * linespec.h (linespec_keywords, linespec_complete_function): New
4973 declarations.
4974 * location.c (find_end_quote): New function.
4975 (explicit_location_lex_one): Add explicit_completion_info
4976 parameter. Save quoting info. Don't throw if being called for
4977 completion. Don't handle Ada operators here.
4978 (is_cp_operator, skip_op_false_positives, first_of)
4979 (explicit_location_lex_one_function): New function.
4980 (string_to_explicit_location): Replace 'dont_throw' parameter with
4981 an explicit_completion_info pointer parameter. Handle it. Don't
4982 use explicit_location_lex_one to lex function names. Use
4983 explicit_location_lex_one_function instead.
4984 * location.h (struct explicit_completion_info): New.
4985 (string_to_explicit_location): Replace 'dont_throw' parameter with
4986 an explicit_completion_info pointer parameter.
4987 * symtab.c (default_collect_symbol_completion_matches_break_on):
4988 Add complete_symbol_mode parameter. Handle LINESPEC mode.
4989 (default_collect_symbol_completion_matches)
4990 (collect_symbol_completion_matches): Add complete_symbol_mode
4991 parameter.
4992 (collect_symbol_completion_matches_type): Pass down
4993 complete_symbol_mode::EXPRESSION.
4994 (collect_file_symbol_completion_matches): Add complete_symbol_mode
4995 parameter. Handle LINESPEC mode.
4996 * symtab.h (complete_symbol_mode): New.
4997 (default_collect_symbol_completion_matches_break_on)
4998 (default_collect_symbol_completion_matches)
4999 (collect_symbol_completion_matches)
5000 (collect_file_symbol_completion_matches): Add complete_symbol_mode
5001 parameter.
5002
5003 2017-07-17 Pedro Alves <palves@redhat.com>
5004
5005 * utils.c (enum class strncmp_iw_mode): New.
5006 (strcmp_iw): Rename to ...
5007 (strncmp_iw_with_mode): ... this. Add string2_len and mode
5008 parameters. Handle them.
5009 (strncmp_iw): New.
5010 (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
5011 * utils.h (strncmp_iw): Declare.
5012 (strcmp_iw): Move describing comments here.
5013
5014 2017-07-17 Pedro Alves <palves@redhat.com>
5015
5016 * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
5017 CP_OPERATOR_STR.
5018 * c-typeprint.c (is_type_conversion_operator): Use
5019 CP_OPERATOR_STR.
5020 * cp-support.c (LENGTH_OF_OPERATOR): Delete.
5021 (cp_find_first_component_aux): Use CP_OPERATOR_STR and
5022 CP_OPERATOR_LEN.
5023 * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
5024 * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
5025 * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
5026 * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
5027 CP_OPERATOR_STR.
5028 * location.c: Include "cp-support.h".
5029 (explicit_location_lex_one): Use CP_OPERATOR_LEN and
5030 CP_OPERATOR_STR.
5031 * symtab.c (operator_chars): Use CP_OPERATOR_STR and
5032 CP_OPERATOR_LEN.
5033
5034 2017-07-17 Pedro Alves <palves@redhat.com>
5035
5036 * cli/cli-cmds.c (complete_command): Use a completion tracker
5037 along with completion_find_completion_word for handle_brkchars
5038 phase.
5039 * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
5040 (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
5041 (struct gdb_rl_completion_word_info): New.
5042 (gdb_rl_find_completion_word): New.
5043 (completion_find_completion_word): New.
5044 * completer.h (completion_find_completion_word): Declare.
5045
5046 2017-07-17 Pedro Alves <palves@redhat.com>
5047
5048 * ada-lang.c (symbol_completion_match): Adjust comments.
5049 (symbol_completion_add): Replace vector parameter with
5050 completion_tracker parameter. Use it.
5051 (ada_make_symbol_completion_list): Rename to...
5052 (ada_collect_symbol_completion_matches): ... this. Add
5053 completion_tracker parameter and use it.
5054 (ada_language_defn): Adjust.
5055 * break-catch-syscall.c (catch_syscall_completer): Adjust
5056 prototype and work with completion_tracker instead of VEC.
5057 * breakpoint.c (condition_completer): Adjust prototype and work
5058 with completion_tracker instead of VEC.
5059 * c-lang.c (c_language_defn, cplus_language_defn)
5060 (asm_language_defn, minimal_language_defn): Adjust to renames.
5061 * cli/cli-cmds.c (complete_command): Rework using
5062 completion_tracker. Catch exceptions when completing.
5063 * cli/cli-decode.c (integer_unlimited_completer)
5064 (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
5065 with completion_tracker instead of VEC.
5066 * command.h (struct completion_tracker): Forward declare.
5067 (completer_ftype, completer_handle_brkchars_ftype): Change
5068 types.
5069 (complete_on_cmdlist, complete_on_enum): Adjust.
5070 * completer.c: Include <algorithm>.
5071 (struct gdb_completer_state): New.
5072 (current_completion): New global.
5073 (readline_line_completion_function): Delete.
5074 (noop_completer, filename_completer)
5075 (filename_completer_handle_brkchars, complete_files_symbols)
5076 (linespec_location_completer): Adjust to work with a
5077 completion_tracker instead of a VEC.
5078 (string_or_empty): New.
5079 (collect_explicit_location_matches): Adjust to work with a
5080 completion_tracker instead of a VEC.
5081 (explicit_location_completer): Rename to ...
5082 (complete_explicit_location): ... this and adjust to work with a
5083 completion_tracker instead of a VEC.
5084 (location_completer): Adjust to work with a completion_tracker
5085 instead of a VEC.
5086 (add_struct_fields): Adjust to work with a completion_list instead
5087 of VEC.
5088 (expression_completer): Rename to ...
5089 (complete_expression): ... this and adjust to work with a
5090 completion_tracker instead of a VEC. Use complete_files_symbols.
5091 (expression_completer): Reimplement on top of complete_expression.
5092 (symbol_completer): Adjust to work with a completion_tracker
5093 instead of a VEC.
5094 (enum complete_line_internal_reason): Add describing comments.
5095 (complete_line_internal_normal_command): Adjust to work with a
5096 completion_tracker instead of a VEC.
5097 (complete_line_internal): Rename to ...
5098 (complete_line_internal_1): ... this and adjust to work with a
5099 completion_tracker instead of a VEC. Assert TEXT is NULL in the
5100 handle_brkchars phase.
5101 (new_completion_tracker): Delete.
5102 (complete_line_internal): Reimplement as TRY/CATCH wrapper around
5103 complete_line_internal_1.
5104 (free_completion_tracker): Delete.
5105 (INITIAL_COMPLETION_HTAB_SIZE): New.
5106 (completion_tracker::completion_tracker)
5107 (completion_tracker::~completion_tracker): New.
5108 (maybe_add_completion): Delete.
5109 (completion_tracker::maybe_add_completion)
5110 (completion_tracker::add_completion)
5111 (completion_tracker::add_completions): New.
5112 (throw_max_completions_reached_error): Delete.
5113 (complete_line): Adjust to work with a completion_tracker instead
5114 of a VEC. Don't create a completion_tracker_t or check for max
5115 completions here.
5116 (command_completer, command_completer_handle_brkchars)
5117 (signal_completer, reg_or_group_completer_1)
5118 (reg_or_group_completer, default_completer_handle_brkchars):
5119 Adjust to work with a completion_tracker.
5120 (gdb_completion_word_break_characters_throw): New.
5121 (gdb_completion_word_break_characters): Reimplement.
5122 (line_completion_function): Delete.
5123 (completion_tracker::recompute_lowest_common_denominator)
5124 (expand_preserving_ws)
5125 (completion_tracker::build_completion_result)
5126 (completion_result::completion_result)
5127 (completion_result::completion_result)
5128 (completion_result::~completion_result)
5129 (completion_result::completion_result)
5130 (completion_result::release_match_list, compare_cstrings)
5131 (completion_result::sort_match_list)
5132 (completion_result::reset_match_list)
5133 (gdb_rl_attempted_completion_function_throw)
5134 (gdb_rl_attempted_completion_function): New.
5135 * completer.h (completion_list, struct completion_result)
5136 (class completion_tracker): New.
5137 (complete_line): Add completion_tracker parameter.
5138 (readline_line_completion_function): Delete.
5139 (gdb_rl_attempted_completion_function): New.
5140 (noop_completer, filename_completer, expression_completer)
5141 (location_completer, symbol_completer, command_completer)
5142 (signal_completer, reg_or_group_completer): Update prototypes.
5143 (completion_tracker_t, new_completion_tracker)
5144 (make_cleanup_free_completion_tracker): Delete.
5145 (enum maybe_add_completion_enum): Delete.
5146 (maybe_add_completion): Delete.
5147 (throw_max_completions_reached_error): Delete.
5148 * corefile.c (complete_set_gnutarget): Adjust to work with a
5149 completion_tracker instead of a VEC.
5150 * cp-abi.c (cp_abi_completer): Adjust to work with a
5151 completion_tracker instead of a VEC.
5152 * d-lang.c (d_language_defn): Adjust.
5153 * disasm.c (disassembler_options_completer): Adjust to work with a
5154 completion_tracker instead of a VEC.
5155 * f-lang.c (f_make_symbol_completion_list): Rename to ...
5156 (f_collect_symbol_completion_matches): ... this. Adjust to work
5157 with a completion_tracker instead of a VEC.
5158 (f_language_defn): Adjust.
5159 * go-lang.c (go_language_defn): Adjust.
5160 * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
5161 Adjust to work with a completion_tracker instead of a VEC.
5162 * infrun.c (handle_completer): Likewise.
5163 * interps.c (interpreter_completer): Likewise.
5164 * interps.h (interpreter_completer): Likewise.
5165 * language.c (unknown_language_defn, auto_language_defn)
5166 (local_language_defn): Adjust.
5167 * language.h (language_defn::la_make_symbol_completion_list):
5168 Rename to ...
5169 (language_defn::la_collect_symbol_completion_matches): ... this
5170 and adjust to work with a completion_tracker instead of a VEC.
5171 * m2-lang.c (m2_language_defn): Adjust.
5172 * objc-lang.c (objc_language_defn): Adjust.
5173 * opencl-lang.c (opencl_language_defn): Adjust.
5174 * p-lang.c (pascal_language_defn): Adjust.
5175 * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
5176 (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
5177 with a completion_tracker.
5178 * rust-lang.c (rust_language_defn): Adjust.
5179 * symtab.c (free_completion_list, do_free_completion_list)
5180 (return_val, completion_tracker): Delete.
5181 (completion_list_add_name, completion_list_add_symbol)
5182 (completion_list_add_msymbol, completion_list_objc_symbol)
5183 (completion_list_add_fields, add_symtab_completions): Add
5184 completion_tracker parameter and use it.
5185 (default_make_symbol_completion_list_break_on_1): Rename to...
5186 (default_collect_symbol_completion_matches_break_on): ... this.
5187 Add completion_tracker parameter and use it instead of allocating
5188 a completion tracker here.
5189 (default_make_symbol_completion_list_break_on): Delete old
5190 implementation.
5191 (default_make_symbol_completion_list): Delete.
5192 (default_collect_symbol_completion_matches): New.
5193 (make_symbol_completion_list): Delete.
5194 (collect_symbol_completion_matches): New.
5195 (make_symbol_completion_type): Rename to ...
5196 (collect_symbol_completion_matches_type): ... this. Add
5197 completion_tracker parameter and use it instead of VEC.
5198 (make_file_symbol_completion_list_1): Rename to...
5199 (collect_file_symbol_completion_matches): ... this. Add
5200 completion_tracker parameter and use it instead of VEC.
5201 (make_file_symbol_completion_list): Delete.
5202 (add_filename_to_list): Use completion_list instead of a VEC.
5203 (add_partial_filename_data::list): Now a completion_list.
5204 (make_source_files_completion_list): Work with a completion_list
5205 instead of a VEC.
5206 * symtab.h: Include "completer.h".
5207 (default_make_symbol_completion_list_break_on)
5208 (default_make_symbol_completion_list, make_symbol_completion_list)
5209 (make_symbol_completion_type, make_file_symbol_completion_list)
5210 (make_source_files_completion_list): Delete.
5211 (default_collect_symbol_completion_matches_break_on)
5212 (default_collect_symbol_completion_matches)
5213 (collect_symbol_completion_matches)
5214 (collect_symbol_completion_matches_type)
5215 (collect_file_symbol_completion_matches)
5216 (make_source_files_completion_list): New.
5217 * top.c (init_main): Don't install a rl_completion_entry_function
5218 hook. Install a rl_attempted_completion_function hook instead.
5219 * tui/tui-layout.c (layout_completer): Adjust to work with a
5220 completion_tracker.
5221 * tui/tui-regs.c (tui_reggroup_completer):
5222 * tui/tui-win.c (window_name_completer, focus_completer)
5223 (winheight_completer): Adjust to work with a completion_tracker.
5224 * value.c: Include "completer.h".
5225 (complete_internalvar): Adjust to work with a completion_tracker.
5226 * value.h (complete_internalvar): Likewise.
5227
5228 2017-07-17 Pedro Alves <palves@redhat.com>
5229
5230 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
5231 renames.
5232 * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
5233 comments to completer_ftype's declaration.
5234 <completer_handle_brkchars>: Change type to
5235 completer_handle_brkchars_ftype.
5236 * command.h (completer_ftype): Add describing comment and give
5237 names to parameters.
5238 (completer_ftype_void): Rename to ...
5239 (completer_handle_brkchars_ftype) ... this. Add describing comment.
5240 (set_cmd_completer_handle_brkchars): Adjust.
5241 * completer.c (filename_completer_handle_brkchars): New function.
5242 (complete_line_internal_normal_command): New function, factored
5243 out from ...
5244 (complete_line_internal): ... here.
5245 (command_completer_handle_brkchars)
5246 (default_completer_handle_brkchars)
5247 (completer_handle_brkchars_func_for_completer): New functions.
5248 * completer.h (set_gdb_completion_word_break_characters): Delete
5249 declaration.
5250 (completer_handle_brkchars_func_for_completer): New declaration.
5251 * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
5252 completer_handle_brkchars_func_for_completer.
5253
5254 2017-07-17 Pedro Alves <palves@redhat.com>
5255
5256 * completer.c (symbol_completer): New function, based on
5257 make_symbol_completion_list_fn.
5258 * completer.h (symbol_completer): New declaration.
5259 * guile/scm-cmd.c (cmdscm_completers): Adjust.
5260 * python/py-cmd.c (completers): Adjust.
5261 * symtab.c (make_symbol_completion_list_fn): Delete.
5262 * symtab.h (make_symbol_completion_list_fn): Delete.
5263 * cli/cli-decode.c (add_cmd): Adjust.
5264
5265 2017-07-17 Pedro Alves <palves@redhat.com>
5266
5267 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
5268 * dwarf2read.c: Include "filename-seen-cache.h".
5269 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
5270 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
5271 * filename-seen-cache.c: New file.
5272 * filename-seen-cache.h: New file.
5273 * symtab.c: Include "filename-seen-cache.h".
5274 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
5275 (create_filename_seen_cache, clear_filename_seen_cache)
5276 (delete_filename_seen_cache, filename_seen): Delete, parts moved
5277 to filename-seen-cache.h/filename-seen-cache.c.
5278 (output_source_filename, sources_info)
5279 (maybe_add_partial_symtab_filename)
5280 (make_source_files_completion_list): Adjust to use
5281 filename_seen_cache.
5282
5283 2017-07-17 Pedro Alves <palves@redhat.com>
5284
5285 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
5286 fields.
5287 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
5288 dwarf2_debug_sections*)): New.
5289 (dwarf2_per_objfile::dwarf2_per_objfile(const
5290 dwarf2_per_objfile&)): Declare as deleted.
5291 (dwarf2_per_objfile::operator=): Declare as deleted.
5292 (dwarf2_per_objfile::dwarf2_per_objfile)
5293 (dwarf2_per_objfile::~dwarf2_per_objfile)
5294 (dwarf2_per_objfile::free_cached_comp_units): New.
5295 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
5296 ctor. Call dwarf2_per_objfile's ctor manually.
5297 (dwarf2_locate_sections): Deleted/refactored as ...
5298 (dwarf2_per_objfile::locate_sections): ... this new method.
5299 (free_cached_comp_units): Defer to
5300 dwarf2_per_objfile::free_cached_comp_units.
5301 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
5302
5303 2017-07-14 Tom Tromey <tom@tromey.com>
5304
5305 PR rust/21764:
5306 * rust-exp.y (convert_ast_to_expression): Add "want_type"
5307 parameter.
5308 <UNOP_SIZEOF>: Split into separate case.
5309 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
5310
5311 2017-07-14 Tom Tromey <tom@tromey.com>
5312
5313 PR rust/21763:
5314 * symtab.c (symbol_matches_domain): Add language_rust to special
5315 case.
5316 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
5317 treat LOC_TYPEDEF symbols as variables.
5318
5319 2017-07-14 Pedro Alves <palves@redhat.com>
5320
5321 * symtab.c (make_file_symbol_completion_list_1): Iterate over
5322 symtabs matching all symtabs with SRCFILE as file name instead of
5323 only considering the first hit, with lookup_symtab.
5324
5325 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5326
5327 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
5328 operator_name parameters.
5329 (gen_expr): Update function call.
5330
5331 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5332
5333 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
5334 parameter.
5335 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
5336 Likewise.
5337 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
5338 parameter, use agent_expr::gdbarch instead, update function
5339 calls.
5340 (locexpr_tracepoint_var_ref): Likewise.
5341 (loclist_tracepoint_var_ref): Likewise.
5342 * ax-gdb.c (gen_trace_static_fields): Likewise.
5343 (gen_traced_pop): Likewise.
5344 (gen_frame_args_address): Likewise.
5345 (gen_frame_locals_address): Likewise.
5346 (gen_var_ref): Likewise.
5347 (gen_struct_ref_recursive): Likewise.
5348 (gen_static_field): Likewise.
5349 (gen_maybe_namespace_elt): Likewise.
5350 (gen_expr): Likewise.
5351 (gen_trace_for_var): Likewise.
5352 (gen_trace_for_expr): Likewise.
5353 (gen_trace_for_return_address): Likewise.
5354
5355 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5356
5357 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
5358 parameter.
5359 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
5360
5361 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5362
5363 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
5364 from ax, update calls.
5365 (gen_usual_arithmetic): Likewise.
5366 (gen_integral_promotions): Likewise.
5367 (gen_bitfield_ref): Likewise.
5368 (gen_primitive_field): Likewise.
5369 (gen_struct_ref_recursive): Likewise.
5370 (gen_struct_ref): Likewise.
5371 (gen_maybe_namespace_elt): Likewise.
5372 (gen_struct_elt_for_reference): Likewise.
5373 (gen_namespace_elt): Likewise.
5374 (gen_aggregate_elt_ref): Likewise.
5375 (gen_expr): Get gdbarch from ax, update calls.
5376 (gen_expr_binop_rest): Likewise.
5377
5378 2017-07-13 Pedro Alves <palves@redhat.com>
5379
5380 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
5381 as default tdesc.
5382 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
5383 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
5384 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
5385 tdesc_amd64_linux as default tdesc. Get final tdesc from the
5386 tdep.
5387 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
5388 Get final tdesc from the tdep.
5389 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
5390 default tdesc.
5391 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
5392 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
5393 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
5394 Use it as default tdesc.
5395 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
5396 down to amd_init_abi. No longer handle fallback tdesc here.
5397 * amd64-tdep.h (tdesc_x32): Declare.
5398 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
5399 parameter.
5400 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
5401 as default tdesc.
5402
5403 2017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5404
5405 * s390-linux-tdep.c (s390_process_record): Add support for
5406 instructions new in arch12.
5407
5408 2017-07-11 John Baldwin <jhb@FreeBSD.org>
5409
5410 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
5411 PT_GETFSBASE and PT_GETGSBASE.
5412 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
5413 PT_SETGSBASE.
5414
5415 2017-07-11 John Baldwin <jhb@FreeBSD.org>
5416
5417 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
5418 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
5419 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
5420 those rules.
5421 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
5422 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
5423 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
5424 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
5425 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
5426 * features/i386/amd64.xml: Add 64bit-segments.xml.
5427 * features/i386/amd64-avx-avx512.c: Regenerated.
5428 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
5429 * features/i386/amd64-avx-mpx.c: Regenerated.
5430 * features/i386/amd64-avx.c: Regenerated.
5431 * features/i386/amd64-mpx.c: Regenerated.
5432 * features/i386/amd64.c: Regenerated.
5433 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
5434 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
5435 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
5436 * regformats/i386/amd64-avx.dat: Regenerated.
5437 * regformats/i386/amd64-mpx.dat: Regenerated.
5438 * regformats/i386/amd64.dat: Regenerated.
5439
5440 2017-07-10 Yao Qi <yao.qi@linaro.org>
5441
5442 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
5443 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
5444
5445 2017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
5446
5447 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
5448 unsetenv.
5449 * gnulib/aclocal.m4: Regenerate.
5450 * gnulib/config.in: Regenerate.
5451 * gnulib/configure: Regenerate.
5452 * gnulib/import/Makefile.am: Regenerate.
5453 * gnulib/import/Makefile.in: Regenerate.
5454 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5455 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5456 * gnulib/import/m4/environ.m4: New file.
5457 * gnulib/import/m4/setenv.m4: New file.
5458 * gnulib/import/setenv.c: New file.
5459 * gnulib/import/unsetenv.c: New file.
5460
5461 2017-07-09 Simon Marchi <simon.marchi@ericsson.com>
5462
5463 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
5464 address when op is DW_OP_addr.
5465
5466 2017-07-09 Tom Tromey <tom@tromey.com>
5467
5468 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
5469 check and apply to outer type.
5470
5471 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5472
5473 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
5474 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
5475 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
5476 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
5477
5478 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5479
5480 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
5481
5482 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5483
5484 * corelow.c (get_core_siginfo): Remove.
5485 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
5486 instead of get_core_siginfo.
5487 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
5488 * gdbarch.h: Re-generate.
5489 * gdbarch.c: Re-generate.
5490 * linux-tdep.c (linux_core_xfer_siginfo): New.
5491 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
5492
5493 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5494
5495 * corelow.c (thread_section_name): Move to ...
5496 * gdbcore.h (thread_section_name): ... here.
5497
5498 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5499
5500 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
5501 (struct siginfo32): New.
5502 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
5503 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
5504 via ptrace(PT_LWPINFO).
5505
5506 2017-07-07 John Baldwin <jhb@FreeBSD.org>
5507
5508 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
5509 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
5510 (fbsd_get_siginfo_type): New.
5511 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
5512 (_initialize_fbsd_tdep): New.
5513
5514 2017-07-06 David Blaikie <dblaikie@gmail.com>
5515
5516 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
5517 a singular dwo_unit*) to support multiple CUs in the same way that
5518 multiple TUs are supported.
5519 (create_cus_hash_table): Replace create_dwo_cu with a function for
5520 parsing multiple CUs from a DWO file.
5521 (open_and_init_dwo_file): Use create_cus_hash_table rather than
5522 create_dwo_cu.
5523 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
5524 htab_find, rather than comparing the signature to a singleton CU in
5525 the dwo_file.
5526
5527 2017-07-06 Pedro Alves <palves@redhat.com>
5528
5529 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
5530
5531 2017-07-04 Pedro Alves <palves@redhat.com>
5532
5533 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
5534 * gdbtypes.h (TYPE_STATIC): Delete.
5535 (struct fn_field) <is_public, is_abstract, is_static, is_final,
5536 is_synchronized, is_native>: Delete.
5537 <dummy>: Bump.
5538 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
5539 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
5540 (TYPE_FN_FIELD_ABSTRACT): Delete.
5541
5542 2017-07-03 Simon Marchi <simon.marchi@ericsson.com>
5543
5544 * buffer.h (buffer_finish): Fix spelling mistakes.
5545
5546 2017-07-01 Eli Zaretskii <eliz@gnu.org>
5547
5548 * .dir-locals.el: Automatically switch to C-style comments in
5549 versions of Emacs that support the feature.
5550
5551 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
5552 Pedro Alves <palves@redhat.com>
5553
5554 PR cli/21688
5555 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
5556 (process_next_line): New variable 'inline_cmd'.
5557 Adjust 'if' clauses for "python", "compile" and "guile" to use
5558 'command_name_equals' and check for '!inline_cmd'.
5559
5560 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
5561
5562 PR cli/21688
5563 * cli/cli-script.c (command_name_equals_not_inline): New function.
5564 (process_next_line): Adjust 'if' clauses for "python", "compile"
5565 and "guile" to use command_name_equals_not_inline.
5566
5567 2017-06-29 Pedro Alves <palves@redhat.com>
5568
5569 * completer.c (expression_completer): Call
5570 linespec_location_completer instead of location_completer.
5571
5572 2017-06-29 Pedro Alves <palves@redhat.com>
5573
5574 * completer.c (expression_completer): Remove code that recomputes
5575 'text' from 'word'.
5576
5577 2017-06-29 Yao Qi <yao.qi@linaro.org>
5578
5579 * regformats/regdat.sh: Generate code with
5580 "ifndef IN_PROCESS_AGENT".
5581
5582 2017-06-28 Pedro Alves <palves@redhat.com>
5583
5584 * command.h: Include "common/scoped_restore.h".
5585
5586 2017-06-28 Yao Qi <yao.qi@linaro.org>
5587
5588 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
5589 instead of obstack_grow.
5590
5591 2017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
5592
5593 PR gdb/21337
5594 * symfile.c (reread_symbols): Call objfiles_changed just before
5595 read_symbols.
5596
5597 2017-06-27 Pedro Alves <palves@redhat.com>
5598
5599 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
5600 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
5601 (completion_list_add_symbol, completion_list_add_msymbol):
5602 ... these new functions.
5603 (add_symtab_completions)
5604 (default_make_symbol_completion_list_break_on_1): Adjust.
5605
5606 2017-06-27 Pedro Alves <palves@redhat.com>
5607
5608 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
5609 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
5610 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
5611 dtor.
5612 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
5613 'storage_obstack' field an auto_obstack. In-class initialize all
5614 non-bitfield fields. Make minsyms_read bool.
5615 * symfile.c (read_symbols): Adjust.
5616
5617 2017-06-27 Alan Hayward <alan.hayward@arm.com>
5618
5619 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
5620 (gdbsim_store_register): Likewise.
5621
5622 2017-06-27 Pedro Alves <palves@redhat.com>
5623
5624 * c-exp.y (name_obstack): Now an auto_obstack.
5625 (yylex): Use auto_obstack::clear.
5626 (c_parse): Use auto_obstack::clear instead of reinitializing and
5627 freeing the obstack.
5628 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
5629 * d-exp.y (name_obstack): Now an auto_obstack.
5630 (yylex): Use auto_obstack::clear.
5631 (d_parse): Use auto_obstack::clear instead of reinitializing and
5632 freeing the obstack.
5633 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
5634 auto_obstack.
5635 * dwarf2read.c (create_addrmap_from_index)
5636 (dwarf2_build_psymtabs_hard)
5637 (update_enumeration_type_from_children): Likewise.
5638 * gdb_obstack.h (auto_obstack): New type.
5639 * go-exp.y (name_obstack): Now an auto_obstack.
5640 (build_packaged_name): Use auto_obstack::clear.
5641 (go_parse): Use auto_obstack::clear instead of reinitializing and
5642 freeing the obstack.
5643 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
5644 auto_obstack.
5645 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
5646 * rust-exp.y (work_obstack): Now an auto_obstack.
5647 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
5648 reinitializing and freeing the obstack.
5649 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
5650 (host_char_to_target): Use auto_obstack.
5651 * utils.h (make_cleanup_obstack_free): Delete declaration.
5652 * valprint.c (generic_emit_char, generic_printstr): Use
5653 auto_obstack.
5654
5655 2017-06-27 Simon Marchi <simon.marchi@ericsson.com>
5656
5657 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
5658 thread.
5659 (darwin_init_thread_list): Don't update dummy thread.
5660 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
5661
5662 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
5663
5664 * record-full.c (netorder16): Remove.
5665
5666 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
5667
5668 * common/diagnostics.h: Define macros for GCC.
5669 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
5670 * common/vec.h: Include diagnostics.h.
5671 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
5672 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
5673 warning.
5674
5675 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
5676
5677 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
5678 New macro.
5679 * ada-lex.l: Ignore deprecated register warnings.
5680
5681 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
5682
5683 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
5684 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
5685
5686 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
5687
5688 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
5689 its own line.
5690
5691 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
5692
5693 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
5694
5695 2017-06-23 Alan Hayward <alan.hayward@arm.com>
5696
5697 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
5698 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
5699 (xtensa_register_read_masked): Likewise.
5700
5701 2017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
5702
5703 * common/environ.c (gdb_environ::unset): Update comment.
5704
5705 2017-06-22 Alan Hayward <alan.hayward@arm.com>
5706
5707 * python/py-unwind.c (pyuw_sniffer): Allocate space for
5708 registers.
5709
5710 2017-06-22 Alan Hayward <alan.hayward@arm.com>
5711
5712 * record-full.c (record_full_exec_insn): Use byte_vector.
5713
5714 2017-06-22 Yao Qi <yao.qi@linaro.org>
5715
5716 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
5717 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
5718
5719 2017-06-22 Alan Hayward <alan.hayward@arm.com>
5720
5721 * remote.c (cached_reg): Move from here...
5722 * regcache.h (cached_reg): ...to here.
5723 * python/py-unwind.c (struct reg_info): Remove.
5724 (cached_frame_info): Use cached_reg_t.
5725 (pyuw_prev_register): Likewise.
5726 (pyuw_sniffer): Use cached_reg_t and allocate registers.
5727 (pyuw_dealloc_cache): Free all registers.
5728
5729 2017-06-22 Pedro Alves <palves@redhat.com>
5730 Simon Marchi <simon.marchi@ericsson.com>
5731
5732 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
5733 warning.
5734 * common/diagnostics.h: New file.
5735
5736 2017-06-22 Pedro Alves <palves@redhat.com>
5737
5738 * common/agent.h: Add include guards.
5739
5740 2017-06-21 Simon Marchi <simon.marchi@ericsson.com>
5741
5742 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
5743 talk about addressable units instead of bytes.
5744
5745 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
5746
5747 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
5748 of '::const_iterator'.
5749
5750 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
5751
5752 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
5753 'unittests/environ-selftests.c'.
5754 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
5755 * charset.c (find_charset_names): Declare object 'iconv_env'.
5756 Update code to use 'iconv_env' object. Remove call to
5757 'free_environ'.
5758 * common/environ.c: Include <utility>.
5759 (make_environ): Delete function.
5760 (free_environ): Delete function.
5761 (gdb_environ::clear): New function.
5762 (gdb_environ::operator=): New function.
5763 (gdb_environ::get): Likewise.
5764 (environ_vector): Delete function.
5765 (set_in_environ): Delete function.
5766 (gdb_environ::set): New function.
5767 (unset_in_environ): Delete function.
5768 (gdb_environ::unset): New function.
5769 (gdb_environ::envp): Likewise.
5770 * common/environ.h: Include <vector>.
5771 (struct gdb_environ): Delete; transform into...
5772 (class gdb_environ): ... this class.
5773 (free_environ): Delete prototype.
5774 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
5775 environ_vector): Likewise.
5776 * infcmd.c (run_command_1): Update code to call
5777 'envp' from 'gdb_environ' class.
5778 (environment_info): Update code to call methods from 'gdb_environ'
5779 class.
5780 (unset_environment_command): Likewise.
5781 (path_info): Likewise.
5782 (path_command): Likewise.
5783 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
5784 (inferior::inferior): Initialize 'environment' using the host's
5785 information.
5786 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
5787 Include "environ.h".
5788 (class inferior) <environment>: Change type from 'struct
5789 gdb_environ' to 'gdb_environ'.
5790 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
5791 methods from 'gdb_environ' class.
5792 * solib.c (solib_find_1): Likewise
5793 * unittests/environ-selftests.c: New file.
5794
5795 2017-06-20 Yao Qi <yao.qi@linaro.org>
5796
5797 * features/i386/i386-linux.xml: Exchange the order of including
5798 32bit-linux.xml and 32bit-sse.xml.
5799 * features/i386/i386-linux.c: Regenerated.
5800
5801 2017-06-20 Yao Qi <yao.qi@linaro.org>
5802
5803 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
5804 Delete copy ctor and assignment operator.
5805 (tdesc_type): Likewise.
5806 (tdesc_feature): Likewise.
5807 (tdesc_free_reg): Remove.
5808 (tdesc_create_reg): Use new.
5809 (tdesc_free_type): Remove.
5810 (tdesc_create_vector): Use new.
5811 (tdesc_create_union): Likewise.
5812 (tdesc_create_flags): Likewise.
5813 (tdesc_create_enum): Likewise.
5814 (tdesc_free_feature): Delete.
5815 (free_target_description): Use delete.
5816
5817 2017-06-19 John Baldwin <jhb@FreeBSD.org>
5818
5819 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
5820 registers.
5821
5822 2017-06-19 Pedro Alves <palves@redhat.com>
5823
5824 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
5825 after gdb::unlinker.
5826
5827 2017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
5828
5829 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
5830 gdb_environ to access an environment variable.
5831
5832 2017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5833
5834 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
5835 gdb_byte*.
5836
5837 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
5838
5839 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
5840
5841 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
5842
5843 * configure: Re-generate.
5844 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
5845
5846 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
5847
5848 * configure: Re-generate.
5849 * warning.m4: Pass -Werror to compiler when checking for
5850 supported warning flags.
5851
5852 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
5853
5854 * Makefile.in (COMPILE.pre): Add "-x c++".
5855
5856 2017-06-16 Alan Hayward <alan.hayward@arm.com>
5857 Pedro Alves <palves@redhat.com>
5858 Yao Qi <yao.qi@linaro.org>
5859
5860 * defs.h (RequireLongest): New.
5861 (extract_integer): Declare function template.
5862 (extract_signed_integer): Remove the declaration, but define it
5863 static inline.
5864 (extract_unsigned_integer): Likewise.
5865 (store_integer): Declare function template.
5866 (store_signed_integer): Remove the declaration, but define it
5867 static inline.
5868 (store_unsigned_integer): Likewise.
5869 * findvar.c (extract_integer): New function template.
5870 (extract_signed_integer): Remove.
5871 (extract_unsigned_integer): Remove.
5872 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
5873 instantiations.
5874 (store_integer): New function template.
5875 (store_signed_integer): Remove.
5876 (store_unsigned_integer): Remove.
5877 (store_integer): Explicit instantiations.
5878 * regcache.c (regcache_raw_read_signed): Update.
5879 (regcache::raw_read): New function.
5880 (regcache::raw_read_signed): Remove.
5881 (regcache::raw_read_unsigned): Remove.
5882 (regcache_raw_read_unsigned): Update.
5883 (regcache_raw_write_unsigned): Update.
5884 (regcache::raw_write_signed): Remove.
5885 (regcache::raw_write): New function.
5886 (regcache_cooked_read_signed): Update.
5887 (regcache::raw_write_unsigned): Remove.
5888 (regcache::cooked_read_signed): Remove.
5889 (regcache_cooked_read_unsigned): Update.
5890 (regcache::cooked_read_unsigned): Remove.
5891 (regcache_cooked_write_signed): Update.
5892 (regcache_cooked_write_unsigned): Update.
5893 * regcache.h (regcache) <raw_read_signed>: Remove.
5894 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
5895 <raw_read, raw_write>: New.
5896 <cooked_read_signed, cooked_write_signed>: Remove.
5897 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
5898 <cooked_read, cooked_write>: New.
5899 * sh64-tdep.c (sh64_pseudo_register_read): Update.
5900 (sh64_pseudo_register_write): Update.
5901
5902 2017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
5903
5904 * arc-tdep.c (arc_disassembler_options): New variable.
5905 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
5906 of default_print_insn.
5907 (arc_delayed_print_insn): Set info->section when needed,
5908 use default_print_insn to retrieve a disassembler.
5909
5910 2017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
5911
5912 PR gdb/21574
5913 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
5914 to mention $SHELL and startup-with-shell.
5915
5916 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
5917
5918 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
5919
5920 2017-06-14 Yao Qi <yao.qi@linaro.org>
5921
5922 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
5923 default_print_insn instead of print_insn_aarch64.
5924 * arm-tdep.c (gdb_print_insn_arm): Call
5925 default_print_insn instead of print_insn_big_arm
5926 and print_insn_little_arm.
5927 * i386-tdep.c (i386_print_insn): Call default_print_insn
5928 instead of print_insn_i386.
5929 * ia64-tdep.c (ia64_print_insn): Call
5930 default_print_insn instead of print_insn_ia64.
5931 * mips-tdep.c (gdb_print_insn_mips): Call
5932 default_print_insn instead of print_insn_big_mips
5933 and print_insn_little_mips.
5934 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
5935 instead of print_insn_spu.
5936
5937 2017-06-14 Pedro Alves <palves@redhat.com>
5938
5939 * ada-lang.c: Include "common/byte-vector.h".
5940 (ada_value_primitive_packed_val): Use gdb::byte_vector.
5941 * charset.c (wchar_iterator::iterate): Resize the vector instead
5942 of reserving it.
5943 * common/byte-vector.h: Include "common/def-vector.h".
5944 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
5945 * cli/cli-dump.c: Include "common/byte-vector.h".
5946 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
5947 * common/byte-vector.h: New file.
5948 * common/def-vector.h: New file.
5949 * common/default-init-alloc.h: New file.
5950 * dwarf2loc.c: Include "common/byte-vector.h".
5951 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
5952 instead of reserving it.
5953 * dwarf2read.c: Include "common/byte-vector.h".
5954 (data_buf::m_vec): Now a gdb::byte_vector.
5955 * gdb_regex.c: Include "common/def-vector.h".
5956 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
5957 * mi/mi-main.c: Include "common/byte-vector.h".
5958 (mi_cmd_data_read_memory): Use gdb::byte_vector.
5959 * printcmd.c: Include "common/byte-vector.h".
5960 (print_scalar_formatted): Use gdb::byte_vector.
5961 * valprint.c: Include "common/byte-vector.h".
5962 (maybe_negate_by_bytes, print_decimal_chars): Use
5963 gdb::byte_vector.
5964
5965 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
5966
5967 * darwin-nat.c: Include "nat/fork-inferior.h".
5968
5969 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
5970
5971 * configure.nat: Factor out Darwin bits that are not
5972 architecture-specific. Add fork-inferior.o.
5973
5974 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
5975
5976 * configure.nat: Factor out AIX bits that are not
5977 architecture-specific. Add fork-inferior.o.
5978
5979 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5980
5981 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
5982 (read_pieced_value, write_pieced_value): ...here. Reduce to
5983 wrappers that just call rw_pieced_value.
5984
5985 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5986
5987 * dwarf2loc.c (write_pieced_value): When writing the data for a
5988 memory piece, use write_memory_with_notification instead of
5989 write_memory.
5990
5991 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5992
5993 * valops.c (read_value_memory): Change embedded_offset to
5994 represent a bit offset instead of a byte offset.
5995 * value.h (read_value_memory): Adjust comment.
5996
5997 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5998
5999 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
6000 dest_offset_bits and source_offset_bits.
6001 (write_pieced_value): Likewise.
6002
6003 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6004
6005 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
6006 given by DW_OP_bit_piece.
6007 (write_pieced_value): Likewise.
6008
6009 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6010
6011 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
6012 some other preparations to the places where sufficient information
6013 is available.
6014 (write_pieced_value): Likewise.
6015
6016 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6017
6018 * dwarf2loc.c (bits_to_bytes): New function.
6019 (read_pieced_value): Fix offset calculations for register pieces
6020 on big-endian targets.
6021 (write_pieced_value): Likewise.
6022
6023 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6024
6025 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
6026 (write_pieced_value): Likewise.
6027
6028 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6029
6030 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
6031 transfer the source value's least significant bits, instead of its
6032 lowest-addressed ones. Rename type_len to max_offset.
6033 (read_pieced_value): Mirror above changes to write_pieced_value as
6034 applicable.
6035
6036 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6037
6038 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
6039 truncate full bytes from dest_offset_bits before using it as an
6040 offset into the buffer.
6041
6042 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6043
6044 * dwarf2loc.c (write_pieced_value): Include transfer size in
6045 byte-wise check.
6046
6047 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6048
6049 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
6050 calculation of this_size.
6051
6052 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6053
6054 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
6055 when targeting a bit-field.
6056 (write_pieced_value): Likewise.
6057
6058 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6059
6060 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
6061 (allocate_piece_closure): Drop addr_size parameter.
6062 (dwarf2_evaluate_loc_desc_full): Adjust call to
6063 allocate_piece_closure.
6064
6065 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6066
6067 PR gdb/21226
6068 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
6069 the LSB end, independent of endianness.
6070
6071 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6072
6073 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
6074 size capping.
6075
6076 2017-06-13 Yao Qi <yao.qi@linaro.org>
6077
6078 * mips-linux-nat.c: Move include features/mips*-linux.c to
6079 mips-linux-tdep.c.
6080 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
6081 to mips-linux-tdep.c.
6082 * mips-linux-tdep.c: Include features/mips*-linux.c
6083 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
6084 functions.
6085 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
6086 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
6087 (tdesc_mips64_dsp_linux): Declare.
6088
6089 2017-06-12 Tom Tromey <tom@tromey.com>
6090
6091 * valprint.h (val_print_type_code_int): Remove.
6092 * valprint.c (generic_val_print_int): Always call
6093 val_print_scalar_formatted.
6094 (val_print_type_code_int): Remove.
6095 * printcmd.c (print_scalar_formatted): Handle options->format==0.
6096 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
6097 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
6098 * ada-valprint.c (ada_val_print_num): Use
6099 val_print_scalar_formatted.
6100
6101 2017-06-12 Tom Tromey <tom@tromey.com>
6102
6103 * printcmd.c (print_scalar_formatted): Unify the two switches.
6104 Don't convert scalars to LONGEST.
6105
6106 2017-06-12 Tom Tromey <tom@tromey.com>
6107
6108 PR exp/16225:
6109 * valprint.h (print_decimal_chars): Update.
6110 * valprint.c (maybe_negate_by_bytes): New function.
6111 (print_decimal_chars): Add "is_signed" argument.
6112 * printcmd.c (print_scalar_formatted): Update.
6113
6114 2017-06-12 Tom Tromey <tom@tromey.com>
6115
6116 PR exp/16225:
6117 * valprint.h (print_binary_chars, print_hex_chars): Update.
6118 * valprint.c (val_print_type_code_int): Update.
6119 (print_binary_chars): Add "zero_pad" argument.
6120 (emit_octal_digit): New function.
6121 (print_octal_chars): Don't zero-pad.
6122 (print_decimal_chars): Likewise.
6123 (print_hex_chars): Add "zero_pad" argument.
6124 * sh64-tdep.c (sh64_do_fp_register): Update.
6125 * regcache.c (regcache::dump): Update.
6126 * printcmd.c (print_scalar_formatted): Update.
6127 * infcmd.c (default_print_one_register_info): Update.
6128
6129 2017-06-12 Pedro Alves <palves@redhat.com>
6130 Alan Hayward <alan.hayward@arm.com>
6131
6132 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
6133 (mips_eabi_push_dummy_call): Rename local 'regsize' to
6134 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
6135 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
6136 Assert that abi_regsize bytes fit in 'ref_valbuf'.
6137
6138 2017-06-12 Pedro Alves <palves@redhat.com>
6139
6140 * dwarf2read.c (mapped_symtab::data): Now a vector of
6141 symtab_index_entry instead of vector of
6142 std::unique_ptr<symtab_index_entry>. All users adjusted to check
6143 whether an element's name is NULL instead of checking whether the
6144 element itself is NULL.
6145 (find_slot): Change return type. Adjust.
6146 (hash_expand, , add_index_entry, uniquify_cu_indices)
6147 (write_hash_table): Adjust.
6148
6149 2017-06-12 Pedro Alves <palves@redhat.com>
6150
6151 * dwarf2read.c (recursively_count_psymbols): New function.
6152 (write_psymtabs_to_index): Call it to compute number of psyms and
6153 pass estimate size of psyms_seen to unordered_set's ctor.
6154
6155 2017-06-12 Pedro Alves <palves@redhat.com>
6156
6157 * dwarf2read.c (write_hash_table): Check if key already exists
6158 before emplacing.
6159
6160 2017-06-12 Pedro Alves <palves@redhat.com>
6161
6162 * dwarf2read.c (data_buf::append_space): Rename to...
6163 (data_buf::grow): ... this, and make private. Adjust all callers.
6164 (data_buf::append_uint): New method.
6165 (add_address_entry, write_one_signatured_type)
6166 (write_psymtabs_to_index): Use it.
6167
6168 2017-06-12 Pedro Alves <palves@redhat.com>
6169
6170 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
6171 (file_write (FILE *, const std::vector<Elem>&)): Delete.
6172 (data_buf::file_write): Call ::fwrite directly.
6173
6174 2017-06-12 Pedro Alves <palves@redhat.com>
6175
6176 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
6177 std::vector::erase.
6178
6179 2017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6180
6181 Code cleanup: C++ify .gdb_index producer.
6182 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
6183 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
6184 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
6185 (create_strtab, add_string): Remove.
6186 (file_write, data_buf): New.
6187 (struct symtab_index_entry): Use std::vector for cu_indices.
6188 (struct mapped_symtab): Use std::vector for data.
6189 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
6190 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
6191 Remove.
6192 (find_slot): Change return type. Update it to the new data structures.
6193 (hash_expand, add_index_entry): Update it to the new data structures.
6194 (offset_type_compare): Remove.
6195 (uniquify_cu_indices): Update it to the new data structures.
6196 (c_str_view, c_str_view_hasher, vector_hasher): New.
6197 (add_indices_to_cpool): Remove.
6198 (write_hash_table): Update it to the new data structures.
6199 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
6200 (eq_psymtab_cu_index): Remove.
6201 (psym_index_map): New typedef.
6202 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
6203 reference and std::unordered_map for cu_index_htab.
6204 (add_address_entry, add_address_entry_worker, write_address_map)
6205 (write_psymbols): Update it to the new data structures.
6206 (write_obstack): Remove.
6207 (struct signatured_type_index_data): Change types_list to a data_buf
6208 reference and psyms_seen to a std::unordered_set reference.
6209 (write_one_signatured_type, recursively_write_psymbols)
6210 (write_psymtabs_to_index): Update it to the new data structures.
6211
6212 2017-06-11 Simon Marchi <simon.marchi@ericsson.com>
6213
6214 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
6215 separate-debug-file commands.
6216 * symfile.h (separate_debug_file_debug): New global.
6217 * symfile.c (separate_debug_file_debug): New global.
6218 (separate_debug_file_exists, find_separate_debug_file): Add
6219 debug output.
6220 (_initialize_symfile): Add "set debug separate-debug-file"
6221 command.
6222 * build-id.c (build_id_to_debug_bfd,
6223 find_separate_debug_file_by_buildid): Add debug output.
6224
6225 2017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
6226
6227 * gdbarch.sh (displaced_step_free_closure): Remove.
6228 * gdbarch.h, gdbarch.c: Re-generate.
6229 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
6230 displaced_step_free_closure.
6231 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
6232 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6233 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6234 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
6235 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
6236 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6237 * arch-utils.h (simple_displaced_step_free_closure): Remove.
6238 * arch-utils.c (simple_displaced_step_free_closure): Remove.
6239 * infrun.c (displaced_step_clear): Call xfree instead of
6240 gdbarch_displaced_step_free_closure.
6241
6242 2017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
6243
6244 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
6245 NULL".
6246
6247 2017-06-08 Alan Hayward <alan.hayward@arm.com>
6248
6249 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
6250 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
6251 (mn10300_push_dummy_call): Likewise.
6252
6253 2017-06-08 Alan Hayward <alan.hayward@arm.com>
6254
6255 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
6256
6257 2017-06-08 Alan Hayward <alan.hayward@arm.com>
6258
6259 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
6260
6261 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6262
6263 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
6264 able to start inferiors using a shell.
6265 (New remote packets): Announce new packet "QStartupWithShell".
6266 * remote.c: Add PACKET_QStartupWithShell.
6267 (extended_remote_create_inferior): Handle new
6268 PACKET_QStartupWithShell.
6269 (remote_protocol_features) <QStartupWithShell>: New entry for
6270 PACKET_QStartupWithShell.
6271 (_initialize_remote): Call "add_packet_config_cmd" for
6272 QStartupShell.
6273
6274 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6275 Pedro Alves <palves@redhat.com>
6276
6277 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
6278 and "nat/fork-inferior.h".
6279 * common/common-inferior.h: New file, with contents from
6280 "gdb/inferior.h".
6281 * commom/common-utils.c: Include "common-utils.h".
6282 (stringify_argv): New function.
6283 * common/common-utils.h (stringify_argv): New prototype.
6284 * configure.nat: Add "fork-inferior.o" as a dependency for
6285 "*linux*", "fbsd*" and "nbsd*" hosts.
6286 * corefile.c (get_exec_file): Update comment.
6287 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
6288 instead of "startup_inferior".
6289 (darwin_create_inferior): Call "add_thread_silent" after
6290 "fork_inferior".
6291 * fork-child.c: Cleanup unnecessary includes.
6292 (SHELL_FILE): Move to "common/common-fork-child.c".
6293 (environ): Likewise.
6294 (exec_wrapper): Initialize.
6295 (get_exec_wrapper): New function.
6296 (breakup_args): Move to "common/common-fork-child.c"; rename to
6297 "breakup_args_for_exec".
6298 (escape_bang_in_quoted_argument): Move to
6299 "common/common-fork-child.c".
6300 (saved_ui): New variable.
6301 (prefork_hook): New function.
6302 (postfork_hook): Likewise.
6303 (postfork_child_hook): Likewise.
6304 (gdb_startup_inferior): Likewise.
6305 (fork_inferior): Move to "common/common-fork-child.c". Update
6306 function to support gdbserver.
6307 (startup_inferior): Likewise.
6308 * gdbcore.h (get_exec_file): Remove declaration.
6309 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
6310 instead of "startup_inferior". Call "add_thread_silent" after
6311 "fork_inferior".
6312 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
6313 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
6314 instead of "startup_inferior". Call "add_thread_silent" after
6315 "fork_inferior".
6316 * inferior.h: Include "common-inferior.h".
6317 (trace_start_error): Move to "common/common-utils.h".
6318 (trace_start_error_with_name): Likewise.
6319 (fork_inferior): Move prototype to "nat/fork-inferior.h".
6320 (startup_inferior): Likewise.
6321 (gdb_startup_inferior): New prototype.
6322 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
6323 * nat/fork-inferior.h: New file.
6324 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
6325 instead of "startup_inferior". Call "add_thread_silent" after
6326 "fork_inferior".
6327 * target.h (target_terminal_init): Move prototype to
6328 "target/target.h".
6329 (target_terminal_inferior): Likewise.
6330 (target_terminal_ours): Likewise.
6331 * target/target.h (target_terminal_init): New prototype, moved
6332 from "target.h".
6333 (target_terminal_inferior): Likewise.
6334 (target_terminal_ours): Likewise.
6335 * utils.c (gdb_flush_out_err): New function.
6336
6337 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6338
6339 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
6340 * common/common-gdbthread.h: New file, with parts from
6341 "gdb/gdbthread.h".
6342 * gdbthread.h: Include "common-gdbthread.h".
6343 (switch_to_thread): Moved to "common/common-gdbthread.h".
6344
6345 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6346
6347 * Makefile.in (SFILES): Add "common/job-control.c".
6348 (HFILES_NO_SRCDIR): Add "common/job-control.h".
6349 (COMMON_OBS): Add "job-control.o".
6350 * common/job-control.c: New file, with contents from
6351 "gdb/inflow.c".
6352 * common/job-control.h: New file, with contents from "terminal.h".
6353 * fork-child.c: Include "job-control.h".
6354 * inflow.c: Include "job-control.h".
6355 (gdb_setpgid): Move to "common/common-inflow.c".
6356 (_initialize_inflow): Move setting of "job_control" to
6357 "handle_job_control".
6358 * terminal.h (job_control): Moved to "common/common-terminal.h".
6359 (gdb_setpgid): Likewise.
6360 * top.c: Include "job_control.h".
6361 * utils.c: Likewise.
6362 (job_control): Moved to "job-control.c".
6363
6364 2017-06-07 Pedro Alves <palves@redhat.com>
6365
6366 * Makefile.in (SFILES): Add gdb_regex.c.
6367 (COMMON_OBS): Add gdb_regex.o.
6368 * ada-lang.c (ada_add_standard_exceptions)
6369 (ada_add_exceptions_from_frame, name_matches_regex)
6370 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
6371 parameter type to compiled_regex. Adjust.
6372 (ada_exceptions_list): Use compiled_regex.
6373 * break-catch-throw.c (exception_catchpoint::pattern): Now a
6374 std::unique_ptr<compiled_regex>.
6375 (exception_catchpoint::~exception_catchpoint): Remove regfree
6376 call.
6377 (check_status_exception_catchpoint): Adjust to use compiled_regex.
6378 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
6379 * breakpoint.c (solib_catchpoint::compiled): Now a
6380 std::unique_ptr<compiled_regex>.
6381 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
6382 (check_status_catch_solib): Adjust to use compiled_regex.
6383 (add_solib_catchpoint): Adjust to use compiled_regex.
6384 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
6385 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
6386 compiled_regex reference. Adjust to use it.
6387 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
6388 declaration. Include "gdb_regex.h".
6389 (apropos_cmd): Change regex parameter to compiled_regex reference.
6390 * gdb_regex.c: New file.
6391 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
6392 declarations.
6393 (class compiled_regex): New.
6394 * linux-tdep.c: Include "common/gdb_optional.h".
6395 (struct mapping_regexes): New, factored out from
6396 mapping_is_anonymous_p, and adjusted to use compiled_regex.
6397 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
6398 gdb::optional and remove cleanups. Adjust to compiled_regex.
6399 * probe.c: Include "common/gdb_optional.h".
6400 (collect_probes): Use compiled_regex and gdb::optional and remove
6401 cleanups.
6402 * skip.c: Include "common/gdb_optional.h".
6403 (skiplist_entry::compiled_function_regexp): Now a
6404 gdb::optional<compiled_regex>.
6405 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
6406 (free_skiplist_entry): Remove regfree call.
6407 (compile_skip_regexp, skip_rfunction_p): Adjust to use
6408 compiled_regex and gdb::optional.
6409 * symtab.c: Include "common/gdb_optional.h".
6410 (search_symbols): Use compiled_regex and gdb::optional.
6411 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
6412 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
6413 to gdb_regex.c.
6414
6415 2017-06-07 Alan Hayward <alan.hayward@arm.com>
6416
6417 * regcache.c (regcache::save): Avoid buffer use.
6418 (regcache::dump): Likewise.
6419
6420 2017-06-07 Alan Hayward <alan.hayward@arm.com>
6421
6422 * sh-tdep.c (sh_pseudo_register_read): Remove
6423 MAX_REGISTER_SIZE.
6424 (sh_pseudo_register_write): Likewise.
6425 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
6426 (sh64_pseudo_register_write): Likewise
6427
6428 2017-06-07 Alan Hayward <alan.hayward@arm.com>
6429
6430 * aarch64-tdep.c (aarch64_store_return_value): Use
6431 V_REGISTER_SIZE.
6432 (aarch64_pseudo_read_value): Likewise.
6433 (aarch64_pseudo_write): Likewise.
6434
6435 2017-06-06 Yao Qi <yao.qi@linaro.org>
6436
6437 * regformats/regdef.h (set_register_cache): Remove the
6438 declaration.
6439
6440 2017-06-06 Alan Hayward <alan.hayward@arm.com>
6441
6442 * frame.c (frame_unwind_register_signed): Use
6443 frame_unwind_register_value.
6444
6445 2017-06-06 Pedro Alves <palves@redhat.com>
6446
6447 PR breakpoints/21553
6448 * breakpoint.c (create_breakpoints_sal_default)
6449 (init_breakpoint_sal, create_breakpoint_sal): Use
6450 gdb::unique_xmalloc_ptr for string parameters.
6451 (create_breakpoint): Constify 'extra_string' and 'cond_string'
6452 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
6453 (base_breakpoint_create_breakpoints_sal)
6454 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
6455 (strace_marker_create_breakpoints_sal)
6456 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
6457 string parameters.
6458 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
6459 gdb::unique_xmalloc_ptr for string parameters.
6460 (create_breakpoint): Constify 'extra_string' and 'cond_string'
6461 parameters.
6462
6463 2017-06-06 Alan Hayward <alan.hayward@arm.com>
6464
6465 * alpha-tdep.c (alpha_register_to_value): Use
6466 get_frame_register_value.
6467 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
6468
6469 2017-06-06 Alan Hayward <alan.hayward@arm.com>
6470
6471 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
6472 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
6473 (ia64_value_to_register): Likewise.
6474 (ia64_extract_return_value): Likewise.
6475 (ia64_store_return_value): Likewise.
6476 (ia64_push_dummy_call): Likewise.
6477
6478 2017-06-04 Joel Brobecker <brobecker@adacore.com>
6479
6480 GDB 8.0 released.
6481
6482 2017-06-03 Simon Marchi <simon.marchi@ericsson.com>
6483
6484 * x86-linux-nat.c (struct arch_lwp_info): Remove.
6485
6486 2017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
6487
6488 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
6489 parameter.
6490 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
6491
6492 2017-06-02 Simon Marchi <simon.marchi@ericsson.com>
6493
6494 * event-loop.c (poll_timers): Unallocate timer using delete
6495 instead of xfree.
6496
6497 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
6498
6499 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
6500 (struct breakpoint) <~breakpoint>: New.
6501 (struct watchpoint): Inherit from breakpoint.
6502 <~watchpoint>: New.
6503 <base>: Remove.
6504 (struct tracepoint): Inherit from breakpoint.
6505 <base>: Remove.
6506 * breakpoint.c (longjmp_breakpoint_ops): Remove.
6507 (struct longjmp_breakpoint): Inherit from breakpoint.
6508 <~longjmp_breakpoint>: New.
6509 <base>: Remove.
6510 (new_breakpoint_from_type): Remove casts.
6511 (watchpoint_in_thread_scope): Remove reference to base field.
6512 (watchpoint_del_at_next_stop): Likewise.
6513 (update_watchpoint): Likewise.
6514 (watchpoint_check): Likewise.
6515 (bpstat_check_watchpoint): Likewise.
6516 (set_longjmp_breakpoint): Likewise.
6517 (struct fork_catchpoint): Inherit from breakpoint.
6518 <base>: Remove.
6519 (struct solib_catchpoint): Inherit from breakpoint.
6520 <~solib_catchpoint>: New.
6521 <base>: Remove.
6522 (dtor_catch_solib): Change to ...
6523 (solib_catchpoint::~solib_catchpoint): ... this.
6524 (breakpoint_hit_catch_solib): Remove reference to base field.
6525 (add_solib_catchpoint): Likewise.
6526 (create_fork_vfork_event_catchpoint): Likewise.
6527 (struct exec_catchpoint): Inherit from breakpoint.
6528 <~exec_catchpoint>: New.
6529 <base>: Remove.
6530 (dtor_catch_exec): Change to ...
6531 (exec_catchpoint::~exec_catchpoint): ... this.
6532 (dtor_watchpoint): Change to ...
6533 (watchpoint::~watchpoint): ... this.
6534 (watch_command_1): Remove reference to base field.
6535 (catch_exec_command_1): Likewise.
6536 (base_breakpoint_dtor): Change to ...
6537 (breakpoint::~breakpoint): ... this.
6538 (base_breakpoint_ops): Remove dtor field value.
6539 (longjmp_bkpt_dtor): Change to ...
6540 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
6541 (strace_marker_create_breakpoints_sal): Remove reference to base
6542 field.
6543 (delete_breakpoint): Don't manually call breakpoint destructor.
6544 (create_tracepoint_from_upload): Remove reference to base field.
6545 (trace_pass_set_count): Likewise.
6546 (initialize_breakpoint_ops): Don't initialize
6547 momentary_breakpoint_ops, don't set dtors.
6548 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
6549 <~ada_catchpoint>: New.
6550 <base>: Remove.
6551 (create_excep_cond_exprs): Remove reference to base field.
6552 (dtor_exception): Change to ...
6553 (ada_catchpoint::~ada_catchpoint): ... this.
6554 (dtor_catch_exception): Remove.
6555 (dtor_catch_exception_unhandled): Remove.
6556 (dtor_catch_assert): Remove.
6557 (create_ada_exception_catchpoint): Remove reference to base
6558 field.
6559 (initialize_ada_catchpoint_ops): Don't set dtors.
6560 * break-catch-sig.c (struct signal_catchpoint): Inherit from
6561 breakpoint.
6562 <~signal_catchpoint>: New.
6563 <base>: Remove.
6564 (signal_catchpoint_dtor): Change to ...
6565 (signal_catchpoint::~signal_catchpoint): ... this.
6566 (create_signal_catchpoint): Remove reference to base field.
6567 (initialize_signal_catchpoint_ops): Don't set dtor.
6568 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
6569 from breakpoint.
6570 <~syscall_catchpoint>: New.
6571 <base>: Remove.
6572 (dtor_catch_syscall): Change to ...
6573 (syscall_catchpoint::~syscall_catchpoint): ... this.
6574 (create_syscall_event_catchpoint): Remove reference to base
6575 field.
6576 (initialize_syscall_catchpoint_ops): Don't set dtor.
6577 * break-catch-throw.c (struct exception_catchpoint): Inherit
6578 from breakpoint.
6579 <~exception_catchpoint>: New.
6580 <base>: Remove.
6581 (dtor_exception_catchpoint): Change to ...
6582 (exception_catchpoint::~exception_catchpoint): ... this.
6583 (handle_gnu_v3_exceptions): Remove reference to base field.
6584 (initialize_throw_catchpoint_ops): Don't set dtor.
6585 * ctf.c (ctf_get_traceframe_address): Remove reference to base
6586 field.
6587 * remote.c (remote_get_tracepoint_status): Likewise.
6588 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
6589 * tracefile.c (tracefile_fetch_registers): Likewise.
6590 * tracepoint.c (actions_command): Likewise.
6591 (validate_actionline): Likewise.
6592 (tfind_1): Likewise.
6593 (get_traceframe_location): Likewise.
6594 (find_matching_tracepoint_location): Likewise.
6595 (parse_tracepoint_status): Likewise.
6596 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
6597
6598 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
6599
6600 * breakpoint.c (struct longjmp_breakpoint): New struct.
6601 (is_tracepoint_type): Change return type to bool.
6602 (is_longjmp_type): New function.
6603 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
6604 (set_raw_breakpoint_without_location): Use
6605 new_breakpoint_from_type.
6606 (set_raw_breakpoint): Likewise.
6607
6608 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
6609
6610 * breakpoint.c (new_breakpoint_from_type): New function.
6611 (create_breakpoint_sal): Use new_breakpoint_from_type and
6612 unique_ptr.
6613 (create_breakpoint): Likewise.
6614
6615 2017-05-31 Simon Marchi <simon.marchi@ericsson.com>
6616
6617 * memattr.c (mem_info_command): Rename to ...
6618 (info_mem_command): ... this.
6619 (mem_enable_command): Rename to ...
6620 (enable_mem_command): ... this.
6621 (mem_disable_command): Rename to ...
6622 (disable_mem_command): ... this.
6623 (mem_delete_command): Rename to ...
6624 (delete_mem_command): ... this.
6625 (_initialize_mem): Adjust function names.
6626
6627 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
6628
6629 * btrace.c (handle_pt_insn_events): New.
6630 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
6631 STATUS. Split into this and ...
6632 (handle_pt_insn_event_flags): ... this.
6633
6634 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
6635
6636 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
6637 and struct pt_insn.resynced.
6638 * configure: Regenerated.
6639 * config.in: Regenerated.
6640
6641 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6642
6643 * btrace.c (ftrace_find_call_by_number): New function.
6644 (ftrace_new_function): Store objects, not pointers.
6645 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
6646 ftrace_new_gap, ftrace_update_function,
6647 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
6648 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
6649 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
6650 btrace_ends_with_single_insn, btrace_call_get): Account for
6651 btrace_thread_info::functions now storing objects.
6652 * btrace.h (struct btrace_thread_info): Add constructor.
6653 (struct btrace_thread_info) <functions>: Make std::vector.
6654 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
6655 Initialize with default values.
6656 * record-btrace.c (record_btrace_frame_sniffer): Account for
6657 btrace_thread_info::functions now storing objects.
6658
6659 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6660
6661 * btrace.c: Remove typedef bfun_s.
6662 (ftrace_new_gap): Directly add gaps to the list of gaps.
6663 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
6664 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
6665 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
6666 instead of gdb VEC.
6667
6668 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6669
6670 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
6671 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
6672 with btrace_thread_info::next_segment and
6673 btrace_thread_info::prev_segment.
6674 * btrace.h: Remove struct btrace_func_link.
6675 (struct btrace_function): Replace pair of function segment pointers
6676 with pair of indices.
6677 * python/py-record-btrace.c (btpy_call_prev_sibling,
6678 btpy_call_next_sibling): Replace references to
6679 btrace_thread_info::segment with btrace_thread_info::next_segment and
6680 btrace_thread_info::prev_segment.
6681 * record-btrace.c (record_btrace_frame_this_id): Use
6682 btrace_find_call_by_number.
6683
6684 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6685
6686 * btrace.c (ftrace_new_function, ftrace_fixup_level,
6687 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
6688 btrace_insn_next, btrace_insn_prev): Remove references to
6689 btrace_thread_info::flow.
6690 * btrace.h (struct btrace_function): Remove FLOW.
6691
6692 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6693
6694 * btrace.c (ftrace_find_call_by_number): New function.
6695 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
6696 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
6697 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
6698 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
6699 index.
6700 * btrace.h (struct btrace_function): Turn UP into an index.
6701 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
6702 as an index.
6703 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
6704 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
6705 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
6706
6707 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6708
6709 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
6710 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
6711 ftrace_update_function, ftrace_compute_global_level_offset,
6712 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
6713 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
6714 btrace_insn_end, btrace_is_empty): Remove references to
6715 btrace_thread_info::begin and btrace_thread_info::end.
6716 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
6717 (struct btrace_thread_info) <functions>: Adjust comment.
6718 * record-btrace.c (record_btrace_start_replaying): Remove reference to
6719 btrace_thread_info::begin.
6720
6721 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6722
6723 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
6724 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
6725 ftrace_update_function): Remove arguments that implicitly were always
6726 BTINFO->END.
6727 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
6728 Don't pass BTINFO->END.
6729
6730 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6731
6732 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
6733 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
6734 btrace_find_insn_by_number): Replace function segment pointer with
6735 index.
6736 (btrace_insn_cmp): Simplify.
6737 * btrace.h: (struct btrace_insn_iterator) Rename index to
6738 insn_index. Replace function segment pointer with index into function
6739 segment vector.
6740 * record-btrace.c (record_btrace_call_history): Replace function
6741 segment pointer use with index.
6742 (record_btrace_frame_sniffer): Retrieve function call segment through
6743 vector.
6744 (record_btrace_set_replay): Remove defunc't safety check.
6745
6746 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6747
6748 * btrace.c (btrace_ends_with_single_insn): New function.
6749 (btrace_call_get, btrace_call_number, btrace_call_begin,
6750 btrace_call_end, btrace_call_next, btrace_call_prev,
6751 btrace_find_call_by_number): Use index into call segment vector
6752 instead of pointer.
6753 (btrace_call_cmp): Simplify.
6754 * btrace.h (struct btrace_call_iterator): Replace function call segment
6755 pointer with index into vector.
6756 * record-btrace.c (record_btrace_call_history): Use index instead of
6757 pointer.
6758
6759 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6760
6761 * btrace.c (btrace_insn_begin, btrace_insn_end,
6762 btrace_find_insn_by_number): Add btinfo to iterator.
6763 * btrace.h (struct btrace_insn_iterator): Add btinfo.
6764
6765 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6766
6767 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
6768 and save pointers directly.
6769 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
6770 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
6771 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
6772 changed signature of functions.
6773 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
6774 (btrace_fetch): Remove code that adds btrace_function pointers to
6775 vector of btrace_functions.
6776 (btrace_clear): Simplify freeing vector of btrace_functions.
6777
6778 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
6779
6780 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
6781 Replace VEC_* with std::vector functions.
6782 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
6783 (struct btrace_thread_info)<functions>: Change type to std::vector.
6784
6785 2017-05-30 Simon Marchi <simon.marchi@ericsson.com>
6786
6787 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
6788 "Removed targets and native configurations" up. Merge duplicate
6789 "New commands" sub-sections. Add "New options" sub-sections.
6790
6791 2017-05-26 Alan Hayward <alan.hayward@arm.com>
6792
6793 * defs.h (copy_integer_to_size): New declaration.
6794 * findvar.c (copy_integer_to_size): New function.
6795 (do_cint_test): New selftest function.
6796 (copy_integer_to_size_test): Likewise.
6797 (_initialize_findvar): Likewise.
6798 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
6799 (mips_fbsd_collect_reg): Use raw_collect_integer.
6800 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
6801 (mips64_fill_gregset): Use raw_collect_integer
6802 (mips64_fill_fpregset): Use raw_supply_integer.
6803 * regcache.c (regcache::raw_supply_integer): New function.
6804 (regcache::raw_collect_integer): Likewise.
6805 * regcache.h: (regcache::raw_supply_integer): New declaration.
6806 (regcache::raw_collect_integer): Likewise.
6807
6808 2017-05-24 Yao Qi <yao.qi@linaro.org>
6809
6810 * Makefile.in (SFILES): Add gdbarch-selftests.c.
6811 (COMMON_OBS): Add gdbarch-selftests.o.
6812 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
6813 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
6814 * gdbarch-selftests.c: New file.
6815 * regcache.h (regcache) <~regcache>: Mark it virtual if
6816 GDB_SELF_TEST.
6817 <raw_write>: Likewise.
6818
6819 2017-05-24 Yao Qi <yao.qi@linaro.org>
6820
6821 * regcache.c (current_regcache): Change it to
6822 regcache::current_regcache.
6823 (regcache_observer_target_changed): Update.
6824 (regcache_thread_ptid_changed): Make it a regcache static
6825 method.
6826 (regcache_thread_ptid_changed): Update.
6827 (class regcache_access): New.
6828 (current_regcache_test): Update.
6829 (_initialize_regcache): Update.
6830 * regcache.h: Include forward_list.
6831 (regcache): Declare regcache_thread_ptid_changed and declare
6832 registers_changed_ptid as friend.
6833
6834 2017-05-24 Yao Qi <yao.qi@linaro.org>
6835
6836 * i387-tdep.c (i387_register_to_value): Use register_size
6837 instead of TYPE_LENGTH.
6838 * m68k-tdep.c (m68k_register_to_value): Likewise.
6839
6840 2017-05-24 Yao Qi <yao.qi@linaro.org>
6841
6842 * i387-tdep.c (i387_convert_register_p): Return false if type
6843 code isn't TYPE_CODE_FLT.
6844
6845 2017-05-24 Yao Qi <yao.qi@linaro.org>
6846
6847 * alpha-tdep.c (alpha_convert_register_p): Return true if type
6848 length is 4.
6849 (alpha_register_to_value): Remove type length check.
6850 (alpha_value_to_register): Likewise.
6851
6852 2017-05-24 Yao Qi <yao.qi@linaro.org>
6853
6854 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
6855 TYPE_CODE_FLT.
6856
6857 2017-05-24 Yao Qi <yao.qi@linaro.org>
6858
6859 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
6860 TYPE_CODE_FLT or not.
6861
6862 2017-05-24 Yao Qi <yao.qi@linaro.org>
6863
6864 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
6865 * avr-tdep.c (avr_gdbarch_init): Likewise.
6866 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
6867 * cris-tdep.c (cris_gdbarch_init): Likewise.
6868 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
6869 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
6870 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
6871 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
6872 * mep-tdep.c (mep_gdbarch_init): Likewise.
6873 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
6874 * mips-tdep.c (mips_gdbarch_init): Likewise.
6875 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
6876 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
6877 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
6878 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
6879 * v850-tdep.c (v850_gdbarch_init): Likewise.
6880
6881 2017-05-24 Yao Qi <yao.qi@linaro.org>
6882
6883 * selftest-arch.c (tests_with_arch): Call registers_changed
6884 and reinit_frame_cache.
6885 * selftest.c (run_self_tests): Likewise.
6886
6887 2017-05-24 Yao Qi <yao.qi@linaro.org>
6888
6889 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
6890 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
6891
6892 2017-05-24 Yao Qi <yao.qi@linaro.org>
6893
6894 * rl78-tdep.c (rl78_gdbarch_init): Don't call
6895 set_gdbarch_print_insn.
6896
6897 2017-05-24 Yao Qi <yao.qi@linaro.org>
6898
6899 * h8300-tdep.c (h8300_gdbarch_init): Don't call
6900 set_gdbarch_print_insn.
6901
6902 2017-05-24 Yao Qi <yao.qi@linaro.org>
6903
6904 * alpha-tdep.c (alpha_gdbarch_init): Don't call
6905 set_gdbarch_print_insn.
6906 * arc-tdep.c (arc_gdbarch_init): Likewise.
6907 * arch-utils.c: include dis-asm.h.
6908 (default_print_insn): New function.
6909 * arch-utils.h (default_print_insn): Declare.
6910 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
6911 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
6912 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
6913 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
6914 * frv-tdep.c (frv_gdbarch_init): Likewise.
6915 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
6916 * gdbarch.sh (print_insn): Use default_print_insn.
6917 * gdbarch.c: Regenerated.
6918 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
6919 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
6920 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
6921 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
6922 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
6923 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
6924 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
6925 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
6926 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
6927 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
6928 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
6929 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
6930 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
6931 * mt-tdep.c (mt_gdbarch_init): Likewise.
6932 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
6933 * nios2-tdep.c (nios2_print_insn): Remove.
6934 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
6935 * rx-tdep.c (rx_gdbarch_init): Likewise.
6936 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6937 * score-tdep.c (score_print_insn): Remove.
6938 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
6939 * sh-tdep.c (sh_gdbarch_init): Likewise.
6940 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
6941 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
6942 * tic6x-tdep.c (tic6x_print_insn): Remove.
6943 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
6944 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
6945 * v850-tdep.c (v850_gdbarch_init): Likewise.
6946 * vax-tdep.c (vax_gdbarch_init): Likewise.
6947 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
6948 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
6949
6950 2017-05-23 John Baldwin <jhb@FreeBSD.org>
6951
6952 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
6953 (MIPS_FP0_REGNUM): Remove.
6954 (MIPS_FSR_REGNUM): Remove.
6955 (mips_fbsd_supply_fpregs): Use mips_regnum.
6956 (mips_fbsd_supply_gregs): Likewise.
6957 (mips_fbsd_collect_fpregs): Likewise.
6958 (mips_fbsd_collect_gregs): Likewise.
6959
6960 2017-05-23 John Baldwin <jhb@FreeBSD.org>
6961
6962 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
6963 (getpfpregs_supplies): New function.
6964 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
6965 getfpregs_supplies.
6966 (mips_fbsd_store_inferior_registers): Likewise.
6967
6968 2017-05-22 Pedro Alves <palves@redhat.com>
6969
6970 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
6971 maintainer.
6972
6973 2017-05-22 Alan Hayward <alan.hayward@arm.com>
6974
6975 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
6976 (store_register): Likewise.
6977 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
6978 (get_decimal_float_return_value): Likewise.
6979 (do_ppc_sysv_return_value): Likewise.
6980 (ppc64_sysv_abi_push_integer): Likewise.
6981 (ppc64_sysv_abi_push_freg): Likewise.
6982 (ppc64_sysv_abi_return_value_base): Likewise.
6983 (ppc64_sysv_abi_return_value): Likewise.
6984 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
6985 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
6986 * rs6000-nat.c: Likewise.
6987 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
6988 (rs6000_value_to_register): Likewise.
6989 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
6990
6991 2017-05-21 Tom Tromey <tom@tromey.com>
6992
6993 PR rust/21466:
6994 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
6995 arrays as "[T]", not "[T; ]".
6996
6997 2017-05-19 Tom Tromey <tom@tromey.com>
6998
6999 PR rust/21484:
7000 * rust-lang.c (exp_descriptor_rust): New function.
7001 (rust_language_defn): Use it.
7002 * p-lang.c (pascal_language_defn): Update.
7003 * opencl-lang.c (opencl_language_defn): Update.
7004 * objc-lang.c (objc_language_defn): Update.
7005 * m2-lang.c (m2_language_defn): Update.
7006 * language.h (struct language_defn)
7007 <la_watch_location_expression>: New member.
7008 * language.c (unknown_language_defn, auto_language_defn)
7009 (local_language_defn): Update.
7010 * go-lang.c (go_language_defn): Update.
7011 * f-lang.c (f_language_defn): Update.
7012 * d-lang.c (d_language_defn): Update.
7013 * c-lang.h (c_watch_location_expression): Declare.
7014 * c-lang.c (c_watch_location_expression): New function.
7015 (c_language_defn, cplus_language_defn, asm_language_defn)
7016 (minimal_language_defn): Use it.
7017 * breakpoint.c (watch_command_1): Call
7018 la_watch_location_expression.
7019 * ada-lang.c (ada_language_defn): Update.
7020
7021 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7022
7023 PR tui/21482
7024 * gdb_curses.h (NOMACROS): Define.
7025 (NCURSES_NOMACROS): Define.
7026
7027 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7028
7029 PR tui/21482
7030 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
7031 arg to char *.
7032 * tui/tui-wingeneral.c (box_win): Likewise.
7033 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
7034 (tui_show_source_line): Likewise.
7035 (tui_show_exec_info_content): Likewise.
7036
7037 2017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
7038
7039 * sparc-tdep.c (sparc_structure_return_p)
7040 (sparc_arg_on_registers_p): New functions.
7041 (sparc32_store_arguments): Use them.
7042 * sparc64-tdep.c (sparc64_16_byte_align_p)
7043 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
7044 Handle TYPE_CODE_ARRAY.
7045
7046 2017-05-17 Yao Qi <yao.qi@linaro.org>
7047
7048 * cli/cli-decode.c (add_alias_cmd): New function.
7049 * command.h (add_alias_cmd): Declare.
7050 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
7051 instead call add_alias_cmd.
7052
7053 2017-05-17 Pedro Alves <palves@redhat.com>
7054
7055 * Makefile.in (nat_extra_makefile_frag): Rename to ...
7056 (nat_makefile_frag): ... this. All references updated.
7057 * configure.ac: Likewise.
7058 * configure.nat: Likewise. Enhance comments.
7059 * configure: Regenerate.
7060
7061 2017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7062
7063 * procfs.c (procfs_create_inferior): Change prototype to match
7064 definition.
7065
7066 2017-05-13 Eli Zaretskii <eliz@gnu.org>
7067
7068 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
7069 C++ compiler warning.
7070
7071 2017-05-12 Tom Tromey <tom@tromey.com>
7072
7073 PR rust/21483:
7074 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
7075 recurse, just call value_struct_elt directly.
7076
7077 2017-05-12 Tom Tromey <tom@tromey.com>
7078
7079 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
7080 OP_RUST_ARRAY>: Fix.
7081
7082 2017-05-12 Tom Tromey <tom@tromey.com>
7083
7084 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
7085
7086 2017-05-09 Yao Qi <yao.qi@linaro.org>
7087
7088 * regcache.c: Include <forward_list>.
7089 (struct regcache_list): Remove.
7090 (current_regcache): Update.
7091 (get_thread_arch_aspace_regcache): Update for std::forward_list.
7092 (regcache_thread_ptid_changed): Likewise.
7093 (registers_changed_ptid): Likewise.
7094 (current_regcache_size): Likewise.
7095
7096 2017-05-09 Yao Qi <yao.qi@linaro.org>
7097
7098 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
7099 (current_regcache_size): New function.
7100 (current_regcache_test): New function.
7101 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
7102
7103 2017-05-08 Alan Hayward <alan.hayward@arm.com>
7104
7105 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
7106 (print_gp_register_row): Use get_frame_register_value.
7107
7108 2017-05-08 Alan Hayward <alan.hayward@arm.com>
7109
7110 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
7111 (mips_supply_fpregset): Likewise.
7112 (mips64_supply_gregset): Likewise.
7113
7114 2017-05-08 Alan Hayward <alan.hayward@arm.com>
7115
7116 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
7117 regcache->raw_supply_zeroed.
7118
7119 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
7120
7121 * configure.nat: Rearrange 'case' statements to match
7122 host before cpu.
7123
7124 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
7125
7126 * Makefile.in: Remove "@host_makefile_frag@". Add variables
7127 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
7128 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
7129 "@nat_extra_makefile_frag@".
7130 (Makefile): Remove dependency on "@frags@".
7131 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
7132 (data-directory/Makefile): Likewise.
7133 * config/aarch64/linux.mh: Deleted; moved contents to
7134 "gdb/configure.nat".
7135 * config/alpha/alpha-linux.mh: Likewise.
7136 * config/alpha/nbsd.mh: Likewise.
7137 * config/arm/linux.mh: Likewise.
7138 * config/arm/nbsdelf.mh: Likewise.
7139 * config/i386/cygwin.mh: Likewise.
7140 * config/i386/cygwin64.mh: Likewise.
7141 * config/i386/darwin.mh: Likewise.
7142 * config/i386/fbsd.mh: Likewise.
7143 * config/i386/fbsd64.mh: Likewise.
7144 * config/i386/go32.mh: Likewise.
7145 * config/i386/i386gnu.mh: Likewise.
7146 * config/i386/i386sol2.mh: Likewise.
7147 * config/i386/linux.mh: Likewise.
7148 * config/i386/linux64.mh: Likewise.
7149 * config/i386/mingw.mh: Likewise.
7150 * config/i386/mingw64.mh: Likewise.
7151 * config/i386/nbsd64.mh: Likewise.
7152 * config/i386/nbsdelf.mh: Likewise.
7153 * config/i386/nto.mh: Likewise.
7154 * config/i386/obsd.mh: Likewise.
7155 * config/i386/obsd64.mh: Likewise.
7156 * config/i386/sol2-64.mh: Likewise.
7157 * config/ia64/linux.mh: Likewise.
7158 * config/m32r/linux.mh: Likewise.
7159 * config/m68k/linux.mh: Likewise.
7160 * config/m68k/nbsdelf.mh: Likewise.
7161 * config/m68k/obsd.mh: Likewise.
7162 * config/m88k/obsd.mh: Likewise.
7163 * config/mips/fbsd.mh: Likewise.
7164 * config/mips/linux.mh: Likewise.
7165 * config/mips/nbsd.mh: Likewise.
7166 * config/mips/obsd64.mh: Likewise.
7167 * config/pa/linux.mh: Likewise.
7168 * config/pa/nbsd.mh: Likewise.
7169 * config/pa/obsd.mh: Likewise.
7170 * config/powerpc/aix.mh: Likewise.
7171 * config/powerpc/fbsd.mh: Likewise.
7172 * config/powerpc/linux.mh: Likewise.
7173 * config/powerpc/nbsd.mh: Likewise.
7174 * config/powerpc/obsd.mh: Likewise.
7175 * config/powerpc/ppc64-linux.mh: Likewise.
7176 * config/powerpc/spu-linux.mh: Likewise.
7177 * config/s390/linux.mh: Likewise.
7178 * config/sh/nbsd.mh: Likewise.
7179 * config/sparc/fbsd.mh: Likewise.
7180 * config/sparc/linux.mh: Likewise.
7181 * config/sparc/linux64.mh: Likewise.
7182 * config/sparc/nbsd64.mh: Likewise.
7183 * config/sparc/nbsdelf.mh: Likewise.
7184 * config/sparc/obsd64.mh: Likewise.
7185 * config/sparc/sol2.mh: Likewise.
7186 * config/tilegx/linux.mh: Likewise.
7187 * config/vax/nbsdelf.mh: Likewise.
7188 * config/vax/obsd.mh: Likewise.
7189 * config/xtensa/linux.mh: Likewise.
7190 * config/i386/i386gnu.mn: New file, with excerpts from
7191 "config/i386/i386gnu.mh".
7192 * configure: Regenerate.
7193 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
7194 *.mh files under "gdb/config".
7195 * configure.nat: New file, with contents from the
7196 "gdb/config/*/*.mh" files.
7197
7198 2017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
7199
7200 * btrace.c (btrace_clear): Free insn vector.
7201
7202 2017-05-05 Pedro Alves <palves@redhat.com>
7203
7204 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
7205 * configure: Regenerate.
7206
7207 2017-05-04 Pedro Alves <palves@redhat.com>
7208
7209 * Makefile.in (SFILES): Add progspace-and-thread.c.
7210 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
7211 (COMMON_OBS): Add progspace-and-thread.o.
7212 * breakpoint.c: Include "progspace-and-thread.h".
7213 (update_inserted_breakpoint_locations)
7214 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
7215 Use scoped_restore_current_pspace_and_thread.
7216 (create_std_terminate_master_breakpoint): Use
7217 scoped_restore_current_program_space.
7218 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
7219 (print_breakpoint_location): Use
7220 scoped_restore_current_program_space.
7221 (bp_loc_is_permanent): Use
7222 scoped_restore_current_pspace_and_thread.
7223 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
7224 (download_tracepoint_locations): Use
7225 scoped_restore_current_pspace_and_thread.
7226 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
7227 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
7228 (enum step_over_calls_kind): Moved from inferior.h.
7229 (class scoped_restore_current_thread): New class.
7230 * gdbthread.h (make_cleanup_restore_current_thread): Delete
7231 declaration.
7232 (scoped_restore_current_thread): New class.
7233 * infcmd.c: Include "common/gdb_optional.h".
7234 (continue_1, proceed_after_attach): Use
7235 scoped_restore_current_thread.
7236 (notice_new_inferior): Use scoped_restore_current_thread.
7237 * inferior.c: Include "progspace-and-thread.h".
7238 (restore_inferior, save_current_inferior): Delete.
7239 (add_inferior_command, clone_inferior_command): Use
7240 scoped_restore_current_pspace_and_thread.
7241 * inferior.h (scoped_restore_current_inferior): New class.
7242 * infrun.c: Include "progspace-and-thread.h" and
7243 "common/gdb_optional.h".
7244 (follow_fork_inferior): Use
7245 scoped_restore_current_pspace_and_thread.
7246 (scoped_restore_exited_inferior): New class.
7247 (handle_vfork_child_exec_or_exit): Use
7248 scoped_restore_exited_inferior,
7249 scoped_restore_current_pspace_and_thread,
7250 scoped_restore_current_thread and scoped_restore.
7251 (fetch_inferior_event): Use scoped_restore_current_thread.
7252 * linespec.c (decode_line_full, decode_line_1): Use
7253 scoped_restore_current_program_space.
7254 * mi/mi-main.c: Include "progspace-and-thread.h".
7255 (exec_continue): Use scoped_restore_current_thread.
7256 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
7257 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
7258 * proc-service.c (ps_pglobal_lookup): Use
7259 scoped_restore_current_program_space.
7260 * progspace-and-thread.c: New file.
7261 * progspace-and-thread.h: New file.
7262 * progspace.c (release_program_space, clone_program_space): Use
7263 scoped_restore_current_program_space.
7264 (restore_program_space, save_current_program_space)
7265 (save_current_space_and_thread): Delete.
7266 (switch_to_program_space_and_thread): Moved to
7267 progspace-and-thread.c.
7268 * progspace.h (save_current_program_space)
7269 (save_current_space_and_thread): Delete declarations.
7270 (scoped_restore_current_program_space): New class.
7271 * remote.c (remote_btrace_maybe_reopen): Use
7272 scoped_restore_current_thread.
7273 * symtab.c: Include "progspace-and-thread.h".
7274 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
7275 * thread.c (print_thread_info_1): Use
7276 scoped_restore_current_thread.
7277 (struct current_thread_cleanup): Delete.
7278 (do_restore_current_thread_cleanup)
7279 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
7280 (scoped_restore_current_thread::~scoped_restore_current_thread):
7281 ... this new dtor.
7282 (make_cleanup_restore_current_thread): Rename/convert to ...
7283 (scoped_restore_current_thread::scoped_restore_current_thread):
7284 ... this new ctor.
7285 (thread_apply_all_command): Use scoped_restore_current_thread.
7286 (thread_apply_command): Use scoped_restore_current_thread.
7287 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
7288 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
7289
7290 2017-05-04 Pedro Alves <palves@redhat.com>
7291
7292 * thread.c (make_cleanup_restore_current_thread): Move
7293 find_thread_ptid call before the is_stopped call. Assert that the
7294 thread is found. Replace is_stopped call by checking the thread's
7295 state directly. Remove unnecessary NULL-thread check.
7296
7297 2017-05-04 Pedro Alves <palves@redhat.com>
7298
7299 * corelow.c (thread_section_name): New class.
7300 (get_core_register_section, get_core_siginfo): Use it.
7301
7302 2017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
7303
7304 * corelow.c (sniff_core_bfd): Remove extra semicolon.
7305 (get_core_register_section): Remove xfree of NULL pointer.
7306
7307 2017-05-03 Alan Hayward <alan.hayward@arm.com>
7308
7309 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
7310 * regcache.c (regcache::raw_supply_zeroed): New function.
7311 * regcache.h (regcache::raw_supply_zeroed): New declaration.
7312
7313 2017-05-03 Simon Marchi <simon.marchi@ericsson.com>
7314
7315 * gdbarch.sh: Remove commented out definition of
7316 TARGET_CHAR_BIT.
7317 * gdbarch.h: Re-generate.
7318
7319 2017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7320
7321 * configure: Regenerate.
7322
7323 2017-05-02 Simon Marchi <simon.marchi@ericsson.com>
7324
7325 * solib-target.c (solib_target_relocate_section_addresses):
7326 Remove num_section_bases, num_bases, segment_bases variables.
7327
7328 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7329
7330 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
7331
7332 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7333
7334 * solib-target.c: Include <vector>
7335 (struct lm_info_target) <~lm_info_target>: Remove.
7336 <segment_bases, section_bases>: Change type to
7337 std::vector<CORE_ADDR>.
7338 (library_list_start_segment, library_list_start_section,
7339 library_list_end_library,
7340 solib_target_relocate_section_addresses): Adjust.
7341
7342 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7343
7344 * gdbarch.sh (software_single_step): Change return type to
7345 std::vector<CORE_ADDR>.
7346 * gdbarch.c, gdbarch.h: Re-generate.
7347 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
7348 Adjust.
7349 (arm_deal_with_atomic_sequence_raw): Adjust.
7350 (thumb_get_next_pcs_raw): Adjust.
7351 (arm_get_next_pcs_raw): Adjust.
7352 (arm_get_next_pcs): Adjust.
7353 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
7354 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
7355 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
7356 (alpha_software_single_step): Adjust.
7357 * alpha-tdep.h (alpha_software_single_step): Adjust.
7358 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
7359 * arm-tdep.c (arm_software_single_step): Adjust.
7360 (arm_breakpoint_kind_from_current_state): Adjust.
7361 * arm-tdep.h (arm_software_single_step): Adjust.
7362 * breakpoint.c (insert_single_step_breakpoint): Adjust.
7363 * cris-tdep.c (cris_software_single_step): Adjust.
7364 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
7365 (micromips_deal_with_atomic_sequence): Adjust.
7366 (deal_with_atomic_sequence): Adjust.
7367 (mips_software_single_step): Adjust.
7368 * mips-tdep.h (mips_software_single_step): Adjust.
7369 * moxie-tdep.c (moxie_software_single_step): Adjust.
7370 * nios2-tdep.c (nios2_software_single_step): Adjust.
7371 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
7372 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
7373 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
7374 * s390-linux-tdep.c (s390_software_single_step): Adjust.
7375 * sparc-tdep.c (sparc_software_single_step): Adjust.
7376 * spu-tdep.c (spu_software_single_step): Adjust.
7377 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
7378
7379 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7380
7381 * gdbarch.sh: Use semi-colon as field separator instead of colon.
7382 * gdbarch.h: Re-generate.
7383
7384 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7385
7386 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
7387 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
7388 * python/py-instruction.c, python/py-instruction.h: New file.
7389 * python/py-record.c: Add py-instruction.h include.
7390 (gdbpy_initialize_record): Make gdb.Instruction a super class of
7391 gdb.RecordInstruction.
7392 * python/python-internal.h: Add gdbpy_initialize_instruction
7393 declaration.
7394 * python/python.c (do_start_initialization): Add
7395 gdbpy_initialize_instruction.
7396
7397 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7398
7399 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
7400 Remove.
7401 (btrace_func_from_recpy_func): New function.
7402 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
7403 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
7404 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
7405 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
7406 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
7407 Also, use new helper functions.
7408 (btpy_list_item): Use new helper functions.
7409 (recpy_bt_function_call_history): Use new type name.
7410 (btpy_call_getset): Remove.
7411 (gdbpy_initialize_btrace): Remove code to initialize
7412 gdb.BtraceFunctionCall.
7413 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
7414 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
7415 recpy_bt_func_prev, recpy_bt_func_next): New export.
7416 * python/py-record.c (recpy_func_type): New static object.
7417 (recpy_func_new, recpy_func_level, recpy_func_symbol,
7418 recpy_func_instructions, recpy_func_up, recpy_func_prev,
7419 recpy_func_next): New function.
7420 (recpy_element_hash, recpy_element_richcompare): Updated comment.
7421 (recpy_func_getset): New static object.
7422 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
7423 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
7424
7425 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7426
7427 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
7428 (btpy_object, btpy_insn_type, btpy_new): Remove.
7429 (btpy_list_object): Use gdb.RecordInstruction type instead of
7430 gdb.BtraceInstruction type.
7431 (btrace_insn_from_recpy_insn): New function.
7432 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
7433 btpy_new.
7434 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
7435 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
7436 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
7437 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
7438 instead of btpy_object.
7439 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
7440 btpy_insn_data, btpy_insn_decode): Rename to ...
7441 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
7442 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
7443 recpy_bt_insn_decode): This. Also, use new helper functions.
7444 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
7445 recpy_insn_type.
7446 (btpy_insn_getset): Remove.
7447 (gdbpy_initialize_btrace): Remove code to initialize
7448 gdb.BtraceInstruction. Use recpy_element_object.
7449 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
7450 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
7451 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
7452 * python/py-record.c (recpy_insn_type): New static object.
7453 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
7454 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
7455 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
7456 New function.
7457 (recpy_insn_getset): New static object.
7458 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
7459 * python/py-record.h (recpy_element_object): New typedef.
7460 (recpy_insn_type, recpy_insn_new): New export.
7461
7462 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7463
7464 * py-record-btrace.c (btpy_insn_new): Removed.
7465 (btpy_insn_or_gap_new): New function.
7466 (btpy_insn_error): Removed.
7467 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
7468 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
7469 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
7470 btpy_insn_or_gap_new instead of btpy_insn_new.
7471 (btpy_insn_getset): Remove btpy_insn_error.
7472 * py-record.c (recpy_gap_type): New static object.
7473 (recpy_gap_object): New typedef.
7474 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
7475 recpy_gap_reason_string): New function.
7476 (recpy_gap_getset): New static object.
7477 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
7478 * py-record.h (recpy_gap_new): New export.
7479
7480 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7481
7482 * python/py-record.c (recpy_ptid): Remove.
7483 (recpy_record_getset): Remove recpy_ptid.
7484
7485 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7486
7487 * btrace.c (btrace_fetch): Set inferior_ptid.
7488 * python/py-record-btrace.c: Add "py-record.h" include.
7489 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
7490 recpy_bt_end, recpy_bt_instruction_history,
7491 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
7492 in gdb.Record object instead of current ptid.
7493 * python/py-record.c: Include new "py-record.h" file.
7494 (recpy_record_object): Moved to py-record.h.
7495 * python/py-record.h: New file.
7496
7497 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7498
7499 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
7500 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
7501 indentation.
7502
7503 2017-05-01 Joel Brobecker <brobecker@adacore.com>
7504
7505 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
7506 the past maintainers section.
7507
7508 2017-04-28 Yao Qi <yao.qi@linaro.org>
7509
7510 * infcmd.c (get_return_value): Use regcache ctor, and remove
7511 cleanup.
7512
7513 2017-04-28 Yao Qi <yao.qi@linaro.org>
7514 Pedro Alves <palves@redhat.com>
7515
7516 * regcache.c (regcache::regcache): New tag dispatch ctor.
7517 (do_cooked_read): Moved above.
7518 (regcache_dup): Use the tag dispatch ctor..
7519 * regcache.h (regcache): Declare ctor, delete copy ctor and
7520 assignment operator, remove friend regcache_dup.
7521
7522 2017-04-28 Yao Qi <yao.qi@linaro.org>
7523
7524 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
7525 call method save instead of regcache_cpy.
7526 * regcache.h (struct regcache): Make regcache_dup a friend.
7527
7528 2017-04-28 Yao Qi <yao.qi@linaro.org>
7529
7530 * regcache.c (struct regcache): Move to regcache.h
7531 (regcache::arch): New method.
7532 (regcache_get_ptid): Update.
7533 (get_regcache_arch): Call arch method.
7534 (get_regcache_aspace): Call method aspace.
7535 (register_buffer): Change it to method.
7536 (regcache_save): Change it to regcache::save.
7537 (regcache_restore): Likewise.
7538 (regcache_cpy_no_passthrough): Remove the declaration.
7539 (regcache_cpy): Call methods restore and cpy_no_passthrough.
7540 (regcache_cpy_no_passthrough): Change it to method
7541 cpy_no_passthrough.
7542 (regcache_register_status): Change it to method
7543 get_register_status.
7544 (regcache_invalidate): Change it to method invalidate.
7545 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
7546 (regcache_raw_update): Change it to method raw_update.
7547 (regcache_raw_read): Likewise.
7548 (regcache_raw_read_signed): Likewise.
7549 (regcache_raw_read_unsigned): Likewise.
7550 (regcache_raw_write_signed): Likewise.
7551 (regcache_raw_write_unsigned): Likewise.
7552 (regcache_cooked_read): Likewise.
7553 (regcache_cooked_read_value): Likewise.
7554 (regcache_cooked_read_signed): Likewise.
7555 (regcache_cooked_read_unsigned): Likewise.
7556 (regcache_cooked_write_signed): Likewise.
7557 (regcache_cooked_write_unsigned): Likewise.
7558 (regcache_raw_set_cached_value): Likewise.
7559 (regcache_raw_write): Likewise.
7560 (regcache_cooked_write): Likewise.
7561 (regcache_xfer_part): Likewise.
7562 (regcache_raw_read_part): Likewise.
7563 (regcache_raw_write_part): Likewise.
7564 (regcache_cooked_read_part): Likewise.
7565 (regcache_cooked_write_part): Likewise.
7566 (regcache_raw_supply): Likewise.
7567 (regcache_raw_collect): Likewise.
7568 (regcache_transfer_regset): Likewise.
7569 (regcache_supply_regset): Likewise.
7570 (regcache_collect_regset): Likewise.
7571 (regcache_debug_print_register): Likewise.
7572 (enum regcache_dump_what): Move it to regcache.h.
7573 (regcache_dump): Change it to method dump.
7574 * regcache.h (enum regcache_dump_what): New.
7575 (class regcache): New.
7576 * target.c (target_fetch_registers): Call method
7577 debug_print_register.
7578 (target_store_registers): Likewise.
7579
7580 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7581
7582 * windows-nat.c (struct lm_info_windows): Initialize field.
7583 (windows_make_so): Allocate lm_info_windows with new.
7584 (windows_free_so): Free lm_info_windows with delete.
7585
7586 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7587
7588 * solib-darwin.c (struct lm_info_darwin): Initialize field.
7589 (darwin_current_sos): Allocate lm_info_darwin with new, remove
7590 cleanup.
7591 (darwin_free_so): Free lm_info_darwin with delete.
7592
7593 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7594
7595 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
7596 <l_addr_p>: Change type to bool.
7597 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
7598 (svr4_free_so): Free lm_info_svr4 with delete.
7599 (svr4_copy_library_list): Replace memcpy with call to copy
7600 constructor.
7601 (library_list_start_library, svr4_default_sos): Allocate
7602 lm_info_svr4 with new.
7603
7604 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7605
7606 * solib-target.c (struct lm_info_target): Add destructor,
7607 initialize fields.
7608 <name>: Change type to std::string.
7609 (library_list_start_library): Allocate lm_info_target with new.
7610 (solib_target_free_library_list): Free lm_info_target with
7611 delete.
7612 (solib_target_current_sos): Adapt to std::string.
7613 (solib_target_free_so): Free lm_info_target with delete.
7614
7615 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7616
7617 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
7618 fields.
7619 (frv_current_sos): Allocate lm_info_frv with new.
7620 (frv_relocate_main_executable): Free lm_info_frv with delete,
7621 allocate with new.
7622 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
7623
7624 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7625
7626 * solib-frv.c (struct lm_info_frv): Fix indentation.
7627
7628 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7629
7630 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
7631 map field.
7632 (dsbt_current_sos): Allocate lm_info_dsbt with new.
7633 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
7634 and allocate with new.
7635 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
7636
7637 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7638
7639 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
7640 <filename, member_name>: Change type to std::string.
7641 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
7642 (library_list_start_library): Allocate lm_info_aix with new.
7643 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
7644 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
7645 with copy constructor.
7646
7647 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7648
7649 * solist.h (struct lm_info): Remove.
7650 (struct lm_info_base): New class.
7651 (struct so_list) <lm_info>: Change type to lm_info_base *.
7652 * nto-tdep.c (struct lm_info): Remove.
7653 (lm_addr): Adjust.
7654 * solib-aix.c (struct lm_info): Rename to ...
7655 (struct lm_info_aix): ... this. Extend lm_info_base.
7656 (lm_info_p): Rename to ...
7657 (lm_info_aix_p): ... this, and adjust.
7658 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
7659 solib_aix_parse_libraries, library_list_start_library,
7660 solib_aix_free_library_list, solib_aix_parse_libraries,
7661 solib_aix_get_library_list,
7662 solib_aix_relocate_section_addresses, solib_aix_free_so,
7663 solib_aix_get_section_offsets,
7664 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
7665 Adjust.
7666 (struct solib_aix_inferior_data) <library_list>: Adjust.
7667 * solib-darwin.c (struct lm_info): Rename to ...
7668 (struct lm_info_darwin): ... this. Extend lm_info_base.
7669 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
7670 * solib-dsbt.c (struct lm_info): Rename to ...
7671 (struct lm_info_dsbt): ... this. Extend lm_info_base.
7672 (struct dsbt_info) <main_executable_lm_info): Adjust.
7673 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
7674 dsbt_relocate_section_addresses): Adjust.
7675 * solib-frv.c (struct lm_info): Rename to ...
7676 (struct lm_info_frv): ... this. Extend lm_info_base.
7677 (main_executable_lm_info): Adjust.
7678 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
7679 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
7680 find_canonical_descriptor_in_load_object,
7681 frv_fdpic_find_canonical_descriptor): Adjust.
7682 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
7683 to lm_info_svr4.
7684 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
7685 svr4_clear_so, svr4_copy_library_list,
7686 library_list_start_library, svr4_default_sos, svr4_read_so_list,
7687 svr4_current_sos, svr4_fetch_objfile_link_map,
7688 solist_update_incremental): Adjust.
7689 * solib-svr4.h (struct lm_info_svr4): Move here from
7690 solib-svr4.c.
7691 * solib-target.c (struct lm_info): Rename to ...
7692 (struct lm_info_target): ... this. Extend lm_info_base.
7693 (lm_info_p): Rename to ...
7694 (lm_info_target_p): ... this.
7695 (solib_target_parse_libraries, library_list_start_segment,
7696 library_list_start_section, library_list_start_library,
7697 library_list_end_library, solib_target_free_library_list,
7698 solib_target_current_sos, solib_target_free_so,
7699 solib_target_relocate_section_addresses): Adjust.
7700 * windows-nat.c (struct lm_info): Rename to ...
7701 (struct lm_info_windows): ... this. Extend lm_info_base.
7702 (windows_make_so, handle_load_dll, handle_unload_dll,
7703 windows_xfer_shared_libraries): Adjust.
7704
7705 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
7706
7707 * solib-darwin.c (struct darwin_so_list): Remove.
7708 (darwin_current_sos): Allocate an so_list object instead of a
7709 darwin_so_list, separately allocate an lm_info object.
7710 (darwin_free_so): Free lm_info.
7711
7712 2017-04-28 John Baldwin <jhb@FreeBSD.org>
7713
7714 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
7715 with fprintf_filtered.
7716
7717 2017-04-28 Yao Qi <yao.qi@linaro.org>
7718
7719 * regcache.c (regcache::regcache): New function.
7720 (regcache::~regcache): New function.
7721 (regcache_xmalloc_1): Remove.
7722 (regcache_xmalloc): Call new regcache.
7723 (regcache_xfree): Call delete regcache.
7724 (get_thread_arch_aspace_regcache): Call new regcache.
7725
7726 2017-04-28 Yao Qi <yao.qi@linaro.org>
7727
7728 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
7729 lwp instead of ptid_get_lwp.
7730
7731 2017-04-28 Yao Qi <yao.qi@linaro.org>
7732
7733 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
7734 lwp_info instead of getting from inferior_ptid.
7735
7736 2017-04-27 Keith Seitz <keiths@redhat.com>
7737
7738 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
7739 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
7740 (CV_CONVERSION_BADNESS): Define.
7741 (rank_one_type): Remove overly restrictive rvalue reference
7742 rank checks.
7743 Add cv-qualifier checks and subranks for type equality.
7744 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
7745 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
7746 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
7747
7748 2017-04-27 Simon Marchi <simon.marchi@ericsson.com>
7749
7750 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
7751 count when creating the object.
7752
7753 2017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
7754 Ulrich Weigand <uweigand@de.ibm.com>
7755
7756 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
7757 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
7758 is used in AIX.
7759 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
7760 (process_xcoff_symbol): Likewise.
7761 (scan_xcoff_symtab): Likewise.
7762
7763 2017-04-26 Alan Hayward <alan.hayward@arm.com>
7764
7765 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
7766 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
7767 (ia64_access_reg): Use get_frame_register_unsigned.
7768 (ia64_access_rse_reg): Likewise.
7769 (ia64_libunwind_frame_prev_register): Likewise.
7770
7771 2017-04-26 Jiong Wang <jiong.wang@arm.com>
7772
7773 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
7774 * gdbarch.c: Regenerated.
7775 * gdbarch.h: Regenerated.
7776 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
7777 visibility external.
7778 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
7779 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
7780 (enum cfa_how_kind): Move to ...
7781 (struct dwarf2_frame_state_reg_info): Likewise.
7782 (struct dwarf2_frame_state): Likewise.
7783 * dwarf2-frame.h: ... here.
7784 (dwarf2_frame_state_alloc_regs): New declaration.
7785 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
7786 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
7787
7788 2017-04-26 Alan Hayward <alan.hayward@arm.com>
7789
7790 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
7791 regcache_raw_read_unsigned.
7792 (xtensa_pseudo_register_write): Likewise.
7793
7794 2017-04-26 Alan Hayward <alan.hayward@arm.com>
7795
7796 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
7797 (nds32_pseudo_register_write): Likewise.
7798
7799 2017-04-25 Yao Qi <yao.qi@linaro.org>
7800
7801 * regcache.c (struct regcache) <readonly_p>: Change its type
7802 to bool.
7803 (regcache_xmalloc_1): Update parameter type and callers update.
7804
7805 2017-04-25 Yao Qi <yao.qi@linaro.org>
7806
7807 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
7808 set_gdbarch_wchar_bit.
7809 * arm-tdep.c (arm_gdbarch_init): Likewise.
7810
7811 2017-04-25 Pedro Alves <palves@redhat.com>
7812
7813 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
7814 (BothAreRelocatable, memcopy, memmove): Don't define.
7815 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
7816 macros.
7817
7818 2017-04-25 Pedro Alves <palves@redhat.com>
7819
7820 * common/common-defs.h: Include "common/poison.h".
7821 * common/function-view.h: (Not, Or, Requires): Move to traits.h
7822 and adjust.
7823 * common/poison.h: New file.
7824 * common/traits.h: Include <type_traits>.
7825 (Not, Or, Requires): New, moved from common/function-view.h.
7826
7827 2017-04-25 Pedro Alves <palves@redhat.com>
7828
7829 * breakpoint.h (struct breakpoint): In-class initialize all
7830 fields. Make boolean fields "bool".
7831 * breakpoint.c (init_raw_breakpoint_without_location): Remove
7832 memset call and initializations no longer necessary.
7833
7834 2017-04-25 Pedro Alves <palves@redhat.com>
7835
7836 * btrace.c (pt_btrace_insn_flags): Change parameter type to
7837 reference.
7838 (pt_btrace_insn): New function.
7839 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
7840
7841 2017-04-25 Pedro Alves <palves@redhat.com>
7842
7843 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
7844 "base" field and inherit from "bp_location" instead. Add
7845 non-default ctor.
7846 (allocate_location_exception): Use new non-default ctor.
7847 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
7848 (init_bp_location): Convert to ...
7849 (bp_location::bp_location): ... this new ctor, and remove memset
7850 call.
7851 (base_breakpoint_allocate_location): Use the new non-default ctor.
7852 * breakpoint.h (bp_location): Now a class. Declare default and
7853 non-default ctors. In-class initialize all members.
7854 (init_bp_location): Remove declaration.
7855
7856 2017-04-25 Pedro Alves <palves@redhat.com>
7857
7858 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
7859 assignment operator.
7860
7861 2017-04-24 Yao Qi <yao.qi@linaro.org>
7862
7863 * doublest.c (convert_doublest_to_floatformat): Call
7864 floatformat_totalsize_bytes.
7865
7866 2017-04-22 Tom Tromey <tom@tromey.com>
7867
7868 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
7869 ui_out_emit_list.
7870 * stack.c (print_frame): Use ui_out_emit_list.
7871 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
7872 ui_out_emit_list.
7873 * mi/mi-main.c (print_one_inferior)
7874 (mi_cmd_data_list_register_names)
7875 (mi_cmd_data_list_register_values, mi_cmd_list_features)
7876 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
7877 ui_out_emit_list.
7878 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
7879 (mi_output_solib_attribs): Use ui_out_emit_list,
7880 ui_out_emit_tuple.
7881 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
7882 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7883 (mi_cmd_stack_list_args, list_args_or_locals): Use
7884 ui_out_emit_list.
7885 * disasm.c (do_assembly_only): Use ui_out_emit_list.
7886 * breakpoint.c (print_solib_event, output_thread_groups): Use
7887 ui_out_emit_list.
7888
7889 2017-04-22 Tom Tromey <tom@tromey.com>
7890
7891 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
7892 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
7893 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
7894
7895 2017-04-22 Tom Tromey <tom@tromey.com>
7896
7897 * tracepoint.c (tvariables_info_1)
7898 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
7899
7900 2017-04-22 Tom Tromey <tom@tromey.com>
7901
7902 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
7903 annotate_arg_emitter.
7904 * breakpoint.c (print_mention_watchpoint)
7905 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
7906 * annotate.h (struct annotate_arg_emitter): New.
7907
7908 2017-04-22 Tom Tromey <tom@tromey.com>
7909
7910 * record-btrace.c (record_btrace_insn_history)
7911 (record_btrace_insn_history_range, record_btrace_call_history)
7912 (record_btrace_call_history_range): Use ui_out_emit_tuple.
7913 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
7914 ui_out_emit_tuple.
7915 * stack.c (print_frame_info): Use ui_out_emit_tuple.
7916 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
7917 * skip.c (skip_info): Use ui_out_emit_tuple.
7918 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
7919 * progspace.c (print_program_space): Use ui_out_emit_tuple.
7920 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
7921 * osdata.c (info_osdata): Use ui_out_emit_tuple.
7922 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
7923 ui_out_emit_tuple.
7924 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
7925 (output_register, mi_cmd_data_read_memory)
7926 (mi_cmd_data_read_memory_bytes, mi_load_progress)
7927 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
7928 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
7929 Use ui_out_emit_tuple.
7930 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
7931 ui_out_emit_tuple.
7932 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
7933 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
7934 * linux-thread-db.c (info_auto_load_libthread_db): Use
7935 ui_out_emit_tuple.
7936 * inferior.c (print_inferior): Use ui_out_emit_tuple.
7937 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
7938 * disasm.c (do_mixed_source_and_assembly_deprecated)
7939 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
7940 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
7941 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
7942 * breakpoint.c (print_one_breakpoint_location)
7943 (print_one_breakpoint): Use ui_out_emit_tuple.
7944 * auto-load.c (print_script, info_auto_load_cmd): Use
7945 ui_out_emit_tuple.
7946 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
7947
7948 2017-04-21 Simon Marchi <simon.marchi@ericsson.com>
7949
7950 * thread.c (print_thread_info_1): Remove dead code.
7951
7952 2017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
7953
7954 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
7955 GDB_SELF_TEST.
7956 * arm-tdep.c (selftests::arm_record_test): Likewise.
7957
7958 2017-04-21 Yao Qi <yao.qi@linaro.org>
7959
7960 * regcache.c (regcache_restore): Remove argument 2. Replace
7961 argument 3 with regcache. Get register status from
7962 src->register_status and get register contents from
7963 register_buffer (src, regnum).
7964 (regcache_cpy): Update.
7965
7966 2017-04-19 Pedro Alves <palves@redhat.com>
7967
7968 * gdbthread.h (thread): Add missing closing parenthesis in
7969 comment.
7970
7971 2017-04-19 Pedro Alves <palves@redhat.com>
7972
7973 * common/refcounted-object.h: New file.
7974 * gdbthread.h: Include "common/refcounted-object.h".
7975 (thread_info): Inherit from refcounted_object and add comments.
7976 (thread_info::incref, thread_info::decref)
7977 (thread_info::m_refcount): Delete.
7978 (thread_info::deletable): Use the refcounted_object::refcount()
7979 method.
7980 * inferior.c (current_inferior_): Add comment.
7981 (set_current_inferior): Increment/decrement refcounts.
7982 (prune_inferiors, remove_inferior_command): Skip inferiors marked
7983 not-deletable instead of comparing with the current inferior.
7984 (initialize_inferiors): Increment the initial inferior's refcount.
7985 * inferior.h (struct inferior): Forward declare.
7986 Include "common/refcounted-object.h".
7987 (current_inferior, set_current_inferior): Move declaration to
7988 before struct inferior's definition, and fix comment.
7989 (inferior): Inherit from refcounted_object. Add comments.
7990 * thread.c (switch_to_thread_no_regs): Reference the thread's
7991 inferior pointer directly instead of doing a ptid lookup.
7992 (switch_to_no_thread): New function.
7993 (switch_to_thread(thread_info *)): New function, factored out
7994 from ...
7995 (switch_to_thread(ptid_t)): ... this.
7996 (restore_current_thread): Delete.
7997 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
7998 fields, and add 'inf' field.
7999 (do_restore_current_thread_cleanup): Check whether old->inf is
8000 alive instead of looking up an inferior by ptid. Use
8001 switch_to_thread and switch_to_no_thread.
8002 (restore_current_thread_cleanup_dtor): Use old->inf directly
8003 instead of lookup up an inferior by id. Decref the inferior.
8004 Don't restore 'removable'.
8005 (make_cleanup_restore_current_thread): Same the inferior pointer
8006 in old, instead of the inferior number. Incref the inferior.
8007 Don't save/clear 'removable'.
8008
8009 2017-04-19 Pedro Alves <palves@redhat.com>
8010
8011 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8012 unittests/scoped_restore-selftests.c.
8013 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
8014 * common/scoped_restore.h (scoped_restore_base): Make "class".
8015 (scoped_restore_base::release): New public method.
8016 (scoped_restore_base::scoped_restore_base): New protected ctor.
8017 (scoped_restore_base::m_saved_var): New protected field.
8018 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
8019 scoped_restore_base base class instead of m_saved_var directly.
8020 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
8021 (scoped_restore_tmpl::scoped_restore_tmpl(const
8022 scoped_restore_tmpl<T>&)): Likewise.
8023 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
8024 method.
8025 (scoped_restore_tmpl::saved_var): New method.
8026 (scoped_restore_tmpl::m_saved_var): Delete.
8027 * inferior.h (inferior::detaching): Now a bool.
8028 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
8029 cleanup.
8030 * unittests/scoped_restore-selftests.c: New file.
8031
8032 2017-04-19 Pedro Alves <palves@redhat.com>
8033
8034 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
8035 Re-sort in alphabetic order.
8036
8037 2017-04-18 Pedro Alves <palves@redhat.com>
8038
8039 * xml-support.c (obstack_xml_printf): Delete.
8040 * xml-support.h (obstack_xml_printf): Delete.
8041
8042 2017-04-18 Pedro Alves <palves@redhat.com>
8043
8044 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
8045 vdebug, verror, body_text, start_element, end_element, name,
8046 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
8047 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
8048 is_xinclude>: Make private and add m_ prefix.
8049 (gdb_xml_parser::body_text): New method, based on ...
8050 (gdb_xml_body_text): ... this. Adjust.
8051 (gdb_xml_parser::vdebug): New method, based on ...
8052 (gdb_xml_debug): ... this. Adjust.
8053 (gdb_xml_parser::verror): New method, based on ...
8054 (gdb_xml_error): ... this. Adjust.
8055 (gdb_xml_parser::start_element): New method, based on ...
8056 (gdb_xml_start_element): ... this. Adjust.
8057 (gdb_xml_start_element_wrapper): Defer to
8058 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
8059 (gdb_xml_parser::end_element): New method, based on ...
8060 (gdb_xml_end_element_wrapper): ... this. Adjust.
8061 (gdb_xml_parser::~gdb_xml_parser): Adjust.
8062 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
8063 (gdb_xml_parser::use_dtd): New method, based on ...
8064 (gdb_xml_use_dtd): ... this. Adjust.
8065 (gdb_xml_parser::parse): New method, based on ...
8066 (gdb_xml_parse): ... this. Adjust.
8067 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
8068 (xinclude_start_include): Adjust to call the parser's name method.
8069 (xml_xinclude_default, xml_xinclude_start_doctype)
8070 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
8071 method.
8072 (xml_process_xincludes): Adjust to call parser methods.
8073 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
8074 declarations.
8075
8076 2017-04-18 Pedro Alves <palves@redhat.com>
8077
8078 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
8079 gdb::optional<std::string>.
8080 * xml-support.c: Include <string>.
8081 (scope_level::scope_level(scope_level &&))
8082 (scope_level::~scope_level): Delete.
8083 (scope_level::body): Now a std::string.
8084 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
8085 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
8086 parameter.
8087 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
8088 (xinclude_parsing_data::output): Now a std::string reference.
8089 (xinclude_start_include): Adjust.
8090 (xml_xinclude_default): Adjust.
8091 (xml_process_xincludes): Add 'output' parameter, and return bool.
8092 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
8093 and return bool.
8094 * xml-tdesc.c: Include <unordered_map> and <string>.
8095 (tdesc_xml_cache): Delete.
8096 (tdesc_xml_cache_s): Delete.
8097 (xml_cache): Now an std::unordered_map.
8098 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
8099 (target_fetch_description_xml): Change return type to
8100 gdb::optional<std::string>, and adjust.
8101 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
8102 (target_fetch_description_xml): Change return type to
8103 gdb::optional<std::string>.
8104
8105 2017-04-18 Pedro Alves <palves@redhat.com>
8106
8107 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8108 unittests/optional-selftests.c.
8109 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
8110 * unittests/optional-selftests.c: New file.
8111 * unittests/optional/assignment/1.cc: New file.
8112 * unittests/optional/assignment/2.cc: New file.
8113 * unittests/optional/assignment/3.cc: New file.
8114 * unittests/optional/assignment/4.cc: New file.
8115 * unittests/optional/assignment/5.cc: New file.
8116 * unittests/optional/assignment/6.cc: New file.
8117 * unittests/optional/assignment/7.cc: New file.
8118 * unittests/optional/cons/copy.cc: New file.
8119 * unittests/optional/cons/default.cc: New file.
8120 * unittests/optional/cons/move.cc: New file.
8121 * unittests/optional/cons/value.cc: New file.
8122 * unittests/optional/in_place.cc: New file.
8123 * unittests/optional/observers/1.cc: New file.
8124 * unittests/optional/observers/2.cc: New file.
8125
8126 2017-04-18 Pedro Alves <palves@redhat.com>
8127
8128 * common/gdb_optional.h: Include common/traits.h.
8129 (in_place_t): New type.
8130 (in_place): New constexpr variable.
8131 (optional::optional): Remove member initialization of
8132 m_instantiated.
8133 (optional::optional(in_place_t...)): New constructor.
8134 (optional::~optional): Use reset.
8135 (optional::optional(const optional&)): New.
8136 (optional::optional(const optional&&)): New.
8137 (optional::optional(T &)): New.
8138 (optional::optional(T &&)): New.
8139 (operator::operator=(const optional &)): New.
8140 (operator::operator=(optional &&)): New.
8141 (operator::operator= (const T &))
8142 (operator::operator= (T &&))
8143 (operator::emplace (Args &&... args)): Return a T&. Use reset.
8144 (operator::reset): New.
8145 (operator::m_instantiated):: Add in-class initializer.
8146 * common/traits.h: Include <type_traits>.
8147 (struct And): New types.
8148
8149 2017-04-18 Pedro Alves <palves@redhat.com>
8150
8151 * xml-support.c: Include <vector>.
8152 (scope_level::scope_level(const gdb_xml_element *))
8153 (scope_level::scope_level(scope_level&&)): New.
8154 (scope_level::~scope_level): New.
8155 (scope_level_s): Delete.
8156 (gdb_xml_parser::scopes): Now a std::vector.
8157 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
8158 Use std::vector.
8159 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
8160 scope cleanup code.
8161 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
8162 of the scopes member. Use std::vector::emplace_back.
8163
8164 2017-04-18 Pedro Alves <palves@redhat.com>
8165
8166 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
8167 a bool.
8168 (gdb_xml_end_element): Change type of first parameter.
8169 (gdb_xml_cleanup): Rename to ...
8170 (gdb_xml_parser::~gdb_xml_parser): ... this.
8171 (gdb_xml_create_parser_and_cleanup): Delete with ...
8172 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
8173 to this new ctor.
8174 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
8175 using gdb_xml_create_parser_and_cleanup.
8176 (xinclude_parsing_data): Add ctor/dtor.
8177 (xml_xinclude_cleanup): Delete.
8178 (xml_process_xincludes): Create a local xinclude_parsing_data
8179 instead of heap-allocating one. Create a local gdb_xml_parser
8180 instead of heap-allocating one with
8181 gdb_xml_create_parser_and_cleanup.
8182
8183 2017-04-18 John Baldwin <jhb@FreeBSD.org>
8184
8185 PR threads/20743
8186 * fbsd-nat.c (resume_one_thread_cb): Remove.
8187 (resume_all_threads_cb): Remove.
8188 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
8189 iterate_over_threads.
8190
8191 2017-04-17 Joel Brobecker <brobecker@adacore.com>
8192
8193 * NEWS: Create a new section for the next release branch.
8194 Rename the section of the current branch, now that it has
8195 been cut.
8196
8197 2017-04-17 Joel Brobecker <brobecker@adacore.com>
8198
8199 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
8200 * version.in: Bump version to 8.0.50.DATE-git.
8201
8202 2017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
8203
8204 PR gdb/21385
8205 * windows-nat.c (windows_create_inferior): Declare 'allargs'
8206 independently of the host, and fix build breakage on Cygwin.
8207
8208 2017-04-13 Pedro Alves <palves@redhat.com>
8209
8210 * inferior.c (free_inferior): Convert to ...
8211 (inferior::~inferior): ... this dtor.
8212 (inferior::inferior): New ctor, factored out from ...
8213 (add_inferior_silent): ... here. Allocate the inferior with a new
8214 expression.
8215 (delete_inferior): Call delete instead of free_inferior.
8216 * inferior.h (gdb_environ, continuation): Forward declare.
8217 (inferior): Now a class. Add in-class initialization to all
8218 members. Make boolean fields bool, except 'detaching'.
8219 (inferior::inferior): New explicit ctor.
8220 (inferior::~inferior): New.
8221
8222 2017-04-13 Pedro Alves <palves@redhat.com>
8223
8224 * inferior.c (init_inferior_list): Delete.
8225 * inferior.h (init_inferior_list): Delete.
8226
8227 2017-04-13 Pedro Alves <palves@redhat.com>
8228
8229 PR threads/13217
8230 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
8231 (top level): Call it twice, with different thread sets.
8232
8233 2017-04-13 Pedro Alves <palves@redhat.com>
8234
8235 * thread.c: Include <algorithm>.
8236 (thread_array_cleanup): Delete.
8237 (scoped_inc_dec_ref): New class.
8238 (live_threads_count): New function.
8239 (set_thread_refcount): Delete.
8240 (tp_array_compar_ascending): Now a bool.
8241 (tp_array_compar): Convert to a std::sort comparison function.
8242 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
8243 and live_threads_count.
8244
8245 2017-04-13 Pedro Alves <palves@redhat.com>
8246
8247 * infrun.c (follow_fork_inferior): Also switch the current
8248 inferior.
8249
8250 2017-04-13 Pedro Alves <palves@redhat.com>
8251
8252 * breakpoint.c (watch_command_1): Save watchpoint-frame info
8253 before calling create_internal_breakpoint.
8254
8255 2017-04-13 Pedro Alves <palves@redhat.com>
8256
8257 * fork-child.c (execv_argv): New class.
8258 (breakup_args): Refactored as ...
8259 (execv_argv::init_for_no_shell): .. this method of execv_argv.
8260 Copy arguments to storage and replace separators with NULL
8261 terminators in place.
8262 (escape_bang_in_quoted_argument): Adjust to return bool.
8263 (execv_argv::execv_argv): New ctor.
8264 (execv_argv::init_for_shell): New method, factored out from
8265 fork_inferior. Don't strdup strings into the vector.
8266 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
8267 Remove free_vector_argv call.
8268
8269 2017-04-13 Yao Qi <yao.qi@linaro.org>
8270
8271 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
8272 tdep->rx_psw_type.
8273
8274 2017-04-13 Yao Qi <yao.qi@linaro.org>
8275
8276 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
8277 * rx-tdep.c (rx_gdbarch_init): Likewise.
8278
8279 2017-04-13 Pedro Alves <palves@redhat.com>
8280
8281 * breakpoint.h (struct breakpoint): Reindent.
8282
8283 2017-04-13 Pedro Alves <palves@redhat.com>
8284
8285 * breakpoint.c (bp_location): Rename to ...
8286 (bp_locations): ... this. All references updated.
8287 (bp_location_count): Rename to ...
8288 (bp_locations_count): ... this. All references updated.
8289 (bp_location_placed_address_before_address_max): Rename to ...
8290 (bp_locations_placed_address_before_address_max): ... this. All
8291 references updated.
8292 (bp_location_shadow_len_after_address_max): Rename to ...
8293 (bp_locations_shadow_len_after_address_max): ... this. All
8294 references updated.
8295 (bp_location_compare_addrs): Rename to ...
8296 (bp_locations_compare_addrs): ... this. All references updated.
8297 (bp_location_compare):Rename to ...
8298 (bp_locations_compare): ... this. All references updated.
8299 (bp_location_target_extensions_update): Rename to ...
8300 (bp_locations_target_extensions_update): ... this. All references
8301 updated.
8302
8303 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
8304
8305 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
8306 * common/common.m4: Check headers 'termios.h', 'termio.h' and
8307 'sgtty.h'.
8308 * common/gdb_termios.h: New file, with parts of "terminal.h".
8309 * inflow.c: Include "gdb_termios.h".
8310 * ser-unix.c: Include "gdb_termios.h".
8311 * terminal.h: Move terminal-related defines to
8312 "common/gdb_termios.h".
8313
8314 2017-04-12 Tom Tromey <tom@tromey.com>
8315
8316 * probe.c (parse_probes): Update.
8317 * location.h (delete_event_location): Don't declare.
8318 (event_location_deleter::operator()): Update.
8319 * location.c (event_location_deleter::operator()): Rename from
8320 delete_event_location.
8321 * linespec.h (linespec_result) <location>: Change type to
8322 event_location_up.
8323 * linespec.c (canonicalize_linespec, event_location_to_sals)
8324 (decode_objc): Update.
8325 (linespec_result): Don't call delete_event_location.
8326 * breakpoint.c (create_breakpoints_sal)
8327 (bkpt_probe_create_sals_from_location)
8328 (strace_marker_create_sals_from_location): Update.
8329
8330 2017-04-12 Tom Tromey <tom@tromey.com>
8331
8332 * linespec.h (struct linespec_result): Add constructor and
8333 destructor.
8334 (init_linespec_result, destroy_linespec_result)
8335 (make_cleanup_destroy_linespec_result): Don't declare.
8336 * linespec.c (init_linespec_result): Remove.
8337 (linespec_result::~linespec_result): Rename from
8338 destroy_linespec_result. Update.
8339 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
8340 Remove.
8341 * breakpoint.c (create_breakpoint, break_range_command)
8342 (decode_location_default): Update.
8343 * ax-gdb.c (agent_command_1): Update.
8344
8345 2017-04-12 Tom Tromey <tom@tromey.com>
8346
8347 * remote.c (remote_download_tracepoint): Update.
8348 * python/py-breakpoint.c (bppy_get_location): Update.
8349 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
8350 (gdbscm_breakpoint_location): Update.
8351 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
8352 * breakpoint.h (struct breakpoint) <location, location_range_end>:
8353 Change type to event_location_up.
8354 * breakpoint.c (create_overlay_event_breakpoint)
8355 (create_longjmp_master_breakpoint)
8356 (create_std_terminate_master_breakpoint)
8357 (create_exception_master_breakpoint)
8358 (breakpoint_event_location_empty_p, print_breakpoint_location)
8359 (print_one_breakpoint_location, create_thread_event_breakpoint)
8360 (init_breakpoint_sal, create_breakpoint)
8361 (print_recreate_ranged_breakpoint, break_range_command)
8362 (init_ada_exception_breakpoint, say_where): Update.
8363 (base_breakpoint_dtor): Don't call delete_event_location.
8364 (bkpt_print_recreate, tracepoint_print_recreate)
8365 (dprintf_print_recreate, update_static_tracepoint)
8366 (breakpoint_re_set_default): Update.
8367
8368 2017-04-12 Tom Tromey <tom@tromey.com>
8369
8370 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
8371 type of "to_do". Update.
8372 (compute_stack_depth): Use std::vector.
8373
8374 2017-04-12 Tom Tromey <tom@tromey.com>
8375
8376 * printcmd.c (find_instruction_backward): Use std::vector.
8377
8378 2017-04-12 Tom Tromey <tom@tromey.com>
8379
8380 * symfile.c (objfilep): Remove typedef.
8381 (reread_symbols): Use a std::vector.
8382
8383 2017-04-12 Tom Tromey <tom@tromey.com>
8384
8385 * mi/mi-main.c (exec_direction_forward): Remove.
8386 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
8387 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
8388 scoped_restore.
8389 * guile/guile.c (guile_repl_command, guile_command)
8390 (gdbscm_execute_gdb_command): Use scoped_restore.
8391 * go-exp.y (go_parse): Use scoped_restore.
8392 * d-exp.y (d_parse): Use scoped_restore.
8393 * cli/cli-decode.c (cmd_func): Use scoped_restore.
8394 * c-exp.y (c_parse): Use scoped_restore.
8395
8396 2017-04-12 Tom Tromey <tom@tromey.com>
8397
8398 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
8399 (mi_parse): Update return type.
8400 (mi_parse_free): Remove.
8401 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
8402 (mi_parse::~mi_parse): Rename from mi_parse_free.
8403 (mi_parse_cleanup): Remove.
8404 (mi_parse): Return a unique_ptr. Use new.
8405 * mi/mi-main.c (mi_execute_command): Update.
8406
8407 2017-04-12 Tom Tromey <tom@tromey.com>
8408
8409 * location.c (explicit_location_lex_one): Return a
8410 unique_xmalloc_ptr.
8411 (string_to_explicit_location): Update. Remove cleanups.
8412
8413 2017-04-12 Tom Tromey <tom@tromey.com>
8414
8415 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
8416 (compare_value_and_voffset): Change type. Update.
8417 (compute_vtable_size): Change type of "offset_vec".
8418 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
8419 (gnuv3_get_typeid): Remove extraneous declaration.
8420
8421 2017-04-12 Tom Tromey <tom@tromey.com>
8422
8423 * charset.h (wchar_iterator): Fix comment.
8424
8425 2017-04-12 Tom Tromey <tom@tromey.com>
8426
8427 * charset.c (iconv_wrapper): New class.
8428 (cleanup_iconv): Remove.
8429 (convert_between_encodings): Use it.
8430
8431 2017-04-12 Tom Tromey <tom@tromey.com>
8432
8433 * symfile.h (increment_reading_symtab): Update type.
8434 * symfile.c (decrement_reading_symtab): Remove.
8435 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
8436 * psymtab.c (psymtab_to_symtab): Update.
8437 * dwarf2read.c (dw2_instantiate_symtab): Update.
8438
8439 2017-04-12 Tom Tromey <tom@tromey.com>
8440
8441 * jit.c (struct jit_reader): Declare separately. Add constructor
8442 and destructor. Change type of "handle".
8443 (loaded_jit_reader): Define separately.
8444 (jit_reader_load): Update. New "new".
8445 (jit_reader_unload_command): Use "delete".
8446 * gdb-dlfcn.h (struct dlclose_deleter): New.
8447 (gdb_dlhandle_up): New typedef.
8448 (gdb_dlopen, gdb_dlsym): Update types.
8449 (gdb_dlclose): Remove.
8450 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
8451 (gdb_dlsym): Change type of "handle".
8452 (make_cleanup_dlclose): Remove.
8453 (dlclose_deleter::operator()): Rename from gdb_dlclose.
8454 * compile/compile-c-support.c (load_libcc): Update.
8455
8456 2017-04-12 Tom Tromey <tom@tromey.com>
8457
8458 * symtab.h (find_pcs_for_symtab_line): Change return type.
8459 * symtab.c (find_pcs_for_symtab_line): Change return type.
8460 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
8461 type of "vec". Update.
8462 (ltpy_get_pcs_for_line): Update.
8463 * linespec.c (decode_digits_ordinary): Update.
8464
8465 2017-04-12 Tom Tromey <tom@tromey.com>
8466
8467 * tracepoint.c (actions_command): Update.
8468 * python/python.c (python_command, python_interactive_command):
8469 Update.
8470 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
8471 * guile/guile.c (guile_command): Update.
8472 * defs.h (read_command_lines, read_command_lines_1): Return
8473 command_line_up.
8474 (command_lines_deleter): New struct.
8475 (command_line_up): New typedef.
8476 * compile/compile.c (compile_code_command)
8477 (compile_print_command): Update.
8478 * cli/cli-script.h (get_command_line, copy_command_lines): Return
8479 command_line_up.
8480 (make_cleanup_free_command_lines): Remove.
8481 * cli/cli-script.c (get_command_line, read_command_lines_1)
8482 (copy_command_lines): Return command_line_up.
8483 (while_command, if_command, read_command_lines, define_command)
8484 (document_command): Update.
8485 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
8486 Remove.
8487 * breakpoint.h (breakpoint_set_commands): Change type of
8488 "commands".
8489 * breakpoint.c (breakpoint_set_commands): Change type of
8490 "commands". Update.
8491 (do_map_commands_command, update_dprintf_command_list)
8492 (create_tracepoint_from_upload): Update.
8493
8494 2017-04-12 Tom Tromey <tom@tromey.com>
8495
8496 * tracepoint.c (scope_info): Update.
8497 * spu-tdep.c (spu_catch_start): Update.
8498 * python/python.c (gdbpy_decode_line): Update.
8499 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
8500 * python/py-breakpoint.c (bppy_init): Update.
8501 * probe.c (parse_probes): Update.
8502 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
8503 * location.h (event_location_deleter): New struct.
8504 (event_location_up): New typedef.
8505 (new_linespec_location, new_address_location, new_probe_location)
8506 (new_explicit_location, copy_event_location)
8507 (string_to_event_location, string_to_event_location_basic)
8508 (string_to_explicit_location): Update return type.
8509 (make_cleanup_delete_event_location): Remove.
8510 * location.c (new_linespec_location, new_address_location)
8511 (new_probe_location, new_explicit_location, copy_event_location):
8512 Return event_location_up.
8513 (delete_event_location_cleanup)
8514 (make_cleanup_delete_event_location): Remove.
8515 (string_to_explicit_location, string_to_event_location_basic)
8516 (string_to_event_location): Return event_location_up.
8517 * linespec.c (canonicalize_linespec, event_location_to_sals)
8518 (decode_line_with_current_source)
8519 (decode_line_with_last_displayed, decode_objc): Update.
8520 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
8521 * completer.c (location_completer): Update.
8522 * cli/cli-cmds.c (edit_command, list_command): Update.
8523 * breakpoint.c (create_overlay_event_breakpoint)
8524 (create_longjmp_master_breakpoint)
8525 (create_std_terminate_master_breakpoint)
8526 (create_exception_master_breakpoint)
8527 (create_thread_event_breakpoint): Update.
8528 (init_breakpoint_sal): Update. Remove some dead code.
8529 (create_breakpoint_sal): Change type of "location". Update.
8530 (create_breakpoints_sal, create_breakpoint, break_command_1)
8531 (dprintf_command, break_range_command, until_break_command)
8532 (init_ada_exception_breakpoint)
8533 (strace_marker_create_sals_from_location)
8534 (update_static_tracepoint, trace_command, ftrace_command)
8535 (strace_command, create_tracepoint_from_upload): Update.
8536 * break-catch-throw.c (re_set_exception_catchpoint): Update.
8537 * ax-gdb.c (agent_command_1): Update.
8538
8539 2017-04-12 Pedro Alves <palves@redhat.com>
8540
8541 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
8542 * configure.tgt: Handle i[34567]86-*-go32* and
8543 i[34567]86-*-msdosdjgpp*.
8544 * i386-tdep.c (i386_svr4_reg_to_regnum):
8545 Make extern.
8546 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
8547 i386-go32-tdep.c.
8548 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
8549 * i386-go32-tdep.c: New file.
8550 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
8551 declarations.
8552
8553 2017-04-12 Simon Marchi <simon.marchi@ericsson.com>
8554
8555 * aix-thread.c (pd_status2str): Change return type to const char *.
8556
8557 2017-04-12 Pedro Alves <palves@redhat.com>
8558
8559 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
8560 calls to set_gdbarch_gnu_triplet_regexp.
8561
8562 2017-04-12 Pedro Alves <palves@redhat.com>
8563
8564 PR gdb/21323
8565 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
8566 New enum value.
8567 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
8568 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
8569 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
8570 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
8571 * gdbarch.h, gdbarch.c: Regenerate.
8572 * aarch64-tdep.c (aarch64_gdbarch_init): Override
8573 gdbarch_wchar_bit and gdbarch_wchar_signed.
8574 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
8575 * arm-tdep.c (arm_gdbarch_init): Likewise.
8576 * avr-tdep.c (avr_gdbarch_init): Likewise.
8577 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
8578 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
8579 * i386-tdep.c (i386_go32_init_abi): Likewise.
8580 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
8581 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
8582 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
8583 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
8584 * sh-tdep.c (sh_gdbarch_init): Likewise.
8585 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
8586 * sparc64-tdep.c (sparc64_init_abi): Likewise.
8587 * windows-tdep.c (windows_init_abi): Likewise.
8588 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
8589
8590 2017-04-12 Pedro Alves <palves@redhat.com>
8591
8592 PR c++/21323
8593 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
8594 cplus_primitive_type_char32_t>: New enum values.
8595 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
8596 and cplus_primitive_type_char32_t.
8597 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
8598 32, use the archtecture's built-in type for char16_t and char32_t,
8599 respectively. Otherwise, fallback to init_integer_type as before,
8600 but make the type unsigned, and issue a complaint.
8601 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
8602
8603 2017-04-12 Alan Hayward <alan.hayward@arm.com>
8604
8605 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
8606 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
8607
8608 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
8609
8610 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
8611 'const char *'.
8612
8613 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
8614
8615 * common/common-utils.c (free_vector_argv): New function.
8616 * common/common-utils.h: Include <vector>.
8617 (free_vector_argv): New prototype.
8618 * darwin-nat.c (darwin_create_inferior): Rewrite function
8619 prototype in order to constify "exec_file" and accept a
8620 "std::string" for "allargs".
8621 * fork-child.c: Include <vector>.
8622 (breakup_args): Rewrite function, using C++.
8623 (fork_inferior): Rewrite function header, constify "exec_file_arg"
8624 and accept "std::string" for "allargs". Update the code to
8625 calculate "argv" based on "allargs". Update calls to "exec_fun"
8626 and "execvp".
8627 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
8628 order to constify "exec_file" and accept a "std::string" for
8629 "allargs".
8630 * go32-nat.c (go32_create_inferior): Likewise.
8631 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
8632 * infcmd.c (run_command_1): Constify "exec_file". Use
8633 "std::string" for inferior arguments.
8634 * inferior.h (fork_inferior): Update prototype.
8635 * linux-nat.c (linux_nat_create_inferior): Rewrite function
8636 prototype in order to constify "exec_file" and accept a
8637 "std::string" for "allargs".
8638 * nto-procfs.c (procfs_create_inferior): Likewise.
8639 * procfs.c (procfs_create_inferior): Likewise.
8640 * remote-sim.c (gdbsim_create_inferior): Likewise.
8641 * remote.c (extended_remote_run): Update code to accept
8642 "std::string" as argument.
8643 (extended_remote_create_inferior): Rewrite function prototype in
8644 order to constify "exec_file" and accept a "std::string" for
8645 "allargs".
8646 * rs6000-nat.c (super_create_inferior): Likewise.
8647 (rs6000_create_inferior): Likewise.
8648 * target.h (struct target_ops) <to_create_inferior>: Likewise.
8649 * windows-nat.c (windows_create_inferior): Likewise.
8650
8651 2017-04-11 Pedro Alves <palves@redhat.com>
8652
8653 * thread.c: Fix whitespace throughout.
8654
8655 2017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
8656
8657 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
8658
8659 2017-04-11 Alan Hayward <alan.hayward@arm.com>
8660
8661 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
8662
8663 2017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
8664
8665 PR gdb/21364
8666 * osdata.c (info_osdata): Check if 'type' is an empty string
8667 instead of NULL.
8668
8669 2017-04-10 Pedro Alves <palves@redhat.com>
8670
8671 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
8672 (ptid_to_global_thread_id, in_thread_list)
8673 (do_captured_list_thread_ids, set_resumed, set_running)
8674 (set_executing, set_stop_requested, finish_thread_state)
8675 (validate_registers_access, can_access_registers_ptid)
8676 (print_thread_info_1, switch_to_thread)
8677 (do_restore_current_thread_cleanup)
8678 (make_cleanup_restore_current_thread, thread_command)
8679 (thread_name_command): Use operator== instead of ptid_equal.
8680
8681 2017-04-10 Pedro Alves <palves@redhat.com>
8682
8683 * thread.c (struct current_thread_cleanup) <next>: Delete field.
8684 (current_thread_cleanup_chain): Delete.
8685 (restore_current_thread_cleanup_dtor)
8686 (make_cleanup_restore_current_thread): Remove references to
8687 current_thread_cleanup_chain.
8688
8689 2017-04-10 Alan Hayward <alan.hayward@arm.com>
8690
8691 * msp430-tdep.c (msp430_pseudo_register_read): Never return
8692 REG_UNKNOWN.
8693
8694 2017-04-10 Yao Qi <yao.qi@linaro.org>
8695
8696 PR gdb/19942
8697 * gdbthread.h (thread_info::deletable): New method.
8698 (thread_info::incref): New method.
8699 (thread_info::decref): New method.
8700 (thread_info::refcount): Move it to private.
8701 * infrun.c (save_stop_context): Call inc_refcount.
8702 (release_stop_context_cleanup): Likewise.
8703 * thread.c (set_thread_exited): New function.
8704 (init_thread_list): Delete "tp" only it is deletable, otherwise
8705 call set_thread_exited.
8706 (delete_thread_1): Call set_thread_exited.
8707 (current_thread_cleanup) <inferior_pid>: Remove.
8708 <thread>: New field.
8709 (restore_current_thread_ptid_changed): Removed.
8710 (do_restore_current_thread_cleanup): Adjust.
8711 (restore_current_thread_cleanup_dtor): Don't call
8712 find_thread_ptid.
8713 (set_thread_refcount): Use dec_refcount.
8714 (make_cleanup_restore_current_thread): Adjust.
8715 (thread_apply_all_command): Call inc_refcount.
8716 (_initialize_thread): Don't call
8717 observer_attach_thread_ptid_changed.
8718
8719 2017-04-10 Yao Qi <yao.qi@linaro.org>
8720
8721 * thread.c (delete_thread_1): Hoist code on marking thread as
8722 exited.
8723
8724 2017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
8725
8726 * windows-nat.c (windows_detach): Initialize ptid with
8727 minus_one_ptid.
8728
8729 2017-04-07 Simon Marchi <simon.marchi@ericsson.com>
8730
8731 * unittests/ptid-selftests.c: Fix erroneous assert messages.
8732
8733 2017-04-07 Alan Hayward <alan.hayward@arm.com>
8734
8735 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
8736 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
8737 (bfin_pseudo_register_write): Likewise
8738
8739 2017-04-06 Simon Marchi <simon.marchi@ericsson.com>
8740
8741 * common/ptid.h (struct ptid): Change to...
8742 (class ptid_t): ... this.
8743 <ptid_t>: New constructors.
8744 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
8745 matches>: New methods.
8746 <make_null, make_minus_one>: New static methods.
8747 <pid>: Rename to...
8748 <m_pid>: ...this.
8749 <lwp>: Rename to...
8750 <m_lwp>: ...this.
8751 <tid>: Rename to...
8752 <m_tid>: ...this.
8753 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
8754 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
8755 as references, move comment to class ptid_t.
8756 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
8757 ptid_t static methods.
8758 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
8759 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
8760 Take ptid arguments as references, implement using ptid_t methods.
8761 * unittests/ptid-selftests.c: New file.
8762 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8763 unittests/ptid-selftests.c.
8764 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
8765
8766 2017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
8767
8768 * python/python.c (python_run_simple_file): Cast mode literal to
8769 non-const char pointer as expected by PyFile_FromString.
8770
8771 2017-04-05 Simon Marchi <simon.marchi@ericsson.com>
8772
8773 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
8774 minus_one_ptid and null_ptid.
8775
8776 2017-04-05 Pedro Alves <palves@redhat.com>
8777
8778 * warning.m4 (build_warnings): Remove -Wno-write-strings.
8779 * configure: Regenerate.
8780
8781 2017-04-05 Pedro Alves <palves@redhat.com>
8782
8783 * ada-exp.y (yyerror): Constify.
8784 * ada-lang.c (bound_name, get_selections)
8785 (ada_variant_discrim_type)
8786 (ada_variant_discrim_name, ada_value_struct_elt)
8787 (ada_lookup_struct_elt_type, is_unchecked_variant)
8788 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
8789 (catch_ada_exception_command_split)
8790 (catch_ada_assert_command_split, catch_assert_command)
8791 (ada_op_name): Constify.
8792 * ada-lang.h (ada_yyerror, get_selections)
8793 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
8794 * arc-tdep.c (arc_print_frame_cache): Constify.
8795 * arm-tdep.c (arm_skip_stub): Constify.
8796 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
8797 (gen_aggregate_elt_ref): Constify.
8798 * bcache.c (print_bcache_statistics): Constify.
8799 * bcache.h (print_bcache_statistics): Constify.
8800 * break-catch-throw.c (catch_exception_command_1):
8801 * breakpoint.c (struct ep_type_description::description):
8802 Constify.
8803 (add_solib_catchpoint): Constify.
8804 (catch_fork_command_1): Add cast.
8805 (add_catch_command): Constify.
8806 * breakpoint.h (add_catch_command, add_solib_catchpoint):
8807 Constify.
8808 * bsd-uthread.c (bsd_uthread_state): Constify.
8809 * buildsym.c (patch_subfile_names): Constify.
8810 * buildsym.h (next_symbol_text_func, patch_subfile_names):
8811 Constify.
8812 * c-exp.y (yyerror): Constify.
8813 (token::oper): Constify.
8814 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
8815 * c-varobj.c (cplus_describe_child): Constify.
8816 * charset.c (find_charset_names): Add cast.
8817 (find_charset_names): Constify array and add const_cast.
8818 * cli/cli-cmds.c (complete_command, cd_command): Constify.
8819 (edit_command): Constify.
8820 * cli/cli-decode.c (lookup_cmd): Constify.
8821 * cli/cli-dump.c (dump_memory_command, dump_value_command):
8822 Constify.
8823 (struct dump_context): Constify.
8824 (add_dump_command, restore_command): Constify.
8825 * cli/cli-script.c (get_command_line): Constify.
8826 * cli/cli-script.h (get_command_line): Constify.
8827 * cli/cli-utils.c (check_for_argument): Constify.
8828 * cli/cli-utils.h (check_for_argument): Constify.
8829 * coff-pe-read.c (struct read_pe_section_data): Constify.
8830 * command.h (lookup_cmd): Constify.
8831 * common/print-utils.c (decimal2str): Constify.
8832 * completer.c (gdb_print_filename): Constify.
8833 * corefile.c (set_gnutarget): Constify.
8834 * cp-name-parser.y (yyerror): Constify.
8835 * cp-valprint.c (cp_print_class_member): Constify.
8836 * cris-tdep.c (cris_register_name, crisv32_register_name):
8837 Constify.
8838 * d-exp.y (yyerror): Constify.
8839 (struct token::oper): Constify.
8840 * d-lang.h (d_yyerror): Constify.
8841 * dbxread.c (struct header_file_location::name): Constify.
8842 (add_old_header_file, add_new_header_file, last_function_name)
8843 (dbx_next_symbol_text, add_bincl_to_list)
8844 (find_corresponding_bincl_psymtab, set_namestring)
8845 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
8846 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
8847 * defs.h (command_line_input, print_address_symbolic)
8848 (deprecated_readline_begin_hook): Constify.
8849 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
8850 Constify.
8851 * event-top.c (handle_line_of_input): Constify and add cast.
8852 * exceptions.c (catch_errors): Constify.
8853 * exceptions.h (catch_errors): Constify.
8854 * expprint.c (print_subexp_standard, op_string, op_name)
8855 (op_name_standard, dump_raw_expression, dump_raw_expression):
8856 * expression.h (op_name, op_string, dump_raw_expression):
8857 Constify.
8858 * f-exp.y (yyerror): Constify.
8859 (struct token::oper): Constify.
8860 (struct f77_boolean_val::name): Constify.
8861 * f-lang.c (f_word_break_characters): Constify.
8862 * f-lang.h (f_yyerror): Constify.
8863 * fork-child.c (fork_inferior): Add cast.
8864 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
8865 (new_variant): Constify.
8866 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
8867 * gdbarch.c: Regenerate.
8868 * gdbcore.h (set_gnutarget): Constify.
8869 * go-exp.y (yyerror): Constify.
8870 (token::oper): Constify.
8871 * go-lang.h (go_yyerror): Constify.
8872 * go32-nat.c (go32_sysinfo): Constify.
8873 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
8874 * guile/scm-cmd.c (cmdscm_function): Constify.
8875 * guile/scm-param.c (pascm_param_value): Constify.
8876 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
8877 (h8300sx_register_name): Constify.
8878 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
8879 Constify.
8880 * ia64-tdep.c (ia64_register_names): Constify.
8881 * infcmd.c (construct_inferior_arguments): Constify.
8882 (path_command, attach_post_wait): Constify.
8883 * language.c (show_range_command, show_case_command)
8884 (unk_lang_error): Constify.
8885 * language.h (language_defn::la_error)
8886 (language_defn::la_name_of_this): Constify.
8887 * linespec.c (decode_line_2): Constify.
8888 * linux-thread-db.c (thread_db_err_str): Constify.
8889 * lm32-tdep.c (lm32_register_name): Constify.
8890 * m2-exp.y (yyerror): Constify.
8891 * m2-lang.h (m2_yyerror): Constify.
8892 * m32r-tdep.c (m32r_register_names): Constify and make static.
8893 * m68hc11-tdep.c (m68hc11_register_names): Constify.
8894 * m88k-tdep.c (m88k_register_name): Constify.
8895 * macroexp.c (appendmem): Constify.
8896 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
8897 (upgrade_type, parse_external, parse_partial_symbols)
8898 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
8899 (new_symbol): Constify.
8900 * memattr.c (mem_info_command): Constify.
8901 * mep-tdep.c (register_name_from_keyword): Constify.
8902 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
8903 Constify.
8904 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
8905 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
8906 * mi/mi-main.c (captured_mi_execute_command): Constify and add
8907 cast.
8908 (mi_execute_async_cli_command): Constify.
8909 * mips-tdep.c (mips_register_name): Constify.
8910 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
8911 (am33_register_name, am33_2_register_name)
8912 * moxie-tdep.c (moxie_register_names): Constify.
8913 * nat/linux-osdata.c (osdata_type): Constify fields.
8914 * nto-tdep.c (nto_parse_redirection): Constify.
8915 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
8916 (lookup_child_selector): Constify.
8917 (objc_methcall::name): Constify.
8918 * objc-lang.h (lookup_objc_class, lookup_child_selector)
8919 (lookup_struct_typedef): Constify.
8920 * objfiles.c (pc_in_section): Constify.
8921 * objfiles.h (pc_in_section): Constify.
8922 * p-exp.y (struct token::oper): Constify.
8923 (yyerror): Constify.
8924 * p-lang.h (pascal_yyerror): Constify.
8925 * parser-defs.h (op_name_standard): Constify.
8926 (op_print::string): Constify.
8927 (exp_descriptor::op_name): Constify.
8928 * printcmd.c (print_address_symbolic): Constify.
8929 * psymtab.c (print_partial_symbols): Constify.
8930 * python/py-breakpoint.c (stop_func): Constify.
8931 (bppy_get_expression): Constify.
8932 * python/py-cmd.c (cmdpy_completer::name): Constify.
8933 (cmdpy_function): Constify.
8934 * python/py-event.c (evpy_add_attribute)
8935 (gdbpy_initialize_event_generic): Constify.
8936 * python/py-event.h (evpy_add_attribute)
8937 (gdbpy_initialize_event_generic): Constify.
8938 * python/py-evts.c (add_new_registry): Constify.
8939 * python/py-finishbreakpoint.c (outofscope_func): Constify.
8940 * python/py-framefilter.c (get_py_iter_from_func): Constify.
8941 * python/py-inferior.c (get_buffer): Add cast.
8942 * python/py-param.c (parm_constant::name): Constify.
8943 * python/py-unwind.c (fprint_frame_id): Constify.
8944 * python/python.c (gdbpy_parameter_value): Constify.
8945 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
8946 * remote.c (memory_packet_config::name): Constify.
8947 (show_packet_config_cmd, remote_write_bytes)
8948 (remote_buffer_add_string):
8949 * reverse.c (exec_reverse_once): Constify.
8950 * rs6000-tdep.c (variant::name, variant::description): Constify.
8951 * rust-exp.y (rustyyerror): Constify.
8952 * rust-lang.c (rust_op_name): Constify.
8953 * rust-lang.h (rustyyerror): Constify.
8954 * serial.h (serial_ops::name): Constify.
8955 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
8956 (sh_sh3e_register_name, sh_sh2e_register_name)
8957 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
8958 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
8959 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
8960 (sh_sh4al_dsp_register_name): Constify.
8961 * sh64-tdep.c (sh64_register_name): Constify.
8962 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
8963 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
8964 * stabsread.c (patch_block_stabs, read_type_number)
8965 (ref_map::stabs, ref_add, process_reference)
8966 (symbol_reference_defined, define_symbol, define_symbol)
8967 (error_type, read_type, read_member_functions, read_cpp_abbrev)
8968 (read_one_struct_field, read_struct_fields, read_baseclasses)
8969 (read_tilde_fields, read_struct_type, read_array_type)
8970 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
8971 (read_huge_number, read_range_type, read_args, common_block_start)
8972 (find_name_end): Constify.
8973 * stabsread.h (common_block_start, define_symbol)
8974 (process_one_symbol, symbol_reference_defined, ref_add):
8975 * symfile.c (get_section_index, add_symbol_file_command):
8976 * symfile.h (get_section_index): Constify.
8977 * target-descriptions.c (tdesc_type::name): Constify.
8978 (tdesc_free_type): Add cast.
8979 * target.c (find_default_run_target):
8980 (add_deprecated_target_alias, find_default_run_target)
8981 (target_announce_detach): Constify.
8982 (do_option): Constify.
8983 * target.h (add_deprecated_target_alias): Constify.
8984 * thread.c (print_thread_info_1): Constify.
8985 * top.c (deprecated_readline_begin_hook, command_line_input):
8986 Constify.
8987 (init_main): Add casts.
8988 * top.h (handle_line_of_input): Constify.
8989 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
8990 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
8991 (tfind_command): Rename to ...
8992 (tfind_command_1): ... this and constify.
8993 (tfind_command): New function.
8994 (tfind_end_command, tfind_start_command): Adjust.
8995 (encode_source_string): Constify.
8996 * tracepoint.h (encode_source_string): Constify.
8997 * tui/tui-data.c (tui_partial_win_by_name): Constify.
8998 * tui/tui-data.h (tui_partial_win_by_name): Constify.
8999 * tui/tui-source.c (tui_set_source_content_nil): Constify.
9000 * tui/tui-source.h (tui_set_source_content_nil): Constify.
9001 * tui/tui-win.c (parse_scrolling_args): Constify.
9002 * tui/tui-windata.c (tui_erase_data_content): Constify.
9003 * tui/tui-windata.h (tui_erase_data_content): Constify.
9004 * tui/tui-winsource.c (tui_erase_source_content): Constify.
9005 * tui/tui.c (tui_enable): Add cast.
9006 * utils.c (defaulted_query): Constify.
9007 (init_page_info): Add cast.
9008 (puts_debug, subset_compare): Constify.
9009 * utils.h (subset_compare): Constify.
9010 * varobj.c (varobj_format_string): Constify.
9011 * varobj.h (varobj_format_string): Constify.
9012 * vax-tdep.c (vax_register_name): Constify.
9013 * windows-nat.c (windows_detach): Constify.
9014 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
9015 * xml-support.c (gdb_xml_end_element): Constify.
9016 * xml-tdesc.c (tdesc_start_reg): Constify.
9017 * xstormy16-tdep.c (xstormy16_register_name): Constify.
9018 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
9019 * xtensa-tdep.h (xtensa_register_t::name): Constify.
9020
9021 2017-04-05 Pedro Alves <palves@redhat.com>
9022
9023 * proc-api.c (struct trans): Constify.
9024 (procfs_note): Constify.
9025 * proc-events.c (struct trans, syscall_table):
9026 * proc-flags.c (struct trans): Constify.
9027 * proc-utils.h (procfs_note): Constify.
9028 * proc-why.c (struct trans): Constify.
9029 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
9030 (procfs_detach): Constify.
9031 * sol-thread.c (struct string_map): Constify.
9032 (td_err_string, td_state_string): Constify.
9033
9034 2017-04-05 Pedro Alves <palves@redhat.com>
9035
9036 * proc-api.c (procfs_filename): Don't initialize
9037 procfs_filename.
9038 (prepare_to_trace): Assume procfs_filename is non-NULL.
9039 (_initialize_proc_api): Give procfs_filename a default value here.
9040
9041 2017-04-05 Pedro Alves <palves@redhat.com>
9042
9043 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
9044 'cond_string' parameter.
9045 (extract_exception_regexp): Constify 'string' parameter.
9046 (catch_exception_command_1): Constify.
9047 * breakpoint.c (init_catchpoint)
9048 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
9049 parameter.
9050 (ep_parse_optional_if_clause, catch_fork_command_1)
9051 (catch_exec_command_1): Constify.
9052 * breakpoint.h (init_catchpoint): Constify 'cond_string'
9053 parameter.
9054 (ep_parse_optional_if_clause): Constify.
9055 * cli/cli-utils.c (remove_trailing_whitespace)
9056 (check_for_argument): Constify.
9057 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
9058 non-const overload.
9059 (check_for_argument): Likewise.
9060
9061 2017-04-05 Pedro Alves <palves@redhat.com>
9062
9063 * event-top.c (command_line_handler): Add cast to execute_command
9064 call.
9065 * record-btrace.c (cmd_record_btrace_bts_start)
9066 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
9067 (cmd_record_btrace_start): Add cast to execute_command call.
9068 * record-full.c (record_full_goto_insn):
9069 * record.c (record_start, record_stop): Add cast to
9070 execute_command_to_string calls.
9071 (cmd_record_start): Add cast to execute_command calls.
9072
9073 2017-04-05 Pedro Alves <palves@redhat.com>
9074
9075 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
9076 static inline function.
9077 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
9078 array and use gdb_PyArg_ParseTupleAndKeywords.
9079 * python/py-cmd.c (cmdpy_init): Likewise.
9080 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
9081 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
9082 (infpy_search_memory): Likewise.
9083 * python/py-objfile.c (objfpy_add_separate_debug_file)
9084 (gdbpy_lookup_objfile): Likewise.
9085 * python/py-symbol.c (gdbpy_lookup_symbol)
9086 (gdbpy_lookup_global_symbol): Likewise.
9087 * python/py-type.c (gdbpy_lookup_type): Likewise.
9088 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
9089 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
9090 Likewise.
9091
9092 2017-04-05 Pedro Alves <palves@redhat.com>
9093
9094 * python/python-internal.h (gdb_PyGetSetDef): New type.
9095 * python/py-block.c (block_object_getset)
9096 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
9097 * python/py-event.c (event_object_getset)
9098 (finish_breakpoint_object_getset): Likewise.
9099 * python/py-inferior.c (inferior_object_getset): Likewise.
9100 * python/py-infthread.c (thread_object_getset): Likewise.
9101 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
9102 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
9103 * python/py-objfile.c (objfile_getset): Likewise.
9104 * python/py-progspace.c (pspace_getset): Likewise.
9105 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
9106 Likewise.
9107 * python/py-record.c (recpy_record_getset): Likewise.
9108 * python/py-symbol.c (symbol_object_getset): Likewise.
9109 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
9110 Likewise.
9111 * python/py-type.c (type_object_getset, field_object_getset):
9112 Likewise.
9113 * python/py-value.c (value_object_getset): Likewise.
9114
9115 2017-04-05 Pedro Alves <palves@redhat.com>
9116
9117 * python/python-internal.h (gdb_PyObject_CallMethod)
9118 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
9119 New functions.
9120 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
9121 (PySys_GetObject, PySys_SetPath): New macros.
9122
9123 2017-04-05 Pedro Alves <palves@redhat.com>
9124
9125 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
9126 info_osdata_command.
9127 * osdata.c (info_osdata_command): Rename to ...
9128 (info_osdata): ... this. Constify 'type' parameter, and remove
9129 the 'from_tty' parameter. Accept NULL TYPE.
9130 (info_osdata_command): New function.
9131 * osdata.h (info_osdata_command): Remove declaration.
9132 (info_osdata): New declaration.
9133
9134 2017-04-05 Pedro Alves <palves@redhat.com>
9135
9136 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
9137 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
9138 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
9139 parameter.
9140 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
9141 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
9142 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
9143 parameter.
9144 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
9145 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
9146 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
9147 (mi_cmd_file_list_exec_source_files)
9148 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
9149 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
9150 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
9151 parameter.
9152 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
9153 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
9154 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
9155 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
9156 (mi_cmd_stack_info_frame): Constify 'command' parameter.
9157 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
9158 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
9159 'command' parameter.
9160 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
9161 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
9162 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
9163 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
9164 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
9165 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
9166 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
9167 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
9168 (mi_cmd_var_set_update_range): Constify 'command' parameter.
9169 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
9170 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
9171 parameter.
9172 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
9173 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
9174 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
9175 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
9176 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
9177 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
9178 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
9179 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
9180 (mi_cmd_data_list_changed_registers)
9181 (mi_cmd_data_write_register_values)
9182 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
9183 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
9184 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
9185 (mi_cmd_list_features, mi_cmd_list_target_features)
9186 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
9187 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
9188 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
9189 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
9190 (mi_cmd_trace_frame_collected): Constify 'command'
9191 parameter.
9192 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
9193 'command' parameter.
9194
9195 2017-04-05 Pedro Alves <palves@redhat.com>
9196
9197 * ada-lang.c (ada_completer_word_break_characters): Now a const
9198 array.
9199 (ada_get_gdb_completer_word_break_characters): Constify.
9200 * completer.c (gdb_completer_command_word_break_characters)
9201 (gdb_completer_file_name_break_characters)
9202 (gdb_completer_quote_characters): Now const arrays.
9203 (get_gdb_completer_quote_characters): Constify.
9204 (set_rl_completer_word_break_characters): New function.
9205 (set_gdb_completion_word_break_characters)
9206 (complete_line_internal): Use it.
9207 * completer.h (get_gdb_completer_quote_characters): Constify.
9208 (set_rl_completer_word_break_characters): Declare.
9209 * f-lang.c (f_word_break_characters): Constify.
9210 * language.c (default_word_break_characters): Constify.
9211 * language.h (language_defn::la_word_break_characters): Constify.
9212 (default_word_break_characters): Constify.
9213 * top.c (init_main): Use set_rl_completer_word_break_characters.
9214
9215 2017-04-05 Pedro Alves <palves@redhat.com>
9216
9217 * aix-thread.c (aix_thread_pid_to_str)
9218 (aix_thread_extra_thread_info): Constify.
9219 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
9220 * bsd-uthread.c (bsd_uthread_extra_thread_info)
9221 (bsd_uthread_pid_to_str): Constify.
9222 * corelow.c (core_pid_to_str): Constify.
9223 * darwin-nat.c (darwin_pid_to_str): Constify.
9224 * fbsd-nat.c (fbsd_pid_to_str): Constify.
9225 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
9226 Constify.
9227 * gnu-nat.c (gnu_pid_to_str): Constify.
9228 * go32-nat.c (go32_pid_to_str): Constify.
9229 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
9230 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
9231 * inferior.c (inferior_pid_to_str): Constify.
9232 * linux-nat.c (linux_nat_pid_to_str): Constify.
9233 * linux-tdep.c (linux_core_pid_to_str): Constify.
9234 * linux-thread-db.c (thread_db_pid_to_str)
9235 (thread_db_extra_thread_info): Constify.
9236 * nto-tdep.c (nto_extra_thread_info): Constify.
9237 * nto-tdep.h (nto_extra_thread_info): Constify.
9238 * obsd-nat.c (obsd_pid_to_str): Constify.
9239 * procfs.c (procfs_pid_to_str): Constify.
9240 * ravenscar-thread.c (ravenscar_extra_thread_info)
9241 (ravenscar_pid_to_str): Constify.
9242 * remote-sim.c (gdbsim_pid_to_str): Constify.
9243 * remote.c (remote_threads_extra_info, remote_pid_to_str):
9244 Constify.
9245 * sol-thread.c (solaris_pid_to_str): Constify.
9246 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
9247 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
9248 * target.c (default_pid_to_str, target_pid_to_str)
9249 (normal_pid_to_str, default_pid_to_str): Constify.
9250 * target.h (target_ops::to_pid_to_str)
9251 (target_ops::to_extra_thread_info): Constify.
9252 (target_pid_to_str, normal_pid_to_str): Constify.
9253 * windows-nat.c (windows_pid_to_str): Constify.
9254 * gdbarch.sh (core_pid_to_str): Constify.
9255 * target-delegates.c: Regenerate.
9256 * gdbarch.h, gdbarch.c: Regenerate.
9257
9258 2017-04-05 Pedro Alves <palves@redhat.com>
9259
9260 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
9261 the memory of the temporary warning_pre_print override.
9262 * utils.c (warning_pre_print): Constify.
9263 * utils.h (warning_pre_print): Constify.
9264
9265 2017-04-05 Pedro Alves <palves@redhat.com>
9266
9267 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
9268 (shell_command): New function.
9269 (make_command): Use std::string.
9270 (init_cli_cmds): Register shell_command instead of shell_escape.
9271
9272 2017-04-05 Pedro Alves <palves@redhat.com>
9273
9274 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
9275 * tracepoint.c (default_collect): Don't initialize.
9276
9277 2017-04-05 Pedro Alves <palves@redhat.com>
9278
9279 * macroexp.c (macro_buffer::shared): Now a bool.
9280 (init_buffer): Update.
9281 (init_shared_buffer): Constify 'addr' parameter.
9282 (substitute_args, expand, macro_expand, macro_expand_next): Remove
9283 casts.
9284
9285 2017-04-05 Pedro Alves <palves@redhat.com>
9286
9287 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
9288 * disasm.c (set_disassembler_options): Constify local.
9289 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
9290
9291 2017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
9292
9293 PR gdb/21352
9294 * tracefile.c (tsave_command): Fix argument parsing for '-r'
9295 option.
9296
9297 2017-04-05 Yao Qi <yao.qi@linaro.org>
9298
9299 * frame.c (frame_unwind_register_unsigned): Call
9300 frame_unwind_register_value.
9301
9302 2017-04-05 Yao Qi <yao.qi@linaro.org>
9303
9304 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
9305 Use gdb_test_multiple, and don't match anchor.
9306
9307 2017-04-05 Pedro Alves <palves@redhat.com>
9308
9309 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
9310 (Write After Approval): Remove Simon Marchi.
9311
9312 2017-04-05 Pedro Alves <palves@redhat.com>
9313
9314 * common/gdb_optional.h (optional::optional): Make constexpr and
9315 initialize m_dummy.
9316
9317 2017-04-04 John Baldwin <jhb@FreeBSD.org>
9318
9319 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
9320 (amd64fbsd_jmp_buf_reg_offset): Remove.
9321 (amd64fbsd_supply_uthread): Remove function.
9322 (amd64fbsd_collect_uthread): Remove function.
9323 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
9324 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
9325 (x86_64-*-freebsd*): Remove bsd-uthread.o.
9326 (fbsd-nat.c): Update comment.
9327 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
9328 (i386fbsd_jmp_buf_reg_offset): Remove.
9329 (i386fbsd_supply_uthread): Remove function.
9330 (i386fbsd_collect_uthread): Remove function.
9331 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
9332
9333 2017-04-04 John Baldwin <jhb@FreeBSD.org>
9334
9335 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
9336 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
9337 * NEWS: Mention that support for FreeBSD/alpha was removed.
9338 * alpha-fbsd-tdep.c: Delete file.
9339 * config/alpha/fbsd.mh: Delete file.
9340 * configure.host: Delete alpha*-*-freebsd* and
9341 alpha*-*-kfreebsd*-gnu.
9342 * configure.tgt: Delete alpha*-*-freebsd* and
9343 alpha*-*-kfreebsd*-gnu.
9344
9345 2017-04-04 John Baldwin <jhb@FreeBSD.org>
9346
9347 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
9348 amd64bsd_store_inferior_registers): Use ptid from regcache.
9349
9350 2017-04-04 Pedro Alves <palves@redhat.com>
9351
9352 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
9353 data fields, make them private and add "m_" prefixes.
9354 (lnp_state_machine::lnp_state_machine): New ctor.
9355 (record_line, check_line_address, handle_set_discriminator)
9356 (handle_set_address, handle_advance_pc, handle_special_opcode)
9357 (handle_advance_line, handle_set_file, handle_negate_stmt)
9358 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
9359 (end_sequence, advance_line): New methods.
9360 (m_gdbarch, m_record_lines_p): New fields.
9361 (lnp_reader_state): Delete.
9362 (dwarf_record_line): Rename to ...
9363 (lnp_state_machine::record_line): ... adjust.
9364 (init_lnp_state_machine): Delete.
9365 (lnp_state_machine::lnp_state_machine): New.
9366 (check_line_address): Rename to ...
9367 (lnp_state_machine::check_line_address): This.
9368 (dwarf_decode_lines_1): Remove reference to "reader_state".
9369 Adjust lnp_state_machine having a non-default ctor. Use bool.
9370 State machine internal state manipulation moved to
9371 lnp_state_machine methods.
9372
9373 2017-04-04 Pedro Alves <palves@redhat.com>
9374
9375 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9376 unittests/offset-type-selftests.c.
9377 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
9378 * common/offset-type.h: New file.
9379 * common/preprocessor.h: New file.
9380 * common/traits.h: New file.
9381 * common/valid-expr.h: New file.
9382 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
9383 sect_offset and cu_offset strong typedefs throughout.
9384 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
9385 typedefs throughout.
9386 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
9387 sect_offset and cu_offset strong typedefs throughout.
9388 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
9389 typedefs throughout.
9390 * gdbtypes.h: Include "common/offset-type.h".
9391 (cu_offset): Now an offset type (strong typedef) instead of a
9392 struct.
9393 (sect_offset): Likewise.
9394 (union call_site_parameter_u): Rename "param_offset" field to
9395 "param_cu_off".
9396 * unittests/offset-type-selftests.c: New file.
9397
9398 2017-04-04 Pedro Alves <palves@redhat.com>
9399
9400 * common/underlying.h: New file.
9401 * dwarf2read.c: Include "common/gdb_optional.h" and
9402 "common/underlying.h".
9403 (dir_index, file_name_index): New types.
9404 (file_entry): Use them.
9405 (file_entry::include): Use to_underlying.
9406 (line_header::add_file_name): Use dir_index.
9407 (read_formatted_entries): Use gdb::optional. Read form before
9408 writting to file_entry.
9409 (dwarf_decode_line_header): Use dir_index.
9410 (lnp_state_machine::current_file): Use to_underlying.
9411 (lnp_state_machine::file): Change type to file_name_index.
9412 (dwarf_record_line): Use to_underlying.
9413 (init_lnp_state_machine): Use file_name_index.
9414 (dwarf_decode_lines_1): Use dir_index and file_name_index.
9415
9416 2017-04-04 Pedro Alves <palves@redhat.com>
9417
9418 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
9419 operator bool, has_value and get methods.
9420
9421 2017-04-04 Pedro Alves <palves@redhat.com>
9422
9423 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
9424 fields.
9425 (line_header): Initialize all data fields. Change type of
9426 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
9427 Change type of include_dirs to std::vector<const char *>. Remove
9428 num_include_dirs, include_dirs_size. Change type of file_names to
9429 std::vector<file_entry>. Remove num_file_names, file_names_size.
9430 (line_header::line_header): New.
9431 (line_header::add_include_dir, line_header::add_file_name): New
9432 methods.
9433 (line_header::include_dir_at): Remove NULL check.
9434 (line_header::file_name_at): Add const overload.
9435 (line_header_up): New unique_ptr typedef.
9436 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
9437 std::vector. Remove free_line_header call.
9438 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
9439 free_line_header call.
9440 (free_cu_line_header): Delete.
9441 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
9442 (setup_type_unit_groups): Use line_header_up instead of cleanups.
9443 Adjust to use std::vector.
9444 (free_line_header): Delete.
9445 (free_line_header_voidp): Use delete.
9446 (add_include_dir): Replace with ...
9447 (line_header::add_include_dir): ... this method. Use std::vector.
9448 (add_file_name): Replace with ...
9449 (line_header::add_file_name): ... this method. Use std::vector.
9450 (add_include_dir_stub): Delete.
9451 (read_formatted_entries): Remove memset.
9452 (dwarf_decode_line_header): Return a line_header_up instead of a
9453 raw pointer. Remove cleanup handling. Pass lambdas to
9454 read_formatted_entries. Adjust to use line_header methods.
9455 (dwarf_decode_lines_1): Adjust to use line_header methods.
9456 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
9457 use std::vector.
9458
9459 2017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
9460
9461 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
9462 instead of struct ptid.
9463
9464 2017-05-04 Alan Hayward <alan.hayward@arm.com>
9465
9466 * frame.c (get_frame_register_bytes): Unwind using value.
9467 (put_frame_register_bytes): Likewise.
9468
9469 2017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
9470
9471 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
9472 aggregate-like.
9473
9474 2017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
9475
9476 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
9477
9478 2017-03-29 Yao Qi <yao.qi@linaro.org>
9479
9480 * gdbthread.h (struct thread_info): Declare constructor and
9481 destructor. Add some in-class member initializers.
9482 * thread.c (free_thread): Remove.
9483 (init_thread_list): Call delete instead of free_thread.
9484 (new_thread): Call thread_info constructor.
9485 (thread_info::thread_info): New function.
9486 (thread_info::~thread_info): New function.
9487 (delete_thread_1): Call delete instead of free_thread.
9488 (make_cleanup_restore_current_thread): Move tp and frame to
9489 inner block.
9490
9491 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
9492
9493 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
9494 (arc_skip_prologue): Likewise.
9495 (arc_make_frame_cache): Likewise.
9496 (arc_pv_get_operand): New function.
9497 (arc_is_in_prologue): Likewise.
9498 (arc_analyze_prologue): Likewise.
9499 (arc_print_frame_cache): Likewise.
9500 (MAX_PROLOGUE_LENGTH): New constant.
9501
9502 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
9503
9504 * configure.tgt: Add arc-insn.o.
9505 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
9506 (dump_arc_instruction_command): New function.
9507 (arc_fprintf_disasm): Likewise.
9508 (arc_disassemble_info): Likewise.
9509 (arc_insn_get_operand_value): Likewise.
9510 (arc_insn_get_operand_value_signed): Likewise.
9511 (arc_insn_get_memory_base_reg): Likewise.
9512 (arc_insn_get_memory_offset): Likewise.
9513 (arc_insn_get_branch_target): Likewise.
9514 (arc_insn_dump): Likewise.
9515 (arc_insn_get_linear_next_pc): Likewise.
9516 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
9517 (arc_disassemble_info): Likewise.
9518 (arc_insn_get_branch_target): Likewise.
9519 (arc_insn_get_linear_next_pc): Likewise.
9520 * NEWS: Mention new "maint print arc arc-instruction".
9521
9522 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
9523
9524 * arc-tdep (maintenance_print_arc_list): New variable.
9525 (maintenance_print_arc_command): New function.
9526
9527 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
9528
9529 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
9530 Add "limm" and "reserved".
9531 (arc_cannot_fetch_register, arc_cannot_store_register): Add
9532 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
9533 * arc-tdep.h (arc_regnum): Likewise.
9534
9535 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
9536
9537 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
9538 for THREADPTR register.
9539 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
9540 register.
9541 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
9542 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
9543 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
9544
9545 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
9546
9547 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
9548 registers above gdbarch_num_regs (gdbarch) as privileged in
9549 call0 ABI.
9550
9551 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
9552
9553 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
9554 for a single specified register or for all registers in
9555 a0_base..a0_base + C0_NREGS range.
9556 (supply_gregset_reg): Call regcache_raw_supply for a single
9557 specified register or for all registers in a0_base..a0_base +
9558 C0_NREGS range.
9559
9560 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
9561
9562 * arch/xtensa.h (C0_NREGS): Add definition.
9563 * xtensa-tdep.c (C0_NREGS): Remove definition.
9564
9565 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
9566
9567 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
9568 Drop xtensa_default_isa initialization.
9569 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
9570
9571 2017-03-27 Pedro Alves <palves@redhat.com>
9572
9573 * dwarf2read.c (file_entry) <dir_index>: Add comment.
9574 (file_entry::include_dir): New method.
9575 (line_header::include_dir_at, line_header::file_name_at): New
9576 methods.
9577 (setup_type_unit_groups, setup_type_unit_groups)
9578 (psymtab_include_file_name): Simplify using the new methods.
9579 (lnp_state_machine) <the_line_header>: New field.
9580 <file>: Add comment.
9581 (lnp_state_machine::current_file): New method.
9582 (dwarf_record_line): Simplify using the new methods.
9583 (init_lnp_state_machine): Initialize the "the_line_header" field.
9584 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
9585 Simplify using the new methods.
9586
9587 2017-03-27 Pedro Alves <palves@redhat.com>
9588
9589 * cp-name-parser.y (make_empty): Delete.
9590 (demangler_special, nested_name, ptr_operator, array_indicator)
9591 (direct_declarator, declarator_1): Use fill_comp instead of
9592 make_empty.
9593
9594 2017-03-27 Pedro Alves <palves@redhat.com>
9595
9596 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
9597 to ATTRIBUTE_PRINTF.
9598 * solib-target.c (library_list_start_list): Print "string" not
9599 "version".
9600 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
9601 gdb_xml_error call.
9602
9603 2017-03-27 Pedro Alves <palves@redhat.com>
9604
9605 * dwarf2read.c (struct file_and_directory): New.
9606 (dwarf2_get_dwz_file): Adjust to use std::string.
9607 (dw2_get_file_names_reader): Adjust to use file_and_directory.
9608 (find_file_and_directory): Adjust to return a file_and_directory
9609 object.
9610 (read_file_scope): Adjust to use file_and_directory. Remove
9611 make_cleanup/do_cleanups calls.
9612 (open_and_init_dwp_file): Adjust to use std::string. Remove
9613 make_cleanup/do_cleanups calls.
9614 * python/python.c (do_start_initialization): Adjust to ldirname
9615 returning a std::string.
9616 * utils.c (ldirname): Now returns a std::string.
9617 * utils.h (ldirname): Change return type to std::string.
9618 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
9619 returning a std::string.
9620 * xml-tdesc.c (file_read_description_xml): Likewise.
9621
9622 2017-03-24 Alan Hayward <alan.hayward@arm.com>
9623
9624 * regcache.c (regcache_debug_print_register): New function.
9625 * regcache.h (regcache_debug_print_register): New declaration.
9626 * target.c (debug_print_register): Remove.
9627 (target_fetch_registers): Call regcache_debug_print_register.
9628 (target_store_registers): Likewise.
9629
9630 2017-03-24 Pádraig Brady <pbrady@fb.com>
9631
9632 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
9633 reference beyond the 'lh->include_dirs' array before accessing to
9634 it.
9635 (psymtab_include_file_name): Likewise.
9636 (dwarf_decode_lines_1): Likewise.
9637 (dwarf_decode_lines): Likewise.
9638 (file_file_name): Likewise.
9639
9640 2017-03-23 Simon Marchi <simon.marchi@ericsson.com>
9641
9642 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
9643 inferior_ptid.
9644 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
9645 ps_lsetfpregs): Likewise.
9646 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
9647 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
9648 ps_lsetfpregs): Likewise.
9649 * target.c (target_fetch_registers, target_store_registers):
9650 Remove asserts.
9651
9652 2017-03-23 Alan Hayward <alan.hayward@arm.com>
9653
9654 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
9655
9656 2017-03-23 Yao Qi <yao.qi@linaro.org>
9657
9658 * aarch64-tdep.c (aarch64_process_record_test): Declare.
9659 (_initialize_aarch64_tdep): Register it.
9660 (aarch64_record_load_store): Handle PRFM instruction.
9661 (aarch64_process_record_test): New function.
9662
9663 2017-03-23 Yao Qi <yao.qi@linaro.org>
9664
9665 * aarch64-tdep.c (aarch64_record_load_store): Fix code
9666 indentation.
9667
9668 2017-03-23 Yao Qi <yao.qi@linaro.org>
9669
9670 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
9671
9672 2017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
9673
9674 python/python.c (do_start_initialization): Fix memory leak.
9675
9676 2017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
9677
9678 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
9679 using get_ptrace_pid.
9680 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
9681 inferior_ptid.
9682 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
9683 inferior_ptid instead of pid.
9684
9685 2017-03-22 Yao Qi <yao.qi@linaro.org>
9686
9687 * aarch64-tdep.c: Wrap locally used classes in anonymous
9688 namespace.
9689 * arm-tdep.c: Likewise.
9690 * linespec.c: Likewise.
9691 * ui-out.c: Likewise.
9692
9693 2017-03-22 Jonah Graham <jonah@kichwacoders.com>
9694
9695 PR gdb/19637
9696 * python/lib/gdb/printer/bound_registers.py: Import sys.
9697
9698 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
9699
9700 * windows-nat.c (do_windows_fetch_inferior_registers): Add
9701 windows_thread_info parameter and use it instead of
9702 current_thread.
9703 (windows_fetch_inferior_registers): Don't set current_thread,
9704 pass the thread to do_windows_fetch_inferior_registers. Use
9705 ptid from regcache instead of inferior_ptid.
9706 (do_windows_store_inferior_registers): Add windows_thread_info
9707 parameter and use it instead of current_thread.
9708 (windows_store_inferior_registers): Don't set current_thread,
9709 pass the thread to do_windows_store_inferior_registers. Use
9710 ptid from regcache instead of inferior_ptid.
9711
9712 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
9713
9714 * ser-mingw.c (ser_windows_raw): Remove reference to
9715 struct serial::current_timeout.
9716
9717 2017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
9718
9719 PR tdep/20928
9720 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
9721 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
9722 (sparc64_fsr_type): Fix %fsr decoding.
9723
9724 2017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
9725
9726 * python/py-record-btrace.c (btpy_insn_data): Change return type
9727 for Python 2.
9728
9729 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
9730
9731 * spu-linux-nat.c (spu_fetch_inferior_registers,
9732 spu_store_inferior_registers): Use ptid from regcache, set and
9733 restore inferior_ptid.
9734 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
9735 Likewise.
9736
9737 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
9738
9739 * i386-linux-nat.c (fetch_register, store_register,
9740 i386_linux_fetch_inferior_registers,
9741 i386_linux_store_inferior_registers): Use ptid from regcache.
9742 * ia64-linux-nat.c (ia64_linux_fetch_register,
9743 ia64_linux_store_register): Likewise.
9744 * inf-ptrace.c (inf_ptrace_fetch_register,
9745 inf_ptrace_store_register): Likewise.
9746 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
9747 m32r_linux_store_inferior_registers): Likewise.
9748 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
9749 m68kbsd_store_inferior_registers): Likewise.
9750 * m68k-linux-nat.c (fetch_register, store_register,
9751 m68k_linux_fetch_inferior_registers,
9752 m68k_linux_store_inferior_registers): Likewise.
9753 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
9754 m88kbsd_store_inferior_registers): Likewise.
9755 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
9756 mips_fbsd_store_inferior_registers): Likewise.
9757 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
9758 mips64_linux_regsets_store_registers): Likewise.
9759 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
9760 mipsnbsd_store_inferior_registers): Likewise.
9761 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
9762 mips64obsd_store_inferior_registers): Likewise.
9763 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
9764 Likewise.
9765 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
9766 ppcfbsd_store_inferior_registers): Likewise.
9767 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
9768 ppc_linux_store_inferior_registers): Likewise.
9769 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
9770 ppcnbsd_store_inferior_registers): Likewise.
9771 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
9772 ppcobsd_store_registers): Likewise.
9773 * procfs.c (procfs_fetch_registers, procfs_store_registers):
9774 Likewise.
9775 * ravenscar-thread.c (ravenscar_fetch_registers,
9776 ravenscar_store_registers, ravenscar_prepare_to_store):
9777 Likewise.
9778 * record-btrace.c (record_btrace_fetch_registers,
9779 record_btrace_store_registers, record_btrace_prepare_to_store):
9780 Likewise.
9781 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
9782 Lookup inferior using ptid from regcache, instead of
9783 current_inferior.
9784 * remote.c (remote_fetch_registers, remote_store_registers): Use
9785 ptid from regcache.
9786 * rs6000-nat.c (fetch_register, store_register): Likewise.
9787 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
9788 s390_linux_store_inferior_registers): Likewise.
9789 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
9790 shnbsd_store_inferior_registers): Likewise.
9791 * sol-thread.c (sol_thread_fetch_registers,
9792 sol_thread_store_registers): Likewise.
9793 * sparc-nat.c (sparc_fetch_inferior_registers,
9794 sparc_store_inferior_registers): Likewise.
9795 * tilegx-linux-nat.c (fetch_inferior_registers,
9796 store_inferior_registers): Likewise.
9797 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
9798 vaxbsd_store_inferior_registers): Likewise.
9799 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
9800 store_xtregs): Likewise.
9801
9802 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9803
9804 PR gdb/14441
9805 * NEWS: Mention support for rvalue references in GDB and python.
9806 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
9807 supports both lvalue and rvalue references.
9808
9809 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9810
9811 PR gdb/14441
9812 * gdbtypes.c (rank_one_type): Implement overloading
9813 resolution rules regarding rvalue references.
9814
9815 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9816
9817 PR gdb/14441
9818 * aarch64-tdep.c (aarch64_type_align)
9819 (aarch64_extract_return_value, aarch64_store_return_value): Change
9820 lvalue reference type checks to general reference type checks.
9821 * amd64-tdep.c (amd64_classify): Likewise.
9822 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
9823 Likewise.
9824 * arm-tdep.c (arm_type_align, arm_extract_return_value)
9825 (arm_store_return_value): Likewise.
9826 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
9827 * c-typeprint.c (c_print_type): Likewise.
9828 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
9829 (cplus_number_of_children, cplus_describe_child): Likewise.
9830 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
9831 * completer.c (expression_completer): Likewise.
9832 * cp-support.c (make_symbol_overload_list_adl_namespace):
9833 Likewise.
9834 * darwin-nat-info.c (info_mach_region_command): Likewise.
9835 * dwarf2loc.c (entry_data_value_coerce_ref)
9836 (value_of_dwarf_reg_entry): Likewise.
9837 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
9838 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
9839 Likewise.
9840 * findvar.c (extract_typed_address, store_typed_address):
9841 Likewise.
9842 * gdbtypes.c (rank_one_type): Likewise.
9843 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
9844 * infcall.c (value_arg_coerce): Likewise.
9845 * language.c (pointer_type): Likewise.
9846 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
9847 Likewise.
9848 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
9849 * mn10300-tdep.c (mn10300_type_align): Likewise.
9850 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
9851 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
9852 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
9853 Likewise.
9854 * printcmd.c (print_formatted, x_command): Likewise.
9855 * python/py-type.c (typy_get_composite, typy_template_argument):
9856 Likewise.
9857 * python/py-value.c (valpy_referenced_value)
9858 (valpy_get_dynamic_type, value_has_field): Likewise.
9859 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
9860 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
9861 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
9862 * spu-tdep.c (spu_scalar_value_p): Likewise.
9863 * symtab.c (lookup_symbol_aux): Likewise.
9864 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
9865 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
9866 Likewise.
9867 * valops.c (value_cast_pointers, value_cast)
9868 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
9869 (value_struct_elt, value_struct_elt_bitpos)
9870 (value_find_oload_method_list, find_overload_match)
9871 (value_rtti_indirect_type): Likewise.
9872 * valprint.c (val_print_scalar_type_p, generic_val_print):
9873 Likewise.
9874 * value.c (value_actual_type, value_as_address, unpack_long)
9875 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
9876 (coerce_ref): Likewise.
9877 * varobj.c (varobj_get_value_type): Likewise.
9878
9879 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9880
9881 PR gdb/14441
9882 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
9883 table of constants.
9884 * python/lib/gdb/command/explore.py: Support exploring values
9885 of rvalue reference types.
9886 * python/lib/gdb/types.py: Implement get_basic_type() for
9887 rvalue reference types.
9888 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
9889 constant.
9890 * python/py-value.c (valpy_getitem): Add an rvalue reference
9891 check.
9892 (valpy_reference_value): Add new parameter "refcode".
9893 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
9894 New wrappers for valpy_reference_value().
9895 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
9896 (gdbpy_invoke_xmethod): Likewise.
9897
9898 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9899
9900 PR gdb/14441
9901 * dwarf2read.c (process_die, read_type_die_1): Handle the
9902 DW_TAG_rvalue_reference_type DIE.
9903 (read_tag_reference_type): Add new parameter "refcode".
9904
9905 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9906
9907 PR gdb/14441
9908 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
9909 (c_type_print_modifier, c_type_print_varspec_suffix)
9910 (c_type_print_base): Support printing rvalue reference types.
9911 * c-valprint.c (c_val_print, c_value_print): Support printing
9912 rvalue reference values.
9913
9914 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9915
9916 PR gdb/14441
9917 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
9918 typename.
9919 * cp-support.c (replace_typedefs): Handle
9920 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
9921 * python/py-type.c (typy_lookup_type): Likewise.
9922
9923 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9924
9925 PR gdb/14441
9926 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
9927 * parse.c (insert_type): Change assert statement.
9928 (follow_types): Handle rvalue reference types.
9929 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
9930 constant.
9931
9932 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9933
9934 PR gdb/14441
9935 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
9936 value_ref() interface.
9937 * c-valprint.c (c_value_print): Likewise.
9938 * infcall.c (value_arg_coerce): Likewise.
9939 * python/py-value.c (valpy_reference_value): Likewise.
9940 * valops.c (value_cast, value_reinterpret_cast)
9941 (value_dynamic_cast, typecmp): Likewise.
9942 (value_ref): Parameterize by kind of return value reference type.
9943 * value.h (value_ref): Add new parameter "refcode".
9944
9945 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9946
9947 PR gdb/14441
9948 * dwarf2read.c (read_tag_reference_type): Use
9949 lookup_lvalue_reference_type() instead of lookup_reference_type().
9950 * eval.c (evaluate_subexp_standard): Likewise.
9951 * f-exp.y: Likewise.
9952 * gdbtypes.c (make_reference_type, lookup_reference_type):
9953 Generalize with rvalue reference types.
9954 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
9955 convenience wrappers for lookup_reference_type().
9956 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
9957 reference kind parameter.
9958 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
9959 wrappers for lookup_reference_type().
9960 * guile/scm-type.c (gdbscm_type_reference): Use
9961 lookup_lvalue_reference_type() instead of lookup_reference_type().
9962 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
9963 * parse.c (follow_types): Likewise.
9964 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
9965 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
9966 Likewise.
9967 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
9968 (gdbpy_invoke_xmethod): Likewise.
9969 * stabsread.c: Provide extra argument to make_reference_type()
9970 call.
9971 * valops.c (value_ref, value_rtti_indirect_type): Use
9972 lookup_lvalue_reference_type() instead of lookup_reference_type().
9973
9974 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
9975
9976 PR gdb/14441
9977 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
9978 (TYPE_IS_REFERENCE): New macro.
9979 (struct type): Add rvalue_reference_type field.
9980 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
9981
9982 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
9983
9984 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
9985 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
9986 New function definition.
9987 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
9988 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
9989 New function declaration.
9990 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
9991 * mi/mi-interp.h: New file.
9992 * solib.c (info_sharedlibrary_command): Replace for loop with
9993 ALL_SO_LIBS macro
9994 * solib.h (update_solib_list): New function declaration.
9995 (so_list_head): Move macro.
9996 * solist.h (ALL_SO_LIBS): New macro.
9997
9998 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
9999
10000 * infcmd.c (post_create_inferior): Remove unused argument in
10001 call to solib_add.
10002 * remote.c (remote_start_remote): Likewise.
10003 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
10004 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
10005 (enable_break): Likewise.
10006 * solib.c (update_solib_list): Remove unused target argument
10007 and its documentation.
10008 (solib_add): Remove unused target argument. Remove unused
10009 argument in call to update_solib_list.
10010 (info_sharedlibrary_command): Remove unused argument in call
10011 to update_solib_list.
10012 (sharedlibrary_command): Remove unused argument in call to
10013 solib_add.
10014 (handle_solib_event): Likewise.
10015 (reload_shared_libraries): Likewise.
10016 * solib.h (solib_add): Remove unused target argument.
10017
10018 2017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
10019
10020 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
10021 (s390_displaced_step_fixup): Cover relative branches with the
10022 default fixup handling. This fixes lack of support for some
10023 relative branch instructions.
10024
10025 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10026
10027 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
10028 ptid from regcache.
10029
10030 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10031
10032 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
10033 i386_darwin_store_inferior_registers): Use ptid from regcache.
10034
10035 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10036
10037 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
10038 i386bsd_store_inferior_registers): Use ptid from regcache.
10039
10040 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10041
10042 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
10043 hppaobsd_store_registers): Use ptid from regcache.
10044
10045 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10046
10047 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
10048 hppanbsd_store_registers): Use ptid from regcache.
10049
10050 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10051
10052 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
10053 from regcache. Use get_ptrace_pid.
10054
10055 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10056
10057 * corelow.c (get_core_register_section): Use ptid from regcache,
10058 update doc.
10059
10060 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10061
10062 * bsd-uthread.c (bsd_uthread_fetch_registers,
10063 bsd_uthread_store_registers): Use ptid from regcache, set and
10064 restore inferior_ptid.
10065
10066 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10067
10068 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
10069 fetch_fp_regs, store_register, store_regs, store_fp_register,
10070 store_fp_regs): Use ptid from regcache.
10071
10072 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10073
10074 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
10075 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
10076 store_vfp_regs): Use ptid from regcache.
10077
10078 2017-03-17 Pedro Alves <palves@redhat.com>
10079
10080 PR remote/21188
10081 * ser-base.c (ser_base_wait_for): Add comment.
10082 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
10083 version.
10084 * ser-unix.c (hardwire_raw): Remove reference to
10085 scb->current_timeout.
10086 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
10087 (hardwire_ops): Install ser_base_readchar instead of
10088 hardwire_readchar.
10089 * serial.h (struct serial) <current_timeout, timeout_remaining>:
10090 Remove fields.
10091
10092 2017-03-17 Jonah Graham <jonah@kichwacoders.com>
10093
10094 PR gdb/19637
10095 * python/lib/gdb/printer/bound_registers.py: Add support for
10096 Python 3.
10097
10098 2017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
10099
10100 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
10101 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
10102 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
10103 byte_offset to subobj_byte_offset. Fix the handling of
10104 DWARF_VALUE_STACK on big-endian targets when coming via an
10105 implicit pointer.
10106 (dwarf2_evaluate_loc_desc): Adjust call to
10107 dwarf2_evaluate_loc_desc_full.
10108 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
10109 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
10110
10111 2017-03-16 Yao Qi <yao.qi@linaro.org>
10112
10113 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
10114 and REVSH instructions.
10115
10116 2017-03-16 Yao Qi <yao.qi@linaro.org>
10117
10118 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
10119 (arm_record_test): Declare.
10120 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
10121 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
10122 align with the manual.
10123 (thumb_record_misc): Adjust the code order to align with the
10124 manual.
10125 (thumb2_record_decode_insn_handler): Fix instruction matching.
10126 (instruction_reader_thumb): New class.
10127 (arm_record_test): New function.
10128
10129 2017-03-16 Yao Qi <yao.qi@linaro.org>
10130
10131 * arm-tdep.c (abstract_memory_reader): New class.
10132 (instruction_reader): New class.
10133 (extract_arm_insn): Add argument 'reader'. Callers updated.
10134 (decode_insn): Likewise.
10135
10136 2017-03-16 Doug Evans <dje@google.com>
10137
10138 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
10139 member. Change type of TYPE member to SCM. All uses updated.
10140 (lsscm_make_lazy_string_smob): Add assert.
10141 (lsscm_make_lazy_string): Flag bad length values.
10142 (lsscm_elt_type): New function.
10143 (gdbscm_lazy_string_to_value): Rewrite to use
10144 lsscm_safe_lazy_string_to_value.
10145 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
10146 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
10147 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
10148 in incoming type.
10149 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
10150 * guile/scm-type.c (tyscm_scm_to_type): New function.
10151
10152 2017-03-15 Doug Evans <dje@google.com>
10153
10154 PR python/17728, python/18439, python/18779
10155 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
10156 member. Change type of TYPE member to PyObject *. All uses updated.
10157 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
10158 (gdbpy_create_lazy_string_object): Flag bad length values.
10159 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
10160 Handle typedefs in incoming type.
10161 (stpy_lazy_string_elt_type): New function.
10162 (gdbpy_extract_lazy_string): Call it.
10163 * python/py-value.c (valpy_lazy_string): Flag bad length values.
10164 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
10165 typedefs in incoming type.
10166
10167 2017-03-16 Doug Evans <dje@google.com>
10168
10169 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
10170 * guile/scm-type.c (tyscm_scm_to_type): New function.
10171
10172 2017-03-16 Jiong Wang <jiong.wang@arm.com>
10173
10174 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
10175 "ULONGEST" for "skip".
10176
10177 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
10178
10179 PR gdb/21220
10180 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
10181 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
10182 (inf_ptrace_peek_poke): ...here. New function. Now also loop
10183 over ptrace peek/poke until end of buffer or error.
10184
10185 2017-03-14 Simon Marchi <simon.marchi@ericsson.com>
10186
10187 * parse.c (length_of_subexp): Make static.
10188 * parser-defs.h (length_of_subexp): Remove.
10189
10190 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
10191
10192 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
10193 as well.
10194
10195 2017-03-14 Pedro Alves <palves@redhat.com>
10196
10197 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
10198 (main): Use std::unique_ptr. Remove calls to
10199 cp_demangled_name_parse_free.
10200
10201 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10202
10203 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
10204 alphabsd_store_inferior_registers): Use regcache->ptid instead
10205 of inferior_ptid.
10206
10207 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10208
10209 * aix-thread.c (aix_thread_fetch_registers,
10210 aix_thread_store_registers): Use regcache->ptid instead of
10211 inferior_ptid.
10212
10213 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10214
10215 * aarch64-linux-nat.c (fetch_gregs_from_thread,
10216 store_gregs_to_thread, fetch_fpregs_from_thread,
10217 store_fpregs_to_thread): Use regcache->ptid instead of
10218 inferior_ptid.
10219
10220 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10221
10222 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
10223 amd64_linux_fetch_inferior_registers): Use regcache->ptid
10224 instead of inferior_ptid.
10225
10226 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10227
10228 * target.c (target_fetch_registers, target_store_registers): Add
10229 assert.
10230
10231 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10232
10233 * regcache.h (regcache_get_ptid): New function.
10234 * regcache.c (regcache_get_ptid): New function.
10235
10236 2017-03-13 Mark Wielaard <mark@klomp.org>
10237
10238 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
10239
10240 2017-03-10 Keith Seitz <keiths@redhat.com>
10241
10242 PR c++/8218
10243 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
10244
10245 2017-03-08 Pedro Alves <palves@redhat.com>
10246
10247 PR gdb/18360
10248 * infrun.c (start_step_over, do_target_resume, resume)
10249 (restart_threads): Assert we're not resuming a thread that is
10250 meant to be stopped.
10251 (infrun_thread_stop_requested_callback): Delete.
10252 (infrun_thread_stop_requested): If the thread is internally
10253 stopped, queue a pending stop event and clear the thread's
10254 inline-frame state.
10255 (handle_stop_requested): New function.
10256 (handle_syscall_event, handle_inferior_event_1): Use
10257 handle_stop_requested.
10258 (handle_stop_requested): New function.
10259 (handle_signal_stop): Set the thread's stop_signal here instead of
10260 at caller.
10261 (finish_step_over): Clear step over info unconditionally.
10262 (handle_signal_stop): If the user had interrupted the event
10263 thread, consider the stop a random signal.
10264 (handle_signal_stop) <signal arrived while stepping over
10265 breakpoint>: Don't restart threads here.
10266 (stop_waiting): Don't clear step-over info here.
10267
10268 2017-03-08 Pedro Alves <palves@redhat.com>
10269
10270 PR 21206
10271 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
10272 goes to argument 2, not 1.
10273
10274 2017-03-08 Pedro Alves <palves@redhat.com>
10275
10276 PR cli/21218
10277 * top.c (gdb_readline_wrapper): Avoid passing NULL to
10278 display_gdb_prompt.
10279 (command_line_input): Add comment.
10280
10281 2017-03-08 Pedro Alves <palves@redhat.com>
10282
10283 PR tui/21216
10284 * tui/tui-file.c (tui_file::write): New.
10285 * tui/tui-file.h (tui_file): Override "write".
10286 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
10287 factored out from ...
10288 (tui_puts): ... here.
10289 (tui_putc): Use them.
10290 (tui_write): New function.
10291 * tui/tui-io.h (tui_write): Declare.
10292
10293 2017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
10294
10295 * Makefile.in (SFILES): Replace "environ.c" with
10296 "common/environ.c".
10297 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
10298 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
10299 to...
10300 * common/environ.c: ... here.
10301 * environ.h: Moved to...
10302 * common/environ.h: ... here.
10303
10304 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
10305
10306 * gdbarch.sh (pstring_ptr): New static function.
10307 (gdbarch_disassembler_options): Use it.
10308 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
10309 not valid_disassembler_option->name.
10310 * gdbarch.c: Regenerate.
10311
10312 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
10313
10314 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
10315
10316 2017-03-07 Pedro Alves <palves@redhat.com>
10317
10318 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
10319
10320 2017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
10321
10322 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
10323 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
10324 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
10325 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
10326
10327 2017-03-06 Simon Marchi <simon.marchi@ericsson.com>
10328
10329 * xtensa-linux-nat.c (fetch_gregs): Remove const.
10330
10331 2017-03-03 Simon Marchi <simon.marchi@ericsson.com>
10332
10333 * remote.c (remote_add_target_side_commands): Use range-based
10334 for loop.
10335
10336 2017-03-03 Yao Qi <yao.qi@linaro.org>
10337
10338 PR gdb/21165
10339 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
10340 value is lazy.
10341 * valprint.c (common_val_print): Likewise.
10342
10343 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
10344
10345 * NEWS: Mention new set/show disassembler-options commands.
10346 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
10347 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
10348 (prospective_options): New static variable.
10349 (gdb_disassembler::gdb_disassembler): Initialize
10350 m_di.disassembler_options.
10351 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
10352 (get_disassembler_options): New function.
10353 (set_disassembler_options): Likewise.
10354 (set_disassembler_options_sfunc): Likewise.
10355 (show_disassembler_options_sfunc): Likewise.
10356 (disassembler_options_completer): Likewise.
10357 (_initialize_disasm): Likewise.
10358 * disasm.h (get_disassembler_options): New prototype.
10359 (set_disassembler_options): Likewise.
10360 * gdbarch.sh (gdbarch_disassembler_options): New variable.
10361 (gdbarch_verify_disassembler_options): Likewise.
10362 * gdbarch.c: Regenerate.
10363 * gdbarch.h: Likewise.
10364 * arm-tdep.c (num_disassembly_options): Delete.
10365 (set_disassembly_style): Likewise.
10366 (arm_disassembler_options): New static variable.
10367 (set_disassembly_style_sfunc): Convert short style name into long
10368 option name. Call set_disassembler_options.
10369 (show_disassembly_style_sfunc): New function.
10370 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
10371 set_gdbarch_verify_disassembler_options.
10372 (_initialize_arm_tdep): Delete regnames variable and update callers.
10373 (arm_disassembler_options): Initialize.
10374 (disasm_options): New variable.
10375 (num_disassembly_options): Rename from this...
10376 (num_disassembly_styles): ...to this. Compute by scanning through
10377 disasm_options.
10378 (valid_disassembly_styles): Initialize using disasm_options.
10379 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
10380 set_arm_regname_option.
10381 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
10382 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
10383 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
10384 set_gdbarch_verify_disassembler_options.
10385 * s390-tdep.c (s390_disassembler_options): New static variable.
10386 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
10387 set_gdbarch_verify_disassembler_options.
10388
10389 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
10390
10391 * remote.c (remote_add_target_side_condition): Remove "struct"
10392 keyword from range-based for loop.
10393
10394 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
10395
10396 * remote.c (remote_add_target_side_condition): Use range-based
10397 for loop. Update comment.
10398
10399 2017-02-27 Yao Qi <yao.qi@linaro.org>
10400
10401 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
10402
10403 2017-02-26 Alan Hayward <alan.hayward@arm.com>
10404
10405 * regcache.c (regcache_raw_update): New function.
10406 (regcache_raw_read): Move code to regcache_raw_update.
10407 * regcache.h (regcache_raw_update): New declaration.
10408 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
10409
10410 2017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10411
10412 * dwarf2read.c (create_debug_type_hash_table): Initialize
10413 header.signature and header.type_offset_in_tu.
10414
10415 2017-02-24 Pedro Alves <palves@redhat.com>
10416
10417 * symtab.c (make_file_symbol_completion_list_1): Use
10418 add_symtab_completions.
10419
10420 2017-02-24 Alan Hayward <alan.hayward@arm.com>
10421
10422 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
10423
10424 2017-02-24 Alan Hayward <alan.hayward@arm.com>
10425
10426 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
10427 I386_MAX_REGISTER_SIZE.
10428 (i386_pseudo_register_write): Likewise.
10429 (i386_process_record): Likewise.
10430 * i387-tdep.c (i387_supply_xsave): Likewise.
10431 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
10432 (store_register): Likewise.
10433
10434 2017-02-23 Pedro Alves <palves@redhat.com>
10435
10436 * ada-lang.c: Include "common/function-view.h".
10437 (ada_iterate_over_symbols): Adjust to use function_view as
10438 callback type.
10439 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
10440 (ada_make_symbol_completion_list): Use a lambda.
10441 (ada_exc_search_name_matches): Delete.
10442 (name_matches_regex): New.
10443 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
10444 * compile/compile-c-support.c: Include "common/function-view.h".
10445 (print_one_macro): Change prototype to accept a ui_file pointer.
10446 (write_macro_definitions): Use a lambda.
10447 * dwarf2read.c: Include "common/function-view.h".
10448 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
10449 (dw2_expand_symtabs_matching): Adjust to use function_view as
10450 callback type.
10451 * language.h: Include "common/function-view.h".
10452 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
10453 function_view as callback type.
10454 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
10455 * linespec.c: Include "common/function-view.h".
10456 (collect_info::add_symbol): New method.
10457 (struct symbol_and_data_callback, iterate_inline_only, struct
10458 symbol_matcher_data, iterate_name_matcher): Delete.
10459 (iterate_over_all_matching_symtabs): Adjust to use function_view
10460 as callback type and lambdas.
10461 (iterate_over_file_blocks): Adjust to use function_view as
10462 callback type.
10463 (decode_compound_collector): Now a class with private fields.
10464 (decode_compound_collector::release_symbols): New method.
10465 (collect_one_symbol): Rename to...
10466 (decode_compound_collector::operator()): ... this and adjust.
10467 (lookup_prefix_sym): decode_compound_collector construction bits
10468 move to decode_compound_collector ctor. Pass the
10469 decode_compound_collector object directly as callback. Remove
10470 cleanups and use decode_compound_collector::release_symbols
10471 instead.
10472 (symtab_collector): Now a class with private fields.
10473 (symtab_collector::release_symtabs): New method.
10474 (add_symtabs_to_list): Rename to...
10475 (symtab_collector::operator()): ... this and adjust.
10476 (collect_symtabs_from_filename): symtab_collector construction
10477 bits move to symtab_collector ctor. Pass the symtab_collector
10478 object directly as callback. Remove cleanups and use
10479 symtab_collector::release_symtabs instead.
10480 (collect_symbols): Delete.
10481 (add_matching_symbols_to_info): Use lambdas.
10482 * macrocmd.c (print_macro_callback): Delete.
10483 (info_macro_command): Use a lambda.
10484 (info_macros_command): Pass print_macro_definition as callable
10485 directly.
10486 (print_one_macro): Remove 'ignore' parameter.
10487 (macro_list_command): Adjust.
10488 * macrotab.c (macro_for_each_data::fn): Now a function_view.
10489 (macro_for_each_data::user_data): Delete field.
10490 (foreach_macro): Adjust to call the function_view.
10491 (macro_for_each): Adjust to use function_view as callback type.
10492 (foreach_macro_in_scope): Adjust to call the function_view.
10493 (macro_for_each_in_scope): Adjust to use function_view as callback
10494 type.
10495 * macrotab.h: Include "common/function-view.h".
10496 (macro_callback_fn): Declare a prototype instead of a pointer.
10497 Remove "user_data" parameter.
10498 (macro_for_each, macro_for_each_in_scope): Adjust to use
10499 function_view as callback type.
10500 * psymtab.c (partial_map_expand_apply)
10501 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
10502 Adjust to use function_view as callback type and to return bool.
10503 (psym_expand_symtabs_matching): Adjust to use function_view as
10504 callback types.
10505 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
10506 to use function_view as callback type and to return bool.
10507 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
10508 callback types.
10509 * symfile.c (expand_symtabs_matching): Adjust to use function_view
10510 as callback types.
10511 * symfile.h: Include "common/function-view.h".
10512 (expand_symtabs_file_matcher_ftype)
10513 (expand_symtabs_symbol_matcher_ftype)
10514 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
10515 return bool.
10516 (quick_symbol_functions::map_symtabs_matching_filename)
10517 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
10518 function_view as callback type and return bool.
10519 (expand_symtabs_matching): Adjust to use function_view as callback
10520 type.
10521 (maintenance_expand_name_matcher)
10522 (maintenance_expand_file_matcher): Delete.
10523 (maintenance_expand_symtabs): Use lambdas.
10524 * symtab.c (iterate_over_some_symtabs): Adjust to use
10525 function_view as callback types and return bool.
10526 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
10527 of a cleanup.
10528 (lookup_symtab_callback): Delete.
10529 (lookup_symtab): Use a lambda.
10530 (iterate_over_symbols): Adjust to use function_view as callback
10531 type.
10532 (struct search_symbols_data, search_symbols_file_matches)
10533 (search_symbols_name_matches): Delete.
10534 (search_symbols): Use a pair of lambdas.
10535 (struct add_name_data, add_macro_name, symbol_completion_matcher)
10536 (symtab_expansion_callback): Delete.
10537 (default_make_symbol_completion_list_break_on_1): Use lambdas.
10538 * symtab.h: Include "common/function-view.h".
10539 (iterate_over_some_symtabs): Adjust to use function_view as
10540 callback type and return bool.
10541 (iterate_over_symtabs): Adjust to use function_view as callback
10542 type.
10543 (symbol_found_callback_ftype): Remove 'data' parameter and return
10544 bool.
10545 (iterate_over_symbols): Adjust to use function_view as callback
10546 type.
10547
10548 2017-02-23 Pedro Alves <palves@redhat.com>
10549
10550 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
10551 (%.o) <unittests/%.c>: New pattern.
10552 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
10553 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
10554 * common/function-view.h: New file.
10555 * unittests/function-view-selftests.c: New file.
10556 * configure: Regenerate.
10557
10558 2017-02-23 Simon Marchi <simon.marchi@ericsson.com>
10559
10560 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
10561 inferior_ptid.
10562 * go32-nat.c (go32_thread_alive): Likewise.
10563
10564 2017-02-23 Yao Qi <yao.qi@linaro.org>
10565
10566 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
10567 delete.
10568
10569 2017-02-23 Yao Qi <yao.qi@linaro.org>
10570
10571 * varobj.c (varobj_clear_saved_item): Use delete instead of
10572 xfree.
10573 (update_dynamic_varobj_children): Likewise.
10574
10575 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10576
10577 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
10578
10579 2017-02-21 Simon Marchi <simon.marchi@ericsson.com>
10580
10581 * common/enum-flags.h (enum_flags::enum_flags): Initialize
10582 m_enum_value to 0 in default constructor.
10583
10584 2017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
10585
10586 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
10587 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
10588 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
10589 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
10590 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
10591 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
10592 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
10593 IS_STORE_CONDITIONAL_INSN.
10594
10595 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10596
10597 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
10598
10599 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10600
10601 * NEWS (Changes since GDB 7.12): Add DWARF-5.
10602
10603 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10604
10605 * dwarf2read.c (skip_one_die, read_attribute_value)
10606 (dwarf2_const_value_attr, dump_die_shallow)
10607 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
10608 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
10609
10610 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10611
10612 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
10613 (dwarf_parse_macro_header): Accept DWARF version 5.
10614 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
10615
10616 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10617
10618 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
10619 DW_AT_GNU_*.
10620 * common/common-exceptions.h (enum errors): Likewise.
10621 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
10622 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
10623 (dwarf_expr_context::execute_stack_op): Likewise.
10624 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
10625 Likewise.
10626 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
10627 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
10628 (show_entry_values_debug, call_site_to_target_addr)
10629 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
10630 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
10631 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
10632 (value_of_dwarf_block_entry, indirect_pieced_value)
10633 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
10634 (disassemble_dwarf_expression): Likewise.
10635 * dwarf2read.c (process_die, inherit_abstract_dies)
10636 (read_call_site_scope): Likewise.
10637 * gdbtypes.h (struct func_type, struct call_site_parameter)
10638 (struct call_site): Likewise.
10639 * stack.c (read_frame_arg): Likewise.
10640 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
10641
10642 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10643
10644 * defs.h (read_unsigned_leb128): New declaration.
10645 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
10646 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
10647 (dwarf2_find_location_expression): Call also
10648 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
10649 * dwarf2loc.h (dwarf2_version): New declaration.
10650 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
10651 rnglists.
10652 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
10653 .debug_rnglists.
10654 (struct dwop_section_names): Add loclists_dwo.
10655 (dwop_section_names): Add .debug_loclists.dwo.
10656 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
10657 (struct dwarf2_per_cu_data): Add dwarf_version.
10658 (struct dwo_sections): Add loclists.
10659 (struct attr_abbrev): Add implicit_const.
10660 (read_indirect_line_string): New declaration.
10661 (read_unsigned_leb128): Delete declaration.
10662 (rcuh_kind): New definition.
10663 (read_and_check_comp_unit_head): Change parameter
10664 is_debug_types_section to section_kind.
10665 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
10666 (read_comp_unit_head): Change parameter abfd to section, add parameter
10667 section_kind. Handle DWARF-5.
10668 (error_check_comp_unit_head): Accept also DWARF version 5.
10669 (read_and_check_comp_unit_head): Change parameter
10670 is_debug_types_section to section_kind.
10671 (read_and_check_type_unit_head): Delete function.
10672 (read_abbrev_offset): Handle DWARF-5.
10673 (create_debug_type_hash_table): Add parameter section_kind. Process
10674 only DW_UT_type. Use signature and type_offset_in_tu from struct
10675 comp_unit_head.
10676 (create_debug_types_hash_table): Update create_debug_type_hash_table
10677 caller.
10678 (create_all_type_units): Call create_debug_type_hash_table.
10679 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
10680 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
10681 caller.
10682 (skip_one_die): Handle DW_FORM_implicit_const.
10683 (dwarf2_rnglists_process): New function.
10684 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
10685 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
10686 (read_attribute_value): Handle DW_FORM_implicit_const,
10687 DW_FORM_line_strp.
10688 (read_attribute): Handle DW_FORM_implicit_const.
10689 (read_indirect_string_at_offset_from): New function from
10690 read_indirect_string_at_offset.
10691 (read_indirect_string_at_offset): Call
10692 read_indirect_string_at_offset_from.
10693 (read_indirect_line_string_at_offset): New function.
10694 (read_indirect_string): New function comment.
10695 (read_indirect_line_string): New function.
10696 (read_unsigned_leb128): Make it global.
10697 (dwarf2_string_attr): Handle DWARF-5.
10698 (add_include_dir_stub, read_formatted_entries): New functions.
10699 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
10700 Handle DWARF-5.
10701 (per_cu_header_read_in): Update read_comp_unit_head caller.
10702 (dwarf2_version): New function.
10703 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
10704 rnglists.
10705 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
10706 fields.
10707
10708 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10709
10710 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
10711
10712 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10713
10714 * dwarf2read.c (dwarf2_ranges_process): New function from
10715 dwarf2_ranges_read.
10716 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
10717 dwarf2_ranges_process.
10718
10719 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10720
10721 * dwarf2read.c (create_debug_type_hash_table): New function from
10722 create_debug_types_hash_table.
10723 (create_debug_types_hash_table): Call create_debug_type_hash_table.
10724 (create_all_type_units, open_and_init_dwo_file): Update
10725 create_debug_types_hash_table callers.
10726
10727 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
10728
10729 PR gdb/16188
10730 * fork-child.c (trace_start_error): Fix thinko. va_end should
10731 refer to 'ap', not 'args'.
10732
10733 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
10734 Pedro Alves <palves@redhat.com>
10735
10736 PR gdb/16188
10737 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
10738 calls succeeded.
10739 * fork-child.c (trace_start_error): New function.
10740 (trace_start_error_with_name): Likewise.
10741 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
10742 * inf-ptrace.c (inf_ptrace_me): Likewise.
10743 * inferior.h (trace_start_error): New prototype.
10744 (trace_start_error_with_name): Likewise.
10745
10746 2017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
10747
10748 PR gdb/21164
10749 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
10750 NULL before using it.
10751 * symmisc.c (maintenance_print_symbols): Likewise.
10752 (maintenance_print_msymbols): Likewise.
10753
10754 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10755
10756 * NEWS: Add record Python bindings entry.
10757
10758 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10759
10760 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
10761 py-record-full.o.
10762 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
10763 * python/py-record-btrace.c, python/py-record-btrace.h,
10764 python/py-record-full.c, python/py-record-full.h: New file.
10765 * python/py-record.c: Add include for py-record-btrace.h and
10766 py-record-full.h.
10767 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
10768 recpy_instruction_history, recpy_function_call_history, recpy_begin,
10769 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
10770 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
10771 New definition.
10772 (gdbpy_initialize_btrace): New export.
10773 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
10774
10775 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10776
10777 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
10778 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
10779 * python/py-record.c: New file.
10780 * python/python-internal.h (gdbpy_start_recording,
10781 gdbpy_current_recording, gdpy_stop_recording,
10782 gdbpy_initialize_record): New export.
10783 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
10784 (python_GdbMethods): Add gdbpy_start_recording,
10785 gdbpy_current_recording and gdbpy_stop_recording.
10786
10787 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10788
10789 * record-btrace.c (record_btrace_record_method): New function.
10790 (init_record_btrace_ops): Initialize to_record_method.
10791 * record-full.c (record_full_record_method): New function.
10792 (init_record_full_ops, init_record_full_core_ops): Add
10793 record_full_record_method.
10794 * record.h (enum record_method): New enum.
10795 * target-debug.h (target_debug_print_enum_record_method: New define.
10796 * target-delegates.c: Regenerate.
10797 * target.c (target_record_method): New function.
10798 * target.h: Include record.h.
10799 (struct target_ops) <to_record_method>: New field.
10800 (target_record_method): New export.
10801
10802 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10803
10804 * record.h (record_start, record_stop): New export.
10805 * record.c (record_start, record_stop): New function.
10806
10807 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10808
10809 * btrace.c (btrace_fetch): Copy function call segments pointer
10810 into a vector.
10811 (btrace_clear): Clear the vector.
10812 (btrace_find_insn_by_number): Use binary search to find the correct
10813 function call segment.
10814 * btrace.h (brace_fun_p): New typedef.
10815 (struct btrace_thread_info) <functions>: New field.
10816
10817 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10818
10819 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
10820 * btrace.c (btrace_decode_error): ... here. New function.
10821 * btrace.h (btrace_decode_error): New export.
10822
10823 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
10824
10825 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
10826 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
10827 btrace_find_insn_by_number): Remove special case for gaps.
10828 * btrace.h (btrace_insn_get_error): New export.
10829 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
10830 * record-btrace.c (btrace_insn_history): Print number for gaps.
10831 (record_btrace_info, record_btrace_goto): Handle gaps.
10832
10833 2017-02-14 Tom Tromey <tom@tromey.com>
10834
10835 PR python/13598:
10836 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
10837 event.
10838 * python/py-evts.c (gdbpy_initialize_py_events): Add
10839 before_prompt registry.
10840 * python/py-events.h (events_object) <before_prompt>: New field.
10841
10842 2017-02-14 Markus Metzger <markus.t.metzger@intel.com>
10843
10844 * btrace.c (ftrace_new_switch): Preserve up link and flags.
10845
10846 2017-02-13 Luis Machado <lgustavo@codesourcery.com>
10847
10848 * symfile (_initialize_symfile): Add usage text to the load command's
10849 help text.
10850
10851 2017-02-10 Simon Marchi <simon.marchi@ericsson.com>
10852
10853 * utils.c (defaulted_query): Don't query on secondary UIs.
10854
10855 2017-02-10 Tom Tromey <tom@tromey.com>
10856
10857 * rust-lang.c (rust_get_disr_info): Remove unused variable.
10858
10859 2017-02-10 Tom Tromey <tom@tromey.com>
10860
10861 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
10862 "cleanup" local.
10863 * python/py-type.c (typy_legacy_template_argument): Remove
10864 unnecessary "cleanup" local.
10865
10866 2017-02-10 Tom Tromey <tom@tromey.com>
10867
10868 * python/python.c (do_start_initialization): New function, from
10869 _initialize_python.
10870 (_initialize_python): Call do_start_initialization.
10871 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
10872 goto.
10873
10874 2017-02-10 Tom Tromey <tom@tromey.com>
10875
10876 * python/py-prettyprint.c (pretty_print_one_value): Use
10877 gdbpy_ref.
10878
10879 2017-02-10 Tom Tromey <tom@tromey.com>
10880
10881 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
10882 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
10883 gdbpy_ref.
10884 * python/py-type.c (field_new): Use gdbpy_ref.
10885 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
10886 gdbpy_ref.
10887 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
10888 (py_free_pspace): Likewise.
10889 (pspace_to_pspace_object): Likewise.
10890 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
10891 (py_free_objfile): Likewise.
10892 (objfile_to_objfile_object): Likewise.
10893 * python/py-inferior.c (delete_thread_object): Use
10894 gdbpy_ref.
10895 (infpy_read_memory): Likewise.
10896 (py_free_inferior): Likewise.
10897 * python/py-evtregistry.c (create_eventregistry_object): Use
10898 gdbpy_ref.
10899 * python/py-event.c (create_event_object): Use gdbpy_ref.
10900
10901 2017-02-10 Tom Tromey <tom@tromey.com>
10902
10903 * python/py-ref.h (gdbpy_ref_policy): Now a template.
10904 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
10905 used.
10906 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
10907 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
10908 python/py-exitedevent.c, python/py-finishbreakpoint.c,
10909 python/py-framefilter.c, python/py-function.c,
10910 python/py-inferior.c, python/py-infevents.c,
10911 python/py-linetable.c, python/py-newobjfileevent.c,
10912 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
10913 python/py-signalevent.c, python/py-stopevent.c,
10914 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
10915 python/py-unwind.c, python/py-utils.c, python/py-value.c,
10916 python/py-varobj.c, python/py-xmethods.c, python/python.c,
10917 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
10918
10919 2017-02-10 Tom Tromey <tom@tromey.com>
10920
10921 * ui-out.h (ui_out_emit_type): New class.
10922 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
10923 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
10924 and ui_out_emit_tuple.
10925 (enumerate_locals): Likewise.
10926 (py_mi_print_variables, py_print_locals, py_print_args): Use
10927 ui_out_emit_list.
10928 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
10929 ui_out_emit_list.
10930 * common/gdb_optional.h: New file.
10931
10932 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
10933
10934 * MAINTAINERS (Write After Approval): Update my e-mail address.
10935
10936 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
10937
10938 PR gdb/21122
10939 * breakpoint.c (_initialize_breakpoint): Update the help description
10940 of the 'commands' command to indicate that it takes a list argument.
10941
10942 2017-02-09 Simon Marchi <simon.marchi@ericsson.com>
10943
10944 * interps.c (current_interp_set_logging): Remove "return".
10945
10946 2017-02-09 Gary Benson <gbenson@redhat.com>
10947
10948 * symtab.c (add_symtab_completions): Prevent NULL pointer
10949 dereference.
10950
10951 2017-02-08 Pedro Alves <palves@redhat.com>
10952
10953 * interps.c (interp::interp): Remove reference to quiet_p.
10954 (interp_set): Make static. Remove dead "Switching to" output
10955 code.
10956 (interp_quiet_p, interp_set_quiet): Delete.
10957 (interpreter_exec_cmd): Don't set the interpreter quiet.
10958 * interps.h (interp_quiet_p): Make static.
10959 (class interp) <quiet_p>: Remove field
10960
10961 2017-02-08 Jerome Guitton <guitton@adacore.com>
10962
10963 * cli/cli-decode.c (find_command_name_length): Make it extern.
10964 * cli/cli-decode.h (find_command_name_length): Declare.
10965 * cli/cli-script.c (command_name_equals, line_first_arg):
10966 New functions.
10967 (process_next_line): Use cli-decode to parse command names.
10968 (build_command_line): Make args a constant pointer.
10969
10970 2017-02-08 Jerome Guitton <guitton@adacore.com>
10971
10972 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
10973 Remove case-insensitive search.
10974
10975 2017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
10976
10977 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
10978 at the end of the line. Avoids an ARI warning.
10979
10980 2017-02-06 Luis Machado <lgustavo@codesourcery.com>
10981
10982 * NEWS: Mention support for record/replay of Intel 64 rdrand and
10983 rdseed instructions.
10984 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
10985
10986 2017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
10987
10988 PR tdep/20936
10989 Provide and use sparc32 and sparc64 target description XML files.
10990 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
10991 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
10992 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
10993 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
10994 * features/sparc/sparc32-solaris.xml: New file.
10995 * features/sparc/sparc64-solaris.xml: New file.
10996 * features/sparc/sparc32-solaris.c: Generated.
10997 * features/sparc/sparc64-solaris.c: Generated.
10998 * sparc-tdep.h: Account for differences in target descriptions.
10999 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
11000 (sparc32_register_type): Use target provided registers.
11001 (validate_tdesc_registers): New function.
11002 (sparc32_gdbarch_init): Use tdesc_has_registers.
11003 Set pseudoregister functions.
11004 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
11005 (sparc64_register_type): Use target provided registers.
11006 (sparc64_init_abi): Set pseudoregister functions.
11007
11008 2017-02-03 Tom Tromey <tom@tromey.com>
11009
11010 PR rust/21097:
11011 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
11012 with a single member.
11013
11014 2017-02-03 Pedro Alves <palves@redhat.com>
11015
11016 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
11017 (cli_interp_base::~cli_interp_base): New.
11018 (cli_interp): New struct.
11019 (as_cli_interp): Cast the interp itself to cli_interp.
11020 (cli_interpreter_pre_command_loop): Rename to ...
11021 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
11022 parameter.
11023 (cli_interpreter_init): Rename to ...
11024 (cli_interp::init): ... this. Remove 'self' parameter. Use
11025 boolean. Make extern.
11026 (cli_interpreter_resume): Rename to ...
11027 (cli_interp::resume): ... this. Remove 'data' parameter. Make
11028 extern.
11029 (cli_interpreter_suspend): Rename to ...
11030 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
11031 extern.
11032 (cli_interpreter_exec): Rename to ...
11033 (cli_interp::exec): ... this. Remove 'data' parameter. Make
11034 extern.
11035 (cli_interpreter_supports_command_editing): Rename to ...
11036 (cli_interp_base::supports_command_editing): ... this. Remove
11037 'interp' parameter. Make extern.
11038 (cli_ui_out): Rename to ...
11039 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
11040 Make extern.
11041 (cli_set_logging): Rename to ...
11042 (cli_interp_base::set_logging): ... this. Remove 'interp'
11043 parameter. Make extern.
11044 (cli_interp_procs): Delete.
11045 (cli_interp_factory): Adjust to use "new".
11046 * cli/cli-interp.h: Include "interps.h".
11047 (struct cli_interp_base): New struct.
11048 * interps.c (struct interp): Delete. Fields moved to interps.h.
11049 (interp_new): Delete.
11050 (interp::interp, interp::~interp): New.
11051 (interp_set): Use bool, and return void. Assume the interpreter
11052 has suspend, init and resume methods, and that the all return
11053 void.
11054 (set_top_level_interpreter): interp_set returns void.
11055 (interp_ui_out): Adapt.
11056 (current_interp_set_logging): Adapt.
11057 (interp_data): Delete.
11058 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
11059 (interp_exec): Adapt.
11060 (top_level_interpreter_data): Delete.
11061 * interps.h (interp_init_ftype, interp_resume_ftype)
11062 (interp_suspend_ftype, interp_exec_ftype)
11063 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
11064 (class interp): New.
11065 (interp_new): Delete.
11066 (interp_set): Now returns void. Use bool.
11067 (interp_data, top_level_interpreter_data): Delete.
11068 * mi/mi-common.h: Include interps.h.
11069 (class mi_interp): Inherit from interp. Define a ctor. Declare
11070 init, resume, suspect, exec, interp_ui_out, set_logging and
11071 pre_command_loop methods.
11072 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
11073 (mi_interpreter_init): Rename to ...
11074 (mi_interp::init): ... this. Remove the 'interp' parameter, use
11075 bool, return void and make extern. Adjust.
11076 (mi_interpreter_resume): ... Rename to ...
11077 (mi_interp::resume): ... this. Remove the 'data' parameter,
11078 return void and make extern. Adjust.
11079 (mi_interpreter_suspend): ... Rename to ...
11080 (mi_interp::suspend): ... this. Remove the 'data' parameter,
11081 return void and make extern. Adjust.
11082 (mi_interpreter_exec): ... Rename to ...
11083 (mi_interp::exec): ... this. Remove the 'data' parameter and make
11084 extern. Adjust.
11085 (mi_interpreter_pre_command_loop): ... Rename to ...
11086 (mi_interp::pre_command_loop): ... this. Remove the 'self'
11087 parameter and make extern.
11088 (mi_on_normal_stop_1): Adjust.
11089 (mi_ui_out): Rename to ...
11090 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
11091 parameter and make extern. Adjust.
11092 (mi_set_logging): Rename to ...
11093 (mi_interp::set_logging): ... this. Remove the 'interp'
11094 parameter and make extern. Adjust.
11095 (mi_interp_procs): Delete.
11096 (mi_interp_factory): Adjust to use 'new'.
11097 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
11098 (mi_print_exception, mi_execute_command, mi_load_progress):
11099 Adjust.
11100 * tui/tui-interp.c (tui_interp): New class.
11101 (as_tui_interp): Return a tui_interp pointer.
11102 (tui_on_normal_stop, tui_on_signal_received)
11103 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
11104 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
11105 to use interp::interp_ui_out.
11106 (tui_init): Rename to ...
11107 (tui_interp::init): ... this. Remove the 'self' parameter, use
11108 bool, return void and make extern. Adjust.
11109 (tui_resume): Rename to ...
11110 (tui_interp::resume): ... this. Remove the 'data' parameter,
11111 return void and make extern. Adjust.
11112 (tui_suspend): Rename to ...
11113 (tui_interp::suspend): ... this. Remove the 'data' parameter,
11114 return void and make extern. Adjust.
11115 (tui_ui_out): Rename to ...
11116 (tui_interp::interp_ui_out): ... this. Remove the 'self'
11117 parameter, and make extern. Adjust.
11118 (tui_exec): Rename to ...
11119 (tui_interp::exec): ... this. Remove the 'data' parameter and
11120 make extern.
11121 (tui_interp_procs): Delete.
11122 (tui_interp_factory): Use "new".
11123
11124 2017-02-02 Tom Tromey <tom@tromey.com>
11125
11126 * rust-exp.y (ends_raw_string, space_then_number)
11127 (rust_identifier_start_p): Return bool.
11128 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
11129 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
11130 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
11131 (rust_chartype_p): Return bool.
11132 (val_print_struct, rust_print_struct_def, rust_print_type):
11133 Update.
11134 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
11135 Return bool.
11136
11137 2017-02-02 Tom Tromey <tom@tromey.com>
11138
11139 * rust-lang.c: Reindent.
11140
11141 2017-02-02 Tom Tromey <tom@tromey.com>
11142
11143 * rust-lang.h (rust_crate_for_block): Update.
11144 * rust-lang.c (rust_crate_for_block): Return std::string.
11145 (rust_get_disr_info): Use std:;string, not
11146 gdb::unique_xmalloc_ptr.
11147 * rust-exp.y (crate_name): Update.
11148
11149 2017-02-02 Pedro Alves <palves@redhat.com>
11150
11151 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
11152 field out of gdb_disassembler_test and make it static.
11153
11154 2017-02-02 Pedro Alves <palves@redhat.com>
11155
11156 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
11157 mi1_interp and mi_interp fields.
11158
11159 2017-02-02 Pedro Alves <palves@redhat.com>
11160
11161 * cli/cli-interp.c (struct saved_output_files, saved_output):
11162 Moved from cli/cli-logging.c.
11163 (cli_set_logging): New function.
11164 (cli_interp_procs): Install cli_set_logging.
11165 * cli/cli-interp.h (make_logging_output, cli_set_logging):
11166 Declare.
11167 * cli/cli-logging.c (struct saved_output_files, saved_output):
11168 Moved to cli/cli-interp.c.
11169 (pop_output_files): Don't save outputs here.
11170 (make_logging_output): New function.
11171 (handle_redirections): Don't build tee nor save previous outputs
11172 here.
11173 * interps.c (current_interp_set_logging): Change prototype.
11174 Assume there's always a set_logging_proc method installed.
11175 * interps.h (interp_set_logging_ftype): Change prototype.
11176 (current_interp_set_logging): Change prototype and adjust comment.
11177 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
11178 use make_logging_output.
11179 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
11180 2017-02-02 Pedro Alves <palves@redhat.com>
11181
11182 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
11183 from ...
11184 (set_logging_overwrite): ... here.
11185 (logging_no_redirect_file): Delete.
11186 (set_logging_redirect): Don't handle redirection on the fly.
11187 Instead warn that "logging off" / "logging on" is necessary.
11188 (pop_output_files): Delete references to logging_no_redirect_file.
11189 (show_logging_command): Always speak in terms of what will happen
11190 once logging is reenabled.
11191
11192 2017-02-02 Pedro Alves <palves@redhat.com>
11193
11194 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
11195
11196 2017-02-02 Pedro Alves <palves@redhat.com>
11197
11198 * disasm.c (gdb_pretty_print_insn): Rename to ...
11199 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
11200 Remove gdbarch parameter. Adapt to clear the object's buffers
11201 instead of allocating new buffers, and to print using the object's
11202 gdb_disassembler instead of calling gdb_print_insn.
11203 (dump_insns): Use gdb_pretty_print_disassembler.
11204 * disasm.h (gdb_pretty_print_insn): Delete declaration.
11205 (gdb_pretty_print_disassembler): New class.
11206 * record-btrace.c (btrace_insn_history): Use
11207 gdb_pretty_print_disassembler.
11208
11209 2017-02-02 Pedro Alves <palves@redhat.com>
11210
11211 * ada-lang.c (type_as_string): Use string_file.
11212 * ada-valprint.c (ada_print_floating): Use string_file.
11213 * ada-varobj.c (ada_varobj_scalar_image)
11214 (ada_varobj_get_value_image): Use string_file.
11215 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
11216 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
11217 * breakpoint.c (update_inserted_breakpoint_locations)
11218 (insert_breakpoint_locations, reattach_breakpoints)
11219 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
11220 (print_it_watchpoint): Use string_file.
11221 (save_breakpoints): Use stdio_file.
11222 * c-exp.y (oper): Use string_file.
11223 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
11224 tee_file.
11225 (pop_output_files): Use delete.
11226 (handle_redirections): Use stdio_file and tee_file.
11227 * cli/cli-setshow.c (do_show_command): Use string_file.
11228 * compile/compile-c-support.c (c_compute_program): Use
11229 string_file.
11230 * compile/compile-c-symbols.c (generate_vla_size): Take a
11231 'string_file &' instead of a 'ui_file *'.
11232 (generate_c_for_for_one_variable): Take a 'string_file &' instead
11233 of a 'ui_file *'. Use string_file.
11234 (generate_c_for_variable_locations): Take a 'string_file &'
11235 instead of a 'ui_file *'.
11236 * compile/compile-internal.h (generate_c_for_for_one_variable):
11237 Take a 'string_file &' instead of a 'ui_file *'.
11238 * compile/compile-loc2c.c (push, pushf, unary, binary)
11239 (print_label, pushf_register_address, pushf_register)
11240 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
11241 'ui_file *'. Adjust.
11242 * compile/compile.c (compile_to_object): Use string_file.
11243 * compile/compile.h (compile_dwarf_expr_to_c)
11244 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
11245 'ui_file *'.
11246 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
11247 (replace_typedefs_qualified_name): Use string_file and
11248 obstack_copy0.
11249 * disasm.c (gdb_pretty_print_insn): Use string_file.
11250 (gdb_disassembly): Adjust reference the null_stream global.
11251 (do_ui_file_delete): Delete.
11252 (gdb_insn_length): Use null_stream.
11253 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
11254 * dwarf2loc.c (dwarf2_compile_property_to_c)
11255 (locexpr_generate_c_location, loclist_generate_c_location): Take a
11256 'string_file &' instead of a 'ui_file *'.
11257 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
11258 * dwarf2read.c (do_ui_file_peek_last): Delete.
11259 (dwarf2_compute_name): Use string_file.
11260 * event-top.c (gdb_setup_readline): Use stdio_file.
11261 * gdbarch.sh (verify_gdbarch): Use string_file.
11262 * gdbtypes.c (safe_parse_type): Use null_stream.
11263 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
11264 string_file.
11265 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
11266 'string_file *' instead of a 'ui_file *'.
11267 (gdbscm_arch_disassemble): Use string_file.
11268 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
11269 * guile/scm-ports.c (class ioscm_file_port): Now a class that
11270 inherits from ui_file.
11271 (ioscm_file_port_delete, ioscm_file_port_rewind)
11272 (ioscm_file_port_put): Delete.
11273 (ioscm_file_port_write): Rename to ...
11274 (ioscm_file_port::write): ... this. Remove file_port_magic
11275 checks.
11276 (ioscm_file_port_new): Delete.
11277 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
11278 ui_file_up.
11279 * guile/scm-type.c (tyscm_type_name): Use string_file.
11280 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
11281 Use string_file.
11282 * infcmd.c (print_return_value_1): Use string_file.
11283 * infrun.c (print_target_wait_results): Use string_file.
11284 * language.c (add_language): Use string_file.
11285 * location.c (explicit_to_string_internal): Use string_file.
11286 * main.c (captured_main_1): Use null_file.
11287 * maint.c (maintenance_print_architecture): Use stdio_file.
11288 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
11289 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
11290 event_channel>: Change type to mi_console_file pointer.
11291 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
11292 (mi_console_file_delete): Delete.
11293 (struct mi_console_file): Delete.
11294 (mi_console_file_magic): Delete.
11295 (mi_console_file_new): Delete.
11296 (mi_console_file::mi_console_file): New.
11297 (mi_console_file_delete): Delete.
11298 (mi_console_file_fputs): Delete.
11299 (mi_console_file::write): New.
11300 (mi_console_raw_packet): Delete.
11301 (mi_console_file::flush): New.
11302 (mi_console_file_flush): Delete.
11303 (mi_console_set_raw): Rename to ...
11304 (mi_console_file::set_raw): ... this.
11305 * mi/mi-console.h (class mi_console_file): New class.
11306 (mi_console_file_new, mi_console_set_raw): Delete.
11307 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
11308 (mi_set_logging): Use delete and tee_file. Adjust.
11309 * mi/mi-main.c (output_register): Use string_file.
11310 (mi_cmd_data_evaluate_expression): Use string_file.
11311 (mi_cmd_data_read_memory): Use string_file.
11312 (mi_cmd_execute, print_variable_or_computed): Use string_file.
11313 * mi/mi-out.c (mi_ui_out::main_stream): New.
11314 (mi_ui_out::rewind): Use main_stream and
11315 string_file.
11316 (mi_ui_out::put): Use main_stream and string_file.
11317 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
11318 Allocate a 'string_file' instead.
11319 (mi_out_new): Don't allocate a mem_fileopen stream here.
11320 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
11321 (mi_ui_out::main_stream): Declare method.
11322 * printcmd.c (eval_command): Use string_file.
11323 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
11324 * python/py-arch.c (archpy_disassemble): Use string_file.
11325 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
11326 * python/py-frame.c (frapy_str): Use string_file.
11327 * python/py-framefilter.c (py_print_type, py_print_single_arg):
11328 Use string_file.
11329 * python/py-type.c (typy_str): Use string_file.
11330 * python/py-unwind.c (unwind_infopy_str): Use string_file.
11331 * python/py-value.c (valpy_str): Use string_file.
11332 * record-btrace.c (btrace_insn_history): Use string_file.
11333 * regcache.c (regcache_print): Use stdio_file.
11334 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
11335 * remote.c (escape_buffer): Use string_file.
11336 * rust-lang.c (rust_get_disr_info): Use string_file.
11337 * serial.c (serial_open_ops_1): Use stdio_file.
11338 (do_serial_close): Use delete.
11339 * stack.c (print_frame_arg): Use string_file.
11340 (print_frame_args): Remove local mem_fileopen stream, not used.
11341 (print_frame): Use string_file.
11342 * symmisc.c (maintenance_print_symbols): Use stdio_file.
11343 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
11344 Take a 'string_file *' instead of a 'ui_file *'.
11345 * top.c (new_ui): Use stdio_file and stderr_file.
11346 (free_ui): Use delete.
11347 (execute_command_to_string): Use string_file.
11348 (quit_confirm): Use string_file.
11349 * tracepoint.c (collection_list::append_exp): Use string_file.
11350 * tui/tui-disasm.c (tui_disassemble): Use string_file.
11351 * tui/tui-file.c: Don't include "ui-file.h".
11352 (enum streamtype, struct tui_stream): Delete.
11353 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
11354 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
11355 (tui_file::tui_file): New method.
11356 (tui_file_fputs): Delete.
11357 (tui_file_get_strbuf): Delete.
11358 (tui_file::puts): New method.
11359 (tui_file_adjust_strbuf): Delete.
11360 (tui_file_flush): Delete.
11361 (tui_file::flush): New method.
11362 * tui/tui-file.h: Tweak intro comment.
11363 Include ui-file.h.
11364 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
11365 (tui_file_adjust_strbuf): Delete declarations.
11366 (class tui_file): New class.
11367 * tui/tui-io.c (tui_initialize_io): Use tui_file.
11368 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
11369 (tui_register_format): Use string_stream.
11370 * tui/tui-stack.c (tui_make_status_line): Use string_file.
11371 (tui_get_function_from_frame): Use string_file.
11372 * typeprint.c (type_to_string): Use string_file.
11373 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
11374 (null_stream): New global.
11375 (ui_file_delete): Delete.
11376 (ui_file::ui_file): New.
11377 (null_file_isatty): Delete.
11378 (ui_file::~ui_file): New.
11379 (null_file_rewind): Delete.
11380 (ui_file::printf): New.
11381 (null_file_put): Delete.
11382 (null_file_flush): Delete.
11383 (ui_file::putstr): New.
11384 (null_file_write): Delete.
11385 (ui_file::putstrn): New.
11386 (null_file_read): Delete.
11387 (ui_file::putc): New.
11388 (null_file_fputs): Delete.
11389 (null_file_write_async_safe): Delete.
11390 (ui_file::vprintf): New.
11391 (null_file_delete): Delete.
11392 (null_file::write): New.
11393 (null_file_fseek): Delete.
11394 (null_file::puts): New.
11395 (ui_file_data): Delete.
11396 (null_file::write_async_safe): New.
11397 (gdb_flush, ui_file_isatty): Adjust.
11398 (ui_file_put, ui_file_rewind): Delete.
11399 (ui_file_write): Adjust.
11400 (ui_file_write_for_put): Delete.
11401 (ui_file_write_async_safe, ui_file_read): Adjust.
11402 (ui_file_fseek): Delete.
11403 (fputs_unfiltered): Adjust.
11404 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
11405 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
11406 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
11407 (set_ui_file_data): Delete.
11408 (string_file::~string_file, string_file::write)
11409 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
11410 (do_ui_file_as_string, ui_file_as_string): Delete.
11411 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
11412 (struct mem_file): Delete.
11413 (mem_file_new): Delete.
11414 (stdio_file::stdio_file): New.
11415 (mem_file_delete): Delete.
11416 (stdio_file::stdio_file): New.
11417 (mem_fileopen): Delete.
11418 (stdio_file::~stdio_file): New.
11419 (mem_file_rewind): Delete.
11420 (stdio_file::set_stream): New.
11421 (mem_file_put): Delete.
11422 (stdio_file::open): New.
11423 (mem_file_write): Delete.
11424 (stdio_file_magic, struct stdio_file): Delete.
11425 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
11426 (stdio_file::flush): New.
11427 (stdio_file_read): Rename to ...
11428 (stdio_file::read): ... this. Adjust.
11429 (stdio_file_write): Rename to ...
11430 (stdio_file::write): ... this. Adjust.
11431 (stdio_file_write_async_safe): Rename to ...
11432 (stdio_file::write_async_safe) ... this. Adjust.
11433 (stdio_file_fputs): Rename to ...
11434 (stdio_file::puts) ... this. Adjust.
11435 (stdio_file_isatty): Delete.
11436 (stdio_file_fseek): Delete.
11437 (stdio_file::isatty): New.
11438 (stderr_file_write): Rename to ...
11439 (stderr_file::write) ... this. Adjust.
11440 (stderr_file_fputs): Rename to ...
11441 (stderr_file::puts) ... this. Adjust.
11442 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
11443 (stderr_file::stderr_file): New.
11444 (tee_file_magic): Delete.
11445 (struct tee_file): Delete.
11446 (tee_file::tee_file): New.
11447 (tee_file_new): Delete.
11448 (tee_file::~tee_file): New.
11449 (tee_file_delete): Delete.
11450 (tee_file_flush): Rename to ...
11451 (tee_file::flush): ... this. Adjust.
11452 (tee_file_write): Rename to ...
11453 (tee_file::write): ... this. Adjust.
11454 (tee_file::write_async_safe): New.
11455 (tee_file_fputs): Rename to ...
11456 (tee_file::puts): ... this. Adjust.
11457 (tee_file_isatty): Rename to ...
11458 (tee_file::isatty): ... this. Adjust.
11459 * ui-file.h (struct obstack, struct ui_file): Don't
11460 forward-declare.
11461 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
11462 (ui_file_write_ftype)
11463 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
11464 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
11465 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
11466 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
11467 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
11468 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
11469 (set_ui_file_fseek): Delete.
11470 (ui_file_data, ui_file_delete, ui_file_rewind)
11471 (struct ui_file): New.
11472 (ui_file_up): New.
11473 (class null_file): New.
11474 (null_stream): Declare.
11475 (ui_file_write_for_put, ui_file_put): Delete.
11476 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
11477 Delete.
11478 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
11479 (gdb_fopen, tee_file_new): Delete.
11480 (struct string_file): New.
11481 (struct stdio_file): New.
11482 (stdio_file_up): New.
11483 (struct stderr_file): New.
11484 (class tee_file): New.
11485 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
11486 of a 'ui_file *'. Adjust.
11487 * ui-out.h (class ui_out) <field_stream>: Likewise.
11488 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
11489 (null_stream): Delete.
11490 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
11491 Adjust.
11492 * utils.h (struct ui_file): Delete forward declaration..
11493 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
11494 (error_stream): Take a 'string_file &' instead of a
11495 'ui_file *'.
11496 * varobj.c (varobj_value_get_print_value): Use string_file.
11497 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
11498 * gdbarch.c: Regenerate.
11499
11500 2017-02-02 Pedro Alves <palves@redhat.com>
11501
11502 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
11503 (gdb_pretty_print_insn): ... this. Now a free function. Add back
11504 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
11505 Adjust to call gdb_print_insn instead of
11506 gdb_disassembler::print_insn.
11507 (dump_insns, do_mixed_source_and_assembly_deprecated)
11508 (do_mixed_source_and_assembly, do_assembly_only): Add back a
11509 'gdbarch' parameter. Remove gdb_disassembler parameter.
11510 (gdb_disassembly): Don't allocate a gdb_disassembler here.
11511 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
11512 declaration.
11513 (gdb_pretty_print_insn): Re-add declaration.
11514 * record-btrace.c (btrace_insn_history): Don't allocate a
11515 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
11516
11517 2017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
11518
11519 * disasm.h (gdb_disassembly): Remove file_string parameter.
11520 * disasm.c (gdb_disassembly): Likewise.
11521 * cli/cli-cmds.c (print_disassembly): Adapt.
11522 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
11523 * stack.c (do_gdb_disassembly): Likewise.
11524
11525 2017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
11526
11527 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
11528 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
11529 targets. And if the implicit value is longer than needed, extract
11530 the first bytes instead of the "least significant" ones.
11531
11532 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
11533
11534 * btrace.c (btrace_enable): Do not call btrace_add_pc for
11535 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
11536 (btrace_fetch): Assert can_access_registers_ptid.
11537 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
11538 validate_registers_access.
11539
11540 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
11541
11542 * gdbthread.h (can_access_registers_ptid): New.
11543 * thread.c (can_access_registers_ptid): New.
11544
11545 2017-02-01 Pedro Alves <palves@redhat.com>
11546
11547 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
11548
11549 2017-01-31 Pedro Alves <palves@redhat.com>
11550
11551 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
11552 Fix typos.
11553
11554 2017-01-31 Pedro Alves <palves@redhat.com>
11555
11556 * stack.c (print_frame_args): Remove local mem_fileopen stream,
11557 not used.
11558
11559 2017-01-31 Pedro Alves <palves@redhat.com>
11560
11561 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
11562
11563 2017-01-31 Pedro Alves <palves@redhat.com>
11564
11565 * common/scoped_restore.h
11566 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
11567 change the value's parameter type to T2.
11568 (make_scoped_restore): Likewise.
11569
11570 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
11571 Richard Henderson <rth@redhat.com>
11572
11573 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
11574 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
11575 GS_BASE for older kernels.
11576 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
11577 GS_BASE for older kernels.
11578 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
11579 and GS_BASE to the offset table.
11580 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
11581 system register group.
11582 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
11583 for older kernels.
11584 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
11585 amd64 ABI.
11586 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
11587 AMD64_GSBASE_REGNUM.
11588 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
11589 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
11590 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
11591 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
11592 i386/64bit-segments.xml in those rules.
11593 * features/i386/64bit-segments.xml: New file.
11594 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
11595 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
11596 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
11597 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
11598 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
11599 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
11600 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
11601 * features/i386/amd64-avx-linux.c: Regenerated.
11602 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
11603 * features/i386/amd64-avx-mpx.c: Regenerated.
11604 * features/i386/amd64-avx512-linux.c: Regenerated.
11605 * features/i386/amd64-linux.c: Regenerated.
11606 * features/i386/amd64-mpx-linux.c: Regenerated.
11607 * features/i386/i386-avx-mpx-linux.c: Regenerated.
11608 * features/i386/i386-avx-mpx.c: Regenerated.
11609 * features/i386/x32-avx-linux.c: Regenerated.
11610 * features/i386/x32-avx512-linux.c: Regenerated.
11611 * regformats/i386/amd64-avx-linux.dat: Regenerated.
11612 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
11613 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
11614 * regformats/i386/amd64-linux.dat: Regenerated.
11615 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
11616 * regformats/i386/x32-avx-linux.dat: Regenerated.
11617 * regformats/i386/x32-avx512-linux.dat: Regenerated.
11618 * regformats/i386/x32-linux.dat: Regenerated.
11619
11620 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
11621
11622 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
11623 Set to AMD64_NUM_REGS.
11624
11625 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
11626
11627 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
11628 that checks validity of a register number.
11629
11630 2017-01-27 Kees Cook <keescook@google.com>
11631
11632 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
11633 fetch_fpregs if target has fpa registers.
11634 (arm_linux_store_inferior_registers): Call store_fpregs if target
11635 has fpa registers.
11636
11637 2017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
11638
11639 * cris-tdep.c (cris_gdbarch_init): Remove check for
11640 info.byte_order and force it to BFD_ENDIAN_LITTLE.
11641
11642 2017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
11643
11644 * corelow.c (get_core_register_section): Check for regset
11645 existence before checking for REGSET_VARIABLE_SIZE.
11646
11647 2017-01-26 Yao Qi <yao.qi@linaro.org>
11648 Pedro Alves <palves@redhat.com>
11649
11650 PR gdb/20939
11651 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
11652 call memory_error, save memaddr instead.
11653 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
11654 negative, cal memory_error.
11655 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
11656
11657 2017-01-26 Yao Qi <yao.qi@linaro.org>
11658
11659 * disasm-selftests.c (memory_error_test): New function.
11660 (_initialize_disasm_selftests): Register memory_error_test.
11661
11662 2017-01-26 Yao Qi <yao.qi@linaro.org>
11663
11664 * Makefile.in (SFILES): Add disasm-selftests.c and
11665 selftest-arch.c.
11666 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
11667 * disasm-selftests.c: New file.
11668 * selftest-arch.c: New file.
11669 * selftest-arch.h: New file.
11670
11671 2017-01-26 Yao Qi <yao.qi@linaro.org>
11672
11673 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
11674 to bfd_arch_mep. Don't return 0 if section is not
11675 found. Call print_insn_mep.
11676
11677 2017-01-26 Pedro Alves <palves@redhat.com>
11678 Yao Qi <yao.qi@linaro.org>
11679
11680 * arm-tdep.c: Include "disasm.h".
11681 (gdb_print_insn_arm): Update code to get gdbarch.
11682 * disasm.c (dis_asm_read_memory): Change it to
11683 gdb_disassembler::dis_asm_read_memory.
11684 (dis_asm_memory_error): Likewise.
11685 (dis_asm_print_address): Likewise.
11686 (gdb_pretty_print_insn): Change it to
11687 gdb_disassembler::pretty_print_insn.
11688 (dump_insns): Add one argument gdb_disassemlber. All
11689 callers updated.
11690 (do_mixed_source_and_assembly_deprecated): Likewise.
11691 (do_mixed_source_and_assembly): Likewise.
11692 (do_assembly_only): Likewise.
11693 (gdb_disassembler::gdb_disassembler): New.
11694 (gdb_disassembler::print_insn): New.
11695 * disasm.h (class gdb_disassembler): New.
11696 (gdb_pretty_print_insn): Remove declaration.
11697 (gdb_disassemble_info): Likewise.
11698 * guile/scm-disasm.c (class gdbscm_disassembler): New.
11699 (gdbscm_disasm_read_memory_worker): Update.
11700 (gdbscm_disasm_read_memory): Update.
11701 (gdbscm_disasm_memory_error): Remove.
11702 (gdbscm_disasm_print_address): Remove.
11703 (gdbscm_disassembler::gdbscm_disassembler): New.
11704 (gdbscm_print_insn_from_port): Update.
11705 * mips-tdep.c: Include disasm.h.
11706 (gdb_print_insn_mips): Update code to get gdbarch.
11707 * record-btrace.c (btrace_insn_history): Update.
11708 * spu-tdep.c: Include disasm.h.
11709 (struct spu_dis_asm_data): Remove.
11710 (struct spu_dis_asm_info): New.
11711 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
11712 SPU id.
11713 (gdb_print_insn_spu): Cast disassemble_info to
11714 spu_dis_asm_info.
11715
11716 2017-01-26 Yao Qi <yao.qi@linaro.org>
11717
11718 * disasm.c (do_ui_file_delete): Delete.
11719 (gdb_insn_length): Move code creating stream to ...
11720 * utils.c (null_stream): ... here. New function.
11721 * utils.h (null_stream): Declare.
11722
11723 2017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
11724
11725 * python/py-inferior.c (find_thread_object): Return directly
11726 from the loop. Remove "found" variable.
11727
11728 2017-01-21 Joel Brobecker <brobecker@adacore.com>
11729
11730 GDB 7.12.1 released.
11731
11732 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
11733
11734 * python/py-function.c (fnpy_call): Reorder declarations to have
11735 the gdbpy_enter object declared first.
11736 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
11737
11738 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
11739
11740 PR python/21068
11741 * python/python-internal.h (PyMem_RawMalloc): Define for
11742 Python < 3.4.
11743 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
11744 PyMem_RawMalloc instead of PyMem_Malloc.
11745
11746 2017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
11747 Luis Machado <lgustavo@codesourcery.com>
11748
11749 * NEWS (New commands): Mention flash-erase.
11750 (New MI commands): Mention target-flash-erase.
11751 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
11752 command.
11753 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
11754 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
11755 * target.c (flash_erase_command): New function.
11756 (initialize_targets): Add new flash-erase command.
11757 * target.h (flash_erase_command): New declaration.
11758
11759 2017-01-20 Joel Brobecker <brobecker@adacore.com>
11760
11761 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
11762 HAVE_SYS_PROCFS_H is defined.
11763
11764 2017-01-18 Alan Hayward <alan.hayward@arm.com>
11765
11766 * remote.c (struct cached_reg): Change data into a pointer.
11767 * (stop_reply_dtr): Free data pointers before deleting vector.
11768 (process_stop_reply): Likewise.
11769 (remote_parse_stop_reply): Allocate space for data
11770
11771 2017-01-18 Alan Hayward <alan.hayward@arm.com>
11772
11773 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
11774 MAX_REGISTER_SIZE.
11775 (amd64_pseudo_register_read_value): Likewise.
11776 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
11777 (store_register_using_P): Likewise.
11778 * regcache.c (regcache_xfer_part): Likewise.
11779
11780 2017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
11781
11782 Split real and pseudo registers.
11783 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
11784 (sparc32_pseudo_regnum): New enum.
11785 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
11786 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
11787 (SPARC32_CP0_REGISTERS): New macro.
11788 (sparc32_pseudo_register_name): New function.
11789 (sparc32_register_name): Use sparc32_pseudo_register_name.
11790 (sparc32_pseudo_register_type): New function.
11791 (sparc32_register_type): Use sparc32_pseudo_register_type.
11792 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
11793 pseudo register numbers.
11794 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
11795 (SPARC64_CP0_REGISTERS): New macro.
11796 (sparc64_pseudo_register_name): New function.
11797 (sparc64_register_name): Use sparc64_pseudo_register_name.
11798 (sparc64_pseudo_register_type): New function.
11799 (sparc64_register_type): Use sparc64_pseudo_register_type.
11800 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
11801 pseudo register numbers.
11802 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
11803 sparc64_store_arguments): Handle pseudo register numbers.
11804
11805 2017-01-13 Yao Qi <yao.qi@linaro.org>
11806
11807 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
11808 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
11809 output.
11810 (getpkt_or_notif_sane_1): Likewise.
11811
11812 2017-01-13 Yao Qi <yao.qi@linaro.org>
11813
11814 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
11815 of CC. Pass "-x c++-header" instead of "-x c".
11816
11817 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
11818
11819 * remote.c (remote_can_async_p): Update comment.
11820
11821 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
11822
11823 * linux-nat.c (linux_nat_can_async_p): Update comment.
11824
11825 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
11826
11827 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
11828
11829 2017-01-11 Simon Marchi <simon.marchi@ericsson.com>
11830
11831 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
11832
11833 2017-01-10 Tom Tromey <tom@tromey.com>
11834
11835 * python/py-type.c (typy_legacy_template_argument): Update.
11836 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
11837 ~demangle_parse_info): Declare new members.
11838 (cp_demangled_name_to_comp): Return unique_ptr.
11839 (cp_demangled_name_parse_free)
11840 (make_cleanup_cp_demangled_name_parse_free)
11841 (cp_new_demangle_parse_info): Remove.
11842 * cp-support.c (do_demangled_name_parse_free_cleanup)
11843 (make_cleanup_cp_demangled_name_parse_free): Remove.
11844 (inspect_type, cp_canonicalize_string_full)
11845 (cp_canonicalize_string): Update.
11846 (mangled_name_to_comp): Change return type.
11847 (cp_class_name_from_physname, method_name_from_physname)
11848 (cp_func_name, cp_remove_params): Update.
11849 * cp-name-parser.y (demangle_parse_info): New constructor, from
11850 cp_new_demangle_parse_info.
11851 (~demangle_parse_info): New destructor, from
11852 cp_demangled_name_parse_free.
11853 (cp_merge_demangle_parse_infos): Update.
11854 (cp_demangled_name_to_comp): Change return type.
11855
11856 2017-01-10 Tom Tromey <tom@tromey.com>
11857
11858 * top.c (prevent_dont_repeat): Change return type.
11859 * python/python.c (execute_gdb_command): Use std::string.
11860 Update.
11861 * guile/guile.c (gdbscm_execute_gdb_command): Update.
11862 * command.h (prevent_dont_repeat): Change return type.
11863 * breakpoint.c (bpstat_do_actions_1): Update.
11864
11865 2017-01-10 Tom Tromey <tom@tromey.com>
11866
11867 * value.h (scoped_value_mark::~scoped_value_mark): Call
11868 free_to_mark.
11869 (scoped_value_mark::free_to_mark): New method.
11870 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
11871 scoped_value_mark.
11872
11873 2017-01-10 Tom Tromey <tom@tromey.com>
11874
11875 * python/py-value.c (valpy_dereference, valpy_referenced_value)
11876 (valpy_reference_value, valpy_const_value, valpy_get_address)
11877 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
11878 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
11879 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
11880 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
11881 scoped_value_mark.
11882 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
11883 * value.h (scoped_value_mark): New class.
11884
11885 2017-01-10 Tom Tromey <tom@tromey.com>
11886
11887 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
11888 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
11889 * psymtab.c (discard_psymtabs_upto): Remove.
11890 (make_cleanup_discard_psymtabs): Remove.
11891 (struct psymtab_state): Remove.
11892
11893 2017-01-10 Tom Tromey <tom@tromey.com>
11894
11895 * record-full.c (record_full_save_cleanups): Remove.
11896 (record_full_save): Use gdb::unlinker.
11897 * gcore.c (do_bfd_delete_cleanup): Remove.
11898 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
11899 cleanups.
11900 * dwarf2read.c (unlink_if_set): Remove.
11901 (write_psymtabs_to_index): Use gdb::unlinker.
11902 * common/gdb_unlinker.h: New file.
11903
11904 2017-01-10 Tom Tromey <tom@tromey.com>
11905
11906 * windows-tdep.c (windows_xfer_shared_library): Update.
11907 * windows-nat.c (windows_make_so): Update.
11908 * utils.h (make_cleanup_bfd_unref): Remove.
11909 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
11910 * symfile.h (symfile_bfd_open)
11911 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
11912 * symfile.c (read_symbols, symbol_file_add)
11913 (separate_debug_file_exists): Update.
11914 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
11915 (generic_load, reread_symbols): Update.
11916 * symfile-mem.c (symbol_file_add_from_memory): Update.
11917 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
11918 (spu_symbol_file_add_from_memory): Update.
11919 * solist.h (struct target_so_ops) <bfd_open>: Return
11920 gdb_bfd_ref_ptr.
11921 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
11922 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
11923 gdb_bfd_ref_ptr.
11924 (solib_map_sections, reload_shared_libraries_1): Update.
11925 * solib-svr4.c (enable_break): Update.
11926 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
11927 * solib-frv.c (enable_break2): Update.
11928 * solib-dsbt.c (enable_break): Update.
11929 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
11930 gdb_bfd_ref_ptr.
11931 (darwin_solib_get_all_image_info_addr_at_init): Update.
11932 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
11933 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
11934 * record-full.c (record_full_save): Update.
11935 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
11936 * procfs.c (insert_dbx_link_bpt_in_file): Update.
11937 * minidebug.c (find_separate_debug_file_in_section): Return
11938 gdb_bfd_ref_ptr.
11939 * machoread.c (macho_add_oso_symfile): Change abfd to
11940 gdb_bfd_ref_ptr.
11941 (macho_symfile_read_all_oso): Update.
11942 (macho_check_dsym): Return gdb_bfd_ref_ptr.
11943 (macho_symfile_read): Update.
11944 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
11945 (jit_bfd_try_read_symtab): Update.
11946 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
11947 (gdb_bfd_openw, gdb_bfd_openr_iovec)
11948 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
11949 gdb_bfd_ref_ptr.
11950 (gdb_bfd_ref_policy): New struct.
11951 (gdb_bfd_ref_ptr): New typedef.
11952 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
11953 (gdb_bfd_openw, gdb_bfd_openr_iovec)
11954 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
11955 gdb_bfd_ref_ptr.
11956 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
11957 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
11958 (gcore_command): Update.
11959 * exec.c (exec_file_attach): Update.
11960 * elfread.c (elf_symfile_read): Update.
11961 * dwarf2read.c (dwarf2_get_dwz_file): Update.
11962 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
11963 (open_and_init_dwo_file): Update.
11964 (open_dwp_file): Return gdb_bfd_ref_ptr.
11965 (open_and_init_dwp_file): Update.
11966 * corelow.c (core_open): Update.
11967 * compile/compile-object-load.c (compile_object_load): Update.
11968 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
11969 * coffread.c (coff_symfile_read): Update.
11970 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
11971 gdb_bfd_ref_ptr. Rename.
11972 (dump_bfd_file, restore_command): Update.
11973 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
11974 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
11975 (find_separate_debug_file_by_buildid): Update.
11976
11977 2017-01-10 Tom Tromey <tom@tromey.com>
11978
11979 * common/gdb_ref_ptr.h: New file.
11980 * python/py-ref.h (struct gdbpy_ref_policy): New.
11981 (gdbpy_ref): Now a typedef.
11982
11983 2017-01-10 Tom Tromey <tom@tromey.com>
11984
11985 * utils.h (make_cleanup_htab_delete): Don't declare.
11986 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
11987 Remove.
11988 * linespec.c (decode_compound_collector): Add constructor,
11989 destructor.
11990 (lookup_prefix_sym): Remove cleanup.
11991 (symtab_collector): Add constructor, destructor.
11992 (collect_symtabs_from_filename): Remove cleanup.
11993 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
11994 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
11995 Use htab_up.
11996 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
11997 * dwarf2read.c (dw2_expand_symtabs_matching)
11998 (dw2_map_symbol_filenames, dwarf_decode_macros)
11999 (write_psymtabs_to_index): Use htab_up.
12000 * dwarf2loc.c (func_verify_no_selftailcall)
12001 (call_site_find_chain_1, func_verify_no_selftailcall)
12002 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
12003 std::vector, gdb::unique_xmalloc_ptr.
12004 (call_sitep): Remove typedef.
12005 (dwarf2_locexpr_baton_eval): Remove unused variable.
12006
12007 2017-01-10 Tom Tromey <tom@tromey.com>
12008
12009 * python/python-internal.h (make_cleanup_py_decref)
12010 (make_cleanup_py_xdecref): Don't declare.
12011 * python/py-utils.c (py_decref, make_cleanup_py_decref)
12012 (py_xdecref, make_cleanup_py_xdecref): Remove.
12013
12014 2017-01-10 Tom Tromey <tom@tromey.com>
12015
12016 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
12017 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
12018
12019 2017-01-10 Tom Tromey <tom@tromey.com>
12020
12021 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
12022
12023 2017-01-10 Tom Tromey <tom@tromey.com>
12024
12025 * python/py-utils.c (unicode_to_encoded_string)
12026 (python_string_to_target_string)
12027 (python_string_to_target_python_string)
12028 (python_string_to_host_string, gdbpy_obj_to_string)
12029 (get_addr_from_python): Use gdbpy_ref.
12030
12031 2017-01-10 Tom Tromey <tom@tromey.com>
12032
12033 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
12034 gdbpy_ref.
12035
12036 2017-01-10 Tom Tromey <tom@tromey.com>
12037
12038 * python/python.c (eval_python_command, gdbpy_decode_line)
12039 (gdbpy_run_events, gdbpy_start_type_printers)
12040 (gdbpy_apply_type_printers): Use gdbpy_ref.
12041
12042 2017-01-10 Tom Tromey <tom@tromey.com>
12043
12044 * python/py-param.c (get_doc_string, compute_enum_values): Use
12045 gdbpy_ref.
12046
12047 2017-01-10 Tom Tromey <tom@tromey.com>
12048
12049 * python/py-inferior.c (find_thread_object, build_inferior_list):
12050 Use gdbpy_ref.
12051
12052 2017-01-10 Tom Tromey <tom@tromey.com>
12053
12054 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
12055
12056 2017-01-10 Tom Tromey <tom@tromey.com>
12057
12058 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
12059 gdbpy_ref.
12060
12061 2017-01-10 Tom Tromey <tom@tromey.com>
12062
12063 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
12064 extra incref.
12065 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
12066 Use gdbpy_ref.
12067
12068 2017-01-10 Tom Tromey <tom@tromey.com>
12069
12070 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
12071 gdbpy_ref.
12072
12073 2017-01-10 Tom Tromey <tom@tromey.com>
12074
12075 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
12076 decref results of PyArg_ParseTupleAndKeywords.
12077
12078 2017-01-10 Tom Tromey <tom@tromey.com>
12079
12080 * python/python.c (python_run_simple_file): Use
12081 unique_xmalloc_ptr, gdbpy_ref.
12082
12083 2017-01-10 Tom Tromey <tom@tromey.com>
12084
12085 * python/py-prettyprint.c (print_stack_unless_memory_error)
12086 (print_string_repr, print_children): Use gdbpy_ref.
12087 (dummy_python_frame): New class.
12088 (dummy_python_frame::dummy_python_frame): Rename from
12089 push_dummy_python_frame.
12090 (py_restore_tstate): Remove.
12091
12092 2017-01-10 Tom Tromey <tom@tromey.com>
12093
12094 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
12095
12096 2017-01-10 Tom Tromey <tom@tromey.com>
12097
12098 * python/python.c (ensure_python_env, restore_python_env):
12099 Remove.
12100 * python/python-internal.h (ensure_python_env): Don't declare.
12101 * varobj.h (varobj_ensure_python_env): Don't declare.
12102 * varobj.c (varobj_ensure_python_env): Remove.
12103
12104 2017-01-10 Tom Tromey <tom@tromey.com>
12105
12106 * varobj.c (varobj_value_get_print_value): Use
12107 gdbpy_enter_varobj.
12108
12109 2017-01-10 Tom Tromey <tom@tromey.com>
12110
12111 * python/py-prettyprint.c (print_string_repr, print_children):
12112 Update.
12113 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
12114 of "encoding".
12115 * varobj.c (varobj_value_get_print_value): Update.
12116 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
12117
12118 2017-01-10 Tom Tromey <tom@tromey.com>
12119
12120 * varobj.c (varobj_get_display_hint)
12121 (dynamic_varobj_has_child_method, install_new_value_visualizer)
12122 (varobj_set_visualizer, free_variable): Use
12123 gdbpy_enter_varobj.
12124
12125 2017-01-10 Tom Tromey <tom@tromey.com>
12126
12127 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
12128 (do_finish_initialization): New function. Use gdbpy_ref.
12129 (gdbpy_finish_initialization): Use gdbpy_enter. Call
12130 do_finish_initialization.
12131
12132 2017-01-10 Tom Tromey <tom@tromey.com>
12133
12134 * python/py-param.c (get_set_value, get_show_value): Use
12135 gdbpy_enter, gdbpy_ref.
12136
12137 2017-01-10 Tom Tromey <tom@tromey.com>
12138
12139 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
12140
12141 2017-01-10 Tom Tromey <tom@tromey.com>
12142
12143 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
12144
12145 2017-01-10 Tom Tromey <tom@tromey.com>
12146
12147 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
12148 Use gdbpy_enter_varobj.
12149
12150 2017-01-10 Tom Tromey <tom@tromey.com>
12151
12152 * varobj.c (gdbpy_enter_varobj): New constructor.
12153 * python/python-internal.h (gdbpy_enter_varobj): New class.
12154 * python/py-varobj.c (py_varobj_get_iterator): Use
12155 gdbpy_enter_varobj.
12156
12157 2017-01-10 Tom Tromey <tom@tromey.com>
12158
12159 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
12160 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
12161 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
12162 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
12163 unique_xmalloc_ptr.
12164 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
12165
12166 2017-01-10 Tom Tromey <tom@tromey.com>
12167
12168 * python/py-xmethods.c (invoke_match_method): Use
12169 gdbpy_ref.
12170
12171 2017-01-10 Tom Tromey <tom@tromey.com>
12172
12173 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
12174 gdbpy_enter, gdbpy_ref.
12175
12176 2017-01-10 Tom Tromey <tom@tromey.com>
12177
12178 * python/python.c (python_interactive_command): Use gdbpy_enter.
12179
12180 2017-01-10 Tom Tromey <tom@tromey.com>
12181
12182 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
12183 gdbpy_ref.
12184
12185 2017-01-10 Tom Tromey <tom@tromey.com>
12186
12187 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
12188 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
12189
12190 2017-01-10 Tom Tromey <tom@tromey.com>
12191
12192 * utils.h (htab_deleter): New struct.
12193 (htab_up): New typedef.
12194 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
12195 gdbpy_enter, gdbpy_ref, htab_up.
12196
12197 2017-01-10 Tom Tromey <tom@tromey.com>
12198
12199 * python/py-unwind.c (pending_frame_invalidate): Remove.
12200 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
12201
12202 2017-01-10 Tom Tromey <tom@tromey.com>
12203
12204 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
12205 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
12206
12207 2017-01-10 Tom Tromey <tom@tromey.com>
12208
12209 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
12210
12211 2017-01-10 Tom Tromey <tom@tromey.com>
12212
12213 * python/python.c (gdbpy_eval_from_control_command)
12214 (gdbpy_source_script, gdbpy_run_events)
12215 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
12216 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
12217 gdbpy_enter.
12218
12219 2017-01-10 Tom Tromey <tom@tromey.com>
12220
12221 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
12222
12223 2017-01-10 Tom Tromey <tom@tromey.com>
12224
12225 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
12226
12227 2017-01-10 Tom Tromey <tom@tromey.com>
12228
12229 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
12230 (python_on_inferior_call_pre, python_on_inferior_call_post)
12231 (python_on_memory_change, python_on_register_change)
12232 (python_inferior_exit, python_new_objfile, add_thread_object)
12233 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
12234
12235 2017-01-10 Tom Tromey <tom@tromey.com>
12236
12237 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
12238 (bpfinishpy_handle_exit): Use gdbpy_enter.
12239
12240 2017-01-10 Tom Tromey <tom@tromey.com>
12241
12242 * python/py-cmd.c (cmdpy_destroyer)
12243 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
12244 gdbpy_enter.
12245
12246 2017-01-10 Tom Tromey <tom@tromey.com>
12247
12248 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
12249 gdbpy_enter.
12250 (gdbpy_breakpoint_has_cond): Likewise.
12251
12252 2017-01-10 Tom Tromey <tom@tromey.com>
12253
12254 * python/python.c (gdbpy_enter): New constructor.
12255 (~gdbpy_enter): New destructor.
12256 (restore_python_env, ensure_python_env): Rewrite.
12257 * python/python-internal.h (gdbpy_enter): New class.
12258
12259 2017-01-10 Tom Tromey <tom@tromey.com>
12260
12261 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
12262
12263 2017-01-10 Tom Tromey <tom@tromey.com>
12264
12265 * python/py-value.c (value_has_field, get_field_flag)
12266 (get_field_type, valpy_getitem, convert_value_from_python): Use
12267 gdbpy_ref.
12268
12269 2017-01-10 Tom Tromey <tom@tromey.com>
12270
12271 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
12272 gdbpy_ref.
12273
12274 2017-01-10 Tom Tromey <tom@tromey.com>
12275
12276 * python/py-prettyprint.c (search_pp_list)
12277 (find_pretty_printer_from_objfiles)
12278 (find_pretty_printer_from_progspace)
12279 (find_pretty_printer_from_gdb, find_pretty_printer)
12280 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
12281 gdbpy_ref.
12282
12283 2017-01-10 Tom Tromey <tom@tromey.com>
12284
12285 * python/py-param.c (call_doc_function): Use gdbpy_ref.
12286
12287 2017-01-10 Tom Tromey <tom@tromey.com>
12288
12289 * python/py-linetable.c (build_line_table_tuple_from_pcs)
12290 (ltpy_get_all_source_lines): Use gdbpy_ref.
12291
12292 2017-01-10 Tom Tromey <tom@tromey.com>
12293
12294 * python/py-framefilter.c (extract_sym, extract_value)
12295 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
12296 gdbpy_ref.
12297
12298 2017-01-10 Tom Tromey <tom@tromey.com>
12299
12300 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
12301
12302 2017-01-10 Tom Tromey <tom@tromey.com>
12303
12304 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
12305
12306 2017-01-10 Tom Tromey <tom@tromey.com>
12307
12308 * python/py-function.c (convert_values_to_python, fnpy_init): Use
12309 gdbpy_ref.
12310
12311 2017-01-10 Tom Tromey <tom@tromey.com>
12312
12313 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
12314
12315 2017-01-10 Tom Tromey <tom@tromey.com>
12316
12317 * python/py-type.c (convert_field, make_fielditem, typy_fields)
12318 (typy_range): Use gdbpy_ref.
12319
12320 2017-01-10 Tom Tromey <tom@tromey.com>
12321
12322 * python/py-threadevent.c (create_thread_event_object): Use
12323 gdbpy_ref.
12324 * python/py-stopevent.c (create_stop_event_object): Simplify.
12325 (emit_stop_event): Use gdbpy_ref.
12326 * python/py-signalevent.c (create_signal_event_object): Use
12327 gdbpy_ref.
12328 * python/py-newobjfileevent.c (create_new_objfile_event_object)
12329 (emit_new_objfile_event, create_clear_objfiles_event_object)
12330 (emit_clear_objfiles_event): Use gdbpy_ref.
12331 * python/py-infevents.c (create_inferior_call_event_object)
12332 (create_register_changed_event_object)
12333 (create_memory_changed_event_object, emit_inferior_call_event)
12334 (emit_memory_changed_event, emit_register_changed_event): Use
12335 gdbpy_ref.
12336 * python/py-exitedevent.c (create_exited_event_object)
12337 (emit_exited_event): Use gdbpy_ref.
12338 * python/py-event.h (evpy_emit_event): Remove
12339 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
12340 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
12341 * python/py-continueevent.c (emit_continue_event): Use
12342 gdbpy_ref.
12343 * python/py-breakpoint.c (gdbpy_breakpoint_created)
12344 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
12345 gdbpy_ref.
12346 * python/py-bpevent.c (create_breakpoint_event_object): Use
12347 gdbpy_ref.
12348
12349 2017-01-10 Tom Tromey <tom@tromey.com>
12350
12351 * python/py-ref.h: New file.
12352
12353 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
12354
12355 * cli-out.c (cli_ui_out::do_redirect): Change return type to
12356 void.
12357 * cli-out.h (cli_ui_out::do_redirect): Likewise.
12358 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
12359 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
12360 * ui-out.c (ui_out::redirect): Likewise.
12361 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
12362 * cli/cli-logging.c (set_logging_redirect): Update call site of
12363 ui_out::redirect.
12364 (handle_redirections): Likewise.
12365 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
12366 * top.c (execute_command_to_string): Likewise.
12367 * utils.c (do_ui_out_redirect_pop): Likewise.
12368
12369 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
12370
12371 * stack.c (_initialize_stack): Update "frame" command help message.
12372
12373 2017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
12374
12375 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
12376
12377 2017-01-06 Yao Qi <yao.qi@linaro.org>
12378
12379 * x86-linux-nat.h: Include gdb_proc_service.h.
12380
12381 2017-01-06 Yao Qi <yao.qi@linaro.org>
12382
12383 * ser-base.h: Include serial.h.
12384
12385 2017-01-06 Yao Qi <yao.qi@linaro.org>
12386
12387 * ppc-linux-tdep.h: Include ppc-tdep.h.
12388
12389 2017-01-06 Yao Qi <yao.qi@linaro.org>
12390
12391 * nat/amd64-linux-siginfo.h: Include signal.h.
12392
12393 2017-01-06 Yao Qi <yao.qi@linaro.org>
12394
12395 * nat/aarch64-linux-hw-point.h: Include break-common.h.
12396
12397 2017-01-06 Yao Qi <yao.qi@linaro.org>
12398
12399 * mi/mi-parse.h: Include mi-cmds.h.
12400
12401 2017-01-06 Yao Qi <yao.qi@linaro.org>
12402
12403 * inf-loop.c: Don't include "target.h".
12404 * inf-loop.h: Include it here.
12405
12406 2017-01-06 Yao Qi <yao.qi@linaro.org>
12407
12408 * dfp.h: Include "dboulest.h" and "expression.h".
12409
12410 2017-01-06 Yao Qi <yao.qi@linaro.org>
12411
12412 * ax-gdb.h: Include "ax.h".
12413
12414 2017-01-06 Yao Qi <yao.qi@linaro.org>
12415
12416 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
12417 with nat/gdb_ptrace.h.
12418
12419 2017-01-05 Yao Qi <yao.qi@linaro.org>
12420
12421 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
12422 new line.
12423 (mips64_fbsd_sigframe_init): Likewise.
12424
12425 2017-01-04 John Baldwin <jhb@FreeBSD.org>
12426
12427 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
12428 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
12429
12430 2017-01-04 John Baldwin <jhb@FreeBSD.org>
12431
12432 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
12433 * NEWS: Mention new FreeBSD/mips native configuration.
12434 * config/mips/fbsd.mh: New file.
12435 * configure.host: Add mips*-*-freebsd*.
12436 * mips-fbsd-nat.c: New file.
12437
12438 2017-01-04 John Baldwin <jhb@FreeBSD.org>
12439
12440 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
12441 (ALLDEPFILES): Add mips-fbsd-tdep.c.
12442 * NEWS: Mention new FreeBSD/mips target.
12443 * configure.tgt: Add mips*-*-freebsd*.
12444 * mips-fbsd-tdep.c: New file.
12445 * mips-fbsd-tdep.h: New file.
12446
12447 2017-01-04 Yao Qi <yao.qi@linaro.org>
12448
12449 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
12450 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
12451
12452 2017-01-01 Joel Brobecker <brobecker@adacore.com>
12453
12454 Update copyright year range in all GDB files.
12455
12456 2017-01-01 Joel Brobecker <brobecker@adacore.com>
12457
12458 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
12459
12460 For older changes see ChangeLog-2016.
12461 \f
12462 Local Variables:
12463 mode: change-log
12464 left-margin: 8
12465 fill-column: 74
12466 version-control: never
12467 coding: utf-8
12468 End:
This page took 0.289611 seconds and 4 git commands to generate.