Fix GDB build without expat
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
86766165
SM
12017-10-15 Simon Marchi <simon.marchi@ericsson.com>
2
3 * tracepoint.c (parse_traceframe_info): Return a unique_ptr
4 (the !HAVE_LIBEXPAT version).
5
824dfcc3
SM
62017-10-14 Simon Marchi <simon.marchi@ericsson.com>
7
8 * nat/linux-osdata.c (struct pid_pgid_entry) <operator<>: Make
9 const.
10
2098b393
SM
112017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
12
13 * target.h: Include tracepoint.h.
14 (enum trace_find_type): Move to tracepoint.h.
15 (struct target_ops) <to_traceframe_info>: Return a unique ptr.
16 * tracepoint.h: Don't include target.h
17 (enum trace_find_type): Move from target.h.
18 (parse_traceframe_info): Return a unique ptr.
19 * tracepoint.c (current_traceframe_info): Change type to unique
20 ptr.
21 (free_traceframe_info): Remove.
22 (clear_traceframe_info): Don't manually free
23 current_traceframe_info.
24 (free_result): Remove.
25 (parse_traceframe_info): Return a unique ptr.
26 (get_traceframe_info): Adjust to unique ptr.
27 * ctf.c (ctf_traceframe_info): Return a unique ptr.
28 * remote.c (remote_traceframe_info): Return a unique ptr.
29 * tracefile-tfile.c (tfile_traceframe_info): Return a unique
30 ptr.
31 * target-debug.h (target_debug_print_traceframe_info_up): New
32 macro.
33 * target-delegates.c: Regenerate.
34
4cdd21a8
SM
352017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
36
37 * memrange.h (struct mem_range): Add constructors.
38 * tracepoint.h (struct traceframe_info) <memory>: Change type to
39 std::vector<mem_range>.
40 * tracepoint.c (free_traceframe_info): Don't manually free
41 vector.
42 (traceframe_info_start_memory): Adjust to vector change.
43 (traceframe_available_memory): Likewise.
44 * tracefile-tfile.c (build_traceframe_info): Likewise.
45 * ctf.c (ctf_traceframe_info): Likewise.
46
d0d292a2
SM
472017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
48
49 * tracepoint.h (struct traceframe_info) <tvars>: Change type to
50 std::vector<int>.
51 * tracepoint.c (free_traceframe_info): Deallocate with delete.
52 (traceframe_info_start_tvar): Adjust to vector change.
53 (parse_traceframe_info): Allocate with new.
54 * ctf.c (ctf_traceframe_info): Allocate with new, adjust to
55 vector change.
56 * tracefile-tfile.c (build_traceframe_info): Adjust to vector
57 change.
58 tfile_traceframe_info): Allocate with new.
59 * mi/mi-main.c (mi_cmd_trace_frame_collected): Adjust to vector
60 change.
61
8d3c73ef
SM
622017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
63
64 * tracepoint.c (traceframe_info): Rename to...
65 (current_traceframe_info): ...this.
66 (clear_traceframe_info): Adjust.
67 (get_traceframe_info): Adjust.
68
b129dcac
SM
692017-10-14 Simon Marchi <simon.marchi@ericsson.com>
70
71 * nat/linux-osdata.c: Include algorithm.
72 (compare_processes): Remove.
73 (struct pid_pgid_entry): New struct.
74 (linux_xfer_osdata_processgroups): Use std::vector instead of
75 XNEWVEC.
76
af5bf4ad
SM
772017-10-14 Simon Marchi <simon.marchi@ericsson.com>
78
79 * objfiles.h: Don't include symfile.h.
80 (struct partial_symbol): Remove forward-declaration.
81 (struct objfile) <global_psymbols, static_psymbols>: Change type
82 to std::vector<partial_symbol *>.
83 * objfiles.c (objfile::objfile): Don't memset those fields.
84 (objfile::~objfile): Don't free those fields.
85 * psympriv.h (struct psymbol_allocation_list): Remove
86 forward-declaration.
87 (add_psymbol_to_list): Change psymbol_allocation_list parameter
88 to std::vector.
89 (start_psymtab_common): Change parameters to std::vector.
90 * psymtab.c: Include algorithm.
91 (require_partial_symbols): Call shrink_to_fit.
92 (find_pc_sect_psymbol): Adjust to vector change.
93 (match_partial_symbol): Likewise.
94 (lookup_partial_symbol): Likewise.
95 (psym_relocate): Likewise.
96 (dump_psymtab): Likewise.
97 (recursively_search_psymtabs): Likewise.
98 (compare_psymbols): Remove.
99 (sort_pst_symbols): Adjust to vector change.
100 (start_psymtab_common): Likewise.
101 (end_psymtab_common): Likewise.
102 (psymbol_bcache_full): De-constify return value.
103 (add_psymbol_to_bcache): Likewise.
104 (extend_psymbol_list): Remove.
105 (append_psymbol_to_list): Adjust to vector change.
106 (add_psymbol_to_list): Likewise.
107 (init_psymbol_list): Likewise.
108 (maintenance_info_psymtabs): Likewise.
109 (maintenance_check_psymtabs): Likewise.
110 * symfile.h (struct psymbol_allocation_list): Remove.
111 * symfile.c (reread_symbols): Adjust to vector change.
112 * dbxread.c (start_psymtab): Change type of parameters.
113 (dbx_symfile_read): Adjust to vector change.
114 (read_dbx_symtab): Likewise.
115 (start_psymtab): Change type of parameters.
116 * dwarf2read.c (dwarf2_build_psymtabs): Adjust to vector change.
117 (create_partial_symtab): Likewise.
118 (add_partial_symbol): Likewise.
119 (write_one_signatured_type): Likewise.
120 (recursively_write_psymbols): Likewise.
121 * mdebugread.c (parse_partial_symbols): Likewise.
122 * xcoffread.c (xcoff_start_psymtab): Change type of parameters.
123 (scan_xcoff_symtab): Adjust to vector change.
124 (xcoff_initial_scan): Likewise.
125
3ec5942f
SM
1262017-10-13 Simon Marchi <simon.marchi@ericsson.com>
127
128 * ada-typeprint.c (print_dynamic_range_bound): Use std::string.
129
2399fe6a
YQ
1302017-10-13 Yao Qi <yao.qi@linaro.org>
131
132 * features/Makefile: Remove tic6x-*-expedite, add tic6x-expedite.
133 Remove s390x-*-expedite, add s390x-expedite.
134
4bf3f4a8
YQ
1352017-10-13 Yao Qi <yao.qi@linaro.org>
136
137 * features/s390-gs-linux64.c: Regenerated.
138 * features/s390x-gs-linux64.c: Regenerated.
139
9e86da07
TT
1402017-10-13 Tom Tromey <tom@tromey.com>
141
142 * compile/compile-object-run.c (do_module_cleanup): Use delete.
143 * solib.c (update_solib_list, reload_shared_libraries_1): Use
144 delete.
145 * symfile.c (symbol_file_add_with_addrs): Use new.
146 (symbol_file_add_separate): Update comment.
147 (syms_from_objfile_1, remove_symbol_file_command): Use delete.
148 * jit.c (jit_object_close_impl): Use new.
149 (jit_unregister_code): Use delete.
150 * objfiles.c (objfile::objfile): Rename from allocate_objfile.
151 (~objfile): Rename from free_objfile.
152 (free_objfile_separate_debug, do_free_objfile_cleanup)
153 (free_all_objfiles, objfile_purge_solibs): Use delete.
154 * objfiles.h (struct objfile): Add constructor and destructor.
155 Use DISABLE_COPY_AND_ASSIGN. Add initializers to data members.
156 (allocate_objfile, free_objfile): Don't declare.
157 (struct objstats): Add initializers.
158
c2508e90
SM
1592017-10-12 Simon Marchi <simon.marchi@ericsson.com>
160
161 * arch-utils.h (simple_displaced_step_copy_insn): Remove.
162 * arch-utils.c (simple_displaced_step_copy_insn): Remove.
163 * gdbarch.sh (displaced_step_copy_insn): Adjust comment.
164 * gdbarch.h: Regenerate.
165 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
166 Adjust comment.
167 * i386-tdep.c (i386_displaced_step_copy_insn): Adjust comment.
168 (i386_displaced_step_fixup): Adjust comment.
169 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Adjust comment.
170
a900ff72
TT
1712017-10-12 Tom Tromey <tom@tromey.com>
172
173 * prologue-value.h (pv_area::store_would_trash): Return bool.
174 (pv_area::find_reg): Likewise.
175 * prologue-value.c (pv_area::store_would_trash): Return bool.
176 (pv_area::find_reg): Likewise.
177
f7b7ed97
TT
1782017-10-12 Tom Tromey <tom@tromey.com>
179
180 * s390-linux-tdep.c (s390_store, s390_load)
181 (s390_check_for_saved, s390_analyze_prologue): Update.
182 * rx-tdep.c (check_for_saved, rx_analyze_prologue): Update.
183 * rl78-tdep.c (rl78_analyze_prologue, check_for_saved): Update.
184 * prologue-value.h (class pv_area): Move from prologue-value.c.
185 Change names of members. Add constructor, destructor, member
186 functions.
187 (make_pv_area, free_pv_area, make_cleanup_free_pv_area)
188 (pv_area_store, pv_area_fetch, pv_area_store_would_trash)
189 (pv_area_fetch, pv_area_scan): Don't declare.
190 * prologue-value.c (struct pv_area::area_entry): Now member of
191 pv_area.
192 (struct pv_area): Move to prologue-value.h.
193 (pv_area::pv_area): Rename from make_pv_area.
194 (pv_area::~pv_area): Rename from free_pv_area.
195 (do_free_pv_area_cleanup, make_cleanup_free_pv_area): Remove.
196 (clear_entries, find_entry, overlaps, store_would_trash, store)
197 (fetch, find_reg, scan): Now member of pv_area.
198 Remove "area" argument. Update.
199 * msp430-tdep.c (check_for_saved, msp430_analyze_prologue):
200 Update.
201 * mn10300-tdep.c (push_reg, check_for_saved)
202 (mn10300_analyze_prologue): Update.
203 * mep-tdep.c (is_arg_spill, check_for_saved)
204 (mep_analyze_prologue): Update.
205 * m32c-tdep.c (m32c_pv_push, m32c_srcdest_fetch)
206 (m32c_srcdest_store, m32c_pv_enter, m32c_is_arg_spill)
207 (m32c_is_struct_return, m32c_analyze_prologue): Update.
208 * arm-tdep.c (thumb_analyze_prologue, arm_analyze_prologue):
209 Update.
210 * arc-tdep.c (arc_is_in_prologue, arc_analyze_prologue): Update.
211 * aarch64-tdep.c (aarch64_analyze_prologue): Update.
212
466eecee
SM
2132017-10-12 Simon Marchi <simon.marchi@ericsson.com>
214
215 * linux-nat.h (linux_nat_set_delete_thread): New declaration.
216 * linux-nat.c (linux_nat_delete_thread): New variable.
217 (lwp_free): Invoke linux_nat_delete_thread if set.
218 (linux_nat_set_delete_thread): New function.
219 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Assign
220 thread delete callback.
221 * arm-linux-nat.c (arm_linux_delete_thread): New function.
222 (_initialize_arm_linux_nat): Assign thread delete callback.
223 * s390-linux-nat.c (s390_delete_thread): New function.
224 (_initialize_s390_nat): Assign thread delete callback.
225 * x86-linux-nat.c (x86_linux_add_target): Likewise.
226 * nat/aarch64-linux.c (aarch64_linux_delete_thread): New
227 function.
228 * nat/aarch64-linux.h (aarch64_linux_delete_thread): New
229 declaration.
230 * nat/x86-linux.c (x86_linux_delete_thread): New function.
231 * nat/x86-linux.h (x86_linux_delete_thread): New declaration.
232
f71c8822
TT
2332017-10-09 Tom Tromey <tom@tromey.com>
234
235 * tui/tui-win.c (tui_set_win_height, parse_scrolling_args): Use
236 std::string.
237 * tui/tui-layout.c (enum tui_status): Use std::string.
238
981a3fb3
TT
2392017-10-11 Tom Tromey <tom@tromey.com>
240
241 * gdbthread.h (thread_command): Constify.
242 * inferior.h (detach_command): Constify.
243 * top.h (set_history, show_history): Constify.
244 * arm-tdep.c (set_arm_command, show_arm_command): Constify.
245 * serial.c (serial_set_cmd, serial_show_cmd): Constify.
246 * bsd-kvm.c (bsd_kvm_cmd): Constify.
247 * printcmd.c (set_command): Constify.
248 (non_const_set_command): New function.
249 * dcache.c (set_dcache_command, show_dcache_command): Constify.
250 * breakpoint.c (enable_command, disable_command, delete_command)
251 (catch_command, tcatch_command, set_breakpoint_cmd)
252 (show_breakpoint_cmd): Constify.
253 * macrocmd.c (macro_command): Constify.
254 * infcmd.c (unset_command, kill_command, detach_command)
255 (info_proc_cmd): Constify.
256 * i386-tdep.c (set_mpx_cmd, show_mpx_cmd): Constify.
257 * auto-load.c (show_auto_load_cmd, set_auto_load_cmd)
258 (info_auto_load_cmd): Constify.
259 * target-descriptions.c (set_tdesc_cmd, show_tdesc_cmd)
260 (unset_tdesc_cmd): Constify.
261 * ada-lang.c (set_ada_command, show_ada_command)
262 (maint_set_ada_cmd, maint_show_ada_cmd): Constify.
263 * guile/guile.c (set_guile_command, show_guile_command)
264 (info_guile_command): Constify.
265 * tui/tui-win.c (tui_command, set_tui_cmd, show_tui_cmd):
266 Constify.
267 * skip.c (skip_command): Constify.
268 * compile/compile.c (_initialize_compile): Constify.
269 * dwarf2read.c (set_dwarf_cmd, show_dwarf_cmd): Constify.
270 * btrace.c (maint_btrace_cmd, maint_btrace_set_cmd)
271 (maint_btrace_show_cmd, maint_btrace_pt_set_cmd)
272 (maint_btrace_pt_show_cmd): Constify.
273 * remote.c (set_remote_cmd, show_remote_cmd, remote_command):
274 Constify.
275 * python/python.c (user_show_python, user_set_python): Constify.
276 * mips-tdep.c (set_mips_command, show_mips_command)
277 (set_mipsfpu_command): Constify.
278 * record-btrace.c (cmd_record_btrace_start)
279 (cmd_set_record_btrace, cmd_show_record_btrace)
280 (cmd_set_record_btrace_bts, cmd_show_record_btrace_bts)
281 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): Constify.
282 * rs6000-tdep.c (set_powerpc_command, show_powerpc_command):
283 Constify.
284 * symfile.c (overlay_command): Constify.
285 * spu-tdep.c (set_spu_command, show_spu_command): Constify.
286 * cli/cli-logging.c (set_logging_command, show_logging_command):
287 Constify.
288 * cli/cli-dump.c (dump_command, append_command)
289 (srec_dump_command, ihex_dump_command, verilog_dump_command)
290 (tekhex_dump_command, binary_dump_command)
291 (binary_append_command): Constify.
292 * cli/cli-decode.c (struct cmd_list_element): Change type of
293 "fun".
294 * cli/cli-cmds.c (info_command, show_command, set_debug)
295 (show_debug): Constify.
296 (show_command): Add non-const overload.
297 * top.c (set_history, show_history): Constify.
298 * sh-tdep.c (set_sh_command, show_sh_command): Constify.
299 * command.h (add_prefix_cmd): Accept a cmd_const_cfunc_ftype.
300 * target.c (target_command): Constify.
301 * sparc64-tdep.c (info_adi_command): Constify.
302 * record-full.c (cmd_record_full_start): Constify.
303 (set_record_full_command): Constify. Fix typo.
304 (show_record_full_command): Constify.
305 * thread.c (thread_command, thread_apply_command): Constify.
306 * memattr.c (dummy_cmd): Constify.
307 * value.c (function_command): Constify.
308 * frame.c (set_backtrace_cmd, show_backtrace_cmd): Constify.
309 * probe.c (info_probes_command): Constify.
310 * ser-tcp.c (set_tcp_cmd, show_tcp_cmd): Constify.
311 * gnu-nat.c (set_task_cmd, show_task_cmd, set_thread_cmd)
312 (show_thread_cmd, set_thread_default_cmd)
313 (show_thread_default_cmd): Constify.
314 (check_empty): Constify.
315 * tracepoint.c (tfind_command): Constify.
316 * cp-support.c (maint_cplus_command): Constify.
317 * windows-tdep.c (info_w32_command): Constify.
318 * record.c (cmd_record_start, set_record_command)
319 (show_record_command, info_record_command, cmd_record_goto):
320 Constify.
321 * ravenscar-thread.c (set_ravenscar_command)
322 (show_ravenscar_command): Constify.
323 * utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
324 Constify.
325 (add_internal_problem_command): Remove casts.
326 * arc-tdep.c (maintenance_print_arc_command): Constify.
327 * valprint.c (set_print, show_print, set_print_raw)
328 (show_print_raw): Constify.
329 * maint.c (maintenance_command, maintenance_info_command)
330 (maintenance_print_command, maintenance_set_cmd)
331 (maintenance_show_cmd, set_per_command_cmd)
332 (show_per_command_cmd, maintenance_check_command): Constify.
333 * language.c (set_check, show_check): Constify.
334 * typeprint.c (show_print_type, set_print_type): Constify.
335 * go32-nat.c (go32_info_dos_command): Constify.
336
fdf44873
TT
3372017-10-11 Tom Tromey <tom@tromey.com>
338
339 * breakpoint.c (prepare_re_set_context): Remove.
340 (breakpoint_re_set_one): Update. Don't use cleanups.
341 (breakpoint_re_set): Use scoped_restore, std::string, and
342 scoped_restore_current_language.
343
81b1e71c
TT
3442017-10-11 Tom Tromey <tom@tromey.com>
345
346 * breakpoint.c (commands_command_1): Use std::string.
347 (cleanup_executing_breakpoints): Remove.
348 (bpstat_do_actions_1): Use scoped_restore.
349 (bpstat_check_watchpoint): Use std::string.
350 (decode_static_tracepoint_spec): Likewise.
351 (break_range_command): Likewise.
352 (watch_command_1): Likewise.
353 (compare_breakpoints): Change argument types.
354 (clear_command): Use std::vector.
355 (cleanup_executing_breakpoints): Remove.
356 (update_global_location_list): Use unique_xmalloc_ptr.
357 (strace_command): Remove unused declaration.
358
4f9d9906
JB
3592017-10-11 John Baldwin <jhb@FreeBSD.org>
360
361 * Makefile.in (ALLDEPFILES): Add arm-fbsd-nat.c.
362 * NEWS: Mention new FreeBSD/arm native configuration.
363 * configure.host: Add arm*-*-freebsd*.
364 * configure.nat: Likewise.
365 * arm-fbsd-nat.c: New file.
366
7176dfd2
JB
3672017-10-11 John Baldwin <jhb@FreeBSD.org>
368
369 * Makefile.in (ALL_TARGET_OBS): Add arm-fbsd-tdep.o.
370 (ALLDEPFILES): Add arm-fbsd-tdep.c.
371 * NEWS: Mention new FreeBSD/arm target.
372 * configure.tgt: Add arm*-*-freebsd*.
373 * arm-fbsd-tdep.c: New file.
374 * arm-fbsd-tdep.h: New file.
375
fe220226
MR
3762017-10-11 Maciej W. Rozycki <macro@imgtec.com>
377
378 * linux-tdep.c (linux_make_corefile_notes): Remove call to
379 `gdbarch_elfcore_write_linux_prpsinfo'.
380 * gdbarch.sh (elfcore_write_linux_prpsinfo): Remove architecture
381 method.
382 (elf_internal_linux_prpsinfo): Remove declaration.
383 * gdbarch.h: Regenerate.
384 * gdbarch.c: Regenerate.
385
a2f63b2e
MR
3862017-10-11 Maciej W. Rozycki <macro@imgtec.com>
387
388 * ppc-linux-tdep.c (ppc_linux_init_abi): Remove call to
389 `set_gdbarch_elfcore_write_linux_prpsinfo'.
390
458ca1d0
PA
3912017-10-11 Pedro Alves <palves@redhat.com>
392
393 * breakpoint.c (reattach_breakpoints): Delete.
394 * breakpoint.h (reattach_breakpoints): Delete.
395
905014d7
SM
3962017-10-11 Simon Marchi <simon.marchi@ericsson.com>
397
398 * symfile.c (registered_sym_fns): Make struct, not typedef.
399 (DEF_VEC_O (registered_sym_fns)): Remove.
400 (symtab_fns): Change type to std::vector.
401 (add_symtab_fns): Adjust.
402 (find_sym_fns): Adjust.
403
56d704da
AK
4042017-10-11 Anton Kolesov <Anton.Kolesov@synopsys.com>
405
406 * arc-tdep.c (arc_gdbarch_init): Pass proper cpu value to disassembler.
407 * arc-tdep.h (arc_arch_is_em): New function.
408 (arc_arch_is_hs): Likewise.
409
7fa29be9
EB
4102017-10-11 Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
411
412 * macrotab.h (macro_lookup_inclusion): Remove unnecessary
413 parentheses in the declaration.
414 (macro_lookup_inclusion): Likewise.
415 (macro_lookup_definition): Likewise.
416 * p-lang.h (pascal_builtin_types): Likewise.
417 * tui/tui-data.c (tui_win_list): Likewise.
418 * tui/tui-data.h (tui_win_list): Likewise.
419 * utils.h (make_cleanup_free_section_addr_info): Likewise.
420
d9b477e3
KB
4212017-10-11 Mark Rages <markrages@gmail.com>
422
423 * target-memory.c (block_boundaries): Fix for block address not
424 aligned on block size.
425
65630365
PA
4262017-10-10 Pedro Alves <palves@redhat.com>
427 Tom Tromey <tom@tromey.com>
428
429 * breakpoint.c (struct captured_breakpoint_query_args)
430 (do_captured_breakpoint_query, gdb_breakpoint_query): Delete.
431 (print_breakpoint): New.
432 * breakpoint.h (print_breakpoint): Declare.
433 * common/common-exceptions.h (enum return_reason): Remove
434 references to catch_exceptions.
435 * exceptions.c (catch_exceptions, catch_exceptions_with_msg):
436 Delete.
437 * exceptions.h (catch_exceptions_ftype, catch_exceptions)
438 (catch_exception_ftype, catch_exceptions_with_msg): Delete.
439 * gdb.h: Delete.
440 * gdbthread.h (thread_select): Declare.
441 * mi/mi-cmd-break.c: Don't include gdb.h.
442 (breakpoint_notify): Use print_breakpoint.
443 * mi/mi-cmd-catch.c: Don't include gdb.h.
444 * mi/mi-interp.c: Don't include gdb.h.
445 (mi_print_breakpoint_for_event): New.
446 (mi_breakpoint_created, mi_breakpoint_modified): Use
447 mi_print_breakpoint_for_event.
448 * mi/mi-main.c: Don't include gdb.h.
449 (mi_cmd_thread_select): Parse the global thread ID here. Use
450 thread_select instead of gdb_thread_select.
451 (mi_cmd_thread_list_ids): Output "thread-ids" tuple here instead
452 of using gdb_list_thread_ids.
453 * remote-fileio.c (do_remote_fileio_request): Change type. Reply
454 FILEIO_ENOSYS here.
455 (remote_fileio_request): Use TRY/CATCH instead of
456 catch_exceptions.
457 * symfile-mem.c (struct symbol_file_add_from_memory_args)
458 (symbol_file_add_from_memory_wrapper): Delete.
459 (add_vsyscall_page): Use TRY/CATCH instead of catch_exceptions.
460 * thread.c: Don't include gdb.h.
461 (do_captured_list_thread_ids, gdb_list_thread_ids): Delete.
462 (thread_alive): Use thread_select.
463 (do_captured_thread_select): Delete, parts salvaged as ...
464 (thread_select): ... this new function.
465 (gdb_thread_select): Delete.
466
bf469271
PA
4672017-10-10 Pedro Alves <palves@redhat.com>
468 Tom Tromey <tom@tromey.com>
469
470 * breakpoint.c (breakpoint_cond_eval): Change return type to bool
471 and reverse logic.
472 (WP_DELETED, WP_VALUE_CHANGED, WP_VALUE_NOT_CHANGED, WP_IGNORE):
473 No longer macros. Instead ...
474 (enum wp_check_result): They're now values of this new
475 enumeration.
476 (watchpoint_check): Change return type to wp_check_result and
477 parameter type to bpstat.
478 (bpstat_check_watchpoint): Use TRY/CATCH instead of catch_errors.
479 (bpstat_check_breakpoint_conditions): Use TRY/CATCH instead of
480 catch_errors. Reverse logic of watchpoint_check call.
481 (breakpoint_re_set_one): Now returns void and takes a breakpoint
482 pointer as parameter.
483 (breakpoint_re_set): Use TRY/CATCH instead of catch_errors.
484 * common/common-exceptions.c (throw_exception_sjlj): Update
485 comments to avoid mentioning catch_errors.
486 * exceptions.c (catch_errors): Delete.
487 * exceptions.h: Update comments to avoid mentioning catch_errors.
488 (catch_errors_ftype, catch_errors): Delete.
489 * infrun.c (normal_stop): Use TRY/CATCH instead of catch_errors.
490 (hook_stop_stub): Delete.
491 (restore_selected_frame): Change return type to void, and
492 parameter type to const frame_id &.
493 (restore_infcall_control_state): Use TRY/CATCH instead of
494 catch_errors.
495 * main.c (captured_command_loop): Return void and remove
496 parameter. Remove references to catch_errors.
497 (captured_main): Use TRY/CATCH instead of catch_errors.
498 * objc-lang.c (objc_submethod_helper_data)
499 (find_objc_msgcall_submethod_helper): Delete.
500 (find_objc_msgcall_submethod): Use TRY/CATCH instead of
501 catch_errors.
502 * record-full.c (record_full_message): Return void.
503 (record_full_message_args, record_full_message_wrapper): Delete.
504 (record_full_message_wrapper_safe): Return bool and use TRY/CATCH
505 instead of catch_errors.
506 * solib-aix.c (solib_aix_open_symbol_file_object): Change
507 parameter type to int.
508 * solib-darwin.c (open_symbol_file_object): Ditto.
509 * solib-dsbt.c (open_symbol_file_object): Ditto.
510 * solib-frv.c (open_symbol_file_object): Ditto.
511 * solib-svr4.c (open_symbol_file_object): Ditto.
512 * solib-target.c (solib_target_open_symbol_file_object): Ditto.
513 * solib.c (update_solib_list): Use TRY/CATCH instead of
514 catch_errors.
515 * solist.h (struct target_so_ops) <open_symbol_file_object>:
516 Change type.
517 * symmisc.c (struct print_symbol_args): Remove.
518 (dump_symtab_1): Use TRY/CATCH instead of catch_errors.
519 (print_symbol): Change type.
520 * windows-nat.c (handle_load_dll, handle_unload_dll): Return void
521 and remove parameters.
522 (catch_errors): New.
523 (get_windows_debug_event): Adjust.
524
1a56bfa5
TT
5252017-10-09 Tom Tromey <tom@tromey.com>
526
527 * mi/mi-main.c (free_splay_tree): Remove.
528 (list_available_thread_groups): Use splay_tree_up.
529 * common/gdb_splay_tree.h: New file.
530
0c478e2d
TT
5312017-10-09 Tom Tromey <tom@tromey.com>
532
533 * mi/mi-main.c (do_nothing): Remove.
534 (list_available_thread_groups): Update.
535
cbd2b4e3
PA
5362017-10-09 Pedro Alves <palves@redhat.com>
537
538 * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>: Skip
539 reading registers when switching context.
540
a181c0bf
JB
5412017-10-09 John Baldwin <jhb@FreeBSD.org>
542
543 * fbsd-nat.c (fbsd_siginfo_size): Use gdbarch_long_bit.
544 (fbsd_convert_siginfo): Likewise.
545 * fbsd-tdep.c (fbsd_core_xfer_siginfo): Likewise.
546
6e66f753
SM
5472017-10-09 Simon Marchi <simon.marchi@polymtl.ca>
548
549 * configure.ac (try_guile_versions): Remove guile-2.2.
550 * configure: Regenerate.
551
890e9790
TT
5522017-10-09 Tom Tromey <tom@tromey.com>
553
554 * Makefile.in (COMPILE.post, POSTCOMPILE): Restore $(basename).
555 (COMPILE.pre): Use $(CXX).
556
109483d9
PA
5572017-10-09 Pedro Alves <palves@redhat.com>
558
559 * cp-support.c (cp_remove_params): Return a gdb::unique_xmalloc_ptr.
560 Use bool.
561 (overload_list_add_symbol): Adjust to use gdb::unique_xmalloc_ptr.
562 * cp-support.h (cp_remove_params): Now returns a
563 gdb::unique_xmalloc_ptr.
564 * dwarf2read.c (find_slot_in_mapped_hash): Now returns bool.
565 Adjust to cp_remove_params returning a gdb::unique_xmalloc_ptr.
566 * psymtab.c (psymtab_search_name): Adjust to cp_remove_params
567 returning a gdb::unique_xmalloc_ptr.
568 (lookup_partial_symbol): Adjust to use gdb::unique_xmalloc_ptr.
569 * stack.c (find_frame_funname): Adjust to cp_remove_params
570 returning a gdb::unique_xmalloc_ptr.
571
791afaa2
TT
5722017-10-08 Tom Tromey <tom@tromey.com>
573
574 * dwarf2read.c (dwarf2_get_dwz_file): Use
575 gdb::unique_xmalloc_ptr.
576 (find_slot_in_mapped_hash): Likewise.
577 (dwarf2_physname): Likewise.
578 (create_dwo_unit_in_dwp_v1): Use std::string.
579 (create_dwo_unit_in_dwp_v2): Likewise.
580 (lookup_dwo_cutu): Likewise.
581 (inherit_abstract_dies): Use std::vector.
582 (read_array_type): Likewise.
583 (dwarf_decode_macros): Remove unused declaration.
584 (unsigned_int_compar): Remove.
585 (dwarf2_build_psymtabs_hard): Use scoped_restore.
586 (psymtabs_addrmap_cleanup): Remove.
587
30a9c02f
TT
5882017-10-08 Tom Tromey <tom@tromey.com>
589
590 * frame-unwind.c (frame_unwind_try_unwinder): Update.
591 * frame.h (frame_cleanup_after_sniffer): Declare.
592 (frame_prepare_for_sniffer): Return void.
593 * frame.c (frame_cleanup_after_sniffer): No longer static. Change
594 type of argument.
595 (frame_prepare_for_sniffer): Return void.
596
757325a3
TT
5972017-10-08 Tom Tromey <tom@tromey.com>
598
599 * utils.h (make_cleanup_value_free): Remove.
600 * utils.c (do_value_free, struct cleanup): Remove.
601 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_STACK>:
602 Use gdb_value_up.
603 * value.h (struct value_deleter): New.
604 (gdb_value_up): New typedef.
605
b9c04fb2
TT
6062017-10-08 Tom Tromey <tom@tromey.com>
607
608 * symtab.c (free_search_symbols, do_free_search_symbols_cleanup)
609 (make_cleanup_free_search_symbols): Remove.
610 (search_symbols): Return std::vector.
611 (symbol_search::compare_search_syms): Now member of
612 symbol_search. Change arguments.
613 (sort_search_symbols_remove_dups): Change arguments. Rewrite.
614 (symtab_symbol_info, rbreak_command): Update.
615 * symtab.h (struct symbol_search) <next>: Remove.
616 Add constructors.
617 (symbol_search::operator<): New function.
618 (symbol_search::operator==): New function.
619 (search_symbols): Remove std::vector.
620 (free_search_symbols, make_cleanup_free_search_symbols): Remove.
621 (symbol_search::compare_search_syms): Declare.
622
0d28b0a5
YQ
6232017-10-06 Yao Qi <yao.qi@linaro.org>
624
625 * Makefile.in (ALL_64_TARGET_OBS): Replace aarch64-insn.o with
626 arch/aarch64-insn.o.
627 Remove one rule.
628 * configure.tgt: Replace aarch64-insn.o with arch/aarch64-insn.o.
629
71917808
YQ
6302017-10-06 Yao Qi <yao.qi@linaro.org>
631
632 * Makefile.in (ALL_TARGET_OBS): Replace arm.o, arm-get-next-pcs.o,
633 and arm-linux.o with arch/arm.o, arch/arm-get-next-pcs.o and
634 arch/arm-linux.o respectively.
635 * configure.tgt: Likewise.
636
2081b2b2
YQ
6372017-10-06 Yao Qi <yao.qi@linaro.org>
638
639 * Makefile.in (ALL_TARGET_OBS): Rename i386.o to arch/i386.o.
640 * configure.tgt (i386_tobjs): Replace i386.o with arch/i386.o.
641
a1b85d28
PA
6422017-10-06 Pedro Alves <palves@redhat.com>
643
644 * windows-nat.c: Include <algorithm>.
645
d97987e2
YQ
6462017-10-06 Yao Qi <yao.qi@linaro.org>
647
648 * configure.tgt (i386_tobjs): New variable.
649 (amd64_tobjs): New variable.
650 Set $cpu_obs and $os_obs.
651
f38307f5
YQ
6522017-10-06 Yao Qi <yao.qi@linaro.org>
653
654 * Makefile.in (CONFIG_SRC_SUBDIR): New.
655 (ALL_64_TARGET_OBS): Replace amd64.o with arch/amd64.o.
656 (clean): Remove object files and dependency files.
657 (distclean): Remove the directory.
658 * configure.ac: Invoke AC_CONFIG_COMMANDS.
659 * configure: Re-generated.
660 * configure.tgt: Replace amd64.o with arch/amd64.o.
661
2f924de6
JM
6622017-10-05 Jose E. Marchesi <jose.marchesi@oracle.com>
663
664 PR build/22188
665 * arm-tdep.c (arm_decode_misc_memhint_neon): Fix decoding of CPS
666 and SETEND.
667
2fd9d7ca
PA
6682017-10-05 Pedro Alves <palves@redhat.com>
669
670 * linux-nat.c (linux_child_follow_fork): When following the parent
671 and detaching the child, consult the parent thread's architecture
672 instead of the child's.
673
d13b8493
UW
6742017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
675
676 * ax.h: Do not include "doublest.h".
677 (union agent_val): Remove.
678
3b4b2f16
UW
6792017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
680
681 * dfp.h (MAX_DECIMAL_STRING): Move to dfp.c.
682 (decimal_to_string): Return std::string object.
683 (decimal_from_string): Accept std::string object. Return bool.
684 (decimal_from_integral, decimal_from_doublest): Remove.
685 (decimal_from_longest): Add prototype.
686 (decimal_from_ulongest): Likewise.
687 (decimal_to_longest): Likewise.
688 (decimal_from_doublest): Likewise.
689 * dfp.c: Do not include "gdbtypes.h" or "value.h".
690 (MAX_DECIMAL_STRING): Move here.
691 (decimal_to_string): Return std::string object.
692 (decimal_from_string): Accept std::string object. Return bool.
693 (decimal_from_integral): Remove, replace by ...
694 (decimal_from_longest, decimal_from_ulongest): ... these new functions.
695 (decimal_to_longest): New function.
696 (decimal_from_floating): Remove, replace by ...
697 (decimal_from_doublest): ... this new function.
698 (decimal_to_doublest): Update to new decimal_to_string interface.
699
700 * value.c (unpack_long): Use decimal_to_longest.
701 * valops.c (value_cast): Use decimal_from_doublest instead of
702 decimal_from_floating. Use decimal_from_[u]longest isntead of
703 decimal_from_integral.
704 * valarith.c (value_args_as_decimal): Likewise.
705 * valprint.c (print_decimal_floating): Update to new
706 decimal_to_string interface.
707 * printcmd.c (printf_decfloat): Likewise.
708 * c-exp.y (parse_number): Update to new decimal_from_string interface.
709
1841ee5d
UW
7102017-10-05 Ulrich Weigand <uweigand@de.ibm.com>
711
712 * doublest.h: Do not include "floatformat.h". Remove stale comments.
713 * gdbtypes.c: Include "floatformat.h".
714 * value.c: Likewise.
715 * m68k-tdep.c: Likewise.
716
717 * findvar.c: Do not include "floatformat.h".
718 * amd64-darwin-tdep.c: Likewise.
719 * arm-linux-tdep.c: Likewise.
720 * i386-darwin-tdep.c: Likewise.
721 * i387-tdep.c: Likewise.
722 * m68k-linux-tdep.c: Likewise.
723 * mep-tdep.c: Likewise.
724 * mips-tdep.c: Likewise.
725 * nios2-tdep.c: Likewise.
726 * s390-linux-tdep.c: Likewise.
727 * sparc-obsd-tdep.c: Likewise.
728 * sparc-tdep.c: Likewise.
729 * sparc64-tdep.c: Likewise.
730 * spu-tdep.c: Likewise.
731 * tic6x-tdep.c: Likewise.
732 * tilegx-tdep.c: Likewise.
733 * vax-tdep.c: Likewise.
734 * xstormy16-tdep.c: Likewise.
735 * xtensa-tdep.c: Likewise.
736
737 * top.c: Do not include "doublest.h".
738 * aarch64-tdep.c: Likewise.
739 * alpha-tdep.c: Likewise.
740 * arm-linux-tdep.c: Likewise.
741 * m68k-linux-tdep.c: Likewise.
742 * tilegx-tdep.c: Likewise.
743 * xstormy16-tdep.c: Likewise.
744
a80a6471
JB
7452017-10-05 John Baldwin <jhb@FreeBSD.org>
746
747 * mips-fbsd-tdep.c (MIPS_INST_ADDIU_A0_SP_N32): Define.
748 (mipsn32_fbsd_sigframe): Define.
749 (mips_fbsd_init_abi): Install mipsn32_fbsd_sigframe unwinder
750 for FreeBSD/mipsn32.
751
12c4bd7f
JB
7522017-10-05 John Baldwin <jhb@FreeBSD.org>
753
754 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_EHDRFLAGS and
755 AT_HWCAP.
756
c91933e9
TG
7572017-10-05 Tristan Gingold <tgingold@free.fr>
758
759 * MAINTAINERS (Misc): Update my email address.
760
5cd63fda
PA
7612017-10-04 Pedro Alves <palves@redhat.com>
762
763 * remote.c (get_remote_arch_state): New 'gdbarch' parameter. Use
764 it instead of target_gdbarch.
765 (get_remote_state, get_remote_packet_size): Adjust
766 get_remote_arch_state calls, passing down target_gdbarch
767 explicitly.
768 (packet_reg_from_regnum, packet_reg_from_pnum): New parameter
769 'gdbarch' and use it instead of target_gdbarch.
770 (get_memory_packet_size): Adjust get_remote_arch_state calls,
771 passing down target_gdbarch explicitly.
772 (struct stop_reply) <arch>: New field.
773 (remote_parse_stop_reply): Use the stopped thread's architecture,
774 not the current inferior's. Save the architecture in the
775 stop_reply.
776 (process_stop_reply): Use the stop reply's architecture.
777 (process_g_packet, remote_fetch_registers)
778 (remote_prepare_to_store, store_registers_using_G)
779 (remote_store_registers): Adjust get_remote_arch_state calls,
780 using the regcache's architecture.
781 (remote_get_trace_status): Adjust get_remote_arch_state calls,
782 passing down target_gdbarch explicitly.
783 * spu-multiarch.c (spu_thread_architecture): Defer to the target
784 beneath instead of calling target_gdbarch.
785 * target.c (default_thread_architecture): Use the specified
786 inferior's architecture, instead of the current inferior's
787 architecture (via target_gdbarch).
788
ed4227b7
PA
7892017-10-04 Pedro Alves <palves@redhat.com>
790
791 * regcache.c (get_thread_arch_regcache): Remove null_ptid special
792 case.
793 (regcache_print): Handle !target_has_registers here instead.
794
55b11ddf
PA
7952017-10-04 Pedro Alves <palves@redhat.com>
796
797 * frame.c (create_test_frame): Delete.
798 * frame.h (create_test_frame): Delete.
799 * gdbarch-selftests.c: Include gdbthread.h and target.h.
800 (class regcache_test): Delete.
801 (test_target_has_registers, test_target_has_stack)
802 (test_target_has_memory, test_target_prepare_to_store)
803 (test_target_store_registers): New functions.
804 (test_target_ops): New class.
805 (register_to_value_test): Error out if there's already a
806 process_stratum (or higher) target pushed. Create a fuller mock
807 environment, with mock target_ops, inferior, address space, thread
808 and inferior_ptid.
809 * progspace.c (struct address_space): Move to ...
810 * progspace.h (struct address_space): ... here.
811 * regcache.h (regcache::~regcache, regcache::raw_write)
812 [GDB_SELF_TEST]: No longer virtual.
813
4c71c105
SM
8142017-10-04 Simon Marchi <simon.marchi@ericsson.com>
815
816 * mi/mi-main.c (list_available_thread_groups): Reverse filter logic.
817
73dcd72d
PA
8182017-10-04 Pedro Alves <palves@redhat.com>
819
820 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Move code
821 out of 'between TRY and CATCH'.
822
44704526
PA
8232017-10-04 Pedro Alves <palves@redhat.com>
824
825 * cli/cli-cmds.c (complete_command): Add missing END_CATCH.
826 * common/common-exceptions.h (TRY): Open an outermost scope.
827 Expand intro comment.
828 (CATCH): Reindent.
829 (END_CATCH): Close the outermost scope.
830 * completer.c (complete_line_internal): Add missing END_CATCH.
831
bc3b087d
SDJ
8322017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
833
834 * NEWS (Changes since GDB 8.0): Add entry about new
835 'set-cwd-on-gdbserver' feature.
836 (New remote packets): Add entry for QSetWorkingDir.
837 * common/common-inferior.h (set_inferior_cwd): New prototype.
838 * infcmd.c (set_inferior_cwd): Remove "static".
839 (show_cwd_command): Expand text to include remote debugging.
840 * remote.c: Add PACKET_QSetWorkingDir.
841 (remote_protocol_features) <QSetWorkingDir>: New entry for
842 PACKET_QSetWorkingDir.
843 (extended_remote_set_inferior_cwd): New function.
844 (extended_remote_create_inferior): Call
845 "extended_remote_set_inferior_cwd".
846 (_initialize_remote): Call "add_packet_config_cmd" for
847 QSetWorkingDir.
848
d092c5a2
SDJ
8492017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
850
851 * NEWS (New commands): Mention "set/show cwd".
852 * cli/cli-cmds.c (_initialize_cli_cmds): Mention "set cwd" on
853 "cd" command's help text.
854 * common/common-inferior.h (get_inferior_cwd): New prototype.
855 * infcmd.c (inferior_cwd_scratch): New global variable.
856 (set_inferior_cwd): New function.
857 (get_inferior_cwd): Likewise.
858 (set_cwd_command): Likewise.
859 (show_cwd_command): Likewise.
860 (_initialize_infcmd): Add "set/show cwd" commands.
861 * inferior.h (class inferior) <cwd>: New field.
862 * nat/fork-inferior.c: Include "gdb_tilde_expand.h".
863 (fork_inferior): Change inferior's cwd before its execution.
864 * windows-nat.c (windows_create_inferior): Pass inferior's cwd
865 to CreateProcess.
866
7da0a886
SDJ
8672017-10-04 Sergio Durigan Junior <sergiodj@redhat.com>
868
869 * Makefile.in (SFILES): Add gdb_tilde_expand.c.
870 (HFILES_NO_SRCDIR): Add gdb_tilde_expand.h.
871 (COMMON_OBS): Add gdb_tilde_expand.o.
872 * common/gdb_tilde_expand.c: New file.
873 * common/gdb_tilde_expand.h: Likewise.
874
db8dd160
MR
8752017-10-03 Maciej W. Rozycki <macro@imgtec.com>
876
877 * gdbarch.sh (objfile): Remove duplicate declaration.
878 * gdbarch.h: Regenerate.
879
f8bfbf22
TT
8802017-10-03 Tom Tromey <tom@tromey.com>
881
882 * utils.c (internal_vproblem): Use string_vprintf.
883
5178ed48
TT
8842017-10-03 Tom Tromey <tom@tromey.com>
885
886 * printcmd.c (info_symbol_command): Use std::string.
887
8cff8730
TT
8882017-10-03 Tom Tromey <tom@tromey.com>
889
890 * top.c (gdb_safe_append_history): Use std::string.
891
895b8f30
TT
8922017-10-03 Tom Tromey <tom@tromey.com>
893
894 * event-top.c (stdin_event_handler): Update.
895 * main.c (captured_main_1): Update.
896 * top.h (make_delete_ui_cleanup): Remove.
897 (struct ui): Add constructor and destructor.
898 (new_ui, delete_ui): Remove.
899 * top.c (make_delete_ui_cleanup): Remove.
900 (new_ui_command): Use std::unique_ptr.
901 (delete_ui_cleanup): Remove.
902 (ui::ui): Rename from new_ui. Update.
903 (free_ui): Remove.
904 (ui::~ui): Rename from delete_ui. Update.
905
0efef640
TT
9062017-10-03 Tom Tromey <tom@tromey.com>
907
908 * symfile.c (load_progress): Use gdb::byte_vector.
909
245ad7d3
TT
9102017-10-03 Tom Tromey <tom@tromey.com>
911
912 * mi/mi-main.c (mi_cmd_trace_frame_collected): Remove unused
913 declaration.
914 * printcmd.c (x_command): Remove unused declaration.
915 * symfile.c (symbol_file_command): Remove unused declaration.
916
e05550d7
TT
9172017-10-03 Tom Tromey <tom@tromey.com>
918
919 * utils.c (internal_vproblem): Use std::string.
920 (defaulted_query): Likewise.
921
b95de2b7
TT
9222017-10-03 Tom Tromey <tom@tromey.com>
923
924 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Update.
925 * top.c (execute_command_to_string): Update.
926 * utils.c (make_cleanup_restore_page_info): Remove.
927 (do_restore_page_info_cleanup): Remove.
928 (set_batch_flag_and_restore_page_info):
929 New.
930 (make_cleanup_restore_page_info): Remove.
931 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
932 (~set_batch_flag_and_restore_page_info): New
933 (make_cleanup_restore_uinteger): Remove.
934 (make_cleanup_restore_integer): Remove.
935 (struct restore_integer_closure): Remove.
936 (restore_integer): Remove.
937 * utils.h (struct set_batch_flag_and_restore_page_info): New
938 class.
939 (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
940 (make_cleanup_restore_page_info): Remove.
941 (make_cleanup_restore_uinteger) Remove.
942 (make_cleanup_restore_integer) Remove.
943
07036511
TT
9442017-10-03 Tom Tromey <tom@tromey.com>
945
946 * record-full.h (record_full_gdb_operation_disable_set): Return
947 scoped_restore_tmpl<int>.
948 * infrun.c (adjust_pc_after_break): Update.
949 (handle_signal_stop): Update.
950 * record-full.c (record_full_gdb_operation_disable_set): Return
951 scoped_restore_tmpl<int>.
952 (record_full_wait_1, record_full_insert_breakpoint)
953 (record_full_remove_breakpoint, record_full_save)
954 (record_full_goto_insn): Update.
955
45320ffa
TT
9562017-10-02 Tom Tromey <tom@tromey.com>
957
958 PR rust/22236:
959 * rust-lang.c (rust_val_print_str): New function.
960 (val_print_struct): Call it.
961 (rust_subscript): Preserve name of slice type.
962
b3e3859b
TT
9632017-10-02 Tom Tromey <tom@tromey.com>
964
965 * rust-lang.c (rust_subscript): Handle slices in
966 EVAL_AVOID_SIDE_EFFECTS case.
967
01af5e0d
TT
9682017-10-02 Tom Tromey <tom@tromey.com>
969
970 * rust-lang.c (rust_slice_type_p): Recognize &str as a slice type.
971
888e3ddb
TT
9722017-10-02 Tom Tromey <tom@tromey.com>
973
974 * rust-lang.h (rust_slice_type): Add "extern".
975
cc536b21
PA
9762017-10-02 Tom Tromey <tom@tromey.com>
977 Pedro Alves <palves@redhat.com>
978
979 * ada-lang.h (ada_exc_info::operator<): Make const.
980 (ada_exc_info::operator==): Make const.
981 * ada-lang.c (ada_exc_info::operator<, ada_exc_info::operator==):
982 Make const.
983
386c8614
TT
9842017-09-29 Tom Tromey <tom@tromey.com>
985
986 * target.c (read_whatever_is_readable): Change type of "result".
987 Update.
988 (free_memory_read_result_vector): Remove.
989 (read_memory_robust): Change return type. Update.
990 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update. Use
991 bin2hex, std::string.
992 * target.h (memory_read_result_s): Remove typedef.
993 (free_memory_read_result_vector): Remove.
994 (read_memory_robust): Return std::vector.
995
789c4b5e
TT
9962017-09-29 Tom Tromey <tom@tromey.com>
997
998 * mi/mi-main.c (captured_mi_execute_command): Use scope_restore.
999
ab816a27
TT
10002017-09-29 Tom Tromey <tom@tromey.com>
1001
1002 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Update.
1003 * ada-lang.h (struct ada_exc_info): Remove typedef. Declare
1004 operator< and operator==.
1005 (ada_exceptions_list): Return a std::vector.
1006 * ada-lang.c (ada_exc_info::operator<): Rename from
1007 compare_ada_exception_info.
1008 (ada_exc_info::operator==): New.
1009 (sort_remove_dups_ada_exceptions_list): Change type of
1010 "exceptions".
1011 (ada_add_standard_exceptions, ada_add_exceptions_from_frame)
1012 (ada_add_global_exceptions): Likewise.
1013 (ada_exceptions_list_1): Return a std::vector.
1014 (ada_exceptions_list): Likewise.
1015
52f9abe4
TT
10162017-09-29 Tom Tromey <tom@tromey.com>
1017
1018 * mi/mi-main.c (struct print_one_inferior_data) <inferiors>: Now a
1019 'std::set *'.
1020 (print_one_inferior): Update.
1021 (free_vector_of_ints): Remove.
1022 (list_available_thread_groups): Change "ids" to std::set.
1023 (mi_cmd_list_thread_groups): Update.
1024 (struct collect_cores_data) <core>: Now a std::set.
1025 (collect_cores): Update.
1026 (unique): Remove.
1027 (print_one_inferior): Update.
1028
dcd5ddcc
TT
10292017-09-29 Tom Tromey <tom@tromey.com>
1030
1031 * mi/mi-main.c (mi_execute_cli_command): Use std::string.
1032 (mi_execute_async_cli_command): Likewise.
1033 (mi_cmd_trace_frame_collected): Use field_fmt.
1034
45d288cc
TT
10352017-09-29 Tom Tromey <tom@tromey.com>
1036
1037 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Use
1038 gdb::byte_vector.
1039
6afe2f4a
TT
10402017-09-29 Tom Tromey <tom@tromey.com>
1041
1042 * mi/mi-parse.c (mi_parse): Remove unused declaration.
1043
9813429a
TT
10442017-09-29 Tom Tromey <tom@tromey.com>
1045
1046 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Don't copy "oarg".
1047
2d6960b4
TT
10482017-09-29 Tom Tromey <tom@tromey.com>
1049
1050 * varobj.h (varobj_gen_name): Return std::string.
1051 * varobj.c (varobj_gen_name): Return std::string.
1052 * mi/mi-cmd-var.c (mi_cmd_var_create): Use std::string.
1053 (mi_cmd_var_delete): Don't copy "name".
1054
784c453a
TT
10552017-09-29 Tom Tromey <tom@tromey.com>
1056
1057 * mi/mi-cmd-break.c (mi_argv_to_format): Return std::string.
1058 (mi_cmd_break_insert_1): Update.
1059
a9bc57b9
TT
10602017-09-29 Tom Tromey <tom@tromey.com>
1061
1062 * target.h (make_scoped_defer_target_commit_resume): Update.
1063 * target.c (make_scoped_defer_target_commit_resume): Rename from
1064 make_cleanup_defer_target_commit_resume. Return a
1065 scoped_restore.
1066 * infrun.c (proceed): Use make_scoped_defer_target_commit_resume.
1067
9754d8c4
TT
10682017-09-29 Tom Tromey <tom@tromey.com>
1069
1070 * main.c (captured_main_1): Remove unused declaration.
1071 * spu-multiarch.c (parse_spufs_run): Remove unused declaration.
1072
99ef965c
TT
10732017-09-29 Tom Tromey <tom@tromey.com>
1074
1075 * symtab.c (search_symbols): Remove unused outer cleanup.
1076 (make_source_files_completion_list): Remove unused declaration.
1077
42518ba7
TT
10782017-09-29 Tom Tromey <tom@tromey.com>
1079
1080 * mt-tdep.c (mt_push_dummy_call): Use gdb::byte_vector.
1081
726b2169
TT
10822017-09-29 Tom Tromey <tom@tromey.com>
1083
1084 * xstormy16-tdep.c (xstormy16_push_dummy_call): Use
1085 gdb::byte_vector.
1086
55b06432
TT
10872017-09-29 Tom Tromey <tom@tromey.com>
1088
1089 * complaints.c (vcomplaint): Use std::string.
1090
8abcee91
TT
10912017-09-29 Tom Tromey <tom@tromey.com>
1092
1093 * tracepoint.c (trace_variable_command): Use std::string.
1094 (encode_actions_1): Remove unused declarations.
1095 (create_tsv_from_upload): Use std::string.
1096
6ad94bc7
TT
10972017-09-29 Tom Tromey <tom@tromey.com>
1098
1099 * cp-support.c (gdb_demangle): Use std::string.
1100
2003f3d8
TT
11012017-09-29 Tom Tromey <tom@tromey.com>
1102
1103 * stack.c (parse_frame_specification): Use std::string
1104 (info_frame_command): Use gdb::unique_xmalloc_ptr.
1105
8f8accb5
TT
11062017-09-29 Tom Tromey <tom@tromey.com>
1107
1108 * tilegx-tdep.c (tilegx_push_dummy_call): Use gdb::byte_vector.
1109
200aa7b1
TT
11102017-09-29 Tom Tromey <tom@tromey.com>
1111
1112 * utils.c (vfprintf_maybe_filtered): Use std::string.
1113 (vfprintf_unfiltered): Likewise.
1114
606aae8a
TT
11152017-09-29 Tom Tromey <tom@tromey.com>
1116
1117 * event-top.c (top_level_prompt): Return std::string.
1118 (display_gdb_prompt): Update.
1119
bd413795
TT
11202017-09-29 Tom Tromey <tom@tromey.com>
1121
1122 * unittests/common-utils-selftests.c (format): New function.
1123 (string_vprintf_tests): New function.
1124 (_initialize_common_utils_selftests): Register new tests.
1125 * common/common-utils.c (string_vprintf): New function.
1126 * common/common-utils.h (string_vprintf): Declare.
1127
256642e8
PA
11282017-09-29 Pedro Alves <palves@redhat.com>
1129
1130 * common/rsp-low.c (unpack_varlen_hex): Constify.
1131 * common/rsp-low.h (unpack_varlen_hex): Constify.
1132 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
1133 Constify.
1134 * remote.c (remote_set_permissions, read_ptid)
1135 (remote_current_thread, remote_get_threads_with_qthreadinfo)
1136 (remote_static_tracepoint_marker_at)
1137 (remote_static_tracepoint_markers_by_strid)
1138 (stop_reply_extract_thread, remote_parse_stop_reply): Constify.
1139 * tracepoint.c (parse_trace_status, parse_tracepoint_status)
1140 (parse_tracepoint_definition, parse_tsv_definition)
1141 (parse_static_tracepoint_marker_definition): Constify.
1142 * tracepoint.h (parse_static_tracepoint_marker_definition)
1143 (parse_trace_status, parse_tracepoint_status)
1144 (parse_tracepoint_definition, parse_tsv_definition): Constify.
1145
b6bb3468
PA
11462017-09-29 Pedro Alves <palves@redhat.com>
1147
1148 * remote.c (target_buf, target_buf_size): Delete.
1149 (remote_get_noisy_reply): Remove buf_p and sizeof_buf parameters.
1150 Use the connection's packet buffer instead.
1151 All callers adjusted.
1152 (_initialize_remote): Remove references to target_buf and
1153 target_buf_size.
1154
b2f8eb7a
PA
11552017-09-28 Pedro Alves <palves@redhat.com>
1156
1157 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1158 unittests/common-utils-selftests.c.
1159 (SUBDIR_UNITTESTS_OBS): Add common-utils-selftests.o.
1160 (COMMON_OBS): Remove utils-selftests.o.
1161 * utils-selftests.c: Move to ...
1162 * unittests/common-utils-selftests.c: ... here and rename self
1163 test to "string_printf".
1164
08302ed2
DE
11652017-09-28 Alexander Shaposhnikov <alexander.v.shaposhnikov@gmail.com> (tiny patch)
1166
1167 * dwarf2read.c (open_and_init_dwp_file): Protect against dwp_file
1168 having NULL cus or tus.
1169
96a5a1d3
UW
11702017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1171
1172 * arm-tdep.c: (convert_from_extended): Remove.
1173 (convert_to_extended): Likewise.
1174 (arm_extract_return_value): Use convert_typed_floating.
1175 (arm_store_return_value): Likewise.
1176
1177 * sh-tdep.h (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
1178 * sh-tdep.c: Do not include "floatformat.h".
1179 (sh_littlebyte_bigword_type): New function.
1180 (sh_register_convert_to_virtual): Use convert_typed_floating.
1181 (sh_register_convert_to_raw): Likewise.
1182 * sh64-tdep.c: (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
1183 (sh64_littlebyte_bigword_type): New function.
1184 (sh64_extract_return_value): Use convert_typed_floating.
1185 (sh64_register_convert_to_virtual): Likewise.
1186 (sh64_register_convert_to_raw): Likewise.
1187
0db7851f
UW
11882017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1189
1190 * doublest.h (floatformat_from_type): Move to gdbtypes.h.
1191 * doublest.c (floatformat_from_type): Move to gdbtypes.c.
1192
1193 * gdbtypes.h (union type_specific): Make field floatformat hold
1194 just a single struct floatformat, not an array.
1195 (floatformat_from_type): Move here.
1196 * gdbtypes.c (floatformat_from_type): Move here. Update to
1197 changed TYPE_FLOATFORMAT definition.
1198 (verify_floatformat): Update to changed TYPE_FLOATFORMAT.
1199 (recursive_dump_type): Likewise.
1200 (init_float_type): Install correct floatformat for byte order.
1201 (arch_float_type): Likewise.
1202
77b7c781
UW
12032017-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1204
1205 * gdbtypes.c (init_type): Change incoming argument from
1206 length-in-bytes to length-in-bits. Assert length is a
1207 multiple of TARGET_CHAR_BITS.
1208 (arch_type, arch_flags_type): Likewise.
1209 (init_integer_type): Update call to init_type.
1210 (init_character_type): Likewise.
1211 (init_boolean_type): Likewise.
1212 (init_float_type): Likewise.
1213 (init_decfloat_type): Likewise.
1214 (init_complex_type): Likewise.
1215 (init_pointer_type): Likewise.
1216 (objfile_type): Likewise.
1217 (arch_integer_type): Update call to arch_type.
1218 (arch_character_type): Likewise.
1219 (arch_boolean_type): Likewise.
1220 (arch_float_type): Likewise.
1221 (arch_decfloat_type): Likewise.
1222 (arch_complex_type): Likewise.
1223 (arch_pointer_type): Likewise.
1224 (gdbtypes_post_init): Likewise.
1225
1226 * dwarf2read.c (dwarf2_init_float_type): Update call to init_type.
1227 (read_base_type): Likewise.
1228 * mdebugread.c (basic_type): Likewise.
1229 * stabsread.c (dbx_init_float_type): Likewise.
1230 (rs6000_builtin_type): Likewise.
1231 (read_range_type): Likewise. Also, fix call to init_integer_type
1232 with erroneous length argument.
1233
1234 * ada-lang.c (ada_language_arch_info): Update call to arch_type.
1235 * d-lang.c (build_d_types): Likewise.
1236 * f-lang.c (build_fortran_types): Likewise.
1237 * go-lang.c (build_go_types): Likewise.
1238 * opencl-lang.c (build_opencl_types): Likewise.
1239 * jit.c (finalize_symtab): Likewise.
1240 * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
1241 (build_std_type_info_type): Likewise.
1242 * target-descriptions.c (tdesc_gdb_type): Likewise. Also,
1243 update call to arch_flags_type.
1244
1245 * linux-tdep.c (linux_get_siginfo_type_with_fields): Update call to
1246 arch_type.
1247 * fbsd-tdep.c (fbsd_get_siginfo_type): Likewise.
1248 * windows-tdep.c (windows_get_tlb_type): Likewise.
1249
1250 * avr-tdep.c (avr_gdbarch_init): Update call to arch_type.
1251 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
1252 * m32c-tdep.c (make_types): Likewise.
1253 * rl78-tdep.c (rl78_gdbarch_init): Likewise.
1254 (rl78_psw_type): Update call to arch_flags_type.
1255 * m68k-tdep.c (m68k_ps_type): Update call to arch_flags_type.
1256 * rx-tdep.c (rx_psw_type): Likewise.
1257 (rx_fpsw_type): Likewise.
1258 * sparc-tdep.c (sparc_psr_type): Likewise.
1259 (sparc_fsr_type): Likewise.
1260 * sparc64-tdep.c (sparc64_pstate_type): Likewise.
1261 (sparc64_ccr_type): Likewise.
1262 (sparc64_fsr_type): Likewise.
1263 (sparc64_fprs_type): Likewise.
1264
f21b4d5c
TT
12652017-09-27 Tom Tromey <tom@tromey.com>
1266
1267 * findcmd.c (find_command): Constify.
1268
643c2ffa
TT
12692017-09-27 Tom Tromey <tom@tromey.com>
1270
1271 * ada-tasks.c (task_command_1, task_command): Constify.
1272
510e5e56
TT
12732017-09-27 Tom Tromey <tom@tromey.com>
1274
1275 * symtab.c (maintenance_print_symbol_cache)
1276 (maintenance_flush_symbol_cache)
1277 (maintenance_print_symbol_cache_statistics): Constify.
1278
e503b191
TT
12792017-09-27 Tom Tromey <tom@tromey.com>
1280
1281 * inferior.c (detach_inferior_command, kill_inferior_command)
1282 (inferior_command): Constify.
1283
4e001312
TT
12842017-09-27 Tom Tromey <tom@tromey.com>
1285
1286 * regcache.c (regcache_print, maintenance_print_registers)
1287 (maintenance_print_raw_registers)
1288 (maintenance_print_cooked_registers)
1289 (maintenance_print_register_groups)
1290 (maintenance_print_remote_registers): Constify.
1291
77763700
TT
12922017-09-27 Tom Tromey <tom@tromey.com>
1293
1294 * printcmd.c (map_display_numbers, undisplay_command)
1295 (enable_disable_display_command, enable_display_command)
1296 (disable_display_command): Constify.
1297
4495129a
TT
12982017-09-27 Tom Tromey <tom@tromey.com>
1299
1300 * breakpoint.h (delete_command): Don't declare.
1301 * breakpoint.c (delete_command, enable_once_command)
1302 (enable_count_command, enable_delete_command, breakpoint_1)
1303 (maintenance_info_breakpoints, stopin_command, stopat_command)
1304 (delete_command, delete_trace_command, save_breakpoints)
1305 (save_breakpoints_command, save_tracepoints_command): Constify.
1306
3088cf40
TT
13072017-09-27 Tom Tromey <tom@tromey.com>
1308
1309 * macrocmd.c (macro_expand_command, macro_expand_once_command)
1310 (skip_ws, extract_identifier, macro_define_command)
1311 (macro_undef_command, macro_list_command): Constify.
1312
69f476a3
TT
13132017-09-27 Tom Tromey <tom@tromey.com>
1314
1315 * infcmd.c (environment_info, set_environment_command)
1316 (unset_environment_command, path_info, info_proc_cmd_1)
1317 (info_proc_cmd_mappings, info_proc_cmd_stat)
1318 (info_proc_cmd_status, info_proc_cmd_cwd, info_proc_cmd_cmdline)
1319 (info_proc_cmd_exe, info_proc_cmd_all): Constify.
1320
c4a3e68e
TT
13212017-09-27 Tom Tromey <tom@tromey.com>
1322
1323 * i386-tdep.c (i386_mpx_info_bounds, i386_mpx_set_bounds):
1324 Constify.
1325
c9d31bd6
TT
13262017-09-27 Tom Tromey <tom@tromey.com>
1327
1328 * symfile-mem.c (add_symbol_file_from_memory_command): Constify.
1329
1f3f85eb
TT
13302017-09-27 Tom Tromey <tom@tromey.com>
1331
1332 * demangle.c (demangle_command): Constify.
1333
9c504b5d
TT
13342017-09-27 Tom Tromey <tom@tromey.com>
1335
1336 * progspace.c (maintenance_info_program_spaces_command):
1337 Constify.
1338
6663cf91
TT
13392017-09-27 Tom Tromey <tom@tromey.com>
1340
1341 * compile/compile.c (check_raw_argument, compile_file_command)
1342 (compile_code_command, compile_print_command): Constify.
1343
34e5fa26
TT
13442017-09-27 Tom Tromey <tom@tromey.com>
1345
1346 * reggroups.c (maintenance_print_reggroups): Constify.
1347
8384c356
TT
13482017-09-27 Tom Tromey <tom@tromey.com>
1349
1350 * dwarf2read.c (save_gdb_index_command): Constify.
1351
884beb0c
TT
13522017-09-27 Tom Tromey <tom@tromey.com>
1353
1354 * stap-probe.c (info_probes_stap_command): Constify.
1355
e0b2930c
TT
13562017-09-27 Tom Tromey <tom@tromey.com>
1357
1358 * fork-child.c (unset_exec_wrapper_command): Constify.
1359
f938677d
TT
13602017-09-27 Tom Tromey <tom@tromey.com>
1361
1362 * btrace.c (get_uint, get_context_size, no_chunk)
1363 (maint_btrace_packet_history_cmd)
1364 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
1365 (maint_info_btrace_cmd): Constify.
1366
8949cb87
TT
13672017-09-27 Tom Tromey <tom@tromey.com>
1368
1369 * reverse.c (delete_bookmark_command): Constify.
1370
ac88e2de
TT
13712017-09-27 Tom Tromey <tom@tromey.com>
1372
1373 * remote.c (set_memory_packet_size)
1374 (set_memory_write_packet_size, show_memory_write_packet_size)
1375 (set_memory_read_packet_size, show_memory_read_packet_size)
1376 (compare_sections_command, packet_command, remote_put_command)
1377 (remote_get_command, remote_delete_command): Constify.
1378
bd4c9dfe
TT
13792017-09-27 Tom Tromey <tom@tromey.com>
1380
1381 * mips-tdep.c (show_mipsfpu_command, set_mipsfpu_single_command)
1382 (set_mipsfpu_double_command, set_mipsfpu_none_command)
1383 (set_mipsfpu_auto_command): Constify.
1384
5e93d4c6
TT
13852017-09-27 Tom Tromey <tom@tromey.com>
1386
1387 * cli/cli-cmds.h (cd_command): Constify.
1388 * cli/cli-cmds.c (cd_command): Constify.
1389
fc41a75b
TT
13902017-09-27 Tom Tromey <tom@tromey.com>
1391
1392 * thread.c (thread_name_command, thread_find_command): Constify.
1393
67810076
TT
13942017-09-27 Tom Tromey <tom@tromey.com>
1395
1396 * probe.c (enable_probes_command, disable_probes_command):
1397 Constify.
1398
1d8b34a7
TT
13992017-09-27 Tom Tromey <tom@tromey.com>
1400
1401 * symfile.c (symbol_file_command): Constify.
1402 * gdbcore.h (deprecated_file_changed_hook): Constify.
1403 * exec.c (deprecated_file_changed_hook, exec_file_command)
1404 (file_command): Constify.
1405 * defs.h (symbol_file_command): Constify.
1406
442019e1
TT
14072017-09-27 Tom Tromey <tom@tromey.com>
1408
1409 * remote-fileio.c (set_system_call_allowed)
1410 (show_system_call_allowed): Constify.
1411
2983f7cb
TT
14122017-09-27 Tom Tromey <tom@tromey.com>
1413
1414 * tracepoint.c (delete_trace_variable_command)
1415 (tfind_end_command, tfind_start_command, tfind_pc_command)
1416 (tfind_tracepoint_command, tfind_line_command)
1417 (tfind_range_command, tfind_outside_command): Constify.
1418
4fd41b24
TT
14192017-09-27 Tom Tromey <tom@tromey.com>
1420
1421 * ax-gdb.c (maint_agent_printf_command, agent_command)
1422 (agent_eval_command): Constify.
1423
f2fc3015
TT
14242017-09-27 Tom Tromey <tom@tromey.com>
1425
1426 * tracepoint.c (info_scope_command): Constify.
1427 * python/python.c (gdbpy_decode_line): Constify.
1428 * python/py-breakpoint.c (bppy_init): Constify.
1429 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Constify.
1430 * location.h: (new_linespec_location)
1431 (string_to_event_location_basic, string_to_event_location):
1432 Constify.
1433 * location.c (new_linespec_location)
1434 (string_to_event_location_basic, string_to_event_location):
1435 Constify.
1436 * linespec.h (decode_line_with_current_source)
1437 (decode_line_with_last_displayed, linespec_lex_to_end): Constify.
1438 * linespec.c (linespec_lex_to_end)
1439 (decode_line_with_current_source)
1440 (decode_line_with_last_displayed): Constify.
1441 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x):
1442 Constify.
1443 * cli/cli-cmds.c (edit_command, list_command): Constify.
1444 * breakpoint.h (until_break_command, watch_command_wrapper)
1445 (awatch_command_wrapper, rwatch_command_wrapper)
1446 (init_ada_exception_breakpoint): Constify.
1447 * breakpoint.c (break_command_1, dprintf_command)
1448 (break_range_command, watch_command_wrapper)
1449 (rwatch_command_wrapper, awatch_command_wrapper)
1450 (until_break_command, init_ada_exception_breakpoint)
1451 (strace_marker_create_sals_from_location, trace_command)
1452 (ftrace_command, strace_command, struct tracepoint): Constify.
1453 * ax-gdb.c (agent_command_1): Constify.
1454 * ada-lang.c (ada_exception_sal): Constify.
1455
8c2f95f4
TT
14562017-09-27 Tom Tromey <tom@tromey.com>
1457
1458 * record.c (cmd_record_delete, cmd_record_stop, cmd_record_save)
1459 (cmd_record_goto_begin, cmd_record_goto_end, get_insn_number)
1460 (get_context_size, no_chunk, get_insn_history_modifiers)
1461 (cmd_record_insn_history, get_call_history_modifiers)
1462 (cmd_record_call_history): Constify.
1463
a0d65762
TT
14642017-09-27 Tom Tromey <tom@tromey.com>
1465
1466 * source.c (show_substitute_path_command)
1467 (unset_substitute_path_command, set_substitute_path_command):
1468 Constify.
1469
58971144
TT
14702017-09-27 Tom Tromey <tom@tromey.com>
1471
1472 * typeprint.c (maintenance_print_type): Constify.
1473 * maint.c (maintenance_dump_me, maintenance_demangle)
1474 (maintenance_time_display, maintenance_info_sections)
1475 (maintenance_print_statistics, maintenance_deprecate)
1476 (maintenance_undeprecate): Constify.
1477 (maintenance_do_deprecate): Constify. Use std::string.
1478 (maintenance_selftest): Constify.
1479 * gdbtypes.h (maintenance_print_type): Constify.
1480
c482f52c
TT
14812017-09-27 Tom Tromey <tom@tromey.com>
1482
1483 * hppa-tdep.c (unwind_command): Constify.
1484
e100df1a
TT
14852017-09-27 Tom Tromey <tom@tromey.com>
1486
1487 * target-descriptions.c (unset_tdesc_filename_cmd)
1488 (maint_print_c_tdesc_cmd, maintenance_check_xml_descriptions):
1489 Constify.
1490
31d56ade
TT
14912017-09-27 Tom Tromey <tom@tromey.com>
1492
1493 * dummy-frame.c (maintenance_print_dummy_frames): Constify.
1494
b961da0b
TT
14952017-09-27 Tom Tromey <tom@tromey.com>
1496
1497 * tui/tui.c (tui_enable_command, tui_disable_command): Constify.
1498
e2d8ae16
TT
14992017-09-27 Tom Tromey <tom@tromey.com>
1500
1501 * tui/tui-regs.c (tui_reg_command): Constify.
1502
863779b0
TT
15032017-09-27 Tom Tromey <tom@tromey.com>
1504
1505 * skip.c (skip_file_command, skip_function_command)
1506 (skip_enable_command, skip_disable_command, skip_delete_command):
1507 Constify.
1508
cdb34d4a
TT
15092017-09-27 Tom Tromey <tom@tromey.com>
1510
1511 * record-btrace.c (cmd_record_btrace_bts_start)
1512 (cmd_record_btrace_pt_start): Constify.
1513
e99c83e7
TT
15142017-09-27 Tom Tromey <tom@tromey.com>
1515
1516 * symmisc.c (maintenance_print_symbols)
1517 (maintenance_print_msymbols, maintenance_print_objfiles)
1518 (maintenance_info_symtabs, maintenance_check_symtabs)
1519 (maintenance_expand_symtabs, maintenance_info_line_tables):
1520 Constify.
1521
32faf971
TT
15222017-09-27 Tom Tromey <tom@tromey.com>
1523
1524 * top.c (new_ui_command): Constify.
1525
2cf311eb
TT
15262017-09-27 Tom Tromey <tom@tromey.com>
1527
1528 * symfile.c (add_symbol_file_command)
1529 (remove_symbol_file_command, list_overlays_command)
1530 (map_overlay_command, unmap_overlay_command)
1531 (overlay_auto_command, overlay_manual_command)
1532 (overlay_off_command, overlay_load_command): Constify.
1533
e6738699
TT
15342017-09-27 Tom Tromey <tom@tromey.com>
1535
1536 * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
1537 (info_spu_mailbox_command, info_spu_dma_command)
1538 (info_spu_proxydma_command): Constify.
1539
aa360cd5
TT
15402017-09-27 Tom Tromey <tom@tromey.com>
1541
1542 * cli/cli-logging.c (set_logging_on, set_logging_off): Constify.
1543
898241a5
TT
15442017-09-27 Tom Tromey <tom@tromey.com>
1545
1546 * cli/cli-script.c (user_defined_command): Constify.
1547
2d0ac106
TT
15482017-09-27 Tom Tromey <tom@tromey.com>
1549
1550 * cli/cli-dump.c (dump_memory_command, dump_value_command)
1551 (dump_srec_memory, dump_srec_value, dump_ihex_memory)
1552 (dump_ihex_value, dump_verilog_memory, dump_verilog_value)
1553 (dump_tekhex_memory, dump_tekhex_value, dump_binary_memory)
1554 (dump_binary_value, append_binary_memory, append_binary_value):
1555 Constify.
1556 (struct dump_context) <func>: Constify.
1557 (add_dump_command): Update.
1558
dede02ce
TT
15592017-09-27 Tom Tromey <tom@tromey.com>
1560
1561 * cli/cli-cmds.c (show_version, show_configuration)
1562 (source_command, show_user): Constify.
1563
d3cb6b99
TT
15642017-09-27 Tom Tromey <tom@tromey.com>
1565
1566 * target.c (maintenance_print_target_stack): Constify.
1567
1970a12f
TT
15682017-09-27 Tom Tromey <tom@tromey.com>
1569
1570 * interps.c (interpreter_exec_cmd): Constify.
1571
41243651
TT
15722017-09-27 Tom Tromey <tom@tromey.com>
1573
1574 * record-full.c (cmd_record_full_restore): Constify.
1575
4465d9db
TT
15762017-09-27 Tom Tromey <tom@tromey.com>
1577
1578 * memattr.c (enable_mem_command, disable_mem_command)
1579 (delete_mem_command): Constify.
1580
ad25e423
TT
15812017-09-27 Tom Tromey <tom@tromey.com>
1582
1583 * value.c (show_convenience): Constify.
1584
d64097b1
TT
15852017-09-27 Tom Tromey <tom@tromey.com>
1586
1587 * gdbcore.h (core_file_command): Update.
1588 * corefile.c (core_file_command): Constify.
1589
4d4589ef
TT
15902017-09-27 Tom Tromey <tom@tromey.com>
1591
1592 * user-regs.c (maintenance_print_user_registers): Constify.
1593
32a7bf17
TT
15942017-09-27 Tom Tromey <tom@tromey.com>
1595
1596 * cp-namespace.c (maintenance_cplus_namespace): Constify.
1597
4a475551
TT
15982017-09-27 Tom Tromey <tom@tromey.com>
1599
1600 * cp-support.c (first_component_command): Constify.
1601
990b9f9f
TT
16022017-09-27 Tom Tromey <tom@tromey.com>
1603
1604 * psymtab.c (maintenance_print_psymbols)
1605 (maintenance_info_psymtabs, maintenance_check_psymtabs):
1606 Constify.
1607
c281872e
TT
16082017-09-27 Tom Tromey <tom@tromey.com>
1609
1610 * windows-tdep.c (display_tib): Constify.
1611
5b64bf74
TT
16122017-09-27 Tom Tromey <tom@tromey.com>
1613
1614 * linux-fork.c (delete_checkpoint_command)
1615 (detach_checkpoint_command): Constify.
1616
4ada038f
TT
16172017-09-27 Tom Tromey <tom@tromey.com>
1618
1619 * cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
1620
57f5a81b
TT
16212017-09-27 Tom Tromey <tom@tromey.com>
1622
1623 * arc-tdep.c (dump_arc_instruction_command): Constify.
1624
b0a8e6c4
TT
16252017-09-27 Tom Tromey <tom@tromey.com>
1626
1627 * valprint.c (set_radix, show_radix): Constify.
1628
8d97dc1c
TT
16292017-09-27 Tom Tromey <tom@tromey.com>
1630
1631 * dtrace-probe.c (info_probes_dtrace_command): Constify.
1632
eb7c454d
TT
16332017-09-27 Tom Tromey <tom@tromey.com>
1634
1635 * command.h (not_just_help_class_command): Update.
1636 * cli/cli-decode.h (not_just_help_class_command): Update.
1637 * cli/cli-decode.c (not_just_help_class_command): Constify.
1638
e4e33335
TT
16392017-09-27 Tom Tromey <tom@tromey.com>
1640
1641 * gdb_bfd.c (maintenance_info_bfds): Constify.
1642
0450cc4c
TT
16432017-09-27 Tom Tromey <tom@tromey.com>
1644
1645 * cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
1646 overloads.
1647 (do_add_cmd): Rename from add_cmd. Don't call set_cmd_cfunc.
1648 (do_const_cfunc): New function.
1649 (cmd_cfunc_eq): New overload.
1650 (cli_user_command_p): Check do_const_cfunc.
1651 * cli/cli-decode.h (struct cmd_list_element) <function>: New field
1652 const_cfunc.
1653 * command.h (add_cmd): Add const overload and no-function
1654 overload.
1655 (set_cmd_cfunc): Add const overload.
1656 (cmd_const_cfunc_ftype): Declare.
1657 (cmd_cfunc_eq): Add const overload.
1658 * breakpoint.c, cli-cmds.c, cli-dump.c, guile/scm-cmd.c,
1659 python/py-cmd.c, target.c, tracepoint.c: Use no-function add_cmd
1660 overload.
1661
a9bbfbd8
TT
16622017-09-27 Tom Tromey <tom@tromey.com>
1663
1664 * macroexp.c (get_next_token_for_substitution): New function.
1665 (substitute_args): Call it. Check for __VA_OPT__.
1666
5230b05a
WT
16672017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
1668 Pedro Alves <palves@redhat.com>
1669
1670 * dwarf2read.c (dwarf2_cu): Remove field producer_is_icc and add
1671 producer_is_icc_lt_14.
1672 (producer_is_icc_lt_14): New function.
1673 (check_producer): Add code for checking version of ICC.
1674 (producer_is_icc): Move to producer.c.
1675 (read_structure_type): Restrict ICC workaround to ICC<14.
1676 * producer.c: Include selftest.h.
1677 (producer_is_icc, producer_parsing_tests, _initialize_producer):
1678 New functions.
1679 * producer.h (producer_is_icc): New declaration.
1680
b32b108a
WT
16812017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
1682
1683 * Makefile.in (SFILES): Add producer.c.
1684 (COMMON_OBS): Add producer.o
1685 * amd64-tdep.c (producer.h): Add new include.
1686 * dwarf2read.c (producer.h): Add new include.
1687 * producer.c: New file.
1688 * producer.h: New file.
1689 * utils.c (producer_is_gcc, producer_is_gcc_ge_4): Move to
1690 producer.c.
1691 * utils.h (producer_is_gcc, producer_is_gcc_ge_4): Move to
1692 producer.h.
1693
5007d765
MK
16942017-09-26 Matthias Klose <doko@ubuntu.com>
1695
1696 * configure.ac: Search ncursesw before ncurses.
1697 Check ncursesw/ncurses.h before ncurses/ncurses.h.
1698 * gdb_curses.h: Include <ncursesw/ncurses.h>
1699 * config.in, configure: Regenerate.
1700
281c4447
RO
17012017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1702
1703 PR gdb/22185
1704 * configure.host <*-*-solaris2.[01], *-*-solaris2.[2-9]*>: Mark as
1705 obsolete.
1706 Use gdb_host sol2 for i[34567]86-*-solaris2*, x86_64-*-solaris2*.
1707 Remove i386sol2 support.
1708 * configure.nat <i386sol2>: Remove.
1709 <sol2-64>: Fold into ...
1710 <sol2>: ... this.
1711 Move common settings to default section.
1712 Add sol-thread.o.
1713 * configure.tgt <i[34567]86-*-solaris2.1[0-9]*,
1714 x86_64-*-solaris2.1[0-9]*>: Rename to ...
1715 <i[34567]86-*-solaris2*, x86_64-*-solaris2*>: ... this.
1716 <i[34567]86-*-solaris*>: Remove.
1717 <sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*>: Remove.
1718
1719 * configure.ac: Remove wctype in libw check.
1720 (_MSE_INT_H): Don't define on Solaris 7-9.
1721 <solaris*>: Remove libthread_db.so.1 check.
1722 * configure: Regenerate.
1723 * config.in: Regenerate.
1724
1725 * proc-service.c: Remove PROC_SERVICE_IS_OLD handling.
1726 (gdb_ps_prochandle_t, gdb_ps_read_buf_t, gdb_ps_write_buf_t)
1727 (gdb_ps_size_t): Remove.
1728 Use base types in users.
1729 * sol-thread.c: Likewise, also for gdb_ps_addr_t.
1730
1731 * NEWS (Changes since GDB 8.0): Document Solaris 2.0-9 removal.
1732
39b06c20
RO
17332017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1734
1735 PR build/22206
1736 * sparc64-tdep.c (adi_tag_fd): Print pid as long.
1737 (adi_is_addr_mapped): Likewise.
1738 (PSR_ICC): Don't redefine.
1739 (PSR_IMPL): Likewise.
1740
6c3e20f1
TT
17412017-09-25 Tom Tromey <tom@tromey.com>
1742
1743 * regcache.c (regcache::dump): Use string_printf.
1744
b292235f
TT
17452017-09-25 Tom Tromey <tom@tromey.com>
1746
1747 * regcache.c (class regcache_invalidator): New.
1748 (struct register_to_invalidate): Remove.
1749 (make_cleanup_regcache_invalidate): Remove.
1750 (regcache::raw_write): Use regcache_invalidator.
1751
9ac86b52
TT
17522017-09-25 Tom Tromey <tom@tromey.com>
1753
1754 * spu-tdep.c (spu2ppu_sniffer): Update.
1755 * regcache.h (make_cleanup_regcache_xfree): Don't declare.
1756 * regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
1757 Remove.
1758 * ppc-linux-tdep.c (ppu2spu_sniffer): Update.
1759 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
1760 * frame.h (frame_save_as_regcache): Return std::unique_ptr.
1761 * frame.c (frame_save_as_regcache): Return std::unique_ptr.
1762 (frame_pop): Update.
1763
c0e383c6
TT
17642017-09-25 Tom Tromey <tom@tromey.com>
1765
1766 * spu-tdep.c (spu2ppu_dealloc_cache): Use delete.
1767 * regcache.h (regcache_xfree): Don't declare.
1768 * regcache.c (regcache_xfree): Remove.
1769 (do_regcache_xfree): Use delete.
1770 * ppc-linux-tdep.c (ppu2spu_dealloc_cache): Use delete.
1771 * linux-fork.c (free_fork): Use delete.
1772 (fork_save_infrun_state): Likewise.
1773 * jit.c (jit_dealloc_cache): Use delete.
1774 * infrun.c (discard_infcall_suspend_state): Use delete.
1775
791199cc
TT
17762017-09-25 Tom Tromey <tom@tromey.com>
1777
1778 * regcache.h (regcache_xmalloc): Don't declare.
1779 (regcache_raw_set_cached_value): Update comment.
1780 * regcache.c (regcache_xmalloc): Remove.
1781 * ppc-linux-tdep.c (ppu2spu_sniffer): Use new.
1782 * jit.c (jit_frame_sniffer): Use new.
1783 * frame.c (frame_save_as_regcache): Use new.
1784
289e23aa
AA
17852017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1786
1787 * NEWS: Advertise support for guarded-storage registers on IBM z.
1788
1b63490c
AA
17892017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1790
1791 * s390-linux-nat.c (have_regset_gs): New static variable.
1792 (s390_linux_fetch_inferior_registers): Handle guarded-storage
1793 control block and guarded-storage broadcast control regsets.
1794 (s390_read_description): Detect whether the target has
1795 guarded-storage support, return appropriate tdesc.
1796 * s390-linux-tdep.c (features/s390-gs-linux64.c): New include.
1797 (features/s390x-gs-linux64.c): Likewise.
1798 (struct gdbarch_tdep) <have_gs>: New field.
1799 (s390_regmap_gs, s390_regmap_gsbc, s390_gs_regset)
1800 (s390_gsbc_regset): New variables.
1801 (s390_iterate_over_regset_sections): Iterate over s390_gs_regset
1802 and s390_gsbc_regset, if applicable.
1803 (s390_core_read_description): Check whether core file was from a
1804 target with guarded-storage support; include appropriate regsets.
1805 (s390_gdbarch_init): Add registers for guarded-storage support.
1806 (_initialize_s390_tdep): Initialize new target descriptions that
1807 include registers for guarded-storage support.
1808 * s390-linux-tdep.h (HWCAP_S390_GS, S390_GSD_REGNUM)
1809 (S390_GSSM_REGNUM, S390_GSEPLA_REGNUM)
1810 (S390_BC_GSD_REGNUM, S390_BC_GSSM_REGNUM): New defines.
1811 (S390_NUM_REGS): Adjust macro definition.
1812 (s390_gs_regset, s390_gsbc_regset, tdesc_s390_gs_linux64)
1813 (tdesc_s390x_gs_linux64): New declarations.
1814
96235dc1
AA
18152017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1816
1817 * features/s390-gs-linux64.xml: New file.
1818 * features/s390-gs.xml: New file.
1819 * features/s390-gsbc.xml: New file.
1820 * features/s390x-gs-linux64.xml: New file.
1821 * features/Makefile (WHICH): Add s390-gs-linux64 and
1822 s390x-gs-linux64.
1823 (s390-gs-linux64-expedite, s390x-gs-linux64-expedite): New macros.
1824 (XMLTOC): Add s390-gs-linux64.xml and s390x-linux64.xml.
1825 * features/s390-gs-linux64.c: New generated file.
1826 * features/s390x-gs-linux64.c: New file.
1827 * regformats/s390-gs-linux64.dat: New file.
1828 * regformats/s390x-gs-linux64.dat: New file.
1829
b4a7c699
TT
18302017-09-23 Tom Tromey <tom@tromey.com>
1831
1832 * defs.h (make_cleanup_override_quit_handler): Don't declare.
1833
c2f97536
TT
18342017-09-22 Tom Tromey <tom@tromey.com>
1835
1836 * utils.c (class scoped_input_handler) <m_quit_handler>: Change
1837 type to scoped_restore_tmpl.
1838 <scoped_input_handler>: Initialize m_quit_handler directly.
1839
43573013
SDJ
18402017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
1841
1842 * cli/cli-cmds.c (pwd_command): Use "getcwd (NULL, 0)".
1843 (cd_command): Likewise. Free "current_directory" before
1844 assigning to it.
1845 * main.c (captured_main_1): Use "getcwd (NULL, 0)".
1846 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
1847 * top.c (gdb_dirbuf): Remove global declaration.
1848 * top.h (gdb_dirbuf): Likewise.
1849
6ec2e0f5
SDJ
18502017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
1851
1852 * gnulib/aclocal.m4: Regenerate.
1853 * gnulib/config.in: Regenerate.
1854 * gnulib/configure: Regenerate.
1855 * gnulib/import/Makefile.am: Regenerate.
1856 * gnulib/import/Makefile.in: Regenerate.
1857 * gnulib/import/assure.h: New file.
1858 * gnulib/import/at-func.c: Likewise
1859 * gnulib/import/chdir-long.c: New file.
1860 * gnulib/import/chdir-long.h: New file.
1861 * gnulib/import/cloexec.c: New file.
1862 * gnulib/import/cloexec.h: New file.
1863 * gnulib/import/close.c: New file.
1864 * gnulib/import/closedir.c: New file.
1865 * gnulib/import/dirent-private.h: New file.
1866 * gnulib/import/dup-safer.c: New file.
1867 * gnulib/import/dup.c: New file.
1868 * gnulib/import/dup2.c: New file.
1869 * gnulib/import/error.c: New file.
1870 * gnulib/import/error.h: New file.
1871 * gnulib/import/exitfail.c: New file.
1872 * gnulib/import/exitfail.h: New file.
1873 * gnulib/import/fchdir.c: New file.
1874 * gnulib/import/fcntl.c: New file.
1875 * gnulib/import/fcntl.in.h: New file.
1876 * gnulib/import/fd-hook.c: New file.
1877 * gnulib/import/fd-hook.h: New file.
1878 * gnulib/import/fd-safer.c: New file.
1879 * gnulib/import/fdopendir.c: New file.
1880 * gnulib/import/filename.h: New file.
1881 * gnulib/import/filenamecat-lgpl.c: New file.
1882 * gnulib/import/filenamecat.h: New file.
1883 * gnulib/import/fstat.c: New file.
1884 * gnulib/import/fstatat.c: New file.
1885 * gnulib/import/getcwd-lgpl.c: New file.
1886 * gnulib/import/getcwd.c: New file.
1887 * gnulib/import/getdtablesize.c: New file.
1888 * gnulib/import/getlogin_r.c: New file.
1889 * gnulib/import/getprogname.c: New file.
1890 * gnulib/import/getprogname.h: New file.
1891 * gnulib/import/gettext.h: New file.
1892 * gnulib/import/glob-libc.h: New file.
1893 * gnulib/import/glob.c: New file.
1894 * gnulib/import/glob.in.h: New file.
1895 * gnulib/import/intprops.h: New file.
1896 * gnulib/import/m4/chdir-long.m4: New file.
1897 * gnulib/import/m4/close.m4: New file.
1898 * gnulib/import/m4/closedir.m4: New file.
1899 * gnulib/import/m4/d-ino.m4: New file.
1900 * gnulib/import/m4/d-type.m4: New file.
1901 * gnulib/import/m4/dup.m4: New file.
1902 * gnulib/import/m4/dup2.m4: New file.
1903 * gnulib/import/m4/error.m4: New file.
1904 * gnulib/import/m4/fchdir.m4: New file.
1905 * gnulib/import/m4/fcntl.m4: New file.
1906 * gnulib/import/m4/fcntl_h.m4: New file.
1907 * gnulib/import/m4/fdopendir.m4: New file.
1908 * gnulib/import/m4/filenamecat.m4: New file.
1909 * gnulib/import/m4/fstat.m4: New file.
1910 * gnulib/import/m4/fstatat.m4: New file.
1911 * gnulib/import/m4/getcwd-abort-bug.m4: New file.
1912 * gnulib/import/m4/getcwd-path-max.m4: New file.
1913 * gnulib/import/m4/getcwd.m4: New file.
1914 * gnulib/import/m4/getdtablesize.m4: New file.
1915 * gnulib/import/m4/getlogin_r.m4: New file.
1916 * gnulib/import/m4/getprogname.m4: New file.
1917 * gnulib/import/m4/glob.m4: New file.
1918 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
1919 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
1920 * gnulib/import/m4/mempcpy.m4: New file.
1921 * gnulib/import/m4/memrchr.m4: New file.
1922 * gnulib/import/m4/mode_t.m4: New file.
1923 * gnulib/import/m4/msvc-inval.m4: New file.
1924 * gnulib/import/m4/msvc-nothrow.m4: New file.
1925 * gnulib/import/m4/open.m4: New file.
1926 * gnulib/import/m4/openat.m4: New file.
1927 * gnulib/import/m4/opendir.m4: New file.
1928 * gnulib/import/m4/readdir.m4: New file.
1929 * gnulib/import/m4/realloc.m4: New file.
1930 * gnulib/import/m4/rewinddir.m4: New file.
1931 * gnulib/import/m4/save-cwd.m4: New file.
1932 * gnulib/import/m4/strdup.m4: New file.
1933 * gnulib/import/m4/strerror.m4: New file.
1934 * gnulib/import/m4/unistd-safer.m4: New file.
1935 * gnulib/import/mempcpy.c: New file.
1936 * gnulib/import/memrchr.c: New file.
1937 * gnulib/import/msvc-inval.c: New file.
1938 * gnulib/import/msvc-inval.h: New file.
1939 * gnulib/import/msvc-nothrow.c: New file.
1940 * gnulib/import/msvc-nothrow.h: New file.
1941 * gnulib/import/open.c: New file.
1942 * gnulib/import/openat-die.c: New file.
1943 * gnulib/import/openat-priv.h: New file.
1944 * gnulib/import/openat-proc.c: New file.
1945 * gnulib/import/openat.c: New file.
1946 * gnulib/import/openat.h: New file.
1947 * gnulib/import/opendir.c: New file.
1948 * gnulib/import/pipe-safer.c: New file.
1949 * gnulib/import/readdir.c: New file.
1950 * gnulib/import/realloc.c: New file.
1951 * gnulib/import/rewinddir.c: New file.
1952 * gnulib/import/save-cwd.c: New file.
1953 * gnulib/import/save-cwd.h: New file.
1954 * gnulib/import/strdup.c: New file.
1955 * gnulib/import/strerror-override.c: New file.
1956 * gnulib/import/strerror-override.h: New file.
1957 * gnulib/import/strerror.c: New file.
1958 * gnulib/import/unistd--.h: New file.
1959 * gnulib/import/unistd-safer.h: New file.
1960 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1961 "getcwd" and "glob".
1962 * ser-tcp.c: Undefine "close" before redefining it.
1963
432ae719
SM
19642017-09-21 Simon Marchi <simon.marchi@ericsson.com>
1965
1966 * guile/scm-value.c (gdbscm_value_address): Initialize address,
1967 get rid of res_val.
1968
4fa7574e
RO
19692017-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1970
1971 * configure.nat <i386sol2,i386>: Add fork-inferior.o to NATDEPFILES.
1972 <sol2,sparc>: Likewise.
1973 <sol2-64,i386>: Likewise.
1974
1975 * warning.m4 (AM_GDB_WARNINGS): Disable -Wunknown-pragmas,
1976 -Wdeprecated-declarations on *-*-solaris*.
1977 * configure: Regenerate.
1978
1979 * procfs.c: Include "nat/inferior.h".
1980 (procfs_info_proc): Fix typo.
1981
f6327dcb
KB
19822017-09-21 Kevin Buettner <kevinb@redhat.com>
1983
1984 * remote.c (vector): Include.
1985 (struct private_thread_info): Add field, thread_handle.
1986 (free_private_thread_info): Deallocate storage associated with
1987 thread handle.
1988 (get_private_info_thread): Initialize `thread_handle' field.
1989 (struct thread_item): Add field, thread_handle.
1990 (clear_threads_listing_context): Deallocate storage associated
1991 with thread handle.
1992 (start_thread): Add support for "handle" attribute.
1993 (thread_attributes): Add "handle".
1994 (remote_get_threads_with_qthreadinfo): Initialize thread_handle
1995 field.
1996 (remote_update_thread_list): Update thread_handle.
1997 (remote_thread_handle_to_thread_info): New function.
1998 (init_remote_ops): Initialize to_thread_handle_to_thread_info.
1999
fbbe5337
KB
20002017-09-21 Kevin Buettner <kevinb@redhat.com>
2001
2002 * python/py-inferior.c (gdbpy_thread_from_thread_handle): New
2003 function.
2004 (inferior_object_methods): Add gdbpy_thread_from_thread_handle.
2005 * python/python-internal.h (thread_object_type): Declare.
2006
e04ee09e
KB
20072017-09-21 Kevin Buettner <kevinb@redhat.com>
2008
2009 * target.h (struct target_ops): Add to_thread_handle_to_thread_info.
2010 (target_thread_handle_to_thread_info): Declare.
2011 * target.c (target_thread_handle_to_thread_info): New function.
2012 * target-delegates.c: Regenerate.
2013 * gdbthread.h (find_thread_by_handle): Declare.
2014 * thread.c (find_thread_by_handle): New function.
2015 * linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
2016 function.
2017 (init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
2018
1e5b66ed
SM
20192017-09-21 Simon Marchi <simon.marchi@ericsson.com>
2020
2021 * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
2022
ebe48ba0
SM
20232017-09-21 Simon Marchi <simon.marchi@ericsson.com>
2024
2025 * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
2026
0a0bf5dc
YQ
20272017-09-21 Yao Qi <yao.qi@linaro.org>
2028
2029 * configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
2030 to gdb_target_obs.
2031
d1b0a7bf
TT
20322017-09-20 Tom Tromey <tom@tromey.com>
2033
2034 * breakpoint.c (struct counted_command_line): Remove.
2035 (breakpoint_commands): Update.
2036 (alloc_counted_command_line, incref_counted_command_line)
2037 (decref_counted_command_line, do_cleanup_counted_command_line)
2038 (make_cleanup_decref_counted_command_line): Remove.
2039 (breakpoint_set_commands, commands_command_1, ~bpstats, bpstats)
2040 (bpstat_clear_actions, bpstat_do_actions_1, watchpoint_check)
2041 (bpstat_stop_status, print_one_breakpoint_location, ~breakpoint)
2042 (save_breakpoints): Update.
2043 * breakpoint.h (counted_command_line): Now a typedef to
2044 shared_ptr.
2045 (struct breakpoint) <commands>: Now a counted_command_line.
2046 (struct bpstats) <command>: Likewise.
2047
48649e1b
TT
20482017-09-20 Tom Tromey <tom@tromey.com>
2049
2050 * breakpoint.c (struct commands_info, do_map_commands_command):
2051 Remove.
2052 (commands_command_1): Update.
2053 (iterate_over_related_breakpoints): Take a function_view.
2054 (do_delete_breakpoint, do_map_delete_breakpoint): Remove.
2055 (delete_command): Update.
2056 (map_breakpoint_numbers): Take a function_view.
2057 (do_disable_breakpoint, do_map_delete_breakpoint): Remove.
2058 (disable_command): Update.
2059 (do_enable_breakpoint, do_map_enable_breakpoint): Remove.
2060 (enable_command): Update.
2061 (struct disp_data, do_enable_breakpoint_disp)
2062 (do_map_enable_once_breakpoint, do_map_enable_count_breakpoint)
2063 (do_map_enable_delete_breakpoint): Remove.
2064 (enable_once_command, enable_count_command, enable_delete_command)
2065 (delete_trace_variable_command): Update.
2066
04afa70c
TT
20672017-09-20 Tom Tromey <tom@tromey.com>
2068
2069 * breakpoint.c (~bpstats): Rename from bpstat_free. Update.
2070 (bpstat_clear): Use delete.
2071 (bpstats): New constructors.
2072 (bpstat_copy, bpstat_stop_status): Use new.
2073 (dprintf_after_condition_true): Update.
2074 * breakpoint.h (bpstats::bpstats): Add constructors.
2075 (bpstats::~bpstats): Add destructor.
2076
c83833f4
PA
20772017-09-20 Pedro Alves <palves@redhat.com>
2078
2079 * eval.c (make_params): Delete, refactored as ...
2080 (class fake_method): ... this new type's ctor.
2081 (fake_method::~fake_method): New.
2082 (evaluate_subexp_standard): Use 'fake_method'.
2083
223ffa71
TT
20842017-09-20 Tom Tromey <tom@tromey.com>
2085
2086 * windows-nat.c (get_windows_debug_event, windows_wait)
2087 (do_initial_windows_stuff, windows_attach): Update.
2088 * utils.c (vwarning, internal_vproblem): Update.
2089 (ui_unregister_input_event_handler_cleanup)
2090 (prepare_to_handle_input): Remove.
2091 (class scoped_input_handler): New.
2092 (defaulted_query, prompt_for_continue): Update.
2093 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
2094 Update.
2095 * top.c (undo_terminal_modifications_before_exit): Update.
2096 * target/target.h (target_terminal_init, target_terminal_inferior)
2097 (target_terminal_ours): Don't declare.
2098 (class target_terminal): New.
2099 * target.h (target_terminal_is_inferior, target_terminal_is_ours)
2100 (target_terminal_ours_for_output)
2101 (make_cleanup_restore_target_terminal): Don't declare.
2102 (target_terminal_info): Remove.
2103 * target.c (enum terminal_state, terminal_state): Remove.
2104 (target_terminal::terminal_state): Define.
2105 (target_terminal::init): Rename from target_terminal_init.
2106 (target_terminal::inferior): Rename from
2107 target_terminal_inferior.
2108 (target_terminal::ours): Rename from target_terminal_ours.
2109 (target_terminal::ours_for_output): Rename from
2110 target_terminal_ours_for_output.
2111 (target_terminal::info): New method.
2112 (cleanup_restore_target_terminal)
2113 (make_cleanup_restore_target_terminal): Remove.
2114 * solib.c (handle_solib_event): Update.
2115 * remote.c (remote_serial_quit_handler): Update.
2116 (remote_terminal_inferior, remote_wait_as): Update.
2117 * record-full.c (record_full_wait_1): Update.
2118 * nto-procfs.c (procfs_create_inferior): Update.
2119 * nat/fork-inferior.c (startup_inferior): Update.
2120 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
2121 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
2122 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
2123 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
2124 (mi_breakpoint_created, mi_breakpoint_deleted)
2125 (mi_breakpoint_modified, mi_on_resume, mi_solib_loaded)
2126 (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
2127 (mi_user_selected_context_changed, report_initial_inferior):
2128 Update.
2129 * linux-nat.c (linux_nat_attach, linux_nat_terminal_ours)
2130 (linux_nat_terminal_inferior): Update.
2131 * infrun.c (follow_fork_inferior)
2132 (handle_vfork_child_exec_or_exit, do_target_resume)
2133 (check_curr_ui_sync_execution_done, handle_inferior_event_1)
2134 (handle_signal_stop, maybe_remove_breakpoints, normal_stop):
2135 Update.
2136 * inflow.c (child_terminal_init, info_terminal_command): Update.
2137 * infcmd.c (post_create_inferior, continue_1, prepare_one_step)
2138 (attach_command): Update.
2139 * infcall.c (call_thread_fsm_should_stop): Update.
2140 * gnu-nat.c (gnu_attach): Update.
2141 * extension.c (struct active_ext_lang_state)
2142 (restore_active_ext_lang): Update.
2143 * exceptions.c (print_flush): Update.
2144 * event-top.c (async_enable_stdin, default_quit_handler): Update.
2145 (struct quit_handler_cleanup_data, restore_quit_handler)
2146 (restore_quit_handler_dtor, make_cleanup_override_quit_handler):
2147 Remove.
2148 * cp-support.c (gdb_demangle): Update.
2149 * breakpoint.c (update_inserted_breakpoint_locations)
2150 (insert_breakpoint_locations, handle_jit_event)
2151 (disable_breakpoints_in_unloaded_shlib): Update.
2152 * annotate.c (annotate_breakpoints_invalid)
2153 (annotate_frames_invalid): Update.
2154
013af3fc
TT
21552017-09-20 Tom Tromey <tom@tromey.com>
2156
2157 * main.c (catch_command_errors): Rename from
2158 catch_command_errors_const.
2159 (captured_main_1): Update.
2160
06871ae8
PA
21612017-09-20 Pedro Alves <palves@redhat.com>
2162
2163 * cli/cli-cmds.c (list_command): Use print_sal_location.
2164 (print_sal_location): New function.
2165 (ambiguous_line_spec): Use print_sal_location.
2166 * linespec.c (symbol_to_sal): Record the symbol in the sal.
2167 * symtab.c (find_function_start_sal): Likewise.
2168 * symtab.h (symtab_and_line::symbol): New field.
2169
e5f25bc5
PA
21702017-09-20 Pedro Alves <palves@redhat.com>
2171
2172 * linespec.c (minsym_found): Handle non-text minsyms.
2173 (symbol_to_sal): Record a sal.pc for non-block, non-label symbols.
2174
1b7fa39e
WT
21752017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
2176
2177 * features/Makefile (i386-avx-mpx-avx512-pku.dat): Add missing
2178 backslash.
2179
37dd0825
WT
21802017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
2181
2182 * gdb.arch/i386-avx512.c (move_zmm_data_to_reg): Use
2183 vmovups instead vmovaps.
2184 (move_zmm_data_to_memory): Use vmovups instead vmovaps.
2185
4e5a4f58
JB
21862017-09-19 John Baldwin <jhb@FreeBSD.org>
2187
2188 * NEWS (Changes since GDB 8.0): Add starti.
2189 * infcmd.c (enum run_break): New.
2190 (run_command_1): Queue pending event for RUN_STOP_AT_FIRST_INSN
2191 case.
2192 (run_command): Use enum run_how.
2193 (start_command): Likewise.
2194 (starti_command): New function.
2195 (RUN_ARGS_HELP): New macro.
2196 (_initialize_infcmd): Use RUN_ARGS_HELP for run and start
2197 commands. Add starti command.
2198
aa70c9f1
YQ
21992017-09-19 Yao Qi <yao.qi@linaro.org>
2200
2201 * Makefile.in (monitor.o): Remove the rule.
2202
d6541620
YQ
22032017-09-19 Yao Qi <yao.qi@linaro.org>
2204
2205 * annotate.h (struct annotate_arg_emitter): Use
2206 DISABLE_COPY_AND_ASSIGN.
2207 * common/refcounted-object.h (refcounted_object): Likewise.
2208 * completer.h (struct completion_result): Likewise.
2209 * dwarf2read.c (struct dwarf2_per_objfile): Likewise.
2210 * filename-seen-cache.h (filename_seen_cache): Likewise.
2211 * gdbcore.h (thread_section_name): Likewise.
2212 * gdb_regex.h (compiled_regex): Likewise.
2213 * gdbthread.h (scoped_restore_current_thread): Likewise.
2214 * inferior.h (scoped_restore_current_inferior): Likewise.
2215 * jit.c (jit_reader): Likewise.
2216 * linespec.h (struct linespec_result): Likewise.
2217 * mi/mi-parse.h (struct mi_parse): Likewise.
2218 * nat/fork-inferior.c (execv_argv): Likewise.
2219 * progspace.h (scoped_restore_current_program_space): Likewise.
2220 * python/python-internal.h (class gdbpy_enter): Likewise.
2221 * regcache.h (regcache): Likewise.
2222 * target-descriptions.c (struct tdesc_reg): Likewise.
2223 (struct tdesc_type): Likewise.
2224 (struct tdesc_feature): Likewise.
2225 * ui-out.h (ui_out_emit_type): Likewise.
2226
0615127c
SM
22272017-09-18 Simon Marchi <simon.marchi@ericsson.com>
2228
2229 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
2230 label abort_expression.
2231
5e187554
SM
22322017-09-16 Simon Marchi <simon.marchi@ericsson.com>
2233
2234 * common/buffer.c (buffer_xml_printf): Adjust.
2235 * common/xml-utils.c (xml_escape_text): Change return type to
2236 std::string, update code accordingly.
2237 * common/xml-utils.h (xml_escape_text): Change return type to
2238 std::string.
2239 * rs6000-aix-tdep.c (rs6000_aix_shared_library_to_xml): Adjust.
2240 * windows-tdep.c (windows_xfer_shared_library): Adjust.
2241 * unittests/xml-utils-selftests.c (test_xml_escape_text):
2242 Adjust.
2243
c3d7b541
SM
22442017-09-16 Simon Marchi <simon.marchi@ericsson.com>
2245
2246 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new source file.
2247 (SUBDIR_UNITTESTS_OBS): Add new object file.
2248 * unittests/xml-utils-selftests.c: New file.
2249
1526853e
SM
22502017-09-16 Simon Marchi <simon.marchi@ericsson.com>
2251
2252 * common/selftest.h (selftest): New struct/interface.
2253 (register_test): Add name parameter, add new overload.
2254 (run_tests): Add filter parameter.
2255 (for_each_selftest_ftype): New typedef.
2256 (for_each_selftest): New declaration.
2257 * common/selftest.c (tests): Change type to
2258 map<string, unique_ptr<selftest>>.
2259 (simple_selftest): New struct.
2260 (register_test): New function.
2261 (register_test): Add name parameter and use it.
2262 (run_tests): Add filter parameter and use it. Add prints.
2263 Adjust to vector -> map change.
2264 * aarch64-tdep.c (_initialize_aarch64_tdep): Add names when
2265 registering selftests.
2266 * arm-tdep.c (_initialize_arm_tdep): Likewise.
2267 * disasm-selftests.c (_initialize_disasm_selftests): Likewise.
2268 * dwarf2-frame.c (_initialize_dwarf2_frame): Likewise.
2269 * dwarf2loc.c (_initialize_dwarf2loc): Likewise.
2270 * findvar.c (_initialize_findvar): Likewise.
2271 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Likewise.
2272 * maint.c (maintenance_selftest): Update call to run_tests.
2273 (maintenance_info_selftests): New function.
2274 (_initialize_maint_cmds): Register "maintenance info selftests"
2275 command. Update "maintenance selftest" doc.
2276 * regcache.c (_initialize_regcache): Add names when registering
2277 selftests.
2278 * rust-exp.y (_initialize_rust_exp): Likewise.
2279 * selftest-arch.c (gdbarch_selftest): New struct.
2280 (gdbarch_tests): Remove.
2281 (register_test_foreach_arch): Add name parameter. Call
2282 register_test.
2283 (tests_with_arch): Remove, move most content to
2284 gdbarch_selftest::operator().
2285 (_initialize_selftests_foreach_arch): Remove.
2286 * selftest-arch.h (register_test_foreach_arch): Add name
2287 parameter.
2288 (run_tests_with_arch): New declaration.
2289 * utils-selftests.c (_initialize_utils_selftests): Add names
2290 when registering selftests.
2291 * utils.c (_initialize_utils): Likewise.
2292 * unittests/array-view-selftests.c
2293 (_initialize_array_view_selftests): Likewise.
2294 * unittests/environ-selftests.c (_initialize_environ_selftests):
2295 Likewise.
2296 * unittests/function-view-selftests.c
2297 (_initialize_function_view_selftests): Likewise.
2298 * unittests/offset-type-selftests.c
2299 (_initialize_offset_type_selftests): Likewise.
2300 * unittests/optional-selftests.c
2301 (_initialize_optional_selftests): Likewise.
2302 * unittests/scoped_restore-selftests.c
2303 (_initialize_scoped_restore_selftests): Likewise.
2304 * NEWS: Document "maintenance selftest" and "maint info
2305 selftests".
2306
5846367a
SM
23072017-09-16 Simon Marchi <simon.marchi@ericsson.com>
2308
2309 * mi/mi-main.c (mi_load_progress): Restore current_uiout using a
2310 scoped_restore.
2311
bd77e8ff
SM
23122017-09-16 Simon Marchi <simon.marchi@ericsson.com>
2313
2314 * mi/mi-main.c (mi_load_progress): Make uiout variable
2315 a unique_ptr.
2316
26a67918
PA
23172017-09-15 Pedro Alves <palves@redhat.com>
2318
2319 * compile/compile-c-types.c (convert_enum, convert_int)
2320 (convert_float): Adjust to refer to int_type_v0 and float_type_v0.
2321
3f8a7804
SM
23222017-09-15 Simon Marchi <simon.marchi@ericsson.com>
2323
2324 * dwarf2read.c (copy_string): Remove.
2325 (parse_macro_definition): Replace copy_string with savestring.
2326
8d200706
YQ
23272017-09-15 Yao Qi <yao.qi@linaro.org>
2328
2329 * configure.tgt (i[34567]86-*-darwin*): Append amd64.o to
2330 gdb_target_obs.
2331 (i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*):
2332 Likewise.
2333 (i[34567]86-*-linux*): Likewise.
2334
d185219d
SM
23352017-09-14 Simon Marchi <simon.marchi@ericsson.com>
2336
2337 * dwarf2expr.h (dwarf_stack_value): Add constructor.
2338 (dwarf_expr_context) <~dwarf_expr_context>: Define as default.
2339 <stack>: Change type to std::vector.
2340 <stack_len, stack_allocated>: Remove.
2341 <grow_stack>: Remove.
2342 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
2343 (dwarf_expr_context::~dwarf_expr_context): Remove.
2344 (dwarf_expr_context::grow_stack): Remove.
2345 (dwarf_expr_context::push): Adjust.
2346 (dwarf_expr_context::pop): Adjust.
2347 (dwarf_expr_context::fetch): Adjust.
2348 (dwarf_expr_context::fetch_in_stack_memory): Adjust.
2349 (dwarf_expr_context::stack_empty_p): Adjust.
2350 (dwarf_expr_context::execute_stack_op): Adjust.
2351
eccd80d6
SM
23522017-09-14 Simon Marchi <simon.marchi@ericsson.com>
2353
2354 * dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
2355 return type to bool.
2356 * dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
2357
69009882
SM
23582017-09-14 Simon Marchi <simon.marchi@ericsson.com>
2359
2360 * dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
2361 Change type to bool.
2362 (dwarf_stack_value) <in_stack_memory>: Likewise.
2363 (dwarf_expr_context) <push_address>: Change parameter type to
2364 bool.
2365 <fetch_in_stack_memory>: Change return type to bool.
2366 <push>: Change parameter type to bool.
2367 * dwarf2expr.c (dwarf_expr_context::push): Change parameter type
2368 to bool.
2369 (dwarf_expr_context::push_address): Likewise.
2370 (dwarf_expr_context::fetch_in_stack_memory): Change return type
2371 to bool.
2372 (dwarf_expr_context::execute_stack_op): Adjust.
2373 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
2374
1e467161
SM
23752017-09-14 Simon Marchi <simon.marchi@ericsson.com>
2376
2377 * dwarf2expr.h (struct dwarf_expr_piece): Move up.
2378 (struct dwarf_expr_context) <n_pieces>: Remove.
2379 <pieces>: Change type to std::vector.
2380 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
2381 (dwarf_expr_context::~dwarf_expr_context): Don't manually free
2382 pieces.
2383 (dwarf_expr_context::add_piece): Adjust.
2384 * dwarf2loc.c (struct piece_closure): Initialize fields.
2385 <n_pieces>: Remove.
2386 <pieces>: Change type to std::vector.
2387 (allocate_piece_closure): Adjust, change parameter to
2388 std::vector rvalue and std::move it to piece_closure.
2389 (rw_pieced_value): Adjust.
2390 (check_pieced_synthetic_pointer): Adjust.
2391 (indirect_synthetic_pointer): Adjust.
2392 (coerce_pieced_ref): Adjust.
2393 (free_pieced_value_closure): Adjust. Use delete to free
2394 piece_closure.
2395 (dwarf2_evaluate_loc_desc_full): Adjust. std::move ctx.pieces
2396 to allocate_piece_closure.
2397 (dwarf2_loc_desc_get_symbol_read_needs): Adjust.
2398
0782db84
SM
23992017-09-12 Simon Marchi <simon.marchi@ericsson.com>
2400
2401 * probe.h (probe_ops_cp): Remove typedef.
2402 (DEF_VEC_P (probe_ops_cp)): Remove.
2403 (all_probe_ops): Change type to std::vector.
2404 * probe.c (info_probes_for_ops): Adjust to vector change.
2405 (probe_linespec_to_ops): Likewise.
2406 (all_probe_ops): Change type to std::vector.
2407 (_initialize_probe): Adjust to vector change.
2408 * dtrace-probe.c (_initialize_dtrace_probe): Likewise.
2409 * elfread.c (elf_get_probes): Likewise.
2410 * stap-probe.c (_initialize_stap_probe): Likewise.
2411
1eac6bea
SM
24122017-09-12 Simon Marchi <simon.marchi@ericsson.com>
2413
2414 * probe.h (struct bound_probe): Define constructors.
2415 * probe.c (bound_probe_s): Remove typedef.
2416 (DEF_VEC_O (bound_probe_s)): Remove VEC.
2417 (collect_probes): Change return type to std::vector, remove
2418 cleanup.
2419 (compare_probes): Return bool, change parameter type. Change
2420 semantic to "less than".
2421 (gen_ui_out_table_header_info): Change parameter to std::vector
2422 and update.
2423 (exists_probe_with_pops): Likewise.
2424 (info_probes_for_ops): Update to std::vector change.
2425 (enable_probes_command): Likewise.
2426 (disable_probes_command): Likewise.
2427
aaa63a31
SM
24282017-09-12 Simon Marchi <simon.marchi@ericsson.com>
2429
2430 * probe.h (struct probe_ops) <get_probes>: Change parameter from
2431 vec to std::vector.
2432 * probe.c (parse_probes_in_pspace): Update.
2433 (find_probes_in_objfile): Update.
2434 (find_probe_by_pc): Update.
2435 (collect_probes): Update.
2436 (probe_any_get_probes): Update.
2437 * symfile.h (struct sym_probe_fns) <sym_get_probes> Change
2438 return type to reference to std::vector.
2439 * dtrace-probe.c (dtrace_process_dof_probe): Change parameter to
2440 std::vector and update.
2441 (dtrace_process_dof): Likewise.
2442 (dtrace_get_probes): Likewise.
2443 * elfread.c (elf_get_probes): Change return type to std::vector,
2444 store an std::vector in bfd_data.
2445 (probe_key_free): Update to std::vector.
2446 * stap-probe.c (handle_stap_probe): Change parameter to
2447 std::vector and update.
2448 (stap_get_probes): Likewise.
2449 * symfile-debug.c (debug_sym_get_probes): Change return type to
2450 std::vector and update.
2451
cb85b21b
TT
24522017-09-11 Tom Tromey <tom@tromey.com>
2453
2454 * breakpoint.c (program_breakpoint_here_p): Update.
2455 * target.c (make_scoped_restore_show_memory_breakpoints): Rename
2456 from make_show_memory_breakpoints_cleanup. Return a
2457 scoped_restore_tmpl<int>.
2458 (restore_show_memory_breakpoints): Remove.
2459 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Update.
2460 * mem-break.c (memory_validate_breakpoint): Update.
2461 * ia64-tdep.c (ia64_memory_insert_breakpoint): Update.
2462 (ia64_memory_remove_breakpoint): Update.
2463 (ia64_breakpoint_from_pc): Update.
2464 * target.h (make_scoped_restore_show_memory_breakpoints): Rename
2465 from make_show_memory_breakpoints_cleanup.
2466
8fbc99ef
TT
24672017-09-11 Tom Tromey <tom@tromey.com>
2468
2469 * d-namespace.c (d_lookup_symbol): Use std::string.
2470 (find_symbol_in_baseclass): Likewise.
2471
50feb4bd
TT
24722017-09-11 Tom Tromey <tom@tromey.com>
2473
2474 * ctf.c (ctf_start): Use std::string.
2475
c6dc63a1
TT
24762017-09-11 Tom Tromey <tom@tromey.com>
2477
2478 * ada-lang.c (is_known_support_routine): Update.
2479 (ada_unhandled_exception_name_addr_from_raise): Update.
2480 * guile/scm-frame.c (gdbscm_frame_name): Update.
2481 * python/py-frame.c (frapy_name): Update.
2482 (frapy_function): Update.
2483 * stack.h (find_frame_funname): Update.
2484 * stack.c (find_frame_funname): Return unique_xmalloc_ptr.
2485 (print_frame): Update.
2486
d6b9b80f
TT
24872017-09-11 Tom Tromey <tom@tromey.com>
2488
2489 * findcmd.c (put_bits): Take a gdb::byte_vector.
2490 (parse_find_args): Return gdb::byte_vector. "args" now const.
2491 Remove "pattern_bufp" and "pattern_lenp" parameters. Remove
2492 cleanups.
2493 (find_command): Update.
2494
a9921622
TT
24952017-09-11 Tom Tromey <tom@tromey.com>
2496
2497 * cli/cli-script.c (class scoped_restore_hook_in): New.
2498 (clear_hook_in_cleanup): Remove.
2499 (execute_cmd_pre_hook, execute_cmd_post_hook): Use
2500 scoped_restore_hook_in.
2501
be0d7abb
TT
25022017-09-11 Tom Tromey <tom@tromey.com>
2503
2504 * cli/cli-script.c (restore_interp): Remove.
2505 (read_command_lines): Use scoped_restore_interp.
2506 * interps.c (scoped_restore_interp::set_temp): Rename from
2507 interp_set_temp.
2508 * interps.h (class scoped_restore_interp): New.
2509 (interp_set_temp): Remove.
2510
00f675ff
TT
25112017-09-11 Tom Tromey <tom@tromey.com>
2512
2513 * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
2514 (mi_cmd_catch_exception, mi_catch_load_unload): Update.
2515 * mi/mi-cmd-break.c (setup_breakpoint_reporting): Return a
2516 scoped_restore.
2517 (mi_cmd_break_insert_1): Update.
2518 * mi/mi-cmd-break.h (setup_breakpoint_reporting): Return a
2519 scoped_restore.
2520
cb791d59
TT
25212017-09-11 Tom Tromey <tom@tromey.com>
2522
2523 * demangle.c (demangle_command): Update.
2524 * breakpoint.c (disable_command): Update.
2525 (enable_command): Update.
2526 (find_location_by_number): Make "number" const. Use
2527 get_number_trailer.
2528 * cli/cli-utils.c (extract_arg): Return std::string.
2529 * probe.c (parse_probe_linespec): Update. Change types.
2530 (collect_probes): Take string arguments.
2531 (parse_probe_linespec): Likewise.
2532 (info_probes_for_ops): Update.
2533 (enable_probes_command): Update.
2534 (disable_probes_command): Update.
2535 * break-catch-sig.c (catch_signal_split_args): Update.
2536 * mi/mi-parse.c (mi_parse): Update.
2537
2039bd9f
TT
25382017-09-11 Tom Tromey <tom@tromey.com>
2539
2540 * language.h (language_enum): Make argument const.
2541 * language.c (language_enum): Make argument const.
2542
f1735a53
TT
25432017-09-11 Tom Tromey <tom@tromey.com>
2544
2545 * common/common-utils.h (skip_to_space): Remove macro, redeclare
2546 as function.
2547 (skip_to_space): Rename from skip_to_space_const.
2548 * common/common-utils.c (skip_to_space): New function.
2549 (skip_to_space): Rename from skip_to_space_const.
2550 * cli/cli-utils.h (get_number): Rename from get_number_const.
2551 (extract_arg): Rename from extract_arg_const.
2552 * cli/cli-utils.c (get_number): Rename from get_number_const.
2553 (extract_arg): Rename from extract_arg_const.
2554 (number_or_range_parser::get_number): Use ::get_number.
2555 * aarch64-linux-tdep.c, ada-lang.c, arm-linux-tdep.c, ax-gdb.c,
2556 break-catch-throw.c, breakpoint.c, cli/cli-cmds.c, cli/cli-dump.c,
2557 cli/cli-script.c, cli/cli-setshow.c, compile/compile.c,
2558 completer.c, demangle.c, disasm.c, findcmd.c, linespec.c,
2559 linux-tdep.c, linux-thread-db.c, location.c, mi/mi-parse.c,
2560 minsyms.c, nat/linux-procfs.c, printcmd.c, probe.c,
2561 python/py-breakpoint.c, record.c, rust-exp.y, serial.c, stack.c,
2562 stap-probe.c, tid-parse.c, tracepoint.c: Update all callers.
2563
7d221d74
TT
25642017-09-11 Tom Tromey <tom@tromey.com>
2565
2566 * python/python.c (do_start_initialization): Use
2567 py-event-types.def to initialize types.
2568 Define all object type structures.
2569 * python/python-internal.h: Don't declare event initialization
2570 functions.
2571 * python/py-threadevent.c (thread_event_object_type): Don't
2572 define.
2573 * python/py-stopevent.c (stop_event_object_type): Don't define.
2574 * python/py-signalevent.c (signal_event_object_type): Don't
2575 declare or define.
2576 * python/py-newobjfileevent.c (new_objfile_event_object_type)
2577 (clear_objfiles_event_object_type): Don't declare or define.
2578 * python/py-infevents.c (inferior_call_pre_event_object_type)
2579 (inferior_call_post_event_object_type)
2580 (register_changed_event_object_type)
2581 (memory_changed_event_object_type): Don't declare or define.
2582 * python/py-inferior.c (new_thread_event_object_type)
2583 (new_inferior_event_object_type)
2584 (inferior_deleted_event_object_type): Don't declare or define.
2585 * python/py-exitedevent.c (exited_event_object_type): Don't
2586 declare or define.
2587 * python/py-evts.c (gdbpy_initialize_py_events): Use
2588 py-all-events.def.
2589 * python/py-events.h (thread_event_object_type): Don't declare.
2590 (events_object): Use py-all-events.def.
2591 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove. Use
2592 py-event-types.def.
2593 * python/py-event-types.def: New file.
2594 * python/py-continueevent.c (create_continue_event_object): Don't
2595 declare or define.
2596 * python/py-bpevent.c (breakpoint_event_object_type): Don't
2597 declare or define.
2598 * python/py-all-events.def: New file.
2599
35c61a1d
TT
26002017-09-11 Tom Tromey <tom@tromey.com>
2601
2602 * python/py-threadevent.c (create_thread_event_object): Return
2603 gdbpy_ref.
2604 * python/py-stopevent.h (create_stop_event_object)
2605 (create_breakpoint_event_object, create_signal_event_object):
2606 Update.
2607 * python/py-stopevent.c (create_stop_event_object): Return
2608 gdbpy_ref.
2609 (emit_stop_event): Update.
2610 * python/py-signalevent.c (create_signal_event_object): Return
2611 gdbpy_ref.
2612 * python/py-infevents.c (create_inferior_call_event_object):
2613 Update.
2614 * python/py-event.h (create_event_object)
2615 (create_thread_event_object): Update.
2616 * python/py-event.c (create_event_object): Return gdbpy_ref.
2617 * python/py-continueevent.c: Return gdbpy_ref.
2618 * python/py-bpevent.c (create_breakpoint_event_object): Return
2619 gdbpy_ref.
2620
7c96f8c1
TT
26212017-09-11 Tom Tromey <tom@tromey.com>
2622
2623 PR python/15622:
2624 * NEWS: Add entry.
2625 * python/python.c (do_start_initialization): Initialize new event
2626 types.
2627 * python/python-internal.h (gdbpy_initialize_new_inferior_event)
2628 (gdbpy_initialize_inferior_deleted_event)
2629 (gdbpy_initialize_new_thread_event): Declare.
2630 * python/py-threadevent.c (create_thread_event_object): Add option
2631 "thread" parameter.
2632 * python/py-inferior.c (new_thread_event_object_type)
2633 (new_inferior_event_object_type)
2634 (inferior_deleted_event_object_type): Declare.
2635 (python_new_inferior, python_inferior_deleted): New functions.
2636 (add_thread_object): Emit new_thread event.
2637 (gdbpy_initialize_inferior): Attach new functions to corresponding
2638 observers.
2639 (new_thread, new_inferior, inferior_deleted): Define new event
2640 types.
2641 * python/py-evts.c (gdbpy_initialize_py_events): Add new
2642 registries.
2643 * python/py-events.h (events_object) <new_inferior,
2644 inferior_deleted, new_thread>: New fields.
2645 * python/py-event.h (create_thread_event_breakpoint): Add optional
2646 "thread" parameter.
2647
72542b8e
AB
26482017-09-10 Andrew Burgess <andrew.burgess@embecosm.com>
2649
2650 * utils.c (abort_with_message): Don't compare gdb_stderr to NULL,
2651 check current_ui instead.
2652 (internal_vproblem): Likewise.
2653
0d64823e
SM
26542017-09-09 Simon Marchi <simon.marchi@ericsson.com>
2655
2656 * thread.c (print_thread_info_1): Remove unnecessary calls to
2657 uiout->is_mi_like_p.
2658
eb1e02fd
TT
26592017-09-09 Tom Tromey <tom@tromey.com>
2660
2661 * namespace.h (add_using_directive): Update.
2662 * namespace.c (add_using_directive): Change type of excludes to
2663 std::vector.
2664 * dwarf2read.c (read_import_statement): Use std::vector.
2665 (read_namespace): Update.
2666 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
2667
0fc21fd8
TT
26682017-09-09 Tom Tromey <tom@tromey.com>
2669
2670 * linespec.c (create_sals_line_offset): Use gdb::def_vector.
2671
49663d05
TT
26722017-09-09 Tom Tromey <tom@tromey.com>
2673
2674 * p-valprint.c (pascal_object_print_value): Use gdb::byte_vector.
2675
0b868b60
TT
26762017-09-09 Tom Tromey <tom@tromey.com>
2677
2678 * stack.c (func_command): Use gdb::def_vector.
2679
c0470d48
TT
26802017-09-09 Tom Tromey <tom@tromey.com>
2681
2682 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Use gdb::optional,
2683 ui_out_emit_list, ui_out_emit_tuple.
2684 (mi_cmd_var_update): Likewise.
2685
ca5909c7
TT
26862017-09-09 Tom Tromey <tom@tromey.com>
2687
2688 * mi/mi-interp.c (mi_user_selected_context_changed): Use
2689 ui_out_redirect_pop.
2690 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
2691 ui_out_redirect_pop.
2692 * utils.c (do_ui_out_redirect_pop)
2693 (make_cleanup_ui_out_redirect_pop): Remove.
2694 * top.c (execute_command_to_string): Use ui_out_redirect_pop.
2695 * utils.h (make_cleanup_ui_out_redirect_pop): Remove.
2696 * ui-out.h (ui_out_redirect_pop): New class.
2697
e6a2252a
TT
26982017-09-09 Tom Tromey <tom@tromey.com>
2699
2700 * mi/mi-main.c (output_cores): Use ui_out_emit_list.
2701 (list_available_thread_groups, mi_cmd_list_thread_groups)
2702 (mi_cmd_data_list_changed_registers, mi_cmd_data_read_memory)
2703 (mi_cmd_data_read_memory_bytes, mi_cmd_trace_frame_collected):
2704 Likewise.
2705
393702cd
TT
27062017-09-09 Tom Tromey <tom@tromey.com>
2707
2708 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
2709 ui_out_emit_tuple.
2710
76f9c9cf
TT
27112017-09-09 Tom Tromey <tom@tromey.com>
2712
2713 * target.c (flash_erase_command): Use ui_out_emit_tuple.
2714 * stack.c (print_frame): Use ui_out_emit_tuple.
2715 * spu-tdep.c (info_spu_event_command): Use ui_out_emit_tuple.
2716 (info_spu_mailbox_command, info_spu_dma_command)
2717 (info_spu_proxydma_command): Likewise.
2718 * mi/mi-main.c (mi_cmd_trace_frame_collected): Use
2719 ui_out_emit_tuple, gdb::byte_vector, bin2hex.
2720 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
2721 ui_out_emit_tuple.
2722 * breakpoint.c (print_it_watchpoint): Use ui_out_emit_tuple.
2723
dc9fe180
TT
27242017-09-09 Tom Tromey <tom@tromey.com>
2725
2726 * ui-out.h (make_cleanup_ui_out_table_begin_end): Remove.
2727 (class ui_out_emit_table): Update comment.
2728 * ui-out.c (do_cleanup_table_end)
2729 (make_cleanup_ui_out_table_begin_end): Remove.
2730 * spu-tdep.c (info_spu_mailbox_list): Use ui_out_emit_table.
2731 (info_spu_dma_cmdlist): Likewise.
2732 * probe.c (info_probes_for_ops): Use ui_out_emit_table.
2733 * darwin-nat-info.c (darwin_debug_regions_recurse): Use
2734 ui_out_emit_table.
2735
f8cc3da6
TT
27362017-09-09 Tom Tromey <tom@tromey.com>
2737
2738 * thread.c (print_thread_info_1): Use ui_out_emit_table,
2739 ui_out_emit_list, gdb::optional.
2740
481695ed
JB
27412017-09-09 John Baldwin <jhb@FreeBSD.org>
2742
2743 * aarch64-linux-nat.c: Remove _initialize_aarch64_linux_nat
2744 prototype.
2745 * aarch64-linux-tdep.c: Remove _initialize_aarch64_linux_tdep
2746 prototype.
2747 * aarch64-newlib-tdep.c: Remove _initialize_aarch64_newlib_tdep
2748 prototype.
2749 * aarch64-tdep.c: Remove _initialize_aarch64_tdep prototype.
2750 * ada-exp.y: Remove _initialize_ada_exp prototype.
2751 * ada-lang.c: Remove _initialize_ada_language prototype.
2752 * ada-tasks.c: Remove _initialize_tasks prototype.
2753 * addrmap.c: Remove _initialize_addrmap prototype.
2754 * agent.c: Remove _initialize_agent prototype.
2755 * aix-thread.c: Remove _initialize_aix_thread prototype.
2756 * alpha-bsd-nat.c: Remove _initialize_alphabsd_nat prototype.
2757 * alpha-linux-nat.c: Remove _initialize_alpha_linux_nat prototype.
2758 * alpha-linux-tdep.c: Remove _initialize_alpha_linux_tdep
2759 prototype.
2760 * alpha-nbsd-tdep.c: Remove _initialize_alphanbsd_tdep prototype.
2761 * alpha-obsd-tdep.c: Remove _initialize_alphaobsd_tdep prototype.
2762 * alpha-tdep.c: Remove _initialize_alpha_tdep prototype.
2763 * amd64-darwin-tdep.c: Remove _initialize_amd64_darwin_tdep
2764 prototype.
2765 * amd64-dicos-tdep.c: Remove _initialize_amd64_dicos_tdep
2766 prototype.
2767 * amd64-fbsd-nat.c: Remove _initialize_amd64fbsd_nat prototype.
2768 * amd64-fbsd-tdep.c: Remove _initialize_amd64fbsd_tdep prototype.
2769 * amd64-linux-nat.c: Remove _initialize_amd64_linux_nat prototype.
2770 * amd64-linux-tdep.c: Remove _initialize_amd64_linux_tdep
2771 prototype.
2772 * amd64-nbsd-nat.c: Remove _initialize_amd64nbsd_nat prototype.
2773 * amd64-nbsd-tdep.c: Remove _initialize_amd64nbsd_tdep prototype.
2774 * amd64-obsd-nat.c: Remove _initialize_amd64obsd_nat prototype.
2775 * amd64-obsd-tdep.c: Remove _initialize_amd64obsd_tdep prototype.
2776 * amd64-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
2777 * amd64-tdep.c: Remove _initialize_amd64_tdep prototype.
2778 * amd64-windows-nat.c: Remove _initialize_amd64_windows_nat
2779 prototype.
2780 * amd64-windows-tdep.c: Remove _initialize_amd64_windows_tdep
2781 prototype.
2782 * annotate.c: Remove _initialize_annotate prototype.
2783 * arc-newlib-tdep.c: Remove _initialize_arc_newlib_tdep prototype.
2784 * arc-tdep.c: Remove _initialize_arc_tdep prototype.
2785 * arch-utils.c: Remove _initialize_gdbarch_utils prototype.
2786 * arm-linux-nat.c: Remove _initialize_arm_linux_nat prototype.
2787 * arm-linux-tdep.c: Remove _initialize_arm_linux_tdep prototype.
2788 * arm-nbsd-tdep.c: Remove _initialize_arm_netbsd_tdep prototype.
2789 * arm-obsd-tdep.c: Remove _initialize_armobsd_tdep prototype.
2790 * arm-symbian-tdep.c: Remove _initialize_arm_symbian_tdep
2791 prototype.
2792 * arm-tdep.c: Remove _initialize_arm_tdep prototype.
2793 * arm-wince-tdep.c: Remove _initialize_arm_wince_tdep prototype.
2794 * auto-load.c: Remove _initialize_auto_load prototype.
2795 * auxv.c: Remove _initialize_auxv prototype.
2796 * avr-tdep.c: Remove _initialize_avr_tdep prototype.
2797 * ax-gdb.c: Remove _initialize_ax_gdb prototype.
2798 * bfin-linux-tdep.c: Remove _initialize_bfin_linux_tdep prototype.
2799 * bfin-tdep.c: Remove _initialize_bfin_tdep prototype.
2800 * break-catch-sig.c: Remove _initialize_break_catch_sig prototype.
2801 * break-catch-syscall.c: Remove _initialize_break_catch_syscall
2802 prototype.
2803 * break-catch-throw.c: Remove _initialize_break_catch_throw
2804 prototype.
2805 * breakpoint.c: Remove _initialize_breakpoint prototype.
2806 * bsd-uthread.c: Remove _initialize_bsd_uthread prototype.
2807 * btrace.c: Remove _initialize_btrace prototype.
2808 * charset.c: Remove _initialize_charset prototype.
2809 * cli/cli-cmds.c: Remove _initialize_cli_cmds prototype.
2810 * cli/cli-dump.c: Remove _initialize_cli_dump prototype.
2811 * cli/cli-interp.c: Remove _initialize_cli_interp prototype.
2812 * cli/cli-logging.c: Remove _initialize_cli_logging prototype.
2813 * cli/cli-script.c: Remove _initialize_cli_script prototype.
2814 * coff-pe-read.c: Remove _initialize_coff_pe_read prototype.
2815 * coffread.c: Remove _initialize_coffread prototype.
2816 * compile/compile.c: Remove _initialize_compile prototype.
2817 * complaints.c: Remove _initialize_complaints prototype.
2818 * completer.c: Remove _initialize_completer prototype.
2819 * copying.awk: Remove _initialize_copying prototype.
2820 * copying.c: Regenerate.
2821 * core-regset.c: Remove _initialize_core_regset prototype.
2822 * corefile.c: Remove _initialize_core prototype.
2823 * corelow.c: Remove _initialize_corelow prototype.
2824 * cp-abi.c: Remove _initialize_cp_abi prototype.
2825 * cp-namespace.c: Remove _initialize_cp_namespace prototype.
2826 * cp-support.c: Remove _initialize_cp_support prototype.
2827 * cp-valprint.c: Remove _initialize_cp_valprint prototype.
2828 * cris-linux-tdep.c: Remove _initialize_cris_linux_tdep prototype.
2829 * cris-tdep.c: Remove _initialize_cris_tdep prototype.
2830 * ctf.c: Remove _initialize_ctf prototype.
2831 * d-lang.c: Remove _initialize_d_language prototype.
2832 * darwin-nat-info.c: Remove _initialize_darwin_info_commands
2833 prototype.
2834 * darwin-nat.c: Remove _initialize_darwin_inferior prototype.
2835 * dbxread.c: Remove _initialize_dbxread prototype.
2836 * dcache.c: Remove _initialize_dcache prototype.
2837 * demangle.c: Remove _initialize_demangler prototype.
2838 * disasm-selftests.c: Remove _initialize_disasm_selftests
2839 prototype.
2840 * disasm.c: Remove _initialize_disasm prototype.
2841 * dtrace-probe.c: Remove _initialize_dtrace_probe prototype.
2842 * dummy-frame.c: Remove _initialize_dummy_frame prototype.
2843 * dwarf2-frame-tailcall.c: Remove _initialize_tailcall_frame
2844 prototype.
2845 * dwarf2-frame.c: Remove _initialize_dwarf2_frame prototype.
2846 * dwarf2expr.c: Remove _initialize_dwarf2expr prototype.
2847 * dwarf2loc.c: Remove _initialize_dwarf2loc prototype.
2848 * dwarf2read.c: Remove _initialize_dwarf2_read prototype.
2849 * elfread.c: Remove _initialize_elfread prototype.
2850 * exec.c: Remove _initialize_exec prototype.
2851 * extension.c: Remove _initialize_extension prototype.
2852 * f-lang.c: Remove _initialize_f_language prototype.
2853 * f-valprint.c: Remove _initialize_f_valprint prototype.
2854 * fbsd-nat.c: Remove _initialize_fbsd_nat prototype.
2855 * fbsd-tdep.c: Remove _initialize_fbsd_tdep prototype.
2856 * filesystem.c: Remove _initialize_filesystem prototype.
2857 * findcmd.c: Remove _initialize_mem_search prototype.
2858 * fork-child.c: Remove _initialize_fork_child prototype.
2859 * frame-base.c: Remove _initialize_frame_base prototype.
2860 * frame-unwind.c: Remove _initialize_frame_unwind prototype.
2861 * frame.c: Remove _initialize_frame prototype.
2862 * frv-linux-tdep.c: Remove _initialize_frv_linux_tdep prototype.
2863 * frv-tdep.c: Remove _initialize_frv_tdep prototype.
2864 * ft32-tdep.c: Remove _initialize_ft32_tdep prototype.
2865 * gcore.c: Remove _initialize_gcore prototype.
2866 * gdb_bfd.c: Remove _initialize_gdb_bfd prototype.
2867 * gdbarch.c: Regenerate.
2868 * gdbarch.sh: Remove _initialize_gdbarch prototype.
2869 * gdbtypes.c: Remove _initialize_gdbtypes prototype.
2870 * gnu-nat.c: Remove _initialize_gnu_nat prototype.
2871 * gnu-v2-abi.c: Remove _initialize_gnu_v2_abi prototype.
2872 * gnu-v3-abi.c: Remove _initialize_gnu_v3_abi prototype.
2873 * go-lang.c: Remove _initialize_go_language prototype.
2874 * go32-nat.c: Remove _initialize_go32_nat prototype.
2875 * guile/guile.c: Remove _initialize_guile prototype.
2876 * h8300-tdep.c: Remove _initialize_h8300_tdep prototype.
2877 * hppa-linux-nat.c: Remove _initialize_hppa_linux_nat prototype.
2878 * hppa-linux-tdep.c: Remove _initialize_hppa_linux_tdep prototype.
2879 * hppa-nbsd-nat.c: Remove _initialize_hppanbsd_nat prototype.
2880 * hppa-nbsd-tdep.c: Remove _initialize_hppanbsd_tdep prototype.
2881 * hppa-obsd-nat.c: Remove _initialize_hppaobsd_nat prototype.
2882 * hppa-obsd-tdep.c: Remove _initialize_hppaobsd_tdep prototype.
2883 * hppa-tdep.c: Remove _initialize_hppa_tdep prototype.
2884 * i386-bsd-nat.c: Remove _initialize_i386bsd_nat prototype.
2885 * i386-cygwin-tdep.c: Remove _initialize_i386_cygwin_tdep
2886 prototype.
2887 * i386-darwin-tdep.c: Remove _initialize_i386_darwin_tdep
2888 prototype.
2889 * i386-dicos-tdep.c: Remove _initialize_i386_dicos_tdep prototype.
2890 * i386-fbsd-nat.c: Remove _initialize_i386fbsd_nat prototype.
2891 * i386-fbsd-tdep.c: Remove _initialize_i386fbsd_tdep prototype.
2892 * i386-gnu-nat.c: Remove _initialize_i386gnu_nat prototype.
2893 * i386-gnu-tdep.c: Remove _initialize_i386gnu_tdep prototype.
2894 * i386-linux-nat.c: Remove _initialize_i386_linux_nat prototype.
2895 * i386-linux-tdep.c: Remove _initialize_i386_linux_tdep prototype.
2896 * i386-nbsd-nat.c: Remove _initialize_i386nbsd_nat prototype.
2897 * i386-nbsd-tdep.c: Remove _initialize_i386nbsd_tdep prototype.
2898 * i386-nto-tdep.c: Remove _initialize_i386nto_tdep prototype.
2899 * i386-obsd-nat.c: Remove _initialize_i386obsd_nat prototype.
2900 * i386-obsd-tdep.c: Remove _initialize_i386obsd_tdep prototype.
2901 * i386-sol2-nat.c: Remove _initialize_amd64_sol2_nat prototype.
2902 * i386-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
2903 * i386-tdep.c: Remove _initialize_i386_tdep prototype.
2904 * i386-windows-nat.c: Remove _initialize_i386_windows_nat
2905 prototype.
2906 * ia64-libunwind-tdep.c: Remove _initialize_libunwind_frame
2907 prototype.
2908 * ia64-linux-nat.c: Remove _initialize_ia64_linux_nat prototype.
2909 * ia64-linux-tdep.c: Remove _initialize_ia64_linux_tdep prototype.
2910 * ia64-tdep.c: Remove _initialize_ia64_tdep prototype.
2911 * ia64-vms-tdep.c: Remove _initialize_ia64_vms_tdep prototype.
2912 * infcall.c: Remove _initialize_infcall prototype.
2913 * infcmd.c: Remove _initialize_infcmd prototype.
2914 * inferior.c: Remove _initialize_inferiors prototype.
2915 * inflow.c: Remove _initialize_inflow prototype.
2916 * infrun.c: Remove _initialize_infrun prototype.
2917 * interps.c: Remove _initialize_interpreter prototype.
2918 * iq2000-tdep.c: Remove _initialize_iq2000_tdep prototype.
2919 * jit.c: Remove _initialize_jit prototype.
2920 * language.c: Remove _initialize_language prototype.
2921 * linux-fork.c: Remove _initialize_linux_fork prototype.
2922 * linux-nat.c: Remove _initialize_linux_nat prototype.
2923 * linux-tdep.c: Remove _initialize_linux_tdep prototype.
2924 * linux-thread-db.c: Remove _initialize_thread_db prototype.
2925 * lm32-tdep.c: Remove _initialize_lm32_tdep prototype.
2926 * m2-lang.c: Remove _initialize_m2_language prototype.
2927 * m32c-tdep.c: Remove _initialize_m32c_tdep prototype.
2928 * m32r-linux-nat.c: Remove _initialize_m32r_linux_nat prototype.
2929 * m32r-linux-tdep.c: Remove _initialize_m32r_linux_tdep prototype.
2930 * m32r-tdep.c: Remove _initialize_m32r_tdep prototype.
2931 * m68hc11-tdep.c: Remove _initialize_m68hc11_tdep prototype.
2932 * m68k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
2933 * m68k-bsd-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
2934 * m68k-linux-nat.c: Remove _initialize_m68k_linux_tdep prototype.
2935 * m68k-linux-tdep.c: Remove _initialize_m68k_linux_tdep prototype.
2936 * m68k-tdep.c: Remove _initialize_m68k_tdep prototype.
2937 * m88k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
2938 * m88k-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
2939 * machoread.c: Remove _initialize_machoread prototype.
2940 * macrocmd.c: Remove _initialize_macrocmd prototype.
2941 * macroscope.c: Remove _initialize_macroscope prototype.
2942 * maint.c: Remove _initialize_maint_cmds prototype.
2943 * mdebugread.c: Remove _initialize_mdebugread prototype.
2944 * memattr.c: Remove _initialize_mem prototype.
2945 * mep-tdep.c: Remove _initialize_mep_tdep prototype.
2946 * mi/mi-cmd-env.c: Remove _initialize_mi_cmd_env prototype.
2947 * mi/mi-cmds.c: Remove _initialize_mi_cmds prototype.
2948 * mi/mi-interp.c: Remove _initialize_mi_interp prototype.
2949 * mi/mi-main.c: Remove _initialize_mi_main prototype.
2950 * microblaze-linux-tdep.c: Remove
2951 _initialize_microblaze_linux_tdep prototype.
2952 * microblaze-tdep.c: Remove _initialize_microblaze_tdep prototype.
2953 * mips-fbsd-nat.c: Remove _initialize_mips_fbsd_nat prototype.
2954 * mips-fbsd-tdep.c: Remove _initialize_mips_fbsd_tdep prototype.
2955 * mips-linux-nat.c: Remove _initialize_mips_linux_nat prototype.
2956 * mips-linux-tdep.c: Remove _initialize_mips_linux_tdep prototype.
2957 * mips-nbsd-nat.c: Remove _initialize_mipsnbsd_nat prototype.
2958 * mips-nbsd-tdep.c: Remove _initialize_mipsnbsd_tdep prototype.
2959 * mips-sde-tdep.c: Remove _initialize_mips_sde_tdep prototype.
2960 * mips-tdep.c: Remove _initialize_mips_tdep prototype.
2961 * mips64-obsd-nat.c: Remove _initialize_mips64obsd_nat prototype.
2962 * mips64-obsd-tdep.c: Remove _initialize_mips64obsd_tdep
2963 prototype.
2964 * mipsread.c: Remove _initialize_mipsread prototype.
2965 * mn10300-linux-tdep.c: Remove _initialize_mn10300_linux_tdep
2966 prototype.
2967 * mn10300-tdep.c: Remove _initialize_mn10300_tdep prototype.
2968 * moxie-tdep.c: Remove _initialize_moxie_tdep prototype.
2969 * msp430-tdep.c: Remove _initialize_msp430_tdep prototype.
2970 * mt-tdep.c: Remove _initialize_mt_tdep prototype.
2971 * nds32-tdep.c: Remove _initialize_nds32_tdep prototype.
2972 * nios2-linux-tdep.c: Remove _initialize_nios2_linux_tdep
2973 prototype.
2974 * nios2-tdep.c: Remove _initialize_nios2_tdep prototype.
2975 * nto-procfs.c: Remove _initialize_procfs prototype.
2976 * nto-tdep.c: Remove _initialize_nto_tdep prototype.
2977 * objc-lang.c: Remove _initialize_objc_language prototype.
2978 * objfiles.c: Remove _initialize_objfiles prototype.
2979 * observer.c: Remove observer_test_first_notification_function,
2980 observer_test_second_notification_function,
2981 observer_test_third_notification_function, and
2982 _initialize_observer prototypes.
2983 * opencl-lang.c: Remove _initialize_opencl_language prototypes.
2984 * osabi.c: Remove _initialize_gdb_osabi prototype.
2985 * osdata.c: Remove _initialize_osdata prototype.
2986 * p-valprint.c: Remove _initialize_pascal_valprint prototype.
2987 * parse.c: Remove _initialize_parse prototype.
2988 * ppc-fbsd-nat.c: Remove _initialize_ppcfbsd_nat prototype.
2989 * ppc-fbsd-tdep.c: Remove _initialize_ppcfbsd_tdep prototype.
2990 * ppc-linux-nat.c: Remove _initialize_ppc_linux_nat prototype.
2991 * ppc-linux-tdep.c: Remove _initialize_ppc_linux_tdep prototype.
2992 * ppc-nbsd-nat.c: Remove _initialize_ppcnbsd_nat prototype.
2993 * ppc-nbsd-tdep.c: Remove _initialize_ppcnbsd_tdep prototype.
2994 * ppc-obsd-nat.c: Remove _initialize_ppcobsd_nat prototype.
2995 * ppc-obsd-tdep.c: Remove _initialize_ppcobsd_tdep prototype.
2996 * printcmd.c: Remove _initialize_printcmd prototype.
2997 * probe.c: Remove _initialize_probe prototype.
2998 * proc-api.c: Remove _initialize_proc_api prototype.
2999 * proc-events.c: Remove _initialize_proc_events prototype.
3000 * proc-service.c: Remove _initialize_proc_service prototype.
3001 * procfs.c: Remove _initialize_procfs prototype.
3002 * psymtab.c: Remove _initialize_psymtab prototype.
3003 * python/python.c: Remove _initialize_python prototype.
3004 * ravenscar-thread.c: Remove _initialize_ravenscar prototype.
3005 * record-btrace.c: Remove _initialize_record_btrace prototype.
3006 * record-full.c: Remove _initialize_record_full prototype.
3007 * record.c: Remove _initialize_record prototype.
3008 * regcache.c: Remove _initialize_regcache prototype.
3009 * reggroups.c: Remove _initialize_reggroup prototype.
3010 * remote-notif.c: Remove _initialize_notif prototype.
3011 * remote-sim.c: Remove _initialize_remote_sim prototype.
3012 * remote.c: Remove _initialize_remote prototype.
3013 * reverse.c: Remove _initialize_reverse prototype.
3014 * rl78-tdep.c: Remove _initialize_rl78_tdep prototype.
3015 * rs6000-aix-tdep.c: Remove _initialize_rs6000_aix_tdep prototype.
3016 * rs6000-lynx178-tdep.c: Remove _initialize_rs6000_lynx178_tdep
3017 prototype.
3018 * rs6000-nat.c: Remove _initialize_rs6000_nat prototype.
3019 * rs6000-tdep.c: Remove _initialize_rs6000_tdep prototype.
3020 * rust-exp.y: Remove _initialize_rust_exp prototype.
3021 * rx-tdep.c: Remove _initialize_rx_tdep prototype.
3022 * s390-linux-nat.c: Remove _initialize_s390_nat prototype.
3023 * s390-linux-tdep.c: Remove _initialize_s390_tdep prototype.
3024 * score-tdep.c: Remove _initialize_score_tdep prototype.
3025 * selftest-arch.c: Remove _initialize_selftests_foreach_arch
3026 prototype.
3027 * ser-go32.c: Remove _initialize_ser_dos prototype.
3028 * ser-mingw.c: Remove _initialize_ser_windows prototype.
3029 * ser-pipe.c: Remove _initialize_ser_pipe prototype.
3030 * ser-tcp.c: Remove _initialize_ser_tcp prototype.
3031 * ser-unix.c: Remove _initialize_ser_hardwire prototype.
3032 * serial.c: Remove _initialize_serial prototype.
3033 * sh-linux-tdep.c: Remove _initialize_sh_linux_tdep prototype.
3034 * sh-nbsd-nat.c: Remove _initialize_shnbsd_nat prototype.
3035 * sh-nbsd-tdep.c: Remove _initialize_shnbsd_tdep prototype.
3036 * sh-tdep.c: Remove _initialize_sh_tdep prototype.
3037 * skip.c: Remove _initialize_step_skip prototype.
3038 * sol-thread.c: Remove _initialize_sol_thread prototype.
3039 * solib-aix.c: Remove _initialize_solib_aix prototype.
3040 * solib-darwin.c: Remove _initialize_darwin_solib prototype.
3041 * solib-dsbt.c: Remove _initialize_dsbt_solib prototype.
3042 * solib-frv.c: Remove _initialize_frv_solib prototype.
3043 * solib-spu.c: Remove _initialize_spu_solib prototype.
3044 * solib-svr4.c: Remove _initialize_svr4_solib prototype.
3045 * solib-target.c: Remove _initialize_solib_target prototype.
3046 * solib.c: Remove _initialize_solib prototype.
3047 * source.c: Remove _initialize_source prototype.
3048 * sparc-linux-nat.c: Remove _initialize_sparc_linux_nat prototype.
3049 * sparc-linux-tdep.c: Remove _initialize_sparc_linux_tdep
3050 prototype.
3051 * sparc-nat.c: Remove _initialize_sparc_nat prototype.
3052 * sparc-nbsd-nat.c: Remove _initialize_sparcnbsd_nat prototype.
3053 * sparc-nbsd-tdep.c: Remove _initialize_sparcnbsd_tdep prototype.
3054 * sparc-obsd-tdep.c: Remove _initialize_sparc32obsd_tdep
3055 prototype.
3056 * sparc-sol2-nat.c: Remove _initialize_sparc_sol2_nat prototype.
3057 * sparc-sol2-tdep.c: Remove _initialize_sparc_sol2_tdep prototype.
3058 * sparc-tdep.c: Remove _initialize_sparc_tdep prototype.
3059 * sparc64-fbsd-nat.c: Remove _initialize_sparc64fbsd_nat
3060 prototype.
3061 * sparc64-fbsd-tdep.c: Remove _initialize_sparc64fbsd_tdep
3062 prototype.
3063 * sparc64-linux-nat.c: Remove _initialize_sparc64_linux_nat
3064 prototype.
3065 * sparc64-linux-tdep.c: Remove _initialize_sparc64_linux_tdep
3066 prototype.
3067 * sparc64-nat.c: Remove _initialize_sparc64_nat prototype.
3068 * sparc64-nbsd-nat.c: Remove _initialize_sparc64nbsd_nat
3069 prototype.
3070 * sparc64-nbsd-tdep.c: Remove _initialize_sparc64nbsd_tdep
3071 prototype.
3072 * sparc64-obsd-nat.c: Remove _initialize_sparc64obsd_nat
3073 prototype.
3074 * sparc64-obsd-tdep.c: Remove _initialize_sparc64obsd_tdep
3075 prototype.
3076 * sparc64-sol2-tdep.c: Remove _initialize_sparc64_sol2_tdep
3077 prototype.
3078 * spu-linux-nat.c: Remove _initialize_spu_nat prototype.
3079 * spu-multiarch.c: Remove _initialize_spu_multiarch prototype.
3080 * spu-tdep.c: Remove _initialize_spu_tdep prototype.
3081 * stabsread.c: Remove _initialize_stabsread prototype.
3082 * stack.c: Remove _initialize_stack prototype.
3083 * stap-probe.c: Remove _initialize_stap_probe prototype.
3084 * std-regs.c: Remove _initialize_frame_reg prototype.
3085 * symfile-debug.c: Remove _initialize_symfile_debug prototype.
3086 * symfile-mem.c: Remove _initialize_symfile_mem prototype.
3087 * symfile.c: Remove _initialize_symfile prototype.
3088 * symmisc.c: Remove _initialize_symmisc prototype.
3089 * symtab.c: Remove _initialize_symtab prototype.
3090 * target-dcache.c: Remove _initialize_target_dcache prototype.
3091 * target-descriptions.c: Remove _initialize_target_descriptions
3092 prototype.
3093 * thread.c: Remove _initialize_thread prototype.
3094 * tic6x-linux-tdep.c: Remove _initialize_tic6x_linux_tdep
3095 prototype.
3096 * tic6x-tdep.c: Remove _initialize_tic6x_tdep prototype.
3097 * tilegx-linux-nat.c: Remove _initialize_tile_linux_nat prototype.
3098 * tilegx-linux-tdep.c: Remove _initialize_tilegx_linux_tdep
3099 prototype.
3100 * tilegx-tdep.c: Remove _initialize_tilegx_tdep prototype.
3101 * tracefile-tfile.c: Remove _initialize_tracefile_tfile prototype.
3102 * tracefile.c: Remove _initialize_tracefile prototype.
3103 * tracepoint.c: Remove _initialize_tracepoint prototype.
3104 * tui/tui-hooks.c: Remove _initialize_tui_hooks prototype.
3105 * tui/tui-interp.c: Remove _initialize_tui_interp prototype.
3106 * tui/tui-layout.c: Remove _initialize_tui_layout prototype.
3107 * tui/tui-regs.c: Remove _initialize_tui_regs prototype.
3108 * tui/tui-stack.c: Remove _initialize_tui_stack prototype.
3109 * tui/tui-win.c: Remove _initialize_tui_win prototype.
3110 * tui/tui.c: Remove _initialize_tui prototype.
3111 * typeprint.c: Remove _initialize_typeprint prototype.
3112 * user-regs.c: Remove _initialize_user_regs prototype.
3113 * utils.c: Remove _initialize_utils prototype.
3114 * v850-tdep.c: Remove _initialize_v850_tdep prototype.
3115 * valarith.c: Remove _initialize_valarith prototype.
3116 * valops.c: Remove _initialize_valops prototype.
3117 * valprint.c: Remove _initialize_valprint prototype.
3118 * value.c: Remove _initialize_values prototype.
3119 * varobj.c: Remove _initialize_varobj prototype.
3120 * vax-bsd-nat.c: Remove _initialize_vaxbsd_nat prototype.
3121 * vax-nbsd-tdep.c: Remove _initialize_vaxnbsd_tdep prototype.
3122 * vax-tdep.c: Remove _initialize_vax_tdep prototype.
3123 * windows-nat.c: Remove _initialize_windows_nat,
3124 _initialize_check_for_gdb_ini, and _initialize_loadable
3125 prototypes.
3126 * windows-tdep.c: Remove _initialize_windows_tdep prototype.
3127 * xcoffread.c: Remove _initialize_xcoffread prototype.
3128 * xml-support.c: Remove _initialize_xml_support prototype.
3129 * xstormy16-tdep.c: Remove _initialize_xstormy16_tdep prototype.
3130 * xtensa-linux-nat.c: Remove _initialize_xtensa_linux_nat
3131 prototype.
3132 * xtensa-linux-tdep.c: Remove _initialize_xtensa_linux_tdep
3133 prototype.
3134 * xtensa-tdep.c: Remove _initialize_xtensa_tdep prototype.
3135
a611b5cb
KS
31362017-09-08 Keith Seitz <keiths@redhat.com>
3137
3138 * dwarf2read.c (struct field_info) <fnfields>: Remove unused
3139 field.
3140
469412dd
CW
31412017-09-08 Christoph Weinmann <christoph.t.weinmann@intel.com>
3142
3143 * f-valprint.c (f_val_print): Remove check for one byte
3144 sized integers. Remove printing of character type.
3145
a5ad232b
FP
31462017-09-08 Frank Penczek <frank.penczek@intel.com>
3147 Christoph Weinmann <christoph.t.weinmann@intel.com>
3148 Bernhard Heckel <bernhard.heckel@intel.com>
3149
3150 * f-typeprint.c (f_type_print_base): Use fprintfi_filtered
3151 to maintain proper indentation when printing pointers/refs.
3152
e5014227
JB
31532017-09-07 Joel Brobecker <brobecker@adacore.com>
3154
3155 GDB 8.0.1 released.
3156
63c99141
JB
31572017-09-07 Joel Brobecker <brobecker@adacore.com>
3158
3159 * NEWS (Changes in GDB 7.11): Remove entry for QStartupWithShell.
3160
69c1e056
TT
31612017-09-05 Tom Tromey <tom@tromey.com>
3162
3163 * parse.c (funcall_chain): Now a std::vector.
3164 (start_arglist, end_arglist): Simplify.
3165 (free_funcalls): Remove.
3166 (parse_exp_in_context_1): Remove cleanup.
3167
fef704bf
TT
31682017-09-05 Tom Tromey <tom@tromey.com>
3169
3170 * go-exp.y (go_parse): Don't create a cleanup.
3171
5613c585
TT
31722017-09-05 Tom Tromey <tom@tromey.com>
3173
3174 * d-exp.y (PrimaryExpression): Use std::string.
3175 (d_parse): Don't create a cleanup.
3176
eae49211
TT
31772017-09-05 Tom Tromey <tom@tromey.com>
3178
3179 * utils.c (do_clear_parser_state): Remove.
3180 (make_cleanup_clear_parser_state): Remove.
3181 * p-exp.y (pascal_parse): Use scoped_restore.
3182 * m2-exp.y (m2_parse): Use scoped_restore.
3183 * f-exp.y (f_parse): Use scoped_restore.
3184 * d-exp.y (d_parse): Use scoped_restore.
3185 * c-exp.y (c_parse): Use scoped_restore.
3186 * ada-exp.y (ada_parse): Use scoped_restore.
3187 * utils.h (make_cleanup_clear_parser_state): Remove.
3188
73b9be8b
KS
31892017-09-06 Keith Seitz <keiths@redhat.com>
3190
3191 * dwarf2read.c (dw2_linkage_name_attr): New function.
3192 (dw2_linkage_name): New function.
3193 (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
3194 (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
3195 (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
3196
a102602b
KR
31972017-09-06 Kamil Rytarowski <n54@gmx.com>
3198
3199 * config/djgpp/djconfig.sh: Correct shell portability issue.
3200
28ad437d
KR
32012017-09-06 Kamil Rytarowski <n54@gmx.com>
3202
3203 * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
3204
351787dd
JB
32052017-09-06 John Baldwin <jhb@FreeBSD.org>
3206
3207 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
3208 * NEWS: Mention new FreeBSD/mips native configuration.
3209 * configure.host: Add aarch64*-*-freebsd*.
3210 * configure.nat: Likewise.
3211 * aarch64-fbsd-nat.c: New file.
3212
c0f84956
JB
32132017-09-06 John Baldwin <jhb@FreeBSD.org>
3214
3215 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
3216 (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
3217 * NEWS: Mention new FreeBSD/aarch64 target.
3218 * configure.tgt: Add aarch64*-*-freebsd*.
3219 * aarch64-fbsd-tdep.c: New file.
3220 * aarch64-fbsd-tdep.h: New file.
3221
7610297a
KR
32222017-09-06 Kamil Rytarowski <n54@gmx.com>
3223
3224 * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
3225
fbd1b771
JK
32262017-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3227
3228 * parse.c (find_minsym_type_and_address): Don't relocate addresses
3229 of TLS symbols.
3230
5ca79eae
PW
32312017-09-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3232
3233 * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
3234 call.
3235
bf93d7ba
SM
32362017-09-05 Simon Marchi <simon.marchi@ericsson.com>
3237
3238 * infrun.c (follow_exec): Call add_thread after
3239 target_find_description.
3240
1bb7c059
SM
32412017-09-05 Simon Marchi <simon.marchi@ericsson.com>
3242
3243 * infrun.c (handle_inferior_event_1): When exec'ing, read
3244 stop_pc after follow_exec.
3245
fc809827
SM
32462017-09-05 Simon Marchi <simon.marchi@ericsson.com>
3247
3248 * remote.c (process_g_packet): Update error message.
3249
d2fcdd85
YQ
32502017-09-05 Yao Qi <yao.qi@linaro.org>
3251
3252 * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
3253 targets.
3254
e69570ee
PA
32552017-09-05 Pedro Alves <palves@redhat.com>
3256
3257 * eval.c (eval_call, evaluate_funcall): New functions, factored
3258 out from ...
3259 (evaluate_subexp_standard): ... this.
3260
22916b07
YQ
32612017-09-05 Yao Qi <yao.qi@linaro.org>
3262
3263 * amd64-tdep.c (amd64_target_description): Create target
3264 descriptions.
3265 (_initialize_amd64_tdep): Don't call functions
3266 initialize_tdesc_amd64_*. Add self tests.
3267 * arch/amd64.c (amd64_create_target_description): Add parameter
3268 is_linux. Call set_tdesc_osabi if is_linux is true.
3269 * arch/amd64.h (amd64_create_target_description): Update the
3270 declaration.
3271 * arch/i386.c (i386_create_target_description): Add parameter
3272 is_linux. Call set_tdesc_osabi if is_linux is true.
3273 * arch/i386.h (i386_create_target_description): Update
3274 declaration.
3275 * configure.tgt: Add i386.o to gdb_target_obs.
3276 * features/Makefile (XMLTOC): Remove i386/*.xml.
3277 * features/i386/amd64-avx-avx512.c: Remove.
3278 * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
3279 * features/i386/amd64-avx-mpx.c: Remove.
3280 * features/i386/amd64-avx.c: Remove.
3281 * features/i386/amd64-mpx.c: Remove.
3282 * features/i386/amd64.c: Remove.
3283 * features/i386/i386-avx-avx512.c: Remove.
3284 * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
3285 * features/i386/i386-avx-mpx.c: Remove.
3286 * features/i386/i386-avx.c: Remove.
3287 * features/i386/i386-mmx.c: Remove.
3288 * features/i386/i386-mpx.c: Remove.
3289 * features/i386/i386.c: Remove.
3290 * i386-tdep.c: Don't include features/i386/i386*.c., include
3291 target-descriptions.h and arch/i386.h.
3292 (i386_target_description): Create target descriptions.
3293 (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
3294 functions. Do self tests.
3295
0854b7b1
YQ
32962017-09-05 Yao Qi <yao.qi@linaro.org>
3297
3298 * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
3299 * features/i386/amd64-avx-avx512-linux.c: Removed.
3300 * features/i386/amd64-avx-linux.c: Removed.
3301 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
3302 * features/i386/amd64-avx-mpx-linux.c: Removed.
3303 * features/i386/amd64-linux.c: Removed.
3304 * features/i386/amd64-mpx-linux.c: Removed.
3305 * features/i386/x32-avx-avx512-linux.c: Removed.
3306 * features/i386/x32-avx-linux.c: Removed.
3307 * features/i386/x32-linux.c: Removed.
3308
b4570e4b
YQ
33092017-09-05 Yao Qi <yao.qi@linaro.org>
3310
3311 * amd64-linux-tdep.c: Include arch/amd64.h. Don't include
3312 features/i386/*.c.
3313 (amd64_linux_read_description): Call
3314 amd64_create_target_description.
3315 * arch/amd64.c: New file.
3316 * arch/amd64.h: New file.
3317 * configure.tgt (x86_64-*-linux*): Append amd64.o.
3318 * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
3319
6c73f67f
YQ
33202017-09-05 Yao Qi <yao.qi@linaro.org>
3321
3322 * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
3323 x32-XXX-linux.c. Include 64bit-XX.c and x32-XX.c.
3324 (amd64_linux_read_description): Create target descriptions.
3325 (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
3326 functions. Add unit tests.
3327 * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
3328 x32-core.xml.
3329 * features/i386/64bit-avx.c: Generated.
3330 * features/i386/64bit-avx512.c: Generated.
3331 * features/i386/64bit-core.c: Generated.
3332 * features/i386/64bit-linux.c: Generated.
3333 * features/i386/64bit-mpx.c: Generated.
3334 * features/i386/64bit-pkeys.c: Generated.
3335 * features/i386/64bit-segments.c: Generated.
3336 * features/i386/64bit-sse.c: Generated.
3337 * features/i386/x32-core.c: Generated.
3338 * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
3339 c files for amd64-linux and x32-linux.
3340
9d3d478b
YQ
33412017-09-05 Yao Qi <yao.qi@linaro.org>
3342
3343 * amd64-linux-tdep.c (amd64_linux_read_description): New
3344 function.
3345 (amd64_linux_core_read_description): Call
3346 amd64_linux_read_description.
3347 (amd64_linux_init_abi): Likewise.
3348 (amd64_x32_linux_init_abi): Likewise.
3349 * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
3350 * x86-linux-nat.c (x86_linux_read_description): Call
3351 amd64_linux_read_description.
3352
b9f1d50f
YQ
33532017-09-05 Yao Qi <yao.qi@linaro.org>
3354
3355 * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
3356 comments.
3357
188c9e6d
YQ
33582017-09-05 Yao Qi <yao.qi@linaro.org>
3359
3360 * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
3361 * features/i386/i386-avx-avx512-linux.c: Remove.
3362 * features/i386/i386-avx-linux.c: Remove.
3363 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
3364 * features/i386/i386-avx-mpx-linux.c: Remove.
3365 * features/i386/i386-linux.c: Remove.
3366 * features/i386/i386-mmx-linux.c: Remove.
3367 * features/i386/i386-mpx-linux.c: Remove.
3368
5f035c07
YQ
33692017-09-05 Yao Qi <yao.qi@linaro.org>
3370
3371 * Makefile.in (ALL_TARGET_OBS): Add i386.o.
3372 (SFILES): Add arch/i386.c.
3373 (HFILES_NO_SRCDIR): Add arch/i386.h.
3374 * arch/i386.c: New file.
3375 * arch/i386.h: New file.
3376 * arch/tdesc.h (allocate_target_description): Declare.
3377 (set_tdesc_architecture): Declare.
3378 (set_tdesc_osabi): Declare.
3379 * configure.tgt (i[34567]86-*-linux*): Add i386.o.
3380 * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
3381 include arch/i386.h.
3382 (i386_linux_read_description): Remove code and call
3383 i386_create_target_description.
3384 (set_tdesc_architecture): New function.
3385 (set_tdesc_osabi): New function.
3386 * target-descriptions.h (allocate_target_description): Remove.
3387
0abe8a89
YQ
33882017-09-05 Yao Qi <yao.qi@linaro.org>
3389
3390 * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
3391 * target-descriptions.c (tdesc_create_feature): Likewise, and
3392 adjust code.
3393 * features/i386/32bit-avx.c: Re-generated.
3394 * features/i386/32bit-avx512.c: Re-generated.
3395 * features/i386/32bit-core.c: Re-generated.
3396 * features/i386/32bit-linux.c: Re-generated.
3397 * features/i386/32bit-mpx.c: Re-generated.
3398 * features/i386/32bit-pkeys.c: Re-generated.
3399 * features/i386/32bit-sse.c: Re-generated.
3400
0a188386
YQ
34012017-09-05 Yao Qi <yao.qi@linaro.org>
3402
3403 * regformats/regdef.h (struct reg): Override operator == and !=.
3404
f49ff000
YQ
34052017-09-05 Yao Qi <yao.qi@linaro.org>
3406
3407 * arch/tdesc.h: New file.
3408 * regformats/regdat.sh: Generate code using tdesc_create_reg.
3409 * target-descriptions.c: Update comments.
3410 * target-descriptions.h: Include "arch/tdesc.h". Remove the
3411 declarations.
3412 * features/i386/32bit-avx.c: Re-generated.
3413 * features/i386/32bit-avx512.c: Re-generated.
3414 * features/i386/32bit-core.c: Re-generated.
3415 * features/i386/32bit-linux.c: Re-generated.
3416 * features/i386/32bit-mpx.c: Re-generated.
3417 * features/i386/32bit-pkeys.c: Re-generated.
3418 * features/i386/32bit-sse.c: Re-generated.
3419
f7000548
YQ
34202017-09-05 Yao Qi <yao.qi@linaro.org>
3421
3422 * regformats/regdat.sh: Update generated code.
3423
c9a5e2a5
YQ
34242017-09-05 Yao Qi <yao.qi@linaro.org>
3425
3426 * regformats/regdat.sh: Adjust code order.
3427
d6b687ac
SM
34282017-09-05 Simon Marchi <simon.marchi@ericsson.com>
3429
3430 * expprint.c (dump_subexp_body_standard): Use constant format
3431 string in fprintf_filtered call.
3432
a379bfd0
JB
34332017-09-04 John Baldwin <jhb@FreeBSD.org>
3434
3435 * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
3436 NetBSD/i386.
3437 * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
3438
f7efc967
JB
34392017-09-04 John Baldwin <jhb@FreeBSD.org>
3440
3441 * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
3442
c49fbc6c
JB
34432017-09-04 John Baldwin <jhb@FreeBSD.org>
3444
3445 * bsd-kvm.o: Define _KMEMUSER.
3446 * configure.ac: Define _KMEMUSER when checking for "struct lwp".
3447 * configure: Regenerate.
3448
26562e73
JB
34492017-09-04 John Baldwin <jhb@FreeBSD.org>
3450
3451 * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
3452 * i386-fbsd-nat.c: Likewise.
3453
31cf1487
JB
34542017-09-04 John Baldwin <jhb@FreeBSD.org>
3455
3456 * unittests/array-view-selftests.c: Add include of <array>.
3457
5b9f8a7c
JB
34582017-09-04 John Baldwin <jhb@FreeBSD.org>
3459
3460 * spu-tdep.c (flush_ea_cache): Add missing argument to
3461 call_function_by_hand.
3462
d69cf9b2
PA
34632017-09-04 Pedro Alves <palves@redhat.com>
3464
3465 * NEWS (Safer support for debugging with no debug info): New.
3466
3693fdb3
PA
34672017-09-04 Pedro Alves <palves@redhat.com>
3468
3469 * c-exp.y (function_method, function_method_void): Add current
3470 instance flags to TYPE_INSTANCE.
3471 * dwarf2read.c (check_modifier): New.
3472 (compute_delayed_physnames): Assert that only C++ adds delayed
3473 physnames. Mark fn_fields as const/volatile depending on
3474 physname.
3475 * eval.c (make_params): New type_instance_flags parameter. Use
3476 it as the new type's instance flags.
3477 (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
3478 flags element and pass it to make_params.
3479 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
3480 instance flags element.
3481 (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
3482 * gdbtypes.h: Include "enum-flags.h".
3483 (type_instance_flags): New enum-flags type.
3484 (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
3485 (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
3486 * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
3487 (follow_type_instance_flags): New function.
3488 (operator_check_standard) <TYPE_INSTANCE>: Adjust.
3489 * parser-defs.h (follow_type_instance_flags): Declare.
3490 * valops.c (value_struct_elt_for_reference): const/volatile must
3491 match too.
3492
e68cb8e0
PA
34932017-09-04 Pedro Alves <palves@redhat.com>
3494
3495 * cp-namespace.c (cp_search_static_and_baseclasses): Handle
3496 function/method scopes; lookup the nested name as a function local
3497 static variable.
3498
858be34c
PA
34992017-09-04 Pedro Alves <palves@redhat.com>
3500
3501 (%type <voidval>): Add function_method.
3502 * c-exp.y (exp): New production for calls with no arguments.
3503 (function_method, function_method_void_or_typelist): New
3504 productions.
3505 (exp): New production for "method()::static_var".
3506 * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
3507 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
3508 Handle OP_FUNC_STATIC_VAR.
3509 * parse.c (operator_length_standard):
3510 Handle OP_FUNC_STATIC_VAR.
3511
dd5901a6
PA
35122017-09-04 Pedro Alves <palves@redhat.com>
3513
3514 * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
3515 handling.
3516 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
3517 Ditto.
3518 * parse.c (operator_length_standard, operator_check_standard):
3519 Ditto.
3520 * std-operator.def (UNOP_MEMVAL_TLS): Delete.
3521
46a4882b
PA
35222017-09-04 Pedro Alves <palves@redhat.com>
3523
3524 * ax-gdb.c: Include "typeprint.h".
3525 (gen_expr_for_cast): New function.
3526 (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
3527 <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
3528 type is unknown.
3529 * dwarf2read.c (new_symbol_full): Fallback to int instead of
3530 nodebug_data_symbol.
3531 * eval.c: Include "typeprint.h".
3532 (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
3533 Error out if symbol has unknown type.
3534 <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
3535 evaluate_subexp_for_cast.
3536 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
3537 OP_VAR_MSYM_VALUE.
3538 (evaluate_subexp_for_cast): New function.
3539 * gdbtypes.c (init_nodebug_var_type): New function.
3540 (objfile_type): Use it to initialize types of variables with no
3541 debug info.
3542 * typeprint.c (error_unknown_type): New.
3543 * typeprint.h (error_unknown_type): New declaration.
3544 * compile/compile-c-types.c (convert_type_basic): Handle
3545 TYPE_CODE_ERROR; warn and fallback to int for variables with
3546 unknown type.
3547
fe13dfec
PA
35482017-09-04 Pedro Alves <palves@redhat.com>
3549
3550 * eval.c (evaluate_var_value): New function, factored out from ...
3551 (evaluate_subexp_standard): ... here.
3552
d008ee21
PA
35532017-09-04 Pedro Alves <palves@redhat.com>
3554
3555 * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
3556 Remove useless assignments to 'op'.
3557
827d0c51
PA
35582017-09-04 Pedro Alves <palves@redhat.com>
3559
3560 * eval.c (eval_skip_value): New function.
3561 (evaluate_subexp_standard): Use it.
3562
2c5a2be1
PA
35632017-09-04 Pedro Alves <palves@redhat.com>
3564
3565 * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
3566 function name from symbol/minsym and pass it to
3567 error_call_unknown_return_type.
3568
74ea4be4
PA
35692017-09-04 Pedro Alves <palves@redhat.com>
3570
3571 * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
3572 * ax-gdb.c (gen_msym_var_ref): New function.
3573 (gen_expr): Handle OP_VAR_MSYM_VALUE.
3574 * eval.c (evaluate_var_msym_value): New function.
3575 * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
3576 <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
3577 to call_function_by_hand.
3578 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
3579 Handle OP_VAR_MSYM_VALUE.
3580 (union exp_element) <msymbol>: New field.
3581 * minsyms.h (struct type): Forward declare.
3582 (find_minsym_type_and_address): Declare.
3583 * parse.c (write_exp_elt_msym): New function.
3584 (write_exp_msymbol): Delete, refactored as ...
3585 (find_minsym_type_and_address): ... this new function.
3586 (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
3587 (operator_length_standard, operator_check_standard): Handle
3588 OP_VAR_MSYM_VALUE.
3589 * std-operator.def (OP_VAR_MSYM_VALUE): New.
3590
7022349d
PA
35912017-09-04 Pedro Alves <palves@redhat.com>
3592
3593 * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
3594 TYPE_GNU_IFUNC specially here. Throw error if return type is
3595 unknown.
3596 * ada-typeprint.c (print_func_type): Handle functions with unknown
3597 return type.
3598 * c-typeprint.c (c_type_print_base): Handle functions and methods
3599 with unknown return type.
3600 * compile/compile-c-symbols.c (convert_symbol_bmsym)
3601 <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
3602 * compile/compile-c-types.c: Include "objfiles.h".
3603 (convert_func): For functions with unknown return type, warn and
3604 default to int.
3605 * compile/compile-object-run.c (compile_object_run): Adjust call
3606 to call_function_by_hand_dummy.
3607 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
3608 call_function_by_hand.
3609 * eval.c (evaluate_subexp_standard): Adjust calls to
3610 call_function_by_hand. Handle functions and methods with unknown
3611 return type. Pass expect_type to call_function_by_hand.
3612 * f-typeprint.c (f_type_print_base): Handle functions with unknown
3613 return type.
3614 * gcore.c (call_target_sbrk): Adjust call to
3615 call_function_by_hand.
3616 * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
3617 return type instead of int. Make nodebug_text_gnu_ifunc_symbol be
3618 an integer address type instead of nodebug.
3619 * guile/scm-value.c (gdbscm_value_call): Adjust call to
3620 call_function_by_hand.
3621 * infcall.c (error_call_unknown_return_type): New function.
3622 (call_function_by_hand): New "default_return_type" parameter.
3623 Pass it down.
3624 (call_function_by_hand_dummy): New "default_return_type"
3625 parameter. Use it instead of defaulting to int. If there's no
3626 default and the return type is unknown, throw an error. If
3627 there's a default return type, and the called function has no
3628 debug info, then assume the function is prototyped.
3629 * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
3630 New "default_return_type" parameter.
3631 (error_call_unknown_return_type): New declaration.
3632 * linux-fork.c (call_lseek): Cast return type of lseek.
3633 (inferior_call_waitpid, checkpoint_command): Adjust calls to
3634 call_function_by_hand.
3635 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
3636 calls to call_function_by_hand.
3637 * m2-typeprint.c (m2_procedure): Handle functions with unknown
3638 return type.
3639 * objc-lang.c (lookup_objc_class, lookup_child_selector)
3640 (value_nsstring, print_object_command): Adjust calls to
3641 call_function_by_hand.
3642 * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
3643 functions with unknown return type.
3644 (pascal_type_print_func_varspec_suffix): New function.
3645 (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
3646 TYPE_CODE_METHOD>: Use it.
3647 * python/py-value.c (valpy_call): Adjust call to
3648 call_function_by_hand.
3649 * rust-lang.c (rust_evaluate_funcall): Adjust call to
3650 call_function_by_hand.
3651 * valarith.c (value_x_binop, value_x_unop): Adjust calls to
3652 call_function_by_hand.
3653 * valops.c (value_allocate_space_in_inferior): Adjust call to
3654 call_function_by_hand.
3655 * typeprint.c (type_print_unknown_return_type): New function.
3656 * typeprint.h (type_print_unknown_return_type): New declaration.
3657
54990598
PA
36582017-09-04 Pedro Alves <palves@redhat.com>
3659
3660 * gdbtypes.c (lookup_function_type_with_arguments): Mark function
3661 types with more than one parameter as prototyped.
3662
9a24775b
PA
36632017-09-04 Pedro Alves <palves@redhat.com>
3664
3665 * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
3666 (disassemble_command): Use gdb_disassembly_flags instead of bare
3667 int.
3668 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
3669 (dump_insns, do_mixed_source_and_assembly_deprecated)
3670 (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
3671 Use gdb_disassembly_flags instead of bare int.
3672 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
3673 (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
3674 (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
3675 (DISASSEMBLY_SPECULATIVE): No longer macros. Instead they're...
3676 (enum gdb_disassembly_flag): ... values of this new enumeration.
3677 (gdb_disassembly_flags): Define.
3678 (gdb_disassembly)
3679 (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
3680 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
3681 gdb_disassembly_flags instead of bare int.
3682 * record-btrace.c (btrace_insn_history)
3683 (record_btrace_insn_history, record_btrace_insn_history_range)
3684 (record_btrace_insn_history_from): Use gdb_disassembly_flags
3685 instead of bare int.
3686 * record.c (get_insn_history_modifiers, cmd_record_insn_history):
3687 Use gdb_disassembly_flags instead of bare int.
3688 * target-debug.h (target_debug_print_gdb_disassembly_flags):
3689 Define.
3690 * target-delegates.c: Regenerate.
3691 * target.c (target_insn_history, target_insn_history_from)
3692 (target_insn_history_range): Use gdb_disassembly_flags instead of
3693 bare int.
3694 * target.h: Include "disasm.h".
3695 (struct target_ops) <to_insn_history, to_insn_history_from,
3696 to_insn_history_range>: Use gdb_disassembly_flags instead of bare
3697 int.
3698 (target_insn_history, target_insn_history_from)
3699 (target_insn_history_range): Use gdb_disassembly_flags instead of
3700 bare int.
3701
80a65e9b
SM
37022017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3703
3704 * cli/cli-script.c (build_command_line): For if/while commands,
3705 check whether args is empty.
3706
6b66338c
SM
37072017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3708
3709 * cli/cli-script.h (enum misc_command_type): Move from defs.h.
3710 (enum command_control_type): Likewise.
3711 (struct command_line): Likewise.
3712 (free_command_lines): Likewise.
3713 (struct command_lines_deleter): Likewise.
3714 (command_line_up): Likewise.
3715 (read_command_lines): Likewise.
3716 (read_command_lines_1): Likewise.
3717 * defs.h (enum misc_command_type): Move to cli/cli-script.h.
3718 (enum command_control_type): Likewise.
3719 (struct command_line): Likewise.
3720 (free_command_lines): Likewise.
3721 (struct command_lines_deleter): Likewise.
3722 (command_line_up): Likewise.
3723 (read_command_lines): Likewise.
3724 (read_command_lines_1): Likewise.
3725 * breakpoint.h: Include cli/cli-script.h.
3726 * extension-priv.h: Likewise.
3727 * gdbcmd.h: Likewise.
3728
51abb421
PA
37292017-09-04 Pedro Alves <palves@redhat.com>
3730
3731 * ada-lang.c (is_known_support_routine): Move sal declaration to
3732 where it is initialized.
3733 * breakpoint.c (create_internal_breakpoint, init_catchpoint)
3734 (parse_breakpoint_sals, decode_static_tracepoint_spec)
3735 (clear_command, update_static_tracepoint): Remove init_sal
3736 references. Move declarations closer to initializations.
3737 * cli/cli-cmds.c (list_command): Move sal declarations closer to
3738 initializations.
3739 * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
3740 references. Move sal declarations closer to initializations.
3741 * frame.c (find_frame_sal): Return a symtab_and_line via function
3742 return instead of output parameter. Remove init_sal references.
3743 * frame.h (find_frame_sal): Return a symtab_and_line via function
3744 return instead of output parameter.
3745 * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
3746 * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
3747 instead of memset.
3748 (gdbscm_find_pc_line): Remove init_sal reference.
3749 * infcall.c (call_function_by_hand_dummy): Remove init_sal
3750 references. Move declarations closer to initializations.
3751 * infcmd.c (set_step_frame): Update. Move declarations closer to
3752 initializations.
3753 (finish_backward): Remove init_sal references. Move declarations
3754 closer to initializations.
3755 * infrun.c (process_event_stop_test, handle_step_into_function)
3756 (insert_hp_step_resume_breakpoint_at_frame)
3757 (insert_step_resume_breakpoint_at_caller): Likewise.
3758 * linespec.c (create_sals_line_offset, decode_digits_ordinary)
3759 (symbol_to_sal): Likewise.
3760 * probe.c (parse_probes_in_pspace): Remove init_sal reference.
3761 * python/py-frame.c (frapy_find_sal): Move sal declaration closer
3762 to its initialization.
3763 * reverse.c (save_bookmark_command): Use new/delete. Remove
3764 init_sal references. Move declarations closer to initializations.
3765 * source.c (get_current_source_symtab_and_line): Remove brace
3766 initialization.
3767 (set_current_source_symtab_and_line): Now takes the sal by const
3768 reference. Remove brace initialization.
3769 (line_info): Remove init_sal reference.
3770 * source.h (set_current_source_symtab_and_line): Now takes a
3771 symtab_and_line via const reference.
3772 * stack.c (set_current_sal_from_frame): Adjust.
3773 (print_frame_info): Adjust.
3774 (get_last_displayed_sal): Return the sal via function return
3775 instead of via output parameter. Simplify.
3776 (frame_info): Adjust.
3777 * stack.h (get_last_displayed_sal): Return the sal via function
3778 return instead of via output parameter.
3779 * symtab.c (init_sal): Delete.
3780 (find_pc_sect_line): Remove init_sal references. Move
3781 declarations closer to initializations.
3782 (find_function_start_sal): Remove init_sal references. Move
3783 declarations closer to initializations.
3784 * symtab.h (struct symtab_and_line): In-class initialize all
3785 fields.
3786 * tracepoint.c (set_traceframe_context)
3787 (print_one_static_tracepoint_marker): Remove init_sal references.
3788 Move declarations closer to initializations.
3789 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
3790 * tui/tui-stack.c (tui_show_frame_info): Adjust. Move
3791 declarations closer to initializations.
3792 * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
3793 init_sal references. Adjust.
3794
6c5b2ebe
PA
37952017-09-04 Pedro Alves <palves@redhat.com>
3796
3797 * ax-gdb.c (agent_command_1): Use range-for.
3798 * break-catch-throw.c (re_set_exception_catchpoint): Update.
3799 * breakpoint.c: Include "common/array-view.h".
3800 (init_breakpoint_sal, create_breakpoint_sal): Change sals
3801 parameter from struct symtabs_and_lines to
3802 array_view<symtab_and_line>. Adjust. Use range-for. Update.
3803 (breakpoint_sals_to_pc): Change sals parameter from struct
3804 symtabs_and_lines to std::vector reference.
3805 (check_fast_tracepoint_sals): Change sals parameter from struct
3806 symtabs_and_lines to std::array_view. Use range-for.
3807 (decode_static_tracepoint_spec): Return a std::vector instead of
3808 symtabs_and_lines. Update.
3809 (create_breakpoint): Update.
3810 (break_range_command, until_break_command, clear_command): Update.
3811 (base_breakpoint_decode_location, bkpt_decode_location)
3812 (bkpt_probe_create_sals_from_location)
3813 (bkpt_probe_decode_location, tracepoint_decode_location)
3814 (tracepoint_probe_decode_location)
3815 (strace_marker_create_sals_from_location): Return a std::vector
3816 instead of symtabs_and_lines.
3817 (strace_marker_create_breakpoints_sal): Update.
3818 (strace_marker_decode_location): Return a std::vector instead of
3819 symtabs_and_lines. Update.
3820 (update_breakpoint_locations): Change struct symtabs_and_lines
3821 parameters to gdb::array_view. Adjust.
3822 (location_to_sals): Return a std::vector instead of
3823 symtabs_and_lines. Update.
3824 (breakpoint_re_set_default): Use std::vector instead of struct
3825 symtabs_and_lines.
3826 (decode_location_default): Return a std::vector instead of
3827 symtabs_and_lines. Update.
3828 * breakpoint.h: Include "common/array-view.h".
3829 (struct breakpoint_ops) <decode_location>: Now returns a
3830 std::vector instead of returning a symtabs_and_lines via output
3831 parameter.
3832 (update_breakpoint_locations): Change sals parameters to use
3833 gdb::array_view.
3834 * cli/cli-cmds.c (edit_command, list_command): Update to use
3835 std::vector and gdb::array_view.
3836 (ambiguous_line_spec): Adjust to use gdb::array_view and
3837 range-for.
3838 (compare_symtabs): Rename to ...
3839 (cmp_symtabs): ... this. Change parameters to symtab_and_line
3840 const reference and adjust.
3841 (filter_sals): Rewrite using std::vector and standard algorithms.
3842 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
3843 (jump_command): Update to use std::vector.
3844 * linespec.c (struct linespec_state) <canonical_names>: Update
3845 comment.
3846 (add_sal_to_sals_basic): Delete.
3847 (add_sal_to_sals, filter_results, convert_results_to_lsals)
3848 (decode_line_2, create_sals_line_offset)
3849 (convert_address_location_to_sals, convert_linespec_to_sals)
3850 (convert_explicit_location_to_sals, parse_linespec)
3851 (event_location_to_sals, decode_line_full, decode_line_1)
3852 (decode_line_with_current_source)
3853 (decode_line_with_last_displayed, decode_objc)
3854 (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
3855 (linespec_result::~linespec_result): Adjust to use std::vector
3856 instead of symtabs_and_lines.
3857 * linespec.h (linespec_sals::sals): Now a std::vector.
3858 (struct linespec_result): Use std::vector, bool, and in-class
3859 initialization.
3860 (decode_line_1, decode_line_with_current_source)
3861 (decode_line_with_last_displayed): Return std::vector.
3862 * macrocmd.c (info_macros_command): Use std::vector.
3863 * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
3864 * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
3865 std::vector.
3866 * probe.h (parse_probes): Return a std::vector.
3867 * python/python.c (gdbpy_decode_line): Use std::vector and
3868 gdb::array_view.
3869 * source.c (select_source_symtab, line_info): Use std::vector.
3870 * stack.c (func_command): Use std::vector.
3871 * symtab.h (struct symtabs_and_lines): Delete.
3872 * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
3873
7c44b49c
PA
38742017-09-04 Pedro Alves <palves@redhat.com>
3875
3876 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3877 unittests/array-view-selftests.c.
3878 (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
3879 * common/array-view.h: New file.
3880 * unittests/array-view-selftests.c: New file.
3881
e439fa14
PA
38822017-09-04 Pedro Alves <palves@redhat.com>
3883
3884 * cli/cli-cmds.c (edit_command): Pass message to
3885 ambiguous_line_spec.
3886 (list_command): Pass message to ambiguous_line_spec. Say
3887 "first"/"last" instead of "start" and "end" to be consistent with
3888 the manual.
3889 (ambiguous_line_spec): Add 'format' and vararg parameters. Use
3890 them to print formatted message.
3891
7525b645
PA
38922017-09-04 Pedro Alves <palves@redhat.com>
3893
3894 * btrace.c (ftrace_add_pt): Pass btrace_insn to
3895 ftrace_update_insns by reference instead of pointer.
3896
badc0020
YQ
38972017-09-04 Yao Qi <yao.qi@linaro.org>
3898
3899 * i386-go32-tdep.c: Include x86-xstate.h.
3900 (i386_go32_init_abi): Call i386_target_description.
3901 * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
3902 if xcr0 is X86_XSTATE_X87_MASK.
3903 * i386-tdep.h (tdesc_i386): Remove the declaration.
3904 (tdesc_i386_mmx): Likewise.
3905
d78bdb54
YQ
39062017-09-04 Yao Qi <yao.qi@linaro.org>
3907
3908 * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
3909 X86_XSTATE_SSE_MASK instead of 0.
3910
ca1fa5ee
YQ
39112017-09-04 Yao Qi <yao.qi@linaro.org>
3912
3913 * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
3914 i386_target_description.
3915 * i386-fbsd-nat.c (i386fbsd_read_description): Call
3916 i386_target_description.
3917 * i386-tdep.c (i386_gdbarch_init): Likewise.
3918
2434b019
YQ
39192017-09-04 Yao Qi <yao.qi@linaro.org>
3920
3921 * amd64-darwin-tdep.c: Include "x86-xstate.h".
3922 (x86_darwin_init_abi_64): Call amd64_target_description.
3923 * amd64-dicos-tdep.c: Likewise.
3924 * amd64-fbsd-nat.c: Likewise.
3925 * amd64-fbsd-tdep.c: Likewise.
3926 * amd64-nbsd-tdep.c: Likewise.
3927 * amd64-obsd-tdep.c: Likewise.
3928 * amd64-sol2-tdep.c: Likewise.
3929 * amd64-windows-tdep.c: Likewise.
3930 * amd64-tdep.h (tdesc_amd64): Remove the declaration.
3931
0860c437
SM
39322017-09-04 Simon Marchi <simon.marchi@ericsson.com>
3933
3934 * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
3935 (btrace_function) <insn>: Change type to use std::vector.
3936 * btrace.c (ftrace_debug, ftrace_call_num_insn,
3937 ftrace_find_call, ftrace_new_gap, ftrace_update_function,
3938 ftrace_update_insns, ftrace_compute_global_level_offset,
3939 btrace_stitch_bts, btrace_clear, btrace_insn_get,
3940 btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
3941 change to std::vector.
3942 (ftrace_update_insns): Adjust to change to std::vector, change
3943 type of INSN parameter.
3944 (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
3945 * record-btrace.c (btrace_call_history_insn_range,
3946 btrace_compute_src_line_range,
3947 record_btrace_frame_prev_register): Adjust to change to
3948 std::vector.
3949 * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
3950 to change to std::vector.
3951
0638b7f9
TT
39522017-09-03 Tom Tromey <tom@tromey.com>
3953
3954 * corefile.c (reopen_exec_file): Use std::string.
3955
8f84fb0e
TT
39562017-09-03 Tom Tromey <tom@tromey.com>
3957
3958 * compile/compile.c (compile_register_name_mangled): Return
3959 std::string.
3960 * compile/compile-loc2c.c (pushf_register_address): Update.
3961 (pushf_register): Update.
3962 * compile/compile-c-types.c (convert_array): Update.
3963 * compile/compile-c-symbols.c (generate_vla_size): Update.
3964 (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
3965 (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
3966 (convert_one_symbol): Update.
3967 (generate_c_for_for_one_variable): Update.
3968 * compile/compile-c-support.c (c_get_range_decl_name): Return a
3969 std::string.
3970 (generate_register_struct): Update.
3971 * compile/compile-internal.h (c_get_range_decl_name): Return a
3972 std::string.
3973 (compile_register_name_mangled): Return std::string.
3974
18e9961f
TT
39752017-09-03 Tom Tromey <tom@tromey.com>
3976
3977 * utils.c (perror_string): Return a std::string.
3978 (throw_perror_with_name, perror_warning_with_name): Update.
3979
45343786
TT
39802017-09-03 Tom Tromey <tom@tromey.com>
3981
3982 * demangle.c (demangle_command): Use std::string,
3983 unique_xmalloc_ptr.
3984
b57af503
TT
39852017-09-03 Tom Tromey <tom@tromey.com>
3986
3987 * cli/cli-setshow.c (do_set_command): Use std::string.
3988
6eecf35f
TT
39892017-09-03 Tom Tromey <tom@tromey.com>
3990
3991 * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
3992
56496dd4
TT
39932017-09-03 Tom Tromey <tom@tromey.com>
3994
3995 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
3996
e91a1fa7
TT
39972017-09-03 Tom Tromey <tom@tromey.com>
3998
3999 * mi/mi-cmd-env.c (env_execute_cli_command): Use
4000 gdb::unique_xmalloc_ptr.
4001
7ffd83d7
TT
40022017-09-03 Tom Tromey <tom@tromey.com>
4003
4004 * thread.c (print_thread_info_1): Use string_printf.
4005 (thread_apply_command, thread_apply_all_command): Use
4006 std::string.
4007
1ccbe998
TT
40082017-09-03 Tom Tromey <tom@tromey.com>
4009
4010 * valprint.c (val_print_string): Update.
4011 * gdbcore.h (memory_error_message): Return std::string.
4012 * corefile.c (memory_error_message): Return std::string.
4013 (memory_error): Update.
4014 * breakpoint.c (insert_bp_location): Update.
4015
23fdd69e
SM
40162017-09-03 Simon Marchi <simon.marchi@ericsson.com>
4017
4018 * target/waitstatus.h (target_waitstatus_to_string): Change
4019 return type to std::string.
4020 * target/waitstatus.c (target_waitstatus_to_string): Return
4021 std::string.
4022 * target.h (target_waitstatus_to_string): Remove declaration.
4023 * infrun.c (resume, clear_proceed_status_thread,
4024 print_target_wait_results, do_target_wait, save_waitstatus,
4025 stop_all_threads): Adjust.
4026 * record-btrace.c (record_btrace_wait): Adjust.
4027 * target-debug.h
4028 (target_debug_print_struct_target_waitstatus_p): Adjust.
4029
5c811d30
JK
40302017-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4031
4032 PR gdb/22046
4033 * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
4034 detection.
4035
0a2dde4a
SDJ
40362017-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
4037
4038 * NEWS (Changes since GDB 8.0): Add entry mentioning new support
4039 for setting/unsetting environment variables on the remote target.
4040 (New remote packets): Add entries for QEnvironmentHexEncoded,
4041 QEnvironmentUnset and QEnvironmentReset.
4042 * common/environ.c (gdb_environ::operator=): Extend method to
4043 handle m_user_set_env_list and m_user_unset_env_list.
4044 (gdb_environ::clear): Likewise.
4045 (match_var_in_string): Change type of first parameter from 'char
4046 *' to 'const char *'.
4047 (gdb_environ::set): Extend method to handle
4048 m_user_set_env_list and m_user_unset_env_list.
4049 (gdb_environ::unset): Likewise.
4050 (gdb_environ::clear_user_set_env): New method.
4051 (gdb_environ::user_set_envp): Likewise.
4052 (gdb_environ::user_unset_envp): Likewise.
4053 * common/environ.h (gdb_environ): Handle m_user_set_env_list and
4054 m_user_unset_env_list on move constructor/assignment.
4055 (unset): Add new default parameter 'update_unset_list = true'.
4056 (clear_user_set_env): New method.
4057 (user_set_envp): Likewise.
4058 (user_unset_envp): Likewise.
4059 (m_user_set_env_list): New std::set.
4060 (m_user_unset_env_list): Likewise.
4061 * common/rsp-low.c (hex2str): New function.
4062 (bin2hex): New overload for bin2hex function.
4063 * common/rsp-low.c (hex2str): New prototype.
4064 (str2hex): New overload prototype.
4065 * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
4066 QEnvironmentUnset and QEnvironmentReset.
4067 (remote_protocol_features): Add QEnvironmentHexEncoded,
4068 QEnvironmentUnset and QEnvironmentReset packets.
4069 (send_environment_packet): New function.
4070 (extended_remote_environment_support): Likewise.
4071 (extended_remote_create_inferior): Call
4072 extended_remote_environment_support.
4073 (_initialize_remote): Add QEnvironmentHexEncoded,
4074 QEnvironmentUnset and QEnvironmentReset packet configs.
4075 * unittests/environ-selftests.c (gdb_selftest_env_var):
4076 New variable.
4077 (test_vector_initialization): New function.
4078 (test_init_from_host_environ): Likewise.
4079 (test_reinit_from_host_environ): Likewise.
4080 (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
4081 Likewise.
4082 (test_unset_set_empty_vector): Likewise.
4083 (test_vector_clear): Likewise.
4084 (test_std_move): Likewise.
4085 (test_move_constructor):
4086 (test_self_move): Likewise.
4087 (test_set_unset_reset): Likewise.
4088 (run_tests): Rewrite in terms of the functions above.
4089
654670a4
WP
40902017-08-31 Weimin Pan <weimin.pan@oracle.com>
4091
4092 * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
4093 (adi_available): Use a temp variable of type CORE_ADDR as argument
4094 3 when calling target_auxv_search.
4095 (adi_normalize_address): Use masks and xor operators to calculate
4096 normalized address.
4097 (adi_read_versions, adi_write_versions, adi_print_versions)
4098 (do_examine, do_assign): Use paddress.
4099
7755ddb7
JB
41002017-08-29 John Baldwin <jhb@FreeBSD.org>
4101
4102 * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
4103 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
4104 out of loop and add supply of FIR.
4105 (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
4106 add collect of FIR.
4107
fd437cbc
SM
41082017-08-28 Simon Marchi <simon.marchi@ericsson.com>
4109
3804a343 4110 PR gdb/21827
fd437cbc
SM
4111 * cli/cli-script.c (define_command): Don't convert command name
4112 to lower case.
4113
988f6b3d
JB
41142017-08-25 Joel Brobecker <brobecker@adacore.com>
4115
4116 * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
4117 Update all callers accordingly. Remove all code blocks handling
4118 the case where DISPP is not NULL.
4119
663c44ac
JK
41202017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4121
4122 PR symtab/22003
4123 * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
4124 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
4125 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
4126
f1902523
JK
41272017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4128
4129 * dwarf2read.c (build_type_psymtabs_reader): New prototype.
4130 (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
4131 (read_comp_units_from_section): New parameter abbrev_section, use
4132 read_and_check_comp_unit_head, allocate signatured_type if needed.
4133 (create_all_comp_units): Update read_comp_units_from_section caller.
4134
87215ad1
SDJ
41352017-08-23 Pedro Alves <palves@redhat.com>
4136
4137 PR remote/21852
4138 * remote.c (add_current_inferior_and_thread): Set inferior_ptid
4139 to null_ptid and switch to thread without reading the registers
4140 after adding the inferior.
4141
6e41ddec
JK
41422017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4143
4144 * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
4145 compile-gcc.
4146 * compile/compile.c (compile_gcc, show_compile_gcc): New.
4147 (compile_to_object): Implement compile_gcc.
4148 (_initialize_compile): Install "set compile-gcc". Initialize
4149 compile_gcc.
4150
e68c32d5
JK
41512017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4152
4153 * compile/compile.c (compile_to_object): Conditionally call
4154 set_verbose. Conditionally call compile or compile_v0.
4155
58afddc6
WP
41562017-08-07 Weimin Pan <weimin.pan@oracle.com>
4157
4158 * sparc64-tdep.h: (adi_normalize_address): New export.
4159 * sparc-nat.h: (open_adi_tag_fd): New export.
4160 * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
4161 * sparc64-linux-tdep.c:
4162 (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
4163 (sparc64_linux_handle_segmentation_fault): New function.
4164 (sparc64_linux_init_abi): Register
4165 sparc64_linux_handle_segmentation_fault
4166 * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
4167 (sparc64_addr_bits_remove): New function.
4168 (sparc64_init_abi): Register sparc64_addr_bits_remove.
4169 (MAX_PROC_NAME_SIZE): New macro.
4170 (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
4171 (sparc64adilist): New variable.
4172 (adi_proc_list): New variable.
4173 (find_adi_info): New function.
4174 (add_adi_info): New function.
4175 (get_adi_info_proc): New function.
4176 (get_adi_info): New function.
4177 (info_adi_command): New function.
4178 (read_maps_entry): New function.
4179 (adi_available): New function.
4180 (adi_normalize_address): New function.
4181 (adi_align_address): New function.
4182 (adi_convert_byte_count): New function.
4183 (adi_tag_fd): New function.
4184 (adi_is_addr_mapped): New function.
4185 (adi_read_versions): New function.
4186 (adi_write_versions): New function.
4187 (adi_print_versions): New function.
4188 (do_examine): New function.
4189 (do_assign): New function.
4190 (adi_examine_command): New function.
4191 (adi_assign_command): New function.
4192 (_initialize_sparc64_adi_tdep): New function.
4193
11db9430
SM
41942017-08-22 Simon Marchi <simon.marchi@ericsson.com>
4195
4196 * breakpoint.c (breakpoints_info): Rename to ...
4197 (info_breakpoints_command): ... this.
4198 (watchpoints_info): Rename to ...
4199 (info_watchpoints_command): ... this.
4200 (tracepoints_info): Rename to ...
4201 (info_tracepoints_command): ... this.
4202 (_initialize_breakpoint): Adjust.
4203 * dcache.c (dcache_info): Rename to ...
4204 (info_display_command): ... this.
4205 (_initialize_dcache): Adjust.
4206 * frame.h (args_info): Rename to ...
4207 (info_args_command): ... this.
4208 (locals_info): Rename to ...
4209 (info_locals_command): ... this.
4210 * infcmd.c (nofp_registers_info): Rename to ...
4211 (info_registers_command): ... this.
4212 (float_info): Rename to ...
4213 (info_float_command): ... this.
4214 (program_info): Rename to ...
4215 (info_program_command): ... this.
4216 (all_registers_info): Rename to ...
4217 (info_all_registers_command): ... this.
4218 (vector_info): Rename to ...
4219 (info_vector_command): ... this.
4220 (float_info): Rename to ...
4221 (info_float_command): ... this.
4222 (_initialize_infcmd): Adjust.
4223 * inferior.h (term_info): Rename to ...
4224 (info_terminal_command): ... this.
4225 * inflow.c (term_info): Rename to ...
4226 (info_terminal_command): ... this.
4227 (_initialize_inflow): Adjust.
4228 * infrun.c (signals_info): Rename to ...
4229 (info_signals_command): ... this.
4230 (_initialize_infrun): Adjust.
4231 * objc-lang.c (classes_info): Rename to ...
4232 (info_classes_command): ... this.
4233 (selectors_info): Rename to ...
4234 (info_selectors_command): ... this.
4235 (_initialize_objc_language): Adjust.
4236 * printcmd.c (sym_info): Rename to ...
4237 (info_symbol_command): ... this.
4238 (address_info): Rename to ...
4239 (info_address_command): ... this.
4240 (display_info): Rename to ...
4241 (info_display_command): ... this.
4242 (_initialize_printcmd): Adjust.
4243 * reverse.c (bookmarks_info): Rename to ...
4244 (info_breakpoints_command): ... this.
4245 (_initialize_reverse): Adjust.
4246 * ser-go32.c (dos_info): Rename to ...
4247 (info_serial_command): ... this.
4248 (_initialize_ser_dos): Adjust.
4249 * skip.c (skip_info): Rename to ...
4250 (info_skip_command): ... this.
4251 (_initialize_step_skip): Adjust.
4252 * source.c (line_info): Rename to ...
4253 (info_line_command): ... this.
4254 (source_info): Rename to ...
4255 (info_source_command)
4256 * stack.c (frame_info): Rename to ...
4257 (info_frame_command): ... this.
4258 (locals_info): Rename to ...
4259 (info_locals_command): ... this.
4260 (args_info): Rename to ...
4261 (info_args_command): ... this.
4262 (_initialize_stack): Adjust.
4263 * symtab.c (sources_info): Rename to ...
4264 (info_sources_command): ... this.
4265 (variables_info): Rename to ...
4266 (info_variables_command): ... this.
4267 (functions_info): Rename to ...
4268 (info_functions_command): ... this.
4269 (types_info): Rename to ...
4270 (info_types_command): ... this.
4271 (_initialize_symtab): Adjust.
4272 * target.c (target_info): Rename to ...
4273 (info_target_command): ... this.
4274 (initialize_targets): Adjust.
4275 * tracepoint.c (tvariables_info): Rename to ...
4276 (info_tvariables_command): ... this.
4277 (scope_info): Rename to ...
4278 (info_scope_command): ... this.
4279 (trace_dump_actions): Adjust.
4280 (_initialize_tracepoint): Adjust.
4281
b270e6f9
TT
42822017-08-22 Tom Tromey <tom@tromey.com>
4283
4284 * breakpoint.h (install_breakpoint): Update.
4285 * breakpoint.c (add_solib_catchpoint): Update.
4286 (install_breakpoint): Change argument to a std::unique_ptr.
4287 (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
4288 (create_breakpoint_sal, create_breakpoint): Update.
4289 (watch_command_1, catch_exec_command_1)
4290 (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
4291 (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
4292 Return the breakpoint.
4293 (set_raw_breakpoint_without_location, set_raw_breakpoint)
4294 (new_single_step_breakpoint): Update.
4295 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
4296 std::unique_ptr.
4297 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
4298 std::unique_ptr.
4299 * break-catch-sig.c (create_signal_catchpoint): Use
4300 std::unique_ptr.
4301 * ada-lang.c (create_ada_exception_catchpoint): Use
4302 std::unique_ptr.
4303
36bd8eaa
TT
43042017-08-22 Tom Tromey <tom@tromey.com>
4305
4306 * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
4307
56f37645
TT
43082017-08-22 Tom Tromey <tom@tromey.com>
4309
4310 * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
4311 (lookup_partial_symbol): Update.
4312
0b581c69
TT
43132017-08-22 Tom Tromey <tom@tromey.com>
4314
4315 * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
4316 * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
4317 (find_and_open_source, symtab_to_fullname): Update.
4318 * psymtab.c (psymtab_to_fullname): Update.
4319
14278e1f
TT
43202017-08-22 Tom Tromey <tom@tromey.com>
4321
4322 * exec.c (exec_file_attach): Update.
4323 * linux-thread-db.c (try_thread_db_load): Update.
4324 * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
4325 * utils.c (gdb_realpath): Change return type.
4326 (gdb_realpath_keepfile): Update.
4327 (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
4328 (_initialize_utils): Register the new self test.
4329 * source.c (openp): Update.
4330 (find_and_open_source): Update.
4331 * nto-tdep.c (nto_find_and_open_solib): Update.
4332 * main.c (set_gdb_data_directory): Update.
4333 (captured_main_1): Update.
4334 * dwarf2read.c (dwarf2_get_dwz_file): Update
4335 (dw2_map_symbol_filenames): Update.
4336 * auto-load.c (auto_load_safe_path_vec_update): Update.
4337 (filename_is_in_auto_load_safe_path_vec): Change type of
4338 "filename_realp".
4339 (auto_load_objfile_script): Update.
4340 (file_is_auto_load_safe): Update. Use std::string.
4341 * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
4342
4971c9a7
TT
43432017-08-22 Tom Tromey <tom@tromey.com>
4344
4345 * utils.c (gdb_realpath_keepfile): Return a
4346 gdb::unique_xmalloc_ptr.
4347 * exec.c (exec_file_attach): Update.
4348 * utils.h (gdb_realpath_keepfile): Return a
4349 gdb::unique_xmalloc_ptr.
4350
e3e41d58
TT
43512017-08-22 Tom Tromey <tom@tromey.com>
4352
4353 * compile/compile.c (compile_file_command): Use
4354 gdb::unique_xmalloc_ptr, std::string.
4355 * utils.c (gdb_abspath): Change return type.
4356 * source.c (openp): Update.
4357 * objfiles.c (allocate_objfile): Update.
4358 * main.c (set_gdb_data_directory): Update.
4359 * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
4360
0d999a6e
ZZ
43612017-08-22 Zhouyi Zhou <zhouzhouyi@gmail.com>
4362
4363 * cli-cmds.c (list_commands): List actual code around more than
4364 one location.
4365
329d5e7e
JB
43662017-08-21 John Baldwin <jhb@FreeBSD.org>
4367
4368 * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
4369
bf223d3e
PA
43702017-08-21 Pedro Alves <palves@redhat.com>
4371
4372 PR gdb/19487
4373 * c-exp.y (variable production): Handle function aliases.
4374 * minsyms.c (msymbol_is_text): New function.
4375 * minsyms.h (msymbol_is_text): Declare.
4376 * symtab.c (find_function_alias_target): New function.
4377 * symtab.h (find_function_alias_target): Declare.
4378
c973d0aa
PA
43792017-08-21 Pedro Alves <palves@redhat.com>
4380
4381 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
4382 typedefs.
4383 * typeprint.c (whatis_exp): If handling "whatis", and expression
4384 is OP_TYPE, strip one typedef level. Otherwise don't strip
4385 typedefs here.
4386 * valops.c (value_cast): Save "to" type before resolving
4387 stubs/typedefs. Use that type as resulting value's type.
4388
2989a365
TT
43892017-08-18 Tom Tromey <tom@tromey.com>
4390 Pedro Alves <palves@redhat.com>
4391
4392 * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
4393 * sol-thread.c (sol_thread_resume, sol_thread_wait)
4394 (sol_thread_xfer_partial, rw_common): Use scoped_restore.
4395 * procfs.c (procfs_do_thread_registers): Use scoped_restore.
4396 * proc-service.c (ps_xfer_memory): Use scoped_restore.
4397 * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
4398 (linux_get_siginfo_data): Add "thread" argument. Use
4399 scoped_restore.
4400 * linux-nat.c (linux_child_follow_fork)
4401 (check_stopped_by_watchpoint): Use scoped_restore.
4402 * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
4403 (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
4404 (restore_inferior_ptid, save_inferior_ptid): Remove.
4405 * btrace.c (btrace_fetch): Use scoped_restore.
4406 * bsd-uthread.c (bsd_uthread_fetch_registers)
4407 (bsd_uthread_store_registers): Use scoped_restore.
4408 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
4409 scoped_restore.
4410 * aix-thread.c (aix_thread_resume, aix_thread_wait)
4411 (aix_thread_xfer_partial): Use scoped_restore.
4412 * inferior.h (save_inferior_ptid): Remove.
4413
e60eb288
YQ
44142017-08-18 Yao Qi <yao.qi@linaro.org>
4415
4416 PR tdep/21818
4417 * arm-tdep.c (gdb_print_insn_arm): Mark
4418 USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
4419
6d580b63
YQ
44202017-08-18 Yao Qi <yao.qi@linaro.org>
4421
4422 * NEWS: Mention GDBserver's new option "--selftest".
4423 * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
4424 * selftest.c: Move it to common/selftest.c.
4425 * selftest.h: Move it to common/selftest.h.
4426 * selftest-arch.c (reset): New function.
4427 (tests_with_arch): Call reset.
4428
86dcbf50
YQ
44292017-08-18 Yao Qi <yao.qi@linaro.org>
4430
4431 * selftest.c (run_tests): Don't call QUIT. Call debug_printf
4432 instead of exception_fprintf and printf_filtered.
4433
7649770c
YQ
44342017-08-18 Yao Qi <yao.qi@linaro.org>
4435
4436 * selftest.c (register_self_test): Rename it to
4437 selftests::register_test.
4438 (run_self_tests): selftest::run_tests.
4439 * selftest.h: Update declarations.
4440 * selftest-arch.c (register_self_test_foreach_arch): Rename it to
4441 selftests::register_test_foreach_arch.
4442 * selftest-arch.h: Update declaration.
4443 * aarch64-tdep.c: Update.
4444 * arm-tdep.c: Likewise.
4445 * disasm-selftests.c: Likewise.
4446 * dwarf2loc.c: Likewise.
4447 * dwarf2-frame.c: Likewise.
4448 * findvar.c: Likewise.
4449 * gdbarch-selftests.c: Likewise.
4450 * maint.c (maintenance_selftest): Likewise.
4451 * regcache.c: Likewise.
4452 * rust-exp.y: Likewise.
4453 * selftest-arch.c: Likewise.
4454 * unittests/environ-selftests.c: Likewise.
4455 * unittests/function-view-selftests.c: Likewise.
4456 * unittests/offset-type-selftests.c: Likewise.
4457 * unittests/optional-selftests.c: Likewise.
4458 * unittests/scoped_restore-selftests.c: Likewise.
4459 * utils-selftests.c: Likewise.
4460
b0cba12e
PA
44612017-08-17 Pedro Alves <palves@redhat.com>
4462
4463 * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
4464 local.
4465
4c8aa72d
PA
44662017-08-17 Pedro Alves <palves@redhat.com>
4467
4468 * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
4469 field.
4470 (reset_die_in_process): Delete, replaced by ...
4471 (process_die_scope): ... this new class. Make it responsible for
4472 freeing cu->line_header too.
4473 (process_die): Use process_die_scope.
4474 (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
4475 cu->line_header_die_owner. Don't release the line header if it's
4476 owned by the CU.
4477 (setup_type_unit_groups): Make the CU/DIE own the line header.
4478 Don't release the line header here.
4479
ba713918
AL
44802017-08-17 Alex Lindsay <alexlindsay239@gmail.com> (tiny change)
4481
4482 * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
4483
44d0fb3a
RK
44842017-08-17 Ruslan Kabatsayev <b7.10110111@gmail.com>
4485
4486 * NEWS: Mention new shortcuts for nexti and stepi in TUI
4487 Single-Key mode
4488
a5afdb16
RK
44892017-08-16 Ruslan Kabatsayev <b7.10110111@gmail.com>
4490
4491 * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
4492 mode command list.
4493
47613aeb
SH
44942017-08-15 Stafford Horne <shorne@gmail.com>
4495
4496 * MAINTAINERS (Write After Approval): Add Stafford Horne.
4497
9c3cc999
SH
44982017-08-15 Stafford Horne <shorne@gmail.com>
4499
4500 * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
4501
206726fb
SDJ
45022017-08-15 Sergio Durigan Junior <sergiodj@redhat.com>
4503
4504 PR gdb/21954
4505 * infcmd.c (unset_environment_command): Use the 'clear' method on
4506 the environment instead of resetting it.
4507
0335ac6d
JB
45082017-08-15 John Baldwin <jhb@FreeBSD.org>
4509
4510 * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
4511 platforms.
4512
d3abe1c8
TT
45132017-08-14 Tom Tromey <tom@tromey.com>
4514
4515 * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
4516 (print_binary_chars): Likewise.
4517 (BITS_IN_BYTES): Remove.
4518
d6382fff
TT
45192017-08-14 Tom Tromey <tom@tromey.com>
4520
4521 PR gdb/21675
4522 * valprint.c (LOW_ZERO): Change value to 034.
4523 (print_octal_chars): Add static_asserts for octal constants.
4524 * printcmd.c (print_scalar_formatted): Add 'd' case.
4525
f978cb06
TT
45262017-08-11 Tom Tromey <tom@tromey.com>
4527
4528 * symfile.c (add_symbol_file_command): Use std::vector.
4529
2f5404b3
TT
45302017-08-14 Tom Tromey <tom@tromey.com>
4531
4532 * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
4533 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
4534 std::move.
4535 * break-catch-sig.c (create_signal_catchpoint): Use std::move.
4536
de7985c3
PA
45372017-08-11 Pedro Alves <palves@redhat.com>
4538
4539 * infrun.c (process_event_stop_test): Adjust
4540 function_name_is_marked_for_skip call.
4541 * skip.c: Include <list>.
4542 (skiplist_entry): Make it a class with private fields, and
4543 getters/setters.
4544 (skiplist_entry_chain): Delete.
4545 (skiplist_entries): New.
4546 (skiplist_entry_count): Delete.
4547 (highest_skiplist_entry_num): New.
4548 (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
4549 (add_skiplist_entry): Delete.
4550 (skiplist_entry::skiplist_entry): New.
4551 (skiplist_entry::add_entry): New.
4552 (skip_file_command, skip_function): Adjust.
4553 (compile_skip_regexp): Delete.
4554 (skip_command): Don't compile regexp here. Adjust to use
4555 skiplist_entry::add_entry.
4556 (skip_info): Adjust to use range-for and getters.
4557 (skip_enable_command, skip_disable_command): Adjust to use
4558 range-for and setters.
4559 (skip_delete_command): Adjust to use std::list.
4560 (add_skiplist_entry): Delete.
4561 (skip_file_p): Delete, refactored as ...
4562 (skiplist_entry::do_skip_file_p): ... this new method.
4563 (skip_gfile_p): Delete, refactored as ...
4564 (skiplist_entry::do_gskip_file_p): ... this new method.
4565 (skip_function_p, skip_rfunction_p): Delete, refactored as ...
4566 (skiplist_entry::skip_function_p): ... this new method.
4567 (function_name_is_marked_for_skip): Now returns bool, and takes
4568 the function sal by const reference. Adjust to use range-for and
4569 skiplist_entry methods.
4570 (_initialize_step_skip): Remove references to
4571 skiplist_entry_chain, skiplist_entry_count.
4572 * skip.h (function_name_is_marked_for_skip): Now returns bool, and
4573 takes the function sal by const reference.
4574
be7d3cd5
YQ
45752017-08-11 Yao Qi <yao.qi@linaro.org>
4576
4577 * dwarf2-frame.c (clear_pointer_cleanup): Remove.
4578 (dwarf2_frame_cache): Remove reset_cache_cleanup.
4579 (dwarf2_frame_cache):
4580 * frame-unwind.c (frame_unwind_try_unwinder): Catch
4581 RETURN_MASK_ALL and set *this_case to NULL.
4582 * frame-unwind.h: Update comments.
4583
1c90d9f0
YQ
45842017-08-11 Yao Qi <yao.qi@linaro.org>
4585
4586 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
4587 (dwarf2_frame_state_copy_regs): Remove.
4588 (dwarf2_frame_state_free_regs): Remove.
4589 (dwarf2_frame_state::~dwarf2_frame_state): Remove.
4590 (dwarf2_restore_rule): Call method .alloc_regs instead of
4591 dwarf2_frame_state_alloc_regs.
4592 (execute_cfa_program): Likewise. Call dwarf2_frame_state_reg_info
4593 constructor. Call std::move.
4594 (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
4595 (dwarf2_frame_cache): Likewise.
4596
4597 [GDB_SELF_TEST]: Include selftest.h and
4598 selftest-arch.h.
4599 [GDB_SELF_TEST] (execute_cfa_program_test): New function.
4600 (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
4601 execute_cfa_program_test.
4602
4603 * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
4604 copy ctor, assignment operator, move assignment.
4605 <alloc_regs>: New method.
4606 <swap>: New method.
4607 (struct dwarf2_frame_state): Delete dtor.
4608 (dwarf2_frame_state_alloc_regs): Remove declaration.
4609 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
4610 dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
4611
afe37d6b
YQ
46122017-08-11 Yao Qi <yao.qi@linaro.org>
4613
4614 * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
4615 (dwarf2_frame_state::dwarf2_frame_state): New.
4616 (dwarf2_frame_state::~dwarf2_frame_state): New.
4617 (dwarf2_fetch_cfa_info): Update.
4618 (dwarf2_frame_cache): Remove old_chain. Change 'fs' to an object
4619 rather than a pointer. Update code.
4620 * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
4621 dtor.
4622 <data_align, code_align, retaddr_column>: Change them to const.
4623 <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
4624 to bool.
4625
b348037f
YQ
46262017-08-11 Yao Qi <yao.qi@linaro.org>
4627
4628 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
4629 <loc.exp>: New field.
4630 * dwarf2-frame.c (execute_cfa_program): Update.
4631 (dwarf2_frame_prev_register): Update.
4632
e7c9de26
PA
46332017-08-10 Pedro Alves <palves@redhat.com>
4634
4635 * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
4636
e8c6b620
JB
46372017-08-09 John Baldwin <jhb@FreeBSD.org>
4638
4639 * fbsd-nat.c (struct fbsd_fork_info): Remove.
4640 (fbsd_pending_children): Use std::list.
4641 (fbsd_remember_child): Likewise.
4642 (fbsd_is_child_pending): Likewise.
4643 (fbsd_pending_vfork_done): Use std::forward_list.
4644 (fbsd_add_vfork_done): Likewise.
4645 (fbsd_is_vfork_done_pending): Likewise.
4646 (fbsd_next_vfork_done): Likewise.
4647
e4a26669
JB
46482017-08-09 John Baldwin <jhb@FreeBSD.org>
4649
4650 * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
4651 (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
4652 [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
4653 for `mapfilename'.
4654 (fbsd_xfer_partial): Use gdb::byte_vector.
af3881e6 4655 (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
e4a26669 4656
142311d3
JB
46572017-08-09 John Baldwin <jhb@FreeBSD.org>
4658
4659 * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
4660 "filestuff.h".
4661 (fbsd_find_memory_regions): Fix `mapfile' initialization.
4662
42fa2e0e
TT
46632017-08-09 Tom Tromey <tom@tromey.com>
4664
4665 * skip.c (skiplist_entry): New constructor.
4666 (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
4667 (skiplist_entry::file_is_glob): Now bool.
4668 (skiplist_entry::file, skiplist_entry::function): Now
4669 std::string.
4670 (make_skip_entry): Return a unique_ptr. Use new.
4671 (free_skiplist_entry, free_skiplist_entry_cleanup)
4672 (make_free_skiplist_entry_cleanup): Remove.
4673 (skip_command, skip_disable_command, add_skiplist_entry)
4674 (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
4675 (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
4676 (function_name_is_marked_for_skip): Update.
4677 (skip_delete_command): Update. Use delete.
4678
cd3af38d
JW
46792017-08-09 Jiong Wang <jiong.wang@arm.com>
4680
4681 * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
4682 (aarch64_linux_core_read_description): New function.
4683 (aarch64_linux_init_abi): Register gdbarch_core_read_description.
4684
29592bde
PA
46852017-08-09 Pedro Alves <palves@redhat.com>
4686
4687 * cp-name-parser.y (cp_comp_to_string): Return a
4688 gdb::unique_xmalloc_ptr<char>.
4689 * cp-support.c (replace_typedefs_qualified_name)
4690 (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
4691 (cp_canonicalize_string_full): Use op= instead of explicit
4692 convertion.
4693 (cp_class_name_from_physname, method_name_from_physname)
4694 (cp_func_name, cp_remove_params): Adjust to use
4695 gdb::unique_xmalloc_ptr<char>.
4696 * cp-support.h (cp_comp_to_string): Return a
4697 gdb::unique_xmalloc_ptr<char>.
4698 * python/py-type.c (typy_lookup_type): Adjust to use
4699 gdb::unique_xmalloc_ptr<char>.
4700
b3340438
L
47012017-08-09 H.J. Lu <hongjiu.lu@intel.com>
4702
4703 * dwarf2read.c (dwarf2_string_attr): Fix a typo.
4704
e88e8651
YQ
47052017-08-09 Alex Lindsay <alexlindsay239@gmail.com>
4706 Yao Qi <yao.qi@linaro.org>
4707
4708 * cp-support.c (cp_canonicalize_string_full): Use
4709 gdb::unique_xmalloc_ptr<char>.
4710 (cp_canonicalize_string): Likewise.
4711
f5a29eb0
YQ
47122017-08-09 Yao Qi <yao.qi@linaro.org>
4713
4714 * features/Makefile (WHICH): Remove i386/ non-linux stuff.
4715 * regformats/i386/amd64-avx-avx512.dat: Remove.
4716 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
4717 * regformats/i386/amd64-avx-mpx.dat:Remove.
4718 * regformats/i386/amd64-avx.dat: Remove.
4719 * regformats/i386/amd64-mpx.dat: Remove.
4720 * regformats/i386/i386-avx-avx512.dat: Remove.
4721 * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
4722 * regformats/i386/i386-avx-mpx.dat: Remove.
4723 * regformats/i386/i386-mmx.dat: Remove.
4724 * regformats/i386/i386-mpx.dat: Remove.
4725
57757c2f
YQ
47262017-08-09 Yao Qi <yao.qi@linaro.org>
4727
4728 * amd64-tdep.h (tdesc_x32): Remove the declaration.
4729 * amd64-tdep.c: Don't include features/i386/x32*.c.
4730 (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
4731 functions.
4732 * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
4733 and i386/x32-avx-avx512.
4734 (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
4735 and i386/x32.xml.
4736 * features/i386/x32-avx-avx512.c: Removed.
4737 * features/i386/x32-avx-avx512.xml: Removed.
4738 * features/i386/x32-avx.c: Removed.
4739 * features/i386/x32-avx.xml: Removed.
4740 * features/i386/x32.c: Removed.
4741 * features/i386/x32.xml: Removed.
4742 * regformats/i386/x32-avx-avx512.dat: Removed.
4743 * regformats/i386/x32-avx.dat: Removed.
4744 * regformats/i386/x32.dat: Removed.
4745
ba7b109b
MR
47462017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4747
4748 PR breakpoints/21886
4749 * mem-break.c (default_memory_insert_breakpoint): Use
4750 `->placed_address' rather than `->reqstd_address' for the
4751 breakpoint location.
4752
e347efc3
MR
47532017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4754
4755 * arch-utils.c (default_print_insn): Remove arch/mach/endian
4756 assertions.
4757
0dba2a6c
MR
47582017-08-07 Maciej W. Rozycki <macro@imgtec.com>
4759
4760 * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
4761 a union of `tdep_info', `tdesc_data' and `id'.
4762 * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
4763 rather than `info.tdep_info'.
4764 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
4765 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
4766 * i386-tdep.c (i386_gdbarch_init): Likewise.
4767 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
4768 * mips-tdep.c (mips_gdbarch_init): Likewise.
4769 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
4770 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
4771 * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
4772 `info.tdep_info'.
4773 (ppc_linux_init_abi): Use `info.tdesc_data' rather than
4774 `info.tdep_info'.
4775 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
4776 * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
4777 `info.tdep_info'.
4778 * spu-tdep.c (spu_gdbarch_init): Likewise.
4779 * gdbarch.h: Regenerate.
4780
16eb6b2d
LS
47812017-08-07 Leszek Swirski <leszeks@google.com>
4782
7b005726 4783 PR symtab/20899
16eb6b2d
LS
4784 * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
4785
74cbb09e
SM
47862017-08-07 Simon Marchi <simon.marchi@ericsson.com>
4787
4788 * remote-sim.c (gdbsim_load): Remove char **argv local variable.
4789 (gdbsim_open): Rename gdb_argv args object to argv.
4790
ee0c3293
TT
47912017-08-05 Tom Tromey <tom@tromey.com>
4792
4793 * compile/compile-object-load.c (compile_object_load): Use
4794 gdb::unique_xmalloc_ptr.
4795 * cli/cli-dump.c (scan_filename): Rename from
4796 scan_filename_with_cleanup. Change return type.
4797 (scan_expression): Rename from scan_expression_with_cleanup.
4798 Change return type.
4799 (dump_memory_to_file, dump_value_to_file, restore_command):
4800 Use gdb::unique_xmalloc_ptr. Update.
4801 * cli/cli-cmds.c (find_and_open_script): Use
4802 gdb::unique_xmalloc_ptr.
4803 * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
4804 * symmisc.c (maintenance_print_symbols)
4805 (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
4806 * symfile.c (symfile_bfd_open, generic_load)
4807 (add_symbol_file_command, remove_symbol_file_command): Use
4808 gdb::unique_xmalloc_ptr.
4809 * source.c (openp): Use gdb::unique_xmalloc_ptr.
4810 * psymtab.c (maintenance_print_psymbols): Use
4811 gdb::unique_xmalloc_ptr.
4812 * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
4813 * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
4814 * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
4815 (reload_shared_libraries_1): Likewise.
4816
3232fabd
TT
48172017-08-05 Tom Tromey <tom@tromey.com>
4818
4819 * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
4820 (rust_op_vector, rust_set_vector): New typedefs.
4821 (current_parser): New global.
4822 (work_obstack): Change to pointer type. Update all users.
4823 (rust_ast, pstate): Remove globals.
4824 (struct rust_parser): New.
4825 (%union) <params, field_inits>: Change type.
4826 (start, tuple_expr, unit_expr, struct_expr_list, literal)
4827 (field_expr, expr_list, maybe_expr_list, type_list): Update.
4828 (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
4829 (convert_params_to_types, convert_params_to_expression): Change
4830 type of "params".
4831 (ast_string): Change type of "fields".
4832 (rust_parse): Make a rust_parser. Remove cleanups.
4833 (rust_lex_tests): Make and install an auto_obstack.
4834
f02fd774
YQ
48352017-08-04 Yao Qi <yao.qi@linaro.org>
4836
4837 * configure.srv (ipa_x32_linux_regobj): New.
4838 * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
4839 instead of X86_TDESC_AVX512.
4840 (initialize_low_tracepoint): Call
4841 init_registers_x32_avx_avx512_linux.
4842
91975afd
YQ
48432017-08-04 Yao Qi <yao.qi@linaro.org>
4844
4845 * utils.h (gdb_argv): Add namespace std for nullptr_t.
4846
2331fa3a
RK
48472017-08-03 Ruslan Kabatsayev <b7.10110111@gmail.com>
4848
4849 * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
4850
744e4fe1
TT
48512017-08-03 Tom Tromey <tom@tromey.com>
4852
4853 * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
4854 Remove.
4855 * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
4856
1c034b67
TT
48572017-08-03 Tom Tromey <tom@tromey.com>
4858
4859 * python/py-param.c (compute_enum_values): Use gdb_argv.
4860
773a1edc
TT
48612017-08-03 Tom Tromey <tom@tromey.com>
4862
4863 * utils.h (struct gdb_argv_deleter): New.
4864 (gdb_argv): New class.
4865 * utils.c (gdb_argv::reset): New method.
4866 * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
4867 * tracefile.c (tsave_command): Use gdb_argv.
4868 * top.c (new_ui_command): Use gdb_argv.
4869 * symmisc.c (maintenance_print_symbols)
4870 (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
4871 * symfile.c (symbol_file_command, generic_load)
4872 (remove_symbol_file_command): Use gdb_argv.
4873 * stack.c (backtrace_command): Use gdb_argv.
4874 * source.c (add_path, show_substitute_path_command)
4875 (unset_substitute_path_command, set_substitute_path_command):
4876 Use gdb_argv.
4877 * skip.c (skip_command): Use gdb_argv. Use gdb_buildargv.
4878 * ser-mingw.c (pipe_windows_open): Use gdb_argv.
4879 * remote.c (extended_remote_run, remote_put_command)
4880 (remote_get_command, remote_delete_command): Use gdb_argv.
4881 * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
4882 (gdbsim_open): Use gdb_argv.
4883 * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
4884 * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
4885 * procfs.c (procfs_info_proc): Use gdb_argv.
4886 * interps.c (interpreter_exec_cmd): Use gdb_argv.
4887 * infrun.c (handle_command): Use gdb_argv.
4888 * inferior.c (add_inferior_command, clone_inferior_command):
4889 Use gdb_argv.
4890 * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
4891 * exec.c (exec_file_command): Use gdb_argv.
4892 * cli/cli-cmds.c (alias_command): Use gdb_argv.
4893 * compile/compile.c (build_argc_argv): Use gdb_argv.
4894
0d50bde3
TT
48952017-08-03 Tom Tromey <tom@tromey.com>
4896
4897 * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
4898
7f968c89
TT
48992017-08-03 Tom Tromey <tom@tromey.com>
4900
4901 * python/python.c (compute_python_string): Return std::string.
4902 (gdbpy_eval_from_control_command): Update.
4903 (do_start_initialization): Use std::string.
4904 * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
4905 xstrprintf.
4906 * python/py-breakpoint.c (local_setattro): Use string_printf, not
4907 xstrprintf.
4908
3c9ebddd
TT
49092017-08-03 Tom Tromey <tom@tromey.com>
4910
4911 * top.h (do_restore_instream_cleanup): Remove.
4912 * top.c (do_restore_instream_cleanup): Remove.
4913 (read_command_file): Use scoped_restore.
4914 * cli/cli-script.c (execute_user_command): Use scoped_restore.
4915
b51b225e
TT
49162017-08-03 Tom Tromey <tom@tromey.com>
4917
4918 * cli/cli-script.c (execute_user_command)
4919 (execute_control_command): Use scoped_restore.
4920
ac991630
TT
49212017-08-03 Tom Tromey <tom@tromey.com>
4922
4923 * cli/cli-script.c (do_restore_user_call_depth): Remove.
4924 (execute_user_command): Remove user_call_depth; use
4925 user_args_stack's size instead.
4926
898e0c8e
TT
49272017-08-03 Tom Tromey <tom@tromey.com>
4928
4929 * top.h (in_user_command): Remove.
4930 * top.c (in_user_command): Remove.
4931 * cli/cli-script.c (do_restore_user_call_depth)
4932 (execute_user_command): Update.
4933
26fcd5d7
TT
49342017-08-03 Tom Tromey <tom@tromey.com>
4935
4936 * valops.c (search_struct_method): Use gdb::byte_vector.
4937 * valarith.c (value_concat): Use std::vector.
4938 * target.c (memory_xfer_partial): Use gdb::byte_vector.
4939 (simple_search_memory): Likewise.
4940 * printcmd.c (find_string_backward): Use gdb::byte_vector.
4941 * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
4942 * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
4943 * elfread.c (elf_rel_plt_read): Use std::string.
4944 * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
4945 * cli/cli-dump.c (restore_section_callback): Use
4946 gdb::byte_vector.
4947
7c218e6c
TT
49482017-08-03 Tom Tromey <tom@tromey.com>
4949
4950 * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
4951
31b68d4a
TT
49522017-08-03 Tom Tromey <tom@tromey.com>
4953
4954 * tui/tui-regs.c (tui_restore_gdbout): Remove.
4955 (tui_register_format): Use scoped_restore.
4956
2ec845e7
TT
49572017-08-03 Tom Tromey <tom@tromey.com>
4958
4959 * reverse.c (exec_direction_default): Remove.
4960 (exec_reverse_once): Use scoped_restore.
4961 * remote.c (restore_remote_timeout): Remove.
4962 (remote_flash_erase, remote_flash_write, remote_flash_done)
4963 (readchar, remote_serial_write): Use scoped_restore.
4964 * cli/cli-script.c (struct source_cleanup_lines_args)
4965 (source_cleanup_lines): Remove.
4966 (script_from_file): Use scoped_restore.
4967 * cli/cli-cmds.c (source_verbose_cleanup): Remove.
4968 (source_command): Use scoped_restore.
4969
b3bc8453
TT
49702017-08-03 Tom Tromey <tom@tromey.com>
4971
4972 * utils.h (make_cleanup_free_so): Remove.
4973 * utils.c (do_free_so, make_cleanup_free_so): Remove.
4974 * solist.h (struct so_deleter): New.
4975 (so_list_up): New typedef.
4976 * solib-svr4.c (svr4_read_so_list): Use so_list_up.
4977
e3ad2841
TT
49782017-08-03 Tom Tromey <tom@tromey.com>
4979
4980 * utils.h (make_cleanup_restore_current_language): Remove.
4981 * utils.c (do_restore_current_language)
4982 (make_cleanup_restore_current_language): Remove.
4983 * parse.c (parse_exp_in_context_1)
4984 (parse_expression_with_language): Use
4985 scoped_restore_current_language.
4986 * mi/mi-main.c (mi_cmd_execute): Use
4987 scoped_restore_current_language.
4988 * language.h (scoped_restore_current_language): New class.
4989
b80cf838
TT
49902017-08-03 Tom Tromey <tom@tromey.com>
4991
4992 * compile/compile.c (cleanup_unlink_file): Remove.
4993 (compile_to_object): Use gdb::unlinker.
4994 (eval_compile_command): Likewise.
4995
fad0444a
TT
49962017-08-03 Tom Tromey <tom@tromey.com>
4997
4998 * utils.h (make_cleanup_fclose): Remove.
4999 * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
5000
6e7bc05c
TT
50012017-08-03 Tom Tromey <tom@tromey.com>
5002
5003 * top.c (open_terminal_stream): Return gdb_file_up.
5004 (new_ui_command): Update.
5005
4a45905b
TT
50062017-08-03 Tom Tromey <tom@tromey.com>
5007
5008 * source.c (print_source_lines_base, forward_search_command)
5009 (reverse_search_command): Use gdb_file_up.
5010
7cd06d6e
TT
50112017-08-03 Tom Tromey <tom@tromey.com>
5012
5013 * fbsd-nat.c (fbsd_find_memory_regions): Update.
5014
ed166945
TT
50152017-08-03 Tom Tromey <tom@tromey.com>
5016
5017 * cli/cli-cmds.c (find_and_open_script): Change return type.
5018 Remove "streamp" and "full_path" parameters.
5019 (source_script_with_search): Update.
5020 * auto-load.c (source_script_file): Update.
5021 * cli/cli-cmds.h (find_and_open_script): Change type.
5022 (open_script): New struct.
5023
d419f42d
TT
50242017-08-03 Tom Tromey <tom@tromey.com>
5025
5026 * xml-support.c (xml_fetch_content_from_file): Update.
5027 * ui-file.c (stdio_file::open): Update.
5028 * tracefile-tfile.c (tfile_start): Update.
5029 * remote.c (remote_file_put, remote_file_get): Update.
5030 * nat/linux-procfs.c (linux_proc_get_int)
5031 (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
5032 * nat/linux-osdata.c (linux_common_core_of_thread): Update.
5033 (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
5034 (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
5035 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
5036 * nat/linux-btrace.c (linux_determine_kernel_start): Update.
5037 * linux-nat.c (linux_proc_pending_signals): Update.
5038 * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
5039 (file_closer): Remove.
5040 * compile/compile.c (compile_to_object): Update.
5041 * common/filestuff.h (struct gdb_file_deleter): New.
5042 (gdb_file_up): New typedef.
5043 (gdb_fopen_cloexec): Change return type.
5044 * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
5045 * cli/cli-dump.c (fopen_with_cleanup): Remove.
5046 (dump_binary_file, restore_binary_file): Update.
5047 * auto-load.c (auto_load_objfile_script_1): Update.
5048
4a2b031d
TT
50492017-08-03 Tom Tromey <tom@tromey.com>
5050
5051 * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
5052 (info_static_tracepoint_markers_command): Likewise.
5053 * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
5054 * skip.c (skip_info): Use ui_out_emit_table.
5055 * progspace.c (print_program_space): Use ui_out_emit_table.
5056 * osdata.c (info_osdata): Use ui_out_emit_table.
5057 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
5058 ui_out_emit_table.
5059 * linux-thread-db.c (info_auto_load_libthread_db): Use
5060 ui_out_emit_table.
5061 * inferior.c (print_inferior): Use ui_out_emit_table.
5062 * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
5063 * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
5064 * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
5065 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
5066 * ui-out.h (class ui_out_emit_table): New.
5067
a4f320fd
MR
50682017-08-02 Maciej W. Rozycki <macro@imgtec.com>
5069
5070 * mips-tdep.c (mips_fpu_type_str): New function.
5071 (mips_dump_tdep): Call it.
5072
a2f1f308
MR
50732017-08-01 Maciej W. Rozycki <macro@imgtec.com>
5074
5075 * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
5076 `->mips_fpu_type'.
5077
7e5ed83b
XR
50782017-07-31 Xavier Roirand <roirand@adacore.com>
5079
5080 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
5081
4c9dc811
XR
50822017-07-27 Xavier Roirand <roirand@adacore.com>
5083
5084 * MAINTAINERS (Write After Approval): Add Xavier Roirand.
5085
27d41eac
YQ
50862017-07-26 Yao Qi <yao.qi@linaro.org>
5087
5088 * cli/cli-cmds.c (maintenancechecklist): New variable.
5089 * gdbcmd.h (maintenancechecklist): Declare it.
5090 * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
5091 Call i386_linux_read_description with different masks.
5092 * maint.c (maintenance_check_command): New function.
5093 (_initialize_maint_cmds): Call add_prefix_cmd.
5094 * target-descriptions.c (tdesc_reg): override operator != and ==.
5095 (tdesc_type): Likewise.
5096 (tdesc_feature): Likewise.
5097 (target_desc): Likewise.
5098 [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
5099 (maintenance_check_xml_descriptions): New function.
5100 (_initialize_target_descriptions) Add command "xml-descriptions".
5101 * target-descriptions.h (selftests::record_xml_tdesc): Declare.
5102
ea03d0d3
YQ
51032017-07-26 Yao Qi <yao.qi@linaro.org>
5104
5105 * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
5106 Include features/i386/32bit-*.c.
5107 (i386_linux_read_description): Generate target description if it
5108 doesn't exist.
5109 (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
5110 functions.
5111 * features/i386/32bit-linux.c: Re-generated.
5112 * features/i386/32bit-sse.c: Likewise.
5113 * target-descriptions.c (print_c_feature::visit): Print code to
5114 set register number if needed.
5115 (print_c_feature) <m_next_regnum>: New field.
5116
25aa13e5
YQ
51172017-07-26 Yao Qi <yao.qi@linaro.org>
5118
5119 * features/Makefile (CFILES): Rename with TDESC_CFILES.
5120 (FEATURE_XMLFILES): New.
5121 (FEATURE_CFILES): New.
5122 New rules.
5123 (clean-cfiles): Remove generated c files.
5124 * features/i386/32bit-avx.c: Generated.
5125 * features/i386/32bit-avx512.c: Generated.
5126 * features/i386/32bit-core.c: Generated.
5127 * features/i386/32bit-linux.c: Generated.
5128 * features/i386/32bit-mpx.c: Generated.
5129 * features/i386/32bit-pkeys.c: Generated.
5130 * features/i386/32bit-sse.c: Generated.
5131 * target-descriptions.c: Include algorithm.
5132 (tdesc_element_visitor): Add method visit_end.
5133 (print_c_tdesc): Implement visit_end.
5134 (print_c_tdesc:: m_filename_after_features): Move it to
5135 protected.
5136 (print_c_feature): New class.
5137 (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
5138 name starts with "i386/32bit-".
5139
6eb1e6a8
YQ
51402017-07-26 Yao Qi <yao.qi@linaro.org>
5141
5142 * target-descriptions.c (tdesc_element_visitor): New class.
5143 (tdesc_element): New class.
5144 (tdesc_reg): Inherit from tdesc_element.
5145 (tdesc_reg::accept): New function.
5146 (tdesc_type): Inherit from tdesc_element.
5147 (tdesc_type::accept): New function.
5148 (tdesc_feature): Inherit from tdesc_element.
5149 (tdesc_feature::accept): New function.
5150 (target_desc): Inherit from tdesc_element.
5151 (target_desc::target_desc): New.
5152 (target_desc::~target_desc): New.
5153 (target_desc::accept): New.
5154 (allocate_target_description): Use new.
5155 (free_target_description): Use delete.
5156 (print_c_tdesc): New class.
5157 (maint_print_c_tdesc_cmd): Adjust.
5158
5159 * features/aarch64.c: Re-generated.
5160 * features/arc-arcompact.c: Re-generated.
5161 * features/arc-v2.c: Re-generated.
5162 * features/arm/arm-with-iwmmxt.c: Re-generated.
5163 * features/arm/arm-with-m.c: Re-generated.
5164 * features/arm/arm-with-m-fpa-layout.c: Re-generated.
5165 * features/arm/arm-with-m-vfp-d16.c: Re-generated.
5166 * features/arm/arm-with-neon.c: Re-generated.
5167 * features/arm/arm-with-vfpv2.c: Re-generated.
5168 * features/arm/arm-with-vfpv3.c: Re-generated.
5169 * features/i386/amd64-avx-avx512.c: Re-generated.
5170 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
5171 * features/i386/amd64-avx.c: Re-generated.
5172 * features/i386/amd64-avx-linux.c: Re-generated.
5173 * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
5174 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
5175 * features/i386/amd64-avx-mpx.c: Re-generated.
5176 * features/i386/amd64-avx-mpx-linux.c: Re-generated.
5177 * features/i386/amd64.c: Re-generated.
5178 * features/i386/amd64-linux.c: Re-generated.
5179 * features/i386/amd64-mpx.c: Re-generated.
5180 * features/i386/amd64-mpx-linux.c: Re-generated.
5181 * features/i386/i386-avx-avx512.c: Re-generated.
5182 * features/i386/i386-avx-avx512-linux.c: Re-generated.
5183 * features/i386/i386-avx.c: Re-generated.
5184 * features/i386/i386-avx-linux.c: Re-generated.
5185 * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
5186 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
5187 * features/i386/i386-avx-mpx.c: Re-generated.
5188 * features/i386/i386-avx-mpx-linux.c: Re-generated.
5189 * features/i386/i386.c: Re-generated.
5190 * features/i386/i386-linux.c: Re-generated.
5191 * features/i386/i386-mmx.c: Re-generated.
5192 * features/i386/i386-mmx-linux.c: Re-generated.
5193 * features/i386/i386-mpx.c: Re-generated.
5194 * features/i386/i386-mpx-linux.c: Re-generated.
5195 * features/i386/x32-avx-avx512.c: Re-generated.
5196 * features/i386/x32-avx-avx512-linux.c: Re-generated.
5197 * features/i386/x32-avx.c: Re-generated.
5198 * features/i386/x32-avx-linux.c: Re-generated.
5199 * features/i386/x32.c: Re-generated.
5200 * features/i386/x32-linux.c: Re-generated.
5201 * features/microblaze.c: Re-generated.
5202 * features/microblaze-with-stack-protect.c: Re-generated.
5203 * features/mips64-dsp-linux.c: Re-generated.
5204 * features/mips64-linux.c: Re-generated.
5205 * features/mips-dsp-linux.c: Re-generated.
5206 * features/mips-linux.c: Re-generated.
5207 * features/nds32.c: Re-generated.
5208 * features/nios2.c: Re-generated.
5209 * features/nios2-linux.c: Re-generated.
5210 * features/rs6000/powerpc-32.c: Re-generated.
5211 * features/rs6000/powerpc-32l.c: Re-generated.
5212 * features/rs6000/powerpc-403.c: Re-generated.
5213 * features/rs6000/powerpc-403gc.c : Re-generated.
5214 * features/rs6000/powerpc-405.c: Re-generated.
5215 * features/rs6000/powerpc-505.c: Re-generated.
5216 * features/rs6000/powerpc-601.c: Re-generated.
5217 * features/rs6000/powerpc-602.c: Re-generated.
5218 * features/rs6000/powerpc-603.c: Re-generated.
5219 * features/rs6000/powerpc-604.c: Re-generated.
5220 * features/rs6000/powerpc-64.c: Re-generated.
5221 * features/rs6000/powerpc-64l.c: Re-generated.
5222 * features/rs6000/powerpc-7400.c: Re-generated.
5223 * features/rs6000/powerpc-750.c: Re-generated.
5224 * features/rs6000/powerpc-860.c: Re-generated.
5225 * features/rs6000/powerpc-altivec32.c: Re-generated.
5226 * features/rs6000/powerpc-altivec32l.c: Re-generated.
5227 * features/rs6000/powerpc-altivec64.c: Re-generated.
5228 * features/rs6000/powerpc-altivec64l.c: Re-generated.
5229 * features/rs6000/powerpc-cell32l.c: Re-generated.
5230 * features/rs6000/powerpc-cell64l.c: Re-generated.
5231 * features/rs6000/powerpc-e500.c: Re-generated.
5232 * features/rs6000/powerpc-e500l.c: Re-generated.
5233 * features/rs6000/powerpc-isa205-32l.c: Re-generated.
5234 * features/rs6000/powerpc-isa205-64l.c: Re-generated.
5235 * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
5236 * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
5237 * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
5238 * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
5239 * features/rs6000/powerpc-vsx32.c: Re-generated.
5240 * features/rs6000/powerpc-vsx32l.c: Re-generated.
5241 * features/rs6000/powerpc-vsx64.c: Re-generated.
5242 * features/rs6000/powerpc-vsx64l.c: Re-generated.
5243 * features/rs6000/rs6000.c: Re-generated.
5244 * features/s390-linux32.c: Re-generated.
5245 * features/s390-linux32v1.c: Re-generated.
5246 * features/s390-linux32v2.c: Re-generated.
5247 * features/s390-linux64.c: Re-generated.
5248 * features/s390-linux64v1.c: Re-generated.
5249 * features/s390-linux64v2.c: Re-generated.
5250 * features/s390-te-linux64.c: Re-generated.
5251 * features/s390-tevx-linux64.c: Re-generated.
5252 * features/s390-vx-linux64.c: Re-generated.
5253 * features/s390x-linux64.c: Re-generated.
5254 * features/s390x-linux64v1.c: Re-generated.
5255 * features/s390x-linux64v2.c: Re-generated.
5256 * features/s390x-te-linux64.c: Re-generated.
5257 * features/s390x-tevx-linux64.c: Re-generated.
5258 * features/s390x-vx-linux64.c: Re-generated.
5259 * features/sparc/sparc32-solaris.c: Re-generated.
5260 * features/sparc/sparc64-solaris.c: Re-generated.
5261 * features/tic6x-c62x.c: Re-generated.
5262 * features/tic6x-c62x-linux.c: Re-generated.
5263 * features/tic6x-c64x.c: Re-generated.
5264 * features/tic6x-c64x-linux.c: Re-generated.
5265 * features/tic6x-c64xp.c: Re-generated.
5266 * features/tic6x-c64xp-linux.c: Re-generated.
5267
35b4818d
YQ
52682017-07-26 Yao Qi <yao.qi@linaro.org>
5269
5270 * i386-linux-tdep.c (i386_linux_read_description): New function.
5271 (i386_linux_core_read_description): Call
5272 i386_linux_read_description.
5273 * i386-linux-tdep.h (i386_linux_read_description): Declare.
5274 (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
5275 (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
5276 (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
5277 (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
5278 * x86-linux-nat.c (x86_linux_read_description): Call
5279 i386_linux_read_description.
5280
8e2141c6
YQ
52812017-07-26 Yao Qi <yao.qi@linaro.org>
5282
5283 * NEWS: Mention it.
5284 * features/Makefile (%.c: %.xml): Pass the xml file name to
5285 command "maint print c-tdesc".
5286 * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
5287 name from 'arg'.
5288
b468ff4c
YQ
52892017-07-26 Yao Qi <yao.qi@linaro.org>
5290
5291 * target-descriptions.c (target_desc): Add ctor and dtor. Do
5292 in-class initialization.
5293 (tdesc_create_feature): Call new instead of XCNEW.
5294 (free_target_description): Ue delete.
5295
b9c0e1b4
JB
52962017-07-25 John Baldwin <jhb@FreeBSD.org>
5297
5298 * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
5299
a04b5337
YQ
53002017-07-25 Yao Qi <yao.qi@linaro.org>
5301
5302 * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
5303 constant.
5304 (amd64_x32_init_abi): Likewise.
5305 * amd64-tdep.h (amd64_init_abi): Update declaration.
5306 (amd64_x32_init_abi): Likewise.
5307
02ad7fc2
YQ
53082017-07-25 Yao Qi <yao.qi@linaro.org>
5309
5310 PR tdep/21717
5311 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
5312 condition for FPSCR.
5313 (arm_linux_store_inferior_registers): Likewise.
5314
b6f48cb0
TT
53152017-07-22 Tom Tromey <tom@tromey.com>
5316
5317 * break-catch-syscall.c (struct catch_syscall_inferior_data)
5318 <syscalls_counts>: Now a std::vector.
5319 (get_catch_syscall_inferior_data): Use "new".
5320 (catch_syscall_inferior_data_cleanup): Use "delete".
5321 (insert_catch_syscall, remove_catch_syscall)
5322 (clear_syscall_counts): Update.
5323
e12c9b7a
TT
53242017-07-22 Tom Tromey <tom@tromey.com>
5325
5326 * break-catch-syscall.c (syscall_catchpoint)
5327 <syscalls_to_be_caught>: Now a std::vector<int>
5328 (~syscall_catchpoint): Remove.
5329 (insert_catch_syscall, remove_catch_syscall)
5330 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
5331 (print_mention_catch_syscall, print_recreate_catch_syscall):
5332 Update.
5333 (create_syscall_event_catchpoint): Change type of "filter"
5334 parameter.
5335 (catch_syscall_split_args): Return a std::vector.
5336 (catch_syscall_command_1, catching_syscall_number_1): Update.
5337
4fa8aeac
TT
53382017-07-22 Tom Tromey <tom@tromey.com>
5339
5340 * break-catch-throw.c (struct exception_catchpoint)
5341 <exception_rx>: Now a std::string.
5342 (~exception_catchpoint): Remove.
5343 (print_one_detail_exception_catchpoint): Update.
5344 (handle_gnu_v3_exceptions): Change type of except_rx.
5345 (extract_exception_regexp): Return a std::string.
5346 (catch_exception_command_1): Update.
5347
f746a154
TT
53482017-07-22 Tom Tromey <tom@tromey.com>
5349
5350 * break-catch-sig.c (gdb_signal_type): Remove typedef.
5351 (struct signal_catchpoint) <signals_to_be_caught>: Now a
5352 std::vector.
5353 <catch_all>: Now a bool.
5354 (~signal_catchpoint): Remove.
5355 (signal_catchpoint_insert_location)
5356 (signal_catchpoint_remove_location)
5357 (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
5358 (signal_catchpoint_print_mention)
5359 (signal_catchpoint_print_recreate)
5360 (signal_catchpoint_explains_signal): Update.
5361 (create_signal_catchpoint): Change type of "filter" and
5362 "catch_all".
5363 (catch_signal_split_args): Return a std::vector. Change type of
5364 "catch_all".
5365 (catch_signal_command): Update.
5366
47e77640
PA
53672017-07-20 Pedro Alves <palves@redhat.com>
5368
5369 * ada-lang.c (ada_language_defn): Make extern.
5370 (_initialize_ada_language): Remove add_language call.
5371 * c-lang.c (c_language_defn, cplus_language_defn)
5372 (asm_language_defn, minimal_language_defn): Make extern.
5373 (_initialize_c_language): Delete.
5374 * completer.c (compare_cstrings): Delete, moved to utils.h.
5375 * d-lang.c (d_language_defn): Make extern.
5376 (_initialize_d_language): Remove add_language calls.
5377 * defs.h (enum language): Add comment.
5378 * f-lang.c (f_language_defn): Make extern.
5379 (_initialize_f_language): Remove add_language call.
5380 * go-lang.c (go_language_defn): Make extern.
5381 (_initialize_go_language): Remove add_language call.
5382 * language.c: Include <algorithm>.
5383 (languages): Redefine as const array.
5384 (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
5385 (set_language_command): Handle "local". Use for-range loop.
5386 (set_language): Remove loop.
5387 (language_enum): Rewrite.
5388 (language_def, language_str): Remove loops.
5389 (add_language): Delete.
5390 (add_set_language_command): New, based on add_languages.
5391 (skip_language_trampoline): Adjust.
5392 (local_language_defn): Delete.
5393 (language_gdbarch_post_init): Adjust.
5394 (_initialize_language): Remove add_language calls. Call
5395 add_set_language_command.
5396 * language.h (add_language): Delete.
5397 (auto_language_defn)
5398 (unknown_language_defn, minimal_language_defn, ada_language_defn)
5399 (asm_language_defn, c_language_defn, cplus_language_defn)
5400 (d_language_defn, f_language_defn, go_language_defn)
5401 (m2_language_defn, objc_language_defn, opencl_language_defn)
5402 (pascal_language_defn, rust_language_defn): Declare.
5403 * m2-lang.c (m2_language_defn): Make extern.
5404 (_initialize_m2_language): Remove add_language call.
5405 * objc-lang.c (objc_language_defn): Make extern.
5406 (_initialize_objc_language): Remove add_language call.
5407 * opencl-lang.c (opencl_language_defn): Make extern.
5408 (_initialize_opencl_language): Remove add_language call.
5409 * p-lang.c (pascal_language_defn): Make extern.
5410 (_initialize_pascal_language): Delete.
5411 * rust-lang.c (rust_language_defn): Make extern.
5412 (_initialize_rust_language): Delete.
5413 * utils.h (compare_cstrings): New static inline function.
5414
edb0c9cb
PA
54152017-07-20 Pedro Alves <palves@redhat.com>
5416
5417 * ada-lang.c (ada_to_fixed_type_1): Adjust.
5418 (get_var_value): Constify parameters.
5419 (get_int_var_value): Change prototype.
5420 (to_fixed_range_type): Adjust.
5421 * ada-lang.h (get_int_var_value): Change prototype.
5422
a778f165
PA
54232017-07-20 Pedro Alves <palves@redhat.com>
5424
5425 * dwarf2read.c (dw2_lookup_symbol): Use
5426 SYMBOL_MATCHES_SEARCH_NAME.
5427 * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
5428
42edd901
PA
54292017-07-20 Pedro Alves <palves@redhat.com>
5430
5431 * block.c (block_iter_name_step, block_iter_name_first)
5432 (block_iter_name_next): Delete.
5433 (block_lookup_symbol_primary): Adjust to use
5434 dict_iter_match_first/dict_iter_match_next.
5435 * block.h (block_iter_name_first, block_iter_name_next): Delete
5436 declarations.
5437 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
5438 dict_iter_match_first/dict_iter_match_next.
5439
cf325299
PA
54402017-07-20 Pedro Alves <palves@redhat.com>
5441
5442 * cp-support.c (cp_find_first_component_aux): Add missing case for
5443 end of string.
5444
c5ed0576
DB
54452017-07-18 David Blaikie <dblaikie@gmail.com>
5446
5447 * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
5448 of dwo_cu's dwo_file.
5449
27841e76
YQ
54502017-07-18 Yao Qi <yao.qi@linaro.org>
5451
5452 * remote.c (store_registers_using_G): Remove one line comment.
5453
cfb7e58b
YQ
54542017-07-18 Yao Qi <yao.qi@linaro.org>
5455
5456 * regcache.c (regcache_cpy): Simplify it.
5457 (regcache::cpy_no_passthrough): Remove it.
5458 * regcache.h (cpy_no_passthrough): Remove it.
5459 (regcache_dup, regcache_cpy): Update comments.
5460
386535dd
PA
54612017-07-18 Pedro Alves <palves@redhat.com>
5462
5463 * remote-sim.c (sim_command_completer): Adjust to work with a
5464 completion_tracker instead of a VEC.
5465
c45ec17c
PA
54662017-07-17 Pedro Alves <palves@redhat.com>
5467
5468 * completer.c (complete_source_filenames): New function.
5469 (complete_address_and_linespec_locations): New function.
5470 (location_completer): Use complete_address_and_linespec_locations.
5471 (completion_tracker::build_completion_result): Honor the tracker's
5472 request to suppress append.
5473 * completer.h (completion_tracker::suppress_append_ws)
5474 (completion_tracker::set_suppress_append_ws): New methods.
5475 (completion_tracker::m_suppress_append_ws): New field.
5476 (complete_source_filenames): New declaration.
5477 * linespec.c (linespec_complete_what): New.
5478 (struct ls_parser) <complete_what, completion_word,
5479 completion_quote_char, completion_quote_end, completion_tracker>:
5480 New fields.
5481 (string_find_incomplete_keyword_at_end): New.
5482 (linespec_lexer_lex_string): Record quote char. If in completion
5483 mode, don't throw.
5484 (linespec_lexer_consume_token): Advance the completion word point.
5485 (linespec_lexer_peek_token): Save/restore completion info.
5486 (save_stream_and_consume_token): New.
5487 (set_completion_after_number): New.
5488 (linespec_parse_basic): Set what to complete next depending on
5489 token. Handle function and label completions specially.
5490 (parse_linespec): Disable objc shortcut in completion mode. Set
5491 what to complete next depending on token type. Skip keyword if in
5492 completion mode.
5493 (complete_linespec_component, linespec_complete): New.
5494 * linespec.h (linespec_complete): Declare.
5495
be966d42
PA
54962017-07-17 Pedro Alves <palves@redhat.com>
5497
5498 * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
5499 Handle 'operator<' / 'operator<<'.
5500
a2459270
PA
55012017-07-17 Pedro Alves <palves@redhat.com>
5502
5503 * completer.c (collect_explicit_location_matches): Handle
5504 MATCH_LABEL.
5505 (convert_explicit_location_to_linespec): New, factored out from
5506 ...
5507 (convert_explicit_location_to_sals): ... this.
5508 (complete_label): New.
5509 (linespec_complete_label, find_label_symbols_in_block): New.
5510 (find_label_symbols): Add completion_mode parameter and adjust to
5511 call find_label_symbols_in_block.
5512 * linespec.h (linespec_complete_label): Declare.
5513
c6756f62
PA
55142017-07-17 Pedro Alves <palves@redhat.com>
5515
5516 * ada-lang.c (ada_collect_symbol_completion_matches): Add
5517 complete_symbol_mode parameter.
5518 * cli/cli-cmds.c (complete_command): Get the completion result out
5519 of the handle_brkchars tracker if used a custom word point.
5520 * completer.c: Include "linespec.h".
5521 (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
5522 (advance_to_expression_complete_word_point): New.
5523 (completion_tracker::completes_to_completion_word): New.
5524 (complete_files_symbols): Pass down
5525 complete_symbol_mode::EXPRESSION.
5526 (explicit_options, probe_options): New.
5527 (collect_explicit_location_matches): Complete on the
5528 explictit_loc->foo instead of word. Use
5529 linespec_complete_function. Handle MATCH_LINE. Handle offering
5530 keyword and options completions.
5531 (backup_text_ptr): Delete.
5532 (skip_keyword): New.
5533 (complete_explicit_location): Remove 'word' parameter. Add
5534 language, quoted_arg_start and quoted_arg_end parameters.
5535 Rewrite, parsing left to right.
5536 (location_completer): Rewrite.
5537 (location_completer_handle_brkchars): New function.
5538 (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
5539 (enum complete_line_internal_reason): Adjust comments.
5540 (completion_tracker::discard_completions): New.
5541 (completer_handle_brkchars_func_for_completer): Handle
5542 location_completer.
5543 (gdb_custom_word_point_brkchars)
5544 (gdb_org_rl_basic_quote_characters): New.
5545 (gdb_completion_word_break_characters_throw)
5546 (completion_find_completion_word): Handle trackers that use a
5547 custom word point.
5548 (completion_tracker::advance_custom_word_point_by): New.
5549 (completion_tracker::build_completion_result): Don't rely on
5550 readline appending the quote char.
5551 (gdb_rl_attempted_completion_function_throw): Handle trackers that
5552 use a custom word point.
5553 (gdb_rl_attempted_completion_function): Restore
5554 rl_basic_quote_characters.
5555 * completer.h (class completion_tracker): Extend intro comment.
5556 (completion_tracker::set_quote_char)
5557 (completion_tracker::quote_char)
5558 (completion_tracker::set_use_custom_word_point)
5559 (completion_tracker::use_custom_word_point)
5560 (completion_tracker::custom_word_point)
5561 (completion_tracker::set_custom_word_point)
5562 (completion_tracker::advance_custom_word_point_by)
5563 (completion_tracker::completes_to_completion_word)
5564 (completion_tracker::discard_completions): New methods.
5565 (completion_tracker::m_quote_char)
5566 (completion_tracker::m_use_custom_word_point)
5567 (completion_tracker::m_custom_word_point): New fields.
5568 (advance_to_expression_complete_word_point): Declare.
5569 * f-lang.c (f_collect_symbol_completion_matches): Add
5570 complete_symbol_mode parameter.
5571 * language.h (struct language_defn)
5572 <la_collect_symbol_completion_matches>: Add complete_symbol_mode
5573 parameter.
5574 * linespec.c (linespec_keywords): Add NULL terminator. Make extern.
5575 (linespec_complete_function): New function.
5576 (linespec_lexer_lex_keyword): Adjust.
5577 * linespec.h (linespec_keywords, linespec_complete_function): New
5578 declarations.
5579 * location.c (find_end_quote): New function.
5580 (explicit_location_lex_one): Add explicit_completion_info
5581 parameter. Save quoting info. Don't throw if being called for
5582 completion. Don't handle Ada operators here.
5583 (is_cp_operator, skip_op_false_positives, first_of)
5584 (explicit_location_lex_one_function): New function.
5585 (string_to_explicit_location): Replace 'dont_throw' parameter with
5586 an explicit_completion_info pointer parameter. Handle it. Don't
5587 use explicit_location_lex_one to lex function names. Use
5588 explicit_location_lex_one_function instead.
5589 * location.h (struct explicit_completion_info): New.
5590 (string_to_explicit_location): Replace 'dont_throw' parameter with
5591 an explicit_completion_info pointer parameter.
5592 * symtab.c (default_collect_symbol_completion_matches_break_on):
5593 Add complete_symbol_mode parameter. Handle LINESPEC mode.
5594 (default_collect_symbol_completion_matches)
5595 (collect_symbol_completion_matches): Add complete_symbol_mode
5596 parameter.
5597 (collect_symbol_completion_matches_type): Pass down
5598 complete_symbol_mode::EXPRESSION.
5599 (collect_file_symbol_completion_matches): Add complete_symbol_mode
5600 parameter. Handle LINESPEC mode.
5601 * symtab.h (complete_symbol_mode): New.
5602 (default_collect_symbol_completion_matches_break_on)
5603 (default_collect_symbol_completion_matches)
5604 (collect_symbol_completion_matches)
5605 (collect_file_symbol_completion_matches): Add complete_symbol_mode
5606 parameter.
5607
1d550c82
PA
56082017-07-17 Pedro Alves <palves@redhat.com>
5609
5610 * utils.c (enum class strncmp_iw_mode): New.
5611 (strcmp_iw): Rename to ...
5612 (strncmp_iw_with_mode): ... this. Add string2_len and mode
5613 parameters. Handle them.
5614 (strncmp_iw): New.
5615 (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
5616 * utils.h (strncmp_iw): Declare.
5617 (strcmp_iw): Move describing comments here.
5618
8090b426
PA
56192017-07-17 Pedro Alves <palves@redhat.com>
5620
5621 * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
5622 CP_OPERATOR_STR.
5623 * c-typeprint.c (is_type_conversion_operator): Use
5624 CP_OPERATOR_STR.
5625 * cp-support.c (LENGTH_OF_OPERATOR): Delete.
5626 (cp_find_first_component_aux): Use CP_OPERATOR_STR and
5627 CP_OPERATOR_LEN.
5628 * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
5629 * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
5630 * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
5631 * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
5632 CP_OPERATOR_STR.
5633 * location.c: Include "cp-support.h".
5634 (explicit_location_lex_one): Use CP_OPERATOR_LEN and
5635 CP_OPERATOR_STR.
5636 * symtab.c (operator_chars): Use CP_OPERATOR_STR and
5637 CP_OPERATOR_LEN.
5638
6a2c1b87
PA
56392017-07-17 Pedro Alves <palves@redhat.com>
5640
5641 * cli/cli-cmds.c (complete_command): Use a completion tracker
5642 along with completion_find_completion_word for handle_brkchars
5643 phase.
5644 * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
5645 (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
5646 (struct gdb_rl_completion_word_info): New.
5647 (gdb_rl_find_completion_word): New.
5648 (completion_find_completion_word): New.
5649 * completer.h (completion_find_completion_word): Declare.
5650
eb3ff9a5
PA
56512017-07-17 Pedro Alves <palves@redhat.com>
5652
5653 * ada-lang.c (symbol_completion_match): Adjust comments.
5654 (symbol_completion_add): Replace vector parameter with
5655 completion_tracker parameter. Use it.
5656 (ada_make_symbol_completion_list): Rename to...
5657 (ada_collect_symbol_completion_matches): ... this. Add
5658 completion_tracker parameter and use it.
5659 (ada_language_defn): Adjust.
5660 * break-catch-syscall.c (catch_syscall_completer): Adjust
5661 prototype and work with completion_tracker instead of VEC.
5662 * breakpoint.c (condition_completer): Adjust prototype and work
5663 with completion_tracker instead of VEC.
5664 * c-lang.c (c_language_defn, cplus_language_defn)
5665 (asm_language_defn, minimal_language_defn): Adjust to renames.
5666 * cli/cli-cmds.c (complete_command): Rework using
5667 completion_tracker. Catch exceptions when completing.
5668 * cli/cli-decode.c (integer_unlimited_completer)
5669 (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
5670 with completion_tracker instead of VEC.
5671 * command.h (struct completion_tracker): Forward declare.
5672 (completer_ftype, completer_handle_brkchars_ftype): Change
5673 types.
5674 (complete_on_cmdlist, complete_on_enum): Adjust.
5675 * completer.c: Include <algorithm>.
5676 (struct gdb_completer_state): New.
5677 (current_completion): New global.
5678 (readline_line_completion_function): Delete.
5679 (noop_completer, filename_completer)
5680 (filename_completer_handle_brkchars, complete_files_symbols)
5681 (linespec_location_completer): Adjust to work with a
5682 completion_tracker instead of a VEC.
5683 (string_or_empty): New.
5684 (collect_explicit_location_matches): Adjust to work with a
5685 completion_tracker instead of a VEC.
5686 (explicit_location_completer): Rename to ...
5687 (complete_explicit_location): ... this and adjust to work with a
5688 completion_tracker instead of a VEC.
5689 (location_completer): Adjust to work with a completion_tracker
5690 instead of a VEC.
5691 (add_struct_fields): Adjust to work with a completion_list instead
5692 of VEC.
5693 (expression_completer): Rename to ...
5694 (complete_expression): ... this and adjust to work with a
5695 completion_tracker instead of a VEC. Use complete_files_symbols.
5696 (expression_completer): Reimplement on top of complete_expression.
5697 (symbol_completer): Adjust to work with a completion_tracker
5698 instead of a VEC.
5699 (enum complete_line_internal_reason): Add describing comments.
5700 (complete_line_internal_normal_command): Adjust to work with a
5701 completion_tracker instead of a VEC.
5702 (complete_line_internal): Rename to ...
5703 (complete_line_internal_1): ... this and adjust to work with a
5704 completion_tracker instead of a VEC. Assert TEXT is NULL in the
5705 handle_brkchars phase.
5706 (new_completion_tracker): Delete.
5707 (complete_line_internal): Reimplement as TRY/CATCH wrapper around
5708 complete_line_internal_1.
5709 (free_completion_tracker): Delete.
5710 (INITIAL_COMPLETION_HTAB_SIZE): New.
5711 (completion_tracker::completion_tracker)
5712 (completion_tracker::~completion_tracker): New.
5713 (maybe_add_completion): Delete.
5714 (completion_tracker::maybe_add_completion)
5715 (completion_tracker::add_completion)
5716 (completion_tracker::add_completions): New.
5717 (throw_max_completions_reached_error): Delete.
5718 (complete_line): Adjust to work with a completion_tracker instead
5719 of a VEC. Don't create a completion_tracker_t or check for max
5720 completions here.
5721 (command_completer, command_completer_handle_brkchars)
5722 (signal_completer, reg_or_group_completer_1)
5723 (reg_or_group_completer, default_completer_handle_brkchars):
5724 Adjust to work with a completion_tracker.
5725 (gdb_completion_word_break_characters_throw): New.
5726 (gdb_completion_word_break_characters): Reimplement.
5727 (line_completion_function): Delete.
5728 (completion_tracker::recompute_lowest_common_denominator)
5729 (expand_preserving_ws)
5730 (completion_tracker::build_completion_result)
5731 (completion_result::completion_result)
5732 (completion_result::completion_result)
5733 (completion_result::~completion_result)
5734 (completion_result::completion_result)
5735 (completion_result::release_match_list, compare_cstrings)
5736 (completion_result::sort_match_list)
5737 (completion_result::reset_match_list)
5738 (gdb_rl_attempted_completion_function_throw)
5739 (gdb_rl_attempted_completion_function): New.
5740 * completer.h (completion_list, struct completion_result)
5741 (class completion_tracker): New.
5742 (complete_line): Add completion_tracker parameter.
5743 (readline_line_completion_function): Delete.
5744 (gdb_rl_attempted_completion_function): New.
5745 (noop_completer, filename_completer, expression_completer)
5746 (location_completer, symbol_completer, command_completer)
5747 (signal_completer, reg_or_group_completer): Update prototypes.
5748 (completion_tracker_t, new_completion_tracker)
5749 (make_cleanup_free_completion_tracker): Delete.
5750 (enum maybe_add_completion_enum): Delete.
5751 (maybe_add_completion): Delete.
5752 (throw_max_completions_reached_error): Delete.
5753 * corefile.c (complete_set_gnutarget): Adjust to work with a
5754 completion_tracker instead of a VEC.
5755 * cp-abi.c (cp_abi_completer): Adjust to work with a
5756 completion_tracker instead of a VEC.
5757 * d-lang.c (d_language_defn): Adjust.
5758 * disasm.c (disassembler_options_completer): Adjust to work with a
5759 completion_tracker instead of a VEC.
5760 * f-lang.c (f_make_symbol_completion_list): Rename to ...
5761 (f_collect_symbol_completion_matches): ... this. Adjust to work
5762 with a completion_tracker instead of a VEC.
5763 (f_language_defn): Adjust.
5764 * go-lang.c (go_language_defn): Adjust.
5765 * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
5766 Adjust to work with a completion_tracker instead of a VEC.
5767 * infrun.c (handle_completer): Likewise.
5768 * interps.c (interpreter_completer): Likewise.
5769 * interps.h (interpreter_completer): Likewise.
5770 * language.c (unknown_language_defn, auto_language_defn)
5771 (local_language_defn): Adjust.
5772 * language.h (language_defn::la_make_symbol_completion_list):
5773 Rename to ...
5774 (language_defn::la_collect_symbol_completion_matches): ... this
5775 and adjust to work with a completion_tracker instead of a VEC.
5776 * m2-lang.c (m2_language_defn): Adjust.
5777 * objc-lang.c (objc_language_defn): Adjust.
5778 * opencl-lang.c (opencl_language_defn): Adjust.
5779 * p-lang.c (pascal_language_defn): Adjust.
5780 * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
5781 (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
5782 with a completion_tracker.
5783 * rust-lang.c (rust_language_defn): Adjust.
5784 * symtab.c (free_completion_list, do_free_completion_list)
5785 (return_val, completion_tracker): Delete.
5786 (completion_list_add_name, completion_list_add_symbol)
5787 (completion_list_add_msymbol, completion_list_objc_symbol)
5788 (completion_list_add_fields, add_symtab_completions): Add
5789 completion_tracker parameter and use it.
5790 (default_make_symbol_completion_list_break_on_1): Rename to...
5791 (default_collect_symbol_completion_matches_break_on): ... this.
5792 Add completion_tracker parameter and use it instead of allocating
5793 a completion tracker here.
5794 (default_make_symbol_completion_list_break_on): Delete old
5795 implementation.
5796 (default_make_symbol_completion_list): Delete.
5797 (default_collect_symbol_completion_matches): New.
5798 (make_symbol_completion_list): Delete.
5799 (collect_symbol_completion_matches): New.
5800 (make_symbol_completion_type): Rename to ...
5801 (collect_symbol_completion_matches_type): ... this. Add
5802 completion_tracker parameter and use it instead of VEC.
5803 (make_file_symbol_completion_list_1): Rename to...
5804 (collect_file_symbol_completion_matches): ... this. Add
5805 completion_tracker parameter and use it instead of VEC.
5806 (make_file_symbol_completion_list): Delete.
5807 (add_filename_to_list): Use completion_list instead of a VEC.
5808 (add_partial_filename_data::list): Now a completion_list.
5809 (make_source_files_completion_list): Work with a completion_list
5810 instead of a VEC.
5811 * symtab.h: Include "completer.h".
5812 (default_make_symbol_completion_list_break_on)
5813 (default_make_symbol_completion_list, make_symbol_completion_list)
5814 (make_symbol_completion_type, make_file_symbol_completion_list)
5815 (make_source_files_completion_list): Delete.
5816 (default_collect_symbol_completion_matches_break_on)
5817 (default_collect_symbol_completion_matches)
5818 (collect_symbol_completion_matches)
5819 (collect_symbol_completion_matches_type)
5820 (collect_file_symbol_completion_matches)
5821 (make_source_files_completion_list): New.
5822 * top.c (init_main): Don't install a rl_completion_entry_function
5823 hook. Install a rl_attempted_completion_function hook instead.
5824 * tui/tui-layout.c (layout_completer): Adjust to work with a
5825 completion_tracker.
5826 * tui/tui-regs.c (tui_reggroup_completer):
5827 * tui/tui-win.c (window_name_completer, focus_completer)
5828 (winheight_completer): Adjust to work with a completion_tracker.
5829 * value.c: Include "completer.h".
5830 (complete_internalvar): Adjust to work with a completion_tracker.
5831 * value.h (complete_internalvar): Likewise.
5832
6e1dbf8c
PA
58332017-07-17 Pedro Alves <palves@redhat.com>
5834
5835 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
5836 renames.
5837 * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
5838 comments to completer_ftype's declaration.
5839 <completer_handle_brkchars>: Change type to
5840 completer_handle_brkchars_ftype.
5841 * command.h (completer_ftype): Add describing comment and give
5842 names to parameters.
5843 (completer_ftype_void): Rename to ...
5844 (completer_handle_brkchars_ftype) ... this. Add describing comment.
5845 (set_cmd_completer_handle_brkchars): Adjust.
5846 * completer.c (filename_completer_handle_brkchars): New function.
5847 (complete_line_internal_normal_command): New function, factored
5848 out from ...
5849 (complete_line_internal): ... here.
5850 (command_completer_handle_brkchars)
5851 (default_completer_handle_brkchars)
5852 (completer_handle_brkchars_func_for_completer): New functions.
5853 * completer.h (set_gdb_completion_word_break_characters): Delete
5854 declaration.
5855 (completer_handle_brkchars_func_for_completer): New declaration.
5856 * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
5857 completer_handle_brkchars_func_for_completer.
5858
78b13106
PA
58592017-07-17 Pedro Alves <palves@redhat.com>
5860
5861 * completer.c (symbol_completer): New function, based on
5862 make_symbol_completion_list_fn.
5863 * completer.h (symbol_completer): New declaration.
5864 * guile/scm-cmd.c (cmdscm_completers): Adjust.
5865 * python/py-cmd.c (completers): Adjust.
5866 * symtab.c (make_symbol_completion_list_fn): Delete.
5867 * symtab.h (make_symbol_completion_list_fn): Delete.
5868 * cli/cli-decode.c (add_cmd): Adjust.
5869
bbf2f4df
PA
58702017-07-17 Pedro Alves <palves@redhat.com>
5871
5872 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
5873 * dwarf2read.c: Include "filename-seen-cache.h".
5874 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
5875 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
5876 * filename-seen-cache.c: New file.
5877 * filename-seen-cache.h: New file.
5878 * symtab.c: Include "filename-seen-cache.h".
5879 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
5880 (create_filename_seen_cache, clear_filename_seen_cache)
5881 (delete_filename_seen_cache, filename_seen): Delete, parts moved
5882 to filename-seen-cache.h/filename-seen-cache.c.
5883 (output_source_filename, sources_info)
5884 (maybe_add_partial_symtab_filename)
5885 (make_source_files_completion_list): Adjust to use
5886 filename_seen_cache.
5887
330cdd98
PA
58882017-07-17 Pedro Alves <palves@redhat.com>
5889
5890 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
5891 fields.
5892 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
5893 dwarf2_debug_sections*)): New.
5894 (dwarf2_per_objfile::dwarf2_per_objfile(const
5895 dwarf2_per_objfile&)): Declare as deleted.
5896 (dwarf2_per_objfile::operator=): Declare as deleted.
5897 (dwarf2_per_objfile::dwarf2_per_objfile)
5898 (dwarf2_per_objfile::~dwarf2_per_objfile)
5899 (dwarf2_per_objfile::free_cached_comp_units): New.
5900 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
5901 ctor. Call dwarf2_per_objfile's ctor manually.
5902 (dwarf2_locate_sections): Deleted/refactored as ...
5903 (dwarf2_per_objfile::locate_sections): ... this new method.
5904 (free_cached_comp_units): Defer to
5905 dwarf2_per_objfile::free_cached_comp_units.
5906 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
5907
8880f2a9
TT
59082017-07-14 Tom Tromey <tom@tromey.com>
5909
5910 PR rust/21764:
5911 * rust-exp.y (convert_ast_to_expression): Add "want_type"
5912 parameter.
5913 <UNOP_SIZEOF>: Split into separate case.
5914 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
5915
65547233
TT
59162017-07-14 Tom Tromey <tom@tromey.com>
5917
5918 PR rust/21763:
5919 * symtab.c (symbol_matches_domain): Add language_rust to special
5920 case.
5921 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
5922 treat LOC_TYPEDEF symbols as variables.
5923
8f14146e
PA
59242017-07-14 Pedro Alves <palves@redhat.com>
5925
5926 * symtab.c (make_file_symbol_completion_list_1): Iterate over
5927 symtabs matching all symtabs with SRCFILE as file name instead of
5928 only considering the first hit, with lookup_symtab.
5929
2347965c
SM
59302017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5931
5932 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
5933 operator_name parameters.
5934 (gen_expr): Update function call.
5935
40f4af28
SM
59362017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5937
5938 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
5939 parameter.
5940 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
5941 Likewise.
5942 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
5943 parameter, use agent_expr::gdbarch instead, update function
5944 calls.
5945 (locexpr_tracepoint_var_ref): Likewise.
5946 (loclist_tracepoint_var_ref): Likewise.
5947 * ax-gdb.c (gen_trace_static_fields): Likewise.
5948 (gen_traced_pop): Likewise.
5949 (gen_frame_args_address): Likewise.
5950 (gen_frame_locals_address): Likewise.
5951 (gen_var_ref): Likewise.
5952 (gen_struct_ref_recursive): Likewise.
5953 (gen_static_field): Likewise.
5954 (gen_maybe_namespace_elt): Likewise.
5955 (gen_expr): Likewise.
5956 (gen_trace_for_var): Likewise.
5957 (gen_trace_for_expr): Likewise.
5958 (gen_trace_for_return_address): Likewise.
5959
053f8057
SM
59602017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5961
5962 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
5963 parameter.
5964 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
5965
6661ad48
SM
59662017-07-14 Simon Marchi <simon.marchi@ericsson.com>
5967
5968 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
5969 from ax, update calls.
5970 (gen_usual_arithmetic): Likewise.
5971 (gen_integral_promotions): Likewise.
5972 (gen_bitfield_ref): Likewise.
5973 (gen_primitive_field): Likewise.
5974 (gen_struct_ref_recursive): Likewise.
5975 (gen_struct_ref): Likewise.
5976 (gen_maybe_namespace_elt): Likewise.
5977 (gen_struct_elt_for_reference): Likewise.
5978 (gen_namespace_elt): Likewise.
5979 (gen_aggregate_elt_ref): Likewise.
5980 (gen_expr): Get gdbarch from ax, update calls.
5981 (gen_expr_binop_rest): Likewise.
5982
c55a47e7
PA
59832017-07-13 Pedro Alves <palves@redhat.com>
5984
5985 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
5986 as default tdesc.
5987 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
5988 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
5989 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
5990 tdesc_amd64_linux as default tdesc. Get final tdesc from the
5991 tdep.
5992 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
5993 Get final tdesc from the tdep.
5994 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
5995 default tdesc.
5996 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
5997 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
5998 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
5999 Use it as default tdesc.
6000 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
6001 down to amd_init_abi. No longer handle fallback tdesc here.
6002 * amd64-tdep.h (tdesc_x32): Declare.
6003 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
6004 parameter.
6005 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
6006 as default tdesc.
6007
55efceab
AA
60082017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6009
6010 * s390-linux-tdep.c (s390_process_record): Add support for
6011 instructions new in arch12.
6012
0aa37b65
JB
60132017-07-11 John Baldwin <jhb@FreeBSD.org>
6014
6015 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
6016 PT_GETFSBASE and PT_GETGSBASE.
6017 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
6018 PT_SETGSBASE.
6019
48aeef91
JB
60202017-07-11 John Baldwin <jhb@FreeBSD.org>
6021
6022 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
6023 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
6024 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
6025 those rules.
6026 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
6027 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
6028 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
6029 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
6030 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
6031 * features/i386/amd64.xml: Add 64bit-segments.xml.
6032 * features/i386/amd64-avx-avx512.c: Regenerated.
6033 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
6034 * features/i386/amd64-avx-mpx.c: Regenerated.
6035 * features/i386/amd64-avx.c: Regenerated.
6036 * features/i386/amd64-mpx.c: Regenerated.
6037 * features/i386/amd64.c: Regenerated.
6038 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
6039 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
6040 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
6041 * regformats/i386/amd64-avx.dat: Regenerated.
6042 * regformats/i386/amd64-mpx.dat: Regenerated.
6043 * regformats/i386/amd64.dat: Regenerated.
6044
77c501bc
YQ
60452017-07-10 Yao Qi <yao.qi@linaro.org>
6046
6047 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
6048 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
6049
6dc8d757
AK
60502017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
6051
6052 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
6053 unsetenv.
6054 * gnulib/aclocal.m4: Regenerate.
6055 * gnulib/config.in: Regenerate.
6056 * gnulib/configure: Regenerate.
6057 * gnulib/import/Makefile.am: Regenerate.
6058 * gnulib/import/Makefile.in: Regenerate.
6059 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
6060 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
6061 * gnulib/import/m4/environ.m4: New file.
6062 * gnulib/import/m4/setenv.m4: New file.
6063 * gnulib/import/setenv.c: New file.
6064 * gnulib/import/unsetenv.c: New file.
6065
266934d1
SM
60662017-07-09 Simon Marchi <simon.marchi@ericsson.com>
6067
6068 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
6069 address when op is DW_OP_addr.
6070
03278692
TT
60712017-07-09 Tom Tromey <tom@tromey.com>
6072
6073 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
6074 check and apply to outer type.
6075
4b654465
JB
60762017-07-07 John Baldwin <jhb@FreeBSD.org>
6077
6078 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
6079 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
6080 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
6081 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
6082
2af9fc44
JB
60832017-07-07 John Baldwin <jhb@FreeBSD.org>
6084
6085 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
6086
382b69bb
JB
60872017-07-07 John Baldwin <jhb@FreeBSD.org>
6088
6089 * corelow.c (get_core_siginfo): Remove.
6090 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
6091 instead of get_core_siginfo.
6092 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
6093 * gdbarch.h: Re-generate.
6094 * gdbarch.c: Re-generate.
6095 * linux-tdep.c (linux_core_xfer_siginfo): New.
6096 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
6097
6e5eab33
JB
60982017-07-07 John Baldwin <jhb@FreeBSD.org>
6099
6100 * corelow.c (thread_section_name): Move to ...
6101 * gdbcore.h (thread_section_name): ... here.
6102
929edea9
JB
61032017-07-07 John Baldwin <jhb@FreeBSD.org>
6104
6105 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
6106 (struct siginfo32): New.
6107 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
6108 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
6109 via ptrace(PT_LWPINFO).
6110
762c974a
JB
61112017-07-07 John Baldwin <jhb@FreeBSD.org>
6112
6113 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
6114 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
6115 (fbsd_get_siginfo_type): New.
6116 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
6117 (_initialize_fbsd_tdep): New.
6118
33c5cd75
DB
61192017-07-06 David Blaikie <dblaikie@gmail.com>
6120
6121 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
6122 a singular dwo_unit*) to support multiple CUs in the same way that
6123 multiple TUs are supported.
6124 (create_cus_hash_table): Replace create_dwo_cu with a function for
6125 parsing multiple CUs from a DWO file.
6126 (open_and_init_dwo_file): Use create_cus_hash_table rather than
6127 create_dwo_cu.
6128 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
6129 htab_find, rather than comparing the signature to a singleton CU in
6130 the dwo_file.
6131
8455d262
PA
61322017-07-06 Pedro Alves <palves@redhat.com>
6133
6134 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
6135
4da3eb35
PA
61362017-07-04 Pedro Alves <palves@redhat.com>
6137
6138 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
6139 * gdbtypes.h (TYPE_STATIC): Delete.
6140 (struct fn_field) <is_public, is_abstract, is_static, is_final,
6141 is_synchronized, is_native>: Delete.
6142 <dummy>: Bump.
6143 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
6144 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
6145 (TYPE_FN_FIELD_ABSTRACT): Delete.
6146
5bfd255c
SM
61472017-07-03 Simon Marchi <simon.marchi@ericsson.com>
6148
6149 * buffer.h (buffer_finish): Fix spelling mistakes.
6150
25c54127
EZ
61512017-07-01 Eli Zaretskii <eliz@gnu.org>
6152
6153 * .dir-locals.el: Automatically switch to C-style comments in
6154 versions of Emacs that support the feature.
6155
dc4bde35
SDJ
61562017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
6157 Pedro Alves <palves@redhat.com>
6158
6159 PR cli/21688
6160 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
6161 (process_next_line): New variable 'inline_cmd'.
6162 Adjust 'if' clauses for "python", "compile" and "guile" to use
6163 'command_name_equals' and check for '!inline_cmd'.
6164
51ed89aa
SDJ
61652017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
6166
6167 PR cli/21688
6168 * cli/cli-script.c (command_name_equals_not_inline): New function.
6169 (process_next_line): Adjust 'if' clauses for "python", "compile"
6170 and "guile" to use command_name_equals_not_inline.
6171
eb17d413
PA
61722017-06-29 Pedro Alves <palves@redhat.com>
6173
6174 * completer.c (expression_completer): Call
6175 linespec_location_completer instead of location_completer.
6176
195bcdd5
PA
61772017-06-29 Pedro Alves <palves@redhat.com>
6178
6179 * completer.c (expression_completer): Remove code that recomputes
6180 'text' from 'word'.
6181
adc764e7
YQ
61822017-06-29 Yao Qi <yao.qi@linaro.org>
6183
6184 * regformats/regdat.sh: Generate code with
6185 "ifndef IN_PROCESS_AGENT".
6186
6e75794e
PA
61872017-06-28 Pedro Alves <palves@redhat.com>
6188
6189 * command.h: Include "common/scoped_restore.h".
6190
bc491f2e
YQ
61912017-06-28 Yao Qi <yao.qi@linaro.org>
6192
6193 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
6194 instead of obstack_grow.
6195
41664b45
DG
61962017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
6197
6198 PR gdb/21337
6199 * symfile.c (reread_symbols): Call objfiles_changed just before
6200 read_symbols.
6201
6da67eb1
PA
62022017-06-27 Pedro Alves <palves@redhat.com>
6203
6204 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
6205 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
6206 (completion_list_add_symbol, completion_list_add_msymbol):
6207 ... these new functions.
6208 (add_symtab_completions)
6209 (default_make_symbol_completion_list_break_on_1): Adjust.
6210
23732b1e
PA
62112017-06-27 Pedro Alves <palves@redhat.com>
6212
6213 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
6214 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
6215 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
6216 dtor.
6217 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
6218 'storage_obstack' field an auto_obstack. In-class initialize all
6219 non-bitfield fields. Make minsyms_read bool.
6220 * symfile.c (read_symbols): Adjust.
6221
a4d1e79a
AH
62222017-06-27 Alan Hayward <alan.hayward@arm.com>
6223
6224 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
6225 (gdbsim_store_register): Likewise.
6226
8268c778
PA
62272017-06-27 Pedro Alves <palves@redhat.com>
6228
6229 * c-exp.y (name_obstack): Now an auto_obstack.
6230 (yylex): Use auto_obstack::clear.
6231 (c_parse): Use auto_obstack::clear instead of reinitializing and
6232 freeing the obstack.
6233 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
6234 * d-exp.y (name_obstack): Now an auto_obstack.
6235 (yylex): Use auto_obstack::clear.
6236 (d_parse): Use auto_obstack::clear instead of reinitializing and
6237 freeing the obstack.
6238 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
6239 auto_obstack.
6240 * dwarf2read.c (create_addrmap_from_index)
6241 (dwarf2_build_psymtabs_hard)
6242 (update_enumeration_type_from_children): Likewise.
6243 * gdb_obstack.h (auto_obstack): New type.
6244 * go-exp.y (name_obstack): Now an auto_obstack.
6245 (build_packaged_name): Use auto_obstack::clear.
6246 (go_parse): Use auto_obstack::clear instead of reinitializing and
6247 freeing the obstack.
6248 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
6249 auto_obstack.
6250 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
6251 * rust-exp.y (work_obstack): Now an auto_obstack.
6252 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
6253 reinitializing and freeing the obstack.
6254 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
6255 (host_char_to_target): Use auto_obstack.
6256 * utils.h (make_cleanup_obstack_free): Delete declaration.
6257 * valprint.c (generic_emit_char, generic_printstr): Use
6258 auto_obstack.
6259
db665f42
SM
62602017-06-27 Simon Marchi <simon.marchi@ericsson.com>
6261
6262 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
6263 thread.
6264 (darwin_init_thread_list): Don't update dummy thread.
6265 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
6266
873c0814
SM
62672017-06-26 Simon Marchi <simon.marchi@ericsson.com>
6268
6269 * record-full.c (netorder16): Remove.
6270
8b5a7a6e
SM
62712017-06-26 Simon Marchi <simon.marchi@ericsson.com>
6272
6273 * common/diagnostics.h: Define macros for GCC.
6274 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
6275 * common/vec.h: Include diagnostics.h.
6276 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
6277 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
6278 warning.
6279
d1435379
SM
62802017-06-26 Simon Marchi <simon.marchi@ericsson.com>
6281
6282 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
6283 New macro.
6284 * ada-lex.l: Ignore deprecated register warnings.
6285
cc75e0fd
SM
62862017-06-25 Simon Marchi <simon.marchi@ericsson.com>
6287
6288 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
6289 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
6290
07809eaf
SM
62912017-06-25 Simon Marchi <simon.marchi@ericsson.com>
6292
6293 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
6294 its own line.
6295
f076f034
SM
62962017-06-25 Simon Marchi <simon.marchi@ericsson.com>
6297
6298 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
6299
0dd5cbc5
AH
63002017-06-23 Alan Hayward <alan.hayward@arm.com>
6301
6302 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
6303 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
6304 (xtensa_register_read_masked): Likewise.
6305
d4c6ce5b
SDJ
63062017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
6307
6308 * common/environ.c (gdb_environ::unset): Update comment.
6309
16892a03
AH
63102017-06-22 Alan Hayward <alan.hayward@arm.com>
6311
6312 * python/py-unwind.c (pyuw_sniffer): Allocate space for
6313 registers.
6314
d7dcbefc
AH
63152017-06-22 Alan Hayward <alan.hayward@arm.com>
6316
6317 * record-full.c (record_full_exec_insn): Use byte_vector.
6318
b30ff123
YQ
63192017-06-22 Yao Qi <yao.qi@linaro.org>
6320
6321 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
6322 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
6323
4fa847d7
AH
63242017-06-22 Alan Hayward <alan.hayward@arm.com>
6325
6326 * remote.c (cached_reg): Move from here...
6327 * regcache.h (cached_reg): ...to here.
6328 * python/py-unwind.c (struct reg_info): Remove.
6329 (cached_frame_info): Use cached_reg_t.
6330 (pyuw_prev_register): Likewise.
6331 (pyuw_sniffer): Use cached_reg_t and allocate registers.
6332 (pyuw_dealloc_cache): Free all registers.
6333
f4906a9a
PA
63342017-06-22 Pedro Alves <palves@redhat.com>
6335 Simon Marchi <simon.marchi@ericsson.com>
6336
6337 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
6338 warning.
6339 * common/diagnostics.h: New file.
6340
b45a1208
PA
63412017-06-22 Pedro Alves <palves@redhat.com>
6342
6343 * common/agent.h: Add include guards.
6344
e4da2c61
SM
63452017-06-21 Simon Marchi <simon.marchi@ericsson.com>
6346
6347 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
6348 talk about addressable units instead of bytes.
6349
96160d60
SDJ
63502017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
6351
6352 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
6353 of '::const_iterator'.
6354
9a6c7d9c
SDJ
63552017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
6356
6357 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6358 'unittests/environ-selftests.c'.
6359 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
6360 * charset.c (find_charset_names): Declare object 'iconv_env'.
6361 Update code to use 'iconv_env' object. Remove call to
6362 'free_environ'.
6363 * common/environ.c: Include <utility>.
6364 (make_environ): Delete function.
6365 (free_environ): Delete function.
6366 (gdb_environ::clear): New function.
6367 (gdb_environ::operator=): New function.
6368 (gdb_environ::get): Likewise.
6369 (environ_vector): Delete function.
6370 (set_in_environ): Delete function.
6371 (gdb_environ::set): New function.
6372 (unset_in_environ): Delete function.
6373 (gdb_environ::unset): New function.
6374 (gdb_environ::envp): Likewise.
6375 * common/environ.h: Include <vector>.
6376 (struct gdb_environ): Delete; transform into...
6377 (class gdb_environ): ... this class.
6378 (free_environ): Delete prototype.
6379 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
6380 environ_vector): Likewise.
6381 * infcmd.c (run_command_1): Update code to call
6382 'envp' from 'gdb_environ' class.
6383 (environment_info): Update code to call methods from 'gdb_environ'
6384 class.
6385 (unset_environment_command): Likewise.
6386 (path_info): Likewise.
6387 (path_command): Likewise.
6388 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
6389 (inferior::inferior): Initialize 'environment' using the host's
6390 information.
6391 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
6392 Include "environ.h".
6393 (class inferior) <environment>: Change type from 'struct
6394 gdb_environ' to 'gdb_environ'.
6395 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
6396 methods from 'gdb_environ' class.
6397 * solib.c (solib_find_1): Likewise
6398 * unittests/environ-selftests.c: New file.
6399
75c554cf
YQ
64002017-06-20 Yao Qi <yao.qi@linaro.org>
6401
6402 * features/i386/i386-linux.xml: Exchange the order of including
6403 32bit-linux.xml and 32bit-sse.xml.
6404 * features/i386/i386-linux.c: Regenerated.
6405
72ddacb7
YQ
64062017-06-20 Yao Qi <yao.qi@linaro.org>
6407
6408 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
6409 Delete copy ctor and assignment operator.
6410 (tdesc_type): Likewise.
6411 (tdesc_feature): Likewise.
6412 (tdesc_free_reg): Remove.
6413 (tdesc_create_reg): Use new.
6414 (tdesc_free_type): Remove.
6415 (tdesc_create_vector): Use new.
6416 (tdesc_create_union): Likewise.
6417 (tdesc_create_flags): Likewise.
6418 (tdesc_create_enum): Likewise.
6419 (tdesc_free_feature): Delete.
6420 (free_target_description): Use delete.
6421
325c9fd4
JB
64222017-06-19 John Baldwin <jhb@FreeBSD.org>
6423
6424 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
6425 registers.
6426
16b7a719
PA
64272017-06-19 Pedro Alves <palves@redhat.com>
6428
6429 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
6430 after gdb::unlinker.
6431
1c8e01c9
SDJ
64322017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
6433
6434 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
6435 gdb_environ to access an environment variable.
6436
ffce45d2
TP
64372017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6438
6439 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
6440 gdb_byte*.
6441
1d4fbac9
SM
64422017-06-17 Simon Marchi <simon.marchi@ericsson.com>
6443
6444 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
6445
8465943a
SM
64462017-06-17 Simon Marchi <simon.marchi@ericsson.com>
6447
6448 * configure: Re-generate.
6449 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
6450
3e019bdc
SM
64512017-06-17 Simon Marchi <simon.marchi@ericsson.com>
6452
6453 * configure: Re-generate.
6454 * warning.m4: Pass -Werror to compiler when checking for
6455 supported warning flags.
6456
cf0dd6f0
SM
64572017-06-17 Simon Marchi <simon.marchi@ericsson.com>
6458
6459 * Makefile.in (COMPILE.pre): Add "-x c++".
6460
6f98355c
YQ
64612017-06-16 Alan Hayward <alan.hayward@arm.com>
6462 Pedro Alves <palves@redhat.com>
6463 Yao Qi <yao.qi@linaro.org>
6464
6465 * defs.h (RequireLongest): New.
6466 (extract_integer): Declare function template.
6467 (extract_signed_integer): Remove the declaration, but define it
6468 static inline.
6469 (extract_unsigned_integer): Likewise.
6470 (store_integer): Declare function template.
6471 (store_signed_integer): Remove the declaration, but define it
6472 static inline.
6473 (store_unsigned_integer): Likewise.
6474 * findvar.c (extract_integer): New function template.
6475 (extract_signed_integer): Remove.
6476 (extract_unsigned_integer): Remove.
6477 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
6478 instantiations.
6479 (store_integer): New function template.
6480 (store_signed_integer): Remove.
6481 (store_unsigned_integer): Remove.
6482 (store_integer): Explicit instantiations.
6483 * regcache.c (regcache_raw_read_signed): Update.
6484 (regcache::raw_read): New function.
6485 (regcache::raw_read_signed): Remove.
6486 (regcache::raw_read_unsigned): Remove.
6487 (regcache_raw_read_unsigned): Update.
6488 (regcache_raw_write_unsigned): Update.
6489 (regcache::raw_write_signed): Remove.
6490 (regcache::raw_write): New function.
6491 (regcache_cooked_read_signed): Update.
6492 (regcache::raw_write_unsigned): Remove.
6493 (regcache::cooked_read_signed): Remove.
6494 (regcache_cooked_read_unsigned): Update.
6495 (regcache::cooked_read_unsigned): Remove.
6496 (regcache_cooked_write_signed): Update.
6497 (regcache_cooked_write_unsigned): Update.
6498 * regcache.h (regcache) <raw_read_signed>: Remove.
6499 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
6500 <raw_read, raw_write>: New.
6501 <cooked_read_signed, cooked_write_signed>: Remove.
6502 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
6503 <cooked_read, cooked_write>: New.
6504 * sh64-tdep.c (sh64_pseudo_register_read): Update.
6505 (sh64_pseudo_register_write): Update.
6506
a87dc45a
AK
65072017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
6508
6509 * arc-tdep.c (arc_disassembler_options): New variable.
6510 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
6511 of default_print_insn.
6512 (arc_delayed_print_insn): Set info->section when needed,
6513 use default_print_insn to retrieve a disassembler.
6514
45159d6a
SDJ
65152017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
6516
6517 PR gdb/21574
6518 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
6519 to mention $SHELL and startup-with-shell.
6520
b46c4cf0
MF
65212017-06-14 Max Filippov <jcmvbkbc@gmail.com>
6522
6523 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
6524
6394c606
YQ
65252017-06-14 Yao Qi <yao.qi@linaro.org>
6526
6527 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
6528 default_print_insn instead of print_insn_aarch64.
6529 * arm-tdep.c (gdb_print_insn_arm): Call
6530 default_print_insn instead of print_insn_big_arm
6531 and print_insn_little_arm.
6532 * i386-tdep.c (i386_print_insn): Call default_print_insn
6533 instead of print_insn_i386.
6534 * ia64-tdep.c (ia64_print_insn): Call
6535 default_print_insn instead of print_insn_ia64.
6536 * mips-tdep.c (gdb_print_insn_mips): Call
6537 default_print_insn instead of print_insn_big_mips
6538 and print_insn_little_mips.
6539 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
6540 instead of print_insn_spu.
6541
d5722aa2
PA
65422017-06-14 Pedro Alves <palves@redhat.com>
6543
6544 * ada-lang.c: Include "common/byte-vector.h".
6545 (ada_value_primitive_packed_val): Use gdb::byte_vector.
6546 * charset.c (wchar_iterator::iterate): Resize the vector instead
6547 of reserving it.
6548 * common/byte-vector.h: Include "common/def-vector.h".
6549 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
6550 * cli/cli-dump.c: Include "common/byte-vector.h".
6551 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
6552 * common/byte-vector.h: New file.
6553 * common/def-vector.h: New file.
6554 * common/default-init-alloc.h: New file.
6555 * dwarf2loc.c: Include "common/byte-vector.h".
6556 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
6557 instead of reserving it.
6558 * dwarf2read.c: Include "common/byte-vector.h".
6559 (data_buf::m_vec): Now a gdb::byte_vector.
6560 * gdb_regex.c: Include "common/def-vector.h".
6561 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
6562 * mi/mi-main.c: Include "common/byte-vector.h".
6563 (mi_cmd_data_read_memory): Use gdb::byte_vector.
6564 * printcmd.c: Include "common/byte-vector.h".
6565 (print_scalar_formatted): Use gdb::byte_vector.
6566 * valprint.c: Include "common/byte-vector.h".
6567 (maybe_negate_by_bytes, print_decimal_chars): Use
6568 gdb::byte_vector.
6569
01ec7a27
SM
65702017-06-13 Simon Marchi <simon.marchi@ericsson.com>
6571
6572 * darwin-nat.c: Include "nat/fork-inferior.h".
6573
848d9074
SM
65742017-06-13 Simon Marchi <simon.marchi@ericsson.com>
6575
6576 * configure.nat: Factor out Darwin bits that are not
6577 architecture-specific. Add fork-inferior.o.
6578
3b912944
SM
65792017-06-13 Simon Marchi <simon.marchi@ericsson.com>
6580
6581 * configure.nat: Factor out AIX bits that are not
6582 architecture-specific. Add fork-inferior.o.
6583
55acdf22
AA
65842017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6585
6586 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
6587 (read_pieced_value, write_pieced_value): ...here. Reduce to
6588 wrappers that just call rw_pieced_value.
6589
f65e2044
AA
65902017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6591
6592 * dwarf2loc.c (write_pieced_value): When writing the data for a
6593 memory piece, use write_memory_with_notification instead of
6594 write_memory.
6595
23f945bf
AA
65962017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6597
6598 * valops.c (read_value_memory): Change embedded_offset to
6599 represent a bit offset instead of a byte offset.
6600 * value.h (read_value_memory): Adjust comment.
6601
f236533e
AA
66022017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6603
6604 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
6605 dest_offset_bits and source_offset_bits.
6606 (write_pieced_value): Likewise.
6607
65d84b76
AA
66082017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6609
6610 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
6611 given by DW_OP_bit_piece.
6612 (write_pieced_value): Likewise.
6613
242d31ab
AA
66142017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6615
6616 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
6617 some other preparations to the places where sufficient information
6618 is available.
6619 (write_pieced_value): Likewise.
6620
03c8af18
AA
66212017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6622
6623 * dwarf2loc.c (bits_to_bytes): New function.
6624 (read_pieced_value): Fix offset calculations for register pieces
6625 on big-endian targets.
6626 (write_pieced_value): Likewise.
6627
840989c1
AA
66282017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6629
6630 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
6631 (write_pieced_value): Likewise.
6632
359b19bb
AA
66332017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6634
6635 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
6636 transfer the source value's least significant bits, instead of its
6637 lowest-addressed ones. Rename type_len to max_offset.
6638 (read_pieced_value): Mirror above changes to write_pieced_value as
6639 applicable.
6640
07c9ca3b
AA
66412017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6642
6643 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
6644 truncate full bytes from dest_offset_bits before using it as an
6645 offset into the buffer.
6646
f1cc9874
AA
66472017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6648
6649 * dwarf2loc.c (write_pieced_value): Include transfer size in
6650 byte-wise check.
6651
cdaac320
AA
66522017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6653
6654 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
6655 calculation of this_size.
6656
af547a96
AA
66572017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6658
6659 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
6660 when targeting a bit-field.
6661 (write_pieced_value): Likewise.
6662
ddd7882a
AA
66632017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6664
6665 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
6666 (allocate_piece_closure): Drop addr_size parameter.
6667 (dwarf2_evaluate_loc_desc_full): Adjust call to
6668 allocate_piece_closure.
6669
e9352324
AA
66702017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6671
6672 PR gdb/21226
6673 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
6674 the LSB end, independent of endianness.
6675
d5d1163e
AA
66762017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6677
6678 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
6679 size capping.
6680
032bb6ea
YQ
66812017-06-13 Yao Qi <yao.qi@linaro.org>
6682
6683 * mips-linux-nat.c: Move include features/mips*-linux.c to
6684 mips-linux-tdep.c.
6685 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
6686 to mips-linux-tdep.c.
6687 * mips-linux-tdep.c: Include features/mips*-linux.c
6688 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
6689 functions.
6690 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
6691 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
6692 (tdesc_mips64_dsp_linux): Declare.
6693
f12f6bad
TT
66942017-06-12 Tom Tromey <tom@tromey.com>
6695
6696 * valprint.h (val_print_type_code_int): Remove.
6697 * valprint.c (generic_val_print_int): Always call
6698 val_print_scalar_formatted.
6699 (val_print_type_code_int): Remove.
6700 * printcmd.c (print_scalar_formatted): Handle options->format==0.
6701 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
6702 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
6703 * ada-valprint.c (ada_val_print_num): Use
6704 val_print_scalar_formatted.
6705
d9109c80
TT
67062017-06-12 Tom Tromey <tom@tromey.com>
6707
6708 * printcmd.c (print_scalar_formatted): Unify the two switches.
6709 Don't convert scalars to LONGEST.
6710
4ac0cb1c
TT
67112017-06-12 Tom Tromey <tom@tromey.com>
6712
6713 PR exp/16225:
6714 * valprint.h (print_decimal_chars): Update.
6715 * valprint.c (maybe_negate_by_bytes): New function.
6716 (print_decimal_chars): Add "is_signed" argument.
6717 * printcmd.c (print_scalar_formatted): Update.
6718
30a25466
TT
67192017-06-12 Tom Tromey <tom@tromey.com>
6720
6721 PR exp/16225:
6722 * valprint.h (print_binary_chars, print_hex_chars): Update.
6723 * valprint.c (val_print_type_code_int): Update.
6724 (print_binary_chars): Add "zero_pad" argument.
6725 (emit_octal_digit): New function.
6726 (print_octal_chars): Don't zero-pad.
6727 (print_decimal_chars): Likewise.
6728 (print_hex_chars): Add "zero_pad" argument.
6729 * sh64-tdep.c (sh64_do_fp_register): Update.
6730 * regcache.c (regcache::dump): Update.
6731 * printcmd.c (print_scalar_formatted): Update.
6732 * infcmd.c (default_print_one_register_info): Update.
6733
b3464d03
PA
67342017-06-12 Pedro Alves <palves@redhat.com>
6735 Alan Hayward <alan.hayward@arm.com>
6736
6737 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
6738 (mips_eabi_push_dummy_call): Rename local 'regsize' to
6739 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
6740 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
6741 Assert that abi_regsize bytes fit in 'ref_valbuf'.
6742
4b76cda9
PA
67432017-06-12 Pedro Alves <palves@redhat.com>
6744
6745 * dwarf2read.c (mapped_symtab::data): Now a vector of
6746 symtab_index_entry instead of vector of
6747 std::unique_ptr<symtab_index_entry>. All users adjusted to check
6748 whether an element's name is NULL instead of checking whether the
6749 element itself is NULL.
6750 (find_slot): Change return type. Adjust.
6751 (hash_expand, , add_index_entry, uniquify_cu_indices)
6752 (write_hash_table): Adjust.
6753
e8f8bcb3
PA
67542017-06-12 Pedro Alves <palves@redhat.com>
6755
6756 * dwarf2read.c (recursively_count_psymbols): New function.
6757 (write_psymtabs_to_index): Call it to compute number of psyms and
6758 pass estimate size of psyms_seen to unordered_set's ctor.
6759
70a1152b
PA
67602017-06-12 Pedro Alves <palves@redhat.com>
6761
6762 * dwarf2read.c (write_hash_table): Check if key already exists
6763 before emplacing.
6764
c2f134ac
PA
67652017-06-12 Pedro Alves <palves@redhat.com>
6766
6767 * dwarf2read.c (data_buf::append_space): Rename to...
6768 (data_buf::grow): ... this, and make private. Adjust all callers.
6769 (data_buf::append_uint): New method.
6770 (add_address_entry, write_one_signatured_type)
6771 (write_psymtabs_to_index): Use it.
6772
a81e6d4d
PA
67732017-06-12 Pedro Alves <palves@redhat.com>
6774
6775 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
6776 (file_write (FILE *, const std::vector<Elem>&)): Delete.
6777 (data_buf::file_write): Call ::fwrite directly.
6778
6fd931f2
PA
67792017-06-12 Pedro Alves <palves@redhat.com>
6780
6781 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
6782 std::vector::erase.
6783
bc8f2430
JK
67842017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6785
6786 Code cleanup: C++ify .gdb_index producer.
6787 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
6788 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
6789 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
6790 (create_strtab, add_string): Remove.
6791 (file_write, data_buf): New.
6792 (struct symtab_index_entry): Use std::vector for cu_indices.
6793 (struct mapped_symtab): Use std::vector for data.
6794 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
6795 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
6796 Remove.
6797 (find_slot): Change return type. Update it to the new data structures.
6798 (hash_expand, add_index_entry): Update it to the new data structures.
6799 (offset_type_compare): Remove.
6800 (uniquify_cu_indices): Update it to the new data structures.
6801 (c_str_view, c_str_view_hasher, vector_hasher): New.
6802 (add_indices_to_cpool): Remove.
6803 (write_hash_table): Update it to the new data structures.
6804 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
6805 (eq_psymtab_cu_index): Remove.
6806 (psym_index_map): New typedef.
6807 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
6808 reference and std::unordered_map for cu_index_htab.
6809 (add_address_entry, add_address_entry_worker, write_address_map)
6810 (write_psymbols): Update it to the new data structures.
6811 (write_obstack): Remove.
6812 (struct signatured_type_index_data): Change types_list to a data_buf
6813 reference and psyms_seen to a std::unordered_set reference.
6814 (write_one_signatured_type, recursively_write_psymbols)
6815 (write_psymtabs_to_index): Update it to the new data structures.
6816
c4dcb155
SM
68172017-06-11 Simon Marchi <simon.marchi@ericsson.com>
6818
6819 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
6820 separate-debug-file commands.
6821 * symfile.h (separate_debug_file_debug): New global.
6822 * symfile.c (separate_debug_file_debug): New global.
6823 (separate_debug_file_exists, find_separate_debug_file): Add
6824 debug output.
6825 (_initialize_symfile): Add "set debug separate-debug-file"
6826 command.
6827 * build-id.c (build_id_to_debug_bfd,
6828 find_separate_debug_file_by_buildid): Add debug output.
6829
6d45d4b4
SM
68302017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
6831
6832 * gdbarch.sh (displaced_step_free_closure): Remove.
6833 * gdbarch.h, gdbarch.c: Re-generate.
6834 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
6835 displaced_step_free_closure.
6836 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
6837 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
6838 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
6839 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
6840 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
6841 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
6842 * arch-utils.h (simple_displaced_step_free_closure): Remove.
6843 * arch-utils.c (simple_displaced_step_free_closure): Remove.
6844 * infrun.c (displaced_step_clear): Call xfree instead of
6845 gdbarch_displaced_step_free_closure.
6846
2f91880f
SDJ
68472017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
6848
6849 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
6850 NULL".
6851
b8b6e72f
AH
68522017-06-08 Alan Hayward <alan.hayward@arm.com>
6853
6854 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
6855 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
6856 (mn10300_push_dummy_call): Likewise.
6857
5369082e
AH
68582017-06-08 Alan Hayward <alan.hayward@arm.com>
6859
6860 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
6861
ff4ca5ac
AH
68622017-06-08 Alan Hayward <alan.hayward@arm.com>
6863
6864 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
6865
aefd8b33
SDJ
68662017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6867
6868 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
6869 able to start inferiors using a shell.
6870 (New remote packets): Announce new packet "QStartupWithShell".
6871 * remote.c: Add PACKET_QStartupWithShell.
6872 (extended_remote_create_inferior): Handle new
6873 PACKET_QStartupWithShell.
6874 (remote_protocol_features) <QStartupWithShell>: New entry for
6875 PACKET_QStartupWithShell.
6876 (_initialize_remote): Call "add_packet_config_cmd" for
6877 QStartupShell.
6878
2090129c
SDJ
68792017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6880 Pedro Alves <palves@redhat.com>
6881
6882 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
6883 and "nat/fork-inferior.h".
6884 * common/common-inferior.h: New file, with contents from
6885 "gdb/inferior.h".
6886 * commom/common-utils.c: Include "common-utils.h".
6887 (stringify_argv): New function.
6888 * common/common-utils.h (stringify_argv): New prototype.
6889 * configure.nat: Add "fork-inferior.o" as a dependency for
6890 "*linux*", "fbsd*" and "nbsd*" hosts.
6891 * corefile.c (get_exec_file): Update comment.
6892 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
6893 instead of "startup_inferior".
6894 (darwin_create_inferior): Call "add_thread_silent" after
6895 "fork_inferior".
6896 * fork-child.c: Cleanup unnecessary includes.
6897 (SHELL_FILE): Move to "common/common-fork-child.c".
6898 (environ): Likewise.
6899 (exec_wrapper): Initialize.
6900 (get_exec_wrapper): New function.
6901 (breakup_args): Move to "common/common-fork-child.c"; rename to
6902 "breakup_args_for_exec".
6903 (escape_bang_in_quoted_argument): Move to
6904 "common/common-fork-child.c".
6905 (saved_ui): New variable.
6906 (prefork_hook): New function.
6907 (postfork_hook): Likewise.
6908 (postfork_child_hook): Likewise.
6909 (gdb_startup_inferior): Likewise.
6910 (fork_inferior): Move to "common/common-fork-child.c". Update
6911 function to support gdbserver.
6912 (startup_inferior): Likewise.
6913 * gdbcore.h (get_exec_file): Remove declaration.
6914 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
6915 instead of "startup_inferior". Call "add_thread_silent" after
6916 "fork_inferior".
6917 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
6918 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
6919 instead of "startup_inferior". Call "add_thread_silent" after
6920 "fork_inferior".
6921 * inferior.h: Include "common-inferior.h".
6922 (trace_start_error): Move to "common/common-utils.h".
6923 (trace_start_error_with_name): Likewise.
6924 (fork_inferior): Move prototype to "nat/fork-inferior.h".
6925 (startup_inferior): Likewise.
6926 (gdb_startup_inferior): New prototype.
6927 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
6928 * nat/fork-inferior.h: New file.
6929 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
6930 instead of "startup_inferior". Call "add_thread_silent" after
6931 "fork_inferior".
6932 * target.h (target_terminal_init): Move prototype to
6933 "target/target.h".
6934 (target_terminal_inferior): Likewise.
6935 (target_terminal_ours): Likewise.
6936 * target/target.h (target_terminal_init): New prototype, moved
6937 from "target.h".
6938 (target_terminal_inferior): Likewise.
6939 (target_terminal_ours): Likewise.
6940 * utils.c (gdb_flush_out_err): New function.
6941
043a4934
SDJ
69422017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6943
6944 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
6945 * common/common-gdbthread.h: New file, with parts from
6946 "gdb/gdbthread.h".
6947 * gdbthread.h: Include "common-gdbthread.h".
6948 (switch_to_thread): Moved to "common/common-gdbthread.h".
6949
15652511
SDJ
69502017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
6951
6952 * Makefile.in (SFILES): Add "common/job-control.c".
6953 (HFILES_NO_SRCDIR): Add "common/job-control.h".
6954 (COMMON_OBS): Add "job-control.o".
6955 * common/job-control.c: New file, with contents from
6956 "gdb/inflow.c".
6957 * common/job-control.h: New file, with contents from "terminal.h".
6958 * fork-child.c: Include "job-control.h".
6959 * inflow.c: Include "job-control.h".
6960 (gdb_setpgid): Move to "common/common-inflow.c".
6961 (_initialize_inflow): Move setting of "job_control" to
6962 "handle_job_control".
6963 * terminal.h (job_control): Moved to "common/common-terminal.h".
6964 (gdb_setpgid): Likewise.
6965 * top.c: Include "job_control.h".
6966 * utils.c: Likewise.
6967 (job_control): Moved to "job-control.c".
6968
2d7cc5c7
PA
69692017-06-07 Pedro Alves <palves@redhat.com>
6970
6971 * Makefile.in (SFILES): Add gdb_regex.c.
6972 (COMMON_OBS): Add gdb_regex.o.
6973 * ada-lang.c (ada_add_standard_exceptions)
6974 (ada_add_exceptions_from_frame, name_matches_regex)
6975 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
6976 parameter type to compiled_regex. Adjust.
6977 (ada_exceptions_list): Use compiled_regex.
6978 * break-catch-throw.c (exception_catchpoint::pattern): Now a
6979 std::unique_ptr<compiled_regex>.
6980 (exception_catchpoint::~exception_catchpoint): Remove regfree
6981 call.
6982 (check_status_exception_catchpoint): Adjust to use compiled_regex.
6983 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
6984 * breakpoint.c (solib_catchpoint::compiled): Now a
6985 std::unique_ptr<compiled_regex>.
6986 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
6987 (check_status_catch_solib): Adjust to use compiled_regex.
6988 (add_solib_catchpoint): Adjust to use compiled_regex.
6989 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
6990 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
6991 compiled_regex reference. Adjust to use it.
6992 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
6993 declaration. Include "gdb_regex.h".
6994 (apropos_cmd): Change regex parameter to compiled_regex reference.
6995 * gdb_regex.c: New file.
6996 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
6997 declarations.
6998 (class compiled_regex): New.
6999 * linux-tdep.c: Include "common/gdb_optional.h".
7000 (struct mapping_regexes): New, factored out from
7001 mapping_is_anonymous_p, and adjusted to use compiled_regex.
7002 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
7003 gdb::optional and remove cleanups. Adjust to compiled_regex.
7004 * probe.c: Include "common/gdb_optional.h".
7005 (collect_probes): Use compiled_regex and gdb::optional and remove
7006 cleanups.
7007 * skip.c: Include "common/gdb_optional.h".
7008 (skiplist_entry::compiled_function_regexp): Now a
7009 gdb::optional<compiled_regex>.
7010 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
7011 (free_skiplist_entry): Remove regfree call.
7012 (compile_skip_regexp, skip_rfunction_p): Adjust to use
7013 compiled_regex and gdb::optional.
7014 * symtab.c: Include "common/gdb_optional.h".
7015 (search_symbols): Use compiled_regex and gdb::optional.
7016 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
7017 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
7018 to gdb_regex.c.
7019
50d6adef
AH
70202017-06-07 Alan Hayward <alan.hayward@arm.com>
7021
7022 * regcache.c (regcache::save): Avoid buffer use.
7023 (regcache::dump): Likewise.
7024
4a8a33c8
AH
70252017-06-07 Alan Hayward <alan.hayward@arm.com>
7026
7027 * sh-tdep.c (sh_pseudo_register_read): Remove
7028 MAX_REGISTER_SIZE.
7029 (sh_pseudo_register_write): Likewise.
7030 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
7031 (sh64_pseudo_register_write): Likewise
7032
d1be909e
AH
70332017-06-07 Alan Hayward <alan.hayward@arm.com>
7034
7035 * aarch64-tdep.c (aarch64_store_return_value): Use
7036 V_REGISTER_SIZE.
7037 (aarch64_pseudo_read_value): Likewise.
7038 (aarch64_pseudo_write): Likewise.
7039
f4a65042
YQ
70402017-06-06 Yao Qi <yao.qi@linaro.org>
7041
7042 * regformats/regdef.h (set_register_cache): Remove the
7043 declaration.
7044
9f7fb0aa
AH
70452017-06-06 Alan Hayward <alan.hayward@arm.com>
7046
7047 * frame.c (frame_unwind_register_signed): Use
7048 frame_unwind_register_value.
7049
e1e01040
PA
70502017-06-06 Pedro Alves <palves@redhat.com>
7051
7052 PR breakpoints/21553
7053 * breakpoint.c (create_breakpoints_sal_default)
7054 (init_breakpoint_sal, create_breakpoint_sal): Use
7055 gdb::unique_xmalloc_ptr for string parameters.
7056 (create_breakpoint): Constify 'extra_string' and 'cond_string'
7057 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
7058 (base_breakpoint_create_breakpoints_sal)
7059 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
7060 (strace_marker_create_breakpoints_sal)
7061 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
7062 string parameters.
7063 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
7064 gdb::unique_xmalloc_ptr for string parameters.
7065 (create_breakpoint): Constify 'extra_string' and 'cond_string'
7066 parameters.
7067
fbe654c8
AH
70682017-06-06 Alan Hayward <alan.hayward@arm.com>
7069
7070 * alpha-tdep.c (alpha_register_to_value): Use
7071 get_frame_register_value.
7072 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
7073
ae0d01d6
AH
70742017-06-06 Alan Hayward <alan.hayward@arm.com>
7075
7076 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
7077 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
7078 (ia64_value_to_register): Likewise.
7079 (ia64_extract_return_value): Likewise.
7080 (ia64_store_return_value): Likewise.
7081 (ia64_push_dummy_call): Likewise.
7082
49cf576c
JB
70832017-06-04 Joel Brobecker <brobecker@adacore.com>
7084
7085 GDB 8.0 released.
7086
26b6a6ab
SM
70872017-06-03 Simon Marchi <simon.marchi@ericsson.com>
7088
7089 * x86-linux-nat.c (struct arch_lwp_info): Remove.
7090
22827c51
SM
70912017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
7092
7093 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
7094 parameter.
7095 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
7096
0e05cf3a
SM
70972017-06-02 Simon Marchi <simon.marchi@ericsson.com>
7098
7099 * event-loop.c (poll_timers): Unallocate timer using delete
7100 instead of xfree.
7101
c1fc2657
SM
71022017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
7103
7104 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
7105 (struct breakpoint) <~breakpoint>: New.
7106 (struct watchpoint): Inherit from breakpoint.
7107 <~watchpoint>: New.
7108 <base>: Remove.
7109 (struct tracepoint): Inherit from breakpoint.
7110 <base>: Remove.
7111 * breakpoint.c (longjmp_breakpoint_ops): Remove.
7112 (struct longjmp_breakpoint): Inherit from breakpoint.
7113 <~longjmp_breakpoint>: New.
7114 <base>: Remove.
7115 (new_breakpoint_from_type): Remove casts.
7116 (watchpoint_in_thread_scope): Remove reference to base field.
7117 (watchpoint_del_at_next_stop): Likewise.
7118 (update_watchpoint): Likewise.
7119 (watchpoint_check): Likewise.
7120 (bpstat_check_watchpoint): Likewise.
7121 (set_longjmp_breakpoint): Likewise.
7122 (struct fork_catchpoint): Inherit from breakpoint.
7123 <base>: Remove.
7124 (struct solib_catchpoint): Inherit from breakpoint.
7125 <~solib_catchpoint>: New.
7126 <base>: Remove.
7127 (dtor_catch_solib): Change to ...
7128 (solib_catchpoint::~solib_catchpoint): ... this.
7129 (breakpoint_hit_catch_solib): Remove reference to base field.
7130 (add_solib_catchpoint): Likewise.
7131 (create_fork_vfork_event_catchpoint): Likewise.
7132 (struct exec_catchpoint): Inherit from breakpoint.
7133 <~exec_catchpoint>: New.
7134 <base>: Remove.
7135 (dtor_catch_exec): Change to ...
7136 (exec_catchpoint::~exec_catchpoint): ... this.
7137 (dtor_watchpoint): Change to ...
7138 (watchpoint::~watchpoint): ... this.
7139 (watch_command_1): Remove reference to base field.
7140 (catch_exec_command_1): Likewise.
7141 (base_breakpoint_dtor): Change to ...
7142 (breakpoint::~breakpoint): ... this.
7143 (base_breakpoint_ops): Remove dtor field value.
7144 (longjmp_bkpt_dtor): Change to ...
7145 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
7146 (strace_marker_create_breakpoints_sal): Remove reference to base
7147 field.
7148 (delete_breakpoint): Don't manually call breakpoint destructor.
7149 (create_tracepoint_from_upload): Remove reference to base field.
7150 (trace_pass_set_count): Likewise.
7151 (initialize_breakpoint_ops): Don't initialize
7152 momentary_breakpoint_ops, don't set dtors.
7153 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
7154 <~ada_catchpoint>: New.
7155 <base>: Remove.
7156 (create_excep_cond_exprs): Remove reference to base field.
7157 (dtor_exception): Change to ...
7158 (ada_catchpoint::~ada_catchpoint): ... this.
7159 (dtor_catch_exception): Remove.
7160 (dtor_catch_exception_unhandled): Remove.
7161 (dtor_catch_assert): Remove.
7162 (create_ada_exception_catchpoint): Remove reference to base
7163 field.
7164 (initialize_ada_catchpoint_ops): Don't set dtors.
7165 * break-catch-sig.c (struct signal_catchpoint): Inherit from
7166 breakpoint.
7167 <~signal_catchpoint>: New.
7168 <base>: Remove.
7169 (signal_catchpoint_dtor): Change to ...
7170 (signal_catchpoint::~signal_catchpoint): ... this.
7171 (create_signal_catchpoint): Remove reference to base field.
7172 (initialize_signal_catchpoint_ops): Don't set dtor.
7173 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
7174 from breakpoint.
7175 <~syscall_catchpoint>: New.
7176 <base>: Remove.
7177 (dtor_catch_syscall): Change to ...
7178 (syscall_catchpoint::~syscall_catchpoint): ... this.
7179 (create_syscall_event_catchpoint): Remove reference to base
7180 field.
7181 (initialize_syscall_catchpoint_ops): Don't set dtor.
7182 * break-catch-throw.c (struct exception_catchpoint): Inherit
7183 from breakpoint.
7184 <~exception_catchpoint>: New.
7185 <base>: Remove.
7186 (dtor_exception_catchpoint): Change to ...
7187 (exception_catchpoint::~exception_catchpoint): ... this.
7188 (handle_gnu_v3_exceptions): Remove reference to base field.
7189 (initialize_throw_catchpoint_ops): Don't set dtor.
7190 * ctf.c (ctf_get_traceframe_address): Remove reference to base
7191 field.
7192 * remote.c (remote_get_tracepoint_status): Likewise.
7193 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
7194 * tracefile.c (tracefile_fetch_registers): Likewise.
7195 * tracepoint.c (actions_command): Likewise.
7196 (validate_actionline): Likewise.
7197 (tfind_1): Likewise.
7198 (get_traceframe_location): Likewise.
7199 (find_matching_tracepoint_location): Likewise.
7200 (parse_tracepoint_status): Likewise.
7201 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
7202
3b0871f4
SM
72032017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
7204
7205 * breakpoint.c (struct longjmp_breakpoint): New struct.
7206 (is_tracepoint_type): Change return type to bool.
7207 (is_longjmp_type): New function.
7208 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
7209 (set_raw_breakpoint_without_location): Use
7210 new_breakpoint_from_type.
7211 (set_raw_breakpoint): Likewise.
7212
a5e364af
SM
72132017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
7214
7215 * breakpoint.c (new_breakpoint_from_type): New function.
7216 (create_breakpoint_sal): Use new_breakpoint_from_type and
7217 unique_ptr.
7218 (create_breakpoint): Likewise.
7219
ae3b3f34
SM
72202017-05-31 Simon Marchi <simon.marchi@ericsson.com>
7221
7222 * memattr.c (mem_info_command): Rename to ...
7223 (info_mem_command): ... this.
7224 (mem_enable_command): Rename to ...
7225 (enable_mem_command): ... this.
7226 (mem_disable_command): Rename to ...
7227 (disable_mem_command): ... this.
7228 (mem_delete_command): Rename to ...
7229 (delete_mem_command): ... this.
7230 (_initialize_mem): Adjust function names.
7231
13ace077
MM
72322017-05-31 Markus Metzger <markus.t.metzger@intel.com>
7233
7234 * btrace.c (handle_pt_insn_events): New.
7235 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
7236 STATUS. Split into this and ...
7237 (handle_pt_insn_event_flags): ... this.
7238
c56ccc05
MM
72392017-05-31 Markus Metzger <markus.t.metzger@intel.com>
7240
7241 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
7242 and struct pt_insn.resynced.
7243 * configure: Regenerated.
7244 * config.in: Regenerated.
7245
08c3f6d2
TW
72462017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7247
7248 * btrace.c (ftrace_find_call_by_number): New function.
7249 (ftrace_new_function): Store objects, not pointers.
7250 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
7251 ftrace_new_gap, ftrace_update_function,
7252 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
7253 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
7254 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
7255 btrace_ends_with_single_insn, btrace_call_get): Account for
7256 btrace_thread_info::functions now storing objects.
7257 * btrace.h (struct btrace_thread_info): Add constructor.
7258 (struct btrace_thread_info) <functions>: Make std::vector.
7259 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
7260 Initialize with default values.
7261 * record-btrace.c (record_btrace_frame_sniffer): Account for
7262 btrace_thread_info::functions now storing objects.
7263
8ffd39f2
TW
72642017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7265
7266 * btrace.c: Remove typedef bfun_s.
7267 (ftrace_new_gap): Directly add gaps to the list of gaps.
7268 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
7269 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
7270 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
7271 instead of gdb VEC.
7272
4aeb0dfc
TW
72732017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7274
7275 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
7276 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
7277 with btrace_thread_info::next_segment and
7278 btrace_thread_info::prev_segment.
7279 * btrace.h: Remove struct btrace_func_link.
7280 (struct btrace_function): Replace pair of function segment pointers
7281 with pair of indices.
7282 * python/py-record-btrace.c (btpy_call_prev_sibling,
7283 btpy_call_next_sibling): Replace references to
7284 btrace_thread_info::segment with btrace_thread_info::next_segment and
7285 btrace_thread_info::prev_segment.
7286 * record-btrace.c (record_btrace_frame_this_id): Use
7287 btrace_find_call_by_number.
7288
eb8f2b9c
TW
72892017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7290
7291 * btrace.c (ftrace_new_function, ftrace_fixup_level,
7292 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
7293 btrace_insn_next, btrace_insn_prev): Remove references to
7294 btrace_thread_info::flow.
7295 * btrace.h (struct btrace_function): Remove FLOW.
7296
42bfe59e
TW
72972017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7298
7299 * btrace.c (ftrace_find_call_by_number): New function.
7300 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
7301 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
7302 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
7303 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
7304 index.
7305 * btrace.h (struct btrace_function): Turn UP into an index.
7306 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
7307 as an index.
7308 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
7309 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
7310 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
7311
b54b03bd
TW
73122017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7313
7314 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
7315 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
7316 ftrace_update_function, ftrace_compute_global_level_offset,
7317 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
7318 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
7319 btrace_insn_end, btrace_is_empty): Remove references to
7320 btrace_thread_info::begin and btrace_thread_info::end.
7321 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
7322 (struct btrace_thread_info) <functions>: Adjust comment.
7323 * record-btrace.c (record_btrace_start_replaying): Remove reference to
7324 btrace_thread_info::begin.
7325
8286623c
TW
73262017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7327
7328 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
7329 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
7330 ftrace_update_function): Remove arguments that implicitly were always
7331 BTINFO->END.
7332 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
7333 Don't pass BTINFO->END.
7334
a0f1b963
TW
73352017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7336
7337 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
7338 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
7339 btrace_find_insn_by_number): Replace function segment pointer with
7340 index.
7341 (btrace_insn_cmp): Simplify.
7342 * btrace.h: (struct btrace_insn_iterator) Rename index to
7343 insn_index. Replace function segment pointer with index into function
7344 segment vector.
7345 * record-btrace.c (record_btrace_call_history): Replace function
7346 segment pointer use with index.
7347 (record_btrace_frame_sniffer): Retrieve function call segment through
7348 vector.
7349 (record_btrace_set_replay): Remove defunc't safety check.
7350
f158f208
TW
73512017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7352
7353 * btrace.c (btrace_ends_with_single_insn): New function.
7354 (btrace_call_get, btrace_call_number, btrace_call_begin,
7355 btrace_call_end, btrace_call_next, btrace_call_prev,
7356 btrace_find_call_by_number): Use index into call segment vector
7357 instead of pointer.
7358 (btrace_call_cmp): Simplify.
7359 * btrace.h (struct btrace_call_iterator): Replace function call segment
7360 pointer with index into vector.
7361 * record-btrace.c (record_btrace_call_history): Use index instead of
7362 pointer.
7363
521103fd
TW
73642017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7365
7366 * btrace.c (btrace_insn_begin, btrace_insn_end,
7367 btrace_find_insn_by_number): Add btinfo to iterator.
7368 * btrace.h (struct btrace_insn_iterator): Add btinfo.
7369
17b89b34
TW
73702017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7371
7372 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
7373 and save pointers directly.
7374 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
7375 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
7376 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
7377 changed signature of functions.
7378 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
7379 (btrace_fetch): Remove code that adds btrace_function pointers to
7380 vector of btrace_functions.
7381 (btrace_clear): Simplify freeing vector of btrace_functions.
7382
2b51eddc
TW
73832017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
7384
7385 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
7386 Replace VEC_* with std::vector functions.
7387 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
7388 (struct btrace_thread_info)<functions>: Change type to std::vector.
7389
db6be0d5
SM
73902017-05-30 Simon Marchi <simon.marchi@ericsson.com>
7391
7392 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
7393 "Removed targets and native configurations" up. Merge duplicate
7394 "New commands" sub-sections. Add "New options" sub-sections.
7395
b057297a
AH
73962017-05-26 Alan Hayward <alan.hayward@arm.com>
7397
7398 * defs.h (copy_integer_to_size): New declaration.
7399 * findvar.c (copy_integer_to_size): New function.
7400 (do_cint_test): New selftest function.
7401 (copy_integer_to_size_test): Likewise.
7402 (_initialize_findvar): Likewise.
7403 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
7404 (mips_fbsd_collect_reg): Use raw_collect_integer.
7405 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
7406 (mips64_fill_gregset): Use raw_collect_integer
7407 (mips64_fill_fpregset): Use raw_supply_integer.
7408 * regcache.c (regcache::raw_supply_integer): New function.
7409 (regcache::raw_collect_integer): Likewise.
7410 * regcache.h: (regcache::raw_supply_integer): New declaration.
7411 (regcache::raw_collect_integer): Likewise.
7412
b77b02a5
YQ
74132017-05-24 Yao Qi <yao.qi@linaro.org>
7414
7415 * Makefile.in (SFILES): Add gdbarch-selftests.c.
7416 (COMMON_OBS): Add gdbarch-selftests.o.
7417 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
7418 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
7419 * gdbarch-selftests.c: New file.
7420 * regcache.h (regcache) <~regcache>: Mark it virtual if
7421 GDB_SELF_TEST.
7422 <raw_write>: Likewise.
7423
e521e87e
YQ
74242017-05-24 Yao Qi <yao.qi@linaro.org>
7425
7426 * regcache.c (current_regcache): Change it to
7427 regcache::current_regcache.
7428 (regcache_observer_target_changed): Update.
7429 (regcache_thread_ptid_changed): Make it a regcache static
7430 method.
7431 (regcache_thread_ptid_changed): Update.
7432 (class regcache_access): New.
7433 (current_regcache_test): Update.
7434 (_initialize_regcache): Update.
7435 * regcache.h: Include forward_list.
7436 (regcache): Declare regcache_thread_ptid_changed and declare
7437 registers_changed_ptid as friend.
7438
d8e07dda
YQ
74392017-05-24 Yao Qi <yao.qi@linaro.org>
7440
7441 * i387-tdep.c (i387_register_to_value): Use register_size
7442 instead of TYPE_LENGTH.
7443 * m68k-tdep.c (m68k_register_to_value): Likewise.
7444
8c8f9122
YQ
74452017-05-24 Yao Qi <yao.qi@linaro.org>
7446
7447 * i387-tdep.c (i387_convert_register_p): Return false if type
7448 code isn't TYPE_CODE_FLT.
7449
68fce50f
YQ
74502017-05-24 Yao Qi <yao.qi@linaro.org>
7451
7452 * alpha-tdep.c (alpha_convert_register_p): Return true if type
7453 length is 4.
7454 (alpha_register_to_value): Remove type length check.
7455 (alpha_value_to_register): Likewise.
7456
88954b49
YQ
74572017-05-24 Yao Qi <yao.qi@linaro.org>
7458
7459 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
7460 TYPE_CODE_FLT.
7461
e3ec9b69
YQ
74622017-05-24 Yao Qi <yao.qi@linaro.org>
7463
7464 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
7465 TYPE_CODE_FLT or not.
7466
cdd238da
YQ
74672017-05-24 Yao Qi <yao.qi@linaro.org>
7468
7469 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
7470 * avr-tdep.c (avr_gdbarch_init): Likewise.
7471 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
7472 * cris-tdep.c (cris_gdbarch_init): Likewise.
7473 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
7474 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
7475 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
7476 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
7477 * mep-tdep.c (mep_gdbarch_init): Likewise.
7478 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
7479 * mips-tdep.c (mips_gdbarch_init): Likewise.
7480 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
7481 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
7482 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
7483 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
7484 * v850-tdep.c (v850_gdbarch_init): Likewise.
7485
7a3929c4
YQ
74862017-05-24 Yao Qi <yao.qi@linaro.org>
7487
7488 * selftest-arch.c (tests_with_arch): Call registers_changed
7489 and reinit_frame_cache.
7490 * selftest.c (run_self_tests): Likewise.
7491
f4985dba
YQ
74922017-05-24 Yao Qi <yao.qi@linaro.org>
7493
7494 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
7495 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
7496
ab20fa4a
YQ
74972017-05-24 Yao Qi <yao.qi@linaro.org>
7498
7499 * rl78-tdep.c (rl78_gdbarch_init): Don't call
7500 set_gdbarch_print_insn.
7501
f532ab94
YQ
75022017-05-24 Yao Qi <yao.qi@linaro.org>
7503
7504 * h8300-tdep.c (h8300_gdbarch_init): Don't call
7505 set_gdbarch_print_insn.
7506
39503f82
YQ
75072017-05-24 Yao Qi <yao.qi@linaro.org>
7508
7509 * alpha-tdep.c (alpha_gdbarch_init): Don't call
7510 set_gdbarch_print_insn.
7511 * arc-tdep.c (arc_gdbarch_init): Likewise.
7512 * arch-utils.c: include dis-asm.h.
7513 (default_print_insn): New function.
7514 * arch-utils.h (default_print_insn): Declare.
7515 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
7516 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
7517 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
7518 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
7519 * frv-tdep.c (frv_gdbarch_init): Likewise.
7520 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
7521 * gdbarch.sh (print_insn): Use default_print_insn.
7522 * gdbarch.c: Regenerated.
7523 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
7524 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
7525 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
7526 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
7527 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
7528 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
7529 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
7530 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
7531 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
7532 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
7533 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
7534 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
7535 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
7536 * mt-tdep.c (mt_gdbarch_init): Likewise.
7537 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
7538 * nios2-tdep.c (nios2_print_insn): Remove.
7539 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
7540 * rx-tdep.c (rx_gdbarch_init): Likewise.
7541 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
7542 * score-tdep.c (score_print_insn): Remove.
7543 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
7544 * sh-tdep.c (sh_gdbarch_init): Likewise.
7545 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
7546 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
7547 * tic6x-tdep.c (tic6x_print_insn): Remove.
7548 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
7549 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
7550 * v850-tdep.c (v850_gdbarch_init): Likewise.
7551 * vax-tdep.c (vax_gdbarch_init): Likewise.
7552 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
7553 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
7554
f7241d4f
JB
75552017-05-23 John Baldwin <jhb@FreeBSD.org>
7556
7557 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
7558 (MIPS_FP0_REGNUM): Remove.
7559 (MIPS_FSR_REGNUM): Remove.
7560 (mips_fbsd_supply_fpregs): Use mips_regnum.
7561 (mips_fbsd_supply_gregs): Likewise.
7562 (mips_fbsd_collect_fpregs): Likewise.
7563 (mips_fbsd_collect_gregs): Likewise.
7564
d489d81d
JB
75652017-05-23 John Baldwin <jhb@FreeBSD.org>
7566
7567 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
7568 (getpfpregs_supplies): New function.
7569 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
7570 getfpregs_supplies.
7571 (mips_fbsd_store_inferior_registers): Likewise.
7572
e11b3cdc
PA
75732017-05-22 Pedro Alves <palves@redhat.com>
7574
7575 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
7576 maintainer.
7577
0f068fb5
AH
75782017-05-22 Alan Hayward <alan.hayward@arm.com>
7579
7580 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
7581 (store_register): Likewise.
7582 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
7583 (get_decimal_float_return_value): Likewise.
7584 (do_ppc_sysv_return_value): Likewise.
7585 (ppc64_sysv_abi_push_integer): Likewise.
7586 (ppc64_sysv_abi_push_freg): Likewise.
7587 (ppc64_sysv_abi_return_value_base): Likewise.
7588 (ppc64_sysv_abi_return_value): Likewise.
7589 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
7590 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
7591 * rs6000-nat.c: Likewise.
7592 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
7593 (rs6000_value_to_register): Likewise.
7594 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
7595
e6cf65f2
TT
75962017-05-21 Tom Tromey <tom@tromey.com>
7597
7598 PR rust/21466:
7599 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
7600 arrays as "[T]", not "[T; ]".
7601
43cc5389
TT
76022017-05-19 Tom Tromey <tom@tromey.com>
7603
7604 PR rust/21484:
7605 * rust-lang.c (exp_descriptor_rust): New function.
7606 (rust_language_defn): Use it.
7607 * p-lang.c (pascal_language_defn): Update.
7608 * opencl-lang.c (opencl_language_defn): Update.
7609 * objc-lang.c (objc_language_defn): Update.
7610 * m2-lang.c (m2_language_defn): Update.
7611 * language.h (struct language_defn)
7612 <la_watch_location_expression>: New member.
7613 * language.c (unknown_language_defn, auto_language_defn)
7614 (local_language_defn): Update.
7615 * go-lang.c (go_language_defn): Update.
7616 * f-lang.c (f_language_defn): Update.
7617 * d-lang.c (d_language_defn): Update.
7618 * c-lang.h (c_watch_location_expression): Declare.
7619 * c-lang.c (c_watch_location_expression): New function.
7620 (c_language_defn, cplus_language_defn, asm_language_defn)
7621 (minimal_language_defn): Use it.
7622 * breakpoint.c (watch_command_1): Call
7623 la_watch_location_expression.
7624 * ada-lang.c (ada_language_defn): Update.
7625
7a6e7fcc
RO
76262017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7627
6e7e1744
RO
7628 PR tui/21482
7629 * gdb_curses.h (NOMACROS): Define.
7630 (NCURSES_NOMACROS): Define.
7631
76322017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7633
7634 PR tui/21482
7a6e7fcc
RO
7635 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
7636 arg to char *.
7637 * tui/tui-wingeneral.c (box_win): Likewise.
7638 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
7639 (tui_show_source_line): Likewise.
7640 (tui_show_exec_info_content): Likewise.
7641
1933fd8e
VM
76422017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
7643
7644 * sparc-tdep.c (sparc_structure_return_p)
7645 (sparc_arg_on_registers_p): New functions.
7646 (sparc32_store_arguments): Use them.
7647 * sparc64-tdep.c (sparc64_16_byte_align_p)
7648 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
7649 Handle TYPE_CODE_ARRAY.
7650
21873064
YQ
76512017-05-17 Yao Qi <yao.qi@linaro.org>
7652
7653 * cli/cli-decode.c (add_alias_cmd): New function.
7654 * command.h (add_alias_cmd): Declare.
7655 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
7656 instead call add_alias_cmd.
7657
2b351b19
PA
76582017-05-17 Pedro Alves <palves@redhat.com>
7659
7660 * Makefile.in (nat_extra_makefile_frag): Rename to ...
7661 (nat_makefile_frag): ... this. All references updated.
7662 * configure.ac: Likewise.
7663 * configure.nat: Likewise. Enhance comments.
7664 * configure: Regenerate.
7665
5f2ad7a3
RO
76662017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
7667
7668 * procfs.c (procfs_create_inferior): Change prototype to match
7669 definition.
7670
adf3dde5
EZ
76712017-05-13 Eli Zaretskii <eliz@gnu.org>
7672
7673 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
7674 C++ compiler warning.
7675
6830f270
TT
76762017-05-12 Tom Tromey <tom@tromey.com>
7677
7678 PR rust/21483:
7679 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
7680 recurse, just call value_struct_elt directly.
7681
68f2f2e3
TT
76822017-05-12 Tom Tromey <tom@tromey.com>
7683
7684 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
7685 OP_RUST_ARRAY>: Fix.
7686
256afbc2
TT
76872017-05-12 Tom Tromey <tom@tromey.com>
7688
7689 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
7690
94bb8dfe
YQ
76912017-05-09 Yao Qi <yao.qi@linaro.org>
7692
7693 * regcache.c: Include <forward_list>.
7694 (struct regcache_list): Remove.
7695 (current_regcache): Update.
7696 (get_thread_arch_aspace_regcache): Update for std::forward_list.
7697 (regcache_thread_ptid_changed): Likewise.
7698 (registers_changed_ptid): Likewise.
7699 (current_regcache_size): Likewise.
7700
8248946c
YQ
77012017-05-09 Yao Qi <yao.qi@linaro.org>
7702
7703 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
7704 (current_regcache_size): New function.
7705 (current_regcache_test): New function.
7706 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
7707
313c5961
AH
77082017-05-08 Alan Hayward <alan.hayward@arm.com>
7709
7710 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
7711 (print_gp_register_row): Use get_frame_register_value.
7712
27bfc1d1
AH
77132017-05-08 Alan Hayward <alan.hayward@arm.com>
7714
7715 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
7716 (mips_supply_fpregset): Likewise.
7717 (mips64_supply_gregset): Likewise.
7718
146e6c5c
AH
77192017-05-08 Alan Hayward <alan.hayward@arm.com>
7720
7721 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
7722 regcache->raw_supply_zeroed.
7723
e50f25ec
SDJ
77242017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
7725
7726 * configure.nat: Rearrange 'case' statements to match
7727 host before cpu.
7728
21ea5acd
SDJ
77292017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
7730
7731 * Makefile.in: Remove "@host_makefile_frag@". Add variables
7732 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
7733 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
7734 "@nat_extra_makefile_frag@".
7735 (Makefile): Remove dependency on "@frags@".
7736 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
7737 (data-directory/Makefile): Likewise.
7738 * config/aarch64/linux.mh: Deleted; moved contents to
7739 "gdb/configure.nat".
7740 * config/alpha/alpha-linux.mh: Likewise.
7741 * config/alpha/nbsd.mh: Likewise.
7742 * config/arm/linux.mh: Likewise.
7743 * config/arm/nbsdelf.mh: Likewise.
7744 * config/i386/cygwin.mh: Likewise.
7745 * config/i386/cygwin64.mh: Likewise.
7746 * config/i386/darwin.mh: Likewise.
7747 * config/i386/fbsd.mh: Likewise.
7748 * config/i386/fbsd64.mh: Likewise.
7749 * config/i386/go32.mh: Likewise.
7750 * config/i386/i386gnu.mh: Likewise.
7751 * config/i386/i386sol2.mh: Likewise.
7752 * config/i386/linux.mh: Likewise.
7753 * config/i386/linux64.mh: Likewise.
7754 * config/i386/mingw.mh: Likewise.
7755 * config/i386/mingw64.mh: Likewise.
7756 * config/i386/nbsd64.mh: Likewise.
7757 * config/i386/nbsdelf.mh: Likewise.
7758 * config/i386/nto.mh: Likewise.
7759 * config/i386/obsd.mh: Likewise.
7760 * config/i386/obsd64.mh: Likewise.
7761 * config/i386/sol2-64.mh: Likewise.
7762 * config/ia64/linux.mh: Likewise.
7763 * config/m32r/linux.mh: Likewise.
7764 * config/m68k/linux.mh: Likewise.
7765 * config/m68k/nbsdelf.mh: Likewise.
7766 * config/m68k/obsd.mh: Likewise.
7767 * config/m88k/obsd.mh: Likewise.
7768 * config/mips/fbsd.mh: Likewise.
7769 * config/mips/linux.mh: Likewise.
7770 * config/mips/nbsd.mh: Likewise.
7771 * config/mips/obsd64.mh: Likewise.
7772 * config/pa/linux.mh: Likewise.
7773 * config/pa/nbsd.mh: Likewise.
7774 * config/pa/obsd.mh: Likewise.
7775 * config/powerpc/aix.mh: Likewise.
7776 * config/powerpc/fbsd.mh: Likewise.
7777 * config/powerpc/linux.mh: Likewise.
7778 * config/powerpc/nbsd.mh: Likewise.
7779 * config/powerpc/obsd.mh: Likewise.
7780 * config/powerpc/ppc64-linux.mh: Likewise.
7781 * config/powerpc/spu-linux.mh: Likewise.
7782 * config/s390/linux.mh: Likewise.
7783 * config/sh/nbsd.mh: Likewise.
7784 * config/sparc/fbsd.mh: Likewise.
7785 * config/sparc/linux.mh: Likewise.
7786 * config/sparc/linux64.mh: Likewise.
7787 * config/sparc/nbsd64.mh: Likewise.
7788 * config/sparc/nbsdelf.mh: Likewise.
7789 * config/sparc/obsd64.mh: Likewise.
7790 * config/sparc/sol2.mh: Likewise.
7791 * config/tilegx/linux.mh: Likewise.
7792 * config/vax/nbsdelf.mh: Likewise.
7793 * config/vax/obsd.mh: Likewise.
7794 * config/xtensa/linux.mh: Likewise.
7795 * config/i386/i386gnu.mn: New file, with excerpts from
7796 "config/i386/i386gnu.mh".
7797 * configure: Regenerate.
7798 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
7799 *.mh files under "gdb/config".
7800 * configure.nat: New file, with contents from the
7801 "gdb/config/*/*.mh" files.
7802
7ed1acaf
TW
78032017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
7804
7805 * btrace.c (btrace_clear): Free insn vector.
7806
e13cb306
PA
78072017-05-05 Pedro Alves <palves@redhat.com>
7808
7809 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
7810 * configure: Regenerate.
7811
5ed8105e
PA
78122017-05-04 Pedro Alves <palves@redhat.com>
7813
7814 * Makefile.in (SFILES): Add progspace-and-thread.c.
7815 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
7816 (COMMON_OBS): Add progspace-and-thread.o.
7817 * breakpoint.c: Include "progspace-and-thread.h".
7818 (update_inserted_breakpoint_locations)
7819 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
7820 Use scoped_restore_current_pspace_and_thread.
7821 (create_std_terminate_master_breakpoint): Use
7822 scoped_restore_current_program_space.
7823 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
7824 (print_breakpoint_location): Use
7825 scoped_restore_current_program_space.
7826 (bp_loc_is_permanent): Use
7827 scoped_restore_current_pspace_and_thread.
7828 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
7829 (download_tracepoint_locations): Use
7830 scoped_restore_current_pspace_and_thread.
7831 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
7832 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
7833 (enum step_over_calls_kind): Moved from inferior.h.
7834 (class scoped_restore_current_thread): New class.
7835 * gdbthread.h (make_cleanup_restore_current_thread): Delete
7836 declaration.
7837 (scoped_restore_current_thread): New class.
7838 * infcmd.c: Include "common/gdb_optional.h".
7839 (continue_1, proceed_after_attach): Use
7840 scoped_restore_current_thread.
7841 (notice_new_inferior): Use scoped_restore_current_thread.
7842 * inferior.c: Include "progspace-and-thread.h".
7843 (restore_inferior, save_current_inferior): Delete.
7844 (add_inferior_command, clone_inferior_command): Use
7845 scoped_restore_current_pspace_and_thread.
7846 * inferior.h (scoped_restore_current_inferior): New class.
7847 * infrun.c: Include "progspace-and-thread.h" and
7848 "common/gdb_optional.h".
7849 (follow_fork_inferior): Use
7850 scoped_restore_current_pspace_and_thread.
7851 (scoped_restore_exited_inferior): New class.
7852 (handle_vfork_child_exec_or_exit): Use
7853 scoped_restore_exited_inferior,
7854 scoped_restore_current_pspace_and_thread,
7855 scoped_restore_current_thread and scoped_restore.
7856 (fetch_inferior_event): Use scoped_restore_current_thread.
7857 * linespec.c (decode_line_full, decode_line_1): Use
7858 scoped_restore_current_program_space.
7859 * mi/mi-main.c: Include "progspace-and-thread.h".
7860 (exec_continue): Use scoped_restore_current_thread.
7861 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
7862 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
7863 * proc-service.c (ps_pglobal_lookup): Use
7864 scoped_restore_current_program_space.
7865 * progspace-and-thread.c: New file.
7866 * progspace-and-thread.h: New file.
7867 * progspace.c (release_program_space, clone_program_space): Use
7868 scoped_restore_current_program_space.
7869 (restore_program_space, save_current_program_space)
7870 (save_current_space_and_thread): Delete.
7871 (switch_to_program_space_and_thread): Moved to
7872 progspace-and-thread.c.
7873 * progspace.h (save_current_program_space)
7874 (save_current_space_and_thread): Delete declarations.
7875 (scoped_restore_current_program_space): New class.
7876 * remote.c (remote_btrace_maybe_reopen): Use
7877 scoped_restore_current_thread.
7878 * symtab.c: Include "progspace-and-thread.h".
7879 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
7880 * thread.c (print_thread_info_1): Use
7881 scoped_restore_current_thread.
7882 (struct current_thread_cleanup): Delete.
7883 (do_restore_current_thread_cleanup)
7884 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
7885 (scoped_restore_current_thread::~scoped_restore_current_thread):
7886 ... this new dtor.
7887 (make_cleanup_restore_current_thread): Rename/convert to ...
7888 (scoped_restore_current_thread::scoped_restore_current_thread):
7889 ... this new ctor.
7890 (thread_apply_all_command): Use scoped_restore_current_thread.
7891 (thread_apply_command): Use scoped_restore_current_thread.
7892 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
7893 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
7894
f6223dbb
PA
78952017-05-04 Pedro Alves <palves@redhat.com>
7896
7897 * thread.c (make_cleanup_restore_current_thread): Move
7898 find_thread_ptid call before the is_stopped call. Assert that the
7899 thread is found. Replace is_stopped call by checking the thread's
7900 state directly. Remove unnecessary NULL-thread check.
7901
3c3ae77e
PA
79022017-05-04 Pedro Alves <palves@redhat.com>
7903
7904 * corelow.c (thread_section_name): New class.
7905 (get_core_register_section, get_core_siginfo): Use it.
7906
45eba0ab
AA
79072017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
7908
7909 * corelow.c (sniff_core_bfd): Remove extra semicolon.
7910 (get_core_register_section): Remove xfree of NULL pointer.
7911
f81fdd35
AH
79122017-05-03 Alan Hayward <alan.hayward@arm.com>
7913
7914 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
7915 * regcache.c (regcache::raw_supply_zeroed): New function.
7916 * regcache.h (regcache::raw_supply_zeroed): New declaration.
7917
35837774
SM
79182017-05-03 Simon Marchi <simon.marchi@ericsson.com>
7919
7920 * gdbarch.sh: Remove commented out definition of
7921 TARGET_CHAR_BIT.
7922 * gdbarch.h: Re-generate.
7923
c94fee56
SDJ
79242017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
7925
7926 * configure: Regenerate.
7927
d17f7b36
SM
79282017-05-02 Simon Marchi <simon.marchi@ericsson.com>
7929
7930 * solib-target.c (solib_target_relocate_section_addresses):
7931 Remove num_section_bases, num_bases, segment_bases variables.
7932
b560ebd6
SM
79332017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7934
7935 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
7936
f2f46dfc
SM
79372017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7938
7939 * solib-target.c: Include <vector>
7940 (struct lm_info_target) <~lm_info_target>: Remove.
7941 <segment_bases, section_bases>: Change type to
7942 std::vector<CORE_ADDR>.
7943 (library_list_start_segment, library_list_start_section,
7944 library_list_end_library,
7945 solib_target_relocate_section_addresses): Adjust.
7946
a0ff9e1a
SM
79472017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7948
7949 * gdbarch.sh (software_single_step): Change return type to
7950 std::vector<CORE_ADDR>.
7951 * gdbarch.c, gdbarch.h: Re-generate.
7952 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
7953 Adjust.
7954 (arm_deal_with_atomic_sequence_raw): Adjust.
7955 (thumb_get_next_pcs_raw): Adjust.
7956 (arm_get_next_pcs_raw): Adjust.
7957 (arm_get_next_pcs): Adjust.
7958 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
7959 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
7960 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
7961 (alpha_software_single_step): Adjust.
7962 * alpha-tdep.h (alpha_software_single_step): Adjust.
7963 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
7964 * arm-tdep.c (arm_software_single_step): Adjust.
7965 (arm_breakpoint_kind_from_current_state): Adjust.
7966 * arm-tdep.h (arm_software_single_step): Adjust.
7967 * breakpoint.c (insert_single_step_breakpoint): Adjust.
7968 * cris-tdep.c (cris_software_single_step): Adjust.
7969 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
7970 (micromips_deal_with_atomic_sequence): Adjust.
7971 (deal_with_atomic_sequence): Adjust.
7972 (mips_software_single_step): Adjust.
7973 * mips-tdep.h (mips_software_single_step): Adjust.
7974 * moxie-tdep.c (moxie_software_single_step): Adjust.
7975 * nios2-tdep.c (nios2_software_single_step): Adjust.
7976 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
7977 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
7978 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
7979 * s390-linux-tdep.c (s390_software_single_step): Adjust.
7980 * sparc-tdep.c (sparc_software_single_step): Adjust.
7981 * spu-tdep.c (spu_software_single_step): Adjust.
7982 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
7983
ea480a30
SM
79842017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
7985
7986 * gdbarch.sh: Use semi-colon as field separator instead of colon.
7987 * gdbarch.h: Re-generate.
7988
d050f7d7
TW
79892017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
7990
7991 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
7992 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
7993 * python/py-instruction.c, python/py-instruction.h: New file.
7994 * python/py-record.c: Add py-instruction.h include.
7995 (gdbpy_initialize_record): Make gdb.Instruction a super class of
7996 gdb.RecordInstruction.
7997 * python/python-internal.h: Add gdbpy_initialize_instruction
7998 declaration.
7999 * python/python.c (do_start_initialization): Add
8000 gdbpy_initialize_instruction.
8001
14f819c8
TW
80022017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8003
8004 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
8005 Remove.
8006 (btrace_func_from_recpy_func): New function.
8007 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
8008 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
8009 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
8010 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
8011 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
8012 Also, use new helper functions.
8013 (btpy_list_item): Use new helper functions.
8014 (recpy_bt_function_call_history): Use new type name.
8015 (btpy_call_getset): Remove.
8016 (gdbpy_initialize_btrace): Remove code to initialize
8017 gdb.BtraceFunctionCall.
8018 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
8019 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
8020 recpy_bt_func_prev, recpy_bt_func_next): New export.
8021 * python/py-record.c (recpy_func_type): New static object.
8022 (recpy_func_new, recpy_func_level, recpy_func_symbol,
8023 recpy_func_instructions, recpy_func_up, recpy_func_prev,
8024 recpy_func_next): New function.
8025 (recpy_element_hash, recpy_element_richcompare): Updated comment.
8026 (recpy_func_getset): New static object.
8027 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
8028 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
8029
0ed5da75
TW
80302017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8031
8032 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
8033 (btpy_object, btpy_insn_type, btpy_new): Remove.
8034 (btpy_list_object): Use gdb.RecordInstruction type instead of
8035 gdb.BtraceInstruction type.
8036 (btrace_insn_from_recpy_insn): New function.
8037 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
8038 btpy_new.
8039 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
8040 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
8041 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
8042 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
8043 instead of btpy_object.
8044 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
8045 btpy_insn_data, btpy_insn_decode): Rename to ...
8046 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
8047 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
8048 recpy_bt_insn_decode): This. Also, use new helper functions.
8049 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
8050 recpy_insn_type.
8051 (btpy_insn_getset): Remove.
8052 (gdbpy_initialize_btrace): Remove code to initialize
8053 gdb.BtraceInstruction. Use recpy_element_object.
8054 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
8055 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
8056 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
8057 * python/py-record.c (recpy_insn_type): New static object.
8058 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
8059 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
8060 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
8061 New function.
8062 (recpy_insn_getset): New static object.
8063 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
8064 * python/py-record.h (recpy_element_object): New typedef.
8065 (recpy_insn_type, recpy_insn_new): New export.
8066
913aeadd
TW
80672017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8068
8069 * py-record-btrace.c (btpy_insn_new): Removed.
8070 (btpy_insn_or_gap_new): New function.
8071 (btpy_insn_error): Removed.
8072 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
8073 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
8074 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
8075 btpy_insn_or_gap_new instead of btpy_insn_new.
8076 (btpy_insn_getset): Remove btpy_insn_error.
8077 * py-record.c (recpy_gap_type): New static object.
8078 (recpy_gap_object): New typedef.
8079 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
8080 recpy_gap_reason_string): New function.
8081 (recpy_gap_getset): New static object.
8082 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
8083 * py-record.h (recpy_gap_new): New export.
8084
a3be24ad
TW
80852017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8086
8087 * python/py-record.c (recpy_ptid): Remove.
8088 (recpy_record_getset): Remove recpy_ptid.
8089
ae20e79a
TW
80902017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8091
8092 * btrace.c (btrace_fetch): Set inferior_ptid.
8093 * python/py-record-btrace.c: Add "py-record.h" include.
8094 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
8095 recpy_bt_end, recpy_bt_instruction_history,
8096 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
8097 in gdb.Record object instead of current ptid.
8098 * python/py-record.c: Include new "py-record.h" file.
8099 (recpy_record_object): Moved to py-record.h.
8100 * python/py-record.h: New file.
8101
8d0050ea
TW
81022017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
8103
8104 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
8105 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
8106 indentation.
8107
3f380b50
JB
81082017-05-01 Joel Brobecker <brobecker@adacore.com>
8109
8110 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
8111 the past maintainers section.
8112
07495424
YQ
81132017-04-28 Yao Qi <yao.qi@linaro.org>
8114
8115 * infcmd.c (get_return_value): Use regcache ctor, and remove
8116 cleanup.
8117
deb1fa3e
YQ
81182017-04-28 Yao Qi <yao.qi@linaro.org>
8119 Pedro Alves <palves@redhat.com>
8120
8121 * regcache.c (regcache::regcache): New tag dispatch ctor.
8122 (do_cooked_read): Moved above.
8123 (regcache_dup): Use the tag dispatch ctor..
8124 * regcache.h (regcache): Declare ctor, delete copy ctor and
8125 assignment operator, remove friend regcache_dup.
8126
b421c83c
YQ
81272017-04-28 Yao Qi <yao.qi@linaro.org>
8128
8129 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
8130 call method save instead of regcache_cpy.
8131 * regcache.h (struct regcache): Make regcache_dup a friend.
8132
ef79d9a3
YQ
81332017-04-28 Yao Qi <yao.qi@linaro.org>
8134
8135 * regcache.c (struct regcache): Move to regcache.h
8136 (regcache::arch): New method.
8137 (regcache_get_ptid): Update.
8138 (get_regcache_arch): Call arch method.
8139 (get_regcache_aspace): Call method aspace.
8140 (register_buffer): Change it to method.
8141 (regcache_save): Change it to regcache::save.
8142 (regcache_restore): Likewise.
8143 (regcache_cpy_no_passthrough): Remove the declaration.
8144 (regcache_cpy): Call methods restore and cpy_no_passthrough.
8145 (regcache_cpy_no_passthrough): Change it to method
8146 cpy_no_passthrough.
8147 (regcache_register_status): Change it to method
8148 get_register_status.
8149 (regcache_invalidate): Change it to method invalidate.
8150 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
8151 (regcache_raw_update): Change it to method raw_update.
8152 (regcache_raw_read): Likewise.
8153 (regcache_raw_read_signed): Likewise.
8154 (regcache_raw_read_unsigned): Likewise.
8155 (regcache_raw_write_signed): Likewise.
8156 (regcache_raw_write_unsigned): Likewise.
8157 (regcache_cooked_read): Likewise.
8158 (regcache_cooked_read_value): Likewise.
8159 (regcache_cooked_read_signed): Likewise.
8160 (regcache_cooked_read_unsigned): Likewise.
8161 (regcache_cooked_write_signed): Likewise.
8162 (regcache_cooked_write_unsigned): Likewise.
8163 (regcache_raw_set_cached_value): Likewise.
8164 (regcache_raw_write): Likewise.
8165 (regcache_cooked_write): Likewise.
8166 (regcache_xfer_part): Likewise.
8167 (regcache_raw_read_part): Likewise.
8168 (regcache_raw_write_part): Likewise.
8169 (regcache_cooked_read_part): Likewise.
8170 (regcache_cooked_write_part): Likewise.
8171 (regcache_raw_supply): Likewise.
8172 (regcache_raw_collect): Likewise.
8173 (regcache_transfer_regset): Likewise.
8174 (regcache_supply_regset): Likewise.
8175 (regcache_collect_regset): Likewise.
8176 (regcache_debug_print_register): Likewise.
8177 (enum regcache_dump_what): Move it to regcache.h.
8178 (regcache_dump): Change it to method dump.
8179 * regcache.h (enum regcache_dump_what): New.
8180 (class regcache): New.
8181 * target.c (target_fetch_registers): Call method
8182 debug_print_register.
8183 (target_store_registers): Likewise.
8184
f8fdb78e
SM
81852017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8186
8187 * windows-nat.c (struct lm_info_windows): Initialize field.
8188 (windows_make_so): Allocate lm_info_windows with new.
8189 (windows_free_so): Free lm_info_windows with delete.
8190
9ccbfd7b
SM
81912017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8192
8193 * solib-darwin.c (struct lm_info_darwin): Initialize field.
8194 (darwin_current_sos): Allocate lm_info_darwin with new, remove
8195 cleanup.
8196 (darwin_free_so): Free lm_info_darwin with delete.
8197
76e75227
SM
81982017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8199
8200 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
8201 <l_addr_p>: Change type to bool.
8202 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
8203 (svr4_free_so): Free lm_info_svr4 with delete.
8204 (svr4_copy_library_list): Replace memcpy with call to copy
8205 constructor.
8206 (library_list_start_library, svr4_default_sos): Allocate
8207 lm_info_svr4 with new.
8208
51046d9e
SM
82092017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8210
8211 * solib-target.c (struct lm_info_target): Add destructor,
8212 initialize fields.
8213 <name>: Change type to std::string.
8214 (library_list_start_library): Allocate lm_info_target with new.
8215 (solib_target_free_library_list): Free lm_info_target with
8216 delete.
8217 (solib_target_current_sos): Adapt to std::string.
8218 (solib_target_free_so): Free lm_info_target with delete.
8219
4023ae76
SM
82202017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8221
8222 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
8223 fields.
8224 (frv_current_sos): Allocate lm_info_frv with new.
8225 (frv_relocate_main_executable): Free lm_info_frv with delete,
8226 allocate with new.
8227 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
8228
af43057b
SM
82292017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8230
8231 * solib-frv.c (struct lm_info_frv): Fix indentation.
8232
b0911207
SM
82332017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8234
8235 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
8236 map field.
8237 (dsbt_current_sos): Allocate lm_info_dsbt with new.
8238 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
8239 and allocate with new.
8240 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
8241
6c401f72
SM
82422017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8243
8244 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
8245 <filename, member_name>: Change type to std::string.
8246 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
8247 (library_list_start_library): Allocate lm_info_aix with new.
8248 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
8249 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
8250 with copy constructor.
8251
d0e449a1
SM
82522017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8253
8254 * solist.h (struct lm_info): Remove.
8255 (struct lm_info_base): New class.
8256 (struct so_list) <lm_info>: Change type to lm_info_base *.
8257 * nto-tdep.c (struct lm_info): Remove.
8258 (lm_addr): Adjust.
8259 * solib-aix.c (struct lm_info): Rename to ...
8260 (struct lm_info_aix): ... this. Extend lm_info_base.
8261 (lm_info_p): Rename to ...
8262 (lm_info_aix_p): ... this, and adjust.
8263 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
8264 solib_aix_parse_libraries, library_list_start_library,
8265 solib_aix_free_library_list, solib_aix_parse_libraries,
8266 solib_aix_get_library_list,
8267 solib_aix_relocate_section_addresses, solib_aix_free_so,
8268 solib_aix_get_section_offsets,
8269 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
8270 Adjust.
8271 (struct solib_aix_inferior_data) <library_list>: Adjust.
8272 * solib-darwin.c (struct lm_info): Rename to ...
8273 (struct lm_info_darwin): ... this. Extend lm_info_base.
8274 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
8275 * solib-dsbt.c (struct lm_info): Rename to ...
8276 (struct lm_info_dsbt): ... this. Extend lm_info_base.
8277 (struct dsbt_info) <main_executable_lm_info): Adjust.
8278 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
8279 dsbt_relocate_section_addresses): Adjust.
8280 * solib-frv.c (struct lm_info): Rename to ...
8281 (struct lm_info_frv): ... this. Extend lm_info_base.
8282 (main_executable_lm_info): Adjust.
8283 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
8284 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
8285 find_canonical_descriptor_in_load_object,
8286 frv_fdpic_find_canonical_descriptor): Adjust.
8287 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
8288 to lm_info_svr4.
8289 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
8290 svr4_clear_so, svr4_copy_library_list,
8291 library_list_start_library, svr4_default_sos, svr4_read_so_list,
8292 svr4_current_sos, svr4_fetch_objfile_link_map,
8293 solist_update_incremental): Adjust.
8294 * solib-svr4.h (struct lm_info_svr4): Move here from
8295 solib-svr4.c.
8296 * solib-target.c (struct lm_info): Rename to ...
8297 (struct lm_info_target): ... this. Extend lm_info_base.
8298 (lm_info_p): Rename to ...
8299 (lm_info_target_p): ... this.
8300 (solib_target_parse_libraries, library_list_start_segment,
8301 library_list_start_section, library_list_start_library,
8302 library_list_end_library, solib_target_free_library_list,
8303 solib_target_current_sos, solib_target_free_so,
8304 solib_target_relocate_section_addresses): Adjust.
8305 * windows-nat.c (struct lm_info): Rename to ...
8306 (struct lm_info_windows): ... this. Extend lm_info_base.
8307 (windows_make_so, handle_load_dll, handle_unload_dll,
8308 windows_xfer_shared_libraries): Adjust.
8309
434a4023
SM
83102017-04-28 Simon Marchi <simon.marchi@ericsson.com>
8311
8312 * solib-darwin.c (struct darwin_so_list): Remove.
8313 (darwin_current_sos): Allocate an so_list object instead of a
8314 darwin_so_list, separately allocate an lm_info object.
8315 (darwin_free_so): Free lm_info.
8316
428544e8
JB
83172017-04-28 John Baldwin <jhb@FreeBSD.org>
8318
8319 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
8320 with fprintf_filtered.
8321
4621115f
YQ
83222017-04-28 Yao Qi <yao.qi@linaro.org>
8323
8324 * regcache.c (regcache::regcache): New function.
8325 (regcache::~regcache): New function.
8326 (regcache_xmalloc_1): Remove.
8327 (regcache_xmalloc): Call new regcache.
8328 (regcache_xfree): Call delete regcache.
8329 (get_thread_arch_aspace_regcache): Call new regcache.
8330
339053c2
YQ
83312017-04-28 Yao Qi <yao.qi@linaro.org>
8332
8333 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
8334 lwp instead of ptid_get_lwp.
8335
7974a605
YQ
83362017-04-28 Yao Qi <yao.qi@linaro.org>
8337
8338 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
8339 lwp_info instead of getting from inferior_ptid.
8340
e15c3eb4
KS
83412017-04-27 Keith Seitz <keiths@redhat.com>
8342
8343 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
8344 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
8345 (CV_CONVERSION_BADNESS): Define.
8346 (rank_one_type): Remove overly restrictive rvalue reference
8347 rank checks.
8348 Add cv-qualifier checks and subranks for type equality.
8349 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
8350 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
8351 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
8352
72bc1d24
SM
83532017-04-27 Simon Marchi <simon.marchi@ericsson.com>
8354
8355 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
8356 count when creating the object.
8357
55bcecda
UW
83582017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
8359 Ulrich Weigand <uweigand@de.ibm.com>
8360
8361 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
8362 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
8363 is used in AIX.
8364 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
8365 (process_xcoff_symbol): Likewise.
8366 (scan_xcoff_symtab): Likewise.
8367
5c99fcf8
AH
83682017-04-26 Alan Hayward <alan.hayward@arm.com>
8369
8370 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
8371 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
8372 (ia64_access_reg): Use get_frame_register_unsigned.
8373 (ia64_access_rse_reg): Likewise.
8374 (ia64_libunwind_frame_prev_register): Likewise.
8375
b41c5a85
JW
83762017-04-26 Jiong Wang <jiong.wang@arm.com>
8377
8378 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
8379 * gdbarch.c: Regenerated.
8380 * gdbarch.h: Regenerated.
8381 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
8382 visibility external.
8383 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
8384 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
8385 (enum cfa_how_kind): Move to ...
8386 (struct dwarf2_frame_state_reg_info): Likewise.
8387 (struct dwarf2_frame_state): Likewise.
8388 * dwarf2-frame.h: ... here.
8389 (dwarf2_frame_state_alloc_regs): New declaration.
8390 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
8391 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
8392
c185f580
AH
83932017-04-26 Alan Hayward <alan.hayward@arm.com>
8394
8395 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
8396 regcache_raw_read_unsigned.
8397 (xtensa_pseudo_register_write): Likewise.
8398
19c45594
AH
83992017-04-26 Alan Hayward <alan.hayward@arm.com>
8400
8401 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
8402 (nds32_pseudo_register_write): Likewise.
8403
4658f12e
YQ
84042017-04-25 Yao Qi <yao.qi@linaro.org>
8405
8406 * regcache.c (struct regcache) <readonly_p>: Change its type
8407 to bool.
8408 (regcache_xmalloc_1): Update parameter type and callers update.
8409
d581dda8
YQ
84102017-04-25 Yao Qi <yao.qi@linaro.org>
8411
8412 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
8413 set_gdbarch_wchar_bit.
8414 * arm-tdep.c (arm_gdbarch_init): Likewise.
8415
debed3db
PA
84162017-04-25 Pedro Alves <palves@redhat.com>
8417
8418 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
8419 (BothAreRelocatable, memcopy, memmove): Don't define.
8420 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
8421 macros.
8422
b0b92aeb
PA
84232017-04-25 Pedro Alves <palves@redhat.com>
8424
8425 * common/common-defs.h: Include "common/poison.h".
8426 * common/function-view.h: (Not, Or, Requires): Move to traits.h
8427 and adjust.
8428 * common/poison.h: New file.
8429 * common/traits.h: Include <type_traits>.
8430 (Not, Or, Requires): New, moved from common/function-view.h.
8431
16c4d54a
PA
84322017-04-25 Pedro Alves <palves@redhat.com>
8433
8434 * breakpoint.h (struct breakpoint): In-class initialize all
8435 fields. Make boolean fields "bool".
8436 * breakpoint.c (init_raw_breakpoint_without_location): Remove
8437 memset call and initializations no longer necessary.
8438
b5c36682
PA
84392017-04-25 Pedro Alves <palves@redhat.com>
8440
8441 * btrace.c (pt_btrace_insn_flags): Change parameter type to
8442 reference.
8443 (pt_btrace_insn): New function.
8444 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
8445
5625a286
PA
84462017-04-25 Pedro Alves <palves@redhat.com>
8447
8448 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
8449 "base" field and inherit from "bp_location" instead. Add
8450 non-default ctor.
8451 (allocate_location_exception): Use new non-default ctor.
8452 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
8453 (init_bp_location): Convert to ...
8454 (bp_location::bp_location): ... this new ctor, and remove memset
8455 call.
8456 (base_breakpoint_allocate_location): Use the new non-default ctor.
8457 * breakpoint.h (bp_location): Now a class. Declare default and
8458 non-default ctors. In-class initialize all members.
8459 (init_bp_location): Remove declaration.
8460
23bcc18f
PA
84612017-04-25 Pedro Alves <palves@redhat.com>
8462
8463 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
8464 assignment operator.
8465
e1ba3053
YQ
84662017-04-24 Yao Qi <yao.qi@linaro.org>
8467
8468 * doublest.c (convert_doublest_to_floatformat): Call
8469 floatformat_totalsize_bytes.
8470
10f489e5
TT
84712017-04-22 Tom Tromey <tom@tromey.com>
8472
8473 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
8474 ui_out_emit_list.
8475 * stack.c (print_frame): Use ui_out_emit_list.
8476 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
8477 ui_out_emit_list.
8478 * mi/mi-main.c (print_one_inferior)
8479 (mi_cmd_data_list_register_names)
8480 (mi_cmd_data_list_register_values, mi_cmd_list_features)
8481 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
8482 ui_out_emit_list.
8483 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
8484 (mi_output_solib_attribs): Use ui_out_emit_list,
8485 ui_out_emit_tuple.
8486 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
8487 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
8488 (mi_cmd_stack_list_args, list_args_or_locals): Use
8489 ui_out_emit_list.
8490 * disasm.c (do_assembly_only): Use ui_out_emit_list.
8491 * breakpoint.c (print_solib_event, output_thread_groups): Use
8492 ui_out_emit_list.
8493
0092b74d
TT
84942017-04-22 Tom Tromey <tom@tromey.com>
8495
8496 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
8497 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
8498 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
8499
a14a62dd
TT
85002017-04-22 Tom Tromey <tom@tromey.com>
8501
8502 * tracepoint.c (tvariables_info_1)
8503 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
8504
46b9c129
TT
85052017-04-22 Tom Tromey <tom@tromey.com>
8506
8507 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
8508 annotate_arg_emitter.
8509 * breakpoint.c (print_mention_watchpoint)
8510 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
8511 * annotate.h (struct annotate_arg_emitter): New.
8512
2e783024
TT
85132017-04-22 Tom Tromey <tom@tromey.com>
8514
8515 * record-btrace.c (record_btrace_insn_history)
8516 (record_btrace_insn_history_range, record_btrace_call_history)
8517 (record_btrace_call_history_range): Use ui_out_emit_tuple.
8518 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
8519 ui_out_emit_tuple.
8520 * stack.c (print_frame_info): Use ui_out_emit_tuple.
8521 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
8522 * skip.c (skip_info): Use ui_out_emit_tuple.
8523 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
8524 * progspace.c (print_program_space): Use ui_out_emit_tuple.
8525 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
8526 * osdata.c (info_osdata): Use ui_out_emit_tuple.
8527 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
8528 ui_out_emit_tuple.
8529 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
8530 (output_register, mi_cmd_data_read_memory)
8531 (mi_cmd_data_read_memory_bytes, mi_load_progress)
8532 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
8533 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
8534 Use ui_out_emit_tuple.
8535 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
8536 ui_out_emit_tuple.
8537 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
8538 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
8539 * linux-thread-db.c (info_auto_load_libthread_db): Use
8540 ui_out_emit_tuple.
8541 * inferior.c (print_inferior): Use ui_out_emit_tuple.
8542 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
8543 * disasm.c (do_mixed_source_and_assembly_deprecated)
8544 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
8545 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
8546 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
8547 * breakpoint.c (print_one_breakpoint_location)
8548 (print_one_breakpoint): Use ui_out_emit_tuple.
8549 * auto-load.c (print_script, info_auto_load_cmd): Use
8550 ui_out_emit_tuple.
8551 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
8552
9be21bb4
SM
85532017-04-21 Simon Marchi <simon.marchi@ericsson.com>
8554
8555 * thread.c (print_thread_info_1): Remove dead code.
8556
0d4c07af
JK
85572017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8558
8559 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
8560 GDB_SELF_TEST.
8561 * arm-tdep.c (selftests::arm_record_test): Likewise.
8562
4daf993d
YQ
85632017-04-21 Yao Qi <yao.qi@linaro.org>
8564
8565 * regcache.c (regcache_restore): Remove argument 2. Replace
8566 argument 3 with regcache. Get register status from
8567 src->register_status and get register contents from
8568 register_buffer (src, regnum).
8569 (regcache_cpy): Update.
8570
a6c21d4a
PA
85712017-04-19 Pedro Alves <palves@redhat.com>
8572
8573 * gdbthread.h (thread): Add missing closing parenthesis in
8574 comment.
8575
3a3fd0fd
PA
85762017-04-19 Pedro Alves <palves@redhat.com>
8577
8578 * common/refcounted-object.h: New file.
8579 * gdbthread.h: Include "common/refcounted-object.h".
8580 (thread_info): Inherit from refcounted_object and add comments.
8581 (thread_info::incref, thread_info::decref)
8582 (thread_info::m_refcount): Delete.
8583 (thread_info::deletable): Use the refcounted_object::refcount()
8584 method.
8585 * inferior.c (current_inferior_): Add comment.
8586 (set_current_inferior): Increment/decrement refcounts.
8587 (prune_inferiors, remove_inferior_command): Skip inferiors marked
8588 not-deletable instead of comparing with the current inferior.
8589 (initialize_inferiors): Increment the initial inferior's refcount.
8590 * inferior.h (struct inferior): Forward declare.
8591 Include "common/refcounted-object.h".
8592 (current_inferior, set_current_inferior): Move declaration to
8593 before struct inferior's definition, and fix comment.
8594 (inferior): Inherit from refcounted_object. Add comments.
8595 * thread.c (switch_to_thread_no_regs): Reference the thread's
8596 inferior pointer directly instead of doing a ptid lookup.
8597 (switch_to_no_thread): New function.
8598 (switch_to_thread(thread_info *)): New function, factored out
8599 from ...
8600 (switch_to_thread(ptid_t)): ... this.
8601 (restore_current_thread): Delete.
8602 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
8603 fields, and add 'inf' field.
8604 (do_restore_current_thread_cleanup): Check whether old->inf is
8605 alive instead of looking up an inferior by ptid. Use
8606 switch_to_thread and switch_to_no_thread.
8607 (restore_current_thread_cleanup_dtor): Use old->inf directly
8608 instead of lookup up an inferior by id. Decref the inferior.
8609 Don't restore 'removable'.
8610 (make_cleanup_restore_current_thread): Same the inferior pointer
8611 in old, instead of the inferior number. Incref the inferior.
8612 Don't save/clear 'removable'.
8613
9bcb1f16
PA
86142017-04-19 Pedro Alves <palves@redhat.com>
8615
8616 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8617 unittests/scoped_restore-selftests.c.
8618 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
8619 * common/scoped_restore.h (scoped_restore_base): Make "class".
8620 (scoped_restore_base::release): New public method.
8621 (scoped_restore_base::scoped_restore_base): New protected ctor.
8622 (scoped_restore_base::m_saved_var): New protected field.
8623 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
8624 scoped_restore_base base class instead of m_saved_var directly.
8625 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
8626 (scoped_restore_tmpl::scoped_restore_tmpl(const
8627 scoped_restore_tmpl<T>&)): Likewise.
8628 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
8629 method.
8630 (scoped_restore_tmpl::saved_var): New method.
8631 (scoped_restore_tmpl::m_saved_var): Delete.
8632 * inferior.h (inferior::detaching): Now a bool.
8633 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
8634 cleanup.
8635 * unittests/scoped_restore-selftests.c: New file.
8636
26fcd539
PA
86372017-04-19 Pedro Alves <palves@redhat.com>
8638
8639 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
8640 Re-sort in alphabetic order.
8641
fdd243b0
PA
86422017-04-18 Pedro Alves <palves@redhat.com>
8643
8644 * xml-support.c (obstack_xml_printf): Delete.
8645 * xml-support.h (obstack_xml_printf): Delete.
8646
4895cde2
PA
86472017-04-18 Pedro Alves <palves@redhat.com>
8648
8649 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
8650 vdebug, verror, body_text, start_element, end_element, name,
8651 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
8652 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
8653 is_xinclude>: Make private and add m_ prefix.
8654 (gdb_xml_parser::body_text): New method, based on ...
8655 (gdb_xml_body_text): ... this. Adjust.
8656 (gdb_xml_parser::vdebug): New method, based on ...
8657 (gdb_xml_debug): ... this. Adjust.
8658 (gdb_xml_parser::verror): New method, based on ...
8659 (gdb_xml_error): ... this. Adjust.
8660 (gdb_xml_parser::start_element): New method, based on ...
8661 (gdb_xml_start_element): ... this. Adjust.
8662 (gdb_xml_start_element_wrapper): Defer to
8663 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
8664 (gdb_xml_parser::end_element): New method, based on ...
8665 (gdb_xml_end_element_wrapper): ... this. Adjust.
8666 (gdb_xml_parser::~gdb_xml_parser): Adjust.
8667 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
8668 (gdb_xml_parser::use_dtd): New method, based on ...
8669 (gdb_xml_use_dtd): ... this. Adjust.
8670 (gdb_xml_parser::parse): New method, based on ...
8671 (gdb_xml_parse): ... this. Adjust.
8672 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
8673 (xinclude_start_include): Adjust to call the parser's name method.
8674 (xml_xinclude_default, xml_xinclude_start_doctype)
8675 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
8676 method.
8677 (xml_process_xincludes): Adjust to call parser methods.
8678 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
8679 declarations.
8680
bd8a901f
PA
86812017-04-18 Pedro Alves <palves@redhat.com>
8682
8683 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
8684 gdb::optional<std::string>.
8685 * xml-support.c: Include <string>.
8686 (scope_level::scope_level(scope_level &&))
8687 (scope_level::~scope_level): Delete.
8688 (scope_level::body): Now a std::string.
8689 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
8690 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
8691 parameter.
8692 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
8693 (xinclude_parsing_data::output): Now a std::string reference.
8694 (xinclude_start_include): Adjust.
8695 (xml_xinclude_default): Adjust.
8696 (xml_process_xincludes): Add 'output' parameter, and return bool.
8697 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
8698 and return bool.
8699 * xml-tdesc.c: Include <unordered_map> and <string>.
8700 (tdesc_xml_cache): Delete.
8701 (tdesc_xml_cache_s): Delete.
8702 (xml_cache): Now an std::unordered_map.
8703 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
8704 (target_fetch_description_xml): Change return type to
8705 gdb::optional<std::string>, and adjust.
8706 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
8707 (target_fetch_description_xml): Change return type to
8708 gdb::optional<std::string>.
8709
d35d1958
PA
87102017-04-18 Pedro Alves <palves@redhat.com>
8711
8712 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8713 unittests/optional-selftests.c.
8714 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
8715 * unittests/optional-selftests.c: New file.
8716 * unittests/optional/assignment/1.cc: New file.
8717 * unittests/optional/assignment/2.cc: New file.
8718 * unittests/optional/assignment/3.cc: New file.
8719 * unittests/optional/assignment/4.cc: New file.
8720 * unittests/optional/assignment/5.cc: New file.
8721 * unittests/optional/assignment/6.cc: New file.
8722 * unittests/optional/assignment/7.cc: New file.
8723 * unittests/optional/cons/copy.cc: New file.
8724 * unittests/optional/cons/default.cc: New file.
8725 * unittests/optional/cons/move.cc: New file.
8726 * unittests/optional/cons/value.cc: New file.
8727 * unittests/optional/in_place.cc: New file.
8728 * unittests/optional/observers/1.cc: New file.
8729 * unittests/optional/observers/2.cc: New file.
8730
22796e97
PA
87312017-04-18 Pedro Alves <palves@redhat.com>
8732
8733 * common/gdb_optional.h: Include common/traits.h.
8734 (in_place_t): New type.
8735 (in_place): New constexpr variable.
8736 (optional::optional): Remove member initialization of
8737 m_instantiated.
8738 (optional::optional(in_place_t...)): New constructor.
8739 (optional::~optional): Use reset.
8740 (optional::optional(const optional&)): New.
8741 (optional::optional(const optional&&)): New.
8742 (optional::optional(T &)): New.
8743 (optional::optional(T &&)): New.
8744 (operator::operator=(const optional &)): New.
8745 (operator::operator=(optional &&)): New.
8746 (operator::operator= (const T &))
8747 (operator::operator= (T &&))
8748 (operator::emplace (Args &&... args)): Return a T&. Use reset.
8749 (operator::reset): New.
8750 (operator::m_instantiated):: Add in-class initializer.
8751 * common/traits.h: Include <type_traits>.
8752 (struct And): New types.
8753
a7fc9b61
PA
87542017-04-18 Pedro Alves <palves@redhat.com>
8755
8756 * xml-support.c: Include <vector>.
8757 (scope_level::scope_level(const gdb_xml_element *))
8758 (scope_level::scope_level(scope_level&&)): New.
8759 (scope_level::~scope_level): New.
8760 (scope_level_s): Delete.
8761 (gdb_xml_parser::scopes): Now a std::vector.
8762 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
8763 Use std::vector.
8764 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
8765 scope cleanup code.
8766 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
8767 of the scopes member. Use std::vector::emplace_back.
8768
010151c9
PA
87692017-04-18 Pedro Alves <palves@redhat.com>
8770
8771 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
8772 a bool.
8773 (gdb_xml_end_element): Change type of first parameter.
8774 (gdb_xml_cleanup): Rename to ...
8775 (gdb_xml_parser::~gdb_xml_parser): ... this.
8776 (gdb_xml_create_parser_and_cleanup): Delete with ...
8777 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
8778 to this new ctor.
8779 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
8780 using gdb_xml_create_parser_and_cleanup.
8781 (xinclude_parsing_data): Add ctor/dtor.
8782 (xml_xinclude_cleanup): Delete.
8783 (xml_process_xincludes): Create a local xinclude_parsing_data
8784 instead of heap-allocating one. Create a local gdb_xml_parser
8785 instead of heap-allocating one with
8786 gdb_xml_create_parser_and_cleanup.
8787
d56060f0
JB
87882017-04-18 John Baldwin <jhb@FreeBSD.org>
8789
8790 PR threads/20743
8791 * fbsd-nat.c (resume_one_thread_cb): Remove.
8792 (resume_all_threads_cb): Remove.
8793 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
8794 iterate_over_threads.
8795
305d16a9
JB
87962017-04-17 Joel Brobecker <brobecker@adacore.com>
8797
8798 * NEWS: Create a new section for the next release branch.
8799 Rename the section of the current branch, now that it has
8800 been cut.
8801
8bb57231
JB
88022017-04-17 Joel Brobecker <brobecker@adacore.com>
8803
8804 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
8805 * version.in: Bump version to 8.0.50.DATE-git.
8806
096c92dd
SDJ
88072017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
8808
8809 PR gdb/21385
8810 * windows-nat.c (windows_create_inferior): Declare 'allargs'
8811 independently of the host, and fix build breakage on Cygwin.
8812
0550c955
PA
88132017-04-13 Pedro Alves <palves@redhat.com>
8814
8815 * inferior.c (free_inferior): Convert to ...
8816 (inferior::~inferior): ... this dtor.
8817 (inferior::inferior): New ctor, factored out from ...
8818 (add_inferior_silent): ... here. Allocate the inferior with a new
8819 expression.
8820 (delete_inferior): Call delete instead of free_inferior.
8821 * inferior.h (gdb_environ, continuation): Forward declare.
8822 (inferior): Now a class. Add in-class initialization to all
8823 members. Make boolean fields bool, except 'detaching'.
8824 (inferior::inferior): New explicit ctor.
8825 (inferior::~inferior): New.
8826
e3d60dfc
PA
88272017-04-13 Pedro Alves <palves@redhat.com>
8828
8829 * inferior.c (init_inferior_list): Delete.
8830 * inferior.h (init_inferior_list): Delete.
8831
5fd69d0a
PA
88322017-04-13 Pedro Alves <palves@redhat.com>
8833
8834 PR threads/13217
8835 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
8836 (top level): Call it twice, with different thread sets.
8837
c6609450
PA
88382017-04-13 Pedro Alves <palves@redhat.com>
8839
8840 * thread.c: Include <algorithm>.
8841 (thread_array_cleanup): Delete.
8842 (scoped_inc_dec_ref): New class.
8843 (live_threads_count): New function.
8844 (set_thread_refcount): Delete.
8845 (tp_array_compar_ascending): Now a bool.
8846 (tp_array_compar): Convert to a std::sort comparison function.
8847 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
8848 and live_threads_count.
8849
2a00d7ce
PA
88502017-04-13 Pedro Alves <palves@redhat.com>
8851
8852 * infrun.c (follow_fork_inferior): Also switch the current
8853 inferior.
8854
441d7c93
PA
88552017-04-13 Pedro Alves <palves@redhat.com>
8856
8857 * breakpoint.c (watch_command_1): Save watchpoint-frame info
8858 before calling create_internal_breakpoint.
8859
808480f6
PA
88602017-04-13 Pedro Alves <palves@redhat.com>
8861
8862 * fork-child.c (execv_argv): New class.
8863 (breakup_args): Refactored as ...
8864 (execv_argv::init_for_no_shell): .. this method of execv_argv.
8865 Copy arguments to storage and replace separators with NULL
8866 terminators in place.
8867 (escape_bang_in_quoted_argument): Adjust to return bool.
8868 (execv_argv::execv_argv): New ctor.
8869 (execv_argv::init_for_shell): New method, factored out from
8870 fork_inferior. Don't strdup strings into the vector.
8871 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
8872 Remove free_vector_argv call.
8873
ad3d022a
YQ
88742017-04-13 Yao Qi <yao.qi@linaro.org>
8875
8876 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
8877 tdep->rx_psw_type.
8878
e6ddc3bf
YQ
88792017-04-13 Yao Qi <yao.qi@linaro.org>
8880
8881 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
8882 * rx-tdep.c (rx_gdbarch_init): Likewise.
8883
bfb8cf90
PA
88842017-04-13 Pedro Alves <palves@redhat.com>
8885
8886 * breakpoint.h (struct breakpoint): Reindent.
8887
f5336ca5
PA
88882017-04-13 Pedro Alves <palves@redhat.com>
8889
8890 * breakpoint.c (bp_location): Rename to ...
8891 (bp_locations): ... this. All references updated.
8892 (bp_location_count): Rename to ...
8893 (bp_locations_count): ... this. All references updated.
8894 (bp_location_placed_address_before_address_max): Rename to ...
8895 (bp_locations_placed_address_before_address_max): ... this. All
8896 references updated.
8897 (bp_location_shadow_len_after_address_max): Rename to ...
8898 (bp_locations_shadow_len_after_address_max): ... this. All
8899 references updated.
8900 (bp_location_compare_addrs): Rename to ...
8901 (bp_locations_compare_addrs): ... this. All references updated.
8902 (bp_location_compare):Rename to ...
8903 (bp_locations_compare): ... this. All references updated.
8904 (bp_location_target_extensions_update): Rename to ...
8905 (bp_locations_target_extensions_update): ... this. All references
8906 updated.
8907
be628ab8
SDJ
89082017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
8909
8910 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
8911 * common/common.m4: Check headers 'termios.h', 'termio.h' and
8912 'sgtty.h'.
8913 * common/gdb_termios.h: New file, with parts of "terminal.h".
8914 * inflow.c: Include "gdb_termios.h".
8915 * ser-unix.c: Include "gdb_termios.h".
8916 * terminal.h: Move terminal-related defines to
8917 "common/gdb_termios.h".
8918
8e9e35b1
TT
89192017-04-12 Tom Tromey <tom@tromey.com>
8920
8921 * probe.c (parse_probes): Update.
8922 * location.h (delete_event_location): Don't declare.
8923 (event_location_deleter::operator()): Update.
8924 * location.c (event_location_deleter::operator()): Rename from
8925 delete_event_location.
8926 * linespec.h (linespec_result) <location>: Change type to
8927 event_location_up.
8928 * linespec.c (canonicalize_linespec, event_location_to_sals)
8929 (decode_objc): Update.
8930 (linespec_result): Don't call delete_event_location.
8931 * breakpoint.c (create_breakpoints_sal)
8932 (bkpt_probe_create_sals_from_location)
8933 (strace_marker_create_sals_from_location): Update.
8934
16e802b9
TT
89352017-04-12 Tom Tromey <tom@tromey.com>
8936
8937 * linespec.h (struct linespec_result): Add constructor and
8938 destructor.
8939 (init_linespec_result, destroy_linespec_result)
8940 (make_cleanup_destroy_linespec_result): Don't declare.
8941 * linespec.c (init_linespec_result): Remove.
8942 (linespec_result::~linespec_result): Rename from
8943 destroy_linespec_result. Update.
8944 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
8945 Remove.
8946 * breakpoint.c (create_breakpoint, break_range_command)
8947 (decode_location_default): Update.
8948 * ax-gdb.c (agent_command_1): Update.
8949
d28cd78a
TT
89502017-04-12 Tom Tromey <tom@tromey.com>
8951
8952 * remote.c (remote_download_tracepoint): Update.
8953 * python/py-breakpoint.c (bppy_get_location): Update.
8954 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
8955 (gdbscm_breakpoint_location): Update.
8956 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
8957 * breakpoint.h (struct breakpoint) <location, location_range_end>:
8958 Change type to event_location_up.
8959 * breakpoint.c (create_overlay_event_breakpoint)
8960 (create_longjmp_master_breakpoint)
8961 (create_std_terminate_master_breakpoint)
8962 (create_exception_master_breakpoint)
8963 (breakpoint_event_location_empty_p, print_breakpoint_location)
8964 (print_one_breakpoint_location, create_thread_event_breakpoint)
8965 (init_breakpoint_sal, create_breakpoint)
8966 (print_recreate_ranged_breakpoint, break_range_command)
8967 (init_ada_exception_breakpoint, say_where): Update.
8968 (base_breakpoint_dtor): Don't call delete_event_location.
8969 (bkpt_print_recreate, tracepoint_print_recreate)
8970 (dprintf_print_recreate, update_static_tracepoint)
8971 (breakpoint_re_set_default): Update.
8972
711799d5
TT
89732017-04-12 Tom Tromey <tom@tromey.com>
8974
8975 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
8976 type of "to_do". Update.
8977 (compute_stack_depth): Use std::vector.
8978
52d214d3
TT
89792017-04-12 Tom Tromey <tom@tromey.com>
8980
8981 * printcmd.c (find_instruction_backward): Use std::vector.
8982
4c404b8b
TT
89832017-04-12 Tom Tromey <tom@tromey.com>
8984
8985 * symfile.c (objfilep): Remove typedef.
8986 (reread_symbols): Use a std::vector.
8987
156d9eab
TT
89882017-04-12 Tom Tromey <tom@tromey.com>
8989
8990 * mi/mi-main.c (exec_direction_forward): Remove.
8991 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
8992 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
8993 scoped_restore.
8994 * guile/guile.c (guile_repl_command, guile_command)
8995 (gdbscm_execute_gdb_command): Use scoped_restore.
8996 * go-exp.y (go_parse): Use scoped_restore.
8997 * d-exp.y (d_parse): Use scoped_restore.
8998 * cli/cli-decode.c (cmd_func): Use scoped_restore.
8999 * c-exp.y (c_parse): Use scoped_restore.
9000
4d89769a
TT
90012017-04-12 Tom Tromey <tom@tromey.com>
9002
9003 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
9004 (mi_parse): Update return type.
9005 (mi_parse_free): Remove.
9006 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
9007 (mi_parse::~mi_parse): Rename from mi_parse_free.
9008 (mi_parse_cleanup): Remove.
9009 (mi_parse): Return a unique_ptr. Use new.
9010 * mi/mi-main.c (mi_execute_command): Update.
9011
4b217cc7
TT
90122017-04-12 Tom Tromey <tom@tromey.com>
9013
9014 * location.c (explicit_location_lex_one): Return a
9015 unique_xmalloc_ptr.
9016 (string_to_explicit_location): Update. Remove cleanups.
9017
59d3651b
TT
90182017-04-12 Tom Tromey <tom@tromey.com>
9019
9020 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
9021 (compare_value_and_voffset): Change type. Update.
9022 (compute_vtable_size): Change type of "offset_vec".
9023 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
9024 (gnuv3_get_typeid): Remove extraneous declaration.
9025
b24b0d6c
TT
90262017-04-12 Tom Tromey <tom@tromey.com>
9027
9028 * charset.h (wchar_iterator): Fix comment.
9029
80a3b8c5
TT
90302017-04-12 Tom Tromey <tom@tromey.com>
9031
9032 * charset.c (iconv_wrapper): New class.
9033 (cleanup_iconv): Remove.
9034 (convert_between_encodings): Use it.
9035
c83dd867
TT
90362017-04-12 Tom Tromey <tom@tromey.com>
9037
9038 * symfile.h (increment_reading_symtab): Update type.
9039 * symfile.c (decrement_reading_symtab): Remove.
9040 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
9041 * psymtab.c (psymtab_to_symtab): Update.
9042 * dwarf2read.c (dw2_instantiate_symtab): Update.
9043
0e8621a0
TT
90442017-04-12 Tom Tromey <tom@tromey.com>
9045
9046 * jit.c (struct jit_reader): Declare separately. Add constructor
9047 and destructor. Change type of "handle".
9048 (loaded_jit_reader): Define separately.
9049 (jit_reader_load): Update. New "new".
9050 (jit_reader_unload_command): Use "delete".
9051 * gdb-dlfcn.h (struct dlclose_deleter): New.
9052 (gdb_dlhandle_up): New typedef.
9053 (gdb_dlopen, gdb_dlsym): Update types.
9054 (gdb_dlclose): Remove.
9055 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
9056 (gdb_dlsym): Change type of "handle".
9057 (make_cleanup_dlclose): Remove.
9058 (dlclose_deleter::operator()): Rename from gdb_dlclose.
9059 * compile/compile-c-support.c (load_libcc): Update.
9060
67d89901
TT
90612017-04-12 Tom Tromey <tom@tromey.com>
9062
9063 * symtab.h (find_pcs_for_symtab_line): Change return type.
9064 * symtab.c (find_pcs_for_symtab_line): Change return type.
9065 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
9066 type of "vec". Update.
9067 (ltpy_get_pcs_for_line): Update.
9068 * linespec.c (decode_digits_ordinary): Update.
9069
93921405
TT
90702017-04-12 Tom Tromey <tom@tromey.com>
9071
9072 * tracepoint.c (actions_command): Update.
9073 * python/python.c (python_command, python_interactive_command):
9074 Update.
9075 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
9076 * guile/guile.c (guile_command): Update.
9077 * defs.h (read_command_lines, read_command_lines_1): Return
9078 command_line_up.
9079 (command_lines_deleter): New struct.
9080 (command_line_up): New typedef.
9081 * compile/compile.c (compile_code_command)
9082 (compile_print_command): Update.
9083 * cli/cli-script.h (get_command_line, copy_command_lines): Return
9084 command_line_up.
9085 (make_cleanup_free_command_lines): Remove.
9086 * cli/cli-script.c (get_command_line, read_command_lines_1)
9087 (copy_command_lines): Return command_line_up.
9088 (while_command, if_command, read_command_lines, define_command)
9089 (document_command): Update.
9090 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
9091 Remove.
9092 * breakpoint.h (breakpoint_set_commands): Change type of
9093 "commands".
9094 * breakpoint.c (breakpoint_set_commands): Change type of
9095 "commands". Update.
9096 (do_map_commands_command, update_dprintf_command_list)
9097 (create_tracepoint_from_upload): Update.
9098
ffc2605c
TT
90992017-04-12 Tom Tromey <tom@tromey.com>
9100
9101 * tracepoint.c (scope_info): Update.
9102 * spu-tdep.c (spu_catch_start): Update.
9103 * python/python.c (gdbpy_decode_line): Update.
9104 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
9105 * python/py-breakpoint.c (bppy_init): Update.
9106 * probe.c (parse_probes): Update.
9107 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
9108 * location.h (event_location_deleter): New struct.
9109 (event_location_up): New typedef.
9110 (new_linespec_location, new_address_location, new_probe_location)
9111 (new_explicit_location, copy_event_location)
9112 (string_to_event_location, string_to_event_location_basic)
9113 (string_to_explicit_location): Update return type.
9114 (make_cleanup_delete_event_location): Remove.
9115 * location.c (new_linespec_location, new_address_location)
9116 (new_probe_location, new_explicit_location, copy_event_location):
9117 Return event_location_up.
9118 (delete_event_location_cleanup)
9119 (make_cleanup_delete_event_location): Remove.
9120 (string_to_explicit_location, string_to_event_location_basic)
9121 (string_to_event_location): Return event_location_up.
9122 * linespec.c (canonicalize_linespec, event_location_to_sals)
9123 (decode_line_with_current_source)
9124 (decode_line_with_last_displayed, decode_objc): Update.
9125 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
9126 * completer.c (location_completer): Update.
9127 * cli/cli-cmds.c (edit_command, list_command): Update.
9128 * breakpoint.c (create_overlay_event_breakpoint)
9129 (create_longjmp_master_breakpoint)
9130 (create_std_terminate_master_breakpoint)
9131 (create_exception_master_breakpoint)
9132 (create_thread_event_breakpoint): Update.
9133 (init_breakpoint_sal): Update. Remove some dead code.
9134 (create_breakpoint_sal): Change type of "location". Update.
9135 (create_breakpoints_sal, create_breakpoint, break_command_1)
9136 (dprintf_command, break_range_command, until_break_command)
9137 (init_ada_exception_breakpoint)
9138 (strace_marker_create_sals_from_location)
9139 (update_static_tracepoint, trace_command, ftrace_command)
9140 (strace_command, create_tracepoint_from_upload): Update.
9141 * break-catch-throw.c (re_set_exception_catchpoint): Update.
9142 * ax-gdb.c (agent_command_1): Update.
9143
8f10c932
PA
91442017-04-12 Pedro Alves <palves@redhat.com>
9145
9146 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
9147 * configure.tgt: Handle i[34567]86-*-go32* and
9148 i[34567]86-*-msdosdjgpp*.
9149 * i386-tdep.c (i386_svr4_reg_to_regnum):
9150 Make extern.
9151 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
9152 i386-go32-tdep.c.
9153 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
9154 * i386-go32-tdep.c: New file.
9155 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
9156 declarations.
9157
0a31ccfb
SM
91582017-04-12 Simon Marchi <simon.marchi@ericsson.com>
9159
9160 * aix-thread.c (pd_status2str): Change return type to const char *.
9161
e9bb3fbb
PA
91622017-04-12 Pedro Alves <palves@redhat.com>
9163
9164 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
9165 calls to set_gdbarch_gnu_triplet_regexp.
9166
53375380
PA
91672017-04-12 Pedro Alves <palves@redhat.com>
9168
9169 PR gdb/21323
9170 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
9171 New enum value.
9172 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
9173 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
9174 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
9175 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
9176 * gdbarch.h, gdbarch.c: Regenerate.
9177 * aarch64-tdep.c (aarch64_gdbarch_init): Override
9178 gdbarch_wchar_bit and gdbarch_wchar_signed.
9179 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
9180 * arm-tdep.c (arm_gdbarch_init): Likewise.
9181 * avr-tdep.c (avr_gdbarch_init): Likewise.
9182 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
9183 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
9184 * i386-tdep.c (i386_go32_init_abi): Likewise.
9185 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
9186 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
9187 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
9188 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
9189 * sh-tdep.c (sh_gdbarch_init): Likewise.
9190 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
9191 * sparc64-tdep.c (sparc64_init_abi): Likewise.
9192 * windows-tdep.c (windows_init_abi): Likewise.
9193 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
9194
53e710ac
PA
91952017-04-12 Pedro Alves <palves@redhat.com>
9196
9197 PR c++/21323
9198 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
9199 cplus_primitive_type_char32_t>: New enum values.
9200 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
9201 and cplus_primitive_type_char32_t.
9202 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
9203 32, use the archtecture's built-in type for char16_t and char32_t,
9204 respectively. Otherwise, fallback to init_integer_type as before,
9205 but make the type unsigned, and issue a complaint.
9206 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
9207
ab0538b8
AH
92082017-04-12 Alan Hayward <alan.hayward@arm.com>
9209
5e0e0422 9210 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
ab0538b8
AH
9211 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
9212
5430098f
SDJ
92132017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
9214
9215 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
9216 'const char *'.
9217
7c5ded6a
SDJ
92182017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
9219
9220 * common/common-utils.c (free_vector_argv): New function.
9221 * common/common-utils.h: Include <vector>.
9222 (free_vector_argv): New prototype.
9223 * darwin-nat.c (darwin_create_inferior): Rewrite function
9224 prototype in order to constify "exec_file" and accept a
9225 "std::string" for "allargs".
9226 * fork-child.c: Include <vector>.
9227 (breakup_args): Rewrite function, using C++.
9228 (fork_inferior): Rewrite function header, constify "exec_file_arg"
9229 and accept "std::string" for "allargs". Update the code to
9230 calculate "argv" based on "allargs". Update calls to "exec_fun"
9231 and "execvp".
9232 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
9233 order to constify "exec_file" and accept a "std::string" for
9234 "allargs".
9235 * go32-nat.c (go32_create_inferior): Likewise.
9236 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
9237 * infcmd.c (run_command_1): Constify "exec_file". Use
9238 "std::string" for inferior arguments.
9239 * inferior.h (fork_inferior): Update prototype.
9240 * linux-nat.c (linux_nat_create_inferior): Rewrite function
9241 prototype in order to constify "exec_file" and accept a
9242 "std::string" for "allargs".
9243 * nto-procfs.c (procfs_create_inferior): Likewise.
9244 * procfs.c (procfs_create_inferior): Likewise.
9245 * remote-sim.c (gdbsim_create_inferior): Likewise.
9246 * remote.c (extended_remote_run): Update code to accept
9247 "std::string" as argument.
9248 (extended_remote_create_inferior): Rewrite function prototype in
9249 order to constify "exec_file" and accept a "std::string" for
9250 "allargs".
9251 * rs6000-nat.c (super_create_inferior): Likewise.
9252 (rs6000_create_inferior): Likewise.
9253 * target.h (struct target_ops) <to_create_inferior>: Likewise.
9254 * windows-nat.c (windows_create_inferior): Likewise.
9255
ae0eee42
PA
92562017-04-11 Pedro Alves <palves@redhat.com>
9257
9258 * thread.c: Fix whitespace throughout.
9259
a6acac06
PR
92602017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
9261
9262 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
9263
64403bd1
AH
92642017-04-11 Alan Hayward <alan.hayward@arm.com>
9265
9266 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
9267
a5bef50f
SDJ
92682017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
9269
9270 PR gdb/21364
9271 * osdata.c (info_osdata): Check if 'type' is an empty string
9272 instead of NULL.
9273
9295a5a9
PA
92742017-04-10 Pedro Alves <palves@redhat.com>
9275
9276 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
9277 (ptid_to_global_thread_id, in_thread_list)
9278 (do_captured_list_thread_ids, set_resumed, set_running)
9279 (set_executing, set_stop_requested, finish_thread_state)
9280 (validate_registers_access, can_access_registers_ptid)
9281 (print_thread_info_1, switch_to_thread)
9282 (do_restore_current_thread_cleanup)
9283 (make_cleanup_restore_current_thread, thread_command)
9284 (thread_name_command): Use operator== instead of ptid_equal.
9285
996812e3
PA
92862017-04-10 Pedro Alves <palves@redhat.com>
9287
9288 * thread.c (struct current_thread_cleanup) <next>: Delete field.
9289 (current_thread_cleanup_chain): Delete.
9290 (restore_current_thread_cleanup_dtor)
9291 (make_cleanup_restore_current_thread): Remove references to
9292 current_thread_cleanup_chain.
9293
845b344f
AH
92942017-04-10 Alan Hayward <alan.hayward@arm.com>
9295
9296 * msp430-tdep.c (msp430_pseudo_register_read): Never return
9297 REG_UNKNOWN.
9298
803bdfe4
YQ
92992017-04-10 Yao Qi <yao.qi@linaro.org>
9300
9301 PR gdb/19942
9302 * gdbthread.h (thread_info::deletable): New method.
9303 (thread_info::incref): New method.
9304 (thread_info::decref): New method.
9305 (thread_info::refcount): Move it to private.
9306 * infrun.c (save_stop_context): Call inc_refcount.
9307 (release_stop_context_cleanup): Likewise.
9308 * thread.c (set_thread_exited): New function.
9309 (init_thread_list): Delete "tp" only it is deletable, otherwise
9310 call set_thread_exited.
9311 (delete_thread_1): Call set_thread_exited.
9312 (current_thread_cleanup) <inferior_pid>: Remove.
9313 <thread>: New field.
9314 (restore_current_thread_ptid_changed): Removed.
9315 (do_restore_current_thread_cleanup): Adjust.
9316 (restore_current_thread_cleanup_dtor): Don't call
9317 find_thread_ptid.
9318 (set_thread_refcount): Use dec_refcount.
9319 (make_cleanup_restore_current_thread): Adjust.
9320 (thread_apply_all_command): Call inc_refcount.
9321 (_initialize_thread): Don't call
9322 observer_attach_thread_ptid_changed.
9323
8c25b497
YQ
93242017-04-10 Yao Qi <yao.qi@linaro.org>
9325
9326 * thread.c (delete_thread_1): Hoist code on marking thread as
9327 exited.
9328
8473b447
SM
93292017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
9330
9331 * windows-nat.c (windows_detach): Initialize ptid with
9332 minus_one_ptid.
9333
6670ec13
SM
93342017-04-07 Simon Marchi <simon.marchi@ericsson.com>
9335
9336 * unittests/ptid-selftests.c: Fix erroneous assert messages.
9337
ba2f91bb
AH
93382017-04-07 Alan Hayward <alan.hayward@arm.com>
9339
9340 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
9341 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
9342 (bfin_pseudo_register_write): Likewise
9343
436252de
SM
93442017-04-06 Simon Marchi <simon.marchi@ericsson.com>
9345
9346 * common/ptid.h (struct ptid): Change to...
9347 (class ptid_t): ... this.
9348 <ptid_t>: New constructors.
9349 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
9350 matches>: New methods.
9351 <make_null, make_minus_one>: New static methods.
9352 <pid>: Rename to...
9353 <m_pid>: ...this.
9354 <lwp>: Rename to...
9355 <m_lwp>: ...this.
9356 <tid>: Rename to...
9357 <m_tid>: ...this.
9358 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
9359 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
9360 as references, move comment to class ptid_t.
9361 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
9362 ptid_t static methods.
9363 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
9364 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
9365 Take ptid arguments as references, implement using ptid_t methods.
9366 * unittests/ptid-selftests.c: New file.
9367 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9368 unittests/ptid-selftests.c.
9369 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
9370
0dedf377
TP
93712017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
9372
9373 * python/python.c (python_run_simple_file): Cast mode literal to
9374 non-const char pointer as expected by PyFile_FromString.
9375
4e9868d4
SM
93762017-04-05 Simon Marchi <simon.marchi@ericsson.com>
9377
9378 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
9379 minus_one_ptid and null_ptid.
9380
9bf2a700
PA
93812017-04-05 Pedro Alves <palves@redhat.com>
9382
9383 * warning.m4 (build_warnings): Remove -Wno-write-strings.
9384 * configure: Regenerate.
9385
a121b7c1
PA
93862017-04-05 Pedro Alves <palves@redhat.com>
9387
9388 * ada-exp.y (yyerror): Constify.
9389 * ada-lang.c (bound_name, get_selections)
9390 (ada_variant_discrim_type)
9391 (ada_variant_discrim_name, ada_value_struct_elt)
9392 (ada_lookup_struct_elt_type, is_unchecked_variant)
9393 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
9394 (catch_ada_exception_command_split)
9395 (catch_ada_assert_command_split, catch_assert_command)
9396 (ada_op_name): Constify.
9397 * ada-lang.h (ada_yyerror, get_selections)
9398 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
9399 * arc-tdep.c (arc_print_frame_cache): Constify.
9400 * arm-tdep.c (arm_skip_stub): Constify.
9401 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
9402 (gen_aggregate_elt_ref): Constify.
9403 * bcache.c (print_bcache_statistics): Constify.
9404 * bcache.h (print_bcache_statistics): Constify.
9405 * break-catch-throw.c (catch_exception_command_1):
9406 * breakpoint.c (struct ep_type_description::description):
9407 Constify.
9408 (add_solib_catchpoint): Constify.
9409 (catch_fork_command_1): Add cast.
9410 (add_catch_command): Constify.
9411 * breakpoint.h (add_catch_command, add_solib_catchpoint):
9412 Constify.
9413 * bsd-uthread.c (bsd_uthread_state): Constify.
9414 * buildsym.c (patch_subfile_names): Constify.
9415 * buildsym.h (next_symbol_text_func, patch_subfile_names):
9416 Constify.
9417 * c-exp.y (yyerror): Constify.
9418 (token::oper): Constify.
9419 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
9420 * c-varobj.c (cplus_describe_child): Constify.
9421 * charset.c (find_charset_names): Add cast.
9422 (find_charset_names): Constify array and add const_cast.
9423 * cli/cli-cmds.c (complete_command, cd_command): Constify.
9424 (edit_command): Constify.
9425 * cli/cli-decode.c (lookup_cmd): Constify.
9426 * cli/cli-dump.c (dump_memory_command, dump_value_command):
9427 Constify.
9428 (struct dump_context): Constify.
9429 (add_dump_command, restore_command): Constify.
9430 * cli/cli-script.c (get_command_line): Constify.
9431 * cli/cli-script.h (get_command_line): Constify.
9432 * cli/cli-utils.c (check_for_argument): Constify.
9433 * cli/cli-utils.h (check_for_argument): Constify.
9434 * coff-pe-read.c (struct read_pe_section_data): Constify.
9435 * command.h (lookup_cmd): Constify.
9436 * common/print-utils.c (decimal2str): Constify.
9437 * completer.c (gdb_print_filename): Constify.
9438 * corefile.c (set_gnutarget): Constify.
9439 * cp-name-parser.y (yyerror): Constify.
9440 * cp-valprint.c (cp_print_class_member): Constify.
9441 * cris-tdep.c (cris_register_name, crisv32_register_name):
9442 Constify.
9443 * d-exp.y (yyerror): Constify.
9444 (struct token::oper): Constify.
9445 * d-lang.h (d_yyerror): Constify.
9446 * dbxread.c (struct header_file_location::name): Constify.
9447 (add_old_header_file, add_new_header_file, last_function_name)
9448 (dbx_next_symbol_text, add_bincl_to_list)
9449 (find_corresponding_bincl_psymtab, set_namestring)
9450 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
9451 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
9452 * defs.h (command_line_input, print_address_symbolic)
9453 (deprecated_readline_begin_hook): Constify.
9454 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
9455 Constify.
9456 * event-top.c (handle_line_of_input): Constify and add cast.
9457 * exceptions.c (catch_errors): Constify.
9458 * exceptions.h (catch_errors): Constify.
9459 * expprint.c (print_subexp_standard, op_string, op_name)
9460 (op_name_standard, dump_raw_expression, dump_raw_expression):
9461 * expression.h (op_name, op_string, dump_raw_expression):
9462 Constify.
9463 * f-exp.y (yyerror): Constify.
9464 (struct token::oper): Constify.
9465 (struct f77_boolean_val::name): Constify.
9466 * f-lang.c (f_word_break_characters): Constify.
9467 * f-lang.h (f_yyerror): Constify.
9468 * fork-child.c (fork_inferior): Add cast.
9469 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
9470 (new_variant): Constify.
9471 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
9472 * gdbarch.c: Regenerate.
9473 * gdbcore.h (set_gnutarget): Constify.
9474 * go-exp.y (yyerror): Constify.
9475 (token::oper): Constify.
9476 * go-lang.h (go_yyerror): Constify.
9477 * go32-nat.c (go32_sysinfo): Constify.
9478 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
9479 * guile/scm-cmd.c (cmdscm_function): Constify.
9480 * guile/scm-param.c (pascm_param_value): Constify.
9481 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
9482 (h8300sx_register_name): Constify.
9483 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
9484 Constify.
9485 * ia64-tdep.c (ia64_register_names): Constify.
9486 * infcmd.c (construct_inferior_arguments): Constify.
9487 (path_command, attach_post_wait): Constify.
9488 * language.c (show_range_command, show_case_command)
9489 (unk_lang_error): Constify.
9490 * language.h (language_defn::la_error)
9491 (language_defn::la_name_of_this): Constify.
9492 * linespec.c (decode_line_2): Constify.
9493 * linux-thread-db.c (thread_db_err_str): Constify.
9494 * lm32-tdep.c (lm32_register_name): Constify.
9495 * m2-exp.y (yyerror): Constify.
9496 * m2-lang.h (m2_yyerror): Constify.
9497 * m32r-tdep.c (m32r_register_names): Constify and make static.
9498 * m68hc11-tdep.c (m68hc11_register_names): Constify.
9499 * m88k-tdep.c (m88k_register_name): Constify.
9500 * macroexp.c (appendmem): Constify.
9501 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
9502 (upgrade_type, parse_external, parse_partial_symbols)
9503 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
9504 (new_symbol): Constify.
9505 * memattr.c (mem_info_command): Constify.
9506 * mep-tdep.c (register_name_from_keyword): Constify.
9507 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
9508 Constify.
9509 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
9510 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
9511 * mi/mi-main.c (captured_mi_execute_command): Constify and add
9512 cast.
9513 (mi_execute_async_cli_command): Constify.
9514 * mips-tdep.c (mips_register_name): Constify.
9515 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
9516 (am33_register_name, am33_2_register_name)
9517 * moxie-tdep.c (moxie_register_names): Constify.
9518 * nat/linux-osdata.c (osdata_type): Constify fields.
9519 * nto-tdep.c (nto_parse_redirection): Constify.
9520 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
9521 (lookup_child_selector): Constify.
9522 (objc_methcall::name): Constify.
9523 * objc-lang.h (lookup_objc_class, lookup_child_selector)
9524 (lookup_struct_typedef): Constify.
9525 * objfiles.c (pc_in_section): Constify.
9526 * objfiles.h (pc_in_section): Constify.
9527 * p-exp.y (struct token::oper): Constify.
9528 (yyerror): Constify.
9529 * p-lang.h (pascal_yyerror): Constify.
9530 * parser-defs.h (op_name_standard): Constify.
9531 (op_print::string): Constify.
9532 (exp_descriptor::op_name): Constify.
9533 * printcmd.c (print_address_symbolic): Constify.
9534 * psymtab.c (print_partial_symbols): Constify.
9535 * python/py-breakpoint.c (stop_func): Constify.
9536 (bppy_get_expression): Constify.
9537 * python/py-cmd.c (cmdpy_completer::name): Constify.
9538 (cmdpy_function): Constify.
9539 * python/py-event.c (evpy_add_attribute)
9540 (gdbpy_initialize_event_generic): Constify.
9541 * python/py-event.h (evpy_add_attribute)
9542 (gdbpy_initialize_event_generic): Constify.
9543 * python/py-evts.c (add_new_registry): Constify.
9544 * python/py-finishbreakpoint.c (outofscope_func): Constify.
9545 * python/py-framefilter.c (get_py_iter_from_func): Constify.
9546 * python/py-inferior.c (get_buffer): Add cast.
9547 * python/py-param.c (parm_constant::name): Constify.
9548 * python/py-unwind.c (fprint_frame_id): Constify.
9549 * python/python.c (gdbpy_parameter_value): Constify.
9550 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
9551 * remote.c (memory_packet_config::name): Constify.
9552 (show_packet_config_cmd, remote_write_bytes)
9553 (remote_buffer_add_string):
9554 * reverse.c (exec_reverse_once): Constify.
9555 * rs6000-tdep.c (variant::name, variant::description): Constify.
9556 * rust-exp.y (rustyyerror): Constify.
9557 * rust-lang.c (rust_op_name): Constify.
9558 * rust-lang.h (rustyyerror): Constify.
9559 * serial.h (serial_ops::name): Constify.
9560 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
9561 (sh_sh3e_register_name, sh_sh2e_register_name)
9562 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
9563 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
9564 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
9565 (sh_sh4al_dsp_register_name): Constify.
9566 * sh64-tdep.c (sh64_register_name): Constify.
9567 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
9568 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
9569 * stabsread.c (patch_block_stabs, read_type_number)
9570 (ref_map::stabs, ref_add, process_reference)
9571 (symbol_reference_defined, define_symbol, define_symbol)
9572 (error_type, read_type, read_member_functions, read_cpp_abbrev)
9573 (read_one_struct_field, read_struct_fields, read_baseclasses)
9574 (read_tilde_fields, read_struct_type, read_array_type)
9575 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
9576 (read_huge_number, read_range_type, read_args, common_block_start)
9577 (find_name_end): Constify.
9578 * stabsread.h (common_block_start, define_symbol)
9579 (process_one_symbol, symbol_reference_defined, ref_add):
9580 * symfile.c (get_section_index, add_symbol_file_command):
9581 * symfile.h (get_section_index): Constify.
9582 * target-descriptions.c (tdesc_type::name): Constify.
9583 (tdesc_free_type): Add cast.
9584 * target.c (find_default_run_target):
9585 (add_deprecated_target_alias, find_default_run_target)
9586 (target_announce_detach): Constify.
9587 (do_option): Constify.
9588 * target.h (add_deprecated_target_alias): Constify.
9589 * thread.c (print_thread_info_1): Constify.
9590 * top.c (deprecated_readline_begin_hook, command_line_input):
9591 Constify.
9592 (init_main): Add casts.
9593 * top.h (handle_line_of_input): Constify.
9594 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
9595 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
9596 (tfind_command): Rename to ...
9597 (tfind_command_1): ... this and constify.
9598 (tfind_command): New function.
9599 (tfind_end_command, tfind_start_command): Adjust.
9600 (encode_source_string): Constify.
9601 * tracepoint.h (encode_source_string): Constify.
9602 * tui/tui-data.c (tui_partial_win_by_name): Constify.
9603 * tui/tui-data.h (tui_partial_win_by_name): Constify.
9604 * tui/tui-source.c (tui_set_source_content_nil): Constify.
9605 * tui/tui-source.h (tui_set_source_content_nil): Constify.
9606 * tui/tui-win.c (parse_scrolling_args): Constify.
9607 * tui/tui-windata.c (tui_erase_data_content): Constify.
9608 * tui/tui-windata.h (tui_erase_data_content): Constify.
9609 * tui/tui-winsource.c (tui_erase_source_content): Constify.
9610 * tui/tui.c (tui_enable): Add cast.
9611 * utils.c (defaulted_query): Constify.
9612 (init_page_info): Add cast.
9613 (puts_debug, subset_compare): Constify.
9614 * utils.h (subset_compare): Constify.
9615 * varobj.c (varobj_format_string): Constify.
9616 * varobj.h (varobj_format_string): Constify.
9617 * vax-tdep.c (vax_register_name): Constify.
9618 * windows-nat.c (windows_detach): Constify.
9619 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
9620 * xml-support.c (gdb_xml_end_element): Constify.
9621 * xml-tdesc.c (tdesc_start_reg): Constify.
9622 * xstormy16-tdep.c (xstormy16_register_name): Constify.
9623 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
9624 * xtensa-tdep.h (xtensa_register_t::name): Constify.
9625
995816ba
PA
96262017-04-05 Pedro Alves <palves@redhat.com>
9627
9628 * proc-api.c (struct trans): Constify.
9629 (procfs_note): Constify.
9630 * proc-events.c (struct trans, syscall_table):
9631 * proc-flags.c (struct trans): Constify.
9632 * proc-utils.h (procfs_note): Constify.
9633 * proc-why.c (struct trans): Constify.
9634 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
9635 (procfs_detach): Constify.
9636 * sol-thread.c (struct string_map): Constify.
9637 (td_err_string, td_state_string): Constify.
9638
3e83a920
PA
96392017-04-05 Pedro Alves <palves@redhat.com>
9640
9641 * proc-api.c (procfs_filename): Don't initialize
9642 procfs_filename.
9643 (prepare_to_trace): Assume procfs_filename is non-NULL.
9644 (_initialize_proc_api): Give procfs_filename a default value here.
9645
63160a43
PA
96462017-04-05 Pedro Alves <palves@redhat.com>
9647
9648 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
9649 'cond_string' parameter.
9650 (extract_exception_regexp): Constify 'string' parameter.
9651 (catch_exception_command_1): Constify.
9652 * breakpoint.c (init_catchpoint)
9653 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
9654 parameter.
9655 (ep_parse_optional_if_clause, catch_fork_command_1)
9656 (catch_exec_command_1): Constify.
9657 * breakpoint.h (init_catchpoint): Constify 'cond_string'
9658 parameter.
9659 (ep_parse_optional_if_clause): Constify.
9660 * cli/cli-utils.c (remove_trailing_whitespace)
9661 (check_for_argument): Constify.
9662 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
9663 non-const overload.
9664 (check_for_argument): Likewise.
9665
9b2eba3d
PA
96662017-04-05 Pedro Alves <palves@redhat.com>
9667
9668 * event-top.c (command_line_handler): Add cast to execute_command
9669 call.
9670 * record-btrace.c (cmd_record_btrace_bts_start)
9671 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
9672 (cmd_record_btrace_start): Add cast to execute_command call.
9673 * record-full.c (record_full_goto_insn):
9674 * record.c (record_start, record_stop): Add cast to
9675 execute_command_to_string calls.
9676 (cmd_record_start): Add cast to execute_command calls.
9677
2adadf51
PA
96782017-04-05 Pedro Alves <palves@redhat.com>
9679
9680 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
9681 static inline function.
9682 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
9683 array and use gdb_PyArg_ParseTupleAndKeywords.
9684 * python/py-cmd.c (cmdpy_init): Likewise.
9685 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
9686 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
9687 (infpy_search_memory): Likewise.
9688 * python/py-objfile.c (objfpy_add_separate_debug_file)
9689 (gdbpy_lookup_objfile): Likewise.
9690 * python/py-symbol.c (gdbpy_lookup_symbol)
9691 (gdbpy_lookup_global_symbol): Likewise.
9692 * python/py-type.c (gdbpy_lookup_type): Likewise.
9693 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
9694 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
9695 Likewise.
9696
0d1f4ceb
PA
96972017-04-05 Pedro Alves <palves@redhat.com>
9698
9699 * python/python-internal.h (gdb_PyGetSetDef): New type.
9700 * python/py-block.c (block_object_getset)
9701 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
9702 * python/py-event.c (event_object_getset)
9703 (finish_breakpoint_object_getset): Likewise.
9704 * python/py-inferior.c (inferior_object_getset): Likewise.
9705 * python/py-infthread.c (thread_object_getset): Likewise.
9706 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
9707 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
9708 * python/py-objfile.c (objfile_getset): Likewise.
9709 * python/py-progspace.c (pspace_getset): Likewise.
9710 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
9711 Likewise.
9712 * python/py-record.c (recpy_record_getset): Likewise.
9713 * python/py-symbol.c (symbol_object_getset): Likewise.
9714 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
9715 Likewise.
9716 * python/py-type.c (type_object_getset, field_object_getset):
9717 Likewise.
9718 * python/py-value.c (value_object_getset): Likewise.
9719
4d759979
PA
97202017-04-05 Pedro Alves <palves@redhat.com>
9721
9722 * python/python-internal.h (gdb_PyObject_CallMethod)
9723 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
9724 New functions.
9725 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
9726 (PySys_GetObject, PySys_SetPath): New macros.
9727
fdf9e36f
PA
97282017-04-05 Pedro Alves <palves@redhat.com>
9729
9730 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
9731 info_osdata_command.
9732 * osdata.c (info_osdata_command): Rename to ...
9733 (info_osdata): ... this. Constify 'type' parameter, and remove
9734 the 'from_tty' parameter. Accept NULL TYPE.
9735 (info_osdata_command): New function.
9736 * osdata.h (info_osdata_command): Remove declaration.
9737 (info_osdata): New declaration.
9738
9f33b8b7
PA
97392017-04-05 Pedro Alves <palves@redhat.com>
9740
9741 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
9742 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
9743 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
9744 parameter.
9745 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
9746 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
9747 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
9748 parameter.
9749 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
9750 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
9751 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
9752 (mi_cmd_file_list_exec_source_files)
9753 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
9754 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
9755 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
9756 parameter.
9757 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
9758 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
9759 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
9760 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
9761 (mi_cmd_stack_info_frame): Constify 'command' parameter.
9762 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
9763 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
9764 'command' parameter.
9765 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
9766 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
9767 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
9768 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
9769 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
9770 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
9771 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
9772 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
9773 (mi_cmd_var_set_update_range): Constify 'command' parameter.
9774 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
9775 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
9776 parameter.
9777 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
9778 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
9779 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
9780 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
9781 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
9782 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
9783 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
9784 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
9785 (mi_cmd_data_list_changed_registers)
9786 (mi_cmd_data_write_register_values)
9787 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
9788 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
9789 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
9790 (mi_cmd_list_features, mi_cmd_list_target_features)
9791 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
9792 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
9793 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
9794 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
9795 (mi_cmd_trace_frame_collected): Constify 'command'
9796 parameter.
9797 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
9798 'command' parameter.
9799
67cb5b2d
PA
98002017-04-05 Pedro Alves <palves@redhat.com>
9801
9802 * ada-lang.c (ada_completer_word_break_characters): Now a const
9803 array.
9804 (ada_get_gdb_completer_word_break_characters): Constify.
9805 * completer.c (gdb_completer_command_word_break_characters)
9806 (gdb_completer_file_name_break_characters)
9807 (gdb_completer_quote_characters): Now const arrays.
9808 (get_gdb_completer_quote_characters): Constify.
9809 (set_rl_completer_word_break_characters): New function.
9810 (set_gdb_completion_word_break_characters)
9811 (complete_line_internal): Use it.
9812 * completer.h (get_gdb_completer_quote_characters): Constify.
9813 (set_rl_completer_word_break_characters): Declare.
9814 * f-lang.c (f_word_break_characters): Constify.
9815 * language.c (default_word_break_characters): Constify.
9816 * language.h (language_defn::la_word_break_characters): Constify.
9817 (default_word_break_characters): Constify.
9818 * top.c (init_main): Use set_rl_completer_word_break_characters.
9819
7a114964
PA
98202017-04-05 Pedro Alves <palves@redhat.com>
9821
9822 * aix-thread.c (aix_thread_pid_to_str)
9823 (aix_thread_extra_thread_info): Constify.
9824 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
9825 * bsd-uthread.c (bsd_uthread_extra_thread_info)
9826 (bsd_uthread_pid_to_str): Constify.
9827 * corelow.c (core_pid_to_str): Constify.
9828 * darwin-nat.c (darwin_pid_to_str): Constify.
9829 * fbsd-nat.c (fbsd_pid_to_str): Constify.
9830 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
9831 Constify.
9832 * gnu-nat.c (gnu_pid_to_str): Constify.
9833 * go32-nat.c (go32_pid_to_str): Constify.
9834 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
9835 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
9836 * inferior.c (inferior_pid_to_str): Constify.
9837 * linux-nat.c (linux_nat_pid_to_str): Constify.
9838 * linux-tdep.c (linux_core_pid_to_str): Constify.
9839 * linux-thread-db.c (thread_db_pid_to_str)
9840 (thread_db_extra_thread_info): Constify.
9841 * nto-tdep.c (nto_extra_thread_info): Constify.
9842 * nto-tdep.h (nto_extra_thread_info): Constify.
9843 * obsd-nat.c (obsd_pid_to_str): Constify.
9844 * procfs.c (procfs_pid_to_str): Constify.
9845 * ravenscar-thread.c (ravenscar_extra_thread_info)
9846 (ravenscar_pid_to_str): Constify.
9847 * remote-sim.c (gdbsim_pid_to_str): Constify.
9848 * remote.c (remote_threads_extra_info, remote_pid_to_str):
9849 Constify.
9850 * sol-thread.c (solaris_pid_to_str): Constify.
9851 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
9852 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
9853 * target.c (default_pid_to_str, target_pid_to_str)
9854 (normal_pid_to_str, default_pid_to_str): Constify.
9855 * target.h (target_ops::to_pid_to_str)
9856 (target_ops::to_extra_thread_info): Constify.
9857 (target_pid_to_str, normal_pid_to_str): Constify.
9858 * windows-nat.c (windows_pid_to_str): Constify.
9859 * gdbarch.sh (core_pid_to_str): Constify.
9860 * target-delegates.c: Regenerate.
9861 * gdbarch.h, gdbarch.c: Regenerate.
9862
69bbf465
PA
98632017-04-05 Pedro Alves <palves@redhat.com>
9864
9865 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
9866 the memory of the temporary warning_pre_print override.
9867 * utils.c (warning_pre_print): Constify.
9868 * utils.h (warning_pre_print): Constify.
9869
be47f9e8
PA
98702017-04-05 Pedro Alves <palves@redhat.com>
9871
9872 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
9873 (shell_command): New function.
9874 (make_command): Use std::string.
9875 (init_cli_cmds): Register shell_command instead of shell_escape.
9876
bde6261a
PA
98772017-04-05 Pedro Alves <palves@redhat.com>
9878
9879 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
9880 * tracepoint.c (default_collect): Don't initialize.
9881
b38ef47f
PA
98822017-04-05 Pedro Alves <palves@redhat.com>
9883
9884 * macroexp.c (macro_buffer::shared): Now a bool.
9885 (init_buffer): Update.
9886 (init_shared_buffer): Constify 'addr' parameter.
9887 (substitute_args, expand, macro_expand, macro_expand_next): Remove
9888 casts.
9889
f995bbe8
PA
98902017-04-05 Pedro Alves <palves@redhat.com>
9891
9892 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
9893 * disasm.c (set_disassembler_options): Constify local.
9894 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
9895
4a596fe2
SDJ
98962017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
9897
9898 PR gdb/21352
9899 * tracefile.c (tsave_command): Fix argument parsing for '-r'
9900 option.
9901
2cad08ea
YQ
99022017-04-05 Yao Qi <yao.qi@linaro.org>
9903
9904 * frame.c (frame_unwind_register_unsigned): Call
9905 frame_unwind_register_value.
9906
55a98976
YQ
99072017-04-05 Yao Qi <yao.qi@linaro.org>
9908
9909 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
9910 Use gdb_test_multiple, and don't match anchor.
9911
4ac40124
PA
99122017-04-05 Pedro Alves <palves@redhat.com>
9913
9914 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
9915 (Write After Approval): Remove Simon Marchi.
9916
c053b654
PA
99172017-04-05 Pedro Alves <palves@redhat.com>
9918
9919 * common/gdb_optional.h (optional::optional): Make constexpr and
9920 initialize m_dummy.
9921
4c7bf4f9
JB
99222017-04-04 John Baldwin <jhb@FreeBSD.org>
9923
9924 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
9925 (amd64fbsd_jmp_buf_reg_offset): Remove.
9926 (amd64fbsd_supply_uthread): Remove function.
9927 (amd64fbsd_collect_uthread): Remove function.
9928 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
9929 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
9930 (x86_64-*-freebsd*): Remove bsd-uthread.o.
9931 (fbsd-nat.c): Update comment.
9932 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
9933 (i386fbsd_jmp_buf_reg_offset): Remove.
9934 (i386fbsd_supply_uthread): Remove function.
9935 (i386fbsd_collect_uthread): Remove function.
9936 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
9937
1e1a8bef
JB
99382017-04-04 John Baldwin <jhb@FreeBSD.org>
9939
9940 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
9941 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
9942 * NEWS: Mention that support for FreeBSD/alpha was removed.
9943 * alpha-fbsd-tdep.c: Delete file.
9944 * config/alpha/fbsd.mh: Delete file.
9945 * configure.host: Delete alpha*-*-freebsd* and
9946 alpha*-*-kfreebsd*-gnu.
9947 * configure.tgt: Delete alpha*-*-freebsd* and
9948 alpha*-*-kfreebsd*-gnu.
9949
49907934
JB
99502017-04-04 John Baldwin <jhb@FreeBSD.org>
9951
9952 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
9953 amd64bsd_store_inferior_registers): Use ptid from regcache.
9954
6f77053d
PA
99552017-04-04 Pedro Alves <palves@redhat.com>
9956
9957 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
9958 data fields, make them private and add "m_" prefixes.
9959 (lnp_state_machine::lnp_state_machine): New ctor.
9960 (record_line, check_line_address, handle_set_discriminator)
9961 (handle_set_address, handle_advance_pc, handle_special_opcode)
9962 (handle_advance_line, handle_set_file, handle_negate_stmt)
9963 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
9964 (end_sequence, advance_line): New methods.
9965 (m_gdbarch, m_record_lines_p): New fields.
9966 (lnp_reader_state): Delete.
9967 (dwarf_record_line): Rename to ...
9968 (lnp_state_machine::record_line): ... adjust.
9969 (init_lnp_state_machine): Delete.
9970 (lnp_state_machine::lnp_state_machine): New.
9971 (check_line_address): Rename to ...
9972 (lnp_state_machine::check_line_address): This.
9973 (dwarf_decode_lines_1): Remove reference to "reader_state".
9974 Adjust lnp_state_machine having a non-default ctor. Use bool.
9975 State machine internal state manipulation moved to
9976 lnp_state_machine methods.
9977
9c541725
PA
99782017-04-04 Pedro Alves <palves@redhat.com>
9979
9980 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9981 unittests/offset-type-selftests.c.
9982 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
9983 * common/offset-type.h: New file.
9984 * common/preprocessor.h: New file.
9985 * common/traits.h: New file.
9986 * common/valid-expr.h: New file.
9987 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
9988 sect_offset and cu_offset strong typedefs throughout.
9989 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
9990 typedefs throughout.
9991 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
9992 sect_offset and cu_offset strong typedefs throughout.
9993 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
9994 typedefs throughout.
9995 * gdbtypes.h: Include "common/offset-type.h".
9996 (cu_offset): Now an offset type (strong typedef) instead of a
9997 struct.
9998 (sect_offset): Likewise.
9999 (union call_site_parameter_u): Rename "param_offset" field to
10000 "param_cu_off".
10001 * unittests/offset-type-selftests.c: New file.
10002
ecfb656c
PA
100032017-04-04 Pedro Alves <palves@redhat.com>
10004
10005 * common/underlying.h: New file.
10006 * dwarf2read.c: Include "common/gdb_optional.h" and
10007 "common/underlying.h".
10008 (dir_index, file_name_index): New types.
10009 (file_entry): Use them.
10010 (file_entry::include): Use to_underlying.
10011 (line_header::add_file_name): Use dir_index.
10012 (read_formatted_entries): Use gdb::optional. Read form before
10013 writting to file_entry.
10014 (dwarf_decode_line_header): Use dir_index.
10015 (lnp_state_machine::current_file): Use to_underlying.
10016 (lnp_state_machine::file): Change type to file_name_index.
10017 (dwarf_record_line): Use to_underlying.
10018 (init_lnp_state_machine): Use file_name_index.
10019 (dwarf_decode_lines_1): Use dir_index and file_name_index.
10020
d194f1fe
PA
100212017-04-04 Pedro Alves <palves@redhat.com>
10022
10023 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
10024 operator bool, has_value and get methods.
10025
fff8551c
PA
100262017-04-04 Pedro Alves <palves@redhat.com>
10027
10028 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
10029 fields.
10030 (line_header): Initialize all data fields. Change type of
10031 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
10032 Change type of include_dirs to std::vector<const char *>. Remove
10033 num_include_dirs, include_dirs_size. Change type of file_names to
10034 std::vector<file_entry>. Remove num_file_names, file_names_size.
10035 (line_header::line_header): New.
10036 (line_header::add_include_dir, line_header::add_file_name): New
10037 methods.
10038 (line_header::include_dir_at): Remove NULL check.
10039 (line_header::file_name_at): Add const overload.
10040 (line_header_up): New unique_ptr typedef.
10041 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
10042 std::vector. Remove free_line_header call.
10043 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
10044 free_line_header call.
10045 (free_cu_line_header): Delete.
10046 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
10047 (setup_type_unit_groups): Use line_header_up instead of cleanups.
10048 Adjust to use std::vector.
10049 (free_line_header): Delete.
10050 (free_line_header_voidp): Use delete.
10051 (add_include_dir): Replace with ...
10052 (line_header::add_include_dir): ... this method. Use std::vector.
10053 (add_file_name): Replace with ...
10054 (line_header::add_file_name): ... this method. Use std::vector.
10055 (add_include_dir_stub): Delete.
10056 (read_formatted_entries): Remove memset.
10057 (dwarf_decode_line_header): Return a line_header_up instead of a
10058 raw pointer. Remove cleanup handling. Pass lambdas to
10059 read_formatted_entries. Adjust to use line_header methods.
10060 (dwarf_decode_lines_1): Adjust to use line_header methods.
10061 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
10062 use std::vector.
10063
d62a8ae2
SM
100642017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
10065
10066 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
10067 instead of struct ptid.
10068
db3a1dc7
AH
100692017-05-04 Alan Hayward <alan.hayward@arm.com>
10070
10071 * frame.c (get_frame_register_bytes): Unwind using value.
10072 (put_frame_register_bytes): Likewise.
10073
b1b45502
IB
100742017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
10075
10076 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
10077 aggregate-like.
10078
ec13808e
JK
100792017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
10080
10081 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
10082
12316564
YQ
100832017-03-29 Yao Qi <yao.qi@linaro.org>
10084
10085 * gdbthread.h (struct thread_info): Declare constructor and
10086 destructor. Add some in-class member initializers.
10087 * thread.c (free_thread): Remove.
10088 (init_thread_list): Call delete instead of free_thread.
10089 (new_thread): Call thread_info constructor.
10090 (thread_info::thread_info): New function.
10091 (thread_info::~thread_info): New function.
10092 (delete_thread_1): Call delete instead of free_thread.
10093 (make_cleanup_restore_current_thread): Move tp and frame to
10094 inner block.
10095
fe5f7374
AK
100962017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
10097
10098 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
10099 (arc_skip_prologue): Likewise.
10100 (arc_make_frame_cache): Likewise.
10101 (arc_pv_get_operand): New function.
10102 (arc_is_in_prologue): Likewise.
10103 (arc_analyze_prologue): Likewise.
10104 (arc_print_frame_cache): Likewise.
10105 (MAX_PROLOGUE_LENGTH): New constant.
10106
eea78757
AK
101072017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
10108
10109 * configure.tgt: Add arc-insn.o.
10110 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
10111 (dump_arc_instruction_command): New function.
10112 (arc_fprintf_disasm): Likewise.
10113 (arc_disassemble_info): Likewise.
10114 (arc_insn_get_operand_value): Likewise.
10115 (arc_insn_get_operand_value_signed): Likewise.
10116 (arc_insn_get_memory_base_reg): Likewise.
10117 (arc_insn_get_memory_offset): Likewise.
10118 (arc_insn_get_branch_target): Likewise.
10119 (arc_insn_dump): Likewise.
10120 (arc_insn_get_linear_next_pc): Likewise.
10121 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
10122 (arc_disassemble_info): Likewise.
10123 (arc_insn_get_branch_target): Likewise.
10124 (arc_insn_get_linear_next_pc): Likewise.
10125 * NEWS: Mention new "maint print arc arc-instruction".
10126
3be78afd
AK
101272017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
10128
10129 * arc-tdep (maintenance_print_arc_list): New variable.
10130 (maintenance_print_arc_command): New function.
10131
296ec4fa
AK
101322017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
10133
10134 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
10135 Add "limm" and "reserved".
10136 (arc_cannot_fetch_register, arc_cannot_store_register): Add
10137 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
10138 * arc-tdep.h (arc_regnum): Likewise.
10139
f74f865e
MF
101402017-03-27 Max Filippov <jcmvbkbc@gmail.com>
10141
10142 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
10143 for THREADPTR register.
10144 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
10145 register.
10146 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
10147 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
10148 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
10149
0d0bf81a
MF
101502017-03-27 Max Filippov <jcmvbkbc@gmail.com>
10151
10152 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
10153 registers above gdbarch_num_regs (gdbarch) as privileged in
10154 call0 ABI.
10155
0ce4291e
MF
101562017-03-27 Max Filippov <jcmvbkbc@gmail.com>
10157
10158 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
10159 for a single specified register or for all registers in
10160 a0_base..a0_base + C0_NREGS range.
10161 (supply_gregset_reg): Call regcache_raw_supply for a single
10162 specified register or for all registers in a0_base..a0_base +
10163 C0_NREGS range.
10164
c56054f9
MF
101652017-03-27 Max Filippov <jcmvbkbc@gmail.com>
10166
10167 * arch/xtensa.h (C0_NREGS): Add definition.
10168 * xtensa-tdep.c (C0_NREGS): Remove definition.
10169
a4398628
MF
101702017-03-27 Max Filippov <jcmvbkbc@gmail.com>
10171
10172 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
10173 Drop xtensa_default_isa initialization.
10174 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
10175
8c43009f
PA
101762017-03-27 Pedro Alves <palves@redhat.com>
10177
10178 * dwarf2read.c (file_entry) <dir_index>: Add comment.
10179 (file_entry::include_dir): New method.
10180 (line_header::include_dir_at, line_header::file_name_at): New
10181 methods.
10182 (setup_type_unit_groups, setup_type_unit_groups)
10183 (psymtab_include_file_name): Simplify using the new methods.
10184 (lnp_state_machine) <the_line_header>: New field.
10185 <file>: Add comment.
10186 (lnp_state_machine::current_file): New method.
10187 (dwarf_record_line): Simplify using the new methods.
10188 (init_lnp_state_machine): Initialize the "the_line_header" field.
10189 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
10190 Simplify using the new methods.
10191
a7e80b9e
PA
101922017-03-27 Pedro Alves <palves@redhat.com>
10193
10194 * cp-name-parser.y (make_empty): Delete.
10195 (demangler_special, nested_name, ptr_operator, array_indicator)
10196 (direct_declarator, declarator_1): Use fill_comp instead of
10197 make_empty.
10198
21047726
PA
101992017-03-27 Pedro Alves <palves@redhat.com>
10200
10201 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
10202 to ATTRIBUTE_PRINTF.
10203 * solib-target.c (library_list_start_list): Print "string" not
10204 "version".
10205 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
10206 gdb_xml_error call.
10207
d721ba37
PA
102082017-03-27 Pedro Alves <palves@redhat.com>
10209
10210 * dwarf2read.c (struct file_and_directory): New.
10211 (dwarf2_get_dwz_file): Adjust to use std::string.
10212 (dw2_get_file_names_reader): Adjust to use file_and_directory.
10213 (find_file_and_directory): Adjust to return a file_and_directory
10214 object.
10215 (read_file_scope): Adjust to use file_and_directory. Remove
10216 make_cleanup/do_cleanups calls.
10217 (open_and_init_dwp_file): Adjust to use std::string. Remove
10218 make_cleanup/do_cleanups calls.
10219 * python/python.c (do_start_initialization): Adjust to ldirname
10220 returning a std::string.
10221 * utils.c (ldirname): Now returns a std::string.
10222 * utils.h (ldirname): Change return type to std::string.
10223 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
10224 returning a std::string.
10225 * xml-tdesc.c (file_read_description_xml): Likewise.
10226
ed771251
AH
102272017-03-24 Alan Hayward <alan.hayward@arm.com>
10228
10229 * regcache.c (regcache_debug_print_register): New function.
10230 * regcache.h (regcache_debug_print_register): New declaration.
10231 * target.c (debug_print_register): Remove.
10232 (target_fetch_registers): Call regcache_debug_print_register.
10233 (target_store_registers): Likewise.
10234
568c1b9f
PB
102352017-03-24 Pádraig Brady <pbrady@fb.com>
10236
10237 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
10238 reference beyond the 'lh->include_dirs' array before accessing to
10239 it.
10240 (psymtab_include_file_name): Likewise.
10241 (dwarf_decode_lines_1): Likewise.
10242 (dwarf_decode_lines): Likewise.
10243 (file_file_name): Likewise.
10244
3e00d44f
SM
102452017-03-23 Simon Marchi <simon.marchi@ericsson.com>
10246
10247 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
10248 inferior_ptid.
10249 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
10250 ps_lsetfpregs): Likewise.
10251 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
10252 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
10253 ps_lsetfpregs): Likewise.
10254 * target.c (target_fetch_registers, target_store_registers):
10255 Remove asserts.
10256
077ae656
AH
102572017-03-23 Alan Hayward <alan.hayward@arm.com>
10258
10259 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
10260
1e2b521d
YQ
102612017-03-23 Yao Qi <yao.qi@linaro.org>
10262
10263 * aarch64-tdep.c (aarch64_process_record_test): Declare.
10264 (_initialize_aarch64_tdep): Register it.
10265 (aarch64_record_load_store): Handle PRFM instruction.
10266 (aarch64_process_record_test): New function.
10267
33877125
YQ
102682017-03-23 Yao Qi <yao.qi@linaro.org>
10269
10270 * aarch64-tdep.c (aarch64_record_load_store): Fix code
10271 indentation.
10272
a0eef940
YQ
102732017-03-23 Yao Qi <yao.qi@linaro.org>
10274
10275 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
10276
3f2a3564
PR
102772017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
10278
10279 python/python.c (do_start_initialization): Fix memory leak.
10280
b67aeab0
SM
102812017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
10282
10283 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
10284 using get_ptrace_pid.
10285 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
10286 inferior_ptid.
10287 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
10288 inferior_ptid instead of pid.
10289
ffdbe864
YQ
102902017-03-22 Yao Qi <yao.qi@linaro.org>
10291
10292 * aarch64-tdep.c: Wrap locally used classes in anonymous
10293 namespace.
10294 * arm-tdep.c: Likewise.
10295 * linespec.c: Likewise.
10296 * ui-out.c: Likewise.
10297
9d736fbf
JG
102982017-03-22 Jonah Graham <jonah@kichwacoders.com>
10299
10300 PR gdb/19637
10301 * python/lib/gdb/printer/bound_registers.py: Import sys.
10302
3de88e9a
SM
103032017-03-21 Simon Marchi <simon.marchi@ericsson.com>
10304
10305 * windows-nat.c (do_windows_fetch_inferior_registers): Add
10306 windows_thread_info parameter and use it instead of
10307 current_thread.
10308 (windows_fetch_inferior_registers): Don't set current_thread,
10309 pass the thread to do_windows_fetch_inferior_registers. Use
10310 ptid from regcache instead of inferior_ptid.
10311 (do_windows_store_inferior_registers): Add windows_thread_info
10312 parameter and use it instead of current_thread.
10313 (windows_store_inferior_registers): Don't set current_thread,
10314 pass the thread to do_windows_store_inferior_registers. Use
10315 ptid from regcache instead of inferior_ptid.
10316
0e7b8f61
SM
103172017-03-21 Simon Marchi <simon.marchi@ericsson.com>
10318
10319 * ser-mingw.c (ser_windows_raw): Remove reference to
10320 struct serial::current_timeout.
10321
5badf10a
IR
103222017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
10323
10324 PR tdep/20928
10325 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
10326 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
10327 (sparc64_fsr_type): Fix %fsr decoding.
10328
cee59b3f
TW
103292017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
10330
10331 * python/py-record-btrace.c (btpy_insn_data): Change return type
10332 for Python 2.
10333
639a9038
SM
103342017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
10335
10336 * spu-linux-nat.c (spu_fetch_inferior_registers,
10337 spu_store_inferior_registers): Use ptid from regcache, set and
10338 restore inferior_ptid.
10339 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
10340 Likewise.
10341
bcc0c096
SM
103422017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
10343
10344 * i386-linux-nat.c (fetch_register, store_register,
10345 i386_linux_fetch_inferior_registers,
10346 i386_linux_store_inferior_registers): Use ptid from regcache.
10347 * ia64-linux-nat.c (ia64_linux_fetch_register,
10348 ia64_linux_store_register): Likewise.
10349 * inf-ptrace.c (inf_ptrace_fetch_register,
10350 inf_ptrace_store_register): Likewise.
10351 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
10352 m32r_linux_store_inferior_registers): Likewise.
10353 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
10354 m68kbsd_store_inferior_registers): Likewise.
10355 * m68k-linux-nat.c (fetch_register, store_register,
10356 m68k_linux_fetch_inferior_registers,
10357 m68k_linux_store_inferior_registers): Likewise.
10358 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
10359 m88kbsd_store_inferior_registers): Likewise.
10360 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
10361 mips_fbsd_store_inferior_registers): Likewise.
10362 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
10363 mips64_linux_regsets_store_registers): Likewise.
10364 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
10365 mipsnbsd_store_inferior_registers): Likewise.
10366 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
10367 mips64obsd_store_inferior_registers): Likewise.
10368 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
10369 Likewise.
10370 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
10371 ppcfbsd_store_inferior_registers): Likewise.
10372 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
10373 ppc_linux_store_inferior_registers): Likewise.
10374 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
10375 ppcnbsd_store_inferior_registers): Likewise.
10376 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
10377 ppcobsd_store_registers): Likewise.
10378 * procfs.c (procfs_fetch_registers, procfs_store_registers):
10379 Likewise.
10380 * ravenscar-thread.c (ravenscar_fetch_registers,
10381 ravenscar_store_registers, ravenscar_prepare_to_store):
10382 Likewise.
10383 * record-btrace.c (record_btrace_fetch_registers,
10384 record_btrace_store_registers, record_btrace_prepare_to_store):
10385 Likewise.
10386 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
10387 Lookup inferior using ptid from regcache, instead of
10388 current_inferior.
10389 * remote.c (remote_fetch_registers, remote_store_registers): Use
10390 ptid from regcache.
10391 * rs6000-nat.c (fetch_register, store_register): Likewise.
10392 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
10393 s390_linux_store_inferior_registers): Likewise.
10394 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
10395 shnbsd_store_inferior_registers): Likewise.
10396 * sol-thread.c (sol_thread_fetch_registers,
10397 sol_thread_store_registers): Likewise.
10398 * sparc-nat.c (sparc_fetch_inferior_registers,
10399 sparc_store_inferior_registers): Likewise.
10400 * tilegx-linux-nat.c (fetch_inferior_registers,
10401 store_inferior_registers): Likewise.
10402 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
10403 vaxbsd_store_inferior_registers): Likewise.
10404 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
10405 store_xtregs): Likewise.
10406
c0f55cc6
AV
104072017-03-20 Artemiy Volkov <artemiyv@acm.org>
10408
10409 PR gdb/14441
10410 * NEWS: Mention support for rvalue references in GDB and python.
10411 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
10412 supports both lvalue and rvalue references.
10413
15c0a2a9
AV
104142017-03-20 Artemiy Volkov <artemiyv@acm.org>
10415
10416 PR gdb/14441
10417 * gdbtypes.c (rank_one_type): Implement overloading
10418 resolution rules regarding rvalue references.
10419
aa006118
AV
104202017-03-20 Artemiy Volkov <artemiyv@acm.org>
10421
10422 PR gdb/14441
10423 * aarch64-tdep.c (aarch64_type_align)
10424 (aarch64_extract_return_value, aarch64_store_return_value): Change
10425 lvalue reference type checks to general reference type checks.
10426 * amd64-tdep.c (amd64_classify): Likewise.
10427 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
10428 Likewise.
10429 * arm-tdep.c (arm_type_align, arm_extract_return_value)
10430 (arm_store_return_value): Likewise.
10431 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
10432 * c-typeprint.c (c_print_type): Likewise.
10433 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
10434 (cplus_number_of_children, cplus_describe_child): Likewise.
10435 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
10436 * completer.c (expression_completer): Likewise.
10437 * cp-support.c (make_symbol_overload_list_adl_namespace):
10438 Likewise.
10439 * darwin-nat-info.c (info_mach_region_command): Likewise.
10440 * dwarf2loc.c (entry_data_value_coerce_ref)
10441 (value_of_dwarf_reg_entry): Likewise.
10442 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
10443 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
10444 Likewise.
10445 * findvar.c (extract_typed_address, store_typed_address):
10446 Likewise.
10447 * gdbtypes.c (rank_one_type): Likewise.
10448 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
10449 * infcall.c (value_arg_coerce): Likewise.
10450 * language.c (pointer_type): Likewise.
10451 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
10452 Likewise.
10453 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
10454 * mn10300-tdep.c (mn10300_type_align): Likewise.
10455 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
10456 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
10457 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
10458 Likewise.
10459 * printcmd.c (print_formatted, x_command): Likewise.
10460 * python/py-type.c (typy_get_composite, typy_template_argument):
10461 Likewise.
10462 * python/py-value.c (valpy_referenced_value)
10463 (valpy_get_dynamic_type, value_has_field): Likewise.
10464 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
10465 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
10466 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
10467 * spu-tdep.c (spu_scalar_value_p): Likewise.
10468 * symtab.c (lookup_symbol_aux): Likewise.
10469 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
10470 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
10471 Likewise.
10472 * valops.c (value_cast_pointers, value_cast)
10473 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
10474 (value_struct_elt, value_struct_elt_bitpos)
10475 (value_find_oload_method_list, find_overload_match)
10476 (value_rtti_indirect_type): Likewise.
10477 * valprint.c (val_print_scalar_type_p, generic_val_print):
10478 Likewise.
10479 * value.c (value_actual_type, value_as_address, unpack_long)
10480 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
10481 (coerce_ref): Likewise.
10482 * varobj.c (varobj_get_value_type): Likewise.
10483
3fcf899d
AV
104842017-03-20 Artemiy Volkov <artemiyv@acm.org>
10485
10486 PR gdb/14441
10487 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
10488 table of constants.
10489 * python/lib/gdb/command/explore.py: Support exploring values
10490 of rvalue reference types.
10491 * python/lib/gdb/types.py: Implement get_basic_type() for
10492 rvalue reference types.
10493 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
10494 constant.
10495 * python/py-value.c (valpy_getitem): Add an rvalue reference
10496 check.
10497 (valpy_reference_value): Add new parameter "refcode".
10498 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
10499 New wrappers for valpy_reference_value().
10500 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
10501 (gdbpy_invoke_xmethod): Likewise.
10502
4297a3f0
AV
105032017-03-20 Artemiy Volkov <artemiyv@acm.org>
10504
10505 PR gdb/14441
10506 * dwarf2read.c (process_die, read_type_die_1): Handle the
10507 DW_TAG_rvalue_reference_type DIE.
10508 (read_tag_reference_type): Add new parameter "refcode".
10509
e1cb3213
AV
105102017-03-20 Artemiy Volkov <artemiyv@acm.org>
10511
10512 PR gdb/14441
10513 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
10514 (c_type_print_modifier, c_type_print_varspec_suffix)
10515 (c_type_print_base): Support printing rvalue reference types.
10516 * c-valprint.c (c_val_print, c_value_print): Support printing
10517 rvalue reference values.
10518
e4347c89
AV
105192017-03-20 Artemiy Volkov <artemiyv@acm.org>
10520
10521 PR gdb/14441
10522 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
10523 typename.
10524 * cp-support.c (replace_typedefs): Handle
10525 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
10526 * python/py-type.c (typy_lookup_type): Likewise.
10527
53cc15f5
AV
105282017-03-20 Artemiy Volkov <artemiyv@acm.org>
10529
10530 PR gdb/14441
10531 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
10532 * parse.c (insert_type): Change assert statement.
10533 (follow_types): Handle rvalue reference types.
10534 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
10535 constant.
10536
a65cfae5
AV
105372017-03-20 Artemiy Volkov <artemiyv@acm.org>
10538
10539 PR gdb/14441
10540 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
10541 value_ref() interface.
10542 * c-valprint.c (c_value_print): Likewise.
10543 * infcall.c (value_arg_coerce): Likewise.
10544 * python/py-value.c (valpy_reference_value): Likewise.
10545 * valops.c (value_cast, value_reinterpret_cast)
10546 (value_dynamic_cast, typecmp): Likewise.
10547 (value_ref): Parameterize by kind of return value reference type.
10548 * value.h (value_ref): Add new parameter "refcode".
10549
3b224330
AV
105502017-03-20 Artemiy Volkov <artemiyv@acm.org>
10551
10552 PR gdb/14441
10553 * dwarf2read.c (read_tag_reference_type): Use
10554 lookup_lvalue_reference_type() instead of lookup_reference_type().
10555 * eval.c (evaluate_subexp_standard): Likewise.
10556 * f-exp.y: Likewise.
10557 * gdbtypes.c (make_reference_type, lookup_reference_type):
10558 Generalize with rvalue reference types.
10559 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
10560 convenience wrappers for lookup_reference_type().
10561 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
10562 reference kind parameter.
10563 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
10564 wrappers for lookup_reference_type().
10565 * guile/scm-type.c (gdbscm_type_reference): Use
10566 lookup_lvalue_reference_type() instead of lookup_reference_type().
10567 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
10568 * parse.c (follow_types): Likewise.
10569 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
10570 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
10571 Likewise.
10572 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
10573 (gdbpy_invoke_xmethod): Likewise.
10574 * stabsread.c: Provide extra argument to make_reference_type()
10575 call.
10576 * valops.c (value_ref, value_rtti_indirect_type): Use
10577 lookup_lvalue_reference_type() instead of lookup_reference_type().
10578
f9aeb8d4
AV
105792017-03-20 Artemiy Volkov <artemiyv@acm.org>
10580
10581 PR gdb/14441
10582 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
10583 (TYPE_IS_REFERENCE): New macro.
10584 (struct type): Add rvalue_reference_type field.
10585 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
10586
51457a05
MAL
105872017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
10588
10589 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
10590 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
10591 New function definition.
10592 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
10593 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
10594 New function declaration.
10595 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
10596 * mi/mi-interp.h: New file.
10597 * solib.c (info_sharedlibrary_command): Replace for loop with
10598 ALL_SO_LIBS macro
10599 * solib.h (update_solib_list): New function declaration.
10600 (so_list_head): Move macro.
10601 * solist.h (ALL_SO_LIBS): New macro.
10602
e696b3ad
MAL
106032017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
10604
10605 * infcmd.c (post_create_inferior): Remove unused argument in
10606 call to solib_add.
10607 * remote.c (remote_start_remote): Likewise.
10608 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
10609 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
10610 (enable_break): Likewise.
10611 * solib.c (update_solib_list): Remove unused target argument
10612 and its documentation.
10613 (solib_add): Remove unused target argument. Remove unused
10614 argument in call to update_solib_list.
10615 (info_sharedlibrary_command): Remove unused argument in call
10616 to update_solib_list.
10617 (sharedlibrary_command): Remove unused argument in call to
10618 solib_add.
10619 (handle_solib_event): Likewise.
10620 (reload_shared_libraries): Likewise.
10621 * solib.h (solib_add): Remove unused target argument.
10622
dcb84eda
AA
106232017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
10624
10625 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
10626 (s390_displaced_step_fixup): Cover relative branches with the
10627 default fixup handling. This fixes lack of support for some
10628 relative branch instructions.
10629
d9cb6cdc
SM
106302017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10631
10632 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
10633 ptid from regcache.
10634
1afaf9f4
SM
106352017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10636
10637 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
10638 i386_darwin_store_inferior_registers): Use ptid from regcache.
10639
aac12e24
SM
106402017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10641
10642 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
10643 i386bsd_store_inferior_registers): Use ptid from regcache.
10644
bbe1eef1
SM
106452017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10646
10647 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
10648 hppaobsd_store_registers): Use ptid from regcache.
10649
10799020
SM
106502017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10651
10652 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
10653 hppanbsd_store_registers): Use ptid from regcache.
10654
00204cf7
SM
106552017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10656
10657 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
10658 from regcache. Use get_ptrace_pid.
10659
11a33714
SM
106602017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10661
10662 * corelow.c (get_core_register_section): Use ptid from regcache,
10663 update doc.
10664
317cd492
SM
106652017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10666
10667 * bsd-uthread.c (bsd_uthread_fetch_registers,
10668 bsd_uthread_store_registers): Use ptid from regcache, set and
10669 restore inferior_ptid.
10670
9ac8a7c2
SM
106712017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10672
10673 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
10674 fetch_fp_regs, store_register, store_regs, store_fp_register,
10675 store_fp_regs): Use ptid from regcache.
10676
4ac4bb6a
SM
106772017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
10678
10679 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
10680 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
10681 store_vfp_regs): Use ptid from regcache.
10682
9bcbdca8
PA
106832017-03-17 Pedro Alves <palves@redhat.com>
10684
10685 PR remote/21188
10686 * ser-base.c (ser_base_wait_for): Add comment.
10687 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
10688 version.
10689 * ser-unix.c (hardwire_raw): Remove reference to
10690 scb->current_timeout.
10691 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
10692 (hardwire_ops): Install ser_base_readchar instead of
10693 hardwire_readchar.
10694 * serial.h (struct serial) <current_timeout, timeout_remaining>:
10695 Remove fields.
10696
7503099f
JG
106972017-03-17 Jonah Graham <jonah@kichwacoders.com>
10698
10699 PR gdb/19637
10700 * python/lib/gdb/printer/bound_registers.py: Add support for
10701 Python 3.
10702
7942e96e
AA
107032017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
10704
10705 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
10706 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
10707 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
10708 byte_offset to subobj_byte_offset. Fix the handling of
10709 DWARF_VALUE_STACK on big-endian targets when coming via an
10710 implicit pointer.
10711 (dwarf2_evaluate_loc_desc): Adjust call to
10712 dwarf2_evaluate_loc_desc_full.
10713 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
10714 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
10715
ba14f379
YQ
107162017-03-16 Yao Qi <yao.qi@linaro.org>
10717
10718 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
10719 and REVSH instructions.
10720
b121eeb9
YQ
107212017-03-16 Yao Qi <yao.qi@linaro.org>
10722
10723 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
10724 (arm_record_test): Declare.
10725 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
10726 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
10727 align with the manual.
10728 (thumb_record_misc): Adjust the code order to align with the
10729 manual.
10730 (thumb2_record_decode_insn_handler): Fix instruction matching.
10731 (instruction_reader_thumb): New class.
10732 (arm_record_test): New function.
10733
728a7913
YQ
107342017-03-16 Yao Qi <yao.qi@linaro.org>
10735
10736 * arm-tdep.c (abstract_memory_reader): New class.
10737 (instruction_reader): New class.
10738 (extract_arm_insn): Add argument 'reader'. Callers updated.
10739 (decode_insn): Likewise.
10740
34b43320
DE
107412017-03-16 Doug Evans <dje@google.com>
10742
a7c0469f
DE
10743 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
10744 member. Change type of TYPE member to SCM. All uses updated.
10745 (lsscm_make_lazy_string_smob): Add assert.
10746 (lsscm_make_lazy_string): Flag bad length values.
10747 (lsscm_elt_type): New function.
10748 (gdbscm_lazy_string_to_value): Rewrite to use
10749 lsscm_safe_lazy_string_to_value.
10750 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
10751 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
10752 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
10753 in incoming type.
10754 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
10755 * guile/scm-type.c (tyscm_scm_to_type): New function.
10756
107572017-03-15 Doug Evans <dje@google.com>
10758
34b43320
DE
10759 PR python/17728, python/18439, python/18779
10760 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
10761 member. Change type of TYPE member to PyObject *. All uses updated.
10762 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
10763 (gdbpy_create_lazy_string_object): Flag bad length values.
10764 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
10765 Handle typedefs in incoming type.
10766 (stpy_lazy_string_elt_type): New function.
10767 (gdbpy_extract_lazy_string): Call it.
10768 * python/py-value.c (valpy_lazy_string): Flag bad length values.
10769 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
10770 typedefs in incoming type.
10771
a3a5fecc
DE
107722017-03-16 Doug Evans <dje@google.com>
10773
10774 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
10775 * guile/scm-type.c (tyscm_scm_to_type): New function.
10776
28f1c605
JW
107772017-03-16 Jiong Wang <jiong.wang@arm.com>
10778
10779 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
10780 "ULONGEST" for "skip".
10781
87c336f6
AA
107822017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
10783
10784 PR gdb/21220
10785 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
10786 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
10787 (inf_ptrace_peek_poke): ...here. New function. Now also loop
10788 over ptrace peek/poke until end of buffer or error.
10789
cf81cf60
SM
107902017-03-14 Simon Marchi <simon.marchi@ericsson.com>
10791
10792 * parse.c (length_of_subexp): Make static.
10793 * parser-defs.h (length_of_subexp): Remove.
10794
a379284a
AA
107952017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
10796
10797 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
10798 as well.
10799
8a6200ba
PA
108002017-03-14 Pedro Alves <palves@redhat.com>
10801
10802 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
10803 (main): Use std::unique_ptr. Remove calls to
10804 cp_demangled_name_parse_free.
10805
f79ec206
SM
108062017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10807
10808 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
10809 alphabsd_store_inferior_registers): Use regcache->ptid instead
10810 of inferior_ptid.
10811
edb5fb00
SM
108122017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10813
10814 * aix-thread.c (aix_thread_fetch_registers,
10815 aix_thread_store_registers): Use regcache->ptid instead of
10816 inferior_ptid.
10817
55119686
SM
108182017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10819
10820 * aarch64-linux-nat.c (fetch_gregs_from_thread,
10821 store_gregs_to_thread, fetch_fpregs_from_thread,
10822 store_fpregs_to_thread): Use regcache->ptid instead of
10823 inferior_ptid.
10824
6a06fbb7
SM
108252017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10826
10827 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
10828 amd64_linux_fetch_inferior_registers): Use regcache->ptid
10829 instead of inferior_ptid.
10830
c6386875
SM
108312017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10832
10833 * target.c (target_fetch_registers, target_store_registers): Add
10834 assert.
10835
ddaaf0fb
SM
108362017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10837
10838 * regcache.h (regcache_get_ptid): New function.
10839 * regcache.c (regcache_get_ptid): New function.
10840
b9da89d1 108412017-03-13 Mark Wielaard <mark@klomp.org>
10842
10843 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
10844
5f4d1085
KS
108452017-03-10 Keith Seitz <keiths@redhat.com>
10846
10847 PR c++/8218
10848 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
10849
c65d6b55
PA
108502017-03-08 Pedro Alves <palves@redhat.com>
10851
10852 PR gdb/18360
10853 * infrun.c (start_step_over, do_target_resume, resume)
10854 (restart_threads): Assert we're not resuming a thread that is
10855 meant to be stopped.
10856 (infrun_thread_stop_requested_callback): Delete.
10857 (infrun_thread_stop_requested): If the thread is internally
10858 stopped, queue a pending stop event and clear the thread's
10859 inline-frame state.
10860 (handle_stop_requested): New function.
10861 (handle_syscall_event, handle_inferior_event_1): Use
10862 handle_stop_requested.
10863 (handle_stop_requested): New function.
10864 (handle_signal_stop): Set the thread's stop_signal here instead of
10865 at caller.
10866 (finish_step_over): Clear step over info unconditionally.
10867 (handle_signal_stop): If the user had interrupted the event
10868 thread, consider the stop a random signal.
10869 (handle_signal_stop) <signal arrived while stepping over
10870 breakpoint>: Don't restart threads here.
10871 (stop_waiting): Don't clear step-over info here.
10872
15c22686
PA
108732017-03-08 Pedro Alves <palves@redhat.com>
10874
10875 PR 21206
10876 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
10877 goes to argument 2, not 1.
10878
6e5d74e7
PA
108792017-03-08 Pedro Alves <palves@redhat.com>
10880
10881 PR cli/21218
10882 * top.c (gdb_readline_wrapper): Avoid passing NULL to
10883 display_gdb_prompt.
10884 (command_line_input): Add comment.
10885
9753a2f6
PA
108862017-03-08 Pedro Alves <palves@redhat.com>
10887
10888 PR tui/21216
10889 * tui/tui-file.c (tui_file::write): New.
10890 * tui/tui-file.h (tui_file): Override "write".
10891 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
10892 factored out from ...
10893 (tui_puts): ... here.
10894 (tui_putc): Use them.
10895 (tui_write): New function.
10896 * tui/tui-io.h (tui_write): Declare.
10897
1672e0d9
SDJ
108982017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
10899
10900 * Makefile.in (SFILES): Replace "environ.c" with
10901 "common/environ.c".
10902 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
10903 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
10904 to...
10905 * common/environ.c: ... here.
10906 * environ.h: Moved to...
10907 * common/environ.h: ... here.
10908
f7bb4e3a
PB
109092017-03-07 Peter Bergner <bergner@vnet.ibm.com>
10910
10911 * gdbarch.sh (pstring_ptr): New static function.
10912 (gdbarch_disassembler_options): Use it.
10913 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
10914 not valid_disassembler_option->name.
10915 * gdbarch.c: Regenerate.
10916
e45ced6c
PB
109172017-03-07 Peter Bergner <bergner@vnet.ibm.com>
10918
10919 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
10920
5f6fd321
PA
109212017-03-07 Pedro Alves <palves@redhat.com>
10922
10923 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
10924
6dbb839a 109252017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
4a612d6f
WT
10926
10927 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
10928 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
10929 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
6dbb839a 10930 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
4a612d6f 10931
d274ecf4
SM
109322017-03-06 Simon Marchi <simon.marchi@ericsson.com>
10933
10934 * xtensa-linux-nat.c (fetch_gregs): Remove const.
10935
df97be55
SM
109362017-03-03 Simon Marchi <simon.marchi@ericsson.com>
10937
10938 * remote.c (remote_add_target_side_commands): Use range-based
10939 for loop.
10940
7d45f3df
YQ
109412017-03-03 Yao Qi <yao.qi@linaro.org>
10942
10943 PR gdb/21165
10944 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
10945 value is lazy.
10946 * valprint.c (common_val_print): Likewise.
10947
65b48a81
PB
109482017-02-28 Peter Bergner <bergner@vnet.ibm.com>
10949
10950 * NEWS: Mention new set/show disassembler-options commands.
10951 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
10952 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
10953 (prospective_options): New static variable.
10954 (gdb_disassembler::gdb_disassembler): Initialize
10955 m_di.disassembler_options.
10956 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
10957 (get_disassembler_options): New function.
10958 (set_disassembler_options): Likewise.
10959 (set_disassembler_options_sfunc): Likewise.
10960 (show_disassembler_options_sfunc): Likewise.
10961 (disassembler_options_completer): Likewise.
10962 (_initialize_disasm): Likewise.
10963 * disasm.h (get_disassembler_options): New prototype.
10964 (set_disassembler_options): Likewise.
10965 * gdbarch.sh (gdbarch_disassembler_options): New variable.
10966 (gdbarch_verify_disassembler_options): Likewise.
10967 * gdbarch.c: Regenerate.
10968 * gdbarch.h: Likewise.
10969 * arm-tdep.c (num_disassembly_options): Delete.
10970 (set_disassembly_style): Likewise.
10971 (arm_disassembler_options): New static variable.
10972 (set_disassembly_style_sfunc): Convert short style name into long
10973 option name. Call set_disassembler_options.
10974 (show_disassembly_style_sfunc): New function.
10975 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
10976 set_gdbarch_verify_disassembler_options.
10977 (_initialize_arm_tdep): Delete regnames variable and update callers.
10978 (arm_disassembler_options): Initialize.
10979 (disasm_options): New variable.
10980 (num_disassembly_options): Rename from this...
10981 (num_disassembly_styles): ...to this. Compute by scanning through
10982 disasm_options.
10983 (valid_disassembly_styles): Initialize using disasm_options.
10984 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
10985 set_arm_regname_option.
10986 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
10987 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
10988 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
10989 set_gdbarch_verify_disassembler_options.
10990 * s390-tdep.c (s390_disassembler_options): New static variable.
10991 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
10992 set_gdbarch_verify_disassembler_options.
10993
d538e36d
SM
109942017-02-27 Simon Marchi <simon.marchi@ericsson.com>
10995
10996 * remote.c (remote_add_target_side_condition): Remove "struct"
10997 keyword from range-based for loop.
10998
83621223
SM
109992017-02-27 Simon Marchi <simon.marchi@ericsson.com>
11000
11001 * remote.c (remote_add_target_side_condition): Use range-based
11002 for loop. Update comment.
11003
2123df0e
YQ
110042017-02-27 Yao Qi <yao.qi@linaro.org>
11005
11006 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
11007
8e368124
AH
110082017-02-26 Alan Hayward <alan.hayward@arm.com>
11009
11010 * regcache.c (regcache_raw_update): New function.
11011 (regcache_raw_read): Move code to regcache_raw_update.
11012 * regcache.h (regcache_raw_update): New declaration.
11013 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
11014
a49dd8dd
JK
110152017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
11016
11017 * dwarf2read.c (create_debug_type_hash_table): Initialize
11018 header.signature and header.type_offset_in_tu.
11019
34e4bae9
PA
110202017-02-24 Pedro Alves <palves@redhat.com>
11021
11022 * symtab.c (make_file_symbol_completion_list_1): Use
11023 add_symtab_completions.
11024
b0e4b369
AH
110252017-02-24 Alan Hayward <alan.hayward@arm.com>
11026
11027 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
11028
975c21ab
AH
110292017-02-24 Alan Hayward <alan.hayward@arm.com>
11030
11031 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
11032 I386_MAX_REGISTER_SIZE.
11033 (i386_pseudo_register_write): Likewise.
11034 (i386_process_record): Likewise.
11035 * i387-tdep.c (i387_supply_xsave): Likewise.
11036 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
11037 (store_register): Likewise.
11038
14bc53a8
PA
110392017-02-23 Pedro Alves <palves@redhat.com>
11040
11041 * ada-lang.c: Include "common/function-view.h".
11042 (ada_iterate_over_symbols): Adjust to use function_view as
11043 callback type.
11044 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
11045 (ada_make_symbol_completion_list): Use a lambda.
11046 (ada_exc_search_name_matches): Delete.
11047 (name_matches_regex): New.
11048 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
11049 * compile/compile-c-support.c: Include "common/function-view.h".
11050 (print_one_macro): Change prototype to accept a ui_file pointer.
11051 (write_macro_definitions): Use a lambda.
11052 * dwarf2read.c: Include "common/function-view.h".
11053 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
11054 (dw2_expand_symtabs_matching): Adjust to use function_view as
11055 callback type.
11056 * language.h: Include "common/function-view.h".
11057 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
11058 function_view as callback type.
11059 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
11060 * linespec.c: Include "common/function-view.h".
11061 (collect_info::add_symbol): New method.
11062 (struct symbol_and_data_callback, iterate_inline_only, struct
11063 symbol_matcher_data, iterate_name_matcher): Delete.
11064 (iterate_over_all_matching_symtabs): Adjust to use function_view
11065 as callback type and lambdas.
11066 (iterate_over_file_blocks): Adjust to use function_view as
11067 callback type.
11068 (decode_compound_collector): Now a class with private fields.
11069 (decode_compound_collector::release_symbols): New method.
11070 (collect_one_symbol): Rename to...
11071 (decode_compound_collector::operator()): ... this and adjust.
11072 (lookup_prefix_sym): decode_compound_collector construction bits
11073 move to decode_compound_collector ctor. Pass the
11074 decode_compound_collector object directly as callback. Remove
11075 cleanups and use decode_compound_collector::release_symbols
11076 instead.
11077 (symtab_collector): Now a class with private fields.
11078 (symtab_collector::release_symtabs): New method.
11079 (add_symtabs_to_list): Rename to...
11080 (symtab_collector::operator()): ... this and adjust.
11081 (collect_symtabs_from_filename): symtab_collector construction
11082 bits move to symtab_collector ctor. Pass the symtab_collector
11083 object directly as callback. Remove cleanups and use
11084 symtab_collector::release_symtabs instead.
11085 (collect_symbols): Delete.
11086 (add_matching_symbols_to_info): Use lambdas.
11087 * macrocmd.c (print_macro_callback): Delete.
11088 (info_macro_command): Use a lambda.
11089 (info_macros_command): Pass print_macro_definition as callable
11090 directly.
11091 (print_one_macro): Remove 'ignore' parameter.
11092 (macro_list_command): Adjust.
11093 * macrotab.c (macro_for_each_data::fn): Now a function_view.
11094 (macro_for_each_data::user_data): Delete field.
11095 (foreach_macro): Adjust to call the function_view.
11096 (macro_for_each): Adjust to use function_view as callback type.
11097 (foreach_macro_in_scope): Adjust to call the function_view.
11098 (macro_for_each_in_scope): Adjust to use function_view as callback
11099 type.
11100 * macrotab.h: Include "common/function-view.h".
11101 (macro_callback_fn): Declare a prototype instead of a pointer.
11102 Remove "user_data" parameter.
11103 (macro_for_each, macro_for_each_in_scope): Adjust to use
11104 function_view as callback type.
11105 * psymtab.c (partial_map_expand_apply)
11106 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
11107 Adjust to use function_view as callback type and to return bool.
11108 (psym_expand_symtabs_matching): Adjust to use function_view as
11109 callback types.
11110 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
11111 to use function_view as callback type and to return bool.
11112 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
11113 callback types.
11114 * symfile.c (expand_symtabs_matching): Adjust to use function_view
11115 as callback types.
11116 * symfile.h: Include "common/function-view.h".
11117 (expand_symtabs_file_matcher_ftype)
11118 (expand_symtabs_symbol_matcher_ftype)
11119 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
11120 return bool.
11121 (quick_symbol_functions::map_symtabs_matching_filename)
11122 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
11123 function_view as callback type and return bool.
11124 (expand_symtabs_matching): Adjust to use function_view as callback
11125 type.
11126 (maintenance_expand_name_matcher)
11127 (maintenance_expand_file_matcher): Delete.
11128 (maintenance_expand_symtabs): Use lambdas.
11129 * symtab.c (iterate_over_some_symtabs): Adjust to use
11130 function_view as callback types and return bool.
11131 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
11132 of a cleanup.
11133 (lookup_symtab_callback): Delete.
11134 (lookup_symtab): Use a lambda.
11135 (iterate_over_symbols): Adjust to use function_view as callback
11136 type.
11137 (struct search_symbols_data, search_symbols_file_matches)
11138 (search_symbols_name_matches): Delete.
11139 (search_symbols): Use a pair of lambdas.
11140 (struct add_name_data, add_macro_name, symbol_completion_matcher)
11141 (symtab_expansion_callback): Delete.
11142 (default_make_symbol_completion_list_break_on_1): Use lambdas.
11143 * symtab.h: Include "common/function-view.h".
11144 (iterate_over_some_symtabs): Adjust to use function_view as
11145 callback type and return bool.
11146 (iterate_over_symtabs): Adjust to use function_view as callback
11147 type.
11148 (symbol_found_callback_ftype): Remove 'data' parameter and return
11149 bool.
11150 (iterate_over_symbols): Adjust to use function_view as callback
11151 type.
11152
07e253aa
PA
111532017-02-23 Pedro Alves <palves@redhat.com>
11154
11155 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
11156 (%.o) <unittests/%.c>: New pattern.
11157 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
11158 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
11159 * common/function-view.h: New file.
11160 * unittests/function-view-selftests.c: New file.
11161 * configure: Regenerate.
11162
8eaf5320
SM
111632017-02-23 Simon Marchi <simon.marchi@ericsson.com>
11164
11165 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
11166 inferior_ptid.
11167 * go32-nat.c (go32_thread_alive): Likewise.
11168
38768751
YQ
111692017-02-23 Yao Qi <yao.qi@linaro.org>
11170
11171 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
11172 delete.
11173
0a8beaba
YQ
111742017-02-23 Yao Qi <yao.qi@linaro.org>
11175
11176 * varobj.c (varobj_clear_saved_item): Use delete instead of
11177 xfree.
11178 (update_dynamic_varobj_children): Likewise.
11179
58fdfd2c
JK
111802017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11181
11182 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
11183
1b90b139
SM
111842017-02-21 Simon Marchi <simon.marchi@ericsson.com>
11185
11186 * common/enum-flags.h (enum_flags::enum_flags): Initialize
11187 m_enum_value to 0 in default constructor.
11188
2039d74e
EBM
111892017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
11190
11191 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
11192 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
11193 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
11194 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
11195 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
11196 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
11197 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
11198 IS_STORE_CONDITIONAL_INSN.
11199
7814882a
JK
112002017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11201
11202 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
11203
0ae60b63
JK
112042017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11205
11206 * NEWS (Changes since GDB 7.12): Add DWARF-5.
11207
0224619f
JK
112082017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11209
11210 * dwarf2read.c (skip_one_die, read_attribute_value)
11211 (dwarf2_const_value_attr, dump_die_shallow)
11212 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
11213 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
11214
0af92d60
JK
112152017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11216
11217 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
11218 (dwarf_parse_macro_header): Accept DWARF version 5.
11219 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
11220
216f72a1
JK
112212017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11222
11223 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
11224 DW_AT_GNU_*.
11225 * common/common-exceptions.h (enum errors): Likewise.
11226 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
11227 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
11228 (dwarf_expr_context::execute_stack_op): Likewise.
11229 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
11230 Likewise.
11231 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
11232 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
11233 (show_entry_values_debug, call_site_to_target_addr)
11234 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
11235 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
11236 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
11237 (value_of_dwarf_block_entry, indirect_pieced_value)
11238 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
11239 (disassemble_dwarf_expression): Likewise.
11240 * dwarf2read.c (process_die, inherit_abstract_dies)
11241 (read_call_site_scope): Likewise.
11242 * gdbtypes.h (struct func_type, struct call_site_parameter)
11243 (struct call_site): Likewise.
11244 * stack.c (read_frame_arg): Likewise.
11245 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
11246
43988095
JK
112472017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11248
11249 * defs.h (read_unsigned_leb128): New declaration.
11250 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
11251 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
11252 (dwarf2_find_location_expression): Call also
11253 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
11254 * dwarf2loc.h (dwarf2_version): New declaration.
11255 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
11256 rnglists.
11257 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
11258 .debug_rnglists.
11259 (struct dwop_section_names): Add loclists_dwo.
11260 (dwop_section_names): Add .debug_loclists.dwo.
11261 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
11262 (struct dwarf2_per_cu_data): Add dwarf_version.
11263 (struct dwo_sections): Add loclists.
11264 (struct attr_abbrev): Add implicit_const.
11265 (read_indirect_line_string): New declaration.
11266 (read_unsigned_leb128): Delete declaration.
11267 (rcuh_kind): New definition.
11268 (read_and_check_comp_unit_head): Change parameter
11269 is_debug_types_section to section_kind.
11270 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
11271 (read_comp_unit_head): Change parameter abfd to section, add parameter
11272 section_kind. Handle DWARF-5.
11273 (error_check_comp_unit_head): Accept also DWARF version 5.
11274 (read_and_check_comp_unit_head): Change parameter
11275 is_debug_types_section to section_kind.
11276 (read_and_check_type_unit_head): Delete function.
11277 (read_abbrev_offset): Handle DWARF-5.
11278 (create_debug_type_hash_table): Add parameter section_kind. Process
11279 only DW_UT_type. Use signature and type_offset_in_tu from struct
11280 comp_unit_head.
11281 (create_debug_types_hash_table): Update create_debug_type_hash_table
11282 caller.
11283 (create_all_type_units): Call create_debug_type_hash_table.
11284 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
11285 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
11286 caller.
11287 (skip_one_die): Handle DW_FORM_implicit_const.
11288 (dwarf2_rnglists_process): New function.
11289 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
11290 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
11291 (read_attribute_value): Handle DW_FORM_implicit_const,
11292 DW_FORM_line_strp.
11293 (read_attribute): Handle DW_FORM_implicit_const.
11294 (read_indirect_string_at_offset_from): New function from
11295 read_indirect_string_at_offset.
11296 (read_indirect_string_at_offset): Call
11297 read_indirect_string_at_offset_from.
11298 (read_indirect_line_string_at_offset): New function.
11299 (read_indirect_string): New function comment.
11300 (read_indirect_line_string): New function.
11301 (read_unsigned_leb128): Make it global.
11302 (dwarf2_string_attr): Handle DWARF-5.
11303 (add_include_dir_stub, read_formatted_entries): New functions.
11304 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
11305 Handle DWARF-5.
11306 (per_cu_header_read_in): Update read_comp_unit_head caller.
11307 (dwarf2_version): New function.
11308 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
11309 rnglists.
11310 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
11311 fields.
11312
22d2f3ab
JK
113132017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11314
11315 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
11316
5f46c5a5
JK
113172017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11318
11319 * dwarf2read.c (dwarf2_ranges_process): New function from
11320 dwarf2_ranges_read.
11321 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
11322 dwarf2_ranges_process.
11323
78d4d2c5
JK
113242017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
11325
11326 * dwarf2read.c (create_debug_type_hash_table): New function from
11327 create_debug_types_hash_table.
11328 (create_debug_types_hash_table): Call create_debug_type_hash_table.
11329 (create_all_type_units, open_and_init_dwo_file): Update
11330 create_debug_types_hash_table callers.
11331
1b076f25
SDJ
113322017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
11333
11334 PR gdb/16188
11335 * fork-child.c (trace_start_error): Fix thinko. va_end should
11336 refer to 'ap', not 'args'.
11337
0db8980c
SDJ
113382017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
11339 Pedro Alves <palves@redhat.com>
11340
11341 PR gdb/16188
11342 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
11343 calls succeeded.
11344 * fork-child.c (trace_start_error): New function.
11345 (trace_start_error_with_name): Likewise.
11346 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
11347 * inf-ptrace.c (inf_ptrace_me): Likewise.
11348 * inferior.h (trace_start_error): New prototype.
11349 (trace_start_error_with_name): Likewise.
11350
99e8a4f9
SDJ
113512017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
11352
11353 PR gdb/21164
11354 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
11355 NULL before using it.
11356 * symmisc.c (maintenance_print_symbols): Likewise.
11357 (maintenance_print_msymbols): Likewise.
11358
4e746bb6
TW
113592017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11360
11361 * NEWS: Add record Python bindings entry.
11362
113632017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11364
11365 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
11366 py-record-full.o.
11367 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
11368 * python/py-record-btrace.c, python/py-record-btrace.h,
11369 python/py-record-full.c, python/py-record-full.h: New file.
11370 * python/py-record.c: Add include for py-record-btrace.h and
11371 py-record-full.h.
11372 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
11373 recpy_instruction_history, recpy_function_call_history, recpy_begin,
11374 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
11375 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
11376 New definition.
11377 (gdbpy_initialize_btrace): New export.
11378 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
11379
113802017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11381
11382 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
11383 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
11384 * python/py-record.c: New file.
11385 * python/python-internal.h (gdbpy_start_recording,
11386 gdbpy_current_recording, gdpy_stop_recording,
11387 gdbpy_initialize_record): New export.
11388 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
11389 (python_GdbMethods): Add gdbpy_start_recording,
11390 gdbpy_current_recording and gdbpy_stop_recording.
11391
113922017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11393
11394 * record-btrace.c (record_btrace_record_method): New function.
11395 (init_record_btrace_ops): Initialize to_record_method.
11396 * record-full.c (record_full_record_method): New function.
11397 (init_record_full_ops, init_record_full_core_ops): Add
11398 record_full_record_method.
11399 * record.h (enum record_method): New enum.
11400 * target-debug.h (target_debug_print_enum_record_method: New define.
11401 * target-delegates.c: Regenerate.
11402 * target.c (target_record_method): New function.
11403 * target.h: Include record.h.
11404 (struct target_ops) <to_record_method>: New field.
11405 (target_record_method): New export.
11406
114072017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11408
11409 * record.h (record_start, record_stop): New export.
11410 * record.c (record_start, record_stop): New function.
11411
114122017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11413
11414 * btrace.c (btrace_fetch): Copy function call segments pointer
11415 into a vector.
11416 (btrace_clear): Clear the vector.
11417 (btrace_find_insn_by_number): Use binary search to find the correct
11418 function call segment.
11419 * btrace.h (brace_fun_p): New typedef.
11420 (struct btrace_thread_info) <functions>: New field.
11421
114222017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11423
11424 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
11425 * btrace.c (btrace_decode_error): ... here. New function.
11426 * btrace.h (btrace_decode_error): New export.
11427
114282017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
11429
11430 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
11431 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
11432 btrace_find_insn_by_number): Remove special case for gaps.
11433 * btrace.h (btrace_insn_get_error): New export.
11434 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
11435 * record-btrace.c (btrace_insn_history): Print number for gaps.
11436 (record_btrace_info, record_btrace_goto): Handle gaps.
11437
3f77c769
TT
114382017-02-14 Tom Tromey <tom@tromey.com>
11439
11440 PR python/13598:
11441 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
11442 event.
11443 * python/py-evts.c (gdbpy_initialize_py_events): Add
11444 before_prompt registry.
11445 * python/py-events.h (events_object) <before_prompt>: New field.
11446
4c2c7ac6
MM
114472017-02-14 Markus Metzger <markus.t.metzger@intel.com>
11448
11449 * btrace.c (ftrace_new_switch): Preserve up link and flags.
11450
5cf30ebf
LM
114512017-02-13 Luis Machado <lgustavo@codesourcery.com>
11452
11453 * symfile (_initialize_symfile): Add usage text to the load command's
11454 help text.
11455
26a06916
SM
114562017-02-10 Simon Marchi <simon.marchi@ericsson.com>
11457
11458 * utils.c (defaulted_query): Don't query on secondary UIs.
11459
0b145e37
TT
114602017-02-10 Tom Tromey <tom@tromey.com>
11461
11462 * rust-lang.c (rust_get_disr_info): Remove unused variable.
11463
2d8365c4
TT
114642017-02-10 Tom Tromey <tom@tromey.com>
11465
11466 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
11467 "cleanup" local.
11468 * python/py-type.c (typy_legacy_template_argument): Remove
11469 unnecessary "cleanup" local.
11470
2bb8f231
TT
114712017-02-10 Tom Tromey <tom@tromey.com>
11472
11473 * python/python.c (do_start_initialization): New function, from
11474 _initialize_python.
11475 (_initialize_python): Call do_start_initialization.
11476 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
11477 goto.
11478
1bdfaf42
TT
114792017-02-10 Tom Tromey <tom@tromey.com>
11480
11481 * python/py-prettyprint.c (pretty_print_one_value): Use
11482 gdbpy_ref.
11483
88b6faea
TT
114842017-02-10 Tom Tromey <tom@tromey.com>
11485
11486 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
11487 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
11488 gdbpy_ref.
11489 * python/py-type.c (field_new): Use gdbpy_ref.
11490 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
11491 gdbpy_ref.
11492 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
11493 (py_free_pspace): Likewise.
11494 (pspace_to_pspace_object): Likewise.
11495 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
11496 (py_free_objfile): Likewise.
11497 (objfile_to_objfile_object): Likewise.
11498 * python/py-inferior.c (delete_thread_object): Use
11499 gdbpy_ref.
11500 (infpy_read_memory): Likewise.
11501 (py_free_inferior): Likewise.
11502 * python/py-evtregistry.c (create_eventregistry_object): Use
11503 gdbpy_ref.
11504 * python/py-event.c (create_event_object): Use gdbpy_ref.
11505
7780f186
TT
115062017-02-10 Tom Tromey <tom@tromey.com>
11507
11508 * python/py-ref.h (gdbpy_ref_policy): Now a template.
11509 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
11510 used.
11511 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
11512 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
11513 python/py-exitedevent.c, python/py-finishbreakpoint.c,
11514 python/py-framefilter.c, python/py-function.c,
11515 python/py-inferior.c, python/py-infevents.c,
11516 python/py-linetable.c, python/py-newobjfileevent.c,
11517 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
11518 python/py-signalevent.c, python/py-stopevent.c,
11519 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
11520 python/py-unwind.c, python/py-utils.c, python/py-value.c,
11521 python/py-varobj.c, python/py-xmethods.c, python/python.c,
11522 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
11523
d4b0bb18
TT
115242017-02-10 Tom Tromey <tom@tromey.com>
11525
11526 * ui-out.h (ui_out_emit_type): New class.
11527 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
11528 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
11529 and ui_out_emit_tuple.
11530 (enumerate_locals): Likewise.
11531 (py_mi_print_variables, py_print_locals, py_print_args): Use
11532 ui_out_emit_list.
11533 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
11534 ui_out_emit_list.
11535 * common/gdb_optional.h: New file.
11536
f67f945c
MG
115372017-02-10 Martin Galvan <martingalvan@sourceware.org>
11538
11539 * MAINTAINERS (Write After Approval): Update my e-mail address.
11540
18da0c51
MG
115412017-02-10 Martin Galvan <martingalvan@sourceware.org>
11542
11543 PR gdb/21122
11544 * breakpoint.c (_initialize_breakpoint): Update the help description
11545 of the 'commands' command to indicate that it takes a list argument.
11546
62c14536
SM
115472017-02-09 Simon Marchi <simon.marchi@ericsson.com>
11548
11549 * interps.c (current_interp_set_logging): Remove "return".
11550
ff6fa247
GB
115512017-02-09 Gary Benson <gbenson@redhat.com>
11552
11553 * symtab.c (add_symtab_completions): Prevent NULL pointer
11554 dereference.
11555
a474bd8e
PA
115562017-02-08 Pedro Alves <palves@redhat.com>
11557
11558 * interps.c (interp::interp): Remove reference to quiet_p.
11559 (interp_set): Make static. Remove dead "Switching to" output
11560 code.
11561 (interp_quiet_p, interp_set_quiet): Delete.
11562 (interpreter_exec_cmd): Don't set the interpreter quiet.
11563 * interps.h (interp_quiet_p): Make static.
11564 (class interp) <quiet_p>: Remove field
11565
3d7b173c
JG
115662017-02-08 Jerome Guitton <guitton@adacore.com>
11567
604c4576
JG
11568 * cli/cli-decode.c (find_command_name_length): Make it extern.
11569 * cli/cli-decode.h (find_command_name_length): Declare.
11570 * cli/cli-script.c (command_name_equals, line_first_arg):
11571 New functions.
11572 (process_next_line): Use cli-decode to parse command names.
11573 (build_command_line): Make args a constant pointer.
11574
115752017-02-08 Jerome Guitton <guitton@adacore.com>
6dbb839a 11576
3d7b173c
JG
11577 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
11578 Remove case-insensitive search.
11579
1291063d
JM
115802017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
11581
11582 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
11583 at the end of the line. Avoids an ARI warning.
11584
20b477a7
LM
115852017-02-06 Luis Machado <lgustavo@codesourcery.com>
11586
11587 * NEWS: Mention support for record/replay of Intel 64 rdrand and
11588 rdseed instructions.
11589 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
11590
3f7b46f2
IR
115912017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
11592
11593 PR tdep/20936
11594 Provide and use sparc32 and sparc64 target description XML files.
11595 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
11596 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
11597 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
11598 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
11599 * features/sparc/sparc32-solaris.xml: New file.
11600 * features/sparc/sparc64-solaris.xml: New file.
11601 * features/sparc/sparc32-solaris.c: Generated.
11602 * features/sparc/sparc64-solaris.c: Generated.
11603 * sparc-tdep.h: Account for differences in target descriptions.
11604 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
11605 (sparc32_register_type): Use target provided registers.
11606 (validate_tdesc_registers): New function.
11607 (sparc32_gdbarch_init): Use tdesc_has_registers.
11608 Set pseudoregister functions.
11609 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
11610 (sparc64_register_type): Use target provided registers.
11611 (sparc64_init_abi): Set pseudoregister functions.
11612
f0fd41c1
TT
116132017-02-03 Tom Tromey <tom@tromey.com>
11614
11615 PR rust/21097:
11616 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
11617 with a single member.
11618
d6f9b0fb
PA
116192017-02-03 Pedro Alves <palves@redhat.com>
11620
11621 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
11622 (cli_interp_base::~cli_interp_base): New.
11623 (cli_interp): New struct.
11624 (as_cli_interp): Cast the interp itself to cli_interp.
11625 (cli_interpreter_pre_command_loop): Rename to ...
11626 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
11627 parameter.
11628 (cli_interpreter_init): Rename to ...
11629 (cli_interp::init): ... this. Remove 'self' parameter. Use
11630 boolean. Make extern.
11631 (cli_interpreter_resume): Rename to ...
11632 (cli_interp::resume): ... this. Remove 'data' parameter. Make
11633 extern.
11634 (cli_interpreter_suspend): Rename to ...
11635 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
11636 extern.
11637 (cli_interpreter_exec): Rename to ...
11638 (cli_interp::exec): ... this. Remove 'data' parameter. Make
11639 extern.
11640 (cli_interpreter_supports_command_editing): Rename to ...
11641 (cli_interp_base::supports_command_editing): ... this. Remove
11642 'interp' parameter. Make extern.
11643 (cli_ui_out): Rename to ...
11644 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
11645 Make extern.
11646 (cli_set_logging): Rename to ...
11647 (cli_interp_base::set_logging): ... this. Remove 'interp'
11648 parameter. Make extern.
11649 (cli_interp_procs): Delete.
11650 (cli_interp_factory): Adjust to use "new".
11651 * cli/cli-interp.h: Include "interps.h".
11652 (struct cli_interp_base): New struct.
11653 * interps.c (struct interp): Delete. Fields moved to interps.h.
11654 (interp_new): Delete.
11655 (interp::interp, interp::~interp): New.
11656 (interp_set): Use bool, and return void. Assume the interpreter
11657 has suspend, init and resume methods, and that the all return
11658 void.
11659 (set_top_level_interpreter): interp_set returns void.
11660 (interp_ui_out): Adapt.
11661 (current_interp_set_logging): Adapt.
11662 (interp_data): Delete.
11663 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
11664 (interp_exec): Adapt.
11665 (top_level_interpreter_data): Delete.
11666 * interps.h (interp_init_ftype, interp_resume_ftype)
11667 (interp_suspend_ftype, interp_exec_ftype)
11668 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
11669 (class interp): New.
11670 (interp_new): Delete.
11671 (interp_set): Now returns void. Use bool.
11672 (interp_data, top_level_interpreter_data): Delete.
11673 * mi/mi-common.h: Include interps.h.
11674 (class mi_interp): Inherit from interp. Define a ctor. Declare
11675 init, resume, suspect, exec, interp_ui_out, set_logging and
11676 pre_command_loop methods.
11677 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
11678 (mi_interpreter_init): Rename to ...
11679 (mi_interp::init): ... this. Remove the 'interp' parameter, use
11680 bool, return void and make extern. Adjust.
11681 (mi_interpreter_resume): ... Rename to ...
11682 (mi_interp::resume): ... this. Remove the 'data' parameter,
11683 return void and make extern. Adjust.
11684 (mi_interpreter_suspend): ... Rename to ...
11685 (mi_interp::suspend): ... this. Remove the 'data' parameter,
11686 return void and make extern. Adjust.
11687 (mi_interpreter_exec): ... Rename to ...
11688 (mi_interp::exec): ... this. Remove the 'data' parameter and make
11689 extern. Adjust.
11690 (mi_interpreter_pre_command_loop): ... Rename to ...
11691 (mi_interp::pre_command_loop): ... this. Remove the 'self'
11692 parameter and make extern.
11693 (mi_on_normal_stop_1): Adjust.
11694 (mi_ui_out): Rename to ...
11695 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
11696 parameter and make extern. Adjust.
11697 (mi_set_logging): Rename to ...
11698 (mi_interp::set_logging): ... this. Remove the 'interp'
11699 parameter and make extern. Adjust.
11700 (mi_interp_procs): Delete.
11701 (mi_interp_factory): Adjust to use 'new'.
11702 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
11703 (mi_print_exception, mi_execute_command, mi_load_progress):
11704 Adjust.
11705 * tui/tui-interp.c (tui_interp): New class.
11706 (as_tui_interp): Return a tui_interp pointer.
11707 (tui_on_normal_stop, tui_on_signal_received)
11708 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
11709 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
11710 to use interp::interp_ui_out.
11711 (tui_init): Rename to ...
11712 (tui_interp::init): ... this. Remove the 'self' parameter, use
11713 bool, return void and make extern. Adjust.
11714 (tui_resume): Rename to ...
11715 (tui_interp::resume): ... this. Remove the 'data' parameter,
11716 return void and make extern. Adjust.
11717 (tui_suspend): Rename to ...
11718 (tui_interp::suspend): ... this. Remove the 'data' parameter,
11719 return void and make extern. Adjust.
11720 (tui_ui_out): Rename to ...
11721 (tui_interp::interp_ui_out): ... this. Remove the 'self'
11722 parameter, and make extern. Adjust.
11723 (tui_exec): Rename to ...
11724 (tui_interp::exec): ... this. Remove the 'data' parameter and
11725 make extern.
11726 (tui_interp_procs): Delete.
11727 (tui_interp_factory): Use "new".
11728
65c40c95
TT
117292017-02-02 Tom Tromey <tom@tromey.com>
11730
11731 * rust-exp.y (ends_raw_string, space_then_number)
11732 (rust_identifier_start_p): Return bool.
11733 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
11734 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
11735 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
11736 (rust_chartype_p): Return bool.
11737 (val_print_struct, rust_print_struct_def, rust_print_type):
11738 Update.
11739 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
11740 Return bool.
11741
b50f188d
TT
117422017-02-02 Tom Tromey <tom@tromey.com>
11743
11744 * rust-lang.c: Reindent.
11745
03c85b11
TT
117462017-02-02 Tom Tromey <tom@tromey.com>
11747
11748 * rust-lang.h (rust_crate_for_block): Update.
11749 * rust-lang.c (rust_crate_for_block): Return std::string.
11750 (rust_get_disr_info): Use std:;string, not
11751 gdb::unique_xmalloc_ptr.
11752 * rust-exp.y (crate_name): Update.
11753
9b6da501
PA
117542017-02-02 Pedro Alves <palves@redhat.com>
11755
11756 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
11757 field out of gdb_disassembler_test and make it static.
11758
ec4cb20b
PA
117592017-02-02 Pedro Alves <palves@redhat.com>
11760
11761 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
11762 mi1_interp and mi_interp fields.
11763
5be5dbf0
PA
117642017-02-02 Pedro Alves <palves@redhat.com>
11765
616268b6
PA
11766 * cli/cli-interp.c (struct saved_output_files, saved_output):
11767 Moved from cli/cli-logging.c.
11768 (cli_set_logging): New function.
11769 (cli_interp_procs): Install cli_set_logging.
11770 * cli/cli-interp.h (make_logging_output, cli_set_logging):
11771 Declare.
11772 * cli/cli-logging.c (struct saved_output_files, saved_output):
11773 Moved to cli/cli-interp.c.
11774 (pop_output_files): Don't save outputs here.
11775 (make_logging_output): New function.
11776 (handle_redirections): Don't build tee nor save previous outputs
11777 here.
11778 * interps.c (current_interp_set_logging): Change prototype.
11779 Assume there's always a set_logging_proc method installed.
11780 * interps.h (interp_set_logging_ftype): Change prototype.
11781 (current_interp_set_logging): Change prototype and adjust comment.
11782 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
11783 use make_logging_output.
11784 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
117852017-02-02 Pedro Alves <palves@redhat.com>
11786
5be5dbf0
PA
11787 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
11788 from ...
11789 (set_logging_overwrite): ... here.
11790 (logging_no_redirect_file): Delete.
11791 (set_logging_redirect): Don't handle redirection on the fly.
11792 Instead warn that "logging off" / "logging on" is necessary.
11793 (pop_output_files): Delete references to logging_no_redirect_file.
11794 (show_logging_command): Always speak in terms of what will happen
11795 once logging is reenabled.
11796
c99cc448
PA
117972017-02-02 Pedro Alves <palves@redhat.com>
11798
11799 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
11800
8b172ce7
PA
118012017-02-02 Pedro Alves <palves@redhat.com>
11802
11803 * disasm.c (gdb_pretty_print_insn): Rename to ...
11804 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
11805 Remove gdbarch parameter. Adapt to clear the object's buffers
11806 instead of allocating new buffers, and to print using the object's
11807 gdb_disassembler instead of calling gdb_print_insn.
11808 (dump_insns): Use gdb_pretty_print_disassembler.
11809 * disasm.h (gdb_pretty_print_insn): Delete declaration.
11810 (gdb_pretty_print_disassembler): New class.
11811 * record-btrace.c (btrace_insn_history): Use
11812 gdb_pretty_print_disassembler.
11813
d7e74731
PA
118142017-02-02 Pedro Alves <palves@redhat.com>
11815
11816 * ada-lang.c (type_as_string): Use string_file.
11817 * ada-valprint.c (ada_print_floating): Use string_file.
11818 * ada-varobj.c (ada_varobj_scalar_image)
11819 (ada_varobj_get_value_image): Use string_file.
11820 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
11821 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
11822 * breakpoint.c (update_inserted_breakpoint_locations)
11823 (insert_breakpoint_locations, reattach_breakpoints)
11824 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
11825 (print_it_watchpoint): Use string_file.
11826 (save_breakpoints): Use stdio_file.
11827 * c-exp.y (oper): Use string_file.
11828 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
11829 tee_file.
11830 (pop_output_files): Use delete.
11831 (handle_redirections): Use stdio_file and tee_file.
11832 * cli/cli-setshow.c (do_show_command): Use string_file.
11833 * compile/compile-c-support.c (c_compute_program): Use
11834 string_file.
11835 * compile/compile-c-symbols.c (generate_vla_size): Take a
11836 'string_file &' instead of a 'ui_file *'.
11837 (generate_c_for_for_one_variable): Take a 'string_file &' instead
11838 of a 'ui_file *'. Use string_file.
11839 (generate_c_for_variable_locations): Take a 'string_file &'
11840 instead of a 'ui_file *'.
11841 * compile/compile-internal.h (generate_c_for_for_one_variable):
11842 Take a 'string_file &' instead of a 'ui_file *'.
11843 * compile/compile-loc2c.c (push, pushf, unary, binary)
11844 (print_label, pushf_register_address, pushf_register)
11845 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
11846 'ui_file *'. Adjust.
11847 * compile/compile.c (compile_to_object): Use string_file.
11848 * compile/compile.h (compile_dwarf_expr_to_c)
11849 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
11850 'ui_file *'.
11851 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
11852 (replace_typedefs_qualified_name): Use string_file and
11853 obstack_copy0.
11854 * disasm.c (gdb_pretty_print_insn): Use string_file.
11855 (gdb_disassembly): Adjust reference the null_stream global.
11856 (do_ui_file_delete): Delete.
11857 (gdb_insn_length): Use null_stream.
11858 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
11859 * dwarf2loc.c (dwarf2_compile_property_to_c)
11860 (locexpr_generate_c_location, loclist_generate_c_location): Take a
11861 'string_file &' instead of a 'ui_file *'.
11862 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
11863 * dwarf2read.c (do_ui_file_peek_last): Delete.
11864 (dwarf2_compute_name): Use string_file.
11865 * event-top.c (gdb_setup_readline): Use stdio_file.
11866 * gdbarch.sh (verify_gdbarch): Use string_file.
11867 * gdbtypes.c (safe_parse_type): Use null_stream.
11868 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
11869 string_file.
11870 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
11871 'string_file *' instead of a 'ui_file *'.
11872 (gdbscm_arch_disassemble): Use string_file.
11873 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
11874 * guile/scm-ports.c (class ioscm_file_port): Now a class that
11875 inherits from ui_file.
11876 (ioscm_file_port_delete, ioscm_file_port_rewind)
11877 (ioscm_file_port_put): Delete.
11878 (ioscm_file_port_write): Rename to ...
11879 (ioscm_file_port::write): ... this. Remove file_port_magic
11880 checks.
11881 (ioscm_file_port_new): Delete.
11882 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
11883 ui_file_up.
11884 * guile/scm-type.c (tyscm_type_name): Use string_file.
11885 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
11886 Use string_file.
11887 * infcmd.c (print_return_value_1): Use string_file.
11888 * infrun.c (print_target_wait_results): Use string_file.
11889 * language.c (add_language): Use string_file.
11890 * location.c (explicit_to_string_internal): Use string_file.
11891 * main.c (captured_main_1): Use null_file.
11892 * maint.c (maintenance_print_architecture): Use stdio_file.
11893 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
11894 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
11895 event_channel>: Change type to mi_console_file pointer.
11896 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
11897 (mi_console_file_delete): Delete.
11898 (struct mi_console_file): Delete.
11899 (mi_console_file_magic): Delete.
11900 (mi_console_file_new): Delete.
11901 (mi_console_file::mi_console_file): New.
11902 (mi_console_file_delete): Delete.
11903 (mi_console_file_fputs): Delete.
11904 (mi_console_file::write): New.
11905 (mi_console_raw_packet): Delete.
11906 (mi_console_file::flush): New.
11907 (mi_console_file_flush): Delete.
11908 (mi_console_set_raw): Rename to ...
11909 (mi_console_file::set_raw): ... this.
11910 * mi/mi-console.h (class mi_console_file): New class.
11911 (mi_console_file_new, mi_console_set_raw): Delete.
11912 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
11913 (mi_set_logging): Use delete and tee_file. Adjust.
11914 * mi/mi-main.c (output_register): Use string_file.
11915 (mi_cmd_data_evaluate_expression): Use string_file.
11916 (mi_cmd_data_read_memory): Use string_file.
11917 (mi_cmd_execute, print_variable_or_computed): Use string_file.
11918 * mi/mi-out.c (mi_ui_out::main_stream): New.
11919 (mi_ui_out::rewind): Use main_stream and
11920 string_file.
11921 (mi_ui_out::put): Use main_stream and string_file.
11922 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
11923 Allocate a 'string_file' instead.
11924 (mi_out_new): Don't allocate a mem_fileopen stream here.
11925 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
11926 (mi_ui_out::main_stream): Declare method.
11927 * printcmd.c (eval_command): Use string_file.
11928 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
11929 * python/py-arch.c (archpy_disassemble): Use string_file.
11930 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
11931 * python/py-frame.c (frapy_str): Use string_file.
11932 * python/py-framefilter.c (py_print_type, py_print_single_arg):
11933 Use string_file.
11934 * python/py-type.c (typy_str): Use string_file.
11935 * python/py-unwind.c (unwind_infopy_str): Use string_file.
11936 * python/py-value.c (valpy_str): Use string_file.
11937 * record-btrace.c (btrace_insn_history): Use string_file.
11938 * regcache.c (regcache_print): Use stdio_file.
11939 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
11940 * remote.c (escape_buffer): Use string_file.
11941 * rust-lang.c (rust_get_disr_info): Use string_file.
11942 * serial.c (serial_open_ops_1): Use stdio_file.
11943 (do_serial_close): Use delete.
11944 * stack.c (print_frame_arg): Use string_file.
11945 (print_frame_args): Remove local mem_fileopen stream, not used.
11946 (print_frame): Use string_file.
11947 * symmisc.c (maintenance_print_symbols): Use stdio_file.
11948 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
11949 Take a 'string_file *' instead of a 'ui_file *'.
11950 * top.c (new_ui): Use stdio_file and stderr_file.
11951 (free_ui): Use delete.
11952 (execute_command_to_string): Use string_file.
11953 (quit_confirm): Use string_file.
11954 * tracepoint.c (collection_list::append_exp): Use string_file.
11955 * tui/tui-disasm.c (tui_disassemble): Use string_file.
11956 * tui/tui-file.c: Don't include "ui-file.h".
11957 (enum streamtype, struct tui_stream): Delete.
11958 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
11959 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
11960 (tui_file::tui_file): New method.
11961 (tui_file_fputs): Delete.
11962 (tui_file_get_strbuf): Delete.
11963 (tui_file::puts): New method.
11964 (tui_file_adjust_strbuf): Delete.
11965 (tui_file_flush): Delete.
11966 (tui_file::flush): New method.
11967 * tui/tui-file.h: Tweak intro comment.
11968 Include ui-file.h.
11969 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
11970 (tui_file_adjust_strbuf): Delete declarations.
11971 (class tui_file): New class.
11972 * tui/tui-io.c (tui_initialize_io): Use tui_file.
11973 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
11974 (tui_register_format): Use string_stream.
11975 * tui/tui-stack.c (tui_make_status_line): Use string_file.
11976 (tui_get_function_from_frame): Use string_file.
11977 * typeprint.c (type_to_string): Use string_file.
11978 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
11979 (null_stream): New global.
11980 (ui_file_delete): Delete.
11981 (ui_file::ui_file): New.
11982 (null_file_isatty): Delete.
11983 (ui_file::~ui_file): New.
11984 (null_file_rewind): Delete.
11985 (ui_file::printf): New.
11986 (null_file_put): Delete.
11987 (null_file_flush): Delete.
11988 (ui_file::putstr): New.
11989 (null_file_write): Delete.
11990 (ui_file::putstrn): New.
11991 (null_file_read): Delete.
11992 (ui_file::putc): New.
11993 (null_file_fputs): Delete.
11994 (null_file_write_async_safe): Delete.
11995 (ui_file::vprintf): New.
11996 (null_file_delete): Delete.
11997 (null_file::write): New.
11998 (null_file_fseek): Delete.
11999 (null_file::puts): New.
12000 (ui_file_data): Delete.
12001 (null_file::write_async_safe): New.
12002 (gdb_flush, ui_file_isatty): Adjust.
12003 (ui_file_put, ui_file_rewind): Delete.
12004 (ui_file_write): Adjust.
12005 (ui_file_write_for_put): Delete.
12006 (ui_file_write_async_safe, ui_file_read): Adjust.
12007 (ui_file_fseek): Delete.
12008 (fputs_unfiltered): Adjust.
12009 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
12010 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
12011 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
12012 (set_ui_file_data): Delete.
12013 (string_file::~string_file, string_file::write)
12014 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
12015 (do_ui_file_as_string, ui_file_as_string): Delete.
12016 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
12017 (struct mem_file): Delete.
12018 (mem_file_new): Delete.
12019 (stdio_file::stdio_file): New.
12020 (mem_file_delete): Delete.
12021 (stdio_file::stdio_file): New.
12022 (mem_fileopen): Delete.
12023 (stdio_file::~stdio_file): New.
12024 (mem_file_rewind): Delete.
12025 (stdio_file::set_stream): New.
12026 (mem_file_put): Delete.
12027 (stdio_file::open): New.
12028 (mem_file_write): Delete.
12029 (stdio_file_magic, struct stdio_file): Delete.
12030 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
12031 (stdio_file::flush): New.
12032 (stdio_file_read): Rename to ...
12033 (stdio_file::read): ... this. Adjust.
12034 (stdio_file_write): Rename to ...
12035 (stdio_file::write): ... this. Adjust.
12036 (stdio_file_write_async_safe): Rename to ...
12037 (stdio_file::write_async_safe) ... this. Adjust.
12038 (stdio_file_fputs): Rename to ...
12039 (stdio_file::puts) ... this. Adjust.
12040 (stdio_file_isatty): Delete.
12041 (stdio_file_fseek): Delete.
12042 (stdio_file::isatty): New.
12043 (stderr_file_write): Rename to ...
12044 (stderr_file::write) ... this. Adjust.
12045 (stderr_file_fputs): Rename to ...
12046 (stderr_file::puts) ... this. Adjust.
12047 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
12048 (stderr_file::stderr_file): New.
12049 (tee_file_magic): Delete.
12050 (struct tee_file): Delete.
12051 (tee_file::tee_file): New.
12052 (tee_file_new): Delete.
12053 (tee_file::~tee_file): New.
12054 (tee_file_delete): Delete.
12055 (tee_file_flush): Rename to ...
12056 (tee_file::flush): ... this. Adjust.
12057 (tee_file_write): Rename to ...
12058 (tee_file::write): ... this. Adjust.
12059 (tee_file::write_async_safe): New.
12060 (tee_file_fputs): Rename to ...
12061 (tee_file::puts): ... this. Adjust.
12062 (tee_file_isatty): Rename to ...
12063 (tee_file::isatty): ... this. Adjust.
12064 * ui-file.h (struct obstack, struct ui_file): Don't
12065 forward-declare.
12066 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
12067 (ui_file_write_ftype)
12068 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
12069 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
12070 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
12071 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
12072 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
12073 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
12074 (set_ui_file_fseek): Delete.
12075 (ui_file_data, ui_file_delete, ui_file_rewind)
12076 (struct ui_file): New.
12077 (ui_file_up): New.
12078 (class null_file): New.
12079 (null_stream): Declare.
12080 (ui_file_write_for_put, ui_file_put): Delete.
12081 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
12082 Delete.
12083 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
12084 (gdb_fopen, tee_file_new): Delete.
12085 (struct string_file): New.
12086 (struct stdio_file): New.
12087 (stdio_file_up): New.
12088 (struct stderr_file): New.
12089 (class tee_file): New.
12090 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
12091 of a 'ui_file *'. Adjust.
12092 * ui-out.h (class ui_out) <field_stream>: Likewise.
12093 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
12094 (null_stream): Delete.
12095 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
12096 Adjust.
12097 * utils.h (struct ui_file): Delete forward declaration..
12098 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
12099 (error_stream): Take a 'string_file &' instead of a
12100 'ui_file *'.
12101 * varobj.c (varobj_value_get_print_value): Use string_file.
12102 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
12103 * gdbarch.c: Regenerate.
12104
187808b0
PA
121052017-02-02 Pedro Alves <palves@redhat.com>
12106
12107 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
12108 (gdb_pretty_print_insn): ... this. Now a free function. Add back
12109 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
12110 Adjust to call gdb_print_insn instead of
12111 gdb_disassembler::print_insn.
12112 (dump_insns, do_mixed_source_and_assembly_deprecated)
12113 (do_mixed_source_and_assembly, do_assembly_only): Add back a
12114 'gdbarch' parameter. Remove gdb_disassembler parameter.
12115 (gdb_disassembly): Don't allocate a gdb_disassembler here.
12116 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
12117 declaration.
12118 (gdb_pretty_print_insn): Re-add declaration.
12119 * record-btrace.c (btrace_insn_history): Don't allocate a
12120 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
12121
7a8eb317
SM
121222017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
12123
12124 * disasm.h (gdb_disassembly): Remove file_string parameter.
12125 * disasm.c (gdb_disassembly): Likewise.
12126 * cli/cli-cmds.c (print_disassembly): Adapt.
12127 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
12128 * stack.c (do_gdb_disassembly): Likewise.
12129
7346ef59
AA
121302017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
12131
12132 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
12133 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
12134 targets. And if the implicit value is longer than needed, extract
12135 the first bytes instead of the "least significant" ones.
12136
cd4007e4
MM
121372017-02-01 Markus Metzger <markus.t.metzger@intel.com>
12138
12139 * btrace.c (btrace_enable): Do not call btrace_add_pc for
12140 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
12141 (btrace_fetch): Assert can_access_registers_ptid.
12142 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
12143 validate_registers_access.
12144
cf77c34e
MM
121452017-02-01 Markus Metzger <markus.t.metzger@intel.com>
12146
12147 * gdbthread.h (can_access_registers_ptid): New.
12148 * thread.c (can_access_registers_ptid): New.
12149
be85ce7d
PA
121502017-02-01 Pedro Alves <palves@redhat.com>
12151
12152 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
12153
29b0b251
PA
121542017-01-31 Pedro Alves <palves@redhat.com>
12155
12156 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
12157 Fix typos.
12158
289b5b24
PA
121592017-01-31 Pedro Alves <palves@redhat.com>
12160
12161 * stack.c (print_frame_args): Remove local mem_fileopen stream,
12162 not used.
12163
b47413b4
PA
121642017-01-31 Pedro Alves <palves@redhat.com>
12165
12166 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
12167
60adb36c
PA
121682017-01-31 Pedro Alves <palves@redhat.com>
12169
12170 * common/scoped_restore.h
12171 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
12172 change the value's parameter type to T2.
12173 (make_scoped_restore): Likewise.
12174
2735833d
WT
121752017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
12176 Richard Henderson <rth@redhat.com>
12177
12178 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
12179 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
12180 GS_BASE for older kernels.
12181 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
12182 GS_BASE for older kernels.
12183 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
12184 and GS_BASE to the offset table.
12185 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
12186 system register group.
12187 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
12188 for older kernels.
12189 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
12190 amd64 ABI.
12191 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
12192 AMD64_GSBASE_REGNUM.
12193 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
12194 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
12195 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
12196 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
12197 i386/64bit-segments.xml in those rules.
12198 * features/i386/64bit-segments.xml: New file.
12199 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
12200 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
12201 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
12202 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
12203 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
12204 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
12205 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
12206 * features/i386/amd64-avx-linux.c: Regenerated.
12207 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
12208 * features/i386/amd64-avx-mpx.c: Regenerated.
12209 * features/i386/amd64-avx512-linux.c: Regenerated.
12210 * features/i386/amd64-linux.c: Regenerated.
12211 * features/i386/amd64-mpx-linux.c: Regenerated.
12212 * features/i386/i386-avx-mpx-linux.c: Regenerated.
12213 * features/i386/i386-avx-mpx.c: Regenerated.
12214 * features/i386/x32-avx-linux.c: Regenerated.
12215 * features/i386/x32-avx512-linux.c: Regenerated.
12216 * regformats/i386/amd64-avx-linux.dat: Regenerated.
12217 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
12218 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
12219 * regformats/i386/amd64-linux.dat: Regenerated.
12220 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
12221 * regformats/i386/x32-avx-linux.dat: Regenerated.
12222 * regformats/i386/x32-avx512-linux.dat: Regenerated.
12223 * regformats/i386/x32-linux.dat: Regenerated.
12224
8884e97e
WT
122252017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
12226
12227 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
12228 Set to AMD64_NUM_REGS.
12229
7005d26a
WT
122302017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
12231
12232 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
12233 that checks validity of a register number.
12234
4bd2e1b2
KC
122352017-01-27 Kees Cook <keescook@google.com>
12236
12237 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
12238 fetch_fpregs if target has fpa registers.
12239 (arm_linux_store_inferior_registers): Call store_fpregs if target
12240 has fpa registers.
12241
7cf1de6c
AA
122422017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
12243
12244 * cris-tdep.c (cris_gdbarch_init): Remove check for
12245 info.byte_order and force it to BFD_ENDIAN_LITTLE.
12246
874a1c8c
AT
122472017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
12248
12249 * corelow.c (get_core_register_section): Check for regset
12250 existence before checking for REGSET_VARIABLE_SIZE.
12251
d8b49cf0
YQ
122522017-01-26 Yao Qi <yao.qi@linaro.org>
12253 Pedro Alves <palves@redhat.com>
12254
12255 PR gdb/20939
12256 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
12257 call memory_error, save memaddr instead.
12258 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
12259 negative, cal memory_error.
12260 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
12261
658ca58c
YQ
122622017-01-26 Yao Qi <yao.qi@linaro.org>
12263
12264 * disasm-selftests.c (memory_error_test): New function.
12265 (_initialize_disasm_selftests): Register memory_error_test.
12266
79843d45
YQ
122672017-01-26 Yao Qi <yao.qi@linaro.org>
12268
12269 * Makefile.in (SFILES): Add disasm-selftests.c and
12270 selftest-arch.c.
12271 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
12272 * disasm-selftests.c: New file.
12273 * selftest-arch.c: New file.
12274 * selftest-arch.h: New file.
12275
8cafda32
YQ
122762017-01-26 Yao Qi <yao.qi@linaro.org>
12277
12278 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
12279 to bfd_arch_mep. Don't return 0 if section is not
12280 found. Call print_insn_mep.
12281
e47ad6c0
YQ
122822017-01-26 Pedro Alves <palves@redhat.com>
12283 Yao Qi <yao.qi@linaro.org>
12284
12285 * arm-tdep.c: Include "disasm.h".
12286 (gdb_print_insn_arm): Update code to get gdbarch.
12287 * disasm.c (dis_asm_read_memory): Change it to
12288 gdb_disassembler::dis_asm_read_memory.
12289 (dis_asm_memory_error): Likewise.
12290 (dis_asm_print_address): Likewise.
12291 (gdb_pretty_print_insn): Change it to
12292 gdb_disassembler::pretty_print_insn.
12293 (dump_insns): Add one argument gdb_disassemlber. All
12294 callers updated.
12295 (do_mixed_source_and_assembly_deprecated): Likewise.
12296 (do_mixed_source_and_assembly): Likewise.
12297 (do_assembly_only): Likewise.
12298 (gdb_disassembler::gdb_disassembler): New.
12299 (gdb_disassembler::print_insn): New.
12300 * disasm.h (class gdb_disassembler): New.
12301 (gdb_pretty_print_insn): Remove declaration.
12302 (gdb_disassemble_info): Likewise.
12303 * guile/scm-disasm.c (class gdbscm_disassembler): New.
12304 (gdbscm_disasm_read_memory_worker): Update.
12305 (gdbscm_disasm_read_memory): Update.
12306 (gdbscm_disasm_memory_error): Remove.
12307 (gdbscm_disasm_print_address): Remove.
12308 (gdbscm_disassembler::gdbscm_disassembler): New.
12309 (gdbscm_print_insn_from_port): Update.
12310 * mips-tdep.c: Include disasm.h.
12311 (gdb_print_insn_mips): Update code to get gdbarch.
12312 * record-btrace.c (btrace_insn_history): Update.
12313 * spu-tdep.c: Include disasm.h.
12314 (struct spu_dis_asm_data): Remove.
12315 (struct spu_dis_asm_info): New.
12316 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
12317 SPU id.
12318 (gdb_print_insn_spu): Cast disassemble_info to
12319 spu_dis_asm_info.
12320
80d75874
YQ
123212017-01-26 Yao Qi <yao.qi@linaro.org>
12322
12323 * disasm.c (do_ui_file_delete): Delete.
12324 (gdb_insn_length): Move code creating stream to ...
12325 * utils.c (null_stream): ... here. New function.
12326 * utils.h (null_stream): Declare.
12327
60685cd0
SM
123282017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
12329
12330 * python/py-inferior.c (find_thread_object): Return directly
12331 from the loop. Remove "found" variable.
12332
eb1cdb62
JB
123332017-01-21 Joel Brobecker <brobecker@adacore.com>
12334
12335 GDB 7.12.1 released.
12336
b1ce6568
SM
123372017-01-20 Simon Marchi <simon.marchi@ericsson.com>
12338
12339 * python/py-function.c (fnpy_call): Reorder declarations to have
12340 the gdbpy_enter object declared first.
12341 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
12342
6f8b0407
SM
123432017-01-20 Simon Marchi <simon.marchi@ericsson.com>
12344
fec93fb1 12345 PR python/21068
6f8b0407
SM
12346 * python/python-internal.h (PyMem_RawMalloc): Define for
12347 Python < 3.4.
12348 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
12349 PyMem_RawMalloc instead of PyMem_Malloc.
12350
78cbbba8
LM
123512017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
12352 Luis Machado <lgustavo@codesourcery.com>
12353
12354 * NEWS (New commands): Mention flash-erase.
12355 (New MI commands): Mention target-flash-erase.
12356 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
12357 command.
12358 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
12359 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
12360 * target.c (flash_erase_command): New function.
12361 (initialize_targets): Add new flash-erase command.
12362 * target.h (flash_erase_command): New declaration.
12363
2132fe85
JB
123642017-01-20 Joel Brobecker <brobecker@adacore.com>
12365
12366 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
12367 HAVE_SYS_PROCFS_H is defined.
12368
d1dff226
AH
123692017-01-18 Alan Hayward <alan.hayward@arm.com>
12370
12371 * remote.c (struct cached_reg): Change data into a pointer.
12372 * (stop_reply_dtr): Free data pointers before deleting vector.
12373 (process_stop_reply): Likewise.
12374 (remote_parse_stop_reply): Allocate space for data
12375
9890e433
AH
123762017-01-18 Alan Hayward <alan.hayward@arm.com>
12377
12378 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
12379 MAX_REGISTER_SIZE.
12380 (amd64_pseudo_register_read_value): Likewise.
12381 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
12382 (store_register_using_P): Likewise.
12383 * regcache.c (regcache_xfer_part): Likewise.
12384
7a36499a
IR
123852017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
12386
12387 Split real and pseudo registers.
12388 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
12389 (sparc32_pseudo_regnum): New enum.
12390 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
12391 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
12392 (SPARC32_CP0_REGISTERS): New macro.
12393 (sparc32_pseudo_register_name): New function.
12394 (sparc32_register_name): Use sparc32_pseudo_register_name.
12395 (sparc32_pseudo_register_type): New function.
12396 (sparc32_register_type): Use sparc32_pseudo_register_type.
12397 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
12398 pseudo register numbers.
12399 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
12400 (SPARC64_CP0_REGISTERS): New macro.
12401 (sparc64_pseudo_register_name): New function.
12402 (sparc64_register_name): Use sparc64_pseudo_register_name.
12403 (sparc64_pseudo_register_type): New function.
12404 (sparc64_register_type): Use sparc64_pseudo_register_type.
12405 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
12406 pseudo register numbers.
12407 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
12408 sparc64_store_arguments): Handle pseudo register numbers.
12409
6f8976bf
YQ
124102017-01-13 Yao Qi <yao.qi@linaro.org>
12411
12412 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
12413 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
12414 output.
12415 (getpkt_or_notif_sane_1): Likewise.
12416
e4241ace
YQ
124172017-01-13 Yao Qi <yao.qi@linaro.org>
12418
12419 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
12420 of CC. Pass "-x c++-header" instead of "-x c".
12421
3015c064
SM
124222017-01-12 Simon Marchi <simon.marchi@ericsson.com>
12423
12424 * remote.c (remote_can_async_p): Update comment.
12425
fde1b17d
SM
124262017-01-12 Simon Marchi <simon.marchi@ericsson.com>
12427
12428 * linux-nat.c (linux_nat_can_async_p): Update comment.
12429
ca1ca08b
SM
124302017-01-12 Simon Marchi <simon.marchi@ericsson.com>
12431
12432 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
12433
4ad2da73
SM
124342017-01-11 Simon Marchi <simon.marchi@ericsson.com>
12435
12436 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
12437
c8b23b3f
TT
124382017-01-10 Tom Tromey <tom@tromey.com>
12439
12440 * python/py-type.c (typy_legacy_template_argument): Update.
12441 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
12442 ~demangle_parse_info): Declare new members.
12443 (cp_demangled_name_to_comp): Return unique_ptr.
12444 (cp_demangled_name_parse_free)
12445 (make_cleanup_cp_demangled_name_parse_free)
12446 (cp_new_demangle_parse_info): Remove.
12447 * cp-support.c (do_demangled_name_parse_free_cleanup)
12448 (make_cleanup_cp_demangled_name_parse_free): Remove.
12449 (inspect_type, cp_canonicalize_string_full)
12450 (cp_canonicalize_string): Update.
12451 (mangled_name_to_comp): Change return type.
12452 (cp_class_name_from_physname, method_name_from_physname)
12453 (cp_func_name, cp_remove_params): Update.
12454 * cp-name-parser.y (demangle_parse_info): New constructor, from
12455 cp_new_demangle_parse_info.
12456 (~demangle_parse_info): New destructor, from
12457 cp_demangled_name_parse_free.
12458 (cp_merge_demangle_parse_infos): Update.
12459 (cp_demangled_name_to_comp): Change return type.
12460
1ac32117
TT
124612017-01-10 Tom Tromey <tom@tromey.com>
12462
12463 * top.c (prevent_dont_repeat): Change return type.
12464 * python/python.c (execute_gdb_command): Use std::string.
12465 Update.
12466 * guile/guile.c (gdbscm_execute_gdb_command): Update.
12467 * command.h (prevent_dont_repeat): Change return type.
12468 * breakpoint.c (bpstat_do_actions_1): Update.
12469
0cf08227
TT
124702017-01-10 Tom Tromey <tom@tromey.com>
12471
12472 * value.h (scoped_value_mark::~scoped_value_mark): Call
12473 free_to_mark.
12474 (scoped_value_mark::free_to_mark): New method.
12475 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
12476 scoped_value_mark.
12477
eb115069
TT
124782017-01-10 Tom Tromey <tom@tromey.com>
12479
12480 * python/py-value.c (valpy_dereference, valpy_referenced_value)
12481 (valpy_reference_value, valpy_const_value, valpy_get_address)
12482 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12483 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
12484 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
12485 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
12486 scoped_value_mark.
12487 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
12488 * value.h (scoped_value_mark): New class.
12489
906768f9
TT
124902017-01-10 Tom Tromey <tom@tromey.com>
12491
12492 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
12493 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
12494 * psymtab.c (discard_psymtabs_upto): Remove.
12495 (make_cleanup_discard_psymtabs): Remove.
12496 (struct psymtab_state): Remove.
12497
bef155c3
TT
124982017-01-10 Tom Tromey <tom@tromey.com>
12499
12500 * record-full.c (record_full_save_cleanups): Remove.
12501 (record_full_save): Use gdb::unlinker.
12502 * gcore.c (do_bfd_delete_cleanup): Remove.
12503 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
12504 cleanups.
12505 * dwarf2read.c (unlink_if_set): Remove.
12506 (write_psymtabs_to_index): Use gdb::unlinker.
12507 * common/gdb_unlinker.h: New file.
12508
192b62ce
TT
125092017-01-10 Tom Tromey <tom@tromey.com>
12510
12511 * windows-tdep.c (windows_xfer_shared_library): Update.
12512 * windows-nat.c (windows_make_so): Update.
12513 * utils.h (make_cleanup_bfd_unref): Remove.
12514 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
12515 * symfile.h (symfile_bfd_open)
12516 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
12517 * symfile.c (read_symbols, symbol_file_add)
12518 (separate_debug_file_exists): Update.
12519 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
12520 (generic_load, reread_symbols): Update.
12521 * symfile-mem.c (symbol_file_add_from_memory): Update.
12522 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
12523 (spu_symbol_file_add_from_memory): Update.
12524 * solist.h (struct target_so_ops) <bfd_open>: Return
12525 gdb_bfd_ref_ptr.
12526 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
12527 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
12528 gdb_bfd_ref_ptr.
12529 (solib_map_sections, reload_shared_libraries_1): Update.
12530 * solib-svr4.c (enable_break): Update.
12531 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
12532 * solib-frv.c (enable_break2): Update.
12533 * solib-dsbt.c (enable_break): Update.
12534 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
12535 gdb_bfd_ref_ptr.
12536 (darwin_solib_get_all_image_info_addr_at_init): Update.
12537 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
12538 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
12539 * record-full.c (record_full_save): Update.
12540 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
12541 * procfs.c (insert_dbx_link_bpt_in_file): Update.
12542 * minidebug.c (find_separate_debug_file_in_section): Return
12543 gdb_bfd_ref_ptr.
12544 * machoread.c (macho_add_oso_symfile): Change abfd to
12545 gdb_bfd_ref_ptr.
12546 (macho_symfile_read_all_oso): Update.
12547 (macho_check_dsym): Return gdb_bfd_ref_ptr.
12548 (macho_symfile_read): Update.
12549 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
12550 (jit_bfd_try_read_symtab): Update.
12551 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
12552 (gdb_bfd_openw, gdb_bfd_openr_iovec)
12553 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
12554 gdb_bfd_ref_ptr.
12555 (gdb_bfd_ref_policy): New struct.
12556 (gdb_bfd_ref_ptr): New typedef.
12557 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
12558 (gdb_bfd_openw, gdb_bfd_openr_iovec)
12559 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
12560 gdb_bfd_ref_ptr.
12561 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
12562 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
12563 (gcore_command): Update.
12564 * exec.c (exec_file_attach): Update.
12565 * elfread.c (elf_symfile_read): Update.
12566 * dwarf2read.c (dwarf2_get_dwz_file): Update.
12567 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
12568 (open_and_init_dwo_file): Update.
12569 (open_dwp_file): Return gdb_bfd_ref_ptr.
12570 (open_and_init_dwp_file): Update.
12571 * corelow.c (core_open): Update.
12572 * compile/compile-object-load.c (compile_object_load): Update.
12573 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
12574 * coffread.c (coff_symfile_read): Update.
12575 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
12576 gdb_bfd_ref_ptr. Rename.
12577 (dump_bfd_file, restore_command): Update.
12578 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
12579 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
12580 (find_separate_debug_file_by_buildid): Update.
12581
50315b21
TT
125822017-01-10 Tom Tromey <tom@tromey.com>
12583
12584 * common/gdb_ref_ptr.h: New file.
12585 * python/py-ref.h (struct gdbpy_ref_policy): New.
12586 (gdbpy_ref): Now a typedef.
12587
fc4007c9
TT
125882017-01-10 Tom Tromey <tom@tromey.com>
12589
12590 * utils.h (make_cleanup_htab_delete): Don't declare.
12591 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
12592 Remove.
12593 * linespec.c (decode_compound_collector): Add constructor,
12594 destructor.
12595 (lookup_prefix_sym): Remove cleanup.
12596 (symtab_collector): Add constructor, destructor.
12597 (collect_symtabs_from_filename): Remove cleanup.
12598 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
12599 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
12600 Use htab_up.
12601 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
12602 * dwarf2read.c (dw2_expand_symtabs_matching)
12603 (dw2_map_symbol_filenames, dwarf_decode_macros)
12604 (write_psymtabs_to_index): Use htab_up.
12605 * dwarf2loc.c (func_verify_no_selftailcall)
12606 (call_site_find_chain_1, func_verify_no_selftailcall)
12607 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
12608 std::vector, gdb::unique_xmalloc_ptr.
12609 (call_sitep): Remove typedef.
12610 (dwarf2_locexpr_baton_eval): Remove unused variable.
12611
8dbcee67
TT
126122017-01-10 Tom Tromey <tom@tromey.com>
12613
12614 * python/python-internal.h (make_cleanup_py_decref)
12615 (make_cleanup_py_xdecref): Don't declare.
12616 * python/py-utils.c (py_decref, make_cleanup_py_decref)
12617 (py_xdecref, make_cleanup_py_xdecref): Remove.
12618
13df46cc
TT
126192017-01-10 Tom Tromey <tom@tromey.com>
12620
12621 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
12622 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
12623
06fc9bf7
TT
126242017-01-10 Tom Tromey <tom@tromey.com>
12625
12626 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
12627
830a4934
TT
126282017-01-10 Tom Tromey <tom@tromey.com>
12629
12630 * python/py-utils.c (unicode_to_encoded_string)
12631 (python_string_to_target_string)
12632 (python_string_to_target_python_string)
12633 (python_string_to_host_string, gdbpy_obj_to_string)
12634 (get_addr_from_python): Use gdbpy_ref.
12635
4586d543
TT
126362017-01-10 Tom Tromey <tom@tromey.com>
12637
12638 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
12639 gdbpy_ref.
12640
59876f8f
TT
126412017-01-10 Tom Tromey <tom@tromey.com>
12642
12643 * python/python.c (eval_python_command, gdbpy_decode_line)
12644 (gdbpy_run_events, gdbpy_start_type_printers)
12645 (gdbpy_apply_type_printers): Use gdbpy_ref.
12646
97d83487
TT
126472017-01-10 Tom Tromey <tom@tromey.com>
12648
12649 * python/py-param.c (get_doc_string, compute_enum_values): Use
12650 gdbpy_ref.
12651
9205649a
TT
126522017-01-10 Tom Tromey <tom@tromey.com>
12653
12654 * python/py-inferior.c (find_thread_object, build_inferior_list):
12655 Use gdbpy_ref.
12656
74c49d45
TT
126572017-01-10 Tom Tromey <tom@tromey.com>
12658
12659 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
12660
16361ffb
TT
126612017-01-10 Tom Tromey <tom@tromey.com>
12662
12663 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
12664 gdbpy_ref.
12665
905f2cca
TT
126662017-01-10 Tom Tromey <tom@tromey.com>
12667
12668 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
12669 extra incref.
12670 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
12671 Use gdbpy_ref.
12672
64081434
TT
126732017-01-10 Tom Tromey <tom@tromey.com>
12674
12675 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
12676 gdbpy_ref.
12677
59e9e831
TT
126782017-01-10 Tom Tromey <tom@tromey.com>
12679
12680 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
12681 decref results of PyArg_ParseTupleAndKeywords.
12682
9de10f6d
TT
126832017-01-10 Tom Tromey <tom@tromey.com>
12684
12685 * python/python.c (python_run_simple_file): Use
12686 unique_xmalloc_ptr, gdbpy_ref.
12687
2bd5759d
TT
126882017-01-10 Tom Tromey <tom@tromey.com>
12689
12690 * python/py-prettyprint.c (print_stack_unless_memory_error)
12691 (print_string_repr, print_children): Use gdbpy_ref.
12692 (dummy_python_frame): New class.
12693 (dummy_python_frame::dummy_python_frame): Rename from
12694 push_dummy_python_frame.
12695 (py_restore_tstate): Remove.
12696
3b4e0e01
TT
126972017-01-10 Tom Tromey <tom@tromey.com>
12698
12699 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
12700
17a22718
TT
127012017-01-10 Tom Tromey <tom@tromey.com>
12702
12703 * python/python.c (ensure_python_env, restore_python_env):
12704 Remove.
12705 * python/python-internal.h (ensure_python_env): Don't declare.
12706 * varobj.h (varobj_ensure_python_env): Don't declare.
12707 * varobj.c (varobj_ensure_python_env): Remove.
12708
68cdc557
TT
127092017-01-10 Tom Tromey <tom@tromey.com>
12710
12711 * varobj.c (varobj_value_get_print_value): Use
12712 gdbpy_enter_varobj.
12713
1eba6383
TT
127142017-01-10 Tom Tromey <tom@tromey.com>
12715
12716 * python/py-prettyprint.c (print_string_repr, print_children):
12717 Update.
12718 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
12719 of "encoding".
12720 * varobj.c (varobj_value_get_print_value): Update.
12721 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
12722
bde7b3e3
TT
127232017-01-10 Tom Tromey <tom@tromey.com>
12724
12725 * varobj.c (varobj_get_display_hint)
12726 (dynamic_varobj_has_child_method, install_new_value_visualizer)
12727 (varobj_set_visualizer, free_variable): Use
12728 gdbpy_enter_varobj.
12729
a7785f8c
TT
127302017-01-10 Tom Tromey <tom@tromey.com>
12731
12732 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
12733 (do_finish_initialization): New function. Use gdbpy_ref.
12734 (gdbpy_finish_initialization): Use gdbpy_enter. Call
12735 do_finish_initialization.
12736
2865bfce
TT
127372017-01-10 Tom Tromey <tom@tromey.com>
12738
12739 * python/py-param.c (get_set_value, get_show_value): Use
12740 gdbpy_enter, gdbpy_ref.
12741
0e9dcc75
TT
127422017-01-10 Tom Tromey <tom@tromey.com>
12743
12744 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
12745
12a5cedd
TT
127462017-01-10 Tom Tromey <tom@tromey.com>
12747
12748 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
12749
788f2586
TT
127502017-01-10 Tom Tromey <tom@tromey.com>
12751
12752 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
12753 Use gdbpy_enter_varobj.
12754
6cd67bea
TT
127552017-01-10 Tom Tromey <tom@tromey.com>
12756
12757 * varobj.c (gdbpy_enter_varobj): New constructor.
12758 * python/python-internal.h (gdbpy_enter_varobj): New class.
12759 * python/py-varobj.c (py_varobj_get_iterator): Use
12760 gdbpy_enter_varobj.
12761
14b122bf
TT
127622017-01-10 Tom Tromey <tom@tromey.com>
12763
12764 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
12765 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
12766 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
12767 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
12768 unique_xmalloc_ptr.
12769 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
12770
bf1ca3b9
TT
127712017-01-10 Tom Tromey <tom@tromey.com>
12772
12773 * python/py-xmethods.c (invoke_match_method): Use
12774 gdbpy_ref.
12775
572a5524
TT
127762017-01-10 Tom Tromey <tom@tromey.com>
12777
12778 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
12779 gdbpy_enter, gdbpy_ref.
12780
396a78b6
TT
127812017-01-10 Tom Tromey <tom@tromey.com>
12782
12783 * python/python.c (python_interactive_command): Use gdbpy_enter.
12784
a88b13c7
TT
127852017-01-10 Tom Tromey <tom@tromey.com>
12786
12787 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
12788 gdbpy_ref.
12789
e9f0c363
TT
127902017-01-10 Tom Tromey <tom@tromey.com>
12791
12792 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
12793 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
12794
6349f452
TT
127952017-01-10 Tom Tromey <tom@tromey.com>
12796
12797 * utils.h (htab_deleter): New struct.
12798 (htab_up): New typedef.
12799 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
12800 gdbpy_enter, gdbpy_ref, htab_up.
12801
c0171de6
TT
128022017-01-10 Tom Tromey <tom@tromey.com>
12803
12804 * python/py-unwind.c (pending_frame_invalidate): Remove.
12805 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
12806
f18e226f
TT
128072017-01-10 Tom Tromey <tom@tromey.com>
12808
12809 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
12810 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
12811
c57af3f1
TT
128122017-01-10 Tom Tromey <tom@tromey.com>
12813
12814 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
12815
60e600ec
TT
128162017-01-10 Tom Tromey <tom@tromey.com>
12817
12818 * python/python.c (gdbpy_eval_from_control_command)
12819 (gdbpy_source_script, gdbpy_run_events)
12820 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
12821 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
12822 gdbpy_enter.
12823
bf7da5b0
TT
128242017-01-10 Tom Tromey <tom@tromey.com>
12825
12826 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
12827
2d38bced
TT
128282017-01-10 Tom Tromey <tom@tromey.com>
12829
12830 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
12831
07bc7329
TT
128322017-01-10 Tom Tromey <tom@tromey.com>
12833
12834 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
12835 (python_on_inferior_call_pre, python_on_inferior_call_post)
12836 (python_on_memory_change, python_on_register_change)
12837 (python_inferior_exit, python_new_objfile, add_thread_object)
12838 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
12839
6e7c365e
TT
128402017-01-10 Tom Tromey <tom@tromey.com>
12841
12842 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
12843 (bpfinishpy_handle_exit): Use gdbpy_enter.
12844
6ba0cd40
TT
128452017-01-10 Tom Tromey <tom@tromey.com>
12846
12847 * python/py-cmd.c (cmdpy_destroyer)
12848 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
12849 gdbpy_enter.
12850
de2dc875
TT
128512017-01-10 Tom Tromey <tom@tromey.com>
12852
12853 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
12854 gdbpy_enter.
12855 (gdbpy_breakpoint_has_cond): Likewise.
12856
4ecee2c4
TT
128572017-01-10 Tom Tromey <tom@tromey.com>
12858
12859 * python/python.c (gdbpy_enter): New constructor.
12860 (~gdbpy_enter): New destructor.
12861 (restore_python_env, ensure_python_env): Rewrite.
12862 * python/python-internal.h (gdbpy_enter): New class.
12863
37fce74f
TT
128642017-01-10 Tom Tromey <tom@tromey.com>
12865
12866 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
12867
53a0cca3
TT
128682017-01-10 Tom Tromey <tom@tromey.com>
12869
12870 * python/py-value.c (value_has_field, get_field_flag)
12871 (get_field_type, valpy_getitem, convert_value_from_python): Use
12872 gdbpy_ref.
12873
ff3724f5
TT
128742017-01-10 Tom Tromey <tom@tromey.com>
12875
12876 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
12877 gdbpy_ref.
12878
0700aea5
TT
128792017-01-10 Tom Tromey <tom@tromey.com>
12880
12881 * python/py-prettyprint.c (search_pp_list)
12882 (find_pretty_printer_from_objfiles)
12883 (find_pretty_printer_from_progspace)
12884 (find_pretty_printer_from_gdb, find_pretty_printer)
12885 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
12886 gdbpy_ref.
12887
1bb44c9f
TT
128882017-01-10 Tom Tromey <tom@tromey.com>
12889
12890 * python/py-param.c (call_doc_function): Use gdbpy_ref.
12891
87ce03fd
TT
128922017-01-10 Tom Tromey <tom@tromey.com>
12893
12894 * python/py-linetable.c (build_line_table_tuple_from_pcs)
12895 (ltpy_get_all_source_lines): Use gdbpy_ref.
12896
ee0a3fb8
TT
128972017-01-10 Tom Tromey <tom@tromey.com>
12898
12899 * python/py-framefilter.c (extract_sym, extract_value)
12900 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
12901 gdbpy_ref.
12902
bf2a52fa
TT
129032017-01-10 Tom Tromey <tom@tromey.com>
12904
12905 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
12906
f59fe7f8
TT
129072017-01-10 Tom Tromey <tom@tromey.com>
12908
12909 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
12910
80bd970a
TT
129112017-01-10 Tom Tromey <tom@tromey.com>
12912
12913 * python/py-function.c (convert_values_to_python, fnpy_init): Use
12914 gdbpy_ref.
12915
d1b3de2e
TT
129162017-01-10 Tom Tromey <tom@tromey.com>
12917
12918 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
12919
3bb43384
TT
129202017-01-10 Tom Tromey <tom@tromey.com>
12921
12922 * python/py-type.c (convert_field, make_fielditem, typy_fields)
12923 (typy_range): Use gdbpy_ref.
12924
abf5651e
TT
129252017-01-10 Tom Tromey <tom@tromey.com>
12926
12927 * python/py-threadevent.c (create_thread_event_object): Use
12928 gdbpy_ref.
12929 * python/py-stopevent.c (create_stop_event_object): Simplify.
12930 (emit_stop_event): Use gdbpy_ref.
12931 * python/py-signalevent.c (create_signal_event_object): Use
12932 gdbpy_ref.
12933 * python/py-newobjfileevent.c (create_new_objfile_event_object)
12934 (emit_new_objfile_event, create_clear_objfiles_event_object)
12935 (emit_clear_objfiles_event): Use gdbpy_ref.
12936 * python/py-infevents.c (create_inferior_call_event_object)
12937 (create_register_changed_event_object)
12938 (create_memory_changed_event_object, emit_inferior_call_event)
12939 (emit_memory_changed_event, emit_register_changed_event): Use
12940 gdbpy_ref.
12941 * python/py-exitedevent.c (create_exited_event_object)
12942 (emit_exited_event): Use gdbpy_ref.
12943 * python/py-event.h (evpy_emit_event): Remove
12944 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
12945 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
12946 * python/py-continueevent.c (emit_continue_event): Use
12947 gdbpy_ref.
12948 * python/py-breakpoint.c (gdbpy_breakpoint_created)
12949 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
12950 gdbpy_ref.
12951 * python/py-bpevent.c (create_breakpoint_event_object): Use
12952 gdbpy_ref.
12953
a68ff33e
TT
129542017-01-10 Tom Tromey <tom@tromey.com>
12955
12956 * python/py-ref.h: New file.
12957
7becfd03
SM
129582017-01-10 Simon Marchi <simon.marchi@ericsson.com>
12959
12960 * cli-out.c (cli_ui_out::do_redirect): Change return type to
12961 void.
12962 * cli-out.h (cli_ui_out::do_redirect): Likewise.
12963 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
12964 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
12965 * ui-out.c (ui_out::redirect): Likewise.
12966 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
12967 * cli/cli-logging.c (set_logging_redirect): Update call site of
12968 ui_out::redirect.
12969 (handle_redirections): Likewise.
12970 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
12971 * top.c (execute_command_to_string): Likewise.
12972 * utils.c (do_ui_out_redirect_pop): Likewise.
12973
df294654
SM
129742017-01-10 Simon Marchi <simon.marchi@ericsson.com>
12975
12976 * stack.c (_initialize_stack): Update "frame" command help message.
12977
f5e6296e
IB
129782017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
12979
12980 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
12981
0e2d6fa6
YQ
129822017-01-06 Yao Qi <yao.qi@linaro.org>
12983
12984 * x86-linux-nat.h: Include gdb_proc_service.h.
12985
44d6d3f9
YQ
129862017-01-06 Yao Qi <yao.qi@linaro.org>
12987
12988 * ser-base.h: Include serial.h.
12989
656731fe
YQ
129902017-01-06 Yao Qi <yao.qi@linaro.org>
12991
12992 * ppc-linux-tdep.h: Include ppc-tdep.h.
12993
1ca8f924
YQ
129942017-01-06 Yao Qi <yao.qi@linaro.org>
12995
12996 * nat/amd64-linux-siginfo.h: Include signal.h.
12997
bc3008c4
YQ
129982017-01-06 Yao Qi <yao.qi@linaro.org>
12999
13000 * nat/aarch64-linux-hw-point.h: Include break-common.h.
13001
66c80d03
YQ
130022017-01-06 Yao Qi <yao.qi@linaro.org>
13003
13004 * mi/mi-parse.h: Include mi-cmds.h.
13005
051d2dda
YQ
130062017-01-06 Yao Qi <yao.qi@linaro.org>
13007
13008 * inf-loop.c: Don't include "target.h".
13009 * inf-loop.h: Include it here.
13010
8018d34f
YQ
130112017-01-06 Yao Qi <yao.qi@linaro.org>
13012
13013 * dfp.h: Include "dboulest.h" and "expression.h".
13014
c0b8369c
YQ
130152017-01-06 Yao Qi <yao.qi@linaro.org>
13016
13017 * ax-gdb.h: Include "ax.h".
13018
ad5cba2a
YQ
130192017-01-06 Yao Qi <yao.qi@linaro.org>
13020
13021 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
13022 with nat/gdb_ptrace.h.
13023
1c33cd7f
YQ
130242017-01-05 Yao Qi <yao.qi@linaro.org>
13025
13026 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
13027 new line.
13028 (mips64_fbsd_sigframe_init): Likewise.
13029
c988ac1d
JB
130302017-01-04 John Baldwin <jhb@FreeBSD.org>
13031
13032 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
13033 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
13034
b268007c
JB
130352017-01-04 John Baldwin <jhb@FreeBSD.org>
13036
13037 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
13038 * NEWS: Mention new FreeBSD/mips native configuration.
13039 * config/mips/fbsd.mh: New file.
13040 * configure.host: Add mips*-*-freebsd*.
13041 * mips-fbsd-nat.c: New file.
13042
387360da
JB
130432017-01-04 John Baldwin <jhb@FreeBSD.org>
13044
13045 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
13046 (ALLDEPFILES): Add mips-fbsd-tdep.c.
13047 * NEWS: Mention new FreeBSD/mips target.
13048 * configure.tgt: Add mips*-*-freebsd*.
13049 * mips-fbsd-tdep.c: New file.
13050 * mips-fbsd-tdep.h: New file.
13051
2aaaf250
YQ
130522017-01-04 Yao Qi <yao.qi@linaro.org>
13053
13054 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
13055 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
13056
61baf725
JB
130572017-01-01 Joel Brobecker <brobecker@adacore.com>
13058
6dbb839a 13059 Update copyright year range in all GDB files.
61baf725 13060
c113e7ff 130612017-01-01 Joel Brobecker <brobecker@adacore.com>
ce0db137 13062
c113e7ff 13063 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
ce0db137 13064
c113e7ff 13065For older changes see ChangeLog-2016.
c906108c
SS
13066\f
13067Local Variables:
13068mode: change-log
13069left-margin: 8
13070fill-column: 74
13071version-control: never
57da7796 13072coding: utf-8
c906108c 13073End:
This page took 2.687788 seconds and 4 git commands to generate.