Constify two functions in valprint.c
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
b0a8e6c4
TT
12017-09-27 Tom Tromey <tom@tromey.com>
2
3 * valprint.c (set_radix, show_radix): Constify.
4
8d97dc1c
TT
52017-09-27 Tom Tromey <tom@tromey.com>
6
7 * dtrace-probe.c (info_probes_dtrace_command): Constify.
8
eb7c454d
TT
92017-09-27 Tom Tromey <tom@tromey.com>
10
11 * command.h (not_just_help_class_command): Update.
12 * cli/cli-decode.h (not_just_help_class_command): Update.
13 * cli/cli-decode.c (not_just_help_class_command): Constify.
14
e4e33335
TT
152017-09-27 Tom Tromey <tom@tromey.com>
16
17 * gdb_bfd.c (maintenance_info_bfds): Constify.
18
0450cc4c
TT
192017-09-27 Tom Tromey <tom@tromey.com>
20
21 * cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
22 overloads.
23 (do_add_cmd): Rename from add_cmd. Don't call set_cmd_cfunc.
24 (do_const_cfunc): New function.
25 (cmd_cfunc_eq): New overload.
26 (cli_user_command_p): Check do_const_cfunc.
27 * cli/cli-decode.h (struct cmd_list_element) <function>: New field
28 const_cfunc.
29 * command.h (add_cmd): Add const overload and no-function
30 overload.
31 (set_cmd_cfunc): Add const overload.
32 (cmd_const_cfunc_ftype): Declare.
33 (cmd_cfunc_eq): Add const overload.
34 * breakpoint.c, cli-cmds.c, cli-dump.c, guile/scm-cmd.c,
35 python/py-cmd.c, target.c, tracepoint.c: Use no-function add_cmd
36 overload.
37
a9bbfbd8
TT
382017-09-27 Tom Tromey <tom@tromey.com>
39
40 * macroexp.c (get_next_token_for_substitution): New function.
41 (substitute_args): Call it. Check for __VA_OPT__.
42
5230b05a
WT
432017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
44 Pedro Alves <palves@redhat.com>
45
46 * dwarf2read.c (dwarf2_cu): Remove field producer_is_icc and add
47 producer_is_icc_lt_14.
48 (producer_is_icc_lt_14): New function.
49 (check_producer): Add code for checking version of ICC.
50 (producer_is_icc): Move to producer.c.
51 (read_structure_type): Restrict ICC workaround to ICC<14.
52 * producer.c: Include selftest.h.
53 (producer_is_icc, producer_parsing_tests, _initialize_producer):
54 New functions.
55 * producer.h (producer_is_icc): New declaration.
56
b32b108a
WT
572017-09-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
58
59 * Makefile.in (SFILES): Add producer.c.
60 (COMMON_OBS): Add producer.o
61 * amd64-tdep.c (producer.h): Add new include.
62 * dwarf2read.c (producer.h): Add new include.
63 * producer.c: New file.
64 * producer.h: New file.
65 * utils.c (producer_is_gcc, producer_is_gcc_ge_4): Move to
66 producer.c.
67 * utils.h (producer_is_gcc, producer_is_gcc_ge_4): Move to
68 producer.h.
69
5007d765
MK
702017-09-26 Matthias Klose <doko@ubuntu.com>
71
72 * configure.ac: Search ncursesw before ncurses.
73 Check ncursesw/ncurses.h before ncurses/ncurses.h.
74 * gdb_curses.h: Include <ncursesw/ncurses.h>
75 * config.in, configure: Regenerate.
76
281c4447
RO
772017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
78
79 PR gdb/22185
80 * configure.host <*-*-solaris2.[01], *-*-solaris2.[2-9]*>: Mark as
81 obsolete.
82 Use gdb_host sol2 for i[34567]86-*-solaris2*, x86_64-*-solaris2*.
83 Remove i386sol2 support.
84 * configure.nat <i386sol2>: Remove.
85 <sol2-64>: Fold into ...
86 <sol2>: ... this.
87 Move common settings to default section.
88 Add sol-thread.o.
89 * configure.tgt <i[34567]86-*-solaris2.1[0-9]*,
90 x86_64-*-solaris2.1[0-9]*>: Rename to ...
91 <i[34567]86-*-solaris2*, x86_64-*-solaris2*>: ... this.
92 <i[34567]86-*-solaris*>: Remove.
93 <sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*>: Remove.
94
95 * configure.ac: Remove wctype in libw check.
96 (_MSE_INT_H): Don't define on Solaris 7-9.
97 <solaris*>: Remove libthread_db.so.1 check.
98 * configure: Regenerate.
99 * config.in: Regenerate.
100
101 * proc-service.c: Remove PROC_SERVICE_IS_OLD handling.
102 (gdb_ps_prochandle_t, gdb_ps_read_buf_t, gdb_ps_write_buf_t)
103 (gdb_ps_size_t): Remove.
104 Use base types in users.
105 * sol-thread.c: Likewise, also for gdb_ps_addr_t.
106
107 * NEWS (Changes since GDB 8.0): Document Solaris 2.0-9 removal.
108
39b06c20
RO
1092017-09-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
110
111 PR build/22206
112 * sparc64-tdep.c (adi_tag_fd): Print pid as long.
113 (adi_is_addr_mapped): Likewise.
114 (PSR_ICC): Don't redefine.
115 (PSR_IMPL): Likewise.
116
6c3e20f1
TT
1172017-09-25 Tom Tromey <tom@tromey.com>
118
119 * regcache.c (regcache::dump): Use string_printf.
120
b292235f
TT
1212017-09-25 Tom Tromey <tom@tromey.com>
122
123 * regcache.c (class regcache_invalidator): New.
124 (struct register_to_invalidate): Remove.
125 (make_cleanup_regcache_invalidate): Remove.
126 (regcache::raw_write): Use regcache_invalidator.
127
9ac86b52
TT
1282017-09-25 Tom Tromey <tom@tromey.com>
129
130 * spu-tdep.c (spu2ppu_sniffer): Update.
131 * regcache.h (make_cleanup_regcache_xfree): Don't declare.
132 * regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
133 Remove.
134 * ppc-linux-tdep.c (ppu2spu_sniffer): Update.
135 * mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
136 * frame.h (frame_save_as_regcache): Return std::unique_ptr.
137 * frame.c (frame_save_as_regcache): Return std::unique_ptr.
138 (frame_pop): Update.
139
c0e383c6
TT
1402017-09-25 Tom Tromey <tom@tromey.com>
141
142 * spu-tdep.c (spu2ppu_dealloc_cache): Use delete.
143 * regcache.h (regcache_xfree): Don't declare.
144 * regcache.c (regcache_xfree): Remove.
145 (do_regcache_xfree): Use delete.
146 * ppc-linux-tdep.c (ppu2spu_dealloc_cache): Use delete.
147 * linux-fork.c (free_fork): Use delete.
148 (fork_save_infrun_state): Likewise.
149 * jit.c (jit_dealloc_cache): Use delete.
150 * infrun.c (discard_infcall_suspend_state): Use delete.
151
791199cc
TT
1522017-09-25 Tom Tromey <tom@tromey.com>
153
154 * regcache.h (regcache_xmalloc): Don't declare.
155 (regcache_raw_set_cached_value): Update comment.
156 * regcache.c (regcache_xmalloc): Remove.
157 * ppc-linux-tdep.c (ppu2spu_sniffer): Use new.
158 * jit.c (jit_frame_sniffer): Use new.
159 * frame.c (frame_save_as_regcache): Use new.
160
289e23aa
AA
1612017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
162
163 * NEWS: Advertise support for guarded-storage registers on IBM z.
164
1b63490c
AA
1652017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
166
167 * s390-linux-nat.c (have_regset_gs): New static variable.
168 (s390_linux_fetch_inferior_registers): Handle guarded-storage
169 control block and guarded-storage broadcast control regsets.
170 (s390_read_description): Detect whether the target has
171 guarded-storage support, return appropriate tdesc.
172 * s390-linux-tdep.c (features/s390-gs-linux64.c): New include.
173 (features/s390x-gs-linux64.c): Likewise.
174 (struct gdbarch_tdep) <have_gs>: New field.
175 (s390_regmap_gs, s390_regmap_gsbc, s390_gs_regset)
176 (s390_gsbc_regset): New variables.
177 (s390_iterate_over_regset_sections): Iterate over s390_gs_regset
178 and s390_gsbc_regset, if applicable.
179 (s390_core_read_description): Check whether core file was from a
180 target with guarded-storage support; include appropriate regsets.
181 (s390_gdbarch_init): Add registers for guarded-storage support.
182 (_initialize_s390_tdep): Initialize new target descriptions that
183 include registers for guarded-storage support.
184 * s390-linux-tdep.h (HWCAP_S390_GS, S390_GSD_REGNUM)
185 (S390_GSSM_REGNUM, S390_GSEPLA_REGNUM)
186 (S390_BC_GSD_REGNUM, S390_BC_GSSM_REGNUM): New defines.
187 (S390_NUM_REGS): Adjust macro definition.
188 (s390_gs_regset, s390_gsbc_regset, tdesc_s390_gs_linux64)
189 (tdesc_s390x_gs_linux64): New declarations.
190
96235dc1
AA
1912017-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
192
193 * features/s390-gs-linux64.xml: New file.
194 * features/s390-gs.xml: New file.
195 * features/s390-gsbc.xml: New file.
196 * features/s390x-gs-linux64.xml: New file.
197 * features/Makefile (WHICH): Add s390-gs-linux64 and
198 s390x-gs-linux64.
199 (s390-gs-linux64-expedite, s390x-gs-linux64-expedite): New macros.
200 (XMLTOC): Add s390-gs-linux64.xml and s390x-linux64.xml.
201 * features/s390-gs-linux64.c: New generated file.
202 * features/s390x-gs-linux64.c: New file.
203 * regformats/s390-gs-linux64.dat: New file.
204 * regformats/s390x-gs-linux64.dat: New file.
205
b4a7c699
TT
2062017-09-23 Tom Tromey <tom@tromey.com>
207
208 * defs.h (make_cleanup_override_quit_handler): Don't declare.
209
c2f97536
TT
2102017-09-22 Tom Tromey <tom@tromey.com>
211
212 * utils.c (class scoped_input_handler) <m_quit_handler>: Change
213 type to scoped_restore_tmpl.
214 <scoped_input_handler>: Initialize m_quit_handler directly.
215
43573013
SDJ
2162017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
217
218 * cli/cli-cmds.c (pwd_command): Use "getcwd (NULL, 0)".
219 (cd_command): Likewise. Free "current_directory" before
220 assigning to it.
221 * main.c (captured_main_1): Use "getcwd (NULL, 0)".
222 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
223 * top.c (gdb_dirbuf): Remove global declaration.
224 * top.h (gdb_dirbuf): Likewise.
225
6ec2e0f5
SDJ
2262017-09-22 Sergio Durigan Junior <sergiodj@redhat.com>
227
228 * gnulib/aclocal.m4: Regenerate.
229 * gnulib/config.in: Regenerate.
230 * gnulib/configure: Regenerate.
231 * gnulib/import/Makefile.am: Regenerate.
232 * gnulib/import/Makefile.in: Regenerate.
233 * gnulib/import/assure.h: New file.
234 * gnulib/import/at-func.c: Likewise
235 * gnulib/import/chdir-long.c: New file.
236 * gnulib/import/chdir-long.h: New file.
237 * gnulib/import/cloexec.c: New file.
238 * gnulib/import/cloexec.h: New file.
239 * gnulib/import/close.c: New file.
240 * gnulib/import/closedir.c: New file.
241 * gnulib/import/dirent-private.h: New file.
242 * gnulib/import/dup-safer.c: New file.
243 * gnulib/import/dup.c: New file.
244 * gnulib/import/dup2.c: New file.
245 * gnulib/import/error.c: New file.
246 * gnulib/import/error.h: New file.
247 * gnulib/import/exitfail.c: New file.
248 * gnulib/import/exitfail.h: New file.
249 * gnulib/import/fchdir.c: New file.
250 * gnulib/import/fcntl.c: New file.
251 * gnulib/import/fcntl.in.h: New file.
252 * gnulib/import/fd-hook.c: New file.
253 * gnulib/import/fd-hook.h: New file.
254 * gnulib/import/fd-safer.c: New file.
255 * gnulib/import/fdopendir.c: New file.
256 * gnulib/import/filename.h: New file.
257 * gnulib/import/filenamecat-lgpl.c: New file.
258 * gnulib/import/filenamecat.h: New file.
259 * gnulib/import/fstat.c: New file.
260 * gnulib/import/fstatat.c: New file.
261 * gnulib/import/getcwd-lgpl.c: New file.
262 * gnulib/import/getcwd.c: New file.
263 * gnulib/import/getdtablesize.c: New file.
264 * gnulib/import/getlogin_r.c: New file.
265 * gnulib/import/getprogname.c: New file.
266 * gnulib/import/getprogname.h: New file.
267 * gnulib/import/gettext.h: New file.
268 * gnulib/import/glob-libc.h: New file.
269 * gnulib/import/glob.c: New file.
270 * gnulib/import/glob.in.h: New file.
271 * gnulib/import/intprops.h: New file.
272 * gnulib/import/m4/chdir-long.m4: New file.
273 * gnulib/import/m4/close.m4: New file.
274 * gnulib/import/m4/closedir.m4: New file.
275 * gnulib/import/m4/d-ino.m4: New file.
276 * gnulib/import/m4/d-type.m4: New file.
277 * gnulib/import/m4/dup.m4: New file.
278 * gnulib/import/m4/dup2.m4: New file.
279 * gnulib/import/m4/error.m4: New file.
280 * gnulib/import/m4/fchdir.m4: New file.
281 * gnulib/import/m4/fcntl.m4: New file.
282 * gnulib/import/m4/fcntl_h.m4: New file.
283 * gnulib/import/m4/fdopendir.m4: New file.
284 * gnulib/import/m4/filenamecat.m4: New file.
285 * gnulib/import/m4/fstat.m4: New file.
286 * gnulib/import/m4/fstatat.m4: New file.
287 * gnulib/import/m4/getcwd-abort-bug.m4: New file.
288 * gnulib/import/m4/getcwd-path-max.m4: New file.
289 * gnulib/import/m4/getcwd.m4: New file.
290 * gnulib/import/m4/getdtablesize.m4: New file.
291 * gnulib/import/m4/getlogin_r.m4: New file.
292 * gnulib/import/m4/getprogname.m4: New file.
293 * gnulib/import/m4/glob.m4: New file.
294 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
295 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
296 * gnulib/import/m4/mempcpy.m4: New file.
297 * gnulib/import/m4/memrchr.m4: New file.
298 * gnulib/import/m4/mode_t.m4: New file.
299 * gnulib/import/m4/msvc-inval.m4: New file.
300 * gnulib/import/m4/msvc-nothrow.m4: New file.
301 * gnulib/import/m4/open.m4: New file.
302 * gnulib/import/m4/openat.m4: New file.
303 * gnulib/import/m4/opendir.m4: New file.
304 * gnulib/import/m4/readdir.m4: New file.
305 * gnulib/import/m4/realloc.m4: New file.
306 * gnulib/import/m4/rewinddir.m4: New file.
307 * gnulib/import/m4/save-cwd.m4: New file.
308 * gnulib/import/m4/strdup.m4: New file.
309 * gnulib/import/m4/strerror.m4: New file.
310 * gnulib/import/m4/unistd-safer.m4: New file.
311 * gnulib/import/mempcpy.c: New file.
312 * gnulib/import/memrchr.c: New file.
313 * gnulib/import/msvc-inval.c: New file.
314 * gnulib/import/msvc-inval.h: New file.
315 * gnulib/import/msvc-nothrow.c: New file.
316 * gnulib/import/msvc-nothrow.h: New file.
317 * gnulib/import/open.c: New file.
318 * gnulib/import/openat-die.c: New file.
319 * gnulib/import/openat-priv.h: New file.
320 * gnulib/import/openat-proc.c: New file.
321 * gnulib/import/openat.c: New file.
322 * gnulib/import/openat.h: New file.
323 * gnulib/import/opendir.c: New file.
324 * gnulib/import/pipe-safer.c: New file.
325 * gnulib/import/readdir.c: New file.
326 * gnulib/import/realloc.c: New file.
327 * gnulib/import/rewinddir.c: New file.
328 * gnulib/import/save-cwd.c: New file.
329 * gnulib/import/save-cwd.h: New file.
330 * gnulib/import/strdup.c: New file.
331 * gnulib/import/strerror-override.c: New file.
332 * gnulib/import/strerror-override.h: New file.
333 * gnulib/import/strerror.c: New file.
334 * gnulib/import/unistd--.h: New file.
335 * gnulib/import/unistd-safer.h: New file.
336 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
337 "getcwd" and "glob".
338 * ser-tcp.c: Undefine "close" before redefining it.
339
432ae719
SM
3402017-09-21 Simon Marchi <simon.marchi@ericsson.com>
341
342 * guile/scm-value.c (gdbscm_value_address): Initialize address,
343 get rid of res_val.
344
4fa7574e
RO
3452017-09-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
346
347 * configure.nat <i386sol2,i386>: Add fork-inferior.o to NATDEPFILES.
348 <sol2,sparc>: Likewise.
349 <sol2-64,i386>: Likewise.
350
351 * warning.m4 (AM_GDB_WARNINGS): Disable -Wunknown-pragmas,
352 -Wdeprecated-declarations on *-*-solaris*.
353 * configure: Regenerate.
354
355 * procfs.c: Include "nat/inferior.h".
356 (procfs_info_proc): Fix typo.
357
f6327dcb
KB
3582017-09-21 Kevin Buettner <kevinb@redhat.com>
359
360 * remote.c (vector): Include.
361 (struct private_thread_info): Add field, thread_handle.
362 (free_private_thread_info): Deallocate storage associated with
363 thread handle.
364 (get_private_info_thread): Initialize `thread_handle' field.
365 (struct thread_item): Add field, thread_handle.
366 (clear_threads_listing_context): Deallocate storage associated
367 with thread handle.
368 (start_thread): Add support for "handle" attribute.
369 (thread_attributes): Add "handle".
370 (remote_get_threads_with_qthreadinfo): Initialize thread_handle
371 field.
372 (remote_update_thread_list): Update thread_handle.
373 (remote_thread_handle_to_thread_info): New function.
374 (init_remote_ops): Initialize to_thread_handle_to_thread_info.
375
fbbe5337
KB
3762017-09-21 Kevin Buettner <kevinb@redhat.com>
377
378 * python/py-inferior.c (gdbpy_thread_from_thread_handle): New
379 function.
380 (inferior_object_methods): Add gdbpy_thread_from_thread_handle.
381 * python/python-internal.h (thread_object_type): Declare.
382
e04ee09e
KB
3832017-09-21 Kevin Buettner <kevinb@redhat.com>
384
385 * target.h (struct target_ops): Add to_thread_handle_to_thread_info.
386 (target_thread_handle_to_thread_info): Declare.
387 * target.c (target_thread_handle_to_thread_info): New function.
388 * target-delegates.c: Regenerate.
389 * gdbthread.h (find_thread_by_handle): Declare.
390 * thread.c (find_thread_by_handle): New function.
391 * linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
392 function.
393 (init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
394
1e5b66ed
SM
3952017-09-21 Simon Marchi <simon.marchi@ericsson.com>
396
397 * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
398
ebe48ba0
SM
3992017-09-21 Simon Marchi <simon.marchi@ericsson.com>
400
401 * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
402
0a0bf5dc
YQ
4032017-09-21 Yao Qi <yao.qi@linaro.org>
404
405 * configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
406 to gdb_target_obs.
407
d1b0a7bf
TT
4082017-09-20 Tom Tromey <tom@tromey.com>
409
410 * breakpoint.c (struct counted_command_line): Remove.
411 (breakpoint_commands): Update.
412 (alloc_counted_command_line, incref_counted_command_line)
413 (decref_counted_command_line, do_cleanup_counted_command_line)
414 (make_cleanup_decref_counted_command_line): Remove.
415 (breakpoint_set_commands, commands_command_1, ~bpstats, bpstats)
416 (bpstat_clear_actions, bpstat_do_actions_1, watchpoint_check)
417 (bpstat_stop_status, print_one_breakpoint_location, ~breakpoint)
418 (save_breakpoints): Update.
419 * breakpoint.h (counted_command_line): Now a typedef to
420 shared_ptr.
421 (struct breakpoint) <commands>: Now a counted_command_line.
422 (struct bpstats) <command>: Likewise.
423
48649e1b
TT
4242017-09-20 Tom Tromey <tom@tromey.com>
425
426 * breakpoint.c (struct commands_info, do_map_commands_command):
427 Remove.
428 (commands_command_1): Update.
429 (iterate_over_related_breakpoints): Take a function_view.
430 (do_delete_breakpoint, do_map_delete_breakpoint): Remove.
431 (delete_command): Update.
432 (map_breakpoint_numbers): Take a function_view.
433 (do_disable_breakpoint, do_map_delete_breakpoint): Remove.
434 (disable_command): Update.
435 (do_enable_breakpoint, do_map_enable_breakpoint): Remove.
436 (enable_command): Update.
437 (struct disp_data, do_enable_breakpoint_disp)
438 (do_map_enable_once_breakpoint, do_map_enable_count_breakpoint)
439 (do_map_enable_delete_breakpoint): Remove.
440 (enable_once_command, enable_count_command, enable_delete_command)
441 (delete_trace_variable_command): Update.
442
04afa70c
TT
4432017-09-20 Tom Tromey <tom@tromey.com>
444
445 * breakpoint.c (~bpstats): Rename from bpstat_free. Update.
446 (bpstat_clear): Use delete.
447 (bpstats): New constructors.
448 (bpstat_copy, bpstat_stop_status): Use new.
449 (dprintf_after_condition_true): Update.
450 * breakpoint.h (bpstats::bpstats): Add constructors.
451 (bpstats::~bpstats): Add destructor.
452
c83833f4
PA
4532017-09-20 Pedro Alves <palves@redhat.com>
454
455 * eval.c (make_params): Delete, refactored as ...
456 (class fake_method): ... this new type's ctor.
457 (fake_method::~fake_method): New.
458 (evaluate_subexp_standard): Use 'fake_method'.
459
223ffa71
TT
4602017-09-20 Tom Tromey <tom@tromey.com>
461
462 * windows-nat.c (get_windows_debug_event, windows_wait)
463 (do_initial_windows_stuff, windows_attach): Update.
464 * utils.c (vwarning, internal_vproblem): Update.
465 (ui_unregister_input_event_handler_cleanup)
466 (prepare_to_handle_input): Remove.
467 (class scoped_input_handler): New.
468 (defaulted_query, prompt_for_continue): Update.
469 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
470 Update.
471 * top.c (undo_terminal_modifications_before_exit): Update.
472 * target/target.h (target_terminal_init, target_terminal_inferior)
473 (target_terminal_ours): Don't declare.
474 (class target_terminal): New.
475 * target.h (target_terminal_is_inferior, target_terminal_is_ours)
476 (target_terminal_ours_for_output)
477 (make_cleanup_restore_target_terminal): Don't declare.
478 (target_terminal_info): Remove.
479 * target.c (enum terminal_state, terminal_state): Remove.
480 (target_terminal::terminal_state): Define.
481 (target_terminal::init): Rename from target_terminal_init.
482 (target_terminal::inferior): Rename from
483 target_terminal_inferior.
484 (target_terminal::ours): Rename from target_terminal_ours.
485 (target_terminal::ours_for_output): Rename from
486 target_terminal_ours_for_output.
487 (target_terminal::info): New method.
488 (cleanup_restore_target_terminal)
489 (make_cleanup_restore_target_terminal): Remove.
490 * solib.c (handle_solib_event): Update.
491 * remote.c (remote_serial_quit_handler): Update.
492 (remote_terminal_inferior, remote_wait_as): Update.
493 * record-full.c (record_full_wait_1): Update.
494 * nto-procfs.c (procfs_create_inferior): Update.
495 * nat/fork-inferior.c (startup_inferior): Update.
496 * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
497 (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
498 (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
499 (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
500 (mi_breakpoint_created, mi_breakpoint_deleted)
501 (mi_breakpoint_modified, mi_on_resume, mi_solib_loaded)
502 (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
503 (mi_user_selected_context_changed, report_initial_inferior):
504 Update.
505 * linux-nat.c (linux_nat_attach, linux_nat_terminal_ours)
506 (linux_nat_terminal_inferior): Update.
507 * infrun.c (follow_fork_inferior)
508 (handle_vfork_child_exec_or_exit, do_target_resume)
509 (check_curr_ui_sync_execution_done, handle_inferior_event_1)
510 (handle_signal_stop, maybe_remove_breakpoints, normal_stop):
511 Update.
512 * inflow.c (child_terminal_init, info_terminal_command): Update.
513 * infcmd.c (post_create_inferior, continue_1, prepare_one_step)
514 (attach_command): Update.
515 * infcall.c (call_thread_fsm_should_stop): Update.
516 * gnu-nat.c (gnu_attach): Update.
517 * extension.c (struct active_ext_lang_state)
518 (restore_active_ext_lang): Update.
519 * exceptions.c (print_flush): Update.
520 * event-top.c (async_enable_stdin, default_quit_handler): Update.
521 (struct quit_handler_cleanup_data, restore_quit_handler)
522 (restore_quit_handler_dtor, make_cleanup_override_quit_handler):
523 Remove.
524 * cp-support.c (gdb_demangle): Update.
525 * breakpoint.c (update_inserted_breakpoint_locations)
526 (insert_breakpoint_locations, handle_jit_event)
527 (disable_breakpoints_in_unloaded_shlib): Update.
528 * annotate.c (annotate_breakpoints_invalid)
529 (annotate_frames_invalid): Update.
530
013af3fc
TT
5312017-09-20 Tom Tromey <tom@tromey.com>
532
533 * main.c (catch_command_errors): Rename from
534 catch_command_errors_const.
535 (captured_main_1): Update.
536
06871ae8
PA
5372017-09-20 Pedro Alves <palves@redhat.com>
538
539 * cli/cli-cmds.c (list_command): Use print_sal_location.
540 (print_sal_location): New function.
541 (ambiguous_line_spec): Use print_sal_location.
542 * linespec.c (symbol_to_sal): Record the symbol in the sal.
543 * symtab.c (find_function_start_sal): Likewise.
544 * symtab.h (symtab_and_line::symbol): New field.
545
e5f25bc5
PA
5462017-09-20 Pedro Alves <palves@redhat.com>
547
548 * linespec.c (minsym_found): Handle non-text minsyms.
549 (symbol_to_sal): Record a sal.pc for non-block, non-label symbols.
550
1b7fa39e
WT
5512017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
552
553 * features/Makefile (i386-avx-mpx-avx512-pku.dat): Add missing
554 backslash.
555
37dd0825
WT
5562017-09-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
557
558 * gdb.arch/i386-avx512.c (move_zmm_data_to_reg): Use
559 vmovups instead vmovaps.
560 (move_zmm_data_to_memory): Use vmovups instead vmovaps.
561
4e5a4f58
JB
5622017-09-19 John Baldwin <jhb@FreeBSD.org>
563
564 * NEWS (Changes since GDB 8.0): Add starti.
565 * infcmd.c (enum run_break): New.
566 (run_command_1): Queue pending event for RUN_STOP_AT_FIRST_INSN
567 case.
568 (run_command): Use enum run_how.
569 (start_command): Likewise.
570 (starti_command): New function.
571 (RUN_ARGS_HELP): New macro.
572 (_initialize_infcmd): Use RUN_ARGS_HELP for run and start
573 commands. Add starti command.
574
aa70c9f1
YQ
5752017-09-19 Yao Qi <yao.qi@linaro.org>
576
577 * Makefile.in (monitor.o): Remove the rule.
578
d6541620
YQ
5792017-09-19 Yao Qi <yao.qi@linaro.org>
580
581 * annotate.h (struct annotate_arg_emitter): Use
582 DISABLE_COPY_AND_ASSIGN.
583 * common/refcounted-object.h (refcounted_object): Likewise.
584 * completer.h (struct completion_result): Likewise.
585 * dwarf2read.c (struct dwarf2_per_objfile): Likewise.
586 * filename-seen-cache.h (filename_seen_cache): Likewise.
587 * gdbcore.h (thread_section_name): Likewise.
588 * gdb_regex.h (compiled_regex): Likewise.
589 * gdbthread.h (scoped_restore_current_thread): Likewise.
590 * inferior.h (scoped_restore_current_inferior): Likewise.
591 * jit.c (jit_reader): Likewise.
592 * linespec.h (struct linespec_result): Likewise.
593 * mi/mi-parse.h (struct mi_parse): Likewise.
594 * nat/fork-inferior.c (execv_argv): Likewise.
595 * progspace.h (scoped_restore_current_program_space): Likewise.
596 * python/python-internal.h (class gdbpy_enter): Likewise.
597 * regcache.h (regcache): Likewise.
598 * target-descriptions.c (struct tdesc_reg): Likewise.
599 (struct tdesc_type): Likewise.
600 (struct tdesc_feature): Likewise.
601 * ui-out.h (ui_out_emit_type): Likewise.
602
0615127c
SM
6032017-09-18 Simon Marchi <simon.marchi@ericsson.com>
604
605 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
606 label abort_expression.
607
5e187554
SM
6082017-09-16 Simon Marchi <simon.marchi@ericsson.com>
609
610 * common/buffer.c (buffer_xml_printf): Adjust.
611 * common/xml-utils.c (xml_escape_text): Change return type to
612 std::string, update code accordingly.
613 * common/xml-utils.h (xml_escape_text): Change return type to
614 std::string.
615 * rs6000-aix-tdep.c (rs6000_aix_shared_library_to_xml): Adjust.
616 * windows-tdep.c (windows_xfer_shared_library): Adjust.
617 * unittests/xml-utils-selftests.c (test_xml_escape_text):
618 Adjust.
619
c3d7b541
SM
6202017-09-16 Simon Marchi <simon.marchi@ericsson.com>
621
622 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new source file.
623 (SUBDIR_UNITTESTS_OBS): Add new object file.
624 * unittests/xml-utils-selftests.c: New file.
625
1526853e
SM
6262017-09-16 Simon Marchi <simon.marchi@ericsson.com>
627
628 * common/selftest.h (selftest): New struct/interface.
629 (register_test): Add name parameter, add new overload.
630 (run_tests): Add filter parameter.
631 (for_each_selftest_ftype): New typedef.
632 (for_each_selftest): New declaration.
633 * common/selftest.c (tests): Change type to
634 map<string, unique_ptr<selftest>>.
635 (simple_selftest): New struct.
636 (register_test): New function.
637 (register_test): Add name parameter and use it.
638 (run_tests): Add filter parameter and use it. Add prints.
639 Adjust to vector -> map change.
640 * aarch64-tdep.c (_initialize_aarch64_tdep): Add names when
641 registering selftests.
642 * arm-tdep.c (_initialize_arm_tdep): Likewise.
643 * disasm-selftests.c (_initialize_disasm_selftests): Likewise.
644 * dwarf2-frame.c (_initialize_dwarf2_frame): Likewise.
645 * dwarf2loc.c (_initialize_dwarf2loc): Likewise.
646 * findvar.c (_initialize_findvar): Likewise.
647 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Likewise.
648 * maint.c (maintenance_selftest): Update call to run_tests.
649 (maintenance_info_selftests): New function.
650 (_initialize_maint_cmds): Register "maintenance info selftests"
651 command. Update "maintenance selftest" doc.
652 * regcache.c (_initialize_regcache): Add names when registering
653 selftests.
654 * rust-exp.y (_initialize_rust_exp): Likewise.
655 * selftest-arch.c (gdbarch_selftest): New struct.
656 (gdbarch_tests): Remove.
657 (register_test_foreach_arch): Add name parameter. Call
658 register_test.
659 (tests_with_arch): Remove, move most content to
660 gdbarch_selftest::operator().
661 (_initialize_selftests_foreach_arch): Remove.
662 * selftest-arch.h (register_test_foreach_arch): Add name
663 parameter.
664 (run_tests_with_arch): New declaration.
665 * utils-selftests.c (_initialize_utils_selftests): Add names
666 when registering selftests.
667 * utils.c (_initialize_utils): Likewise.
668 * unittests/array-view-selftests.c
669 (_initialize_array_view_selftests): Likewise.
670 * unittests/environ-selftests.c (_initialize_environ_selftests):
671 Likewise.
672 * unittests/function-view-selftests.c
673 (_initialize_function_view_selftests): Likewise.
674 * unittests/offset-type-selftests.c
675 (_initialize_offset_type_selftests): Likewise.
676 * unittests/optional-selftests.c
677 (_initialize_optional_selftests): Likewise.
678 * unittests/scoped_restore-selftests.c
679 (_initialize_scoped_restore_selftests): Likewise.
680 * NEWS: Document "maintenance selftest" and "maint info
681 selftests".
682
5846367a
SM
6832017-09-16 Simon Marchi <simon.marchi@ericsson.com>
684
685 * mi/mi-main.c (mi_load_progress): Restore current_uiout using a
686 scoped_restore.
687
bd77e8ff
SM
6882017-09-16 Simon Marchi <simon.marchi@ericsson.com>
689
690 * mi/mi-main.c (mi_load_progress): Make uiout variable
691 a unique_ptr.
692
26a67918
PA
6932017-09-15 Pedro Alves <palves@redhat.com>
694
695 * compile/compile-c-types.c (convert_enum, convert_int)
696 (convert_float): Adjust to refer to int_type_v0 and float_type_v0.
697
3f8a7804
SM
6982017-09-15 Simon Marchi <simon.marchi@ericsson.com>
699
700 * dwarf2read.c (copy_string): Remove.
701 (parse_macro_definition): Replace copy_string with savestring.
702
8d200706
YQ
7032017-09-15 Yao Qi <yao.qi@linaro.org>
704
705 * configure.tgt (i[34567]86-*-darwin*): Append amd64.o to
706 gdb_target_obs.
707 (i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*):
708 Likewise.
709 (i[34567]86-*-linux*): Likewise.
710
d185219d
SM
7112017-09-14 Simon Marchi <simon.marchi@ericsson.com>
712
713 * dwarf2expr.h (dwarf_stack_value): Add constructor.
714 (dwarf_expr_context) <~dwarf_expr_context>: Define as default.
715 <stack>: Change type to std::vector.
716 <stack_len, stack_allocated>: Remove.
717 <grow_stack>: Remove.
718 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
719 (dwarf_expr_context::~dwarf_expr_context): Remove.
720 (dwarf_expr_context::grow_stack): Remove.
721 (dwarf_expr_context::push): Adjust.
722 (dwarf_expr_context::pop): Adjust.
723 (dwarf_expr_context::fetch): Adjust.
724 (dwarf_expr_context::fetch_in_stack_memory): Adjust.
725 (dwarf_expr_context::stack_empty_p): Adjust.
726 (dwarf_expr_context::execute_stack_op): Adjust.
727
eccd80d6
SM
7282017-09-14 Simon Marchi <simon.marchi@ericsson.com>
729
730 * dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
731 return type to bool.
732 * dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
733
69009882
SM
7342017-09-14 Simon Marchi <simon.marchi@ericsson.com>
735
736 * dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
737 Change type to bool.
738 (dwarf_stack_value) <in_stack_memory>: Likewise.
739 (dwarf_expr_context) <push_address>: Change parameter type to
740 bool.
741 <fetch_in_stack_memory>: Change return type to bool.
742 <push>: Change parameter type to bool.
743 * dwarf2expr.c (dwarf_expr_context::push): Change parameter type
744 to bool.
745 (dwarf_expr_context::push_address): Likewise.
746 (dwarf_expr_context::fetch_in_stack_memory): Change return type
747 to bool.
748 (dwarf_expr_context::execute_stack_op): Adjust.
749 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
750
1e467161
SM
7512017-09-14 Simon Marchi <simon.marchi@ericsson.com>
752
753 * dwarf2expr.h (struct dwarf_expr_piece): Move up.
754 (struct dwarf_expr_context) <n_pieces>: Remove.
755 <pieces>: Change type to std::vector.
756 * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
757 (dwarf_expr_context::~dwarf_expr_context): Don't manually free
758 pieces.
759 (dwarf_expr_context::add_piece): Adjust.
760 * dwarf2loc.c (struct piece_closure): Initialize fields.
761 <n_pieces>: Remove.
762 <pieces>: Change type to std::vector.
763 (allocate_piece_closure): Adjust, change parameter to
764 std::vector rvalue and std::move it to piece_closure.
765 (rw_pieced_value): Adjust.
766 (check_pieced_synthetic_pointer): Adjust.
767 (indirect_synthetic_pointer): Adjust.
768 (coerce_pieced_ref): Adjust.
769 (free_pieced_value_closure): Adjust. Use delete to free
770 piece_closure.
771 (dwarf2_evaluate_loc_desc_full): Adjust. std::move ctx.pieces
772 to allocate_piece_closure.
773 (dwarf2_loc_desc_get_symbol_read_needs): Adjust.
774
0782db84
SM
7752017-09-12 Simon Marchi <simon.marchi@ericsson.com>
776
777 * probe.h (probe_ops_cp): Remove typedef.
778 (DEF_VEC_P (probe_ops_cp)): Remove.
779 (all_probe_ops): Change type to std::vector.
780 * probe.c (info_probes_for_ops): Adjust to vector change.
781 (probe_linespec_to_ops): Likewise.
782 (all_probe_ops): Change type to std::vector.
783 (_initialize_probe): Adjust to vector change.
784 * dtrace-probe.c (_initialize_dtrace_probe): Likewise.
785 * elfread.c (elf_get_probes): Likewise.
786 * stap-probe.c (_initialize_stap_probe): Likewise.
787
1eac6bea
SM
7882017-09-12 Simon Marchi <simon.marchi@ericsson.com>
789
790 * probe.h (struct bound_probe): Define constructors.
791 * probe.c (bound_probe_s): Remove typedef.
792 (DEF_VEC_O (bound_probe_s)): Remove VEC.
793 (collect_probes): Change return type to std::vector, remove
794 cleanup.
795 (compare_probes): Return bool, change parameter type. Change
796 semantic to "less than".
797 (gen_ui_out_table_header_info): Change parameter to std::vector
798 and update.
799 (exists_probe_with_pops): Likewise.
800 (info_probes_for_ops): Update to std::vector change.
801 (enable_probes_command): Likewise.
802 (disable_probes_command): Likewise.
803
aaa63a31
SM
8042017-09-12 Simon Marchi <simon.marchi@ericsson.com>
805
806 * probe.h (struct probe_ops) <get_probes>: Change parameter from
807 vec to std::vector.
808 * probe.c (parse_probes_in_pspace): Update.
809 (find_probes_in_objfile): Update.
810 (find_probe_by_pc): Update.
811 (collect_probes): Update.
812 (probe_any_get_probes): Update.
813 * symfile.h (struct sym_probe_fns) <sym_get_probes> Change
814 return type to reference to std::vector.
815 * dtrace-probe.c (dtrace_process_dof_probe): Change parameter to
816 std::vector and update.
817 (dtrace_process_dof): Likewise.
818 (dtrace_get_probes): Likewise.
819 * elfread.c (elf_get_probes): Change return type to std::vector,
820 store an std::vector in bfd_data.
821 (probe_key_free): Update to std::vector.
822 * stap-probe.c (handle_stap_probe): Change parameter to
823 std::vector and update.
824 (stap_get_probes): Likewise.
825 * symfile-debug.c (debug_sym_get_probes): Change return type to
826 std::vector and update.
827
cb85b21b
TT
8282017-09-11 Tom Tromey <tom@tromey.com>
829
830 * breakpoint.c (program_breakpoint_here_p): Update.
831 * target.c (make_scoped_restore_show_memory_breakpoints): Rename
832 from make_show_memory_breakpoints_cleanup. Return a
833 scoped_restore_tmpl<int>.
834 (restore_show_memory_breakpoints): Remove.
835 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Update.
836 * mem-break.c (memory_validate_breakpoint): Update.
837 * ia64-tdep.c (ia64_memory_insert_breakpoint): Update.
838 (ia64_memory_remove_breakpoint): Update.
839 (ia64_breakpoint_from_pc): Update.
840 * target.h (make_scoped_restore_show_memory_breakpoints): Rename
841 from make_show_memory_breakpoints_cleanup.
842
8fbc99ef
TT
8432017-09-11 Tom Tromey <tom@tromey.com>
844
845 * d-namespace.c (d_lookup_symbol): Use std::string.
846 (find_symbol_in_baseclass): Likewise.
847
50feb4bd
TT
8482017-09-11 Tom Tromey <tom@tromey.com>
849
850 * ctf.c (ctf_start): Use std::string.
851
c6dc63a1
TT
8522017-09-11 Tom Tromey <tom@tromey.com>
853
854 * ada-lang.c (is_known_support_routine): Update.
855 (ada_unhandled_exception_name_addr_from_raise): Update.
856 * guile/scm-frame.c (gdbscm_frame_name): Update.
857 * python/py-frame.c (frapy_name): Update.
858 (frapy_function): Update.
859 * stack.h (find_frame_funname): Update.
860 * stack.c (find_frame_funname): Return unique_xmalloc_ptr.
861 (print_frame): Update.
862
d6b9b80f
TT
8632017-09-11 Tom Tromey <tom@tromey.com>
864
865 * findcmd.c (put_bits): Take a gdb::byte_vector.
866 (parse_find_args): Return gdb::byte_vector. "args" now const.
867 Remove "pattern_bufp" and "pattern_lenp" parameters. Remove
868 cleanups.
869 (find_command): Update.
870
a9921622
TT
8712017-09-11 Tom Tromey <tom@tromey.com>
872
873 * cli/cli-script.c (class scoped_restore_hook_in): New.
874 (clear_hook_in_cleanup): Remove.
875 (execute_cmd_pre_hook, execute_cmd_post_hook): Use
876 scoped_restore_hook_in.
877
be0d7abb
TT
8782017-09-11 Tom Tromey <tom@tromey.com>
879
880 * cli/cli-script.c (restore_interp): Remove.
881 (read_command_lines): Use scoped_restore_interp.
882 * interps.c (scoped_restore_interp::set_temp): Rename from
883 interp_set_temp.
884 * interps.h (class scoped_restore_interp): New.
885 (interp_set_temp): Remove.
886
00f675ff
TT
8872017-09-11 Tom Tromey <tom@tromey.com>
888
889 * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
890 (mi_cmd_catch_exception, mi_catch_load_unload): Update.
891 * mi/mi-cmd-break.c (setup_breakpoint_reporting): Return a
892 scoped_restore.
893 (mi_cmd_break_insert_1): Update.
894 * mi/mi-cmd-break.h (setup_breakpoint_reporting): Return a
895 scoped_restore.
896
cb791d59
TT
8972017-09-11 Tom Tromey <tom@tromey.com>
898
899 * demangle.c (demangle_command): Update.
900 * breakpoint.c (disable_command): Update.
901 (enable_command): Update.
902 (find_location_by_number): Make "number" const. Use
903 get_number_trailer.
904 * cli/cli-utils.c (extract_arg): Return std::string.
905 * probe.c (parse_probe_linespec): Update. Change types.
906 (collect_probes): Take string arguments.
907 (parse_probe_linespec): Likewise.
908 (info_probes_for_ops): Update.
909 (enable_probes_command): Update.
910 (disable_probes_command): Update.
911 * break-catch-sig.c (catch_signal_split_args): Update.
912 * mi/mi-parse.c (mi_parse): Update.
913
2039bd9f
TT
9142017-09-11 Tom Tromey <tom@tromey.com>
915
916 * language.h (language_enum): Make argument const.
917 * language.c (language_enum): Make argument const.
918
f1735a53
TT
9192017-09-11 Tom Tromey <tom@tromey.com>
920
921 * common/common-utils.h (skip_to_space): Remove macro, redeclare
922 as function.
923 (skip_to_space): Rename from skip_to_space_const.
924 * common/common-utils.c (skip_to_space): New function.
925 (skip_to_space): Rename from skip_to_space_const.
926 * cli/cli-utils.h (get_number): Rename from get_number_const.
927 (extract_arg): Rename from extract_arg_const.
928 * cli/cli-utils.c (get_number): Rename from get_number_const.
929 (extract_arg): Rename from extract_arg_const.
930 (number_or_range_parser::get_number): Use ::get_number.
931 * aarch64-linux-tdep.c, ada-lang.c, arm-linux-tdep.c, ax-gdb.c,
932 break-catch-throw.c, breakpoint.c, cli/cli-cmds.c, cli/cli-dump.c,
933 cli/cli-script.c, cli/cli-setshow.c, compile/compile.c,
934 completer.c, demangle.c, disasm.c, findcmd.c, linespec.c,
935 linux-tdep.c, linux-thread-db.c, location.c, mi/mi-parse.c,
936 minsyms.c, nat/linux-procfs.c, printcmd.c, probe.c,
937 python/py-breakpoint.c, record.c, rust-exp.y, serial.c, stack.c,
938 stap-probe.c, tid-parse.c, tracepoint.c: Update all callers.
939
7d221d74
TT
9402017-09-11 Tom Tromey <tom@tromey.com>
941
942 * python/python.c (do_start_initialization): Use
943 py-event-types.def to initialize types.
944 Define all object type structures.
945 * python/python-internal.h: Don't declare event initialization
946 functions.
947 * python/py-threadevent.c (thread_event_object_type): Don't
948 define.
949 * python/py-stopevent.c (stop_event_object_type): Don't define.
950 * python/py-signalevent.c (signal_event_object_type): Don't
951 declare or define.
952 * python/py-newobjfileevent.c (new_objfile_event_object_type)
953 (clear_objfiles_event_object_type): Don't declare or define.
954 * python/py-infevents.c (inferior_call_pre_event_object_type)
955 (inferior_call_post_event_object_type)
956 (register_changed_event_object_type)
957 (memory_changed_event_object_type): Don't declare or define.
958 * python/py-inferior.c (new_thread_event_object_type)
959 (new_inferior_event_object_type)
960 (inferior_deleted_event_object_type): Don't declare or define.
961 * python/py-exitedevent.c (exited_event_object_type): Don't
962 declare or define.
963 * python/py-evts.c (gdbpy_initialize_py_events): Use
964 py-all-events.def.
965 * python/py-events.h (thread_event_object_type): Don't declare.
966 (events_object): Use py-all-events.def.
967 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove. Use
968 py-event-types.def.
969 * python/py-event-types.def: New file.
970 * python/py-continueevent.c (create_continue_event_object): Don't
971 declare or define.
972 * python/py-bpevent.c (breakpoint_event_object_type): Don't
973 declare or define.
974 * python/py-all-events.def: New file.
975
35c61a1d
TT
9762017-09-11 Tom Tromey <tom@tromey.com>
977
978 * python/py-threadevent.c (create_thread_event_object): Return
979 gdbpy_ref.
980 * python/py-stopevent.h (create_stop_event_object)
981 (create_breakpoint_event_object, create_signal_event_object):
982 Update.
983 * python/py-stopevent.c (create_stop_event_object): Return
984 gdbpy_ref.
985 (emit_stop_event): Update.
986 * python/py-signalevent.c (create_signal_event_object): Return
987 gdbpy_ref.
988 * python/py-infevents.c (create_inferior_call_event_object):
989 Update.
990 * python/py-event.h (create_event_object)
991 (create_thread_event_object): Update.
992 * python/py-event.c (create_event_object): Return gdbpy_ref.
993 * python/py-continueevent.c: Return gdbpy_ref.
994 * python/py-bpevent.c (create_breakpoint_event_object): Return
995 gdbpy_ref.
996
7c96f8c1
TT
9972017-09-11 Tom Tromey <tom@tromey.com>
998
999 PR python/15622:
1000 * NEWS: Add entry.
1001 * python/python.c (do_start_initialization): Initialize new event
1002 types.
1003 * python/python-internal.h (gdbpy_initialize_new_inferior_event)
1004 (gdbpy_initialize_inferior_deleted_event)
1005 (gdbpy_initialize_new_thread_event): Declare.
1006 * python/py-threadevent.c (create_thread_event_object): Add option
1007 "thread" parameter.
1008 * python/py-inferior.c (new_thread_event_object_type)
1009 (new_inferior_event_object_type)
1010 (inferior_deleted_event_object_type): Declare.
1011 (python_new_inferior, python_inferior_deleted): New functions.
1012 (add_thread_object): Emit new_thread event.
1013 (gdbpy_initialize_inferior): Attach new functions to corresponding
1014 observers.
1015 (new_thread, new_inferior, inferior_deleted): Define new event
1016 types.
1017 * python/py-evts.c (gdbpy_initialize_py_events): Add new
1018 registries.
1019 * python/py-events.h (events_object) <new_inferior,
1020 inferior_deleted, new_thread>: New fields.
1021 * python/py-event.h (create_thread_event_breakpoint): Add optional
1022 "thread" parameter.
1023
72542b8e
AB
10242017-09-10 Andrew Burgess <andrew.burgess@embecosm.com>
1025
1026 * utils.c (abort_with_message): Don't compare gdb_stderr to NULL,
1027 check current_ui instead.
1028 (internal_vproblem): Likewise.
1029
0d64823e
SM
10302017-09-09 Simon Marchi <simon.marchi@ericsson.com>
1031
1032 * thread.c (print_thread_info_1): Remove unnecessary calls to
1033 uiout->is_mi_like_p.
1034
eb1e02fd
TT
10352017-09-09 Tom Tromey <tom@tromey.com>
1036
1037 * namespace.h (add_using_directive): Update.
1038 * namespace.c (add_using_directive): Change type of excludes to
1039 std::vector.
1040 * dwarf2read.c (read_import_statement): Use std::vector.
1041 (read_namespace): Update.
1042 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
1043
0fc21fd8
TT
10442017-09-09 Tom Tromey <tom@tromey.com>
1045
1046 * linespec.c (create_sals_line_offset): Use gdb::def_vector.
1047
49663d05
TT
10482017-09-09 Tom Tromey <tom@tromey.com>
1049
1050 * p-valprint.c (pascal_object_print_value): Use gdb::byte_vector.
1051
0b868b60
TT
10522017-09-09 Tom Tromey <tom@tromey.com>
1053
1054 * stack.c (func_command): Use gdb::def_vector.
1055
c0470d48
TT
10562017-09-09 Tom Tromey <tom@tromey.com>
1057
1058 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Use gdb::optional,
1059 ui_out_emit_list, ui_out_emit_tuple.
1060 (mi_cmd_var_update): Likewise.
1061
ca5909c7
TT
10622017-09-09 Tom Tromey <tom@tromey.com>
1063
1064 * mi/mi-interp.c (mi_user_selected_context_changed): Use
1065 ui_out_redirect_pop.
1066 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
1067 ui_out_redirect_pop.
1068 * utils.c (do_ui_out_redirect_pop)
1069 (make_cleanup_ui_out_redirect_pop): Remove.
1070 * top.c (execute_command_to_string): Use ui_out_redirect_pop.
1071 * utils.h (make_cleanup_ui_out_redirect_pop): Remove.
1072 * ui-out.h (ui_out_redirect_pop): New class.
1073
e6a2252a
TT
10742017-09-09 Tom Tromey <tom@tromey.com>
1075
1076 * mi/mi-main.c (output_cores): Use ui_out_emit_list.
1077 (list_available_thread_groups, mi_cmd_list_thread_groups)
1078 (mi_cmd_data_list_changed_registers, mi_cmd_data_read_memory)
1079 (mi_cmd_data_read_memory_bytes, mi_cmd_trace_frame_collected):
1080 Likewise.
1081
393702cd
TT
10822017-09-09 Tom Tromey <tom@tromey.com>
1083
1084 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
1085 ui_out_emit_tuple.
1086
76f9c9cf
TT
10872017-09-09 Tom Tromey <tom@tromey.com>
1088
1089 * target.c (flash_erase_command): Use ui_out_emit_tuple.
1090 * stack.c (print_frame): Use ui_out_emit_tuple.
1091 * spu-tdep.c (info_spu_event_command): Use ui_out_emit_tuple.
1092 (info_spu_mailbox_command, info_spu_dma_command)
1093 (info_spu_proxydma_command): Likewise.
1094 * mi/mi-main.c (mi_cmd_trace_frame_collected): Use
1095 ui_out_emit_tuple, gdb::byte_vector, bin2hex.
1096 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
1097 ui_out_emit_tuple.
1098 * breakpoint.c (print_it_watchpoint): Use ui_out_emit_tuple.
1099
dc9fe180
TT
11002017-09-09 Tom Tromey <tom@tromey.com>
1101
1102 * ui-out.h (make_cleanup_ui_out_table_begin_end): Remove.
1103 (class ui_out_emit_table): Update comment.
1104 * ui-out.c (do_cleanup_table_end)
1105 (make_cleanup_ui_out_table_begin_end): Remove.
1106 * spu-tdep.c (info_spu_mailbox_list): Use ui_out_emit_table.
1107 (info_spu_dma_cmdlist): Likewise.
1108 * probe.c (info_probes_for_ops): Use ui_out_emit_table.
1109 * darwin-nat-info.c (darwin_debug_regions_recurse): Use
1110 ui_out_emit_table.
1111
f8cc3da6
TT
11122017-09-09 Tom Tromey <tom@tromey.com>
1113
1114 * thread.c (print_thread_info_1): Use ui_out_emit_table,
1115 ui_out_emit_list, gdb::optional.
1116
481695ed
JB
11172017-09-09 John Baldwin <jhb@FreeBSD.org>
1118
1119 * aarch64-linux-nat.c: Remove _initialize_aarch64_linux_nat
1120 prototype.
1121 * aarch64-linux-tdep.c: Remove _initialize_aarch64_linux_tdep
1122 prototype.
1123 * aarch64-newlib-tdep.c: Remove _initialize_aarch64_newlib_tdep
1124 prototype.
1125 * aarch64-tdep.c: Remove _initialize_aarch64_tdep prototype.
1126 * ada-exp.y: Remove _initialize_ada_exp prototype.
1127 * ada-lang.c: Remove _initialize_ada_language prototype.
1128 * ada-tasks.c: Remove _initialize_tasks prototype.
1129 * addrmap.c: Remove _initialize_addrmap prototype.
1130 * agent.c: Remove _initialize_agent prototype.
1131 * aix-thread.c: Remove _initialize_aix_thread prototype.
1132 * alpha-bsd-nat.c: Remove _initialize_alphabsd_nat prototype.
1133 * alpha-linux-nat.c: Remove _initialize_alpha_linux_nat prototype.
1134 * alpha-linux-tdep.c: Remove _initialize_alpha_linux_tdep
1135 prototype.
1136 * alpha-nbsd-tdep.c: Remove _initialize_alphanbsd_tdep prototype.
1137 * alpha-obsd-tdep.c: Remove _initialize_alphaobsd_tdep prototype.
1138 * alpha-tdep.c: Remove _initialize_alpha_tdep prototype.
1139 * amd64-darwin-tdep.c: Remove _initialize_amd64_darwin_tdep
1140 prototype.
1141 * amd64-dicos-tdep.c: Remove _initialize_amd64_dicos_tdep
1142 prototype.
1143 * amd64-fbsd-nat.c: Remove _initialize_amd64fbsd_nat prototype.
1144 * amd64-fbsd-tdep.c: Remove _initialize_amd64fbsd_tdep prototype.
1145 * amd64-linux-nat.c: Remove _initialize_amd64_linux_nat prototype.
1146 * amd64-linux-tdep.c: Remove _initialize_amd64_linux_tdep
1147 prototype.
1148 * amd64-nbsd-nat.c: Remove _initialize_amd64nbsd_nat prototype.
1149 * amd64-nbsd-tdep.c: Remove _initialize_amd64nbsd_tdep prototype.
1150 * amd64-obsd-nat.c: Remove _initialize_amd64obsd_nat prototype.
1151 * amd64-obsd-tdep.c: Remove _initialize_amd64obsd_tdep prototype.
1152 * amd64-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
1153 * amd64-tdep.c: Remove _initialize_amd64_tdep prototype.
1154 * amd64-windows-nat.c: Remove _initialize_amd64_windows_nat
1155 prototype.
1156 * amd64-windows-tdep.c: Remove _initialize_amd64_windows_tdep
1157 prototype.
1158 * annotate.c: Remove _initialize_annotate prototype.
1159 * arc-newlib-tdep.c: Remove _initialize_arc_newlib_tdep prototype.
1160 * arc-tdep.c: Remove _initialize_arc_tdep prototype.
1161 * arch-utils.c: Remove _initialize_gdbarch_utils prototype.
1162 * arm-linux-nat.c: Remove _initialize_arm_linux_nat prototype.
1163 * arm-linux-tdep.c: Remove _initialize_arm_linux_tdep prototype.
1164 * arm-nbsd-tdep.c: Remove _initialize_arm_netbsd_tdep prototype.
1165 * arm-obsd-tdep.c: Remove _initialize_armobsd_tdep prototype.
1166 * arm-symbian-tdep.c: Remove _initialize_arm_symbian_tdep
1167 prototype.
1168 * arm-tdep.c: Remove _initialize_arm_tdep prototype.
1169 * arm-wince-tdep.c: Remove _initialize_arm_wince_tdep prototype.
1170 * auto-load.c: Remove _initialize_auto_load prototype.
1171 * auxv.c: Remove _initialize_auxv prototype.
1172 * avr-tdep.c: Remove _initialize_avr_tdep prototype.
1173 * ax-gdb.c: Remove _initialize_ax_gdb prototype.
1174 * bfin-linux-tdep.c: Remove _initialize_bfin_linux_tdep prototype.
1175 * bfin-tdep.c: Remove _initialize_bfin_tdep prototype.
1176 * break-catch-sig.c: Remove _initialize_break_catch_sig prototype.
1177 * break-catch-syscall.c: Remove _initialize_break_catch_syscall
1178 prototype.
1179 * break-catch-throw.c: Remove _initialize_break_catch_throw
1180 prototype.
1181 * breakpoint.c: Remove _initialize_breakpoint prototype.
1182 * bsd-uthread.c: Remove _initialize_bsd_uthread prototype.
1183 * btrace.c: Remove _initialize_btrace prototype.
1184 * charset.c: Remove _initialize_charset prototype.
1185 * cli/cli-cmds.c: Remove _initialize_cli_cmds prototype.
1186 * cli/cli-dump.c: Remove _initialize_cli_dump prototype.
1187 * cli/cli-interp.c: Remove _initialize_cli_interp prototype.
1188 * cli/cli-logging.c: Remove _initialize_cli_logging prototype.
1189 * cli/cli-script.c: Remove _initialize_cli_script prototype.
1190 * coff-pe-read.c: Remove _initialize_coff_pe_read prototype.
1191 * coffread.c: Remove _initialize_coffread prototype.
1192 * compile/compile.c: Remove _initialize_compile prototype.
1193 * complaints.c: Remove _initialize_complaints prototype.
1194 * completer.c: Remove _initialize_completer prototype.
1195 * copying.awk: Remove _initialize_copying prototype.
1196 * copying.c: Regenerate.
1197 * core-regset.c: Remove _initialize_core_regset prototype.
1198 * corefile.c: Remove _initialize_core prototype.
1199 * corelow.c: Remove _initialize_corelow prototype.
1200 * cp-abi.c: Remove _initialize_cp_abi prototype.
1201 * cp-namespace.c: Remove _initialize_cp_namespace prototype.
1202 * cp-support.c: Remove _initialize_cp_support prototype.
1203 * cp-valprint.c: Remove _initialize_cp_valprint prototype.
1204 * cris-linux-tdep.c: Remove _initialize_cris_linux_tdep prototype.
1205 * cris-tdep.c: Remove _initialize_cris_tdep prototype.
1206 * ctf.c: Remove _initialize_ctf prototype.
1207 * d-lang.c: Remove _initialize_d_language prototype.
1208 * darwin-nat-info.c: Remove _initialize_darwin_info_commands
1209 prototype.
1210 * darwin-nat.c: Remove _initialize_darwin_inferior prototype.
1211 * dbxread.c: Remove _initialize_dbxread prototype.
1212 * dcache.c: Remove _initialize_dcache prototype.
1213 * demangle.c: Remove _initialize_demangler prototype.
1214 * disasm-selftests.c: Remove _initialize_disasm_selftests
1215 prototype.
1216 * disasm.c: Remove _initialize_disasm prototype.
1217 * dtrace-probe.c: Remove _initialize_dtrace_probe prototype.
1218 * dummy-frame.c: Remove _initialize_dummy_frame prototype.
1219 * dwarf2-frame-tailcall.c: Remove _initialize_tailcall_frame
1220 prototype.
1221 * dwarf2-frame.c: Remove _initialize_dwarf2_frame prototype.
1222 * dwarf2expr.c: Remove _initialize_dwarf2expr prototype.
1223 * dwarf2loc.c: Remove _initialize_dwarf2loc prototype.
1224 * dwarf2read.c: Remove _initialize_dwarf2_read prototype.
1225 * elfread.c: Remove _initialize_elfread prototype.
1226 * exec.c: Remove _initialize_exec prototype.
1227 * extension.c: Remove _initialize_extension prototype.
1228 * f-lang.c: Remove _initialize_f_language prototype.
1229 * f-valprint.c: Remove _initialize_f_valprint prototype.
1230 * fbsd-nat.c: Remove _initialize_fbsd_nat prototype.
1231 * fbsd-tdep.c: Remove _initialize_fbsd_tdep prototype.
1232 * filesystem.c: Remove _initialize_filesystem prototype.
1233 * findcmd.c: Remove _initialize_mem_search prototype.
1234 * fork-child.c: Remove _initialize_fork_child prototype.
1235 * frame-base.c: Remove _initialize_frame_base prototype.
1236 * frame-unwind.c: Remove _initialize_frame_unwind prototype.
1237 * frame.c: Remove _initialize_frame prototype.
1238 * frv-linux-tdep.c: Remove _initialize_frv_linux_tdep prototype.
1239 * frv-tdep.c: Remove _initialize_frv_tdep prototype.
1240 * ft32-tdep.c: Remove _initialize_ft32_tdep prototype.
1241 * gcore.c: Remove _initialize_gcore prototype.
1242 * gdb_bfd.c: Remove _initialize_gdb_bfd prototype.
1243 * gdbarch.c: Regenerate.
1244 * gdbarch.sh: Remove _initialize_gdbarch prototype.
1245 * gdbtypes.c: Remove _initialize_gdbtypes prototype.
1246 * gnu-nat.c: Remove _initialize_gnu_nat prototype.
1247 * gnu-v2-abi.c: Remove _initialize_gnu_v2_abi prototype.
1248 * gnu-v3-abi.c: Remove _initialize_gnu_v3_abi prototype.
1249 * go-lang.c: Remove _initialize_go_language prototype.
1250 * go32-nat.c: Remove _initialize_go32_nat prototype.
1251 * guile/guile.c: Remove _initialize_guile prototype.
1252 * h8300-tdep.c: Remove _initialize_h8300_tdep prototype.
1253 * hppa-linux-nat.c: Remove _initialize_hppa_linux_nat prototype.
1254 * hppa-linux-tdep.c: Remove _initialize_hppa_linux_tdep prototype.
1255 * hppa-nbsd-nat.c: Remove _initialize_hppanbsd_nat prototype.
1256 * hppa-nbsd-tdep.c: Remove _initialize_hppanbsd_tdep prototype.
1257 * hppa-obsd-nat.c: Remove _initialize_hppaobsd_nat prototype.
1258 * hppa-obsd-tdep.c: Remove _initialize_hppaobsd_tdep prototype.
1259 * hppa-tdep.c: Remove _initialize_hppa_tdep prototype.
1260 * i386-bsd-nat.c: Remove _initialize_i386bsd_nat prototype.
1261 * i386-cygwin-tdep.c: Remove _initialize_i386_cygwin_tdep
1262 prototype.
1263 * i386-darwin-tdep.c: Remove _initialize_i386_darwin_tdep
1264 prototype.
1265 * i386-dicos-tdep.c: Remove _initialize_i386_dicos_tdep prototype.
1266 * i386-fbsd-nat.c: Remove _initialize_i386fbsd_nat prototype.
1267 * i386-fbsd-tdep.c: Remove _initialize_i386fbsd_tdep prototype.
1268 * i386-gnu-nat.c: Remove _initialize_i386gnu_nat prototype.
1269 * i386-gnu-tdep.c: Remove _initialize_i386gnu_tdep prototype.
1270 * i386-linux-nat.c: Remove _initialize_i386_linux_nat prototype.
1271 * i386-linux-tdep.c: Remove _initialize_i386_linux_tdep prototype.
1272 * i386-nbsd-nat.c: Remove _initialize_i386nbsd_nat prototype.
1273 * i386-nbsd-tdep.c: Remove _initialize_i386nbsd_tdep prototype.
1274 * i386-nto-tdep.c: Remove _initialize_i386nto_tdep prototype.
1275 * i386-obsd-nat.c: Remove _initialize_i386obsd_nat prototype.
1276 * i386-obsd-tdep.c: Remove _initialize_i386obsd_tdep prototype.
1277 * i386-sol2-nat.c: Remove _initialize_amd64_sol2_nat prototype.
1278 * i386-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
1279 * i386-tdep.c: Remove _initialize_i386_tdep prototype.
1280 * i386-windows-nat.c: Remove _initialize_i386_windows_nat
1281 prototype.
1282 * ia64-libunwind-tdep.c: Remove _initialize_libunwind_frame
1283 prototype.
1284 * ia64-linux-nat.c: Remove _initialize_ia64_linux_nat prototype.
1285 * ia64-linux-tdep.c: Remove _initialize_ia64_linux_tdep prototype.
1286 * ia64-tdep.c: Remove _initialize_ia64_tdep prototype.
1287 * ia64-vms-tdep.c: Remove _initialize_ia64_vms_tdep prototype.
1288 * infcall.c: Remove _initialize_infcall prototype.
1289 * infcmd.c: Remove _initialize_infcmd prototype.
1290 * inferior.c: Remove _initialize_inferiors prototype.
1291 * inflow.c: Remove _initialize_inflow prototype.
1292 * infrun.c: Remove _initialize_infrun prototype.
1293 * interps.c: Remove _initialize_interpreter prototype.
1294 * iq2000-tdep.c: Remove _initialize_iq2000_tdep prototype.
1295 * jit.c: Remove _initialize_jit prototype.
1296 * language.c: Remove _initialize_language prototype.
1297 * linux-fork.c: Remove _initialize_linux_fork prototype.
1298 * linux-nat.c: Remove _initialize_linux_nat prototype.
1299 * linux-tdep.c: Remove _initialize_linux_tdep prototype.
1300 * linux-thread-db.c: Remove _initialize_thread_db prototype.
1301 * lm32-tdep.c: Remove _initialize_lm32_tdep prototype.
1302 * m2-lang.c: Remove _initialize_m2_language prototype.
1303 * m32c-tdep.c: Remove _initialize_m32c_tdep prototype.
1304 * m32r-linux-nat.c: Remove _initialize_m32r_linux_nat prototype.
1305 * m32r-linux-tdep.c: Remove _initialize_m32r_linux_tdep prototype.
1306 * m32r-tdep.c: Remove _initialize_m32r_tdep prototype.
1307 * m68hc11-tdep.c: Remove _initialize_m68hc11_tdep prototype.
1308 * m68k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
1309 * m68k-bsd-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
1310 * m68k-linux-nat.c: Remove _initialize_m68k_linux_tdep prototype.
1311 * m68k-linux-tdep.c: Remove _initialize_m68k_linux_tdep prototype.
1312 * m68k-tdep.c: Remove _initialize_m68k_tdep prototype.
1313 * m88k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
1314 * m88k-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
1315 * machoread.c: Remove _initialize_machoread prototype.
1316 * macrocmd.c: Remove _initialize_macrocmd prototype.
1317 * macroscope.c: Remove _initialize_macroscope prototype.
1318 * maint.c: Remove _initialize_maint_cmds prototype.
1319 * mdebugread.c: Remove _initialize_mdebugread prototype.
1320 * memattr.c: Remove _initialize_mem prototype.
1321 * mep-tdep.c: Remove _initialize_mep_tdep prototype.
1322 * mi/mi-cmd-env.c: Remove _initialize_mi_cmd_env prototype.
1323 * mi/mi-cmds.c: Remove _initialize_mi_cmds prototype.
1324 * mi/mi-interp.c: Remove _initialize_mi_interp prototype.
1325 * mi/mi-main.c: Remove _initialize_mi_main prototype.
1326 * microblaze-linux-tdep.c: Remove
1327 _initialize_microblaze_linux_tdep prototype.
1328 * microblaze-tdep.c: Remove _initialize_microblaze_tdep prototype.
1329 * mips-fbsd-nat.c: Remove _initialize_mips_fbsd_nat prototype.
1330 * mips-fbsd-tdep.c: Remove _initialize_mips_fbsd_tdep prototype.
1331 * mips-linux-nat.c: Remove _initialize_mips_linux_nat prototype.
1332 * mips-linux-tdep.c: Remove _initialize_mips_linux_tdep prototype.
1333 * mips-nbsd-nat.c: Remove _initialize_mipsnbsd_nat prototype.
1334 * mips-nbsd-tdep.c: Remove _initialize_mipsnbsd_tdep prototype.
1335 * mips-sde-tdep.c: Remove _initialize_mips_sde_tdep prototype.
1336 * mips-tdep.c: Remove _initialize_mips_tdep prototype.
1337 * mips64-obsd-nat.c: Remove _initialize_mips64obsd_nat prototype.
1338 * mips64-obsd-tdep.c: Remove _initialize_mips64obsd_tdep
1339 prototype.
1340 * mipsread.c: Remove _initialize_mipsread prototype.
1341 * mn10300-linux-tdep.c: Remove _initialize_mn10300_linux_tdep
1342 prototype.
1343 * mn10300-tdep.c: Remove _initialize_mn10300_tdep prototype.
1344 * moxie-tdep.c: Remove _initialize_moxie_tdep prototype.
1345 * msp430-tdep.c: Remove _initialize_msp430_tdep prototype.
1346 * mt-tdep.c: Remove _initialize_mt_tdep prototype.
1347 * nds32-tdep.c: Remove _initialize_nds32_tdep prototype.
1348 * nios2-linux-tdep.c: Remove _initialize_nios2_linux_tdep
1349 prototype.
1350 * nios2-tdep.c: Remove _initialize_nios2_tdep prototype.
1351 * nto-procfs.c: Remove _initialize_procfs prototype.
1352 * nto-tdep.c: Remove _initialize_nto_tdep prototype.
1353 * objc-lang.c: Remove _initialize_objc_language prototype.
1354 * objfiles.c: Remove _initialize_objfiles prototype.
1355 * observer.c: Remove observer_test_first_notification_function,
1356 observer_test_second_notification_function,
1357 observer_test_third_notification_function, and
1358 _initialize_observer prototypes.
1359 * opencl-lang.c: Remove _initialize_opencl_language prototypes.
1360 * osabi.c: Remove _initialize_gdb_osabi prototype.
1361 * osdata.c: Remove _initialize_osdata prototype.
1362 * p-valprint.c: Remove _initialize_pascal_valprint prototype.
1363 * parse.c: Remove _initialize_parse prototype.
1364 * ppc-fbsd-nat.c: Remove _initialize_ppcfbsd_nat prototype.
1365 * ppc-fbsd-tdep.c: Remove _initialize_ppcfbsd_tdep prototype.
1366 * ppc-linux-nat.c: Remove _initialize_ppc_linux_nat prototype.
1367 * ppc-linux-tdep.c: Remove _initialize_ppc_linux_tdep prototype.
1368 * ppc-nbsd-nat.c: Remove _initialize_ppcnbsd_nat prototype.
1369 * ppc-nbsd-tdep.c: Remove _initialize_ppcnbsd_tdep prototype.
1370 * ppc-obsd-nat.c: Remove _initialize_ppcobsd_nat prototype.
1371 * ppc-obsd-tdep.c: Remove _initialize_ppcobsd_tdep prototype.
1372 * printcmd.c: Remove _initialize_printcmd prototype.
1373 * probe.c: Remove _initialize_probe prototype.
1374 * proc-api.c: Remove _initialize_proc_api prototype.
1375 * proc-events.c: Remove _initialize_proc_events prototype.
1376 * proc-service.c: Remove _initialize_proc_service prototype.
1377 * procfs.c: Remove _initialize_procfs prototype.
1378 * psymtab.c: Remove _initialize_psymtab prototype.
1379 * python/python.c: Remove _initialize_python prototype.
1380 * ravenscar-thread.c: Remove _initialize_ravenscar prototype.
1381 * record-btrace.c: Remove _initialize_record_btrace prototype.
1382 * record-full.c: Remove _initialize_record_full prototype.
1383 * record.c: Remove _initialize_record prototype.
1384 * regcache.c: Remove _initialize_regcache prototype.
1385 * reggroups.c: Remove _initialize_reggroup prototype.
1386 * remote-notif.c: Remove _initialize_notif prototype.
1387 * remote-sim.c: Remove _initialize_remote_sim prototype.
1388 * remote.c: Remove _initialize_remote prototype.
1389 * reverse.c: Remove _initialize_reverse prototype.
1390 * rl78-tdep.c: Remove _initialize_rl78_tdep prototype.
1391 * rs6000-aix-tdep.c: Remove _initialize_rs6000_aix_tdep prototype.
1392 * rs6000-lynx178-tdep.c: Remove _initialize_rs6000_lynx178_tdep
1393 prototype.
1394 * rs6000-nat.c: Remove _initialize_rs6000_nat prototype.
1395 * rs6000-tdep.c: Remove _initialize_rs6000_tdep prototype.
1396 * rust-exp.y: Remove _initialize_rust_exp prototype.
1397 * rx-tdep.c: Remove _initialize_rx_tdep prototype.
1398 * s390-linux-nat.c: Remove _initialize_s390_nat prototype.
1399 * s390-linux-tdep.c: Remove _initialize_s390_tdep prototype.
1400 * score-tdep.c: Remove _initialize_score_tdep prototype.
1401 * selftest-arch.c: Remove _initialize_selftests_foreach_arch
1402 prototype.
1403 * ser-go32.c: Remove _initialize_ser_dos prototype.
1404 * ser-mingw.c: Remove _initialize_ser_windows prototype.
1405 * ser-pipe.c: Remove _initialize_ser_pipe prototype.
1406 * ser-tcp.c: Remove _initialize_ser_tcp prototype.
1407 * ser-unix.c: Remove _initialize_ser_hardwire prototype.
1408 * serial.c: Remove _initialize_serial prototype.
1409 * sh-linux-tdep.c: Remove _initialize_sh_linux_tdep prototype.
1410 * sh-nbsd-nat.c: Remove _initialize_shnbsd_nat prototype.
1411 * sh-nbsd-tdep.c: Remove _initialize_shnbsd_tdep prototype.
1412 * sh-tdep.c: Remove _initialize_sh_tdep prototype.
1413 * skip.c: Remove _initialize_step_skip prototype.
1414 * sol-thread.c: Remove _initialize_sol_thread prototype.
1415 * solib-aix.c: Remove _initialize_solib_aix prototype.
1416 * solib-darwin.c: Remove _initialize_darwin_solib prototype.
1417 * solib-dsbt.c: Remove _initialize_dsbt_solib prototype.
1418 * solib-frv.c: Remove _initialize_frv_solib prototype.
1419 * solib-spu.c: Remove _initialize_spu_solib prototype.
1420 * solib-svr4.c: Remove _initialize_svr4_solib prototype.
1421 * solib-target.c: Remove _initialize_solib_target prototype.
1422 * solib.c: Remove _initialize_solib prototype.
1423 * source.c: Remove _initialize_source prototype.
1424 * sparc-linux-nat.c: Remove _initialize_sparc_linux_nat prototype.
1425 * sparc-linux-tdep.c: Remove _initialize_sparc_linux_tdep
1426 prototype.
1427 * sparc-nat.c: Remove _initialize_sparc_nat prototype.
1428 * sparc-nbsd-nat.c: Remove _initialize_sparcnbsd_nat prototype.
1429 * sparc-nbsd-tdep.c: Remove _initialize_sparcnbsd_tdep prototype.
1430 * sparc-obsd-tdep.c: Remove _initialize_sparc32obsd_tdep
1431 prototype.
1432 * sparc-sol2-nat.c: Remove _initialize_sparc_sol2_nat prototype.
1433 * sparc-sol2-tdep.c: Remove _initialize_sparc_sol2_tdep prototype.
1434 * sparc-tdep.c: Remove _initialize_sparc_tdep prototype.
1435 * sparc64-fbsd-nat.c: Remove _initialize_sparc64fbsd_nat
1436 prototype.
1437 * sparc64-fbsd-tdep.c: Remove _initialize_sparc64fbsd_tdep
1438 prototype.
1439 * sparc64-linux-nat.c: Remove _initialize_sparc64_linux_nat
1440 prototype.
1441 * sparc64-linux-tdep.c: Remove _initialize_sparc64_linux_tdep
1442 prototype.
1443 * sparc64-nat.c: Remove _initialize_sparc64_nat prototype.
1444 * sparc64-nbsd-nat.c: Remove _initialize_sparc64nbsd_nat
1445 prototype.
1446 * sparc64-nbsd-tdep.c: Remove _initialize_sparc64nbsd_tdep
1447 prototype.
1448 * sparc64-obsd-nat.c: Remove _initialize_sparc64obsd_nat
1449 prototype.
1450 * sparc64-obsd-tdep.c: Remove _initialize_sparc64obsd_tdep
1451 prototype.
1452 * sparc64-sol2-tdep.c: Remove _initialize_sparc64_sol2_tdep
1453 prototype.
1454 * spu-linux-nat.c: Remove _initialize_spu_nat prototype.
1455 * spu-multiarch.c: Remove _initialize_spu_multiarch prototype.
1456 * spu-tdep.c: Remove _initialize_spu_tdep prototype.
1457 * stabsread.c: Remove _initialize_stabsread prototype.
1458 * stack.c: Remove _initialize_stack prototype.
1459 * stap-probe.c: Remove _initialize_stap_probe prototype.
1460 * std-regs.c: Remove _initialize_frame_reg prototype.
1461 * symfile-debug.c: Remove _initialize_symfile_debug prototype.
1462 * symfile-mem.c: Remove _initialize_symfile_mem prototype.
1463 * symfile.c: Remove _initialize_symfile prototype.
1464 * symmisc.c: Remove _initialize_symmisc prototype.
1465 * symtab.c: Remove _initialize_symtab prototype.
1466 * target-dcache.c: Remove _initialize_target_dcache prototype.
1467 * target-descriptions.c: Remove _initialize_target_descriptions
1468 prototype.
1469 * thread.c: Remove _initialize_thread prototype.
1470 * tic6x-linux-tdep.c: Remove _initialize_tic6x_linux_tdep
1471 prototype.
1472 * tic6x-tdep.c: Remove _initialize_tic6x_tdep prototype.
1473 * tilegx-linux-nat.c: Remove _initialize_tile_linux_nat prototype.
1474 * tilegx-linux-tdep.c: Remove _initialize_tilegx_linux_tdep
1475 prototype.
1476 * tilegx-tdep.c: Remove _initialize_tilegx_tdep prototype.
1477 * tracefile-tfile.c: Remove _initialize_tracefile_tfile prototype.
1478 * tracefile.c: Remove _initialize_tracefile prototype.
1479 * tracepoint.c: Remove _initialize_tracepoint prototype.
1480 * tui/tui-hooks.c: Remove _initialize_tui_hooks prototype.
1481 * tui/tui-interp.c: Remove _initialize_tui_interp prototype.
1482 * tui/tui-layout.c: Remove _initialize_tui_layout prototype.
1483 * tui/tui-regs.c: Remove _initialize_tui_regs prototype.
1484 * tui/tui-stack.c: Remove _initialize_tui_stack prototype.
1485 * tui/tui-win.c: Remove _initialize_tui_win prototype.
1486 * tui/tui.c: Remove _initialize_tui prototype.
1487 * typeprint.c: Remove _initialize_typeprint prototype.
1488 * user-regs.c: Remove _initialize_user_regs prototype.
1489 * utils.c: Remove _initialize_utils prototype.
1490 * v850-tdep.c: Remove _initialize_v850_tdep prototype.
1491 * valarith.c: Remove _initialize_valarith prototype.
1492 * valops.c: Remove _initialize_valops prototype.
1493 * valprint.c: Remove _initialize_valprint prototype.
1494 * value.c: Remove _initialize_values prototype.
1495 * varobj.c: Remove _initialize_varobj prototype.
1496 * vax-bsd-nat.c: Remove _initialize_vaxbsd_nat prototype.
1497 * vax-nbsd-tdep.c: Remove _initialize_vaxnbsd_tdep prototype.
1498 * vax-tdep.c: Remove _initialize_vax_tdep prototype.
1499 * windows-nat.c: Remove _initialize_windows_nat,
1500 _initialize_check_for_gdb_ini, and _initialize_loadable
1501 prototypes.
1502 * windows-tdep.c: Remove _initialize_windows_tdep prototype.
1503 * xcoffread.c: Remove _initialize_xcoffread prototype.
1504 * xml-support.c: Remove _initialize_xml_support prototype.
1505 * xstormy16-tdep.c: Remove _initialize_xstormy16_tdep prototype.
1506 * xtensa-linux-nat.c: Remove _initialize_xtensa_linux_nat
1507 prototype.
1508 * xtensa-linux-tdep.c: Remove _initialize_xtensa_linux_tdep
1509 prototype.
1510 * xtensa-tdep.c: Remove _initialize_xtensa_tdep prototype.
1511
a611b5cb
KS
15122017-09-08 Keith Seitz <keiths@redhat.com>
1513
1514 * dwarf2read.c (struct field_info) <fnfields>: Remove unused
1515 field.
1516
469412dd
CW
15172017-09-08 Christoph Weinmann <christoph.t.weinmann@intel.com>
1518
1519 * f-valprint.c (f_val_print): Remove check for one byte
1520 sized integers. Remove printing of character type.
1521
a5ad232b
FP
15222017-09-08 Frank Penczek <frank.penczek@intel.com>
1523 Christoph Weinmann <christoph.t.weinmann@intel.com>
1524 Bernhard Heckel <bernhard.heckel@intel.com>
1525
1526 * f-typeprint.c (f_type_print_base): Use fprintfi_filtered
1527 to maintain proper indentation when printing pointers/refs.
1528
e5014227
JB
15292017-09-07 Joel Brobecker <brobecker@adacore.com>
1530
1531 GDB 8.0.1 released.
1532
63c99141
JB
15332017-09-07 Joel Brobecker <brobecker@adacore.com>
1534
1535 * NEWS (Changes in GDB 7.11): Remove entry for QStartupWithShell.
1536
69c1e056
TT
15372017-09-05 Tom Tromey <tom@tromey.com>
1538
1539 * parse.c (funcall_chain): Now a std::vector.
1540 (start_arglist, end_arglist): Simplify.
1541 (free_funcalls): Remove.
1542 (parse_exp_in_context_1): Remove cleanup.
1543
fef704bf
TT
15442017-09-05 Tom Tromey <tom@tromey.com>
1545
1546 * go-exp.y (go_parse): Don't create a cleanup.
1547
5613c585
TT
15482017-09-05 Tom Tromey <tom@tromey.com>
1549
1550 * d-exp.y (PrimaryExpression): Use std::string.
1551 (d_parse): Don't create a cleanup.
1552
eae49211
TT
15532017-09-05 Tom Tromey <tom@tromey.com>
1554
1555 * utils.c (do_clear_parser_state): Remove.
1556 (make_cleanup_clear_parser_state): Remove.
1557 * p-exp.y (pascal_parse): Use scoped_restore.
1558 * m2-exp.y (m2_parse): Use scoped_restore.
1559 * f-exp.y (f_parse): Use scoped_restore.
1560 * d-exp.y (d_parse): Use scoped_restore.
1561 * c-exp.y (c_parse): Use scoped_restore.
1562 * ada-exp.y (ada_parse): Use scoped_restore.
1563 * utils.h (make_cleanup_clear_parser_state): Remove.
1564
73b9be8b
KS
15652017-09-06 Keith Seitz <keiths@redhat.com>
1566
1567 * dwarf2read.c (dw2_linkage_name_attr): New function.
1568 (dw2_linkage_name): New function.
1569 (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
1570 (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
1571 (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
1572
a102602b
KR
15732017-09-06 Kamil Rytarowski <n54@gmx.com>
1574
1575 * config/djgpp/djconfig.sh: Correct shell portability issue.
1576
28ad437d
KR
15772017-09-06 Kamil Rytarowski <n54@gmx.com>
1578
1579 * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
1580
351787dd
JB
15812017-09-06 John Baldwin <jhb@FreeBSD.org>
1582
1583 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
1584 * NEWS: Mention new FreeBSD/mips native configuration.
1585 * configure.host: Add aarch64*-*-freebsd*.
1586 * configure.nat: Likewise.
1587 * aarch64-fbsd-nat.c: New file.
1588
c0f84956
JB
15892017-09-06 John Baldwin <jhb@FreeBSD.org>
1590
1591 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
1592 (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
1593 * NEWS: Mention new FreeBSD/aarch64 target.
1594 * configure.tgt: Add aarch64*-*-freebsd*.
1595 * aarch64-fbsd-tdep.c: New file.
1596 * aarch64-fbsd-tdep.h: New file.
1597
7610297a
KR
15982017-09-06 Kamil Rytarowski <n54@gmx.com>
1599
1600 * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
1601
fbd1b771
JK
16022017-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1603
1604 * parse.c (find_minsym_type_and_address): Don't relocate addresses
1605 of TLS symbols.
1606
5ca79eae
PW
16072017-09-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1608
1609 * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
1610 call.
1611
bf93d7ba
SM
16122017-09-05 Simon Marchi <simon.marchi@ericsson.com>
1613
1614 * infrun.c (follow_exec): Call add_thread after
1615 target_find_description.
1616
1bb7c059
SM
16172017-09-05 Simon Marchi <simon.marchi@ericsson.com>
1618
1619 * infrun.c (handle_inferior_event_1): When exec'ing, read
1620 stop_pc after follow_exec.
1621
fc809827
SM
16222017-09-05 Simon Marchi <simon.marchi@ericsson.com>
1623
1624 * remote.c (process_g_packet): Update error message.
1625
d2fcdd85
YQ
16262017-09-05 Yao Qi <yao.qi@linaro.org>
1627
1628 * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
1629 targets.
1630
e69570ee
PA
16312017-09-05 Pedro Alves <palves@redhat.com>
1632
1633 * eval.c (eval_call, evaluate_funcall): New functions, factored
1634 out from ...
1635 (evaluate_subexp_standard): ... this.
1636
22916b07
YQ
16372017-09-05 Yao Qi <yao.qi@linaro.org>
1638
1639 * amd64-tdep.c (amd64_target_description): Create target
1640 descriptions.
1641 (_initialize_amd64_tdep): Don't call functions
1642 initialize_tdesc_amd64_*. Add self tests.
1643 * arch/amd64.c (amd64_create_target_description): Add parameter
1644 is_linux. Call set_tdesc_osabi if is_linux is true.
1645 * arch/amd64.h (amd64_create_target_description): Update the
1646 declaration.
1647 * arch/i386.c (i386_create_target_description): Add parameter
1648 is_linux. Call set_tdesc_osabi if is_linux is true.
1649 * arch/i386.h (i386_create_target_description): Update
1650 declaration.
1651 * configure.tgt: Add i386.o to gdb_target_obs.
1652 * features/Makefile (XMLTOC): Remove i386/*.xml.
1653 * features/i386/amd64-avx-avx512.c: Remove.
1654 * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
1655 * features/i386/amd64-avx-mpx.c: Remove.
1656 * features/i386/amd64-avx.c: Remove.
1657 * features/i386/amd64-mpx.c: Remove.
1658 * features/i386/amd64.c: Remove.
1659 * features/i386/i386-avx-avx512.c: Remove.
1660 * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
1661 * features/i386/i386-avx-mpx.c: Remove.
1662 * features/i386/i386-avx.c: Remove.
1663 * features/i386/i386-mmx.c: Remove.
1664 * features/i386/i386-mpx.c: Remove.
1665 * features/i386/i386.c: Remove.
1666 * i386-tdep.c: Don't include features/i386/i386*.c., include
1667 target-descriptions.h and arch/i386.h.
1668 (i386_target_description): Create target descriptions.
1669 (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
1670 functions. Do self tests.
1671
0854b7b1
YQ
16722017-09-05 Yao Qi <yao.qi@linaro.org>
1673
1674 * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
1675 * features/i386/amd64-avx-avx512-linux.c: Removed.
1676 * features/i386/amd64-avx-linux.c: Removed.
1677 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
1678 * features/i386/amd64-avx-mpx-linux.c: Removed.
1679 * features/i386/amd64-linux.c: Removed.
1680 * features/i386/amd64-mpx-linux.c: Removed.
1681 * features/i386/x32-avx-avx512-linux.c: Removed.
1682 * features/i386/x32-avx-linux.c: Removed.
1683 * features/i386/x32-linux.c: Removed.
1684
b4570e4b
YQ
16852017-09-05 Yao Qi <yao.qi@linaro.org>
1686
1687 * amd64-linux-tdep.c: Include arch/amd64.h. Don't include
1688 features/i386/*.c.
1689 (amd64_linux_read_description): Call
1690 amd64_create_target_description.
1691 * arch/amd64.c: New file.
1692 * arch/amd64.h: New file.
1693 * configure.tgt (x86_64-*-linux*): Append amd64.o.
1694 * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
1695
6c73f67f
YQ
16962017-09-05 Yao Qi <yao.qi@linaro.org>
1697
1698 * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
1699 x32-XXX-linux.c. Include 64bit-XX.c and x32-XX.c.
1700 (amd64_linux_read_description): Create target descriptions.
1701 (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
1702 functions. Add unit tests.
1703 * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
1704 x32-core.xml.
1705 * features/i386/64bit-avx.c: Generated.
1706 * features/i386/64bit-avx512.c: Generated.
1707 * features/i386/64bit-core.c: Generated.
1708 * features/i386/64bit-linux.c: Generated.
1709 * features/i386/64bit-mpx.c: Generated.
1710 * features/i386/64bit-pkeys.c: Generated.
1711 * features/i386/64bit-segments.c: Generated.
1712 * features/i386/64bit-sse.c: Generated.
1713 * features/i386/x32-core.c: Generated.
1714 * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
1715 c files for amd64-linux and x32-linux.
1716
9d3d478b
YQ
17172017-09-05 Yao Qi <yao.qi@linaro.org>
1718
1719 * amd64-linux-tdep.c (amd64_linux_read_description): New
1720 function.
1721 (amd64_linux_core_read_description): Call
1722 amd64_linux_read_description.
1723 (amd64_linux_init_abi): Likewise.
1724 (amd64_x32_linux_init_abi): Likewise.
1725 * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
1726 * x86-linux-nat.c (x86_linux_read_description): Call
1727 amd64_linux_read_description.
1728
b9f1d50f
YQ
17292017-09-05 Yao Qi <yao.qi@linaro.org>
1730
1731 * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
1732 comments.
1733
188c9e6d
YQ
17342017-09-05 Yao Qi <yao.qi@linaro.org>
1735
1736 * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
1737 * features/i386/i386-avx-avx512-linux.c: Remove.
1738 * features/i386/i386-avx-linux.c: Remove.
1739 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
1740 * features/i386/i386-avx-mpx-linux.c: Remove.
1741 * features/i386/i386-linux.c: Remove.
1742 * features/i386/i386-mmx-linux.c: Remove.
1743 * features/i386/i386-mpx-linux.c: Remove.
1744
5f035c07
YQ
17452017-09-05 Yao Qi <yao.qi@linaro.org>
1746
1747 * Makefile.in (ALL_TARGET_OBS): Add i386.o.
1748 (SFILES): Add arch/i386.c.
1749 (HFILES_NO_SRCDIR): Add arch/i386.h.
1750 * arch/i386.c: New file.
1751 * arch/i386.h: New file.
1752 * arch/tdesc.h (allocate_target_description): Declare.
1753 (set_tdesc_architecture): Declare.
1754 (set_tdesc_osabi): Declare.
1755 * configure.tgt (i[34567]86-*-linux*): Add i386.o.
1756 * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
1757 include arch/i386.h.
1758 (i386_linux_read_description): Remove code and call
1759 i386_create_target_description.
1760 (set_tdesc_architecture): New function.
1761 (set_tdesc_osabi): New function.
1762 * target-descriptions.h (allocate_target_description): Remove.
1763
0abe8a89
YQ
17642017-09-05 Yao Qi <yao.qi@linaro.org>
1765
1766 * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
1767 * target-descriptions.c (tdesc_create_feature): Likewise, and
1768 adjust code.
1769 * features/i386/32bit-avx.c: Re-generated.
1770 * features/i386/32bit-avx512.c: Re-generated.
1771 * features/i386/32bit-core.c: Re-generated.
1772 * features/i386/32bit-linux.c: Re-generated.
1773 * features/i386/32bit-mpx.c: Re-generated.
1774 * features/i386/32bit-pkeys.c: Re-generated.
1775 * features/i386/32bit-sse.c: Re-generated.
1776
0a188386
YQ
17772017-09-05 Yao Qi <yao.qi@linaro.org>
1778
1779 * regformats/regdef.h (struct reg): Override operator == and !=.
1780
f49ff000
YQ
17812017-09-05 Yao Qi <yao.qi@linaro.org>
1782
1783 * arch/tdesc.h: New file.
1784 * regformats/regdat.sh: Generate code using tdesc_create_reg.
1785 * target-descriptions.c: Update comments.
1786 * target-descriptions.h: Include "arch/tdesc.h". Remove the
1787 declarations.
1788 * features/i386/32bit-avx.c: Re-generated.
1789 * features/i386/32bit-avx512.c: Re-generated.
1790 * features/i386/32bit-core.c: Re-generated.
1791 * features/i386/32bit-linux.c: Re-generated.
1792 * features/i386/32bit-mpx.c: Re-generated.
1793 * features/i386/32bit-pkeys.c: Re-generated.
1794 * features/i386/32bit-sse.c: Re-generated.
1795
f7000548
YQ
17962017-09-05 Yao Qi <yao.qi@linaro.org>
1797
1798 * regformats/regdat.sh: Update generated code.
1799
c9a5e2a5
YQ
18002017-09-05 Yao Qi <yao.qi@linaro.org>
1801
1802 * regformats/regdat.sh: Adjust code order.
1803
d6b687ac
SM
18042017-09-05 Simon Marchi <simon.marchi@ericsson.com>
1805
1806 * expprint.c (dump_subexp_body_standard): Use constant format
1807 string in fprintf_filtered call.
1808
a379bfd0
JB
18092017-09-04 John Baldwin <jhb@FreeBSD.org>
1810
1811 * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
1812 NetBSD/i386.
1813 * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
1814
f7efc967
JB
18152017-09-04 John Baldwin <jhb@FreeBSD.org>
1816
1817 * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
1818
c49fbc6c
JB
18192017-09-04 John Baldwin <jhb@FreeBSD.org>
1820
1821 * bsd-kvm.o: Define _KMEMUSER.
1822 * configure.ac: Define _KMEMUSER when checking for "struct lwp".
1823 * configure: Regenerate.
1824
26562e73
JB
18252017-09-04 John Baldwin <jhb@FreeBSD.org>
1826
1827 * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
1828 * i386-fbsd-nat.c: Likewise.
1829
31cf1487
JB
18302017-09-04 John Baldwin <jhb@FreeBSD.org>
1831
1832 * unittests/array-view-selftests.c: Add include of <array>.
1833
5b9f8a7c
JB
18342017-09-04 John Baldwin <jhb@FreeBSD.org>
1835
1836 * spu-tdep.c (flush_ea_cache): Add missing argument to
1837 call_function_by_hand.
1838
d69cf9b2
PA
18392017-09-04 Pedro Alves <palves@redhat.com>
1840
1841 * NEWS (Safer support for debugging with no debug info): New.
1842
3693fdb3
PA
18432017-09-04 Pedro Alves <palves@redhat.com>
1844
1845 * c-exp.y (function_method, function_method_void): Add current
1846 instance flags to TYPE_INSTANCE.
1847 * dwarf2read.c (check_modifier): New.
1848 (compute_delayed_physnames): Assert that only C++ adds delayed
1849 physnames. Mark fn_fields as const/volatile depending on
1850 physname.
1851 * eval.c (make_params): New type_instance_flags parameter. Use
1852 it as the new type's instance flags.
1853 (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
1854 flags element and pass it to make_params.
1855 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
1856 instance flags element.
1857 (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
1858 * gdbtypes.h: Include "enum-flags.h".
1859 (type_instance_flags): New enum-flags type.
1860 (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
1861 (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
1862 * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
1863 (follow_type_instance_flags): New function.
1864 (operator_check_standard) <TYPE_INSTANCE>: Adjust.
1865 * parser-defs.h (follow_type_instance_flags): Declare.
1866 * valops.c (value_struct_elt_for_reference): const/volatile must
1867 match too.
1868
e68cb8e0
PA
18692017-09-04 Pedro Alves <palves@redhat.com>
1870
1871 * cp-namespace.c (cp_search_static_and_baseclasses): Handle
1872 function/method scopes; lookup the nested name as a function local
1873 static variable.
1874
858be34c
PA
18752017-09-04 Pedro Alves <palves@redhat.com>
1876
1877 (%type <voidval>): Add function_method.
1878 * c-exp.y (exp): New production for calls with no arguments.
1879 (function_method, function_method_void_or_typelist): New
1880 productions.
1881 (exp): New production for "method()::static_var".
1882 * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
1883 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
1884 Handle OP_FUNC_STATIC_VAR.
1885 * parse.c (operator_length_standard):
1886 Handle OP_FUNC_STATIC_VAR.
1887
dd5901a6
PA
18882017-09-04 Pedro Alves <palves@redhat.com>
1889
1890 * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
1891 handling.
1892 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
1893 Ditto.
1894 * parse.c (operator_length_standard, operator_check_standard):
1895 Ditto.
1896 * std-operator.def (UNOP_MEMVAL_TLS): Delete.
1897
46a4882b
PA
18982017-09-04 Pedro Alves <palves@redhat.com>
1899
1900 * ax-gdb.c: Include "typeprint.h".
1901 (gen_expr_for_cast): New function.
1902 (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
1903 <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
1904 type is unknown.
1905 * dwarf2read.c (new_symbol_full): Fallback to int instead of
1906 nodebug_data_symbol.
1907 * eval.c: Include "typeprint.h".
1908 (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
1909 Error out if symbol has unknown type.
1910 <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
1911 evaluate_subexp_for_cast.
1912 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
1913 OP_VAR_MSYM_VALUE.
1914 (evaluate_subexp_for_cast): New function.
1915 * gdbtypes.c (init_nodebug_var_type): New function.
1916 (objfile_type): Use it to initialize types of variables with no
1917 debug info.
1918 * typeprint.c (error_unknown_type): New.
1919 * typeprint.h (error_unknown_type): New declaration.
1920 * compile/compile-c-types.c (convert_type_basic): Handle
1921 TYPE_CODE_ERROR; warn and fallback to int for variables with
1922 unknown type.
1923
fe13dfec
PA
19242017-09-04 Pedro Alves <palves@redhat.com>
1925
1926 * eval.c (evaluate_var_value): New function, factored out from ...
1927 (evaluate_subexp_standard): ... here.
1928
d008ee21
PA
19292017-09-04 Pedro Alves <palves@redhat.com>
1930
1931 * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
1932 Remove useless assignments to 'op'.
1933
827d0c51
PA
19342017-09-04 Pedro Alves <palves@redhat.com>
1935
1936 * eval.c (eval_skip_value): New function.
1937 (evaluate_subexp_standard): Use it.
1938
2c5a2be1
PA
19392017-09-04 Pedro Alves <palves@redhat.com>
1940
1941 * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
1942 function name from symbol/minsym and pass it to
1943 error_call_unknown_return_type.
1944
74ea4be4
PA
19452017-09-04 Pedro Alves <palves@redhat.com>
1946
1947 * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
1948 * ax-gdb.c (gen_msym_var_ref): New function.
1949 (gen_expr): Handle OP_VAR_MSYM_VALUE.
1950 * eval.c (evaluate_var_msym_value): New function.
1951 * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
1952 <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
1953 to call_function_by_hand.
1954 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
1955 Handle OP_VAR_MSYM_VALUE.
1956 (union exp_element) <msymbol>: New field.
1957 * minsyms.h (struct type): Forward declare.
1958 (find_minsym_type_and_address): Declare.
1959 * parse.c (write_exp_elt_msym): New function.
1960 (write_exp_msymbol): Delete, refactored as ...
1961 (find_minsym_type_and_address): ... this new function.
1962 (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
1963 (operator_length_standard, operator_check_standard): Handle
1964 OP_VAR_MSYM_VALUE.
1965 * std-operator.def (OP_VAR_MSYM_VALUE): New.
1966
7022349d
PA
19672017-09-04 Pedro Alves <palves@redhat.com>
1968
1969 * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
1970 TYPE_GNU_IFUNC specially here. Throw error if return type is
1971 unknown.
1972 * ada-typeprint.c (print_func_type): Handle functions with unknown
1973 return type.
1974 * c-typeprint.c (c_type_print_base): Handle functions and methods
1975 with unknown return type.
1976 * compile/compile-c-symbols.c (convert_symbol_bmsym)
1977 <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
1978 * compile/compile-c-types.c: Include "objfiles.h".
1979 (convert_func): For functions with unknown return type, warn and
1980 default to int.
1981 * compile/compile-object-run.c (compile_object_run): Adjust call
1982 to call_function_by_hand_dummy.
1983 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
1984 call_function_by_hand.
1985 * eval.c (evaluate_subexp_standard): Adjust calls to
1986 call_function_by_hand. Handle functions and methods with unknown
1987 return type. Pass expect_type to call_function_by_hand.
1988 * f-typeprint.c (f_type_print_base): Handle functions with unknown
1989 return type.
1990 * gcore.c (call_target_sbrk): Adjust call to
1991 call_function_by_hand.
1992 * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
1993 return type instead of int. Make nodebug_text_gnu_ifunc_symbol be
1994 an integer address type instead of nodebug.
1995 * guile/scm-value.c (gdbscm_value_call): Adjust call to
1996 call_function_by_hand.
1997 * infcall.c (error_call_unknown_return_type): New function.
1998 (call_function_by_hand): New "default_return_type" parameter.
1999 Pass it down.
2000 (call_function_by_hand_dummy): New "default_return_type"
2001 parameter. Use it instead of defaulting to int. If there's no
2002 default and the return type is unknown, throw an error. If
2003 there's a default return type, and the called function has no
2004 debug info, then assume the function is prototyped.
2005 * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
2006 New "default_return_type" parameter.
2007 (error_call_unknown_return_type): New declaration.
2008 * linux-fork.c (call_lseek): Cast return type of lseek.
2009 (inferior_call_waitpid, checkpoint_command): Adjust calls to
2010 call_function_by_hand.
2011 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
2012 calls to call_function_by_hand.
2013 * m2-typeprint.c (m2_procedure): Handle functions with unknown
2014 return type.
2015 * objc-lang.c (lookup_objc_class, lookup_child_selector)
2016 (value_nsstring, print_object_command): Adjust calls to
2017 call_function_by_hand.
2018 * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
2019 functions with unknown return type.
2020 (pascal_type_print_func_varspec_suffix): New function.
2021 (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
2022 TYPE_CODE_METHOD>: Use it.
2023 * python/py-value.c (valpy_call): Adjust call to
2024 call_function_by_hand.
2025 * rust-lang.c (rust_evaluate_funcall): Adjust call to
2026 call_function_by_hand.
2027 * valarith.c (value_x_binop, value_x_unop): Adjust calls to
2028 call_function_by_hand.
2029 * valops.c (value_allocate_space_in_inferior): Adjust call to
2030 call_function_by_hand.
2031 * typeprint.c (type_print_unknown_return_type): New function.
2032 * typeprint.h (type_print_unknown_return_type): New declaration.
2033
54990598
PA
20342017-09-04 Pedro Alves <palves@redhat.com>
2035
2036 * gdbtypes.c (lookup_function_type_with_arguments): Mark function
2037 types with more than one parameter as prototyped.
2038
9a24775b
PA
20392017-09-04 Pedro Alves <palves@redhat.com>
2040
2041 * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
2042 (disassemble_command): Use gdb_disassembly_flags instead of bare
2043 int.
2044 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
2045 (dump_insns, do_mixed_source_and_assembly_deprecated)
2046 (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
2047 Use gdb_disassembly_flags instead of bare int.
2048 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
2049 (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
2050 (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
2051 (DISASSEMBLY_SPECULATIVE): No longer macros. Instead they're...
2052 (enum gdb_disassembly_flag): ... values of this new enumeration.
2053 (gdb_disassembly_flags): Define.
2054 (gdb_disassembly)
2055 (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
2056 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
2057 gdb_disassembly_flags instead of bare int.
2058 * record-btrace.c (btrace_insn_history)
2059 (record_btrace_insn_history, record_btrace_insn_history_range)
2060 (record_btrace_insn_history_from): Use gdb_disassembly_flags
2061 instead of bare int.
2062 * record.c (get_insn_history_modifiers, cmd_record_insn_history):
2063 Use gdb_disassembly_flags instead of bare int.
2064 * target-debug.h (target_debug_print_gdb_disassembly_flags):
2065 Define.
2066 * target-delegates.c: Regenerate.
2067 * target.c (target_insn_history, target_insn_history_from)
2068 (target_insn_history_range): Use gdb_disassembly_flags instead of
2069 bare int.
2070 * target.h: Include "disasm.h".
2071 (struct target_ops) <to_insn_history, to_insn_history_from,
2072 to_insn_history_range>: Use gdb_disassembly_flags instead of bare
2073 int.
2074 (target_insn_history, target_insn_history_from)
2075 (target_insn_history_range): Use gdb_disassembly_flags instead of
2076 bare int.
2077
80a65e9b
SM
20782017-09-04 Simon Marchi <simon.marchi@ericsson.com>
2079
2080 * cli/cli-script.c (build_command_line): For if/while commands,
2081 check whether args is empty.
2082
6b66338c
SM
20832017-09-04 Simon Marchi <simon.marchi@ericsson.com>
2084
2085 * cli/cli-script.h (enum misc_command_type): Move from defs.h.
2086 (enum command_control_type): Likewise.
2087 (struct command_line): Likewise.
2088 (free_command_lines): Likewise.
2089 (struct command_lines_deleter): Likewise.
2090 (command_line_up): Likewise.
2091 (read_command_lines): Likewise.
2092 (read_command_lines_1): Likewise.
2093 * defs.h (enum misc_command_type): Move to cli/cli-script.h.
2094 (enum command_control_type): Likewise.
2095 (struct command_line): Likewise.
2096 (free_command_lines): Likewise.
2097 (struct command_lines_deleter): Likewise.
2098 (command_line_up): Likewise.
2099 (read_command_lines): Likewise.
2100 (read_command_lines_1): Likewise.
2101 * breakpoint.h: Include cli/cli-script.h.
2102 * extension-priv.h: Likewise.
2103 * gdbcmd.h: Likewise.
2104
51abb421
PA
21052017-09-04 Pedro Alves <palves@redhat.com>
2106
2107 * ada-lang.c (is_known_support_routine): Move sal declaration to
2108 where it is initialized.
2109 * breakpoint.c (create_internal_breakpoint, init_catchpoint)
2110 (parse_breakpoint_sals, decode_static_tracepoint_spec)
2111 (clear_command, update_static_tracepoint): Remove init_sal
2112 references. Move declarations closer to initializations.
2113 * cli/cli-cmds.c (list_command): Move sal declarations closer to
2114 initializations.
2115 * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
2116 references. Move sal declarations closer to initializations.
2117 * frame.c (find_frame_sal): Return a symtab_and_line via function
2118 return instead of output parameter. Remove init_sal references.
2119 * frame.h (find_frame_sal): Return a symtab_and_line via function
2120 return instead of output parameter.
2121 * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
2122 * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
2123 instead of memset.
2124 (gdbscm_find_pc_line): Remove init_sal reference.
2125 * infcall.c (call_function_by_hand_dummy): Remove init_sal
2126 references. Move declarations closer to initializations.
2127 * infcmd.c (set_step_frame): Update. Move declarations closer to
2128 initializations.
2129 (finish_backward): Remove init_sal references. Move declarations
2130 closer to initializations.
2131 * infrun.c (process_event_stop_test, handle_step_into_function)
2132 (insert_hp_step_resume_breakpoint_at_frame)
2133 (insert_step_resume_breakpoint_at_caller): Likewise.
2134 * linespec.c (create_sals_line_offset, decode_digits_ordinary)
2135 (symbol_to_sal): Likewise.
2136 * probe.c (parse_probes_in_pspace): Remove init_sal reference.
2137 * python/py-frame.c (frapy_find_sal): Move sal declaration closer
2138 to its initialization.
2139 * reverse.c (save_bookmark_command): Use new/delete. Remove
2140 init_sal references. Move declarations closer to initializations.
2141 * source.c (get_current_source_symtab_and_line): Remove brace
2142 initialization.
2143 (set_current_source_symtab_and_line): Now takes the sal by const
2144 reference. Remove brace initialization.
2145 (line_info): Remove init_sal reference.
2146 * source.h (set_current_source_symtab_and_line): Now takes a
2147 symtab_and_line via const reference.
2148 * stack.c (set_current_sal_from_frame): Adjust.
2149 (print_frame_info): Adjust.
2150 (get_last_displayed_sal): Return the sal via function return
2151 instead of via output parameter. Simplify.
2152 (frame_info): Adjust.
2153 * stack.h (get_last_displayed_sal): Return the sal via function
2154 return instead of via output parameter.
2155 * symtab.c (init_sal): Delete.
2156 (find_pc_sect_line): Remove init_sal references. Move
2157 declarations closer to initializations.
2158 (find_function_start_sal): Remove init_sal references. Move
2159 declarations closer to initializations.
2160 * symtab.h (struct symtab_and_line): In-class initialize all
2161 fields.
2162 * tracepoint.c (set_traceframe_context)
2163 (print_one_static_tracepoint_marker): Remove init_sal references.
2164 Move declarations closer to initializations.
2165 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
2166 * tui/tui-stack.c (tui_show_frame_info): Adjust. Move
2167 declarations closer to initializations.
2168 * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
2169 init_sal references. Adjust.
2170
6c5b2ebe
PA
21712017-09-04 Pedro Alves <palves@redhat.com>
2172
2173 * ax-gdb.c (agent_command_1): Use range-for.
2174 * break-catch-throw.c (re_set_exception_catchpoint): Update.
2175 * breakpoint.c: Include "common/array-view.h".
2176 (init_breakpoint_sal, create_breakpoint_sal): Change sals
2177 parameter from struct symtabs_and_lines to
2178 array_view<symtab_and_line>. Adjust. Use range-for. Update.
2179 (breakpoint_sals_to_pc): Change sals parameter from struct
2180 symtabs_and_lines to std::vector reference.
2181 (check_fast_tracepoint_sals): Change sals parameter from struct
2182 symtabs_and_lines to std::array_view. Use range-for.
2183 (decode_static_tracepoint_spec): Return a std::vector instead of
2184 symtabs_and_lines. Update.
2185 (create_breakpoint): Update.
2186 (break_range_command, until_break_command, clear_command): Update.
2187 (base_breakpoint_decode_location, bkpt_decode_location)
2188 (bkpt_probe_create_sals_from_location)
2189 (bkpt_probe_decode_location, tracepoint_decode_location)
2190 (tracepoint_probe_decode_location)
2191 (strace_marker_create_sals_from_location): Return a std::vector
2192 instead of symtabs_and_lines.
2193 (strace_marker_create_breakpoints_sal): Update.
2194 (strace_marker_decode_location): Return a std::vector instead of
2195 symtabs_and_lines. Update.
2196 (update_breakpoint_locations): Change struct symtabs_and_lines
2197 parameters to gdb::array_view. Adjust.
2198 (location_to_sals): Return a std::vector instead of
2199 symtabs_and_lines. Update.
2200 (breakpoint_re_set_default): Use std::vector instead of struct
2201 symtabs_and_lines.
2202 (decode_location_default): Return a std::vector instead of
2203 symtabs_and_lines. Update.
2204 * breakpoint.h: Include "common/array-view.h".
2205 (struct breakpoint_ops) <decode_location>: Now returns a
2206 std::vector instead of returning a symtabs_and_lines via output
2207 parameter.
2208 (update_breakpoint_locations): Change sals parameters to use
2209 gdb::array_view.
2210 * cli/cli-cmds.c (edit_command, list_command): Update to use
2211 std::vector and gdb::array_view.
2212 (ambiguous_line_spec): Adjust to use gdb::array_view and
2213 range-for.
2214 (compare_symtabs): Rename to ...
2215 (cmp_symtabs): ... this. Change parameters to symtab_and_line
2216 const reference and adjust.
2217 (filter_sals): Rewrite using std::vector and standard algorithms.
2218 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
2219 (jump_command): Update to use std::vector.
2220 * linespec.c (struct linespec_state) <canonical_names>: Update
2221 comment.
2222 (add_sal_to_sals_basic): Delete.
2223 (add_sal_to_sals, filter_results, convert_results_to_lsals)
2224 (decode_line_2, create_sals_line_offset)
2225 (convert_address_location_to_sals, convert_linespec_to_sals)
2226 (convert_explicit_location_to_sals, parse_linespec)
2227 (event_location_to_sals, decode_line_full, decode_line_1)
2228 (decode_line_with_current_source)
2229 (decode_line_with_last_displayed, decode_objc)
2230 (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
2231 (linespec_result::~linespec_result): Adjust to use std::vector
2232 instead of symtabs_and_lines.
2233 * linespec.h (linespec_sals::sals): Now a std::vector.
2234 (struct linespec_result): Use std::vector, bool, and in-class
2235 initialization.
2236 (decode_line_1, decode_line_with_current_source)
2237 (decode_line_with_last_displayed): Return std::vector.
2238 * macrocmd.c (info_macros_command): Use std::vector.
2239 * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
2240 * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
2241 std::vector.
2242 * probe.h (parse_probes): Return a std::vector.
2243 * python/python.c (gdbpy_decode_line): Use std::vector and
2244 gdb::array_view.
2245 * source.c (select_source_symtab, line_info): Use std::vector.
2246 * stack.c (func_command): Use std::vector.
2247 * symtab.h (struct symtabs_and_lines): Delete.
2248 * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
2249
7c44b49c
PA
22502017-09-04 Pedro Alves <palves@redhat.com>
2251
2252 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
2253 unittests/array-view-selftests.c.
2254 (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
2255 * common/array-view.h: New file.
2256 * unittests/array-view-selftests.c: New file.
2257
e439fa14
PA
22582017-09-04 Pedro Alves <palves@redhat.com>
2259
2260 * cli/cli-cmds.c (edit_command): Pass message to
2261 ambiguous_line_spec.
2262 (list_command): Pass message to ambiguous_line_spec. Say
2263 "first"/"last" instead of "start" and "end" to be consistent with
2264 the manual.
2265 (ambiguous_line_spec): Add 'format' and vararg parameters. Use
2266 them to print formatted message.
2267
7525b645
PA
22682017-09-04 Pedro Alves <palves@redhat.com>
2269
2270 * btrace.c (ftrace_add_pt): Pass btrace_insn to
2271 ftrace_update_insns by reference instead of pointer.
2272
badc0020
YQ
22732017-09-04 Yao Qi <yao.qi@linaro.org>
2274
2275 * i386-go32-tdep.c: Include x86-xstate.h.
2276 (i386_go32_init_abi): Call i386_target_description.
2277 * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
2278 if xcr0 is X86_XSTATE_X87_MASK.
2279 * i386-tdep.h (tdesc_i386): Remove the declaration.
2280 (tdesc_i386_mmx): Likewise.
2281
d78bdb54
YQ
22822017-09-04 Yao Qi <yao.qi@linaro.org>
2283
2284 * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
2285 X86_XSTATE_SSE_MASK instead of 0.
2286
ca1fa5ee
YQ
22872017-09-04 Yao Qi <yao.qi@linaro.org>
2288
2289 * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
2290 i386_target_description.
2291 * i386-fbsd-nat.c (i386fbsd_read_description): Call
2292 i386_target_description.
2293 * i386-tdep.c (i386_gdbarch_init): Likewise.
2294
2434b019
YQ
22952017-09-04 Yao Qi <yao.qi@linaro.org>
2296
2297 * amd64-darwin-tdep.c: Include "x86-xstate.h".
2298 (x86_darwin_init_abi_64): Call amd64_target_description.
2299 * amd64-dicos-tdep.c: Likewise.
2300 * amd64-fbsd-nat.c: Likewise.
2301 * amd64-fbsd-tdep.c: Likewise.
2302 * amd64-nbsd-tdep.c: Likewise.
2303 * amd64-obsd-tdep.c: Likewise.
2304 * amd64-sol2-tdep.c: Likewise.
2305 * amd64-windows-tdep.c: Likewise.
2306 * amd64-tdep.h (tdesc_amd64): Remove the declaration.
2307
0860c437
SM
23082017-09-04 Simon Marchi <simon.marchi@ericsson.com>
2309
2310 * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
2311 (btrace_function) <insn>: Change type to use std::vector.
2312 * btrace.c (ftrace_debug, ftrace_call_num_insn,
2313 ftrace_find_call, ftrace_new_gap, ftrace_update_function,
2314 ftrace_update_insns, ftrace_compute_global_level_offset,
2315 btrace_stitch_bts, btrace_clear, btrace_insn_get,
2316 btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
2317 change to std::vector.
2318 (ftrace_update_insns): Adjust to change to std::vector, change
2319 type of INSN parameter.
2320 (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
2321 * record-btrace.c (btrace_call_history_insn_range,
2322 btrace_compute_src_line_range,
2323 record_btrace_frame_prev_register): Adjust to change to
2324 std::vector.
2325 * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
2326 to change to std::vector.
2327
0638b7f9
TT
23282017-09-03 Tom Tromey <tom@tromey.com>
2329
2330 * corefile.c (reopen_exec_file): Use std::string.
2331
8f84fb0e
TT
23322017-09-03 Tom Tromey <tom@tromey.com>
2333
2334 * compile/compile.c (compile_register_name_mangled): Return
2335 std::string.
2336 * compile/compile-loc2c.c (pushf_register_address): Update.
2337 (pushf_register): Update.
2338 * compile/compile-c-types.c (convert_array): Update.
2339 * compile/compile-c-symbols.c (generate_vla_size): Update.
2340 (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
2341 (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
2342 (convert_one_symbol): Update.
2343 (generate_c_for_for_one_variable): Update.
2344 * compile/compile-c-support.c (c_get_range_decl_name): Return a
2345 std::string.
2346 (generate_register_struct): Update.
2347 * compile/compile-internal.h (c_get_range_decl_name): Return a
2348 std::string.
2349 (compile_register_name_mangled): Return std::string.
2350
18e9961f
TT
23512017-09-03 Tom Tromey <tom@tromey.com>
2352
2353 * utils.c (perror_string): Return a std::string.
2354 (throw_perror_with_name, perror_warning_with_name): Update.
2355
45343786
TT
23562017-09-03 Tom Tromey <tom@tromey.com>
2357
2358 * demangle.c (demangle_command): Use std::string,
2359 unique_xmalloc_ptr.
2360
b57af503
TT
23612017-09-03 Tom Tromey <tom@tromey.com>
2362
2363 * cli/cli-setshow.c (do_set_command): Use std::string.
2364
6eecf35f
TT
23652017-09-03 Tom Tromey <tom@tromey.com>
2366
2367 * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
2368
56496dd4
TT
23692017-09-03 Tom Tromey <tom@tromey.com>
2370
2371 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
2372
e91a1fa7
TT
23732017-09-03 Tom Tromey <tom@tromey.com>
2374
2375 * mi/mi-cmd-env.c (env_execute_cli_command): Use
2376 gdb::unique_xmalloc_ptr.
2377
7ffd83d7
TT
23782017-09-03 Tom Tromey <tom@tromey.com>
2379
2380 * thread.c (print_thread_info_1): Use string_printf.
2381 (thread_apply_command, thread_apply_all_command): Use
2382 std::string.
2383
1ccbe998
TT
23842017-09-03 Tom Tromey <tom@tromey.com>
2385
2386 * valprint.c (val_print_string): Update.
2387 * gdbcore.h (memory_error_message): Return std::string.
2388 * corefile.c (memory_error_message): Return std::string.
2389 (memory_error): Update.
2390 * breakpoint.c (insert_bp_location): Update.
2391
23fdd69e
SM
23922017-09-03 Simon Marchi <simon.marchi@ericsson.com>
2393
2394 * target/waitstatus.h (target_waitstatus_to_string): Change
2395 return type to std::string.
2396 * target/waitstatus.c (target_waitstatus_to_string): Return
2397 std::string.
2398 * target.h (target_waitstatus_to_string): Remove declaration.
2399 * infrun.c (resume, clear_proceed_status_thread,
2400 print_target_wait_results, do_target_wait, save_waitstatus,
2401 stop_all_threads): Adjust.
2402 * record-btrace.c (record_btrace_wait): Adjust.
2403 * target-debug.h
2404 (target_debug_print_struct_target_waitstatus_p): Adjust.
2405
5c811d30
JK
24062017-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2407
2408 PR gdb/22046
2409 * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
2410 detection.
2411
0a2dde4a
SDJ
24122017-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
2413
2414 * NEWS (Changes since GDB 8.0): Add entry mentioning new support
2415 for setting/unsetting environment variables on the remote target.
2416 (New remote packets): Add entries for QEnvironmentHexEncoded,
2417 QEnvironmentUnset and QEnvironmentReset.
2418 * common/environ.c (gdb_environ::operator=): Extend method to
2419 handle m_user_set_env_list and m_user_unset_env_list.
2420 (gdb_environ::clear): Likewise.
2421 (match_var_in_string): Change type of first parameter from 'char
2422 *' to 'const char *'.
2423 (gdb_environ::set): Extend method to handle
2424 m_user_set_env_list and m_user_unset_env_list.
2425 (gdb_environ::unset): Likewise.
2426 (gdb_environ::clear_user_set_env): New method.
2427 (gdb_environ::user_set_envp): Likewise.
2428 (gdb_environ::user_unset_envp): Likewise.
2429 * common/environ.h (gdb_environ): Handle m_user_set_env_list and
2430 m_user_unset_env_list on move constructor/assignment.
2431 (unset): Add new default parameter 'update_unset_list = true'.
2432 (clear_user_set_env): New method.
2433 (user_set_envp): Likewise.
2434 (user_unset_envp): Likewise.
2435 (m_user_set_env_list): New std::set.
2436 (m_user_unset_env_list): Likewise.
2437 * common/rsp-low.c (hex2str): New function.
2438 (bin2hex): New overload for bin2hex function.
2439 * common/rsp-low.c (hex2str): New prototype.
2440 (str2hex): New overload prototype.
2441 * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
2442 QEnvironmentUnset and QEnvironmentReset.
2443 (remote_protocol_features): Add QEnvironmentHexEncoded,
2444 QEnvironmentUnset and QEnvironmentReset packets.
2445 (send_environment_packet): New function.
2446 (extended_remote_environment_support): Likewise.
2447 (extended_remote_create_inferior): Call
2448 extended_remote_environment_support.
2449 (_initialize_remote): Add QEnvironmentHexEncoded,
2450 QEnvironmentUnset and QEnvironmentReset packet configs.
2451 * unittests/environ-selftests.c (gdb_selftest_env_var):
2452 New variable.
2453 (test_vector_initialization): New function.
2454 (test_init_from_host_environ): Likewise.
2455 (test_reinit_from_host_environ): Likewise.
2456 (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
2457 Likewise.
2458 (test_unset_set_empty_vector): Likewise.
2459 (test_vector_clear): Likewise.
2460 (test_std_move): Likewise.
2461 (test_move_constructor):
2462 (test_self_move): Likewise.
2463 (test_set_unset_reset): Likewise.
2464 (run_tests): Rewrite in terms of the functions above.
2465
654670a4
WP
24662017-08-31 Weimin Pan <weimin.pan@oracle.com>
2467
2468 * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
2469 (adi_available): Use a temp variable of type CORE_ADDR as argument
2470 3 when calling target_auxv_search.
2471 (adi_normalize_address): Use masks and xor operators to calculate
2472 normalized address.
2473 (adi_read_versions, adi_write_versions, adi_print_versions)
2474 (do_examine, do_assign): Use paddress.
2475
7755ddb7
JB
24762017-08-29 John Baldwin <jhb@FreeBSD.org>
2477
2478 * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
2479 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
2480 out of loop and add supply of FIR.
2481 (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
2482 add collect of FIR.
2483
fd437cbc
SM
24842017-08-28 Simon Marchi <simon.marchi@ericsson.com>
2485
3804a343 2486 PR gdb/21827
fd437cbc
SM
2487 * cli/cli-script.c (define_command): Don't convert command name
2488 to lower case.
2489
988f6b3d
JB
24902017-08-25 Joel Brobecker <brobecker@adacore.com>
2491
2492 * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
2493 Update all callers accordingly. Remove all code blocks handling
2494 the case where DISPP is not NULL.
2495
663c44ac
JK
24962017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2497
2498 PR symtab/22003
2499 * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
2500 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
2501 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
2502
f1902523
JK
25032017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2504
2505 * dwarf2read.c (build_type_psymtabs_reader): New prototype.
2506 (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
2507 (read_comp_units_from_section): New parameter abbrev_section, use
2508 read_and_check_comp_unit_head, allocate signatured_type if needed.
2509 (create_all_comp_units): Update read_comp_units_from_section caller.
2510
87215ad1
SDJ
25112017-08-23 Pedro Alves <palves@redhat.com>
2512
2513 PR remote/21852
2514 * remote.c (add_current_inferior_and_thread): Set inferior_ptid
2515 to null_ptid and switch to thread without reading the registers
2516 after adding the inferior.
2517
6e41ddec
JK
25182017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2519
2520 * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
2521 compile-gcc.
2522 * compile/compile.c (compile_gcc, show_compile_gcc): New.
2523 (compile_to_object): Implement compile_gcc.
2524 (_initialize_compile): Install "set compile-gcc". Initialize
2525 compile_gcc.
2526
e68c32d5
JK
25272017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2528
2529 * compile/compile.c (compile_to_object): Conditionally call
2530 set_verbose. Conditionally call compile or compile_v0.
2531
58afddc6
WP
25322017-08-07 Weimin Pan <weimin.pan@oracle.com>
2533
2534 * sparc64-tdep.h: (adi_normalize_address): New export.
2535 * sparc-nat.h: (open_adi_tag_fd): New export.
2536 * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
2537 * sparc64-linux-tdep.c:
2538 (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
2539 (sparc64_linux_handle_segmentation_fault): New function.
2540 (sparc64_linux_init_abi): Register
2541 sparc64_linux_handle_segmentation_fault
2542 * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
2543 (sparc64_addr_bits_remove): New function.
2544 (sparc64_init_abi): Register sparc64_addr_bits_remove.
2545 (MAX_PROC_NAME_SIZE): New macro.
2546 (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
2547 (sparc64adilist): New variable.
2548 (adi_proc_list): New variable.
2549 (find_adi_info): New function.
2550 (add_adi_info): New function.
2551 (get_adi_info_proc): New function.
2552 (get_adi_info): New function.
2553 (info_adi_command): New function.
2554 (read_maps_entry): New function.
2555 (adi_available): New function.
2556 (adi_normalize_address): New function.
2557 (adi_align_address): New function.
2558 (adi_convert_byte_count): New function.
2559 (adi_tag_fd): New function.
2560 (adi_is_addr_mapped): New function.
2561 (adi_read_versions): New function.
2562 (adi_write_versions): New function.
2563 (adi_print_versions): New function.
2564 (do_examine): New function.
2565 (do_assign): New function.
2566 (adi_examine_command): New function.
2567 (adi_assign_command): New function.
2568 (_initialize_sparc64_adi_tdep): New function.
2569
11db9430
SM
25702017-08-22 Simon Marchi <simon.marchi@ericsson.com>
2571
2572 * breakpoint.c (breakpoints_info): Rename to ...
2573 (info_breakpoints_command): ... this.
2574 (watchpoints_info): Rename to ...
2575 (info_watchpoints_command): ... this.
2576 (tracepoints_info): Rename to ...
2577 (info_tracepoints_command): ... this.
2578 (_initialize_breakpoint): Adjust.
2579 * dcache.c (dcache_info): Rename to ...
2580 (info_display_command): ... this.
2581 (_initialize_dcache): Adjust.
2582 * frame.h (args_info): Rename to ...
2583 (info_args_command): ... this.
2584 (locals_info): Rename to ...
2585 (info_locals_command): ... this.
2586 * infcmd.c (nofp_registers_info): Rename to ...
2587 (info_registers_command): ... this.
2588 (float_info): Rename to ...
2589 (info_float_command): ... this.
2590 (program_info): Rename to ...
2591 (info_program_command): ... this.
2592 (all_registers_info): Rename to ...
2593 (info_all_registers_command): ... this.
2594 (vector_info): Rename to ...
2595 (info_vector_command): ... this.
2596 (float_info): Rename to ...
2597 (info_float_command): ... this.
2598 (_initialize_infcmd): Adjust.
2599 * inferior.h (term_info): Rename to ...
2600 (info_terminal_command): ... this.
2601 * inflow.c (term_info): Rename to ...
2602 (info_terminal_command): ... this.
2603 (_initialize_inflow): Adjust.
2604 * infrun.c (signals_info): Rename to ...
2605 (info_signals_command): ... this.
2606 (_initialize_infrun): Adjust.
2607 * objc-lang.c (classes_info): Rename to ...
2608 (info_classes_command): ... this.
2609 (selectors_info): Rename to ...
2610 (info_selectors_command): ... this.
2611 (_initialize_objc_language): Adjust.
2612 * printcmd.c (sym_info): Rename to ...
2613 (info_symbol_command): ... this.
2614 (address_info): Rename to ...
2615 (info_address_command): ... this.
2616 (display_info): Rename to ...
2617 (info_display_command): ... this.
2618 (_initialize_printcmd): Adjust.
2619 * reverse.c (bookmarks_info): Rename to ...
2620 (info_breakpoints_command): ... this.
2621 (_initialize_reverse): Adjust.
2622 * ser-go32.c (dos_info): Rename to ...
2623 (info_serial_command): ... this.
2624 (_initialize_ser_dos): Adjust.
2625 * skip.c (skip_info): Rename to ...
2626 (info_skip_command): ... this.
2627 (_initialize_step_skip): Adjust.
2628 * source.c (line_info): Rename to ...
2629 (info_line_command): ... this.
2630 (source_info): Rename to ...
2631 (info_source_command)
2632 * stack.c (frame_info): Rename to ...
2633 (info_frame_command): ... this.
2634 (locals_info): Rename to ...
2635 (info_locals_command): ... this.
2636 (args_info): Rename to ...
2637 (info_args_command): ... this.
2638 (_initialize_stack): Adjust.
2639 * symtab.c (sources_info): Rename to ...
2640 (info_sources_command): ... this.
2641 (variables_info): Rename to ...
2642 (info_variables_command): ... this.
2643 (functions_info): Rename to ...
2644 (info_functions_command): ... this.
2645 (types_info): Rename to ...
2646 (info_types_command): ... this.
2647 (_initialize_symtab): Adjust.
2648 * target.c (target_info): Rename to ...
2649 (info_target_command): ... this.
2650 (initialize_targets): Adjust.
2651 * tracepoint.c (tvariables_info): Rename to ...
2652 (info_tvariables_command): ... this.
2653 (scope_info): Rename to ...
2654 (info_scope_command): ... this.
2655 (trace_dump_actions): Adjust.
2656 (_initialize_tracepoint): Adjust.
2657
b270e6f9
TT
26582017-08-22 Tom Tromey <tom@tromey.com>
2659
2660 * breakpoint.h (install_breakpoint): Update.
2661 * breakpoint.c (add_solib_catchpoint): Update.
2662 (install_breakpoint): Change argument to a std::unique_ptr.
2663 (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
2664 (create_breakpoint_sal, create_breakpoint): Update.
2665 (watch_command_1, catch_exec_command_1)
2666 (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
2667 (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
2668 Return the breakpoint.
2669 (set_raw_breakpoint_without_location, set_raw_breakpoint)
2670 (new_single_step_breakpoint): Update.
2671 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
2672 std::unique_ptr.
2673 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
2674 std::unique_ptr.
2675 * break-catch-sig.c (create_signal_catchpoint): Use
2676 std::unique_ptr.
2677 * ada-lang.c (create_ada_exception_catchpoint): Use
2678 std::unique_ptr.
2679
36bd8eaa
TT
26802017-08-22 Tom Tromey <tom@tromey.com>
2681
2682 * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
2683
56f37645
TT
26842017-08-22 Tom Tromey <tom@tromey.com>
2685
2686 * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
2687 (lookup_partial_symbol): Update.
2688
0b581c69
TT
26892017-08-22 Tom Tromey <tom@tromey.com>
2690
2691 * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
2692 * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
2693 (find_and_open_source, symtab_to_fullname): Update.
2694 * psymtab.c (psymtab_to_fullname): Update.
2695
14278e1f
TT
26962017-08-22 Tom Tromey <tom@tromey.com>
2697
2698 * exec.c (exec_file_attach): Update.
2699 * linux-thread-db.c (try_thread_db_load): Update.
2700 * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
2701 * utils.c (gdb_realpath): Change return type.
2702 (gdb_realpath_keepfile): Update.
2703 (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
2704 (_initialize_utils): Register the new self test.
2705 * source.c (openp): Update.
2706 (find_and_open_source): Update.
2707 * nto-tdep.c (nto_find_and_open_solib): Update.
2708 * main.c (set_gdb_data_directory): Update.
2709 (captured_main_1): Update.
2710 * dwarf2read.c (dwarf2_get_dwz_file): Update
2711 (dw2_map_symbol_filenames): Update.
2712 * auto-load.c (auto_load_safe_path_vec_update): Update.
2713 (filename_is_in_auto_load_safe_path_vec): Change type of
2714 "filename_realp".
2715 (auto_load_objfile_script): Update.
2716 (file_is_auto_load_safe): Update. Use std::string.
2717 * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
2718
4971c9a7
TT
27192017-08-22 Tom Tromey <tom@tromey.com>
2720
2721 * utils.c (gdb_realpath_keepfile): Return a
2722 gdb::unique_xmalloc_ptr.
2723 * exec.c (exec_file_attach): Update.
2724 * utils.h (gdb_realpath_keepfile): Return a
2725 gdb::unique_xmalloc_ptr.
2726
e3e41d58
TT
27272017-08-22 Tom Tromey <tom@tromey.com>
2728
2729 * compile/compile.c (compile_file_command): Use
2730 gdb::unique_xmalloc_ptr, std::string.
2731 * utils.c (gdb_abspath): Change return type.
2732 * source.c (openp): Update.
2733 * objfiles.c (allocate_objfile): Update.
2734 * main.c (set_gdb_data_directory): Update.
2735 * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
2736
0d999a6e
ZZ
27372017-08-22 Zhouyi Zhou <zhouzhouyi@gmail.com>
2738
2739 * cli-cmds.c (list_commands): List actual code around more than
2740 one location.
2741
329d5e7e
JB
27422017-08-21 John Baldwin <jhb@FreeBSD.org>
2743
2744 * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
2745
bf223d3e
PA
27462017-08-21 Pedro Alves <palves@redhat.com>
2747
2748 PR gdb/19487
2749 * c-exp.y (variable production): Handle function aliases.
2750 * minsyms.c (msymbol_is_text): New function.
2751 * minsyms.h (msymbol_is_text): Declare.
2752 * symtab.c (find_function_alias_target): New function.
2753 * symtab.h (find_function_alias_target): Declare.
2754
c973d0aa
PA
27552017-08-21 Pedro Alves <palves@redhat.com>
2756
2757 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
2758 typedefs.
2759 * typeprint.c (whatis_exp): If handling "whatis", and expression
2760 is OP_TYPE, strip one typedef level. Otherwise don't strip
2761 typedefs here.
2762 * valops.c (value_cast): Save "to" type before resolving
2763 stubs/typedefs. Use that type as resulting value's type.
2764
2989a365
TT
27652017-08-18 Tom Tromey <tom@tromey.com>
2766 Pedro Alves <palves@redhat.com>
2767
2768 * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
2769 * sol-thread.c (sol_thread_resume, sol_thread_wait)
2770 (sol_thread_xfer_partial, rw_common): Use scoped_restore.
2771 * procfs.c (procfs_do_thread_registers): Use scoped_restore.
2772 * proc-service.c (ps_xfer_memory): Use scoped_restore.
2773 * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
2774 (linux_get_siginfo_data): Add "thread" argument. Use
2775 scoped_restore.
2776 * linux-nat.c (linux_child_follow_fork)
2777 (check_stopped_by_watchpoint): Use scoped_restore.
2778 * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
2779 (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
2780 (restore_inferior_ptid, save_inferior_ptid): Remove.
2781 * btrace.c (btrace_fetch): Use scoped_restore.
2782 * bsd-uthread.c (bsd_uthread_fetch_registers)
2783 (bsd_uthread_store_registers): Use scoped_restore.
2784 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
2785 scoped_restore.
2786 * aix-thread.c (aix_thread_resume, aix_thread_wait)
2787 (aix_thread_xfer_partial): Use scoped_restore.
2788 * inferior.h (save_inferior_ptid): Remove.
2789
e60eb288
YQ
27902017-08-18 Yao Qi <yao.qi@linaro.org>
2791
2792 PR tdep/21818
2793 * arm-tdep.c (gdb_print_insn_arm): Mark
2794 USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
2795
6d580b63
YQ
27962017-08-18 Yao Qi <yao.qi@linaro.org>
2797
2798 * NEWS: Mention GDBserver's new option "--selftest".
2799 * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
2800 * selftest.c: Move it to common/selftest.c.
2801 * selftest.h: Move it to common/selftest.h.
2802 * selftest-arch.c (reset): New function.
2803 (tests_with_arch): Call reset.
2804
86dcbf50
YQ
28052017-08-18 Yao Qi <yao.qi@linaro.org>
2806
2807 * selftest.c (run_tests): Don't call QUIT. Call debug_printf
2808 instead of exception_fprintf and printf_filtered.
2809
7649770c
YQ
28102017-08-18 Yao Qi <yao.qi@linaro.org>
2811
2812 * selftest.c (register_self_test): Rename it to
2813 selftests::register_test.
2814 (run_self_tests): selftest::run_tests.
2815 * selftest.h: Update declarations.
2816 * selftest-arch.c (register_self_test_foreach_arch): Rename it to
2817 selftests::register_test_foreach_arch.
2818 * selftest-arch.h: Update declaration.
2819 * aarch64-tdep.c: Update.
2820 * arm-tdep.c: Likewise.
2821 * disasm-selftests.c: Likewise.
2822 * dwarf2loc.c: Likewise.
2823 * dwarf2-frame.c: Likewise.
2824 * findvar.c: Likewise.
2825 * gdbarch-selftests.c: Likewise.
2826 * maint.c (maintenance_selftest): Likewise.
2827 * regcache.c: Likewise.
2828 * rust-exp.y: Likewise.
2829 * selftest-arch.c: Likewise.
2830 * unittests/environ-selftests.c: Likewise.
2831 * unittests/function-view-selftests.c: Likewise.
2832 * unittests/offset-type-selftests.c: Likewise.
2833 * unittests/optional-selftests.c: Likewise.
2834 * unittests/scoped_restore-selftests.c: Likewise.
2835 * utils-selftests.c: Likewise.
2836
b0cba12e
PA
28372017-08-17 Pedro Alves <palves@redhat.com>
2838
2839 * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
2840 local.
2841
4c8aa72d
PA
28422017-08-17 Pedro Alves <palves@redhat.com>
2843
2844 * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
2845 field.
2846 (reset_die_in_process): Delete, replaced by ...
2847 (process_die_scope): ... this new class. Make it responsible for
2848 freeing cu->line_header too.
2849 (process_die): Use process_die_scope.
2850 (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
2851 cu->line_header_die_owner. Don't release the line header if it's
2852 owned by the CU.
2853 (setup_type_unit_groups): Make the CU/DIE own the line header.
2854 Don't release the line header here.
2855
ba713918
AL
28562017-08-17 Alex Lindsay <alexlindsay239@gmail.com> (tiny change)
2857
2858 * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
2859
44d0fb3a
RK
28602017-08-17 Ruslan Kabatsayev <b7.10110111@gmail.com>
2861
2862 * NEWS: Mention new shortcuts for nexti and stepi in TUI
2863 Single-Key mode
2864
a5afdb16
RK
28652017-08-16 Ruslan Kabatsayev <b7.10110111@gmail.com>
2866
2867 * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
2868 mode command list.
2869
47613aeb
SH
28702017-08-15 Stafford Horne <shorne@gmail.com>
2871
2872 * MAINTAINERS (Write After Approval): Add Stafford Horne.
2873
9c3cc999
SH
28742017-08-15 Stafford Horne <shorne@gmail.com>
2875
2876 * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
2877
206726fb
SDJ
28782017-08-15 Sergio Durigan Junior <sergiodj@redhat.com>
2879
2880 PR gdb/21954
2881 * infcmd.c (unset_environment_command): Use the 'clear' method on
2882 the environment instead of resetting it.
2883
0335ac6d
JB
28842017-08-15 John Baldwin <jhb@FreeBSD.org>
2885
2886 * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
2887 platforms.
2888
d3abe1c8
TT
28892017-08-14 Tom Tromey <tom@tromey.com>
2890
2891 * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
2892 (print_binary_chars): Likewise.
2893 (BITS_IN_BYTES): Remove.
2894
d6382fff
TT
28952017-08-14 Tom Tromey <tom@tromey.com>
2896
2897 PR gdb/21675
2898 * valprint.c (LOW_ZERO): Change value to 034.
2899 (print_octal_chars): Add static_asserts for octal constants.
2900 * printcmd.c (print_scalar_formatted): Add 'd' case.
2901
f978cb06
TT
29022017-08-11 Tom Tromey <tom@tromey.com>
2903
2904 * symfile.c (add_symbol_file_command): Use std::vector.
2905
2f5404b3
TT
29062017-08-14 Tom Tromey <tom@tromey.com>
2907
2908 * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
2909 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
2910 std::move.
2911 * break-catch-sig.c (create_signal_catchpoint): Use std::move.
2912
de7985c3
PA
29132017-08-11 Pedro Alves <palves@redhat.com>
2914
2915 * infrun.c (process_event_stop_test): Adjust
2916 function_name_is_marked_for_skip call.
2917 * skip.c: Include <list>.
2918 (skiplist_entry): Make it a class with private fields, and
2919 getters/setters.
2920 (skiplist_entry_chain): Delete.
2921 (skiplist_entries): New.
2922 (skiplist_entry_count): Delete.
2923 (highest_skiplist_entry_num): New.
2924 (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
2925 (add_skiplist_entry): Delete.
2926 (skiplist_entry::skiplist_entry): New.
2927 (skiplist_entry::add_entry): New.
2928 (skip_file_command, skip_function): Adjust.
2929 (compile_skip_regexp): Delete.
2930 (skip_command): Don't compile regexp here. Adjust to use
2931 skiplist_entry::add_entry.
2932 (skip_info): Adjust to use range-for and getters.
2933 (skip_enable_command, skip_disable_command): Adjust to use
2934 range-for and setters.
2935 (skip_delete_command): Adjust to use std::list.
2936 (add_skiplist_entry): Delete.
2937 (skip_file_p): Delete, refactored as ...
2938 (skiplist_entry::do_skip_file_p): ... this new method.
2939 (skip_gfile_p): Delete, refactored as ...
2940 (skiplist_entry::do_gskip_file_p): ... this new method.
2941 (skip_function_p, skip_rfunction_p): Delete, refactored as ...
2942 (skiplist_entry::skip_function_p): ... this new method.
2943 (function_name_is_marked_for_skip): Now returns bool, and takes
2944 the function sal by const reference. Adjust to use range-for and
2945 skiplist_entry methods.
2946 (_initialize_step_skip): Remove references to
2947 skiplist_entry_chain, skiplist_entry_count.
2948 * skip.h (function_name_is_marked_for_skip): Now returns bool, and
2949 takes the function sal by const reference.
2950
be7d3cd5
YQ
29512017-08-11 Yao Qi <yao.qi@linaro.org>
2952
2953 * dwarf2-frame.c (clear_pointer_cleanup): Remove.
2954 (dwarf2_frame_cache): Remove reset_cache_cleanup.
2955 (dwarf2_frame_cache):
2956 * frame-unwind.c (frame_unwind_try_unwinder): Catch
2957 RETURN_MASK_ALL and set *this_case to NULL.
2958 * frame-unwind.h: Update comments.
2959
1c90d9f0
YQ
29602017-08-11 Yao Qi <yao.qi@linaro.org>
2961
2962 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
2963 (dwarf2_frame_state_copy_regs): Remove.
2964 (dwarf2_frame_state_free_regs): Remove.
2965 (dwarf2_frame_state::~dwarf2_frame_state): Remove.
2966 (dwarf2_restore_rule): Call method .alloc_regs instead of
2967 dwarf2_frame_state_alloc_regs.
2968 (execute_cfa_program): Likewise. Call dwarf2_frame_state_reg_info
2969 constructor. Call std::move.
2970 (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
2971 (dwarf2_frame_cache): Likewise.
2972
2973 [GDB_SELF_TEST]: Include selftest.h and
2974 selftest-arch.h.
2975 [GDB_SELF_TEST] (execute_cfa_program_test): New function.
2976 (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
2977 execute_cfa_program_test.
2978
2979 * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
2980 copy ctor, assignment operator, move assignment.
2981 <alloc_regs>: New method.
2982 <swap>: New method.
2983 (struct dwarf2_frame_state): Delete dtor.
2984 (dwarf2_frame_state_alloc_regs): Remove declaration.
2985 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
2986 dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
2987
afe37d6b
YQ
29882017-08-11 Yao Qi <yao.qi@linaro.org>
2989
2990 * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
2991 (dwarf2_frame_state::dwarf2_frame_state): New.
2992 (dwarf2_frame_state::~dwarf2_frame_state): New.
2993 (dwarf2_fetch_cfa_info): Update.
2994 (dwarf2_frame_cache): Remove old_chain. Change 'fs' to an object
2995 rather than a pointer. Update code.
2996 * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
2997 dtor.
2998 <data_align, code_align, retaddr_column>: Change them to const.
2999 <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
3000 to bool.
3001
b348037f
YQ
30022017-08-11 Yao Qi <yao.qi@linaro.org>
3003
3004 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
3005 <loc.exp>: New field.
3006 * dwarf2-frame.c (execute_cfa_program): Update.
3007 (dwarf2_frame_prev_register): Update.
3008
e7c9de26
PA
30092017-08-10 Pedro Alves <palves@redhat.com>
3010
3011 * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
3012
e8c6b620
JB
30132017-08-09 John Baldwin <jhb@FreeBSD.org>
3014
3015 * fbsd-nat.c (struct fbsd_fork_info): Remove.
3016 (fbsd_pending_children): Use std::list.
3017 (fbsd_remember_child): Likewise.
3018 (fbsd_is_child_pending): Likewise.
3019 (fbsd_pending_vfork_done): Use std::forward_list.
3020 (fbsd_add_vfork_done): Likewise.
3021 (fbsd_is_vfork_done_pending): Likewise.
3022 (fbsd_next_vfork_done): Likewise.
3023
e4a26669
JB
30242017-08-09 John Baldwin <jhb@FreeBSD.org>
3025
3026 * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
3027 (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
3028 [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
3029 for `mapfilename'.
3030 (fbsd_xfer_partial): Use gdb::byte_vector.
af3881e6 3031 (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
e4a26669 3032
142311d3
JB
30332017-08-09 John Baldwin <jhb@FreeBSD.org>
3034
3035 * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
3036 "filestuff.h".
3037 (fbsd_find_memory_regions): Fix `mapfile' initialization.
3038
42fa2e0e
TT
30392017-08-09 Tom Tromey <tom@tromey.com>
3040
3041 * skip.c (skiplist_entry): New constructor.
3042 (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
3043 (skiplist_entry::file_is_glob): Now bool.
3044 (skiplist_entry::file, skiplist_entry::function): Now
3045 std::string.
3046 (make_skip_entry): Return a unique_ptr. Use new.
3047 (free_skiplist_entry, free_skiplist_entry_cleanup)
3048 (make_free_skiplist_entry_cleanup): Remove.
3049 (skip_command, skip_disable_command, add_skiplist_entry)
3050 (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
3051 (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
3052 (function_name_is_marked_for_skip): Update.
3053 (skip_delete_command): Update. Use delete.
3054
cd3af38d
JW
30552017-08-09 Jiong Wang <jiong.wang@arm.com>
3056
3057 * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
3058 (aarch64_linux_core_read_description): New function.
3059 (aarch64_linux_init_abi): Register gdbarch_core_read_description.
3060
29592bde
PA
30612017-08-09 Pedro Alves <palves@redhat.com>
3062
3063 * cp-name-parser.y (cp_comp_to_string): Return a
3064 gdb::unique_xmalloc_ptr<char>.
3065 * cp-support.c (replace_typedefs_qualified_name)
3066 (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
3067 (cp_canonicalize_string_full): Use op= instead of explicit
3068 convertion.
3069 (cp_class_name_from_physname, method_name_from_physname)
3070 (cp_func_name, cp_remove_params): Adjust to use
3071 gdb::unique_xmalloc_ptr<char>.
3072 * cp-support.h (cp_comp_to_string): Return a
3073 gdb::unique_xmalloc_ptr<char>.
3074 * python/py-type.c (typy_lookup_type): Adjust to use
3075 gdb::unique_xmalloc_ptr<char>.
3076
b3340438
L
30772017-08-09 H.J. Lu <hongjiu.lu@intel.com>
3078
3079 * dwarf2read.c (dwarf2_string_attr): Fix a typo.
3080
e88e8651
YQ
30812017-08-09 Alex Lindsay <alexlindsay239@gmail.com>
3082 Yao Qi <yao.qi@linaro.org>
3083
3084 * cp-support.c (cp_canonicalize_string_full): Use
3085 gdb::unique_xmalloc_ptr<char>.
3086 (cp_canonicalize_string): Likewise.
3087
f5a29eb0
YQ
30882017-08-09 Yao Qi <yao.qi@linaro.org>
3089
3090 * features/Makefile (WHICH): Remove i386/ non-linux stuff.
3091 * regformats/i386/amd64-avx-avx512.dat: Remove.
3092 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
3093 * regformats/i386/amd64-avx-mpx.dat:Remove.
3094 * regformats/i386/amd64-avx.dat: Remove.
3095 * regformats/i386/amd64-mpx.dat: Remove.
3096 * regformats/i386/i386-avx-avx512.dat: Remove.
3097 * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
3098 * regformats/i386/i386-avx-mpx.dat: Remove.
3099 * regformats/i386/i386-mmx.dat: Remove.
3100 * regformats/i386/i386-mpx.dat: Remove.
3101
57757c2f
YQ
31022017-08-09 Yao Qi <yao.qi@linaro.org>
3103
3104 * amd64-tdep.h (tdesc_x32): Remove the declaration.
3105 * amd64-tdep.c: Don't include features/i386/x32*.c.
3106 (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
3107 functions.
3108 * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
3109 and i386/x32-avx-avx512.
3110 (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
3111 and i386/x32.xml.
3112 * features/i386/x32-avx-avx512.c: Removed.
3113 * features/i386/x32-avx-avx512.xml: Removed.
3114 * features/i386/x32-avx.c: Removed.
3115 * features/i386/x32-avx.xml: Removed.
3116 * features/i386/x32.c: Removed.
3117 * features/i386/x32.xml: Removed.
3118 * regformats/i386/x32-avx-avx512.dat: Removed.
3119 * regformats/i386/x32-avx.dat: Removed.
3120 * regformats/i386/x32.dat: Removed.
3121
ba7b109b
MR
31222017-08-07 Maciej W. Rozycki <macro@imgtec.com>
3123
3124 PR breakpoints/21886
3125 * mem-break.c (default_memory_insert_breakpoint): Use
3126 `->placed_address' rather than `->reqstd_address' for the
3127 breakpoint location.
3128
e347efc3
MR
31292017-08-07 Maciej W. Rozycki <macro@imgtec.com>
3130
3131 * arch-utils.c (default_print_insn): Remove arch/mach/endian
3132 assertions.
3133
0dba2a6c
MR
31342017-08-07 Maciej W. Rozycki <macro@imgtec.com>
3135
3136 * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
3137 a union of `tdep_info', `tdesc_data' and `id'.
3138 * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
3139 rather than `info.tdep_info'.
3140 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
3141 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
3142 * i386-tdep.c (i386_gdbarch_init): Likewise.
3143 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
3144 * mips-tdep.c (mips_gdbarch_init): Likewise.
3145 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
3146 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
3147 * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
3148 `info.tdep_info'.
3149 (ppc_linux_init_abi): Use `info.tdesc_data' rather than
3150 `info.tdep_info'.
3151 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
3152 * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
3153 `info.tdep_info'.
3154 * spu-tdep.c (spu_gdbarch_init): Likewise.
3155 * gdbarch.h: Regenerate.
3156
16eb6b2d
LS
31572017-08-07 Leszek Swirski <leszeks@google.com>
3158
7b005726 3159 PR symtab/20899
16eb6b2d
LS
3160 * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
3161
74cbb09e
SM
31622017-08-07 Simon Marchi <simon.marchi@ericsson.com>
3163
3164 * remote-sim.c (gdbsim_load): Remove char **argv local variable.
3165 (gdbsim_open): Rename gdb_argv args object to argv.
3166
ee0c3293
TT
31672017-08-05 Tom Tromey <tom@tromey.com>
3168
3169 * compile/compile-object-load.c (compile_object_load): Use
3170 gdb::unique_xmalloc_ptr.
3171 * cli/cli-dump.c (scan_filename): Rename from
3172 scan_filename_with_cleanup. Change return type.
3173 (scan_expression): Rename from scan_expression_with_cleanup.
3174 Change return type.
3175 (dump_memory_to_file, dump_value_to_file, restore_command):
3176 Use gdb::unique_xmalloc_ptr. Update.
3177 * cli/cli-cmds.c (find_and_open_script): Use
3178 gdb::unique_xmalloc_ptr.
3179 * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
3180 * symmisc.c (maintenance_print_symbols)
3181 (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
3182 * symfile.c (symfile_bfd_open, generic_load)
3183 (add_symbol_file_command, remove_symbol_file_command): Use
3184 gdb::unique_xmalloc_ptr.
3185 * source.c (openp): Use gdb::unique_xmalloc_ptr.
3186 * psymtab.c (maintenance_print_psymbols): Use
3187 gdb::unique_xmalloc_ptr.
3188 * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
3189 * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
3190 * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
3191 (reload_shared_libraries_1): Likewise.
3192
3232fabd
TT
31932017-08-05 Tom Tromey <tom@tromey.com>
3194
3195 * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
3196 (rust_op_vector, rust_set_vector): New typedefs.
3197 (current_parser): New global.
3198 (work_obstack): Change to pointer type. Update all users.
3199 (rust_ast, pstate): Remove globals.
3200 (struct rust_parser): New.
3201 (%union) <params, field_inits>: Change type.
3202 (start, tuple_expr, unit_expr, struct_expr_list, literal)
3203 (field_expr, expr_list, maybe_expr_list, type_list): Update.
3204 (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
3205 (convert_params_to_types, convert_params_to_expression): Change
3206 type of "params".
3207 (ast_string): Change type of "fields".
3208 (rust_parse): Make a rust_parser. Remove cleanups.
3209 (rust_lex_tests): Make and install an auto_obstack.
3210
f02fd774
YQ
32112017-08-04 Yao Qi <yao.qi@linaro.org>
3212
3213 * configure.srv (ipa_x32_linux_regobj): New.
3214 * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
3215 instead of X86_TDESC_AVX512.
3216 (initialize_low_tracepoint): Call
3217 init_registers_x32_avx_avx512_linux.
3218
91975afd
YQ
32192017-08-04 Yao Qi <yao.qi@linaro.org>
3220
3221 * utils.h (gdb_argv): Add namespace std for nullptr_t.
3222
2331fa3a
RK
32232017-08-03 Ruslan Kabatsayev <b7.10110111@gmail.com>
3224
3225 * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
3226
744e4fe1
TT
32272017-08-03 Tom Tromey <tom@tromey.com>
3228
3229 * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
3230 Remove.
3231 * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
3232
1c034b67
TT
32332017-08-03 Tom Tromey <tom@tromey.com>
3234
3235 * python/py-param.c (compute_enum_values): Use gdb_argv.
3236
773a1edc
TT
32372017-08-03 Tom Tromey <tom@tromey.com>
3238
3239 * utils.h (struct gdb_argv_deleter): New.
3240 (gdb_argv): New class.
3241 * utils.c (gdb_argv::reset): New method.
3242 * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
3243 * tracefile.c (tsave_command): Use gdb_argv.
3244 * top.c (new_ui_command): Use gdb_argv.
3245 * symmisc.c (maintenance_print_symbols)
3246 (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
3247 * symfile.c (symbol_file_command, generic_load)
3248 (remove_symbol_file_command): Use gdb_argv.
3249 * stack.c (backtrace_command): Use gdb_argv.
3250 * source.c (add_path, show_substitute_path_command)
3251 (unset_substitute_path_command, set_substitute_path_command):
3252 Use gdb_argv.
3253 * skip.c (skip_command): Use gdb_argv. Use gdb_buildargv.
3254 * ser-mingw.c (pipe_windows_open): Use gdb_argv.
3255 * remote.c (extended_remote_run, remote_put_command)
3256 (remote_get_command, remote_delete_command): Use gdb_argv.
3257 * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
3258 (gdbsim_open): Use gdb_argv.
3259 * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
3260 * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
3261 * procfs.c (procfs_info_proc): Use gdb_argv.
3262 * interps.c (interpreter_exec_cmd): Use gdb_argv.
3263 * infrun.c (handle_command): Use gdb_argv.
3264 * inferior.c (add_inferior_command, clone_inferior_command):
3265 Use gdb_argv.
3266 * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
3267 * exec.c (exec_file_command): Use gdb_argv.
3268 * cli/cli-cmds.c (alias_command): Use gdb_argv.
3269 * compile/compile.c (build_argc_argv): Use gdb_argv.
3270
0d50bde3
TT
32712017-08-03 Tom Tromey <tom@tromey.com>
3272
3273 * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
3274
7f968c89
TT
32752017-08-03 Tom Tromey <tom@tromey.com>
3276
3277 * python/python.c (compute_python_string): Return std::string.
3278 (gdbpy_eval_from_control_command): Update.
3279 (do_start_initialization): Use std::string.
3280 * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
3281 xstrprintf.
3282 * python/py-breakpoint.c (local_setattro): Use string_printf, not
3283 xstrprintf.
3284
3c9ebddd
TT
32852017-08-03 Tom Tromey <tom@tromey.com>
3286
3287 * top.h (do_restore_instream_cleanup): Remove.
3288 * top.c (do_restore_instream_cleanup): Remove.
3289 (read_command_file): Use scoped_restore.
3290 * cli/cli-script.c (execute_user_command): Use scoped_restore.
3291
b51b225e
TT
32922017-08-03 Tom Tromey <tom@tromey.com>
3293
3294 * cli/cli-script.c (execute_user_command)
3295 (execute_control_command): Use scoped_restore.
3296
ac991630
TT
32972017-08-03 Tom Tromey <tom@tromey.com>
3298
3299 * cli/cli-script.c (do_restore_user_call_depth): Remove.
3300 (execute_user_command): Remove user_call_depth; use
3301 user_args_stack's size instead.
3302
898e0c8e
TT
33032017-08-03 Tom Tromey <tom@tromey.com>
3304
3305 * top.h (in_user_command): Remove.
3306 * top.c (in_user_command): Remove.
3307 * cli/cli-script.c (do_restore_user_call_depth)
3308 (execute_user_command): Update.
3309
26fcd5d7
TT
33102017-08-03 Tom Tromey <tom@tromey.com>
3311
3312 * valops.c (search_struct_method): Use gdb::byte_vector.
3313 * valarith.c (value_concat): Use std::vector.
3314 * target.c (memory_xfer_partial): Use gdb::byte_vector.
3315 (simple_search_memory): Likewise.
3316 * printcmd.c (find_string_backward): Use gdb::byte_vector.
3317 * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
3318 * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
3319 * elfread.c (elf_rel_plt_read): Use std::string.
3320 * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
3321 * cli/cli-dump.c (restore_section_callback): Use
3322 gdb::byte_vector.
3323
7c218e6c
TT
33242017-08-03 Tom Tromey <tom@tromey.com>
3325
3326 * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
3327
31b68d4a
TT
33282017-08-03 Tom Tromey <tom@tromey.com>
3329
3330 * tui/tui-regs.c (tui_restore_gdbout): Remove.
3331 (tui_register_format): Use scoped_restore.
3332
2ec845e7
TT
33332017-08-03 Tom Tromey <tom@tromey.com>
3334
3335 * reverse.c (exec_direction_default): Remove.
3336 (exec_reverse_once): Use scoped_restore.
3337 * remote.c (restore_remote_timeout): Remove.
3338 (remote_flash_erase, remote_flash_write, remote_flash_done)
3339 (readchar, remote_serial_write): Use scoped_restore.
3340 * cli/cli-script.c (struct source_cleanup_lines_args)
3341 (source_cleanup_lines): Remove.
3342 (script_from_file): Use scoped_restore.
3343 * cli/cli-cmds.c (source_verbose_cleanup): Remove.
3344 (source_command): Use scoped_restore.
3345
b3bc8453
TT
33462017-08-03 Tom Tromey <tom@tromey.com>
3347
3348 * utils.h (make_cleanup_free_so): Remove.
3349 * utils.c (do_free_so, make_cleanup_free_so): Remove.
3350 * solist.h (struct so_deleter): New.
3351 (so_list_up): New typedef.
3352 * solib-svr4.c (svr4_read_so_list): Use so_list_up.
3353
e3ad2841
TT
33542017-08-03 Tom Tromey <tom@tromey.com>
3355
3356 * utils.h (make_cleanup_restore_current_language): Remove.
3357 * utils.c (do_restore_current_language)
3358 (make_cleanup_restore_current_language): Remove.
3359 * parse.c (parse_exp_in_context_1)
3360 (parse_expression_with_language): Use
3361 scoped_restore_current_language.
3362 * mi/mi-main.c (mi_cmd_execute): Use
3363 scoped_restore_current_language.
3364 * language.h (scoped_restore_current_language): New class.
3365
b80cf838
TT
33662017-08-03 Tom Tromey <tom@tromey.com>
3367
3368 * compile/compile.c (cleanup_unlink_file): Remove.
3369 (compile_to_object): Use gdb::unlinker.
3370 (eval_compile_command): Likewise.
3371
fad0444a
TT
33722017-08-03 Tom Tromey <tom@tromey.com>
3373
3374 * utils.h (make_cleanup_fclose): Remove.
3375 * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
3376
6e7bc05c
TT
33772017-08-03 Tom Tromey <tom@tromey.com>
3378
3379 * top.c (open_terminal_stream): Return gdb_file_up.
3380 (new_ui_command): Update.
3381
4a45905b
TT
33822017-08-03 Tom Tromey <tom@tromey.com>
3383
3384 * source.c (print_source_lines_base, forward_search_command)
3385 (reverse_search_command): Use gdb_file_up.
3386
7cd06d6e
TT
33872017-08-03 Tom Tromey <tom@tromey.com>
3388
3389 * fbsd-nat.c (fbsd_find_memory_regions): Update.
3390
ed166945
TT
33912017-08-03 Tom Tromey <tom@tromey.com>
3392
3393 * cli/cli-cmds.c (find_and_open_script): Change return type.
3394 Remove "streamp" and "full_path" parameters.
3395 (source_script_with_search): Update.
3396 * auto-load.c (source_script_file): Update.
3397 * cli/cli-cmds.h (find_and_open_script): Change type.
3398 (open_script): New struct.
3399
d419f42d
TT
34002017-08-03 Tom Tromey <tom@tromey.com>
3401
3402 * xml-support.c (xml_fetch_content_from_file): Update.
3403 * ui-file.c (stdio_file::open): Update.
3404 * tracefile-tfile.c (tfile_start): Update.
3405 * remote.c (remote_file_put, remote_file_get): Update.
3406 * nat/linux-procfs.c (linux_proc_get_int)
3407 (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
3408 * nat/linux-osdata.c (linux_common_core_of_thread): Update.
3409 (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
3410 (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
3411 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
3412 * nat/linux-btrace.c (linux_determine_kernel_start): Update.
3413 * linux-nat.c (linux_proc_pending_signals): Update.
3414 * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
3415 (file_closer): Remove.
3416 * compile/compile.c (compile_to_object): Update.
3417 * common/filestuff.h (struct gdb_file_deleter): New.
3418 (gdb_file_up): New typedef.
3419 (gdb_fopen_cloexec): Change return type.
3420 * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
3421 * cli/cli-dump.c (fopen_with_cleanup): Remove.
3422 (dump_binary_file, restore_binary_file): Update.
3423 * auto-load.c (auto_load_objfile_script_1): Update.
3424
4a2b031d
TT
34252017-08-03 Tom Tromey <tom@tromey.com>
3426
3427 * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
3428 (info_static_tracepoint_markers_command): Likewise.
3429 * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
3430 * skip.c (skip_info): Use ui_out_emit_table.
3431 * progspace.c (print_program_space): Use ui_out_emit_table.
3432 * osdata.c (info_osdata): Use ui_out_emit_table.
3433 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
3434 ui_out_emit_table.
3435 * linux-thread-db.c (info_auto_load_libthread_db): Use
3436 ui_out_emit_table.
3437 * inferior.c (print_inferior): Use ui_out_emit_table.
3438 * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
3439 * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
3440 * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
3441 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
3442 * ui-out.h (class ui_out_emit_table): New.
3443
a4f320fd
MR
34442017-08-02 Maciej W. Rozycki <macro@imgtec.com>
3445
3446 * mips-tdep.c (mips_fpu_type_str): New function.
3447 (mips_dump_tdep): Call it.
3448
a2f1f308
MR
34492017-08-01 Maciej W. Rozycki <macro@imgtec.com>
3450
3451 * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
3452 `->mips_fpu_type'.
3453
7e5ed83b
XR
34542017-07-31 Xavier Roirand <roirand@adacore.com>
3455
3456 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
3457
4c9dc811
XR
34582017-07-27 Xavier Roirand <roirand@adacore.com>
3459
3460 * MAINTAINERS (Write After Approval): Add Xavier Roirand.
3461
27d41eac
YQ
34622017-07-26 Yao Qi <yao.qi@linaro.org>
3463
3464 * cli/cli-cmds.c (maintenancechecklist): New variable.
3465 * gdbcmd.h (maintenancechecklist): Declare it.
3466 * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
3467 Call i386_linux_read_description with different masks.
3468 * maint.c (maintenance_check_command): New function.
3469 (_initialize_maint_cmds): Call add_prefix_cmd.
3470 * target-descriptions.c (tdesc_reg): override operator != and ==.
3471 (tdesc_type): Likewise.
3472 (tdesc_feature): Likewise.
3473 (target_desc): Likewise.
3474 [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
3475 (maintenance_check_xml_descriptions): New function.
3476 (_initialize_target_descriptions) Add command "xml-descriptions".
3477 * target-descriptions.h (selftests::record_xml_tdesc): Declare.
3478
ea03d0d3
YQ
34792017-07-26 Yao Qi <yao.qi@linaro.org>
3480
3481 * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
3482 Include features/i386/32bit-*.c.
3483 (i386_linux_read_description): Generate target description if it
3484 doesn't exist.
3485 (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
3486 functions.
3487 * features/i386/32bit-linux.c: Re-generated.
3488 * features/i386/32bit-sse.c: Likewise.
3489 * target-descriptions.c (print_c_feature::visit): Print code to
3490 set register number if needed.
3491 (print_c_feature) <m_next_regnum>: New field.
3492
25aa13e5
YQ
34932017-07-26 Yao Qi <yao.qi@linaro.org>
3494
3495 * features/Makefile (CFILES): Rename with TDESC_CFILES.
3496 (FEATURE_XMLFILES): New.
3497 (FEATURE_CFILES): New.
3498 New rules.
3499 (clean-cfiles): Remove generated c files.
3500 * features/i386/32bit-avx.c: Generated.
3501 * features/i386/32bit-avx512.c: Generated.
3502 * features/i386/32bit-core.c: Generated.
3503 * features/i386/32bit-linux.c: Generated.
3504 * features/i386/32bit-mpx.c: Generated.
3505 * features/i386/32bit-pkeys.c: Generated.
3506 * features/i386/32bit-sse.c: Generated.
3507 * target-descriptions.c: Include algorithm.
3508 (tdesc_element_visitor): Add method visit_end.
3509 (print_c_tdesc): Implement visit_end.
3510 (print_c_tdesc:: m_filename_after_features): Move it to
3511 protected.
3512 (print_c_feature): New class.
3513 (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
3514 name starts with "i386/32bit-".
3515
6eb1e6a8
YQ
35162017-07-26 Yao Qi <yao.qi@linaro.org>
3517
3518 * target-descriptions.c (tdesc_element_visitor): New class.
3519 (tdesc_element): New class.
3520 (tdesc_reg): Inherit from tdesc_element.
3521 (tdesc_reg::accept): New function.
3522 (tdesc_type): Inherit from tdesc_element.
3523 (tdesc_type::accept): New function.
3524 (tdesc_feature): Inherit from tdesc_element.
3525 (tdesc_feature::accept): New function.
3526 (target_desc): Inherit from tdesc_element.
3527 (target_desc::target_desc): New.
3528 (target_desc::~target_desc): New.
3529 (target_desc::accept): New.
3530 (allocate_target_description): Use new.
3531 (free_target_description): Use delete.
3532 (print_c_tdesc): New class.
3533 (maint_print_c_tdesc_cmd): Adjust.
3534
3535 * features/aarch64.c: Re-generated.
3536 * features/arc-arcompact.c: Re-generated.
3537 * features/arc-v2.c: Re-generated.
3538 * features/arm/arm-with-iwmmxt.c: Re-generated.
3539 * features/arm/arm-with-m.c: Re-generated.
3540 * features/arm/arm-with-m-fpa-layout.c: Re-generated.
3541 * features/arm/arm-with-m-vfp-d16.c: Re-generated.
3542 * features/arm/arm-with-neon.c: Re-generated.
3543 * features/arm/arm-with-vfpv2.c: Re-generated.
3544 * features/arm/arm-with-vfpv3.c: Re-generated.
3545 * features/i386/amd64-avx-avx512.c: Re-generated.
3546 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
3547 * features/i386/amd64-avx.c: Re-generated.
3548 * features/i386/amd64-avx-linux.c: Re-generated.
3549 * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
3550 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
3551 * features/i386/amd64-avx-mpx.c: Re-generated.
3552 * features/i386/amd64-avx-mpx-linux.c: Re-generated.
3553 * features/i386/amd64.c: Re-generated.
3554 * features/i386/amd64-linux.c: Re-generated.
3555 * features/i386/amd64-mpx.c: Re-generated.
3556 * features/i386/amd64-mpx-linux.c: Re-generated.
3557 * features/i386/i386-avx-avx512.c: Re-generated.
3558 * features/i386/i386-avx-avx512-linux.c: Re-generated.
3559 * features/i386/i386-avx.c: Re-generated.
3560 * features/i386/i386-avx-linux.c: Re-generated.
3561 * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
3562 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
3563 * features/i386/i386-avx-mpx.c: Re-generated.
3564 * features/i386/i386-avx-mpx-linux.c: Re-generated.
3565 * features/i386/i386.c: Re-generated.
3566 * features/i386/i386-linux.c: Re-generated.
3567 * features/i386/i386-mmx.c: Re-generated.
3568 * features/i386/i386-mmx-linux.c: Re-generated.
3569 * features/i386/i386-mpx.c: Re-generated.
3570 * features/i386/i386-mpx-linux.c: Re-generated.
3571 * features/i386/x32-avx-avx512.c: Re-generated.
3572 * features/i386/x32-avx-avx512-linux.c: Re-generated.
3573 * features/i386/x32-avx.c: Re-generated.
3574 * features/i386/x32-avx-linux.c: Re-generated.
3575 * features/i386/x32.c: Re-generated.
3576 * features/i386/x32-linux.c: Re-generated.
3577 * features/microblaze.c: Re-generated.
3578 * features/microblaze-with-stack-protect.c: Re-generated.
3579 * features/mips64-dsp-linux.c: Re-generated.
3580 * features/mips64-linux.c: Re-generated.
3581 * features/mips-dsp-linux.c: Re-generated.
3582 * features/mips-linux.c: Re-generated.
3583 * features/nds32.c: Re-generated.
3584 * features/nios2.c: Re-generated.
3585 * features/nios2-linux.c: Re-generated.
3586 * features/rs6000/powerpc-32.c: Re-generated.
3587 * features/rs6000/powerpc-32l.c: Re-generated.
3588 * features/rs6000/powerpc-403.c: Re-generated.
3589 * features/rs6000/powerpc-403gc.c : Re-generated.
3590 * features/rs6000/powerpc-405.c: Re-generated.
3591 * features/rs6000/powerpc-505.c: Re-generated.
3592 * features/rs6000/powerpc-601.c: Re-generated.
3593 * features/rs6000/powerpc-602.c: Re-generated.
3594 * features/rs6000/powerpc-603.c: Re-generated.
3595 * features/rs6000/powerpc-604.c: Re-generated.
3596 * features/rs6000/powerpc-64.c: Re-generated.
3597 * features/rs6000/powerpc-64l.c: Re-generated.
3598 * features/rs6000/powerpc-7400.c: Re-generated.
3599 * features/rs6000/powerpc-750.c: Re-generated.
3600 * features/rs6000/powerpc-860.c: Re-generated.
3601 * features/rs6000/powerpc-altivec32.c: Re-generated.
3602 * features/rs6000/powerpc-altivec32l.c: Re-generated.
3603 * features/rs6000/powerpc-altivec64.c: Re-generated.
3604 * features/rs6000/powerpc-altivec64l.c: Re-generated.
3605 * features/rs6000/powerpc-cell32l.c: Re-generated.
3606 * features/rs6000/powerpc-cell64l.c: Re-generated.
3607 * features/rs6000/powerpc-e500.c: Re-generated.
3608 * features/rs6000/powerpc-e500l.c: Re-generated.
3609 * features/rs6000/powerpc-isa205-32l.c: Re-generated.
3610 * features/rs6000/powerpc-isa205-64l.c: Re-generated.
3611 * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
3612 * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
3613 * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
3614 * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
3615 * features/rs6000/powerpc-vsx32.c: Re-generated.
3616 * features/rs6000/powerpc-vsx32l.c: Re-generated.
3617 * features/rs6000/powerpc-vsx64.c: Re-generated.
3618 * features/rs6000/powerpc-vsx64l.c: Re-generated.
3619 * features/rs6000/rs6000.c: Re-generated.
3620 * features/s390-linux32.c: Re-generated.
3621 * features/s390-linux32v1.c: Re-generated.
3622 * features/s390-linux32v2.c: Re-generated.
3623 * features/s390-linux64.c: Re-generated.
3624 * features/s390-linux64v1.c: Re-generated.
3625 * features/s390-linux64v2.c: Re-generated.
3626 * features/s390-te-linux64.c: Re-generated.
3627 * features/s390-tevx-linux64.c: Re-generated.
3628 * features/s390-vx-linux64.c: Re-generated.
3629 * features/s390x-linux64.c: Re-generated.
3630 * features/s390x-linux64v1.c: Re-generated.
3631 * features/s390x-linux64v2.c: Re-generated.
3632 * features/s390x-te-linux64.c: Re-generated.
3633 * features/s390x-tevx-linux64.c: Re-generated.
3634 * features/s390x-vx-linux64.c: Re-generated.
3635 * features/sparc/sparc32-solaris.c: Re-generated.
3636 * features/sparc/sparc64-solaris.c: Re-generated.
3637 * features/tic6x-c62x.c: Re-generated.
3638 * features/tic6x-c62x-linux.c: Re-generated.
3639 * features/tic6x-c64x.c: Re-generated.
3640 * features/tic6x-c64x-linux.c: Re-generated.
3641 * features/tic6x-c64xp.c: Re-generated.
3642 * features/tic6x-c64xp-linux.c: Re-generated.
3643
35b4818d
YQ
36442017-07-26 Yao Qi <yao.qi@linaro.org>
3645
3646 * i386-linux-tdep.c (i386_linux_read_description): New function.
3647 (i386_linux_core_read_description): Call
3648 i386_linux_read_description.
3649 * i386-linux-tdep.h (i386_linux_read_description): Declare.
3650 (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
3651 (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
3652 (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
3653 (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
3654 * x86-linux-nat.c (x86_linux_read_description): Call
3655 i386_linux_read_description.
3656
8e2141c6
YQ
36572017-07-26 Yao Qi <yao.qi@linaro.org>
3658
3659 * NEWS: Mention it.
3660 * features/Makefile (%.c: %.xml): Pass the xml file name to
3661 command "maint print c-tdesc".
3662 * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
3663 name from 'arg'.
3664
b468ff4c
YQ
36652017-07-26 Yao Qi <yao.qi@linaro.org>
3666
3667 * target-descriptions.c (target_desc): Add ctor and dtor. Do
3668 in-class initialization.
3669 (tdesc_create_feature): Call new instead of XCNEW.
3670 (free_target_description): Ue delete.
3671
b9c0e1b4
JB
36722017-07-25 John Baldwin <jhb@FreeBSD.org>
3673
3674 * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
3675
a04b5337
YQ
36762017-07-25 Yao Qi <yao.qi@linaro.org>
3677
3678 * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
3679 constant.
3680 (amd64_x32_init_abi): Likewise.
3681 * amd64-tdep.h (amd64_init_abi): Update declaration.
3682 (amd64_x32_init_abi): Likewise.
3683
02ad7fc2
YQ
36842017-07-25 Yao Qi <yao.qi@linaro.org>
3685
3686 PR tdep/21717
3687 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
3688 condition for FPSCR.
3689 (arm_linux_store_inferior_registers): Likewise.
3690
b6f48cb0
TT
36912017-07-22 Tom Tromey <tom@tromey.com>
3692
3693 * break-catch-syscall.c (struct catch_syscall_inferior_data)
3694 <syscalls_counts>: Now a std::vector.
3695 (get_catch_syscall_inferior_data): Use "new".
3696 (catch_syscall_inferior_data_cleanup): Use "delete".
3697 (insert_catch_syscall, remove_catch_syscall)
3698 (clear_syscall_counts): Update.
3699
e12c9b7a
TT
37002017-07-22 Tom Tromey <tom@tromey.com>
3701
3702 * break-catch-syscall.c (syscall_catchpoint)
3703 <syscalls_to_be_caught>: Now a std::vector<int>
3704 (~syscall_catchpoint): Remove.
3705 (insert_catch_syscall, remove_catch_syscall)
3706 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
3707 (print_mention_catch_syscall, print_recreate_catch_syscall):
3708 Update.
3709 (create_syscall_event_catchpoint): Change type of "filter"
3710 parameter.
3711 (catch_syscall_split_args): Return a std::vector.
3712 (catch_syscall_command_1, catching_syscall_number_1): Update.
3713
4fa8aeac
TT
37142017-07-22 Tom Tromey <tom@tromey.com>
3715
3716 * break-catch-throw.c (struct exception_catchpoint)
3717 <exception_rx>: Now a std::string.
3718 (~exception_catchpoint): Remove.
3719 (print_one_detail_exception_catchpoint): Update.
3720 (handle_gnu_v3_exceptions): Change type of except_rx.
3721 (extract_exception_regexp): Return a std::string.
3722 (catch_exception_command_1): Update.
3723
f746a154
TT
37242017-07-22 Tom Tromey <tom@tromey.com>
3725
3726 * break-catch-sig.c (gdb_signal_type): Remove typedef.
3727 (struct signal_catchpoint) <signals_to_be_caught>: Now a
3728 std::vector.
3729 <catch_all>: Now a bool.
3730 (~signal_catchpoint): Remove.
3731 (signal_catchpoint_insert_location)
3732 (signal_catchpoint_remove_location)
3733 (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
3734 (signal_catchpoint_print_mention)
3735 (signal_catchpoint_print_recreate)
3736 (signal_catchpoint_explains_signal): Update.
3737 (create_signal_catchpoint): Change type of "filter" and
3738 "catch_all".
3739 (catch_signal_split_args): Return a std::vector. Change type of
3740 "catch_all".
3741 (catch_signal_command): Update.
3742
47e77640
PA
37432017-07-20 Pedro Alves <palves@redhat.com>
3744
3745 * ada-lang.c (ada_language_defn): Make extern.
3746 (_initialize_ada_language): Remove add_language call.
3747 * c-lang.c (c_language_defn, cplus_language_defn)
3748 (asm_language_defn, minimal_language_defn): Make extern.
3749 (_initialize_c_language): Delete.
3750 * completer.c (compare_cstrings): Delete, moved to utils.h.
3751 * d-lang.c (d_language_defn): Make extern.
3752 (_initialize_d_language): Remove add_language calls.
3753 * defs.h (enum language): Add comment.
3754 * f-lang.c (f_language_defn): Make extern.
3755 (_initialize_f_language): Remove add_language call.
3756 * go-lang.c (go_language_defn): Make extern.
3757 (_initialize_go_language): Remove add_language call.
3758 * language.c: Include <algorithm>.
3759 (languages): Redefine as const array.
3760 (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
3761 (set_language_command): Handle "local". Use for-range loop.
3762 (set_language): Remove loop.
3763 (language_enum): Rewrite.
3764 (language_def, language_str): Remove loops.
3765 (add_language): Delete.
3766 (add_set_language_command): New, based on add_languages.
3767 (skip_language_trampoline): Adjust.
3768 (local_language_defn): Delete.
3769 (language_gdbarch_post_init): Adjust.
3770 (_initialize_language): Remove add_language calls. Call
3771 add_set_language_command.
3772 * language.h (add_language): Delete.
3773 (auto_language_defn)
3774 (unknown_language_defn, minimal_language_defn, ada_language_defn)
3775 (asm_language_defn, c_language_defn, cplus_language_defn)
3776 (d_language_defn, f_language_defn, go_language_defn)
3777 (m2_language_defn, objc_language_defn, opencl_language_defn)
3778 (pascal_language_defn, rust_language_defn): Declare.
3779 * m2-lang.c (m2_language_defn): Make extern.
3780 (_initialize_m2_language): Remove add_language call.
3781 * objc-lang.c (objc_language_defn): Make extern.
3782 (_initialize_objc_language): Remove add_language call.
3783 * opencl-lang.c (opencl_language_defn): Make extern.
3784 (_initialize_opencl_language): Remove add_language call.
3785 * p-lang.c (pascal_language_defn): Make extern.
3786 (_initialize_pascal_language): Delete.
3787 * rust-lang.c (rust_language_defn): Make extern.
3788 (_initialize_rust_language): Delete.
3789 * utils.h (compare_cstrings): New static inline function.
3790
edb0c9cb
PA
37912017-07-20 Pedro Alves <palves@redhat.com>
3792
3793 * ada-lang.c (ada_to_fixed_type_1): Adjust.
3794 (get_var_value): Constify parameters.
3795 (get_int_var_value): Change prototype.
3796 (to_fixed_range_type): Adjust.
3797 * ada-lang.h (get_int_var_value): Change prototype.
3798
a778f165
PA
37992017-07-20 Pedro Alves <palves@redhat.com>
3800
3801 * dwarf2read.c (dw2_lookup_symbol): Use
3802 SYMBOL_MATCHES_SEARCH_NAME.
3803 * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
3804
42edd901
PA
38052017-07-20 Pedro Alves <palves@redhat.com>
3806
3807 * block.c (block_iter_name_step, block_iter_name_first)
3808 (block_iter_name_next): Delete.
3809 (block_lookup_symbol_primary): Adjust to use
3810 dict_iter_match_first/dict_iter_match_next.
3811 * block.h (block_iter_name_first, block_iter_name_next): Delete
3812 declarations.
3813 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
3814 dict_iter_match_first/dict_iter_match_next.
3815
cf325299
PA
38162017-07-20 Pedro Alves <palves@redhat.com>
3817
3818 * cp-support.c (cp_find_first_component_aux): Add missing case for
3819 end of string.
3820
c5ed0576
DB
38212017-07-18 David Blaikie <dblaikie@gmail.com>
3822
3823 * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
3824 of dwo_cu's dwo_file.
3825
27841e76
YQ
38262017-07-18 Yao Qi <yao.qi@linaro.org>
3827
3828 * remote.c (store_registers_using_G): Remove one line comment.
3829
cfb7e58b
YQ
38302017-07-18 Yao Qi <yao.qi@linaro.org>
3831
3832 * regcache.c (regcache_cpy): Simplify it.
3833 (regcache::cpy_no_passthrough): Remove it.
3834 * regcache.h (cpy_no_passthrough): Remove it.
3835 (regcache_dup, regcache_cpy): Update comments.
3836
386535dd
PA
38372017-07-18 Pedro Alves <palves@redhat.com>
3838
3839 * remote-sim.c (sim_command_completer): Adjust to work with a
3840 completion_tracker instead of a VEC.
3841
c45ec17c
PA
38422017-07-17 Pedro Alves <palves@redhat.com>
3843
3844 * completer.c (complete_source_filenames): New function.
3845 (complete_address_and_linespec_locations): New function.
3846 (location_completer): Use complete_address_and_linespec_locations.
3847 (completion_tracker::build_completion_result): Honor the tracker's
3848 request to suppress append.
3849 * completer.h (completion_tracker::suppress_append_ws)
3850 (completion_tracker::set_suppress_append_ws): New methods.
3851 (completion_tracker::m_suppress_append_ws): New field.
3852 (complete_source_filenames): New declaration.
3853 * linespec.c (linespec_complete_what): New.
3854 (struct ls_parser) <complete_what, completion_word,
3855 completion_quote_char, completion_quote_end, completion_tracker>:
3856 New fields.
3857 (string_find_incomplete_keyword_at_end): New.
3858 (linespec_lexer_lex_string): Record quote char. If in completion
3859 mode, don't throw.
3860 (linespec_lexer_consume_token): Advance the completion word point.
3861 (linespec_lexer_peek_token): Save/restore completion info.
3862 (save_stream_and_consume_token): New.
3863 (set_completion_after_number): New.
3864 (linespec_parse_basic): Set what to complete next depending on
3865 token. Handle function and label completions specially.
3866 (parse_linespec): Disable objc shortcut in completion mode. Set
3867 what to complete next depending on token type. Skip keyword if in
3868 completion mode.
3869 (complete_linespec_component, linespec_complete): New.
3870 * linespec.h (linespec_complete): Declare.
3871
be966d42
PA
38722017-07-17 Pedro Alves <palves@redhat.com>
3873
3874 * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
3875 Handle 'operator<' / 'operator<<'.
3876
a2459270
PA
38772017-07-17 Pedro Alves <palves@redhat.com>
3878
3879 * completer.c (collect_explicit_location_matches): Handle
3880 MATCH_LABEL.
3881 (convert_explicit_location_to_linespec): New, factored out from
3882 ...
3883 (convert_explicit_location_to_sals): ... this.
3884 (complete_label): New.
3885 (linespec_complete_label, find_label_symbols_in_block): New.
3886 (find_label_symbols): Add completion_mode parameter and adjust to
3887 call find_label_symbols_in_block.
3888 * linespec.h (linespec_complete_label): Declare.
3889
c6756f62
PA
38902017-07-17 Pedro Alves <palves@redhat.com>
3891
3892 * ada-lang.c (ada_collect_symbol_completion_matches): Add
3893 complete_symbol_mode parameter.
3894 * cli/cli-cmds.c (complete_command): Get the completion result out
3895 of the handle_brkchars tracker if used a custom word point.
3896 * completer.c: Include "linespec.h".
3897 (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
3898 (advance_to_expression_complete_word_point): New.
3899 (completion_tracker::completes_to_completion_word): New.
3900 (complete_files_symbols): Pass down
3901 complete_symbol_mode::EXPRESSION.
3902 (explicit_options, probe_options): New.
3903 (collect_explicit_location_matches): Complete on the
3904 explictit_loc->foo instead of word. Use
3905 linespec_complete_function. Handle MATCH_LINE. Handle offering
3906 keyword and options completions.
3907 (backup_text_ptr): Delete.
3908 (skip_keyword): New.
3909 (complete_explicit_location): Remove 'word' parameter. Add
3910 language, quoted_arg_start and quoted_arg_end parameters.
3911 Rewrite, parsing left to right.
3912 (location_completer): Rewrite.
3913 (location_completer_handle_brkchars): New function.
3914 (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
3915 (enum complete_line_internal_reason): Adjust comments.
3916 (completion_tracker::discard_completions): New.
3917 (completer_handle_brkchars_func_for_completer): Handle
3918 location_completer.
3919 (gdb_custom_word_point_brkchars)
3920 (gdb_org_rl_basic_quote_characters): New.
3921 (gdb_completion_word_break_characters_throw)
3922 (completion_find_completion_word): Handle trackers that use a
3923 custom word point.
3924 (completion_tracker::advance_custom_word_point_by): New.
3925 (completion_tracker::build_completion_result): Don't rely on
3926 readline appending the quote char.
3927 (gdb_rl_attempted_completion_function_throw): Handle trackers that
3928 use a custom word point.
3929 (gdb_rl_attempted_completion_function): Restore
3930 rl_basic_quote_characters.
3931 * completer.h (class completion_tracker): Extend intro comment.
3932 (completion_tracker::set_quote_char)
3933 (completion_tracker::quote_char)
3934 (completion_tracker::set_use_custom_word_point)
3935 (completion_tracker::use_custom_word_point)
3936 (completion_tracker::custom_word_point)
3937 (completion_tracker::set_custom_word_point)
3938 (completion_tracker::advance_custom_word_point_by)
3939 (completion_tracker::completes_to_completion_word)
3940 (completion_tracker::discard_completions): New methods.
3941 (completion_tracker::m_quote_char)
3942 (completion_tracker::m_use_custom_word_point)
3943 (completion_tracker::m_custom_word_point): New fields.
3944 (advance_to_expression_complete_word_point): Declare.
3945 * f-lang.c (f_collect_symbol_completion_matches): Add
3946 complete_symbol_mode parameter.
3947 * language.h (struct language_defn)
3948 <la_collect_symbol_completion_matches>: Add complete_symbol_mode
3949 parameter.
3950 * linespec.c (linespec_keywords): Add NULL terminator. Make extern.
3951 (linespec_complete_function): New function.
3952 (linespec_lexer_lex_keyword): Adjust.
3953 * linespec.h (linespec_keywords, linespec_complete_function): New
3954 declarations.
3955 * location.c (find_end_quote): New function.
3956 (explicit_location_lex_one): Add explicit_completion_info
3957 parameter. Save quoting info. Don't throw if being called for
3958 completion. Don't handle Ada operators here.
3959 (is_cp_operator, skip_op_false_positives, first_of)
3960 (explicit_location_lex_one_function): New function.
3961 (string_to_explicit_location): Replace 'dont_throw' parameter with
3962 an explicit_completion_info pointer parameter. Handle it. Don't
3963 use explicit_location_lex_one to lex function names. Use
3964 explicit_location_lex_one_function instead.
3965 * location.h (struct explicit_completion_info): New.
3966 (string_to_explicit_location): Replace 'dont_throw' parameter with
3967 an explicit_completion_info pointer parameter.
3968 * symtab.c (default_collect_symbol_completion_matches_break_on):
3969 Add complete_symbol_mode parameter. Handle LINESPEC mode.
3970 (default_collect_symbol_completion_matches)
3971 (collect_symbol_completion_matches): Add complete_symbol_mode
3972 parameter.
3973 (collect_symbol_completion_matches_type): Pass down
3974 complete_symbol_mode::EXPRESSION.
3975 (collect_file_symbol_completion_matches): Add complete_symbol_mode
3976 parameter. Handle LINESPEC mode.
3977 * symtab.h (complete_symbol_mode): New.
3978 (default_collect_symbol_completion_matches_break_on)
3979 (default_collect_symbol_completion_matches)
3980 (collect_symbol_completion_matches)
3981 (collect_file_symbol_completion_matches): Add complete_symbol_mode
3982 parameter.
3983
1d550c82
PA
39842017-07-17 Pedro Alves <palves@redhat.com>
3985
3986 * utils.c (enum class strncmp_iw_mode): New.
3987 (strcmp_iw): Rename to ...
3988 (strncmp_iw_with_mode): ... this. Add string2_len and mode
3989 parameters. Handle them.
3990 (strncmp_iw): New.
3991 (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
3992 * utils.h (strncmp_iw): Declare.
3993 (strcmp_iw): Move describing comments here.
3994
8090b426
PA
39952017-07-17 Pedro Alves <palves@redhat.com>
3996
3997 * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
3998 CP_OPERATOR_STR.
3999 * c-typeprint.c (is_type_conversion_operator): Use
4000 CP_OPERATOR_STR.
4001 * cp-support.c (LENGTH_OF_OPERATOR): Delete.
4002 (cp_find_first_component_aux): Use CP_OPERATOR_STR and
4003 CP_OPERATOR_LEN.
4004 * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
4005 * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
4006 * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
4007 * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
4008 CP_OPERATOR_STR.
4009 * location.c: Include "cp-support.h".
4010 (explicit_location_lex_one): Use CP_OPERATOR_LEN and
4011 CP_OPERATOR_STR.
4012 * symtab.c (operator_chars): Use CP_OPERATOR_STR and
4013 CP_OPERATOR_LEN.
4014
6a2c1b87
PA
40152017-07-17 Pedro Alves <palves@redhat.com>
4016
4017 * cli/cli-cmds.c (complete_command): Use a completion tracker
4018 along with completion_find_completion_word for handle_brkchars
4019 phase.
4020 * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
4021 (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
4022 (struct gdb_rl_completion_word_info): New.
4023 (gdb_rl_find_completion_word): New.
4024 (completion_find_completion_word): New.
4025 * completer.h (completion_find_completion_word): Declare.
4026
eb3ff9a5
PA
40272017-07-17 Pedro Alves <palves@redhat.com>
4028
4029 * ada-lang.c (symbol_completion_match): Adjust comments.
4030 (symbol_completion_add): Replace vector parameter with
4031 completion_tracker parameter. Use it.
4032 (ada_make_symbol_completion_list): Rename to...
4033 (ada_collect_symbol_completion_matches): ... this. Add
4034 completion_tracker parameter and use it.
4035 (ada_language_defn): Adjust.
4036 * break-catch-syscall.c (catch_syscall_completer): Adjust
4037 prototype and work with completion_tracker instead of VEC.
4038 * breakpoint.c (condition_completer): Adjust prototype and work
4039 with completion_tracker instead of VEC.
4040 * c-lang.c (c_language_defn, cplus_language_defn)
4041 (asm_language_defn, minimal_language_defn): Adjust to renames.
4042 * cli/cli-cmds.c (complete_command): Rework using
4043 completion_tracker. Catch exceptions when completing.
4044 * cli/cli-decode.c (integer_unlimited_completer)
4045 (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
4046 with completion_tracker instead of VEC.
4047 * command.h (struct completion_tracker): Forward declare.
4048 (completer_ftype, completer_handle_brkchars_ftype): Change
4049 types.
4050 (complete_on_cmdlist, complete_on_enum): Adjust.
4051 * completer.c: Include <algorithm>.
4052 (struct gdb_completer_state): New.
4053 (current_completion): New global.
4054 (readline_line_completion_function): Delete.
4055 (noop_completer, filename_completer)
4056 (filename_completer_handle_brkchars, complete_files_symbols)
4057 (linespec_location_completer): Adjust to work with a
4058 completion_tracker instead of a VEC.
4059 (string_or_empty): New.
4060 (collect_explicit_location_matches): Adjust to work with a
4061 completion_tracker instead of a VEC.
4062 (explicit_location_completer): Rename to ...
4063 (complete_explicit_location): ... this and adjust to work with a
4064 completion_tracker instead of a VEC.
4065 (location_completer): Adjust to work with a completion_tracker
4066 instead of a VEC.
4067 (add_struct_fields): Adjust to work with a completion_list instead
4068 of VEC.
4069 (expression_completer): Rename to ...
4070 (complete_expression): ... this and adjust to work with a
4071 completion_tracker instead of a VEC. Use complete_files_symbols.
4072 (expression_completer): Reimplement on top of complete_expression.
4073 (symbol_completer): Adjust to work with a completion_tracker
4074 instead of a VEC.
4075 (enum complete_line_internal_reason): Add describing comments.
4076 (complete_line_internal_normal_command): Adjust to work with a
4077 completion_tracker instead of a VEC.
4078 (complete_line_internal): Rename to ...
4079 (complete_line_internal_1): ... this and adjust to work with a
4080 completion_tracker instead of a VEC. Assert TEXT is NULL in the
4081 handle_brkchars phase.
4082 (new_completion_tracker): Delete.
4083 (complete_line_internal): Reimplement as TRY/CATCH wrapper around
4084 complete_line_internal_1.
4085 (free_completion_tracker): Delete.
4086 (INITIAL_COMPLETION_HTAB_SIZE): New.
4087 (completion_tracker::completion_tracker)
4088 (completion_tracker::~completion_tracker): New.
4089 (maybe_add_completion): Delete.
4090 (completion_tracker::maybe_add_completion)
4091 (completion_tracker::add_completion)
4092 (completion_tracker::add_completions): New.
4093 (throw_max_completions_reached_error): Delete.
4094 (complete_line): Adjust to work with a completion_tracker instead
4095 of a VEC. Don't create a completion_tracker_t or check for max
4096 completions here.
4097 (command_completer, command_completer_handle_brkchars)
4098 (signal_completer, reg_or_group_completer_1)
4099 (reg_or_group_completer, default_completer_handle_brkchars):
4100 Adjust to work with a completion_tracker.
4101 (gdb_completion_word_break_characters_throw): New.
4102 (gdb_completion_word_break_characters): Reimplement.
4103 (line_completion_function): Delete.
4104 (completion_tracker::recompute_lowest_common_denominator)
4105 (expand_preserving_ws)
4106 (completion_tracker::build_completion_result)
4107 (completion_result::completion_result)
4108 (completion_result::completion_result)
4109 (completion_result::~completion_result)
4110 (completion_result::completion_result)
4111 (completion_result::release_match_list, compare_cstrings)
4112 (completion_result::sort_match_list)
4113 (completion_result::reset_match_list)
4114 (gdb_rl_attempted_completion_function_throw)
4115 (gdb_rl_attempted_completion_function): New.
4116 * completer.h (completion_list, struct completion_result)
4117 (class completion_tracker): New.
4118 (complete_line): Add completion_tracker parameter.
4119 (readline_line_completion_function): Delete.
4120 (gdb_rl_attempted_completion_function): New.
4121 (noop_completer, filename_completer, expression_completer)
4122 (location_completer, symbol_completer, command_completer)
4123 (signal_completer, reg_or_group_completer): Update prototypes.
4124 (completion_tracker_t, new_completion_tracker)
4125 (make_cleanup_free_completion_tracker): Delete.
4126 (enum maybe_add_completion_enum): Delete.
4127 (maybe_add_completion): Delete.
4128 (throw_max_completions_reached_error): Delete.
4129 * corefile.c (complete_set_gnutarget): Adjust to work with a
4130 completion_tracker instead of a VEC.
4131 * cp-abi.c (cp_abi_completer): Adjust to work with a
4132 completion_tracker instead of a VEC.
4133 * d-lang.c (d_language_defn): Adjust.
4134 * disasm.c (disassembler_options_completer): Adjust to work with a
4135 completion_tracker instead of a VEC.
4136 * f-lang.c (f_make_symbol_completion_list): Rename to ...
4137 (f_collect_symbol_completion_matches): ... this. Adjust to work
4138 with a completion_tracker instead of a VEC.
4139 (f_language_defn): Adjust.
4140 * go-lang.c (go_language_defn): Adjust.
4141 * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
4142 Adjust to work with a completion_tracker instead of a VEC.
4143 * infrun.c (handle_completer): Likewise.
4144 * interps.c (interpreter_completer): Likewise.
4145 * interps.h (interpreter_completer): Likewise.
4146 * language.c (unknown_language_defn, auto_language_defn)
4147 (local_language_defn): Adjust.
4148 * language.h (language_defn::la_make_symbol_completion_list):
4149 Rename to ...
4150 (language_defn::la_collect_symbol_completion_matches): ... this
4151 and adjust to work with a completion_tracker instead of a VEC.
4152 * m2-lang.c (m2_language_defn): Adjust.
4153 * objc-lang.c (objc_language_defn): Adjust.
4154 * opencl-lang.c (opencl_language_defn): Adjust.
4155 * p-lang.c (pascal_language_defn): Adjust.
4156 * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
4157 (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
4158 with a completion_tracker.
4159 * rust-lang.c (rust_language_defn): Adjust.
4160 * symtab.c (free_completion_list, do_free_completion_list)
4161 (return_val, completion_tracker): Delete.
4162 (completion_list_add_name, completion_list_add_symbol)
4163 (completion_list_add_msymbol, completion_list_objc_symbol)
4164 (completion_list_add_fields, add_symtab_completions): Add
4165 completion_tracker parameter and use it.
4166 (default_make_symbol_completion_list_break_on_1): Rename to...
4167 (default_collect_symbol_completion_matches_break_on): ... this.
4168 Add completion_tracker parameter and use it instead of allocating
4169 a completion tracker here.
4170 (default_make_symbol_completion_list_break_on): Delete old
4171 implementation.
4172 (default_make_symbol_completion_list): Delete.
4173 (default_collect_symbol_completion_matches): New.
4174 (make_symbol_completion_list): Delete.
4175 (collect_symbol_completion_matches): New.
4176 (make_symbol_completion_type): Rename to ...
4177 (collect_symbol_completion_matches_type): ... this. Add
4178 completion_tracker parameter and use it instead of VEC.
4179 (make_file_symbol_completion_list_1): Rename to...
4180 (collect_file_symbol_completion_matches): ... this. Add
4181 completion_tracker parameter and use it instead of VEC.
4182 (make_file_symbol_completion_list): Delete.
4183 (add_filename_to_list): Use completion_list instead of a VEC.
4184 (add_partial_filename_data::list): Now a completion_list.
4185 (make_source_files_completion_list): Work with a completion_list
4186 instead of a VEC.
4187 * symtab.h: Include "completer.h".
4188 (default_make_symbol_completion_list_break_on)
4189 (default_make_symbol_completion_list, make_symbol_completion_list)
4190 (make_symbol_completion_type, make_file_symbol_completion_list)
4191 (make_source_files_completion_list): Delete.
4192 (default_collect_symbol_completion_matches_break_on)
4193 (default_collect_symbol_completion_matches)
4194 (collect_symbol_completion_matches)
4195 (collect_symbol_completion_matches_type)
4196 (collect_file_symbol_completion_matches)
4197 (make_source_files_completion_list): New.
4198 * top.c (init_main): Don't install a rl_completion_entry_function
4199 hook. Install a rl_attempted_completion_function hook instead.
4200 * tui/tui-layout.c (layout_completer): Adjust to work with a
4201 completion_tracker.
4202 * tui/tui-regs.c (tui_reggroup_completer):
4203 * tui/tui-win.c (window_name_completer, focus_completer)
4204 (winheight_completer): Adjust to work with a completion_tracker.
4205 * value.c: Include "completer.h".
4206 (complete_internalvar): Adjust to work with a completion_tracker.
4207 * value.h (complete_internalvar): Likewise.
4208
6e1dbf8c
PA
42092017-07-17 Pedro Alves <palves@redhat.com>
4210
4211 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
4212 renames.
4213 * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
4214 comments to completer_ftype's declaration.
4215 <completer_handle_brkchars>: Change type to
4216 completer_handle_brkchars_ftype.
4217 * command.h (completer_ftype): Add describing comment and give
4218 names to parameters.
4219 (completer_ftype_void): Rename to ...
4220 (completer_handle_brkchars_ftype) ... this. Add describing comment.
4221 (set_cmd_completer_handle_brkchars): Adjust.
4222 * completer.c (filename_completer_handle_brkchars): New function.
4223 (complete_line_internal_normal_command): New function, factored
4224 out from ...
4225 (complete_line_internal): ... here.
4226 (command_completer_handle_brkchars)
4227 (default_completer_handle_brkchars)
4228 (completer_handle_brkchars_func_for_completer): New functions.
4229 * completer.h (set_gdb_completion_word_break_characters): Delete
4230 declaration.
4231 (completer_handle_brkchars_func_for_completer): New declaration.
4232 * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
4233 completer_handle_brkchars_func_for_completer.
4234
78b13106
PA
42352017-07-17 Pedro Alves <palves@redhat.com>
4236
4237 * completer.c (symbol_completer): New function, based on
4238 make_symbol_completion_list_fn.
4239 * completer.h (symbol_completer): New declaration.
4240 * guile/scm-cmd.c (cmdscm_completers): Adjust.
4241 * python/py-cmd.c (completers): Adjust.
4242 * symtab.c (make_symbol_completion_list_fn): Delete.
4243 * symtab.h (make_symbol_completion_list_fn): Delete.
4244 * cli/cli-decode.c (add_cmd): Adjust.
4245
bbf2f4df
PA
42462017-07-17 Pedro Alves <palves@redhat.com>
4247
4248 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
4249 * dwarf2read.c: Include "filename-seen-cache.h".
4250 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
4251 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
4252 * filename-seen-cache.c: New file.
4253 * filename-seen-cache.h: New file.
4254 * symtab.c: Include "filename-seen-cache.h".
4255 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
4256 (create_filename_seen_cache, clear_filename_seen_cache)
4257 (delete_filename_seen_cache, filename_seen): Delete, parts moved
4258 to filename-seen-cache.h/filename-seen-cache.c.
4259 (output_source_filename, sources_info)
4260 (maybe_add_partial_symtab_filename)
4261 (make_source_files_completion_list): Adjust to use
4262 filename_seen_cache.
4263
330cdd98
PA
42642017-07-17 Pedro Alves <palves@redhat.com>
4265
4266 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
4267 fields.
4268 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
4269 dwarf2_debug_sections*)): New.
4270 (dwarf2_per_objfile::dwarf2_per_objfile(const
4271 dwarf2_per_objfile&)): Declare as deleted.
4272 (dwarf2_per_objfile::operator=): Declare as deleted.
4273 (dwarf2_per_objfile::dwarf2_per_objfile)
4274 (dwarf2_per_objfile::~dwarf2_per_objfile)
4275 (dwarf2_per_objfile::free_cached_comp_units): New.
4276 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
4277 ctor. Call dwarf2_per_objfile's ctor manually.
4278 (dwarf2_locate_sections): Deleted/refactored as ...
4279 (dwarf2_per_objfile::locate_sections): ... this new method.
4280 (free_cached_comp_units): Defer to
4281 dwarf2_per_objfile::free_cached_comp_units.
4282 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
4283
8880f2a9
TT
42842017-07-14 Tom Tromey <tom@tromey.com>
4285
4286 PR rust/21764:
4287 * rust-exp.y (convert_ast_to_expression): Add "want_type"
4288 parameter.
4289 <UNOP_SIZEOF>: Split into separate case.
4290 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
4291
65547233
TT
42922017-07-14 Tom Tromey <tom@tromey.com>
4293
4294 PR rust/21763:
4295 * symtab.c (symbol_matches_domain): Add language_rust to special
4296 case.
4297 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
4298 treat LOC_TYPEDEF symbols as variables.
4299
8f14146e
PA
43002017-07-14 Pedro Alves <palves@redhat.com>
4301
4302 * symtab.c (make_file_symbol_completion_list_1): Iterate over
4303 symtabs matching all symtabs with SRCFILE as file name instead of
4304 only considering the first hit, with lookup_symtab.
4305
2347965c
SM
43062017-07-14 Simon Marchi <simon.marchi@ericsson.com>
4307
4308 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
4309 operator_name parameters.
4310 (gen_expr): Update function call.
4311
40f4af28
SM
43122017-07-14 Simon Marchi <simon.marchi@ericsson.com>
4313
4314 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
4315 parameter.
4316 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
4317 Likewise.
4318 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
4319 parameter, use agent_expr::gdbarch instead, update function
4320 calls.
4321 (locexpr_tracepoint_var_ref): Likewise.
4322 (loclist_tracepoint_var_ref): Likewise.
4323 * ax-gdb.c (gen_trace_static_fields): Likewise.
4324 (gen_traced_pop): Likewise.
4325 (gen_frame_args_address): Likewise.
4326 (gen_frame_locals_address): Likewise.
4327 (gen_var_ref): Likewise.
4328 (gen_struct_ref_recursive): Likewise.
4329 (gen_static_field): Likewise.
4330 (gen_maybe_namespace_elt): Likewise.
4331 (gen_expr): Likewise.
4332 (gen_trace_for_var): Likewise.
4333 (gen_trace_for_expr): Likewise.
4334 (gen_trace_for_return_address): Likewise.
4335
053f8057
SM
43362017-07-14 Simon Marchi <simon.marchi@ericsson.com>
4337
4338 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
4339 parameter.
4340 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
4341
6661ad48
SM
43422017-07-14 Simon Marchi <simon.marchi@ericsson.com>
4343
4344 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
4345 from ax, update calls.
4346 (gen_usual_arithmetic): Likewise.
4347 (gen_integral_promotions): Likewise.
4348 (gen_bitfield_ref): Likewise.
4349 (gen_primitive_field): Likewise.
4350 (gen_struct_ref_recursive): Likewise.
4351 (gen_struct_ref): Likewise.
4352 (gen_maybe_namespace_elt): Likewise.
4353 (gen_struct_elt_for_reference): Likewise.
4354 (gen_namespace_elt): Likewise.
4355 (gen_aggregate_elt_ref): Likewise.
4356 (gen_expr): Get gdbarch from ax, update calls.
4357 (gen_expr_binop_rest): Likewise.
4358
c55a47e7
PA
43592017-07-13 Pedro Alves <palves@redhat.com>
4360
4361 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
4362 as default tdesc.
4363 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
4364 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
4365 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
4366 tdesc_amd64_linux as default tdesc. Get final tdesc from the
4367 tdep.
4368 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
4369 Get final tdesc from the tdep.
4370 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
4371 default tdesc.
4372 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
4373 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
4374 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
4375 Use it as default tdesc.
4376 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
4377 down to amd_init_abi. No longer handle fallback tdesc here.
4378 * amd64-tdep.h (tdesc_x32): Declare.
4379 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
4380 parameter.
4381 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
4382 as default tdesc.
4383
55efceab
AA
43842017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4385
4386 * s390-linux-tdep.c (s390_process_record): Add support for
4387 instructions new in arch12.
4388
0aa37b65
JB
43892017-07-11 John Baldwin <jhb@FreeBSD.org>
4390
4391 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
4392 PT_GETFSBASE and PT_GETGSBASE.
4393 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
4394 PT_SETGSBASE.
4395
48aeef91
JB
43962017-07-11 John Baldwin <jhb@FreeBSD.org>
4397
4398 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
4399 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
4400 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
4401 those rules.
4402 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
4403 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
4404 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
4405 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
4406 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
4407 * features/i386/amd64.xml: Add 64bit-segments.xml.
4408 * features/i386/amd64-avx-avx512.c: Regenerated.
4409 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
4410 * features/i386/amd64-avx-mpx.c: Regenerated.
4411 * features/i386/amd64-avx.c: Regenerated.
4412 * features/i386/amd64-mpx.c: Regenerated.
4413 * features/i386/amd64.c: Regenerated.
4414 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
4415 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
4416 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
4417 * regformats/i386/amd64-avx.dat: Regenerated.
4418 * regformats/i386/amd64-mpx.dat: Regenerated.
4419 * regformats/i386/amd64.dat: Regenerated.
4420
77c501bc
YQ
44212017-07-10 Yao Qi <yao.qi@linaro.org>
4422
4423 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
4424 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
4425
6dc8d757
AK
44262017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
4427
4428 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
4429 unsetenv.
4430 * gnulib/aclocal.m4: Regenerate.
4431 * gnulib/config.in: Regenerate.
4432 * gnulib/configure: Regenerate.
4433 * gnulib/import/Makefile.am: Regenerate.
4434 * gnulib/import/Makefile.in: Regenerate.
4435 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4436 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
4437 * gnulib/import/m4/environ.m4: New file.
4438 * gnulib/import/m4/setenv.m4: New file.
4439 * gnulib/import/setenv.c: New file.
4440 * gnulib/import/unsetenv.c: New file.
4441
266934d1
SM
44422017-07-09 Simon Marchi <simon.marchi@ericsson.com>
4443
4444 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
4445 address when op is DW_OP_addr.
4446
03278692
TT
44472017-07-09 Tom Tromey <tom@tromey.com>
4448
4449 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
4450 check and apply to outer type.
4451
4b654465
JB
44522017-07-07 John Baldwin <jhb@FreeBSD.org>
4453
4454 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
4455 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
4456 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
4457 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
4458
2af9fc44
JB
44592017-07-07 John Baldwin <jhb@FreeBSD.org>
4460
4461 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
4462
382b69bb
JB
44632017-07-07 John Baldwin <jhb@FreeBSD.org>
4464
4465 * corelow.c (get_core_siginfo): Remove.
4466 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
4467 instead of get_core_siginfo.
4468 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
4469 * gdbarch.h: Re-generate.
4470 * gdbarch.c: Re-generate.
4471 * linux-tdep.c (linux_core_xfer_siginfo): New.
4472 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
4473
6e5eab33
JB
44742017-07-07 John Baldwin <jhb@FreeBSD.org>
4475
4476 * corelow.c (thread_section_name): Move to ...
4477 * gdbcore.h (thread_section_name): ... here.
4478
929edea9
JB
44792017-07-07 John Baldwin <jhb@FreeBSD.org>
4480
4481 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
4482 (struct siginfo32): New.
4483 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
4484 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
4485 via ptrace(PT_LWPINFO).
4486
762c974a
JB
44872017-07-07 John Baldwin <jhb@FreeBSD.org>
4488
4489 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
4490 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
4491 (fbsd_get_siginfo_type): New.
4492 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
4493 (_initialize_fbsd_tdep): New.
4494
33c5cd75
DB
44952017-07-06 David Blaikie <dblaikie@gmail.com>
4496
4497 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
4498 a singular dwo_unit*) to support multiple CUs in the same way that
4499 multiple TUs are supported.
4500 (create_cus_hash_table): Replace create_dwo_cu with a function for
4501 parsing multiple CUs from a DWO file.
4502 (open_and_init_dwo_file): Use create_cus_hash_table rather than
4503 create_dwo_cu.
4504 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
4505 htab_find, rather than comparing the signature to a singleton CU in
4506 the dwo_file.
4507
8455d262
PA
45082017-07-06 Pedro Alves <palves@redhat.com>
4509
4510 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
4511
4da3eb35
PA
45122017-07-04 Pedro Alves <palves@redhat.com>
4513
4514 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
4515 * gdbtypes.h (TYPE_STATIC): Delete.
4516 (struct fn_field) <is_public, is_abstract, is_static, is_final,
4517 is_synchronized, is_native>: Delete.
4518 <dummy>: Bump.
4519 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
4520 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
4521 (TYPE_FN_FIELD_ABSTRACT): Delete.
4522
5bfd255c
SM
45232017-07-03 Simon Marchi <simon.marchi@ericsson.com>
4524
4525 * buffer.h (buffer_finish): Fix spelling mistakes.
4526
25c54127
EZ
45272017-07-01 Eli Zaretskii <eliz@gnu.org>
4528
4529 * .dir-locals.el: Automatically switch to C-style comments in
4530 versions of Emacs that support the feature.
4531
dc4bde35
SDJ
45322017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
4533 Pedro Alves <palves@redhat.com>
4534
4535 PR cli/21688
4536 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
4537 (process_next_line): New variable 'inline_cmd'.
4538 Adjust 'if' clauses for "python", "compile" and "guile" to use
4539 'command_name_equals' and check for '!inline_cmd'.
4540
51ed89aa
SDJ
45412017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
4542
4543 PR cli/21688
4544 * cli/cli-script.c (command_name_equals_not_inline): New function.
4545 (process_next_line): Adjust 'if' clauses for "python", "compile"
4546 and "guile" to use command_name_equals_not_inline.
4547
eb17d413
PA
45482017-06-29 Pedro Alves <palves@redhat.com>
4549
4550 * completer.c (expression_completer): Call
4551 linespec_location_completer instead of location_completer.
4552
195bcdd5
PA
45532017-06-29 Pedro Alves <palves@redhat.com>
4554
4555 * completer.c (expression_completer): Remove code that recomputes
4556 'text' from 'word'.
4557
adc764e7
YQ
45582017-06-29 Yao Qi <yao.qi@linaro.org>
4559
4560 * regformats/regdat.sh: Generate code with
4561 "ifndef IN_PROCESS_AGENT".
4562
6e75794e
PA
45632017-06-28 Pedro Alves <palves@redhat.com>
4564
4565 * command.h: Include "common/scoped_restore.h".
4566
bc491f2e
YQ
45672017-06-28 Yao Qi <yao.qi@linaro.org>
4568
4569 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
4570 instead of obstack_grow.
4571
41664b45
DG
45722017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
4573
4574 PR gdb/21337
4575 * symfile.c (reread_symbols): Call objfiles_changed just before
4576 read_symbols.
4577
6da67eb1
PA
45782017-06-27 Pedro Alves <palves@redhat.com>
4579
4580 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
4581 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
4582 (completion_list_add_symbol, completion_list_add_msymbol):
4583 ... these new functions.
4584 (add_symtab_completions)
4585 (default_make_symbol_completion_list_break_on_1): Adjust.
4586
23732b1e
PA
45872017-06-27 Pedro Alves <palves@redhat.com>
4588
4589 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
4590 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
4591 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
4592 dtor.
4593 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
4594 'storage_obstack' field an auto_obstack. In-class initialize all
4595 non-bitfield fields. Make minsyms_read bool.
4596 * symfile.c (read_symbols): Adjust.
4597
a4d1e79a
AH
45982017-06-27 Alan Hayward <alan.hayward@arm.com>
4599
4600 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
4601 (gdbsim_store_register): Likewise.
4602
8268c778
PA
46032017-06-27 Pedro Alves <palves@redhat.com>
4604
4605 * c-exp.y (name_obstack): Now an auto_obstack.
4606 (yylex): Use auto_obstack::clear.
4607 (c_parse): Use auto_obstack::clear instead of reinitializing and
4608 freeing the obstack.
4609 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
4610 * d-exp.y (name_obstack): Now an auto_obstack.
4611 (yylex): Use auto_obstack::clear.
4612 (d_parse): Use auto_obstack::clear instead of reinitializing and
4613 freeing the obstack.
4614 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
4615 auto_obstack.
4616 * dwarf2read.c (create_addrmap_from_index)
4617 (dwarf2_build_psymtabs_hard)
4618 (update_enumeration_type_from_children): Likewise.
4619 * gdb_obstack.h (auto_obstack): New type.
4620 * go-exp.y (name_obstack): Now an auto_obstack.
4621 (build_packaged_name): Use auto_obstack::clear.
4622 (go_parse): Use auto_obstack::clear instead of reinitializing and
4623 freeing the obstack.
4624 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
4625 auto_obstack.
4626 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
4627 * rust-exp.y (work_obstack): Now an auto_obstack.
4628 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
4629 reinitializing and freeing the obstack.
4630 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
4631 (host_char_to_target): Use auto_obstack.
4632 * utils.h (make_cleanup_obstack_free): Delete declaration.
4633 * valprint.c (generic_emit_char, generic_printstr): Use
4634 auto_obstack.
4635
db665f42
SM
46362017-06-27 Simon Marchi <simon.marchi@ericsson.com>
4637
4638 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
4639 thread.
4640 (darwin_init_thread_list): Don't update dummy thread.
4641 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
4642
873c0814
SM
46432017-06-26 Simon Marchi <simon.marchi@ericsson.com>
4644
4645 * record-full.c (netorder16): Remove.
4646
8b5a7a6e
SM
46472017-06-26 Simon Marchi <simon.marchi@ericsson.com>
4648
4649 * common/diagnostics.h: Define macros for GCC.
4650 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
4651 * common/vec.h: Include diagnostics.h.
4652 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
4653 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
4654 warning.
4655
d1435379
SM
46562017-06-26 Simon Marchi <simon.marchi@ericsson.com>
4657
4658 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
4659 New macro.
4660 * ada-lex.l: Ignore deprecated register warnings.
4661
cc75e0fd
SM
46622017-06-25 Simon Marchi <simon.marchi@ericsson.com>
4663
4664 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
4665 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
4666
07809eaf
SM
46672017-06-25 Simon Marchi <simon.marchi@ericsson.com>
4668
4669 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
4670 its own line.
4671
f076f034
SM
46722017-06-25 Simon Marchi <simon.marchi@ericsson.com>
4673
4674 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
4675
0dd5cbc5
AH
46762017-06-23 Alan Hayward <alan.hayward@arm.com>
4677
4678 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
4679 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
4680 (xtensa_register_read_masked): Likewise.
4681
d4c6ce5b
SDJ
46822017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
4683
4684 * common/environ.c (gdb_environ::unset): Update comment.
4685
16892a03
AH
46862017-06-22 Alan Hayward <alan.hayward@arm.com>
4687
4688 * python/py-unwind.c (pyuw_sniffer): Allocate space for
4689 registers.
4690
d7dcbefc
AH
46912017-06-22 Alan Hayward <alan.hayward@arm.com>
4692
4693 * record-full.c (record_full_exec_insn): Use byte_vector.
4694
b30ff123
YQ
46952017-06-22 Yao Qi <yao.qi@linaro.org>
4696
4697 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
4698 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
4699
4fa847d7
AH
47002017-06-22 Alan Hayward <alan.hayward@arm.com>
4701
4702 * remote.c (cached_reg): Move from here...
4703 * regcache.h (cached_reg): ...to here.
4704 * python/py-unwind.c (struct reg_info): Remove.
4705 (cached_frame_info): Use cached_reg_t.
4706 (pyuw_prev_register): Likewise.
4707 (pyuw_sniffer): Use cached_reg_t and allocate registers.
4708 (pyuw_dealloc_cache): Free all registers.
4709
f4906a9a
PA
47102017-06-22 Pedro Alves <palves@redhat.com>
4711 Simon Marchi <simon.marchi@ericsson.com>
4712
4713 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
4714 warning.
4715 * common/diagnostics.h: New file.
4716
b45a1208
PA
47172017-06-22 Pedro Alves <palves@redhat.com>
4718
4719 * common/agent.h: Add include guards.
4720
e4da2c61
SM
47212017-06-21 Simon Marchi <simon.marchi@ericsson.com>
4722
4723 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
4724 talk about addressable units instead of bytes.
4725
96160d60
SDJ
47262017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
4727
4728 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
4729 of '::const_iterator'.
4730
9a6c7d9c
SDJ
47312017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
4732
4733 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4734 'unittests/environ-selftests.c'.
4735 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
4736 * charset.c (find_charset_names): Declare object 'iconv_env'.
4737 Update code to use 'iconv_env' object. Remove call to
4738 'free_environ'.
4739 * common/environ.c: Include <utility>.
4740 (make_environ): Delete function.
4741 (free_environ): Delete function.
4742 (gdb_environ::clear): New function.
4743 (gdb_environ::operator=): New function.
4744 (gdb_environ::get): Likewise.
4745 (environ_vector): Delete function.
4746 (set_in_environ): Delete function.
4747 (gdb_environ::set): New function.
4748 (unset_in_environ): Delete function.
4749 (gdb_environ::unset): New function.
4750 (gdb_environ::envp): Likewise.
4751 * common/environ.h: Include <vector>.
4752 (struct gdb_environ): Delete; transform into...
4753 (class gdb_environ): ... this class.
4754 (free_environ): Delete prototype.
4755 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
4756 environ_vector): Likewise.
4757 * infcmd.c (run_command_1): Update code to call
4758 'envp' from 'gdb_environ' class.
4759 (environment_info): Update code to call methods from 'gdb_environ'
4760 class.
4761 (unset_environment_command): Likewise.
4762 (path_info): Likewise.
4763 (path_command): Likewise.
4764 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
4765 (inferior::inferior): Initialize 'environment' using the host's
4766 information.
4767 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
4768 Include "environ.h".
4769 (class inferior) <environment>: Change type from 'struct
4770 gdb_environ' to 'gdb_environ'.
4771 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
4772 methods from 'gdb_environ' class.
4773 * solib.c (solib_find_1): Likewise
4774 * unittests/environ-selftests.c: New file.
4775
75c554cf
YQ
47762017-06-20 Yao Qi <yao.qi@linaro.org>
4777
4778 * features/i386/i386-linux.xml: Exchange the order of including
4779 32bit-linux.xml and 32bit-sse.xml.
4780 * features/i386/i386-linux.c: Regenerated.
4781
72ddacb7
YQ
47822017-06-20 Yao Qi <yao.qi@linaro.org>
4783
4784 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
4785 Delete copy ctor and assignment operator.
4786 (tdesc_type): Likewise.
4787 (tdesc_feature): Likewise.
4788 (tdesc_free_reg): Remove.
4789 (tdesc_create_reg): Use new.
4790 (tdesc_free_type): Remove.
4791 (tdesc_create_vector): Use new.
4792 (tdesc_create_union): Likewise.
4793 (tdesc_create_flags): Likewise.
4794 (tdesc_create_enum): Likewise.
4795 (tdesc_free_feature): Delete.
4796 (free_target_description): Use delete.
4797
325c9fd4
JB
47982017-06-19 John Baldwin <jhb@FreeBSD.org>
4799
4800 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
4801 registers.
4802
16b7a719
PA
48032017-06-19 Pedro Alves <palves@redhat.com>
4804
4805 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
4806 after gdb::unlinker.
4807
1c8e01c9
SDJ
48082017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
4809
4810 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
4811 gdb_environ to access an environment variable.
4812
ffce45d2
TP
48132017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4814
4815 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
4816 gdb_byte*.
4817
1d4fbac9
SM
48182017-06-17 Simon Marchi <simon.marchi@ericsson.com>
4819
4820 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
4821
8465943a
SM
48222017-06-17 Simon Marchi <simon.marchi@ericsson.com>
4823
4824 * configure: Re-generate.
4825 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
4826
3e019bdc
SM
48272017-06-17 Simon Marchi <simon.marchi@ericsson.com>
4828
4829 * configure: Re-generate.
4830 * warning.m4: Pass -Werror to compiler when checking for
4831 supported warning flags.
4832
cf0dd6f0
SM
48332017-06-17 Simon Marchi <simon.marchi@ericsson.com>
4834
4835 * Makefile.in (COMPILE.pre): Add "-x c++".
4836
6f98355c
YQ
48372017-06-16 Alan Hayward <alan.hayward@arm.com>
4838 Pedro Alves <palves@redhat.com>
4839 Yao Qi <yao.qi@linaro.org>
4840
4841 * defs.h (RequireLongest): New.
4842 (extract_integer): Declare function template.
4843 (extract_signed_integer): Remove the declaration, but define it
4844 static inline.
4845 (extract_unsigned_integer): Likewise.
4846 (store_integer): Declare function template.
4847 (store_signed_integer): Remove the declaration, but define it
4848 static inline.
4849 (store_unsigned_integer): Likewise.
4850 * findvar.c (extract_integer): New function template.
4851 (extract_signed_integer): Remove.
4852 (extract_unsigned_integer): Remove.
4853 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
4854 instantiations.
4855 (store_integer): New function template.
4856 (store_signed_integer): Remove.
4857 (store_unsigned_integer): Remove.
4858 (store_integer): Explicit instantiations.
4859 * regcache.c (regcache_raw_read_signed): Update.
4860 (regcache::raw_read): New function.
4861 (regcache::raw_read_signed): Remove.
4862 (regcache::raw_read_unsigned): Remove.
4863 (regcache_raw_read_unsigned): Update.
4864 (regcache_raw_write_unsigned): Update.
4865 (regcache::raw_write_signed): Remove.
4866 (regcache::raw_write): New function.
4867 (regcache_cooked_read_signed): Update.
4868 (regcache::raw_write_unsigned): Remove.
4869 (regcache::cooked_read_signed): Remove.
4870 (regcache_cooked_read_unsigned): Update.
4871 (regcache::cooked_read_unsigned): Remove.
4872 (regcache_cooked_write_signed): Update.
4873 (regcache_cooked_write_unsigned): Update.
4874 * regcache.h (regcache) <raw_read_signed>: Remove.
4875 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
4876 <raw_read, raw_write>: New.
4877 <cooked_read_signed, cooked_write_signed>: Remove.
4878 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
4879 <cooked_read, cooked_write>: New.
4880 * sh64-tdep.c (sh64_pseudo_register_read): Update.
4881 (sh64_pseudo_register_write): Update.
4882
a87dc45a
AK
48832017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
4884
4885 * arc-tdep.c (arc_disassembler_options): New variable.
4886 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
4887 of default_print_insn.
4888 (arc_delayed_print_insn): Set info->section when needed,
4889 use default_print_insn to retrieve a disassembler.
4890
45159d6a
SDJ
48912017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
4892
4893 PR gdb/21574
4894 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
4895 to mention $SHELL and startup-with-shell.
4896
b46c4cf0
MF
48972017-06-14 Max Filippov <jcmvbkbc@gmail.com>
4898
4899 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
4900
6394c606
YQ
49012017-06-14 Yao Qi <yao.qi@linaro.org>
4902
4903 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
4904 default_print_insn instead of print_insn_aarch64.
4905 * arm-tdep.c (gdb_print_insn_arm): Call
4906 default_print_insn instead of print_insn_big_arm
4907 and print_insn_little_arm.
4908 * i386-tdep.c (i386_print_insn): Call default_print_insn
4909 instead of print_insn_i386.
4910 * ia64-tdep.c (ia64_print_insn): Call
4911 default_print_insn instead of print_insn_ia64.
4912 * mips-tdep.c (gdb_print_insn_mips): Call
4913 default_print_insn instead of print_insn_big_mips
4914 and print_insn_little_mips.
4915 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
4916 instead of print_insn_spu.
4917
d5722aa2
PA
49182017-06-14 Pedro Alves <palves@redhat.com>
4919
4920 * ada-lang.c: Include "common/byte-vector.h".
4921 (ada_value_primitive_packed_val): Use gdb::byte_vector.
4922 * charset.c (wchar_iterator::iterate): Resize the vector instead
4923 of reserving it.
4924 * common/byte-vector.h: Include "common/def-vector.h".
4925 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
4926 * cli/cli-dump.c: Include "common/byte-vector.h".
4927 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
4928 * common/byte-vector.h: New file.
4929 * common/def-vector.h: New file.
4930 * common/default-init-alloc.h: New file.
4931 * dwarf2loc.c: Include "common/byte-vector.h".
4932 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
4933 instead of reserving it.
4934 * dwarf2read.c: Include "common/byte-vector.h".
4935 (data_buf::m_vec): Now a gdb::byte_vector.
4936 * gdb_regex.c: Include "common/def-vector.h".
4937 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
4938 * mi/mi-main.c: Include "common/byte-vector.h".
4939 (mi_cmd_data_read_memory): Use gdb::byte_vector.
4940 * printcmd.c: Include "common/byte-vector.h".
4941 (print_scalar_formatted): Use gdb::byte_vector.
4942 * valprint.c: Include "common/byte-vector.h".
4943 (maybe_negate_by_bytes, print_decimal_chars): Use
4944 gdb::byte_vector.
4945
01ec7a27
SM
49462017-06-13 Simon Marchi <simon.marchi@ericsson.com>
4947
4948 * darwin-nat.c: Include "nat/fork-inferior.h".
4949
848d9074
SM
49502017-06-13 Simon Marchi <simon.marchi@ericsson.com>
4951
4952 * configure.nat: Factor out Darwin bits that are not
4953 architecture-specific. Add fork-inferior.o.
4954
3b912944
SM
49552017-06-13 Simon Marchi <simon.marchi@ericsson.com>
4956
4957 * configure.nat: Factor out AIX bits that are not
4958 architecture-specific. Add fork-inferior.o.
4959
55acdf22
AA
49602017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4961
4962 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
4963 (read_pieced_value, write_pieced_value): ...here. Reduce to
4964 wrappers that just call rw_pieced_value.
4965
f65e2044
AA
49662017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4967
4968 * dwarf2loc.c (write_pieced_value): When writing the data for a
4969 memory piece, use write_memory_with_notification instead of
4970 write_memory.
4971
23f945bf
AA
49722017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4973
4974 * valops.c (read_value_memory): Change embedded_offset to
4975 represent a bit offset instead of a byte offset.
4976 * value.h (read_value_memory): Adjust comment.
4977
f236533e
AA
49782017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4979
4980 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
4981 dest_offset_bits and source_offset_bits.
4982 (write_pieced_value): Likewise.
4983
65d84b76
AA
49842017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4985
4986 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
4987 given by DW_OP_bit_piece.
4988 (write_pieced_value): Likewise.
4989
242d31ab
AA
49902017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4991
4992 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
4993 some other preparations to the places where sufficient information
4994 is available.
4995 (write_pieced_value): Likewise.
4996
03c8af18
AA
49972017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
4998
4999 * dwarf2loc.c (bits_to_bytes): New function.
5000 (read_pieced_value): Fix offset calculations for register pieces
5001 on big-endian targets.
5002 (write_pieced_value): Likewise.
5003
840989c1
AA
50042017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5005
5006 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
5007 (write_pieced_value): Likewise.
5008
359b19bb
AA
50092017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5010
5011 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
5012 transfer the source value's least significant bits, instead of its
5013 lowest-addressed ones. Rename type_len to max_offset.
5014 (read_pieced_value): Mirror above changes to write_pieced_value as
5015 applicable.
5016
07c9ca3b
AA
50172017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5018
5019 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
5020 truncate full bytes from dest_offset_bits before using it as an
5021 offset into the buffer.
5022
f1cc9874
AA
50232017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5024
5025 * dwarf2loc.c (write_pieced_value): Include transfer size in
5026 byte-wise check.
5027
cdaac320
AA
50282017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5029
5030 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
5031 calculation of this_size.
5032
af547a96
AA
50332017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5034
5035 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
5036 when targeting a bit-field.
5037 (write_pieced_value): Likewise.
5038
ddd7882a
AA
50392017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5040
5041 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
5042 (allocate_piece_closure): Drop addr_size parameter.
5043 (dwarf2_evaluate_loc_desc_full): Adjust call to
5044 allocate_piece_closure.
5045
e9352324
AA
50462017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5047
5048 PR gdb/21226
5049 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
5050 the LSB end, independent of endianness.
5051
d5d1163e
AA
50522017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
5053
5054 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
5055 size capping.
5056
032bb6ea
YQ
50572017-06-13 Yao Qi <yao.qi@linaro.org>
5058
5059 * mips-linux-nat.c: Move include features/mips*-linux.c to
5060 mips-linux-tdep.c.
5061 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
5062 to mips-linux-tdep.c.
5063 * mips-linux-tdep.c: Include features/mips*-linux.c
5064 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
5065 functions.
5066 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
5067 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
5068 (tdesc_mips64_dsp_linux): Declare.
5069
f12f6bad
TT
50702017-06-12 Tom Tromey <tom@tromey.com>
5071
5072 * valprint.h (val_print_type_code_int): Remove.
5073 * valprint.c (generic_val_print_int): Always call
5074 val_print_scalar_formatted.
5075 (val_print_type_code_int): Remove.
5076 * printcmd.c (print_scalar_formatted): Handle options->format==0.
5077 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
5078 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
5079 * ada-valprint.c (ada_val_print_num): Use
5080 val_print_scalar_formatted.
5081
d9109c80
TT
50822017-06-12 Tom Tromey <tom@tromey.com>
5083
5084 * printcmd.c (print_scalar_formatted): Unify the two switches.
5085 Don't convert scalars to LONGEST.
5086
4ac0cb1c
TT
50872017-06-12 Tom Tromey <tom@tromey.com>
5088
5089 PR exp/16225:
5090 * valprint.h (print_decimal_chars): Update.
5091 * valprint.c (maybe_negate_by_bytes): New function.
5092 (print_decimal_chars): Add "is_signed" argument.
5093 * printcmd.c (print_scalar_formatted): Update.
5094
30a25466
TT
50952017-06-12 Tom Tromey <tom@tromey.com>
5096
5097 PR exp/16225:
5098 * valprint.h (print_binary_chars, print_hex_chars): Update.
5099 * valprint.c (val_print_type_code_int): Update.
5100 (print_binary_chars): Add "zero_pad" argument.
5101 (emit_octal_digit): New function.
5102 (print_octal_chars): Don't zero-pad.
5103 (print_decimal_chars): Likewise.
5104 (print_hex_chars): Add "zero_pad" argument.
5105 * sh64-tdep.c (sh64_do_fp_register): Update.
5106 * regcache.c (regcache::dump): Update.
5107 * printcmd.c (print_scalar_formatted): Update.
5108 * infcmd.c (default_print_one_register_info): Update.
5109
b3464d03
PA
51102017-06-12 Pedro Alves <palves@redhat.com>
5111 Alan Hayward <alan.hayward@arm.com>
5112
5113 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
5114 (mips_eabi_push_dummy_call): Rename local 'regsize' to
5115 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
5116 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
5117 Assert that abi_regsize bytes fit in 'ref_valbuf'.
5118
4b76cda9
PA
51192017-06-12 Pedro Alves <palves@redhat.com>
5120
5121 * dwarf2read.c (mapped_symtab::data): Now a vector of
5122 symtab_index_entry instead of vector of
5123 std::unique_ptr<symtab_index_entry>. All users adjusted to check
5124 whether an element's name is NULL instead of checking whether the
5125 element itself is NULL.
5126 (find_slot): Change return type. Adjust.
5127 (hash_expand, , add_index_entry, uniquify_cu_indices)
5128 (write_hash_table): Adjust.
5129
e8f8bcb3
PA
51302017-06-12 Pedro Alves <palves@redhat.com>
5131
5132 * dwarf2read.c (recursively_count_psymbols): New function.
5133 (write_psymtabs_to_index): Call it to compute number of psyms and
5134 pass estimate size of psyms_seen to unordered_set's ctor.
5135
70a1152b
PA
51362017-06-12 Pedro Alves <palves@redhat.com>
5137
5138 * dwarf2read.c (write_hash_table): Check if key already exists
5139 before emplacing.
5140
c2f134ac
PA
51412017-06-12 Pedro Alves <palves@redhat.com>
5142
5143 * dwarf2read.c (data_buf::append_space): Rename to...
5144 (data_buf::grow): ... this, and make private. Adjust all callers.
5145 (data_buf::append_uint): New method.
5146 (add_address_entry, write_one_signatured_type)
5147 (write_psymtabs_to_index): Use it.
5148
a81e6d4d
PA
51492017-06-12 Pedro Alves <palves@redhat.com>
5150
5151 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
5152 (file_write (FILE *, const std::vector<Elem>&)): Delete.
5153 (data_buf::file_write): Call ::fwrite directly.
5154
6fd931f2
PA
51552017-06-12 Pedro Alves <palves@redhat.com>
5156
5157 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
5158 std::vector::erase.
5159
bc8f2430
JK
51602017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
5161
5162 Code cleanup: C++ify .gdb_index producer.
5163 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
5164 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
5165 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
5166 (create_strtab, add_string): Remove.
5167 (file_write, data_buf): New.
5168 (struct symtab_index_entry): Use std::vector for cu_indices.
5169 (struct mapped_symtab): Use std::vector for data.
5170 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
5171 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
5172 Remove.
5173 (find_slot): Change return type. Update it to the new data structures.
5174 (hash_expand, add_index_entry): Update it to the new data structures.
5175 (offset_type_compare): Remove.
5176 (uniquify_cu_indices): Update it to the new data structures.
5177 (c_str_view, c_str_view_hasher, vector_hasher): New.
5178 (add_indices_to_cpool): Remove.
5179 (write_hash_table): Update it to the new data structures.
5180 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
5181 (eq_psymtab_cu_index): Remove.
5182 (psym_index_map): New typedef.
5183 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
5184 reference and std::unordered_map for cu_index_htab.
5185 (add_address_entry, add_address_entry_worker, write_address_map)
5186 (write_psymbols): Update it to the new data structures.
5187 (write_obstack): Remove.
5188 (struct signatured_type_index_data): Change types_list to a data_buf
5189 reference and psyms_seen to a std::unordered_set reference.
5190 (write_one_signatured_type, recursively_write_psymbols)
5191 (write_psymtabs_to_index): Update it to the new data structures.
5192
c4dcb155
SM
51932017-06-11 Simon Marchi <simon.marchi@ericsson.com>
5194
5195 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
5196 separate-debug-file commands.
5197 * symfile.h (separate_debug_file_debug): New global.
5198 * symfile.c (separate_debug_file_debug): New global.
5199 (separate_debug_file_exists, find_separate_debug_file): Add
5200 debug output.
5201 (_initialize_symfile): Add "set debug separate-debug-file"
5202 command.
5203 * build-id.c (build_id_to_debug_bfd,
5204 find_separate_debug_file_by_buildid): Add debug output.
5205
6d45d4b4
SM
52062017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
5207
5208 * gdbarch.sh (displaced_step_free_closure): Remove.
5209 * gdbarch.h, gdbarch.c: Re-generate.
5210 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
5211 displaced_step_free_closure.
5212 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
5213 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
5214 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
5215 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
5216 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
5217 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5218 * arch-utils.h (simple_displaced_step_free_closure): Remove.
5219 * arch-utils.c (simple_displaced_step_free_closure): Remove.
5220 * infrun.c (displaced_step_clear): Call xfree instead of
5221 gdbarch_displaced_step_free_closure.
5222
2f91880f
SDJ
52232017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
5224
5225 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
5226 NULL".
5227
b8b6e72f
AH
52282017-06-08 Alan Hayward <alan.hayward@arm.com>
5229
5230 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
5231 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
5232 (mn10300_push_dummy_call): Likewise.
5233
5369082e
AH
52342017-06-08 Alan Hayward <alan.hayward@arm.com>
5235
5236 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
5237
ff4ca5ac
AH
52382017-06-08 Alan Hayward <alan.hayward@arm.com>
5239
5240 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
5241
aefd8b33
SDJ
52422017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
5243
5244 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
5245 able to start inferiors using a shell.
5246 (New remote packets): Announce new packet "QStartupWithShell".
5247 * remote.c: Add PACKET_QStartupWithShell.
5248 (extended_remote_create_inferior): Handle new
5249 PACKET_QStartupWithShell.
5250 (remote_protocol_features) <QStartupWithShell>: New entry for
5251 PACKET_QStartupWithShell.
5252 (_initialize_remote): Call "add_packet_config_cmd" for
5253 QStartupShell.
5254
2090129c
SDJ
52552017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
5256 Pedro Alves <palves@redhat.com>
5257
5258 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
5259 and "nat/fork-inferior.h".
5260 * common/common-inferior.h: New file, with contents from
5261 "gdb/inferior.h".
5262 * commom/common-utils.c: Include "common-utils.h".
5263 (stringify_argv): New function.
5264 * common/common-utils.h (stringify_argv): New prototype.
5265 * configure.nat: Add "fork-inferior.o" as a dependency for
5266 "*linux*", "fbsd*" and "nbsd*" hosts.
5267 * corefile.c (get_exec_file): Update comment.
5268 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
5269 instead of "startup_inferior".
5270 (darwin_create_inferior): Call "add_thread_silent" after
5271 "fork_inferior".
5272 * fork-child.c: Cleanup unnecessary includes.
5273 (SHELL_FILE): Move to "common/common-fork-child.c".
5274 (environ): Likewise.
5275 (exec_wrapper): Initialize.
5276 (get_exec_wrapper): New function.
5277 (breakup_args): Move to "common/common-fork-child.c"; rename to
5278 "breakup_args_for_exec".
5279 (escape_bang_in_quoted_argument): Move to
5280 "common/common-fork-child.c".
5281 (saved_ui): New variable.
5282 (prefork_hook): New function.
5283 (postfork_hook): Likewise.
5284 (postfork_child_hook): Likewise.
5285 (gdb_startup_inferior): Likewise.
5286 (fork_inferior): Move to "common/common-fork-child.c". Update
5287 function to support gdbserver.
5288 (startup_inferior): Likewise.
5289 * gdbcore.h (get_exec_file): Remove declaration.
5290 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
5291 instead of "startup_inferior". Call "add_thread_silent" after
5292 "fork_inferior".
5293 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
5294 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
5295 instead of "startup_inferior". Call "add_thread_silent" after
5296 "fork_inferior".
5297 * inferior.h: Include "common-inferior.h".
5298 (trace_start_error): Move to "common/common-utils.h".
5299 (trace_start_error_with_name): Likewise.
5300 (fork_inferior): Move prototype to "nat/fork-inferior.h".
5301 (startup_inferior): Likewise.
5302 (gdb_startup_inferior): New prototype.
5303 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
5304 * nat/fork-inferior.h: New file.
5305 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
5306 instead of "startup_inferior". Call "add_thread_silent" after
5307 "fork_inferior".
5308 * target.h (target_terminal_init): Move prototype to
5309 "target/target.h".
5310 (target_terminal_inferior): Likewise.
5311 (target_terminal_ours): Likewise.
5312 * target/target.h (target_terminal_init): New prototype, moved
5313 from "target.h".
5314 (target_terminal_inferior): Likewise.
5315 (target_terminal_ours): Likewise.
5316 * utils.c (gdb_flush_out_err): New function.
5317
043a4934
SDJ
53182017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
5319
5320 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
5321 * common/common-gdbthread.h: New file, with parts from
5322 "gdb/gdbthread.h".
5323 * gdbthread.h: Include "common-gdbthread.h".
5324 (switch_to_thread): Moved to "common/common-gdbthread.h".
5325
15652511
SDJ
53262017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
5327
5328 * Makefile.in (SFILES): Add "common/job-control.c".
5329 (HFILES_NO_SRCDIR): Add "common/job-control.h".
5330 (COMMON_OBS): Add "job-control.o".
5331 * common/job-control.c: New file, with contents from
5332 "gdb/inflow.c".
5333 * common/job-control.h: New file, with contents from "terminal.h".
5334 * fork-child.c: Include "job-control.h".
5335 * inflow.c: Include "job-control.h".
5336 (gdb_setpgid): Move to "common/common-inflow.c".
5337 (_initialize_inflow): Move setting of "job_control" to
5338 "handle_job_control".
5339 * terminal.h (job_control): Moved to "common/common-terminal.h".
5340 (gdb_setpgid): Likewise.
5341 * top.c: Include "job_control.h".
5342 * utils.c: Likewise.
5343 (job_control): Moved to "job-control.c".
5344
2d7cc5c7
PA
53452017-06-07 Pedro Alves <palves@redhat.com>
5346
5347 * Makefile.in (SFILES): Add gdb_regex.c.
5348 (COMMON_OBS): Add gdb_regex.o.
5349 * ada-lang.c (ada_add_standard_exceptions)
5350 (ada_add_exceptions_from_frame, name_matches_regex)
5351 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
5352 parameter type to compiled_regex. Adjust.
5353 (ada_exceptions_list): Use compiled_regex.
5354 * break-catch-throw.c (exception_catchpoint::pattern): Now a
5355 std::unique_ptr<compiled_regex>.
5356 (exception_catchpoint::~exception_catchpoint): Remove regfree
5357 call.
5358 (check_status_exception_catchpoint): Adjust to use compiled_regex.
5359 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
5360 * breakpoint.c (solib_catchpoint::compiled): Now a
5361 std::unique_ptr<compiled_regex>.
5362 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
5363 (check_status_catch_solib): Adjust to use compiled_regex.
5364 (add_solib_catchpoint): Adjust to use compiled_regex.
5365 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
5366 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
5367 compiled_regex reference. Adjust to use it.
5368 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
5369 declaration. Include "gdb_regex.h".
5370 (apropos_cmd): Change regex parameter to compiled_regex reference.
5371 * gdb_regex.c: New file.
5372 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
5373 declarations.
5374 (class compiled_regex): New.
5375 * linux-tdep.c: Include "common/gdb_optional.h".
5376 (struct mapping_regexes): New, factored out from
5377 mapping_is_anonymous_p, and adjusted to use compiled_regex.
5378 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
5379 gdb::optional and remove cleanups. Adjust to compiled_regex.
5380 * probe.c: Include "common/gdb_optional.h".
5381 (collect_probes): Use compiled_regex and gdb::optional and remove
5382 cleanups.
5383 * skip.c: Include "common/gdb_optional.h".
5384 (skiplist_entry::compiled_function_regexp): Now a
5385 gdb::optional<compiled_regex>.
5386 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
5387 (free_skiplist_entry): Remove regfree call.
5388 (compile_skip_regexp, skip_rfunction_p): Adjust to use
5389 compiled_regex and gdb::optional.
5390 * symtab.c: Include "common/gdb_optional.h".
5391 (search_symbols): Use compiled_regex and gdb::optional.
5392 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
5393 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
5394 to gdb_regex.c.
5395
50d6adef
AH
53962017-06-07 Alan Hayward <alan.hayward@arm.com>
5397
5398 * regcache.c (regcache::save): Avoid buffer use.
5399 (regcache::dump): Likewise.
5400
4a8a33c8
AH
54012017-06-07 Alan Hayward <alan.hayward@arm.com>
5402
5403 * sh-tdep.c (sh_pseudo_register_read): Remove
5404 MAX_REGISTER_SIZE.
5405 (sh_pseudo_register_write): Likewise.
5406 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
5407 (sh64_pseudo_register_write): Likewise
5408
d1be909e
AH
54092017-06-07 Alan Hayward <alan.hayward@arm.com>
5410
5411 * aarch64-tdep.c (aarch64_store_return_value): Use
5412 V_REGISTER_SIZE.
5413 (aarch64_pseudo_read_value): Likewise.
5414 (aarch64_pseudo_write): Likewise.
5415
f4a65042
YQ
54162017-06-06 Yao Qi <yao.qi@linaro.org>
5417
5418 * regformats/regdef.h (set_register_cache): Remove the
5419 declaration.
5420
9f7fb0aa
AH
54212017-06-06 Alan Hayward <alan.hayward@arm.com>
5422
5423 * frame.c (frame_unwind_register_signed): Use
5424 frame_unwind_register_value.
5425
e1e01040
PA
54262017-06-06 Pedro Alves <palves@redhat.com>
5427
5428 PR breakpoints/21553
5429 * breakpoint.c (create_breakpoints_sal_default)
5430 (init_breakpoint_sal, create_breakpoint_sal): Use
5431 gdb::unique_xmalloc_ptr for string parameters.
5432 (create_breakpoint): Constify 'extra_string' and 'cond_string'
5433 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
5434 (base_breakpoint_create_breakpoints_sal)
5435 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
5436 (strace_marker_create_breakpoints_sal)
5437 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
5438 string parameters.
5439 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
5440 gdb::unique_xmalloc_ptr for string parameters.
5441 (create_breakpoint): Constify 'extra_string' and 'cond_string'
5442 parameters.
5443
fbe654c8
AH
54442017-06-06 Alan Hayward <alan.hayward@arm.com>
5445
5446 * alpha-tdep.c (alpha_register_to_value): Use
5447 get_frame_register_value.
5448 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
5449
ae0d01d6
AH
54502017-06-06 Alan Hayward <alan.hayward@arm.com>
5451
5452 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
5453 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
5454 (ia64_value_to_register): Likewise.
5455 (ia64_extract_return_value): Likewise.
5456 (ia64_store_return_value): Likewise.
5457 (ia64_push_dummy_call): Likewise.
5458
49cf576c
JB
54592017-06-04 Joel Brobecker <brobecker@adacore.com>
5460
5461 GDB 8.0 released.
5462
26b6a6ab
SM
54632017-06-03 Simon Marchi <simon.marchi@ericsson.com>
5464
5465 * x86-linux-nat.c (struct arch_lwp_info): Remove.
5466
22827c51
SM
54672017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
5468
5469 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
5470 parameter.
5471 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
5472
0e05cf3a
SM
54732017-06-02 Simon Marchi <simon.marchi@ericsson.com>
5474
5475 * event-loop.c (poll_timers): Unallocate timer using delete
5476 instead of xfree.
5477
c1fc2657
SM
54782017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
5479
5480 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
5481 (struct breakpoint) <~breakpoint>: New.
5482 (struct watchpoint): Inherit from breakpoint.
5483 <~watchpoint>: New.
5484 <base>: Remove.
5485 (struct tracepoint): Inherit from breakpoint.
5486 <base>: Remove.
5487 * breakpoint.c (longjmp_breakpoint_ops): Remove.
5488 (struct longjmp_breakpoint): Inherit from breakpoint.
5489 <~longjmp_breakpoint>: New.
5490 <base>: Remove.
5491 (new_breakpoint_from_type): Remove casts.
5492 (watchpoint_in_thread_scope): Remove reference to base field.
5493 (watchpoint_del_at_next_stop): Likewise.
5494 (update_watchpoint): Likewise.
5495 (watchpoint_check): Likewise.
5496 (bpstat_check_watchpoint): Likewise.
5497 (set_longjmp_breakpoint): Likewise.
5498 (struct fork_catchpoint): Inherit from breakpoint.
5499 <base>: Remove.
5500 (struct solib_catchpoint): Inherit from breakpoint.
5501 <~solib_catchpoint>: New.
5502 <base>: Remove.
5503 (dtor_catch_solib): Change to ...
5504 (solib_catchpoint::~solib_catchpoint): ... this.
5505 (breakpoint_hit_catch_solib): Remove reference to base field.
5506 (add_solib_catchpoint): Likewise.
5507 (create_fork_vfork_event_catchpoint): Likewise.
5508 (struct exec_catchpoint): Inherit from breakpoint.
5509 <~exec_catchpoint>: New.
5510 <base>: Remove.
5511 (dtor_catch_exec): Change to ...
5512 (exec_catchpoint::~exec_catchpoint): ... this.
5513 (dtor_watchpoint): Change to ...
5514 (watchpoint::~watchpoint): ... this.
5515 (watch_command_1): Remove reference to base field.
5516 (catch_exec_command_1): Likewise.
5517 (base_breakpoint_dtor): Change to ...
5518 (breakpoint::~breakpoint): ... this.
5519 (base_breakpoint_ops): Remove dtor field value.
5520 (longjmp_bkpt_dtor): Change to ...
5521 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
5522 (strace_marker_create_breakpoints_sal): Remove reference to base
5523 field.
5524 (delete_breakpoint): Don't manually call breakpoint destructor.
5525 (create_tracepoint_from_upload): Remove reference to base field.
5526 (trace_pass_set_count): Likewise.
5527 (initialize_breakpoint_ops): Don't initialize
5528 momentary_breakpoint_ops, don't set dtors.
5529 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
5530 <~ada_catchpoint>: New.
5531 <base>: Remove.
5532 (create_excep_cond_exprs): Remove reference to base field.
5533 (dtor_exception): Change to ...
5534 (ada_catchpoint::~ada_catchpoint): ... this.
5535 (dtor_catch_exception): Remove.
5536 (dtor_catch_exception_unhandled): Remove.
5537 (dtor_catch_assert): Remove.
5538 (create_ada_exception_catchpoint): Remove reference to base
5539 field.
5540 (initialize_ada_catchpoint_ops): Don't set dtors.
5541 * break-catch-sig.c (struct signal_catchpoint): Inherit from
5542 breakpoint.
5543 <~signal_catchpoint>: New.
5544 <base>: Remove.
5545 (signal_catchpoint_dtor): Change to ...
5546 (signal_catchpoint::~signal_catchpoint): ... this.
5547 (create_signal_catchpoint): Remove reference to base field.
5548 (initialize_signal_catchpoint_ops): Don't set dtor.
5549 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
5550 from breakpoint.
5551 <~syscall_catchpoint>: New.
5552 <base>: Remove.
5553 (dtor_catch_syscall): Change to ...
5554 (syscall_catchpoint::~syscall_catchpoint): ... this.
5555 (create_syscall_event_catchpoint): Remove reference to base
5556 field.
5557 (initialize_syscall_catchpoint_ops): Don't set dtor.
5558 * break-catch-throw.c (struct exception_catchpoint): Inherit
5559 from breakpoint.
5560 <~exception_catchpoint>: New.
5561 <base>: Remove.
5562 (dtor_exception_catchpoint): Change to ...
5563 (exception_catchpoint::~exception_catchpoint): ... this.
5564 (handle_gnu_v3_exceptions): Remove reference to base field.
5565 (initialize_throw_catchpoint_ops): Don't set dtor.
5566 * ctf.c (ctf_get_traceframe_address): Remove reference to base
5567 field.
5568 * remote.c (remote_get_tracepoint_status): Likewise.
5569 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
5570 * tracefile.c (tracefile_fetch_registers): Likewise.
5571 * tracepoint.c (actions_command): Likewise.
5572 (validate_actionline): Likewise.
5573 (tfind_1): Likewise.
5574 (get_traceframe_location): Likewise.
5575 (find_matching_tracepoint_location): Likewise.
5576 (parse_tracepoint_status): Likewise.
5577 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
5578
3b0871f4
SM
55792017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
5580
5581 * breakpoint.c (struct longjmp_breakpoint): New struct.
5582 (is_tracepoint_type): Change return type to bool.
5583 (is_longjmp_type): New function.
5584 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
5585 (set_raw_breakpoint_without_location): Use
5586 new_breakpoint_from_type.
5587 (set_raw_breakpoint): Likewise.
5588
a5e364af
SM
55892017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
5590
5591 * breakpoint.c (new_breakpoint_from_type): New function.
5592 (create_breakpoint_sal): Use new_breakpoint_from_type and
5593 unique_ptr.
5594 (create_breakpoint): Likewise.
5595
ae3b3f34
SM
55962017-05-31 Simon Marchi <simon.marchi@ericsson.com>
5597
5598 * memattr.c (mem_info_command): Rename to ...
5599 (info_mem_command): ... this.
5600 (mem_enable_command): Rename to ...
5601 (enable_mem_command): ... this.
5602 (mem_disable_command): Rename to ...
5603 (disable_mem_command): ... this.
5604 (mem_delete_command): Rename to ...
5605 (delete_mem_command): ... this.
5606 (_initialize_mem): Adjust function names.
5607
13ace077
MM
56082017-05-31 Markus Metzger <markus.t.metzger@intel.com>
5609
5610 * btrace.c (handle_pt_insn_events): New.
5611 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
5612 STATUS. Split into this and ...
5613 (handle_pt_insn_event_flags): ... this.
5614
c56ccc05
MM
56152017-05-31 Markus Metzger <markus.t.metzger@intel.com>
5616
5617 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
5618 and struct pt_insn.resynced.
5619 * configure: Regenerated.
5620 * config.in: Regenerated.
5621
08c3f6d2
TW
56222017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5623
5624 * btrace.c (ftrace_find_call_by_number): New function.
5625 (ftrace_new_function): Store objects, not pointers.
5626 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
5627 ftrace_new_gap, ftrace_update_function,
5628 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
5629 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
5630 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
5631 btrace_ends_with_single_insn, btrace_call_get): Account for
5632 btrace_thread_info::functions now storing objects.
5633 * btrace.h (struct btrace_thread_info): Add constructor.
5634 (struct btrace_thread_info) <functions>: Make std::vector.
5635 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
5636 Initialize with default values.
5637 * record-btrace.c (record_btrace_frame_sniffer): Account for
5638 btrace_thread_info::functions now storing objects.
5639
8ffd39f2
TW
56402017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5641
5642 * btrace.c: Remove typedef bfun_s.
5643 (ftrace_new_gap): Directly add gaps to the list of gaps.
5644 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
5645 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
5646 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
5647 instead of gdb VEC.
5648
4aeb0dfc
TW
56492017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5650
5651 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
5652 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
5653 with btrace_thread_info::next_segment and
5654 btrace_thread_info::prev_segment.
5655 * btrace.h: Remove struct btrace_func_link.
5656 (struct btrace_function): Replace pair of function segment pointers
5657 with pair of indices.
5658 * python/py-record-btrace.c (btpy_call_prev_sibling,
5659 btpy_call_next_sibling): Replace references to
5660 btrace_thread_info::segment with btrace_thread_info::next_segment and
5661 btrace_thread_info::prev_segment.
5662 * record-btrace.c (record_btrace_frame_this_id): Use
5663 btrace_find_call_by_number.
5664
eb8f2b9c
TW
56652017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5666
5667 * btrace.c (ftrace_new_function, ftrace_fixup_level,
5668 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
5669 btrace_insn_next, btrace_insn_prev): Remove references to
5670 btrace_thread_info::flow.
5671 * btrace.h (struct btrace_function): Remove FLOW.
5672
42bfe59e
TW
56732017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5674
5675 * btrace.c (ftrace_find_call_by_number): New function.
5676 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
5677 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
5678 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
5679 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
5680 index.
5681 * btrace.h (struct btrace_function): Turn UP into an index.
5682 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
5683 as an index.
5684 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
5685 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
5686 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
5687
b54b03bd
TW
56882017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5689
5690 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
5691 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
5692 ftrace_update_function, ftrace_compute_global_level_offset,
5693 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
5694 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
5695 btrace_insn_end, btrace_is_empty): Remove references to
5696 btrace_thread_info::begin and btrace_thread_info::end.
5697 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
5698 (struct btrace_thread_info) <functions>: Adjust comment.
5699 * record-btrace.c (record_btrace_start_replaying): Remove reference to
5700 btrace_thread_info::begin.
5701
8286623c
TW
57022017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5703
5704 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
5705 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
5706 ftrace_update_function): Remove arguments that implicitly were always
5707 BTINFO->END.
5708 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
5709 Don't pass BTINFO->END.
5710
a0f1b963
TW
57112017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5712
5713 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
5714 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
5715 btrace_find_insn_by_number): Replace function segment pointer with
5716 index.
5717 (btrace_insn_cmp): Simplify.
5718 * btrace.h: (struct btrace_insn_iterator) Rename index to
5719 insn_index. Replace function segment pointer with index into function
5720 segment vector.
5721 * record-btrace.c (record_btrace_call_history): Replace function
5722 segment pointer use with index.
5723 (record_btrace_frame_sniffer): Retrieve function call segment through
5724 vector.
5725 (record_btrace_set_replay): Remove defunc't safety check.
5726
f158f208
TW
57272017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5728
5729 * btrace.c (btrace_ends_with_single_insn): New function.
5730 (btrace_call_get, btrace_call_number, btrace_call_begin,
5731 btrace_call_end, btrace_call_next, btrace_call_prev,
5732 btrace_find_call_by_number): Use index into call segment vector
5733 instead of pointer.
5734 (btrace_call_cmp): Simplify.
5735 * btrace.h (struct btrace_call_iterator): Replace function call segment
5736 pointer with index into vector.
5737 * record-btrace.c (record_btrace_call_history): Use index instead of
5738 pointer.
5739
521103fd
TW
57402017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5741
5742 * btrace.c (btrace_insn_begin, btrace_insn_end,
5743 btrace_find_insn_by_number): Add btinfo to iterator.
5744 * btrace.h (struct btrace_insn_iterator): Add btinfo.
5745
17b89b34
TW
57462017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5747
5748 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
5749 and save pointers directly.
5750 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
5751 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
5752 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
5753 changed signature of functions.
5754 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
5755 (btrace_fetch): Remove code that adds btrace_function pointers to
5756 vector of btrace_functions.
5757 (btrace_clear): Simplify freeing vector of btrace_functions.
5758
2b51eddc
TW
57592017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
5760
5761 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
5762 Replace VEC_* with std::vector functions.
5763 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
5764 (struct btrace_thread_info)<functions>: Change type to std::vector.
5765
db6be0d5
SM
57662017-05-30 Simon Marchi <simon.marchi@ericsson.com>
5767
5768 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
5769 "Removed targets and native configurations" up. Merge duplicate
5770 "New commands" sub-sections. Add "New options" sub-sections.
5771
b057297a
AH
57722017-05-26 Alan Hayward <alan.hayward@arm.com>
5773
5774 * defs.h (copy_integer_to_size): New declaration.
5775 * findvar.c (copy_integer_to_size): New function.
5776 (do_cint_test): New selftest function.
5777 (copy_integer_to_size_test): Likewise.
5778 (_initialize_findvar): Likewise.
5779 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
5780 (mips_fbsd_collect_reg): Use raw_collect_integer.
5781 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
5782 (mips64_fill_gregset): Use raw_collect_integer
5783 (mips64_fill_fpregset): Use raw_supply_integer.
5784 * regcache.c (regcache::raw_supply_integer): New function.
5785 (regcache::raw_collect_integer): Likewise.
5786 * regcache.h: (regcache::raw_supply_integer): New declaration.
5787 (regcache::raw_collect_integer): Likewise.
5788
b77b02a5
YQ
57892017-05-24 Yao Qi <yao.qi@linaro.org>
5790
5791 * Makefile.in (SFILES): Add gdbarch-selftests.c.
5792 (COMMON_OBS): Add gdbarch-selftests.o.
5793 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
5794 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
5795 * gdbarch-selftests.c: New file.
5796 * regcache.h (regcache) <~regcache>: Mark it virtual if
5797 GDB_SELF_TEST.
5798 <raw_write>: Likewise.
5799
e521e87e
YQ
58002017-05-24 Yao Qi <yao.qi@linaro.org>
5801
5802 * regcache.c (current_regcache): Change it to
5803 regcache::current_regcache.
5804 (regcache_observer_target_changed): Update.
5805 (regcache_thread_ptid_changed): Make it a regcache static
5806 method.
5807 (regcache_thread_ptid_changed): Update.
5808 (class regcache_access): New.
5809 (current_regcache_test): Update.
5810 (_initialize_regcache): Update.
5811 * regcache.h: Include forward_list.
5812 (regcache): Declare regcache_thread_ptid_changed and declare
5813 registers_changed_ptid as friend.
5814
d8e07dda
YQ
58152017-05-24 Yao Qi <yao.qi@linaro.org>
5816
5817 * i387-tdep.c (i387_register_to_value): Use register_size
5818 instead of TYPE_LENGTH.
5819 * m68k-tdep.c (m68k_register_to_value): Likewise.
5820
8c8f9122
YQ
58212017-05-24 Yao Qi <yao.qi@linaro.org>
5822
5823 * i387-tdep.c (i387_convert_register_p): Return false if type
5824 code isn't TYPE_CODE_FLT.
5825
68fce50f
YQ
58262017-05-24 Yao Qi <yao.qi@linaro.org>
5827
5828 * alpha-tdep.c (alpha_convert_register_p): Return true if type
5829 length is 4.
5830 (alpha_register_to_value): Remove type length check.
5831 (alpha_value_to_register): Likewise.
5832
88954b49
YQ
58332017-05-24 Yao Qi <yao.qi@linaro.org>
5834
5835 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
5836 TYPE_CODE_FLT.
5837
e3ec9b69
YQ
58382017-05-24 Yao Qi <yao.qi@linaro.org>
5839
5840 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
5841 TYPE_CODE_FLT or not.
5842
cdd238da
YQ
58432017-05-24 Yao Qi <yao.qi@linaro.org>
5844
5845 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
5846 * avr-tdep.c (avr_gdbarch_init): Likewise.
5847 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
5848 * cris-tdep.c (cris_gdbarch_init): Likewise.
5849 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
5850 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
5851 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
5852 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
5853 * mep-tdep.c (mep_gdbarch_init): Likewise.
5854 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
5855 * mips-tdep.c (mips_gdbarch_init): Likewise.
5856 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
5857 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
5858 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
5859 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
5860 * v850-tdep.c (v850_gdbarch_init): Likewise.
5861
7a3929c4
YQ
58622017-05-24 Yao Qi <yao.qi@linaro.org>
5863
5864 * selftest-arch.c (tests_with_arch): Call registers_changed
5865 and reinit_frame_cache.
5866 * selftest.c (run_self_tests): Likewise.
5867
f4985dba
YQ
58682017-05-24 Yao Qi <yao.qi@linaro.org>
5869
5870 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
5871 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
5872
ab20fa4a
YQ
58732017-05-24 Yao Qi <yao.qi@linaro.org>
5874
5875 * rl78-tdep.c (rl78_gdbarch_init): Don't call
5876 set_gdbarch_print_insn.
5877
f532ab94
YQ
58782017-05-24 Yao Qi <yao.qi@linaro.org>
5879
5880 * h8300-tdep.c (h8300_gdbarch_init): Don't call
5881 set_gdbarch_print_insn.
5882
39503f82
YQ
58832017-05-24 Yao Qi <yao.qi@linaro.org>
5884
5885 * alpha-tdep.c (alpha_gdbarch_init): Don't call
5886 set_gdbarch_print_insn.
5887 * arc-tdep.c (arc_gdbarch_init): Likewise.
5888 * arch-utils.c: include dis-asm.h.
5889 (default_print_insn): New function.
5890 * arch-utils.h (default_print_insn): Declare.
5891 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
5892 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
5893 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
5894 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
5895 * frv-tdep.c (frv_gdbarch_init): Likewise.
5896 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
5897 * gdbarch.sh (print_insn): Use default_print_insn.
5898 * gdbarch.c: Regenerated.
5899 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
5900 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
5901 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
5902 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
5903 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
5904 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
5905 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
5906 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
5907 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
5908 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
5909 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
5910 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
5911 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
5912 * mt-tdep.c (mt_gdbarch_init): Likewise.
5913 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
5914 * nios2-tdep.c (nios2_print_insn): Remove.
5915 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
5916 * rx-tdep.c (rx_gdbarch_init): Likewise.
5917 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
5918 * score-tdep.c (score_print_insn): Remove.
5919 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
5920 * sh-tdep.c (sh_gdbarch_init): Likewise.
5921 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
5922 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
5923 * tic6x-tdep.c (tic6x_print_insn): Remove.
5924 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
5925 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
5926 * v850-tdep.c (v850_gdbarch_init): Likewise.
5927 * vax-tdep.c (vax_gdbarch_init): Likewise.
5928 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
5929 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
5930
f7241d4f
JB
59312017-05-23 John Baldwin <jhb@FreeBSD.org>
5932
5933 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
5934 (MIPS_FP0_REGNUM): Remove.
5935 (MIPS_FSR_REGNUM): Remove.
5936 (mips_fbsd_supply_fpregs): Use mips_regnum.
5937 (mips_fbsd_supply_gregs): Likewise.
5938 (mips_fbsd_collect_fpregs): Likewise.
5939 (mips_fbsd_collect_gregs): Likewise.
5940
d489d81d
JB
59412017-05-23 John Baldwin <jhb@FreeBSD.org>
5942
5943 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
5944 (getpfpregs_supplies): New function.
5945 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
5946 getfpregs_supplies.
5947 (mips_fbsd_store_inferior_registers): Likewise.
5948
e11b3cdc
PA
59492017-05-22 Pedro Alves <palves@redhat.com>
5950
5951 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
5952 maintainer.
5953
0f068fb5
AH
59542017-05-22 Alan Hayward <alan.hayward@arm.com>
5955
5956 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
5957 (store_register): Likewise.
5958 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
5959 (get_decimal_float_return_value): Likewise.
5960 (do_ppc_sysv_return_value): Likewise.
5961 (ppc64_sysv_abi_push_integer): Likewise.
5962 (ppc64_sysv_abi_push_freg): Likewise.
5963 (ppc64_sysv_abi_return_value_base): Likewise.
5964 (ppc64_sysv_abi_return_value): Likewise.
5965 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
5966 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
5967 * rs6000-nat.c: Likewise.
5968 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
5969 (rs6000_value_to_register): Likewise.
5970 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
5971
e6cf65f2
TT
59722017-05-21 Tom Tromey <tom@tromey.com>
5973
5974 PR rust/21466:
5975 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
5976 arrays as "[T]", not "[T; ]".
5977
43cc5389
TT
59782017-05-19 Tom Tromey <tom@tromey.com>
5979
5980 PR rust/21484:
5981 * rust-lang.c (exp_descriptor_rust): New function.
5982 (rust_language_defn): Use it.
5983 * p-lang.c (pascal_language_defn): Update.
5984 * opencl-lang.c (opencl_language_defn): Update.
5985 * objc-lang.c (objc_language_defn): Update.
5986 * m2-lang.c (m2_language_defn): Update.
5987 * language.h (struct language_defn)
5988 <la_watch_location_expression>: New member.
5989 * language.c (unknown_language_defn, auto_language_defn)
5990 (local_language_defn): Update.
5991 * go-lang.c (go_language_defn): Update.
5992 * f-lang.c (f_language_defn): Update.
5993 * d-lang.c (d_language_defn): Update.
5994 * c-lang.h (c_watch_location_expression): Declare.
5995 * c-lang.c (c_watch_location_expression): New function.
5996 (c_language_defn, cplus_language_defn, asm_language_defn)
5997 (minimal_language_defn): Use it.
5998 * breakpoint.c (watch_command_1): Call
5999 la_watch_location_expression.
6000 * ada-lang.c (ada_language_defn): Update.
6001
7a6e7fcc
RO
60022017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6003
6e7e1744
RO
6004 PR tui/21482
6005 * gdb_curses.h (NOMACROS): Define.
6006 (NCURSES_NOMACROS): Define.
6007
60082017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6009
6010 PR tui/21482
7a6e7fcc
RO
6011 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
6012 arg to char *.
6013 * tui/tui-wingeneral.c (box_win): Likewise.
6014 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
6015 (tui_show_source_line): Likewise.
6016 (tui_show_exec_info_content): Likewise.
6017
1933fd8e
VM
60182017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
6019
6020 * sparc-tdep.c (sparc_structure_return_p)
6021 (sparc_arg_on_registers_p): New functions.
6022 (sparc32_store_arguments): Use them.
6023 * sparc64-tdep.c (sparc64_16_byte_align_p)
6024 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
6025 Handle TYPE_CODE_ARRAY.
6026
21873064
YQ
60272017-05-17 Yao Qi <yao.qi@linaro.org>
6028
6029 * cli/cli-decode.c (add_alias_cmd): New function.
6030 * command.h (add_alias_cmd): Declare.
6031 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
6032 instead call add_alias_cmd.
6033
2b351b19
PA
60342017-05-17 Pedro Alves <palves@redhat.com>
6035
6036 * Makefile.in (nat_extra_makefile_frag): Rename to ...
6037 (nat_makefile_frag): ... this. All references updated.
6038 * configure.ac: Likewise.
6039 * configure.nat: Likewise. Enhance comments.
6040 * configure: Regenerate.
6041
5f2ad7a3
RO
60422017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
6043
6044 * procfs.c (procfs_create_inferior): Change prototype to match
6045 definition.
6046
adf3dde5
EZ
60472017-05-13 Eli Zaretskii <eliz@gnu.org>
6048
6049 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
6050 C++ compiler warning.
6051
6830f270
TT
60522017-05-12 Tom Tromey <tom@tromey.com>
6053
6054 PR rust/21483:
6055 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
6056 recurse, just call value_struct_elt directly.
6057
68f2f2e3
TT
60582017-05-12 Tom Tromey <tom@tromey.com>
6059
6060 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
6061 OP_RUST_ARRAY>: Fix.
6062
256afbc2
TT
60632017-05-12 Tom Tromey <tom@tromey.com>
6064
6065 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
6066
94bb8dfe
YQ
60672017-05-09 Yao Qi <yao.qi@linaro.org>
6068
6069 * regcache.c: Include <forward_list>.
6070 (struct regcache_list): Remove.
6071 (current_regcache): Update.
6072 (get_thread_arch_aspace_regcache): Update for std::forward_list.
6073 (regcache_thread_ptid_changed): Likewise.
6074 (registers_changed_ptid): Likewise.
6075 (current_regcache_size): Likewise.
6076
8248946c
YQ
60772017-05-09 Yao Qi <yao.qi@linaro.org>
6078
6079 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
6080 (current_regcache_size): New function.
6081 (current_regcache_test): New function.
6082 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
6083
313c5961
AH
60842017-05-08 Alan Hayward <alan.hayward@arm.com>
6085
6086 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
6087 (print_gp_register_row): Use get_frame_register_value.
6088
27bfc1d1
AH
60892017-05-08 Alan Hayward <alan.hayward@arm.com>
6090
6091 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
6092 (mips_supply_fpregset): Likewise.
6093 (mips64_supply_gregset): Likewise.
6094
146e6c5c
AH
60952017-05-08 Alan Hayward <alan.hayward@arm.com>
6096
6097 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
6098 regcache->raw_supply_zeroed.
6099
e50f25ec
SDJ
61002017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
6101
6102 * configure.nat: Rearrange 'case' statements to match
6103 host before cpu.
6104
21ea5acd
SDJ
61052017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
6106
6107 * Makefile.in: Remove "@host_makefile_frag@". Add variables
6108 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
6109 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
6110 "@nat_extra_makefile_frag@".
6111 (Makefile): Remove dependency on "@frags@".
6112 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
6113 (data-directory/Makefile): Likewise.
6114 * config/aarch64/linux.mh: Deleted; moved contents to
6115 "gdb/configure.nat".
6116 * config/alpha/alpha-linux.mh: Likewise.
6117 * config/alpha/nbsd.mh: Likewise.
6118 * config/arm/linux.mh: Likewise.
6119 * config/arm/nbsdelf.mh: Likewise.
6120 * config/i386/cygwin.mh: Likewise.
6121 * config/i386/cygwin64.mh: Likewise.
6122 * config/i386/darwin.mh: Likewise.
6123 * config/i386/fbsd.mh: Likewise.
6124 * config/i386/fbsd64.mh: Likewise.
6125 * config/i386/go32.mh: Likewise.
6126 * config/i386/i386gnu.mh: Likewise.
6127 * config/i386/i386sol2.mh: Likewise.
6128 * config/i386/linux.mh: Likewise.
6129 * config/i386/linux64.mh: Likewise.
6130 * config/i386/mingw.mh: Likewise.
6131 * config/i386/mingw64.mh: Likewise.
6132 * config/i386/nbsd64.mh: Likewise.
6133 * config/i386/nbsdelf.mh: Likewise.
6134 * config/i386/nto.mh: Likewise.
6135 * config/i386/obsd.mh: Likewise.
6136 * config/i386/obsd64.mh: Likewise.
6137 * config/i386/sol2-64.mh: Likewise.
6138 * config/ia64/linux.mh: Likewise.
6139 * config/m32r/linux.mh: Likewise.
6140 * config/m68k/linux.mh: Likewise.
6141 * config/m68k/nbsdelf.mh: Likewise.
6142 * config/m68k/obsd.mh: Likewise.
6143 * config/m88k/obsd.mh: Likewise.
6144 * config/mips/fbsd.mh: Likewise.
6145 * config/mips/linux.mh: Likewise.
6146 * config/mips/nbsd.mh: Likewise.
6147 * config/mips/obsd64.mh: Likewise.
6148 * config/pa/linux.mh: Likewise.
6149 * config/pa/nbsd.mh: Likewise.
6150 * config/pa/obsd.mh: Likewise.
6151 * config/powerpc/aix.mh: Likewise.
6152 * config/powerpc/fbsd.mh: Likewise.
6153 * config/powerpc/linux.mh: Likewise.
6154 * config/powerpc/nbsd.mh: Likewise.
6155 * config/powerpc/obsd.mh: Likewise.
6156 * config/powerpc/ppc64-linux.mh: Likewise.
6157 * config/powerpc/spu-linux.mh: Likewise.
6158 * config/s390/linux.mh: Likewise.
6159 * config/sh/nbsd.mh: Likewise.
6160 * config/sparc/fbsd.mh: Likewise.
6161 * config/sparc/linux.mh: Likewise.
6162 * config/sparc/linux64.mh: Likewise.
6163 * config/sparc/nbsd64.mh: Likewise.
6164 * config/sparc/nbsdelf.mh: Likewise.
6165 * config/sparc/obsd64.mh: Likewise.
6166 * config/sparc/sol2.mh: Likewise.
6167 * config/tilegx/linux.mh: Likewise.
6168 * config/vax/nbsdelf.mh: Likewise.
6169 * config/vax/obsd.mh: Likewise.
6170 * config/xtensa/linux.mh: Likewise.
6171 * config/i386/i386gnu.mn: New file, with excerpts from
6172 "config/i386/i386gnu.mh".
6173 * configure: Regenerate.
6174 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
6175 *.mh files under "gdb/config".
6176 * configure.nat: New file, with contents from the
6177 "gdb/config/*/*.mh" files.
6178
7ed1acaf
TW
61792017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
6180
6181 * btrace.c (btrace_clear): Free insn vector.
6182
e13cb306
PA
61832017-05-05 Pedro Alves <palves@redhat.com>
6184
6185 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
6186 * configure: Regenerate.
6187
5ed8105e
PA
61882017-05-04 Pedro Alves <palves@redhat.com>
6189
6190 * Makefile.in (SFILES): Add progspace-and-thread.c.
6191 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
6192 (COMMON_OBS): Add progspace-and-thread.o.
6193 * breakpoint.c: Include "progspace-and-thread.h".
6194 (update_inserted_breakpoint_locations)
6195 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
6196 Use scoped_restore_current_pspace_and_thread.
6197 (create_std_terminate_master_breakpoint): Use
6198 scoped_restore_current_program_space.
6199 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
6200 (print_breakpoint_location): Use
6201 scoped_restore_current_program_space.
6202 (bp_loc_is_permanent): Use
6203 scoped_restore_current_pspace_and_thread.
6204 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
6205 (download_tracepoint_locations): Use
6206 scoped_restore_current_pspace_and_thread.
6207 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
6208 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
6209 (enum step_over_calls_kind): Moved from inferior.h.
6210 (class scoped_restore_current_thread): New class.
6211 * gdbthread.h (make_cleanup_restore_current_thread): Delete
6212 declaration.
6213 (scoped_restore_current_thread): New class.
6214 * infcmd.c: Include "common/gdb_optional.h".
6215 (continue_1, proceed_after_attach): Use
6216 scoped_restore_current_thread.
6217 (notice_new_inferior): Use scoped_restore_current_thread.
6218 * inferior.c: Include "progspace-and-thread.h".
6219 (restore_inferior, save_current_inferior): Delete.
6220 (add_inferior_command, clone_inferior_command): Use
6221 scoped_restore_current_pspace_and_thread.
6222 * inferior.h (scoped_restore_current_inferior): New class.
6223 * infrun.c: Include "progspace-and-thread.h" and
6224 "common/gdb_optional.h".
6225 (follow_fork_inferior): Use
6226 scoped_restore_current_pspace_and_thread.
6227 (scoped_restore_exited_inferior): New class.
6228 (handle_vfork_child_exec_or_exit): Use
6229 scoped_restore_exited_inferior,
6230 scoped_restore_current_pspace_and_thread,
6231 scoped_restore_current_thread and scoped_restore.
6232 (fetch_inferior_event): Use scoped_restore_current_thread.
6233 * linespec.c (decode_line_full, decode_line_1): Use
6234 scoped_restore_current_program_space.
6235 * mi/mi-main.c: Include "progspace-and-thread.h".
6236 (exec_continue): Use scoped_restore_current_thread.
6237 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
6238 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
6239 * proc-service.c (ps_pglobal_lookup): Use
6240 scoped_restore_current_program_space.
6241 * progspace-and-thread.c: New file.
6242 * progspace-and-thread.h: New file.
6243 * progspace.c (release_program_space, clone_program_space): Use
6244 scoped_restore_current_program_space.
6245 (restore_program_space, save_current_program_space)
6246 (save_current_space_and_thread): Delete.
6247 (switch_to_program_space_and_thread): Moved to
6248 progspace-and-thread.c.
6249 * progspace.h (save_current_program_space)
6250 (save_current_space_and_thread): Delete declarations.
6251 (scoped_restore_current_program_space): New class.
6252 * remote.c (remote_btrace_maybe_reopen): Use
6253 scoped_restore_current_thread.
6254 * symtab.c: Include "progspace-and-thread.h".
6255 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
6256 * thread.c (print_thread_info_1): Use
6257 scoped_restore_current_thread.
6258 (struct current_thread_cleanup): Delete.
6259 (do_restore_current_thread_cleanup)
6260 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
6261 (scoped_restore_current_thread::~scoped_restore_current_thread):
6262 ... this new dtor.
6263 (make_cleanup_restore_current_thread): Rename/convert to ...
6264 (scoped_restore_current_thread::scoped_restore_current_thread):
6265 ... this new ctor.
6266 (thread_apply_all_command): Use scoped_restore_current_thread.
6267 (thread_apply_command): Use scoped_restore_current_thread.
6268 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
6269 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
6270
f6223dbb
PA
62712017-05-04 Pedro Alves <palves@redhat.com>
6272
6273 * thread.c (make_cleanup_restore_current_thread): Move
6274 find_thread_ptid call before the is_stopped call. Assert that the
6275 thread is found. Replace is_stopped call by checking the thread's
6276 state directly. Remove unnecessary NULL-thread check.
6277
3c3ae77e
PA
62782017-05-04 Pedro Alves <palves@redhat.com>
6279
6280 * corelow.c (thread_section_name): New class.
6281 (get_core_register_section, get_core_siginfo): Use it.
6282
45eba0ab
AA
62832017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6284
6285 * corelow.c (sniff_core_bfd): Remove extra semicolon.
6286 (get_core_register_section): Remove xfree of NULL pointer.
6287
f81fdd35
AH
62882017-05-03 Alan Hayward <alan.hayward@arm.com>
6289
6290 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
6291 * regcache.c (regcache::raw_supply_zeroed): New function.
6292 * regcache.h (regcache::raw_supply_zeroed): New declaration.
6293
35837774
SM
62942017-05-03 Simon Marchi <simon.marchi@ericsson.com>
6295
6296 * gdbarch.sh: Remove commented out definition of
6297 TARGET_CHAR_BIT.
6298 * gdbarch.h: Re-generate.
6299
c94fee56
SDJ
63002017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
6301
6302 * configure: Regenerate.
6303
d17f7b36
SM
63042017-05-02 Simon Marchi <simon.marchi@ericsson.com>
6305
6306 * solib-target.c (solib_target_relocate_section_addresses):
6307 Remove num_section_bases, num_bases, segment_bases variables.
6308
b560ebd6
SM
63092017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
6310
6311 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
6312
f2f46dfc
SM
63132017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
6314
6315 * solib-target.c: Include <vector>
6316 (struct lm_info_target) <~lm_info_target>: Remove.
6317 <segment_bases, section_bases>: Change type to
6318 std::vector<CORE_ADDR>.
6319 (library_list_start_segment, library_list_start_section,
6320 library_list_end_library,
6321 solib_target_relocate_section_addresses): Adjust.
6322
a0ff9e1a
SM
63232017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
6324
6325 * gdbarch.sh (software_single_step): Change return type to
6326 std::vector<CORE_ADDR>.
6327 * gdbarch.c, gdbarch.h: Re-generate.
6328 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
6329 Adjust.
6330 (arm_deal_with_atomic_sequence_raw): Adjust.
6331 (thumb_get_next_pcs_raw): Adjust.
6332 (arm_get_next_pcs_raw): Adjust.
6333 (arm_get_next_pcs): Adjust.
6334 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
6335 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
6336 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
6337 (alpha_software_single_step): Adjust.
6338 * alpha-tdep.h (alpha_software_single_step): Adjust.
6339 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
6340 * arm-tdep.c (arm_software_single_step): Adjust.
6341 (arm_breakpoint_kind_from_current_state): Adjust.
6342 * arm-tdep.h (arm_software_single_step): Adjust.
6343 * breakpoint.c (insert_single_step_breakpoint): Adjust.
6344 * cris-tdep.c (cris_software_single_step): Adjust.
6345 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
6346 (micromips_deal_with_atomic_sequence): Adjust.
6347 (deal_with_atomic_sequence): Adjust.
6348 (mips_software_single_step): Adjust.
6349 * mips-tdep.h (mips_software_single_step): Adjust.
6350 * moxie-tdep.c (moxie_software_single_step): Adjust.
6351 * nios2-tdep.c (nios2_software_single_step): Adjust.
6352 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
6353 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
6354 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
6355 * s390-linux-tdep.c (s390_software_single_step): Adjust.
6356 * sparc-tdep.c (sparc_software_single_step): Adjust.
6357 * spu-tdep.c (spu_software_single_step): Adjust.
6358 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
6359
ea480a30
SM
63602017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
6361
6362 * gdbarch.sh: Use semi-colon as field separator instead of colon.
6363 * gdbarch.h: Re-generate.
6364
d050f7d7
TW
63652017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6366
6367 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
6368 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
6369 * python/py-instruction.c, python/py-instruction.h: New file.
6370 * python/py-record.c: Add py-instruction.h include.
6371 (gdbpy_initialize_record): Make gdb.Instruction a super class of
6372 gdb.RecordInstruction.
6373 * python/python-internal.h: Add gdbpy_initialize_instruction
6374 declaration.
6375 * python/python.c (do_start_initialization): Add
6376 gdbpy_initialize_instruction.
6377
14f819c8
TW
63782017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6379
6380 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
6381 Remove.
6382 (btrace_func_from_recpy_func): New function.
6383 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
6384 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
6385 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
6386 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
6387 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
6388 Also, use new helper functions.
6389 (btpy_list_item): Use new helper functions.
6390 (recpy_bt_function_call_history): Use new type name.
6391 (btpy_call_getset): Remove.
6392 (gdbpy_initialize_btrace): Remove code to initialize
6393 gdb.BtraceFunctionCall.
6394 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
6395 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
6396 recpy_bt_func_prev, recpy_bt_func_next): New export.
6397 * python/py-record.c (recpy_func_type): New static object.
6398 (recpy_func_new, recpy_func_level, recpy_func_symbol,
6399 recpy_func_instructions, recpy_func_up, recpy_func_prev,
6400 recpy_func_next): New function.
6401 (recpy_element_hash, recpy_element_richcompare): Updated comment.
6402 (recpy_func_getset): New static object.
6403 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
6404 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
6405
0ed5da75
TW
64062017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6407
6408 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
6409 (btpy_object, btpy_insn_type, btpy_new): Remove.
6410 (btpy_list_object): Use gdb.RecordInstruction type instead of
6411 gdb.BtraceInstruction type.
6412 (btrace_insn_from_recpy_insn): New function.
6413 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
6414 btpy_new.
6415 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
6416 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
6417 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
6418 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
6419 instead of btpy_object.
6420 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
6421 btpy_insn_data, btpy_insn_decode): Rename to ...
6422 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
6423 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
6424 recpy_bt_insn_decode): This. Also, use new helper functions.
6425 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
6426 recpy_insn_type.
6427 (btpy_insn_getset): Remove.
6428 (gdbpy_initialize_btrace): Remove code to initialize
6429 gdb.BtraceInstruction. Use recpy_element_object.
6430 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
6431 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
6432 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
6433 * python/py-record.c (recpy_insn_type): New static object.
6434 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
6435 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
6436 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
6437 New function.
6438 (recpy_insn_getset): New static object.
6439 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
6440 * python/py-record.h (recpy_element_object): New typedef.
6441 (recpy_insn_type, recpy_insn_new): New export.
6442
913aeadd
TW
64432017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6444
6445 * py-record-btrace.c (btpy_insn_new): Removed.
6446 (btpy_insn_or_gap_new): New function.
6447 (btpy_insn_error): Removed.
6448 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
6449 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
6450 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
6451 btpy_insn_or_gap_new instead of btpy_insn_new.
6452 (btpy_insn_getset): Remove btpy_insn_error.
6453 * py-record.c (recpy_gap_type): New static object.
6454 (recpy_gap_object): New typedef.
6455 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
6456 recpy_gap_reason_string): New function.
6457 (recpy_gap_getset): New static object.
6458 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
6459 * py-record.h (recpy_gap_new): New export.
6460
a3be24ad
TW
64612017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6462
6463 * python/py-record.c (recpy_ptid): Remove.
6464 (recpy_record_getset): Remove recpy_ptid.
6465
ae20e79a
TW
64662017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6467
6468 * btrace.c (btrace_fetch): Set inferior_ptid.
6469 * python/py-record-btrace.c: Add "py-record.h" include.
6470 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
6471 recpy_bt_end, recpy_bt_instruction_history,
6472 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
6473 in gdb.Record object instead of current ptid.
6474 * python/py-record.c: Include new "py-record.h" file.
6475 (recpy_record_object): Moved to py-record.h.
6476 * python/py-record.h: New file.
6477
8d0050ea
TW
64782017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
6479
6480 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
6481 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
6482 indentation.
6483
3f380b50
JB
64842017-05-01 Joel Brobecker <brobecker@adacore.com>
6485
6486 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
6487 the past maintainers section.
6488
07495424
YQ
64892017-04-28 Yao Qi <yao.qi@linaro.org>
6490
6491 * infcmd.c (get_return_value): Use regcache ctor, and remove
6492 cleanup.
6493
deb1fa3e
YQ
64942017-04-28 Yao Qi <yao.qi@linaro.org>
6495 Pedro Alves <palves@redhat.com>
6496
6497 * regcache.c (regcache::regcache): New tag dispatch ctor.
6498 (do_cooked_read): Moved above.
6499 (regcache_dup): Use the tag dispatch ctor..
6500 * regcache.h (regcache): Declare ctor, delete copy ctor and
6501 assignment operator, remove friend regcache_dup.
6502
b421c83c
YQ
65032017-04-28 Yao Qi <yao.qi@linaro.org>
6504
6505 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
6506 call method save instead of regcache_cpy.
6507 * regcache.h (struct regcache): Make regcache_dup a friend.
6508
ef79d9a3
YQ
65092017-04-28 Yao Qi <yao.qi@linaro.org>
6510
6511 * regcache.c (struct regcache): Move to regcache.h
6512 (regcache::arch): New method.
6513 (regcache_get_ptid): Update.
6514 (get_regcache_arch): Call arch method.
6515 (get_regcache_aspace): Call method aspace.
6516 (register_buffer): Change it to method.
6517 (regcache_save): Change it to regcache::save.
6518 (regcache_restore): Likewise.
6519 (regcache_cpy_no_passthrough): Remove the declaration.
6520 (regcache_cpy): Call methods restore and cpy_no_passthrough.
6521 (regcache_cpy_no_passthrough): Change it to method
6522 cpy_no_passthrough.
6523 (regcache_register_status): Change it to method
6524 get_register_status.
6525 (regcache_invalidate): Change it to method invalidate.
6526 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
6527 (regcache_raw_update): Change it to method raw_update.
6528 (regcache_raw_read): Likewise.
6529 (regcache_raw_read_signed): Likewise.
6530 (regcache_raw_read_unsigned): Likewise.
6531 (regcache_raw_write_signed): Likewise.
6532 (regcache_raw_write_unsigned): Likewise.
6533 (regcache_cooked_read): Likewise.
6534 (regcache_cooked_read_value): Likewise.
6535 (regcache_cooked_read_signed): Likewise.
6536 (regcache_cooked_read_unsigned): Likewise.
6537 (regcache_cooked_write_signed): Likewise.
6538 (regcache_cooked_write_unsigned): Likewise.
6539 (regcache_raw_set_cached_value): Likewise.
6540 (regcache_raw_write): Likewise.
6541 (regcache_cooked_write): Likewise.
6542 (regcache_xfer_part): Likewise.
6543 (regcache_raw_read_part): Likewise.
6544 (regcache_raw_write_part): Likewise.
6545 (regcache_cooked_read_part): Likewise.
6546 (regcache_cooked_write_part): Likewise.
6547 (regcache_raw_supply): Likewise.
6548 (regcache_raw_collect): Likewise.
6549 (regcache_transfer_regset): Likewise.
6550 (regcache_supply_regset): Likewise.
6551 (regcache_collect_regset): Likewise.
6552 (regcache_debug_print_register): Likewise.
6553 (enum regcache_dump_what): Move it to regcache.h.
6554 (regcache_dump): Change it to method dump.
6555 * regcache.h (enum regcache_dump_what): New.
6556 (class regcache): New.
6557 * target.c (target_fetch_registers): Call method
6558 debug_print_register.
6559 (target_store_registers): Likewise.
6560
f8fdb78e
SM
65612017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6562
6563 * windows-nat.c (struct lm_info_windows): Initialize field.
6564 (windows_make_so): Allocate lm_info_windows with new.
6565 (windows_free_so): Free lm_info_windows with delete.
6566
9ccbfd7b
SM
65672017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6568
6569 * solib-darwin.c (struct lm_info_darwin): Initialize field.
6570 (darwin_current_sos): Allocate lm_info_darwin with new, remove
6571 cleanup.
6572 (darwin_free_so): Free lm_info_darwin with delete.
6573
76e75227
SM
65742017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6575
6576 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
6577 <l_addr_p>: Change type to bool.
6578 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
6579 (svr4_free_so): Free lm_info_svr4 with delete.
6580 (svr4_copy_library_list): Replace memcpy with call to copy
6581 constructor.
6582 (library_list_start_library, svr4_default_sos): Allocate
6583 lm_info_svr4 with new.
6584
51046d9e
SM
65852017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6586
6587 * solib-target.c (struct lm_info_target): Add destructor,
6588 initialize fields.
6589 <name>: Change type to std::string.
6590 (library_list_start_library): Allocate lm_info_target with new.
6591 (solib_target_free_library_list): Free lm_info_target with
6592 delete.
6593 (solib_target_current_sos): Adapt to std::string.
6594 (solib_target_free_so): Free lm_info_target with delete.
6595
4023ae76
SM
65962017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6597
6598 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
6599 fields.
6600 (frv_current_sos): Allocate lm_info_frv with new.
6601 (frv_relocate_main_executable): Free lm_info_frv with delete,
6602 allocate with new.
6603 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
6604
af43057b
SM
66052017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6606
6607 * solib-frv.c (struct lm_info_frv): Fix indentation.
6608
b0911207
SM
66092017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6610
6611 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
6612 map field.
6613 (dsbt_current_sos): Allocate lm_info_dsbt with new.
6614 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
6615 and allocate with new.
6616 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
6617
6c401f72
SM
66182017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6619
6620 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
6621 <filename, member_name>: Change type to std::string.
6622 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
6623 (library_list_start_library): Allocate lm_info_aix with new.
6624 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
6625 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
6626 with copy constructor.
6627
d0e449a1
SM
66282017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6629
6630 * solist.h (struct lm_info): Remove.
6631 (struct lm_info_base): New class.
6632 (struct so_list) <lm_info>: Change type to lm_info_base *.
6633 * nto-tdep.c (struct lm_info): Remove.
6634 (lm_addr): Adjust.
6635 * solib-aix.c (struct lm_info): Rename to ...
6636 (struct lm_info_aix): ... this. Extend lm_info_base.
6637 (lm_info_p): Rename to ...
6638 (lm_info_aix_p): ... this, and adjust.
6639 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
6640 solib_aix_parse_libraries, library_list_start_library,
6641 solib_aix_free_library_list, solib_aix_parse_libraries,
6642 solib_aix_get_library_list,
6643 solib_aix_relocate_section_addresses, solib_aix_free_so,
6644 solib_aix_get_section_offsets,
6645 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
6646 Adjust.
6647 (struct solib_aix_inferior_data) <library_list>: Adjust.
6648 * solib-darwin.c (struct lm_info): Rename to ...
6649 (struct lm_info_darwin): ... this. Extend lm_info_base.
6650 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
6651 * solib-dsbt.c (struct lm_info): Rename to ...
6652 (struct lm_info_dsbt): ... this. Extend lm_info_base.
6653 (struct dsbt_info) <main_executable_lm_info): Adjust.
6654 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
6655 dsbt_relocate_section_addresses): Adjust.
6656 * solib-frv.c (struct lm_info): Rename to ...
6657 (struct lm_info_frv): ... this. Extend lm_info_base.
6658 (main_executable_lm_info): Adjust.
6659 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
6660 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
6661 find_canonical_descriptor_in_load_object,
6662 frv_fdpic_find_canonical_descriptor): Adjust.
6663 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
6664 to lm_info_svr4.
6665 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
6666 svr4_clear_so, svr4_copy_library_list,
6667 library_list_start_library, svr4_default_sos, svr4_read_so_list,
6668 svr4_current_sos, svr4_fetch_objfile_link_map,
6669 solist_update_incremental): Adjust.
6670 * solib-svr4.h (struct lm_info_svr4): Move here from
6671 solib-svr4.c.
6672 * solib-target.c (struct lm_info): Rename to ...
6673 (struct lm_info_target): ... this. Extend lm_info_base.
6674 (lm_info_p): Rename to ...
6675 (lm_info_target_p): ... this.
6676 (solib_target_parse_libraries, library_list_start_segment,
6677 library_list_start_section, library_list_start_library,
6678 library_list_end_library, solib_target_free_library_list,
6679 solib_target_current_sos, solib_target_free_so,
6680 solib_target_relocate_section_addresses): Adjust.
6681 * windows-nat.c (struct lm_info): Rename to ...
6682 (struct lm_info_windows): ... this. Extend lm_info_base.
6683 (windows_make_so, handle_load_dll, handle_unload_dll,
6684 windows_xfer_shared_libraries): Adjust.
6685
434a4023
SM
66862017-04-28 Simon Marchi <simon.marchi@ericsson.com>
6687
6688 * solib-darwin.c (struct darwin_so_list): Remove.
6689 (darwin_current_sos): Allocate an so_list object instead of a
6690 darwin_so_list, separately allocate an lm_info object.
6691 (darwin_free_so): Free lm_info.
6692
428544e8
JB
66932017-04-28 John Baldwin <jhb@FreeBSD.org>
6694
6695 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
6696 with fprintf_filtered.
6697
4621115f
YQ
66982017-04-28 Yao Qi <yao.qi@linaro.org>
6699
6700 * regcache.c (regcache::regcache): New function.
6701 (regcache::~regcache): New function.
6702 (regcache_xmalloc_1): Remove.
6703 (regcache_xmalloc): Call new regcache.
6704 (regcache_xfree): Call delete regcache.
6705 (get_thread_arch_aspace_regcache): Call new regcache.
6706
339053c2
YQ
67072017-04-28 Yao Qi <yao.qi@linaro.org>
6708
6709 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
6710 lwp instead of ptid_get_lwp.
6711
7974a605
YQ
67122017-04-28 Yao Qi <yao.qi@linaro.org>
6713
6714 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
6715 lwp_info instead of getting from inferior_ptid.
6716
e15c3eb4
KS
67172017-04-27 Keith Seitz <keiths@redhat.com>
6718
6719 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
6720 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
6721 (CV_CONVERSION_BADNESS): Define.
6722 (rank_one_type): Remove overly restrictive rvalue reference
6723 rank checks.
6724 Add cv-qualifier checks and subranks for type equality.
6725 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
6726 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
6727 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
6728
72bc1d24
SM
67292017-04-27 Simon Marchi <simon.marchi@ericsson.com>
6730
6731 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
6732 count when creating the object.
6733
55bcecda
UW
67342017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
6735 Ulrich Weigand <uweigand@de.ibm.com>
6736
6737 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
6738 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
6739 is used in AIX.
6740 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
6741 (process_xcoff_symbol): Likewise.
6742 (scan_xcoff_symtab): Likewise.
6743
5c99fcf8
AH
67442017-04-26 Alan Hayward <alan.hayward@arm.com>
6745
6746 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
6747 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
6748 (ia64_access_reg): Use get_frame_register_unsigned.
6749 (ia64_access_rse_reg): Likewise.
6750 (ia64_libunwind_frame_prev_register): Likewise.
6751
b41c5a85
JW
67522017-04-26 Jiong Wang <jiong.wang@arm.com>
6753
6754 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
6755 * gdbarch.c: Regenerated.
6756 * gdbarch.h: Regenerated.
6757 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
6758 visibility external.
6759 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
6760 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
6761 (enum cfa_how_kind): Move to ...
6762 (struct dwarf2_frame_state_reg_info): Likewise.
6763 (struct dwarf2_frame_state): Likewise.
6764 * dwarf2-frame.h: ... here.
6765 (dwarf2_frame_state_alloc_regs): New declaration.
6766 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
6767 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
6768
c185f580
AH
67692017-04-26 Alan Hayward <alan.hayward@arm.com>
6770
6771 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
6772 regcache_raw_read_unsigned.
6773 (xtensa_pseudo_register_write): Likewise.
6774
19c45594
AH
67752017-04-26 Alan Hayward <alan.hayward@arm.com>
6776
6777 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
6778 (nds32_pseudo_register_write): Likewise.
6779
4658f12e
YQ
67802017-04-25 Yao Qi <yao.qi@linaro.org>
6781
6782 * regcache.c (struct regcache) <readonly_p>: Change its type
6783 to bool.
6784 (regcache_xmalloc_1): Update parameter type and callers update.
6785
d581dda8
YQ
67862017-04-25 Yao Qi <yao.qi@linaro.org>
6787
6788 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
6789 set_gdbarch_wchar_bit.
6790 * arm-tdep.c (arm_gdbarch_init): Likewise.
6791
debed3db
PA
67922017-04-25 Pedro Alves <palves@redhat.com>
6793
6794 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
6795 (BothAreRelocatable, memcopy, memmove): Don't define.
6796 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
6797 macros.
6798
b0b92aeb
PA
67992017-04-25 Pedro Alves <palves@redhat.com>
6800
6801 * common/common-defs.h: Include "common/poison.h".
6802 * common/function-view.h: (Not, Or, Requires): Move to traits.h
6803 and adjust.
6804 * common/poison.h: New file.
6805 * common/traits.h: Include <type_traits>.
6806 (Not, Or, Requires): New, moved from common/function-view.h.
6807
16c4d54a
PA
68082017-04-25 Pedro Alves <palves@redhat.com>
6809
6810 * breakpoint.h (struct breakpoint): In-class initialize all
6811 fields. Make boolean fields "bool".
6812 * breakpoint.c (init_raw_breakpoint_without_location): Remove
6813 memset call and initializations no longer necessary.
6814
b5c36682
PA
68152017-04-25 Pedro Alves <palves@redhat.com>
6816
6817 * btrace.c (pt_btrace_insn_flags): Change parameter type to
6818 reference.
6819 (pt_btrace_insn): New function.
6820 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
6821
5625a286
PA
68222017-04-25 Pedro Alves <palves@redhat.com>
6823
6824 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
6825 "base" field and inherit from "bp_location" instead. Add
6826 non-default ctor.
6827 (allocate_location_exception): Use new non-default ctor.
6828 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
6829 (init_bp_location): Convert to ...
6830 (bp_location::bp_location): ... this new ctor, and remove memset
6831 call.
6832 (base_breakpoint_allocate_location): Use the new non-default ctor.
6833 * breakpoint.h (bp_location): Now a class. Declare default and
6834 non-default ctors. In-class initialize all members.
6835 (init_bp_location): Remove declaration.
6836
23bcc18f
PA
68372017-04-25 Pedro Alves <palves@redhat.com>
6838
6839 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
6840 assignment operator.
6841
e1ba3053
YQ
68422017-04-24 Yao Qi <yao.qi@linaro.org>
6843
6844 * doublest.c (convert_doublest_to_floatformat): Call
6845 floatformat_totalsize_bytes.
6846
10f489e5
TT
68472017-04-22 Tom Tromey <tom@tromey.com>
6848
6849 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
6850 ui_out_emit_list.
6851 * stack.c (print_frame): Use ui_out_emit_list.
6852 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
6853 ui_out_emit_list.
6854 * mi/mi-main.c (print_one_inferior)
6855 (mi_cmd_data_list_register_names)
6856 (mi_cmd_data_list_register_values, mi_cmd_list_features)
6857 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
6858 ui_out_emit_list.
6859 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
6860 (mi_output_solib_attribs): Use ui_out_emit_list,
6861 ui_out_emit_tuple.
6862 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
6863 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
6864 (mi_cmd_stack_list_args, list_args_or_locals): Use
6865 ui_out_emit_list.
6866 * disasm.c (do_assembly_only): Use ui_out_emit_list.
6867 * breakpoint.c (print_solib_event, output_thread_groups): Use
6868 ui_out_emit_list.
6869
0092b74d
TT
68702017-04-22 Tom Tromey <tom@tromey.com>
6871
6872 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
6873 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
6874 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
6875
a14a62dd
TT
68762017-04-22 Tom Tromey <tom@tromey.com>
6877
6878 * tracepoint.c (tvariables_info_1)
6879 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
6880
46b9c129
TT
68812017-04-22 Tom Tromey <tom@tromey.com>
6882
6883 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
6884 annotate_arg_emitter.
6885 * breakpoint.c (print_mention_watchpoint)
6886 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
6887 * annotate.h (struct annotate_arg_emitter): New.
6888
2e783024
TT
68892017-04-22 Tom Tromey <tom@tromey.com>
6890
6891 * record-btrace.c (record_btrace_insn_history)
6892 (record_btrace_insn_history_range, record_btrace_call_history)
6893 (record_btrace_call_history_range): Use ui_out_emit_tuple.
6894 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
6895 ui_out_emit_tuple.
6896 * stack.c (print_frame_info): Use ui_out_emit_tuple.
6897 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
6898 * skip.c (skip_info): Use ui_out_emit_tuple.
6899 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
6900 * progspace.c (print_program_space): Use ui_out_emit_tuple.
6901 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
6902 * osdata.c (info_osdata): Use ui_out_emit_tuple.
6903 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
6904 ui_out_emit_tuple.
6905 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
6906 (output_register, mi_cmd_data_read_memory)
6907 (mi_cmd_data_read_memory_bytes, mi_load_progress)
6908 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
6909 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
6910 Use ui_out_emit_tuple.
6911 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
6912 ui_out_emit_tuple.
6913 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
6914 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
6915 * linux-thread-db.c (info_auto_load_libthread_db): Use
6916 ui_out_emit_tuple.
6917 * inferior.c (print_inferior): Use ui_out_emit_tuple.
6918 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
6919 * disasm.c (do_mixed_source_and_assembly_deprecated)
6920 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
6921 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
6922 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
6923 * breakpoint.c (print_one_breakpoint_location)
6924 (print_one_breakpoint): Use ui_out_emit_tuple.
6925 * auto-load.c (print_script, info_auto_load_cmd): Use
6926 ui_out_emit_tuple.
6927 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
6928
9be21bb4
SM
69292017-04-21 Simon Marchi <simon.marchi@ericsson.com>
6930
6931 * thread.c (print_thread_info_1): Remove dead code.
6932
0d4c07af
JK
69332017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6934
6935 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
6936 GDB_SELF_TEST.
6937 * arm-tdep.c (selftests::arm_record_test): Likewise.
6938
4daf993d
YQ
69392017-04-21 Yao Qi <yao.qi@linaro.org>
6940
6941 * regcache.c (regcache_restore): Remove argument 2. Replace
6942 argument 3 with regcache. Get register status from
6943 src->register_status and get register contents from
6944 register_buffer (src, regnum).
6945 (regcache_cpy): Update.
6946
a6c21d4a
PA
69472017-04-19 Pedro Alves <palves@redhat.com>
6948
6949 * gdbthread.h (thread): Add missing closing parenthesis in
6950 comment.
6951
3a3fd0fd
PA
69522017-04-19 Pedro Alves <palves@redhat.com>
6953
6954 * common/refcounted-object.h: New file.
6955 * gdbthread.h: Include "common/refcounted-object.h".
6956 (thread_info): Inherit from refcounted_object and add comments.
6957 (thread_info::incref, thread_info::decref)
6958 (thread_info::m_refcount): Delete.
6959 (thread_info::deletable): Use the refcounted_object::refcount()
6960 method.
6961 * inferior.c (current_inferior_): Add comment.
6962 (set_current_inferior): Increment/decrement refcounts.
6963 (prune_inferiors, remove_inferior_command): Skip inferiors marked
6964 not-deletable instead of comparing with the current inferior.
6965 (initialize_inferiors): Increment the initial inferior's refcount.
6966 * inferior.h (struct inferior): Forward declare.
6967 Include "common/refcounted-object.h".
6968 (current_inferior, set_current_inferior): Move declaration to
6969 before struct inferior's definition, and fix comment.
6970 (inferior): Inherit from refcounted_object. Add comments.
6971 * thread.c (switch_to_thread_no_regs): Reference the thread's
6972 inferior pointer directly instead of doing a ptid lookup.
6973 (switch_to_no_thread): New function.
6974 (switch_to_thread(thread_info *)): New function, factored out
6975 from ...
6976 (switch_to_thread(ptid_t)): ... this.
6977 (restore_current_thread): Delete.
6978 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
6979 fields, and add 'inf' field.
6980 (do_restore_current_thread_cleanup): Check whether old->inf is
6981 alive instead of looking up an inferior by ptid. Use
6982 switch_to_thread and switch_to_no_thread.
6983 (restore_current_thread_cleanup_dtor): Use old->inf directly
6984 instead of lookup up an inferior by id. Decref the inferior.
6985 Don't restore 'removable'.
6986 (make_cleanup_restore_current_thread): Same the inferior pointer
6987 in old, instead of the inferior number. Incref the inferior.
6988 Don't save/clear 'removable'.
6989
9bcb1f16
PA
69902017-04-19 Pedro Alves <palves@redhat.com>
6991
6992 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6993 unittests/scoped_restore-selftests.c.
6994 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
6995 * common/scoped_restore.h (scoped_restore_base): Make "class".
6996 (scoped_restore_base::release): New public method.
6997 (scoped_restore_base::scoped_restore_base): New protected ctor.
6998 (scoped_restore_base::m_saved_var): New protected field.
6999 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
7000 scoped_restore_base base class instead of m_saved_var directly.
7001 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
7002 (scoped_restore_tmpl::scoped_restore_tmpl(const
7003 scoped_restore_tmpl<T>&)): Likewise.
7004 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
7005 method.
7006 (scoped_restore_tmpl::saved_var): New method.
7007 (scoped_restore_tmpl::m_saved_var): Delete.
7008 * inferior.h (inferior::detaching): Now a bool.
7009 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
7010 cleanup.
7011 * unittests/scoped_restore-selftests.c: New file.
7012
26fcd539
PA
70132017-04-19 Pedro Alves <palves@redhat.com>
7014
7015 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
7016 Re-sort in alphabetic order.
7017
fdd243b0
PA
70182017-04-18 Pedro Alves <palves@redhat.com>
7019
7020 * xml-support.c (obstack_xml_printf): Delete.
7021 * xml-support.h (obstack_xml_printf): Delete.
7022
4895cde2
PA
70232017-04-18 Pedro Alves <palves@redhat.com>
7024
7025 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
7026 vdebug, verror, body_text, start_element, end_element, name,
7027 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
7028 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
7029 is_xinclude>: Make private and add m_ prefix.
7030 (gdb_xml_parser::body_text): New method, based on ...
7031 (gdb_xml_body_text): ... this. Adjust.
7032 (gdb_xml_parser::vdebug): New method, based on ...
7033 (gdb_xml_debug): ... this. Adjust.
7034 (gdb_xml_parser::verror): New method, based on ...
7035 (gdb_xml_error): ... this. Adjust.
7036 (gdb_xml_parser::start_element): New method, based on ...
7037 (gdb_xml_start_element): ... this. Adjust.
7038 (gdb_xml_start_element_wrapper): Defer to
7039 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
7040 (gdb_xml_parser::end_element): New method, based on ...
7041 (gdb_xml_end_element_wrapper): ... this. Adjust.
7042 (gdb_xml_parser::~gdb_xml_parser): Adjust.
7043 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
7044 (gdb_xml_parser::use_dtd): New method, based on ...
7045 (gdb_xml_use_dtd): ... this. Adjust.
7046 (gdb_xml_parser::parse): New method, based on ...
7047 (gdb_xml_parse): ... this. Adjust.
7048 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
7049 (xinclude_start_include): Adjust to call the parser's name method.
7050 (xml_xinclude_default, xml_xinclude_start_doctype)
7051 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
7052 method.
7053 (xml_process_xincludes): Adjust to call parser methods.
7054 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
7055 declarations.
7056
bd8a901f
PA
70572017-04-18 Pedro Alves <palves@redhat.com>
7058
7059 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
7060 gdb::optional<std::string>.
7061 * xml-support.c: Include <string>.
7062 (scope_level::scope_level(scope_level &&))
7063 (scope_level::~scope_level): Delete.
7064 (scope_level::body): Now a std::string.
7065 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
7066 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
7067 parameter.
7068 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
7069 (xinclude_parsing_data::output): Now a std::string reference.
7070 (xinclude_start_include): Adjust.
7071 (xml_xinclude_default): Adjust.
7072 (xml_process_xincludes): Add 'output' parameter, and return bool.
7073 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
7074 and return bool.
7075 * xml-tdesc.c: Include <unordered_map> and <string>.
7076 (tdesc_xml_cache): Delete.
7077 (tdesc_xml_cache_s): Delete.
7078 (xml_cache): Now an std::unordered_map.
7079 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
7080 (target_fetch_description_xml): Change return type to
7081 gdb::optional<std::string>, and adjust.
7082 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
7083 (target_fetch_description_xml): Change return type to
7084 gdb::optional<std::string>.
7085
d35d1958
PA
70862017-04-18 Pedro Alves <palves@redhat.com>
7087
7088 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
7089 unittests/optional-selftests.c.
7090 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
7091 * unittests/optional-selftests.c: New file.
7092 * unittests/optional/assignment/1.cc: New file.
7093 * unittests/optional/assignment/2.cc: New file.
7094 * unittests/optional/assignment/3.cc: New file.
7095 * unittests/optional/assignment/4.cc: New file.
7096 * unittests/optional/assignment/5.cc: New file.
7097 * unittests/optional/assignment/6.cc: New file.
7098 * unittests/optional/assignment/7.cc: New file.
7099 * unittests/optional/cons/copy.cc: New file.
7100 * unittests/optional/cons/default.cc: New file.
7101 * unittests/optional/cons/move.cc: New file.
7102 * unittests/optional/cons/value.cc: New file.
7103 * unittests/optional/in_place.cc: New file.
7104 * unittests/optional/observers/1.cc: New file.
7105 * unittests/optional/observers/2.cc: New file.
7106
22796e97
PA
71072017-04-18 Pedro Alves <palves@redhat.com>
7108
7109 * common/gdb_optional.h: Include common/traits.h.
7110 (in_place_t): New type.
7111 (in_place): New constexpr variable.
7112 (optional::optional): Remove member initialization of
7113 m_instantiated.
7114 (optional::optional(in_place_t...)): New constructor.
7115 (optional::~optional): Use reset.
7116 (optional::optional(const optional&)): New.
7117 (optional::optional(const optional&&)): New.
7118 (optional::optional(T &)): New.
7119 (optional::optional(T &&)): New.
7120 (operator::operator=(const optional &)): New.
7121 (operator::operator=(optional &&)): New.
7122 (operator::operator= (const T &))
7123 (operator::operator= (T &&))
7124 (operator::emplace (Args &&... args)): Return a T&. Use reset.
7125 (operator::reset): New.
7126 (operator::m_instantiated):: Add in-class initializer.
7127 * common/traits.h: Include <type_traits>.
7128 (struct And): New types.
7129
a7fc9b61
PA
71302017-04-18 Pedro Alves <palves@redhat.com>
7131
7132 * xml-support.c: Include <vector>.
7133 (scope_level::scope_level(const gdb_xml_element *))
7134 (scope_level::scope_level(scope_level&&)): New.
7135 (scope_level::~scope_level): New.
7136 (scope_level_s): Delete.
7137 (gdb_xml_parser::scopes): Now a std::vector.
7138 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
7139 Use std::vector.
7140 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
7141 scope cleanup code.
7142 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
7143 of the scopes member. Use std::vector::emplace_back.
7144
010151c9
PA
71452017-04-18 Pedro Alves <palves@redhat.com>
7146
7147 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
7148 a bool.
7149 (gdb_xml_end_element): Change type of first parameter.
7150 (gdb_xml_cleanup): Rename to ...
7151 (gdb_xml_parser::~gdb_xml_parser): ... this.
7152 (gdb_xml_create_parser_and_cleanup): Delete with ...
7153 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
7154 to this new ctor.
7155 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
7156 using gdb_xml_create_parser_and_cleanup.
7157 (xinclude_parsing_data): Add ctor/dtor.
7158 (xml_xinclude_cleanup): Delete.
7159 (xml_process_xincludes): Create a local xinclude_parsing_data
7160 instead of heap-allocating one. Create a local gdb_xml_parser
7161 instead of heap-allocating one with
7162 gdb_xml_create_parser_and_cleanup.
7163
d56060f0
JB
71642017-04-18 John Baldwin <jhb@FreeBSD.org>
7165
7166 PR threads/20743
7167 * fbsd-nat.c (resume_one_thread_cb): Remove.
7168 (resume_all_threads_cb): Remove.
7169 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
7170 iterate_over_threads.
7171
305d16a9
JB
71722017-04-17 Joel Brobecker <brobecker@adacore.com>
7173
7174 * NEWS: Create a new section for the next release branch.
7175 Rename the section of the current branch, now that it has
7176 been cut.
7177
8bb57231
JB
71782017-04-17 Joel Brobecker <brobecker@adacore.com>
7179
7180 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
7181 * version.in: Bump version to 8.0.50.DATE-git.
7182
096c92dd
SDJ
71832017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
7184
7185 PR gdb/21385
7186 * windows-nat.c (windows_create_inferior): Declare 'allargs'
7187 independently of the host, and fix build breakage on Cygwin.
7188
0550c955
PA
71892017-04-13 Pedro Alves <palves@redhat.com>
7190
7191 * inferior.c (free_inferior): Convert to ...
7192 (inferior::~inferior): ... this dtor.
7193 (inferior::inferior): New ctor, factored out from ...
7194 (add_inferior_silent): ... here. Allocate the inferior with a new
7195 expression.
7196 (delete_inferior): Call delete instead of free_inferior.
7197 * inferior.h (gdb_environ, continuation): Forward declare.
7198 (inferior): Now a class. Add in-class initialization to all
7199 members. Make boolean fields bool, except 'detaching'.
7200 (inferior::inferior): New explicit ctor.
7201 (inferior::~inferior): New.
7202
e3d60dfc
PA
72032017-04-13 Pedro Alves <palves@redhat.com>
7204
7205 * inferior.c (init_inferior_list): Delete.
7206 * inferior.h (init_inferior_list): Delete.
7207
5fd69d0a
PA
72082017-04-13 Pedro Alves <palves@redhat.com>
7209
7210 PR threads/13217
7211 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
7212 (top level): Call it twice, with different thread sets.
7213
c6609450
PA
72142017-04-13 Pedro Alves <palves@redhat.com>
7215
7216 * thread.c: Include <algorithm>.
7217 (thread_array_cleanup): Delete.
7218 (scoped_inc_dec_ref): New class.
7219 (live_threads_count): New function.
7220 (set_thread_refcount): Delete.
7221 (tp_array_compar_ascending): Now a bool.
7222 (tp_array_compar): Convert to a std::sort comparison function.
7223 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
7224 and live_threads_count.
7225
2a00d7ce
PA
72262017-04-13 Pedro Alves <palves@redhat.com>
7227
7228 * infrun.c (follow_fork_inferior): Also switch the current
7229 inferior.
7230
441d7c93
PA
72312017-04-13 Pedro Alves <palves@redhat.com>
7232
7233 * breakpoint.c (watch_command_1): Save watchpoint-frame info
7234 before calling create_internal_breakpoint.
7235
808480f6
PA
72362017-04-13 Pedro Alves <palves@redhat.com>
7237
7238 * fork-child.c (execv_argv): New class.
7239 (breakup_args): Refactored as ...
7240 (execv_argv::init_for_no_shell): .. this method of execv_argv.
7241 Copy arguments to storage and replace separators with NULL
7242 terminators in place.
7243 (escape_bang_in_quoted_argument): Adjust to return bool.
7244 (execv_argv::execv_argv): New ctor.
7245 (execv_argv::init_for_shell): New method, factored out from
7246 fork_inferior. Don't strdup strings into the vector.
7247 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
7248 Remove free_vector_argv call.
7249
ad3d022a
YQ
72502017-04-13 Yao Qi <yao.qi@linaro.org>
7251
7252 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
7253 tdep->rx_psw_type.
7254
e6ddc3bf
YQ
72552017-04-13 Yao Qi <yao.qi@linaro.org>
7256
7257 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
7258 * rx-tdep.c (rx_gdbarch_init): Likewise.
7259
bfb8cf90
PA
72602017-04-13 Pedro Alves <palves@redhat.com>
7261
7262 * breakpoint.h (struct breakpoint): Reindent.
7263
f5336ca5
PA
72642017-04-13 Pedro Alves <palves@redhat.com>
7265
7266 * breakpoint.c (bp_location): Rename to ...
7267 (bp_locations): ... this. All references updated.
7268 (bp_location_count): Rename to ...
7269 (bp_locations_count): ... this. All references updated.
7270 (bp_location_placed_address_before_address_max): Rename to ...
7271 (bp_locations_placed_address_before_address_max): ... this. All
7272 references updated.
7273 (bp_location_shadow_len_after_address_max): Rename to ...
7274 (bp_locations_shadow_len_after_address_max): ... this. All
7275 references updated.
7276 (bp_location_compare_addrs): Rename to ...
7277 (bp_locations_compare_addrs): ... this. All references updated.
7278 (bp_location_compare):Rename to ...
7279 (bp_locations_compare): ... this. All references updated.
7280 (bp_location_target_extensions_update): Rename to ...
7281 (bp_locations_target_extensions_update): ... this. All references
7282 updated.
7283
be628ab8
SDJ
72842017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
7285
7286 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
7287 * common/common.m4: Check headers 'termios.h', 'termio.h' and
7288 'sgtty.h'.
7289 * common/gdb_termios.h: New file, with parts of "terminal.h".
7290 * inflow.c: Include "gdb_termios.h".
7291 * ser-unix.c: Include "gdb_termios.h".
7292 * terminal.h: Move terminal-related defines to
7293 "common/gdb_termios.h".
7294
8e9e35b1
TT
72952017-04-12 Tom Tromey <tom@tromey.com>
7296
7297 * probe.c (parse_probes): Update.
7298 * location.h (delete_event_location): Don't declare.
7299 (event_location_deleter::operator()): Update.
7300 * location.c (event_location_deleter::operator()): Rename from
7301 delete_event_location.
7302 * linespec.h (linespec_result) <location>: Change type to
7303 event_location_up.
7304 * linespec.c (canonicalize_linespec, event_location_to_sals)
7305 (decode_objc): Update.
7306 (linespec_result): Don't call delete_event_location.
7307 * breakpoint.c (create_breakpoints_sal)
7308 (bkpt_probe_create_sals_from_location)
7309 (strace_marker_create_sals_from_location): Update.
7310
16e802b9
TT
73112017-04-12 Tom Tromey <tom@tromey.com>
7312
7313 * linespec.h (struct linespec_result): Add constructor and
7314 destructor.
7315 (init_linespec_result, destroy_linespec_result)
7316 (make_cleanup_destroy_linespec_result): Don't declare.
7317 * linespec.c (init_linespec_result): Remove.
7318 (linespec_result::~linespec_result): Rename from
7319 destroy_linespec_result. Update.
7320 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
7321 Remove.
7322 * breakpoint.c (create_breakpoint, break_range_command)
7323 (decode_location_default): Update.
7324 * ax-gdb.c (agent_command_1): Update.
7325
d28cd78a
TT
73262017-04-12 Tom Tromey <tom@tromey.com>
7327
7328 * remote.c (remote_download_tracepoint): Update.
7329 * python/py-breakpoint.c (bppy_get_location): Update.
7330 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
7331 (gdbscm_breakpoint_location): Update.
7332 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
7333 * breakpoint.h (struct breakpoint) <location, location_range_end>:
7334 Change type to event_location_up.
7335 * breakpoint.c (create_overlay_event_breakpoint)
7336 (create_longjmp_master_breakpoint)
7337 (create_std_terminate_master_breakpoint)
7338 (create_exception_master_breakpoint)
7339 (breakpoint_event_location_empty_p, print_breakpoint_location)
7340 (print_one_breakpoint_location, create_thread_event_breakpoint)
7341 (init_breakpoint_sal, create_breakpoint)
7342 (print_recreate_ranged_breakpoint, break_range_command)
7343 (init_ada_exception_breakpoint, say_where): Update.
7344 (base_breakpoint_dtor): Don't call delete_event_location.
7345 (bkpt_print_recreate, tracepoint_print_recreate)
7346 (dprintf_print_recreate, update_static_tracepoint)
7347 (breakpoint_re_set_default): Update.
7348
711799d5
TT
73492017-04-12 Tom Tromey <tom@tromey.com>
7350
7351 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
7352 type of "to_do". Update.
7353 (compute_stack_depth): Use std::vector.
7354
52d214d3
TT
73552017-04-12 Tom Tromey <tom@tromey.com>
7356
7357 * printcmd.c (find_instruction_backward): Use std::vector.
7358
4c404b8b
TT
73592017-04-12 Tom Tromey <tom@tromey.com>
7360
7361 * symfile.c (objfilep): Remove typedef.
7362 (reread_symbols): Use a std::vector.
7363
156d9eab
TT
73642017-04-12 Tom Tromey <tom@tromey.com>
7365
7366 * mi/mi-main.c (exec_direction_forward): Remove.
7367 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
7368 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
7369 scoped_restore.
7370 * guile/guile.c (guile_repl_command, guile_command)
7371 (gdbscm_execute_gdb_command): Use scoped_restore.
7372 * go-exp.y (go_parse): Use scoped_restore.
7373 * d-exp.y (d_parse): Use scoped_restore.
7374 * cli/cli-decode.c (cmd_func): Use scoped_restore.
7375 * c-exp.y (c_parse): Use scoped_restore.
7376
4d89769a
TT
73772017-04-12 Tom Tromey <tom@tromey.com>
7378
7379 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
7380 (mi_parse): Update return type.
7381 (mi_parse_free): Remove.
7382 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
7383 (mi_parse::~mi_parse): Rename from mi_parse_free.
7384 (mi_parse_cleanup): Remove.
7385 (mi_parse): Return a unique_ptr. Use new.
7386 * mi/mi-main.c (mi_execute_command): Update.
7387
4b217cc7
TT
73882017-04-12 Tom Tromey <tom@tromey.com>
7389
7390 * location.c (explicit_location_lex_one): Return a
7391 unique_xmalloc_ptr.
7392 (string_to_explicit_location): Update. Remove cleanups.
7393
59d3651b
TT
73942017-04-12 Tom Tromey <tom@tromey.com>
7395
7396 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
7397 (compare_value_and_voffset): Change type. Update.
7398 (compute_vtable_size): Change type of "offset_vec".
7399 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
7400 (gnuv3_get_typeid): Remove extraneous declaration.
7401
b24b0d6c
TT
74022017-04-12 Tom Tromey <tom@tromey.com>
7403
7404 * charset.h (wchar_iterator): Fix comment.
7405
80a3b8c5
TT
74062017-04-12 Tom Tromey <tom@tromey.com>
7407
7408 * charset.c (iconv_wrapper): New class.
7409 (cleanup_iconv): Remove.
7410 (convert_between_encodings): Use it.
7411
c83dd867
TT
74122017-04-12 Tom Tromey <tom@tromey.com>
7413
7414 * symfile.h (increment_reading_symtab): Update type.
7415 * symfile.c (decrement_reading_symtab): Remove.
7416 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
7417 * psymtab.c (psymtab_to_symtab): Update.
7418 * dwarf2read.c (dw2_instantiate_symtab): Update.
7419
0e8621a0
TT
74202017-04-12 Tom Tromey <tom@tromey.com>
7421
7422 * jit.c (struct jit_reader): Declare separately. Add constructor
7423 and destructor. Change type of "handle".
7424 (loaded_jit_reader): Define separately.
7425 (jit_reader_load): Update. New "new".
7426 (jit_reader_unload_command): Use "delete".
7427 * gdb-dlfcn.h (struct dlclose_deleter): New.
7428 (gdb_dlhandle_up): New typedef.
7429 (gdb_dlopen, gdb_dlsym): Update types.
7430 (gdb_dlclose): Remove.
7431 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
7432 (gdb_dlsym): Change type of "handle".
7433 (make_cleanup_dlclose): Remove.
7434 (dlclose_deleter::operator()): Rename from gdb_dlclose.
7435 * compile/compile-c-support.c (load_libcc): Update.
7436
67d89901
TT
74372017-04-12 Tom Tromey <tom@tromey.com>
7438
7439 * symtab.h (find_pcs_for_symtab_line): Change return type.
7440 * symtab.c (find_pcs_for_symtab_line): Change return type.
7441 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
7442 type of "vec". Update.
7443 (ltpy_get_pcs_for_line): Update.
7444 * linespec.c (decode_digits_ordinary): Update.
7445
93921405
TT
74462017-04-12 Tom Tromey <tom@tromey.com>
7447
7448 * tracepoint.c (actions_command): Update.
7449 * python/python.c (python_command, python_interactive_command):
7450 Update.
7451 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
7452 * guile/guile.c (guile_command): Update.
7453 * defs.h (read_command_lines, read_command_lines_1): Return
7454 command_line_up.
7455 (command_lines_deleter): New struct.
7456 (command_line_up): New typedef.
7457 * compile/compile.c (compile_code_command)
7458 (compile_print_command): Update.
7459 * cli/cli-script.h (get_command_line, copy_command_lines): Return
7460 command_line_up.
7461 (make_cleanup_free_command_lines): Remove.
7462 * cli/cli-script.c (get_command_line, read_command_lines_1)
7463 (copy_command_lines): Return command_line_up.
7464 (while_command, if_command, read_command_lines, define_command)
7465 (document_command): Update.
7466 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
7467 Remove.
7468 * breakpoint.h (breakpoint_set_commands): Change type of
7469 "commands".
7470 * breakpoint.c (breakpoint_set_commands): Change type of
7471 "commands". Update.
7472 (do_map_commands_command, update_dprintf_command_list)
7473 (create_tracepoint_from_upload): Update.
7474
ffc2605c
TT
74752017-04-12 Tom Tromey <tom@tromey.com>
7476
7477 * tracepoint.c (scope_info): Update.
7478 * spu-tdep.c (spu_catch_start): Update.
7479 * python/python.c (gdbpy_decode_line): Update.
7480 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
7481 * python/py-breakpoint.c (bppy_init): Update.
7482 * probe.c (parse_probes): Update.
7483 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
7484 * location.h (event_location_deleter): New struct.
7485 (event_location_up): New typedef.
7486 (new_linespec_location, new_address_location, new_probe_location)
7487 (new_explicit_location, copy_event_location)
7488 (string_to_event_location, string_to_event_location_basic)
7489 (string_to_explicit_location): Update return type.
7490 (make_cleanup_delete_event_location): Remove.
7491 * location.c (new_linespec_location, new_address_location)
7492 (new_probe_location, new_explicit_location, copy_event_location):
7493 Return event_location_up.
7494 (delete_event_location_cleanup)
7495 (make_cleanup_delete_event_location): Remove.
7496 (string_to_explicit_location, string_to_event_location_basic)
7497 (string_to_event_location): Return event_location_up.
7498 * linespec.c (canonicalize_linespec, event_location_to_sals)
7499 (decode_line_with_current_source)
7500 (decode_line_with_last_displayed, decode_objc): Update.
7501 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
7502 * completer.c (location_completer): Update.
7503 * cli/cli-cmds.c (edit_command, list_command): Update.
7504 * breakpoint.c (create_overlay_event_breakpoint)
7505 (create_longjmp_master_breakpoint)
7506 (create_std_terminate_master_breakpoint)
7507 (create_exception_master_breakpoint)
7508 (create_thread_event_breakpoint): Update.
7509 (init_breakpoint_sal): Update. Remove some dead code.
7510 (create_breakpoint_sal): Change type of "location". Update.
7511 (create_breakpoints_sal, create_breakpoint, break_command_1)
7512 (dprintf_command, break_range_command, until_break_command)
7513 (init_ada_exception_breakpoint)
7514 (strace_marker_create_sals_from_location)
7515 (update_static_tracepoint, trace_command, ftrace_command)
7516 (strace_command, create_tracepoint_from_upload): Update.
7517 * break-catch-throw.c (re_set_exception_catchpoint): Update.
7518 * ax-gdb.c (agent_command_1): Update.
7519
8f10c932
PA
75202017-04-12 Pedro Alves <palves@redhat.com>
7521
7522 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
7523 * configure.tgt: Handle i[34567]86-*-go32* and
7524 i[34567]86-*-msdosdjgpp*.
7525 * i386-tdep.c (i386_svr4_reg_to_regnum):
7526 Make extern.
7527 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
7528 i386-go32-tdep.c.
7529 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
7530 * i386-go32-tdep.c: New file.
7531 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
7532 declarations.
7533
0a31ccfb
SM
75342017-04-12 Simon Marchi <simon.marchi@ericsson.com>
7535
7536 * aix-thread.c (pd_status2str): Change return type to const char *.
7537
e9bb3fbb
PA
75382017-04-12 Pedro Alves <palves@redhat.com>
7539
7540 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
7541 calls to set_gdbarch_gnu_triplet_regexp.
7542
53375380
PA
75432017-04-12 Pedro Alves <palves@redhat.com>
7544
7545 PR gdb/21323
7546 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
7547 New enum value.
7548 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
7549 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
7550 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
7551 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
7552 * gdbarch.h, gdbarch.c: Regenerate.
7553 * aarch64-tdep.c (aarch64_gdbarch_init): Override
7554 gdbarch_wchar_bit and gdbarch_wchar_signed.
7555 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
7556 * arm-tdep.c (arm_gdbarch_init): Likewise.
7557 * avr-tdep.c (avr_gdbarch_init): Likewise.
7558 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
7559 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
7560 * i386-tdep.c (i386_go32_init_abi): Likewise.
7561 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
7562 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
7563 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
7564 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
7565 * sh-tdep.c (sh_gdbarch_init): Likewise.
7566 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
7567 * sparc64-tdep.c (sparc64_init_abi): Likewise.
7568 * windows-tdep.c (windows_init_abi): Likewise.
7569 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
7570
53e710ac
PA
75712017-04-12 Pedro Alves <palves@redhat.com>
7572
7573 PR c++/21323
7574 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
7575 cplus_primitive_type_char32_t>: New enum values.
7576 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
7577 and cplus_primitive_type_char32_t.
7578 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
7579 32, use the archtecture's built-in type for char16_t and char32_t,
7580 respectively. Otherwise, fallback to init_integer_type as before,
7581 but make the type unsigned, and issue a complaint.
7582 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
7583
ab0538b8
AH
75842017-04-12 Alan Hayward <alan.hayward@arm.com>
7585
5e0e0422 7586 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
ab0538b8
AH
7587 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
7588
5430098f
SDJ
75892017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
7590
7591 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
7592 'const char *'.
7593
7c5ded6a
SDJ
75942017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
7595
7596 * common/common-utils.c (free_vector_argv): New function.
7597 * common/common-utils.h: Include <vector>.
7598 (free_vector_argv): New prototype.
7599 * darwin-nat.c (darwin_create_inferior): Rewrite function
7600 prototype in order to constify "exec_file" and accept a
7601 "std::string" for "allargs".
7602 * fork-child.c: Include <vector>.
7603 (breakup_args): Rewrite function, using C++.
7604 (fork_inferior): Rewrite function header, constify "exec_file_arg"
7605 and accept "std::string" for "allargs". Update the code to
7606 calculate "argv" based on "allargs". Update calls to "exec_fun"
7607 and "execvp".
7608 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
7609 order to constify "exec_file" and accept a "std::string" for
7610 "allargs".
7611 * go32-nat.c (go32_create_inferior): Likewise.
7612 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
7613 * infcmd.c (run_command_1): Constify "exec_file". Use
7614 "std::string" for inferior arguments.
7615 * inferior.h (fork_inferior): Update prototype.
7616 * linux-nat.c (linux_nat_create_inferior): Rewrite function
7617 prototype in order to constify "exec_file" and accept a
7618 "std::string" for "allargs".
7619 * nto-procfs.c (procfs_create_inferior): Likewise.
7620 * procfs.c (procfs_create_inferior): Likewise.
7621 * remote-sim.c (gdbsim_create_inferior): Likewise.
7622 * remote.c (extended_remote_run): Update code to accept
7623 "std::string" as argument.
7624 (extended_remote_create_inferior): Rewrite function prototype in
7625 order to constify "exec_file" and accept a "std::string" for
7626 "allargs".
7627 * rs6000-nat.c (super_create_inferior): Likewise.
7628 (rs6000_create_inferior): Likewise.
7629 * target.h (struct target_ops) <to_create_inferior>: Likewise.
7630 * windows-nat.c (windows_create_inferior): Likewise.
7631
ae0eee42
PA
76322017-04-11 Pedro Alves <palves@redhat.com>
7633
7634 * thread.c: Fix whitespace throughout.
7635
a6acac06
PR
76362017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
7637
7638 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
7639
64403bd1
AH
76402017-04-11 Alan Hayward <alan.hayward@arm.com>
7641
7642 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
7643
a5bef50f
SDJ
76442017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
7645
7646 PR gdb/21364
7647 * osdata.c (info_osdata): Check if 'type' is an empty string
7648 instead of NULL.
7649
9295a5a9
PA
76502017-04-10 Pedro Alves <palves@redhat.com>
7651
7652 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
7653 (ptid_to_global_thread_id, in_thread_list)
7654 (do_captured_list_thread_ids, set_resumed, set_running)
7655 (set_executing, set_stop_requested, finish_thread_state)
7656 (validate_registers_access, can_access_registers_ptid)
7657 (print_thread_info_1, switch_to_thread)
7658 (do_restore_current_thread_cleanup)
7659 (make_cleanup_restore_current_thread, thread_command)
7660 (thread_name_command): Use operator== instead of ptid_equal.
7661
996812e3
PA
76622017-04-10 Pedro Alves <palves@redhat.com>
7663
7664 * thread.c (struct current_thread_cleanup) <next>: Delete field.
7665 (current_thread_cleanup_chain): Delete.
7666 (restore_current_thread_cleanup_dtor)
7667 (make_cleanup_restore_current_thread): Remove references to
7668 current_thread_cleanup_chain.
7669
845b344f
AH
76702017-04-10 Alan Hayward <alan.hayward@arm.com>
7671
7672 * msp430-tdep.c (msp430_pseudo_register_read): Never return
7673 REG_UNKNOWN.
7674
803bdfe4
YQ
76752017-04-10 Yao Qi <yao.qi@linaro.org>
7676
7677 PR gdb/19942
7678 * gdbthread.h (thread_info::deletable): New method.
7679 (thread_info::incref): New method.
7680 (thread_info::decref): New method.
7681 (thread_info::refcount): Move it to private.
7682 * infrun.c (save_stop_context): Call inc_refcount.
7683 (release_stop_context_cleanup): Likewise.
7684 * thread.c (set_thread_exited): New function.
7685 (init_thread_list): Delete "tp" only it is deletable, otherwise
7686 call set_thread_exited.
7687 (delete_thread_1): Call set_thread_exited.
7688 (current_thread_cleanup) <inferior_pid>: Remove.
7689 <thread>: New field.
7690 (restore_current_thread_ptid_changed): Removed.
7691 (do_restore_current_thread_cleanup): Adjust.
7692 (restore_current_thread_cleanup_dtor): Don't call
7693 find_thread_ptid.
7694 (set_thread_refcount): Use dec_refcount.
7695 (make_cleanup_restore_current_thread): Adjust.
7696 (thread_apply_all_command): Call inc_refcount.
7697 (_initialize_thread): Don't call
7698 observer_attach_thread_ptid_changed.
7699
8c25b497
YQ
77002017-04-10 Yao Qi <yao.qi@linaro.org>
7701
7702 * thread.c (delete_thread_1): Hoist code on marking thread as
7703 exited.
7704
8473b447
SM
77052017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
7706
7707 * windows-nat.c (windows_detach): Initialize ptid with
7708 minus_one_ptid.
7709
6670ec13
SM
77102017-04-07 Simon Marchi <simon.marchi@ericsson.com>
7711
7712 * unittests/ptid-selftests.c: Fix erroneous assert messages.
7713
ba2f91bb
AH
77142017-04-07 Alan Hayward <alan.hayward@arm.com>
7715
7716 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
7717 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
7718 (bfin_pseudo_register_write): Likewise
7719
436252de
SM
77202017-04-06 Simon Marchi <simon.marchi@ericsson.com>
7721
7722 * common/ptid.h (struct ptid): Change to...
7723 (class ptid_t): ... this.
7724 <ptid_t>: New constructors.
7725 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
7726 matches>: New methods.
7727 <make_null, make_minus_one>: New static methods.
7728 <pid>: Rename to...
7729 <m_pid>: ...this.
7730 <lwp>: Rename to...
7731 <m_lwp>: ...this.
7732 <tid>: Rename to...
7733 <m_tid>: ...this.
7734 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
7735 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
7736 as references, move comment to class ptid_t.
7737 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
7738 ptid_t static methods.
7739 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
7740 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
7741 Take ptid arguments as references, implement using ptid_t methods.
7742 * unittests/ptid-selftests.c: New file.
7743 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
7744 unittests/ptid-selftests.c.
7745 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
7746
0dedf377
TP
77472017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
7748
7749 * python/python.c (python_run_simple_file): Cast mode literal to
7750 non-const char pointer as expected by PyFile_FromString.
7751
4e9868d4
SM
77522017-04-05 Simon Marchi <simon.marchi@ericsson.com>
7753
7754 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
7755 minus_one_ptid and null_ptid.
7756
9bf2a700
PA
77572017-04-05 Pedro Alves <palves@redhat.com>
7758
7759 * warning.m4 (build_warnings): Remove -Wno-write-strings.
7760 * configure: Regenerate.
7761
a121b7c1
PA
77622017-04-05 Pedro Alves <palves@redhat.com>
7763
7764 * ada-exp.y (yyerror): Constify.
7765 * ada-lang.c (bound_name, get_selections)
7766 (ada_variant_discrim_type)
7767 (ada_variant_discrim_name, ada_value_struct_elt)
7768 (ada_lookup_struct_elt_type, is_unchecked_variant)
7769 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
7770 (catch_ada_exception_command_split)
7771 (catch_ada_assert_command_split, catch_assert_command)
7772 (ada_op_name): Constify.
7773 * ada-lang.h (ada_yyerror, get_selections)
7774 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
7775 * arc-tdep.c (arc_print_frame_cache): Constify.
7776 * arm-tdep.c (arm_skip_stub): Constify.
7777 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
7778 (gen_aggregate_elt_ref): Constify.
7779 * bcache.c (print_bcache_statistics): Constify.
7780 * bcache.h (print_bcache_statistics): Constify.
7781 * break-catch-throw.c (catch_exception_command_1):
7782 * breakpoint.c (struct ep_type_description::description):
7783 Constify.
7784 (add_solib_catchpoint): Constify.
7785 (catch_fork_command_1): Add cast.
7786 (add_catch_command): Constify.
7787 * breakpoint.h (add_catch_command, add_solib_catchpoint):
7788 Constify.
7789 * bsd-uthread.c (bsd_uthread_state): Constify.
7790 * buildsym.c (patch_subfile_names): Constify.
7791 * buildsym.h (next_symbol_text_func, patch_subfile_names):
7792 Constify.
7793 * c-exp.y (yyerror): Constify.
7794 (token::oper): Constify.
7795 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
7796 * c-varobj.c (cplus_describe_child): Constify.
7797 * charset.c (find_charset_names): Add cast.
7798 (find_charset_names): Constify array and add const_cast.
7799 * cli/cli-cmds.c (complete_command, cd_command): Constify.
7800 (edit_command): Constify.
7801 * cli/cli-decode.c (lookup_cmd): Constify.
7802 * cli/cli-dump.c (dump_memory_command, dump_value_command):
7803 Constify.
7804 (struct dump_context): Constify.
7805 (add_dump_command, restore_command): Constify.
7806 * cli/cli-script.c (get_command_line): Constify.
7807 * cli/cli-script.h (get_command_line): Constify.
7808 * cli/cli-utils.c (check_for_argument): Constify.
7809 * cli/cli-utils.h (check_for_argument): Constify.
7810 * coff-pe-read.c (struct read_pe_section_data): Constify.
7811 * command.h (lookup_cmd): Constify.
7812 * common/print-utils.c (decimal2str): Constify.
7813 * completer.c (gdb_print_filename): Constify.
7814 * corefile.c (set_gnutarget): Constify.
7815 * cp-name-parser.y (yyerror): Constify.
7816 * cp-valprint.c (cp_print_class_member): Constify.
7817 * cris-tdep.c (cris_register_name, crisv32_register_name):
7818 Constify.
7819 * d-exp.y (yyerror): Constify.
7820 (struct token::oper): Constify.
7821 * d-lang.h (d_yyerror): Constify.
7822 * dbxread.c (struct header_file_location::name): Constify.
7823 (add_old_header_file, add_new_header_file, last_function_name)
7824 (dbx_next_symbol_text, add_bincl_to_list)
7825 (find_corresponding_bincl_psymtab, set_namestring)
7826 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
7827 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
7828 * defs.h (command_line_input, print_address_symbolic)
7829 (deprecated_readline_begin_hook): Constify.
7830 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
7831 Constify.
7832 * event-top.c (handle_line_of_input): Constify and add cast.
7833 * exceptions.c (catch_errors): Constify.
7834 * exceptions.h (catch_errors): Constify.
7835 * expprint.c (print_subexp_standard, op_string, op_name)
7836 (op_name_standard, dump_raw_expression, dump_raw_expression):
7837 * expression.h (op_name, op_string, dump_raw_expression):
7838 Constify.
7839 * f-exp.y (yyerror): Constify.
7840 (struct token::oper): Constify.
7841 (struct f77_boolean_val::name): Constify.
7842 * f-lang.c (f_word_break_characters): Constify.
7843 * f-lang.h (f_yyerror): Constify.
7844 * fork-child.c (fork_inferior): Add cast.
7845 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
7846 (new_variant): Constify.
7847 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
7848 * gdbarch.c: Regenerate.
7849 * gdbcore.h (set_gnutarget): Constify.
7850 * go-exp.y (yyerror): Constify.
7851 (token::oper): Constify.
7852 * go-lang.h (go_yyerror): Constify.
7853 * go32-nat.c (go32_sysinfo): Constify.
7854 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
7855 * guile/scm-cmd.c (cmdscm_function): Constify.
7856 * guile/scm-param.c (pascm_param_value): Constify.
7857 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
7858 (h8300sx_register_name): Constify.
7859 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
7860 Constify.
7861 * ia64-tdep.c (ia64_register_names): Constify.
7862 * infcmd.c (construct_inferior_arguments): Constify.
7863 (path_command, attach_post_wait): Constify.
7864 * language.c (show_range_command, show_case_command)
7865 (unk_lang_error): Constify.
7866 * language.h (language_defn::la_error)
7867 (language_defn::la_name_of_this): Constify.
7868 * linespec.c (decode_line_2): Constify.
7869 * linux-thread-db.c (thread_db_err_str): Constify.
7870 * lm32-tdep.c (lm32_register_name): Constify.
7871 * m2-exp.y (yyerror): Constify.
7872 * m2-lang.h (m2_yyerror): Constify.
7873 * m32r-tdep.c (m32r_register_names): Constify and make static.
7874 * m68hc11-tdep.c (m68hc11_register_names): Constify.
7875 * m88k-tdep.c (m88k_register_name): Constify.
7876 * macroexp.c (appendmem): Constify.
7877 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
7878 (upgrade_type, parse_external, parse_partial_symbols)
7879 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
7880 (new_symbol): Constify.
7881 * memattr.c (mem_info_command): Constify.
7882 * mep-tdep.c (register_name_from_keyword): Constify.
7883 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
7884 Constify.
7885 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
7886 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
7887 * mi/mi-main.c (captured_mi_execute_command): Constify and add
7888 cast.
7889 (mi_execute_async_cli_command): Constify.
7890 * mips-tdep.c (mips_register_name): Constify.
7891 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
7892 (am33_register_name, am33_2_register_name)
7893 * moxie-tdep.c (moxie_register_names): Constify.
7894 * nat/linux-osdata.c (osdata_type): Constify fields.
7895 * nto-tdep.c (nto_parse_redirection): Constify.
7896 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
7897 (lookup_child_selector): Constify.
7898 (objc_methcall::name): Constify.
7899 * objc-lang.h (lookup_objc_class, lookup_child_selector)
7900 (lookup_struct_typedef): Constify.
7901 * objfiles.c (pc_in_section): Constify.
7902 * objfiles.h (pc_in_section): Constify.
7903 * p-exp.y (struct token::oper): Constify.
7904 (yyerror): Constify.
7905 * p-lang.h (pascal_yyerror): Constify.
7906 * parser-defs.h (op_name_standard): Constify.
7907 (op_print::string): Constify.
7908 (exp_descriptor::op_name): Constify.
7909 * printcmd.c (print_address_symbolic): Constify.
7910 * psymtab.c (print_partial_symbols): Constify.
7911 * python/py-breakpoint.c (stop_func): Constify.
7912 (bppy_get_expression): Constify.
7913 * python/py-cmd.c (cmdpy_completer::name): Constify.
7914 (cmdpy_function): Constify.
7915 * python/py-event.c (evpy_add_attribute)
7916 (gdbpy_initialize_event_generic): Constify.
7917 * python/py-event.h (evpy_add_attribute)
7918 (gdbpy_initialize_event_generic): Constify.
7919 * python/py-evts.c (add_new_registry): Constify.
7920 * python/py-finishbreakpoint.c (outofscope_func): Constify.
7921 * python/py-framefilter.c (get_py_iter_from_func): Constify.
7922 * python/py-inferior.c (get_buffer): Add cast.
7923 * python/py-param.c (parm_constant::name): Constify.
7924 * python/py-unwind.c (fprint_frame_id): Constify.
7925 * python/python.c (gdbpy_parameter_value): Constify.
7926 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
7927 * remote.c (memory_packet_config::name): Constify.
7928 (show_packet_config_cmd, remote_write_bytes)
7929 (remote_buffer_add_string):
7930 * reverse.c (exec_reverse_once): Constify.
7931 * rs6000-tdep.c (variant::name, variant::description): Constify.
7932 * rust-exp.y (rustyyerror): Constify.
7933 * rust-lang.c (rust_op_name): Constify.
7934 * rust-lang.h (rustyyerror): Constify.
7935 * serial.h (serial_ops::name): Constify.
7936 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
7937 (sh_sh3e_register_name, sh_sh2e_register_name)
7938 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
7939 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
7940 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
7941 (sh_sh4al_dsp_register_name): Constify.
7942 * sh64-tdep.c (sh64_register_name): Constify.
7943 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
7944 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
7945 * stabsread.c (patch_block_stabs, read_type_number)
7946 (ref_map::stabs, ref_add, process_reference)
7947 (symbol_reference_defined, define_symbol, define_symbol)
7948 (error_type, read_type, read_member_functions, read_cpp_abbrev)
7949 (read_one_struct_field, read_struct_fields, read_baseclasses)
7950 (read_tilde_fields, read_struct_type, read_array_type)
7951 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
7952 (read_huge_number, read_range_type, read_args, common_block_start)
7953 (find_name_end): Constify.
7954 * stabsread.h (common_block_start, define_symbol)
7955 (process_one_symbol, symbol_reference_defined, ref_add):
7956 * symfile.c (get_section_index, add_symbol_file_command):
7957 * symfile.h (get_section_index): Constify.
7958 * target-descriptions.c (tdesc_type::name): Constify.
7959 (tdesc_free_type): Add cast.
7960 * target.c (find_default_run_target):
7961 (add_deprecated_target_alias, find_default_run_target)
7962 (target_announce_detach): Constify.
7963 (do_option): Constify.
7964 * target.h (add_deprecated_target_alias): Constify.
7965 * thread.c (print_thread_info_1): Constify.
7966 * top.c (deprecated_readline_begin_hook, command_line_input):
7967 Constify.
7968 (init_main): Add casts.
7969 * top.h (handle_line_of_input): Constify.
7970 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
7971 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
7972 (tfind_command): Rename to ...
7973 (tfind_command_1): ... this and constify.
7974 (tfind_command): New function.
7975 (tfind_end_command, tfind_start_command): Adjust.
7976 (encode_source_string): Constify.
7977 * tracepoint.h (encode_source_string): Constify.
7978 * tui/tui-data.c (tui_partial_win_by_name): Constify.
7979 * tui/tui-data.h (tui_partial_win_by_name): Constify.
7980 * tui/tui-source.c (tui_set_source_content_nil): Constify.
7981 * tui/tui-source.h (tui_set_source_content_nil): Constify.
7982 * tui/tui-win.c (parse_scrolling_args): Constify.
7983 * tui/tui-windata.c (tui_erase_data_content): Constify.
7984 * tui/tui-windata.h (tui_erase_data_content): Constify.
7985 * tui/tui-winsource.c (tui_erase_source_content): Constify.
7986 * tui/tui.c (tui_enable): Add cast.
7987 * utils.c (defaulted_query): Constify.
7988 (init_page_info): Add cast.
7989 (puts_debug, subset_compare): Constify.
7990 * utils.h (subset_compare): Constify.
7991 * varobj.c (varobj_format_string): Constify.
7992 * varobj.h (varobj_format_string): Constify.
7993 * vax-tdep.c (vax_register_name): Constify.
7994 * windows-nat.c (windows_detach): Constify.
7995 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
7996 * xml-support.c (gdb_xml_end_element): Constify.
7997 * xml-tdesc.c (tdesc_start_reg): Constify.
7998 * xstormy16-tdep.c (xstormy16_register_name): Constify.
7999 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
8000 * xtensa-tdep.h (xtensa_register_t::name): Constify.
8001
995816ba
PA
80022017-04-05 Pedro Alves <palves@redhat.com>
8003
8004 * proc-api.c (struct trans): Constify.
8005 (procfs_note): Constify.
8006 * proc-events.c (struct trans, syscall_table):
8007 * proc-flags.c (struct trans): Constify.
8008 * proc-utils.h (procfs_note): Constify.
8009 * proc-why.c (struct trans): Constify.
8010 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
8011 (procfs_detach): Constify.
8012 * sol-thread.c (struct string_map): Constify.
8013 (td_err_string, td_state_string): Constify.
8014
3e83a920
PA
80152017-04-05 Pedro Alves <palves@redhat.com>
8016
8017 * proc-api.c (procfs_filename): Don't initialize
8018 procfs_filename.
8019 (prepare_to_trace): Assume procfs_filename is non-NULL.
8020 (_initialize_proc_api): Give procfs_filename a default value here.
8021
63160a43
PA
80222017-04-05 Pedro Alves <palves@redhat.com>
8023
8024 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
8025 'cond_string' parameter.
8026 (extract_exception_regexp): Constify 'string' parameter.
8027 (catch_exception_command_1): Constify.
8028 * breakpoint.c (init_catchpoint)
8029 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
8030 parameter.
8031 (ep_parse_optional_if_clause, catch_fork_command_1)
8032 (catch_exec_command_1): Constify.
8033 * breakpoint.h (init_catchpoint): Constify 'cond_string'
8034 parameter.
8035 (ep_parse_optional_if_clause): Constify.
8036 * cli/cli-utils.c (remove_trailing_whitespace)
8037 (check_for_argument): Constify.
8038 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
8039 non-const overload.
8040 (check_for_argument): Likewise.
8041
9b2eba3d
PA
80422017-04-05 Pedro Alves <palves@redhat.com>
8043
8044 * event-top.c (command_line_handler): Add cast to execute_command
8045 call.
8046 * record-btrace.c (cmd_record_btrace_bts_start)
8047 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
8048 (cmd_record_btrace_start): Add cast to execute_command call.
8049 * record-full.c (record_full_goto_insn):
8050 * record.c (record_start, record_stop): Add cast to
8051 execute_command_to_string calls.
8052 (cmd_record_start): Add cast to execute_command calls.
8053
2adadf51
PA
80542017-04-05 Pedro Alves <palves@redhat.com>
8055
8056 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
8057 static inline function.
8058 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
8059 array and use gdb_PyArg_ParseTupleAndKeywords.
8060 * python/py-cmd.c (cmdpy_init): Likewise.
8061 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
8062 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
8063 (infpy_search_memory): Likewise.
8064 * python/py-objfile.c (objfpy_add_separate_debug_file)
8065 (gdbpy_lookup_objfile): Likewise.
8066 * python/py-symbol.c (gdbpy_lookup_symbol)
8067 (gdbpy_lookup_global_symbol): Likewise.
8068 * python/py-type.c (gdbpy_lookup_type): Likewise.
8069 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
8070 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
8071 Likewise.
8072
0d1f4ceb
PA
80732017-04-05 Pedro Alves <palves@redhat.com>
8074
8075 * python/python-internal.h (gdb_PyGetSetDef): New type.
8076 * python/py-block.c (block_object_getset)
8077 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
8078 * python/py-event.c (event_object_getset)
8079 (finish_breakpoint_object_getset): Likewise.
8080 * python/py-inferior.c (inferior_object_getset): Likewise.
8081 * python/py-infthread.c (thread_object_getset): Likewise.
8082 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
8083 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
8084 * python/py-objfile.c (objfile_getset): Likewise.
8085 * python/py-progspace.c (pspace_getset): Likewise.
8086 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
8087 Likewise.
8088 * python/py-record.c (recpy_record_getset): Likewise.
8089 * python/py-symbol.c (symbol_object_getset): Likewise.
8090 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
8091 Likewise.
8092 * python/py-type.c (type_object_getset, field_object_getset):
8093 Likewise.
8094 * python/py-value.c (value_object_getset): Likewise.
8095
4d759979
PA
80962017-04-05 Pedro Alves <palves@redhat.com>
8097
8098 * python/python-internal.h (gdb_PyObject_CallMethod)
8099 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
8100 New functions.
8101 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
8102 (PySys_GetObject, PySys_SetPath): New macros.
8103
fdf9e36f
PA
81042017-04-05 Pedro Alves <palves@redhat.com>
8105
8106 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
8107 info_osdata_command.
8108 * osdata.c (info_osdata_command): Rename to ...
8109 (info_osdata): ... this. Constify 'type' parameter, and remove
8110 the 'from_tty' parameter. Accept NULL TYPE.
8111 (info_osdata_command): New function.
8112 * osdata.h (info_osdata_command): Remove declaration.
8113 (info_osdata): New declaration.
8114
9f33b8b7
PA
81152017-04-05 Pedro Alves <palves@redhat.com>
8116
8117 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
8118 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
8119 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
8120 parameter.
8121 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
8122 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
8123 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
8124 parameter.
8125 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
8126 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
8127 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
8128 (mi_cmd_file_list_exec_source_files)
8129 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
8130 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
8131 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
8132 parameter.
8133 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
8134 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
8135 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
8136 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
8137 (mi_cmd_stack_info_frame): Constify 'command' parameter.
8138 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
8139 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
8140 'command' parameter.
8141 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
8142 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
8143 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
8144 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
8145 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
8146 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
8147 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
8148 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
8149 (mi_cmd_var_set_update_range): Constify 'command' parameter.
8150 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
8151 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
8152 parameter.
8153 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
8154 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
8155 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
8156 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
8157 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
8158 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
8159 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
8160 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
8161 (mi_cmd_data_list_changed_registers)
8162 (mi_cmd_data_write_register_values)
8163 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
8164 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
8165 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
8166 (mi_cmd_list_features, mi_cmd_list_target_features)
8167 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
8168 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
8169 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
8170 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
8171 (mi_cmd_trace_frame_collected): Constify 'command'
8172 parameter.
8173 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
8174 'command' parameter.
8175
67cb5b2d
PA
81762017-04-05 Pedro Alves <palves@redhat.com>
8177
8178 * ada-lang.c (ada_completer_word_break_characters): Now a const
8179 array.
8180 (ada_get_gdb_completer_word_break_characters): Constify.
8181 * completer.c (gdb_completer_command_word_break_characters)
8182 (gdb_completer_file_name_break_characters)
8183 (gdb_completer_quote_characters): Now const arrays.
8184 (get_gdb_completer_quote_characters): Constify.
8185 (set_rl_completer_word_break_characters): New function.
8186 (set_gdb_completion_word_break_characters)
8187 (complete_line_internal): Use it.
8188 * completer.h (get_gdb_completer_quote_characters): Constify.
8189 (set_rl_completer_word_break_characters): Declare.
8190 * f-lang.c (f_word_break_characters): Constify.
8191 * language.c (default_word_break_characters): Constify.
8192 * language.h (language_defn::la_word_break_characters): Constify.
8193 (default_word_break_characters): Constify.
8194 * top.c (init_main): Use set_rl_completer_word_break_characters.
8195
7a114964
PA
81962017-04-05 Pedro Alves <palves@redhat.com>
8197
8198 * aix-thread.c (aix_thread_pid_to_str)
8199 (aix_thread_extra_thread_info): Constify.
8200 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
8201 * bsd-uthread.c (bsd_uthread_extra_thread_info)
8202 (bsd_uthread_pid_to_str): Constify.
8203 * corelow.c (core_pid_to_str): Constify.
8204 * darwin-nat.c (darwin_pid_to_str): Constify.
8205 * fbsd-nat.c (fbsd_pid_to_str): Constify.
8206 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
8207 Constify.
8208 * gnu-nat.c (gnu_pid_to_str): Constify.
8209 * go32-nat.c (go32_pid_to_str): Constify.
8210 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
8211 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
8212 * inferior.c (inferior_pid_to_str): Constify.
8213 * linux-nat.c (linux_nat_pid_to_str): Constify.
8214 * linux-tdep.c (linux_core_pid_to_str): Constify.
8215 * linux-thread-db.c (thread_db_pid_to_str)
8216 (thread_db_extra_thread_info): Constify.
8217 * nto-tdep.c (nto_extra_thread_info): Constify.
8218 * nto-tdep.h (nto_extra_thread_info): Constify.
8219 * obsd-nat.c (obsd_pid_to_str): Constify.
8220 * procfs.c (procfs_pid_to_str): Constify.
8221 * ravenscar-thread.c (ravenscar_extra_thread_info)
8222 (ravenscar_pid_to_str): Constify.
8223 * remote-sim.c (gdbsim_pid_to_str): Constify.
8224 * remote.c (remote_threads_extra_info, remote_pid_to_str):
8225 Constify.
8226 * sol-thread.c (solaris_pid_to_str): Constify.
8227 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
8228 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
8229 * target.c (default_pid_to_str, target_pid_to_str)
8230 (normal_pid_to_str, default_pid_to_str): Constify.
8231 * target.h (target_ops::to_pid_to_str)
8232 (target_ops::to_extra_thread_info): Constify.
8233 (target_pid_to_str, normal_pid_to_str): Constify.
8234 * windows-nat.c (windows_pid_to_str): Constify.
8235 * gdbarch.sh (core_pid_to_str): Constify.
8236 * target-delegates.c: Regenerate.
8237 * gdbarch.h, gdbarch.c: Regenerate.
8238
69bbf465
PA
82392017-04-05 Pedro Alves <palves@redhat.com>
8240
8241 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
8242 the memory of the temporary warning_pre_print override.
8243 * utils.c (warning_pre_print): Constify.
8244 * utils.h (warning_pre_print): Constify.
8245
be47f9e8
PA
82462017-04-05 Pedro Alves <palves@redhat.com>
8247
8248 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
8249 (shell_command): New function.
8250 (make_command): Use std::string.
8251 (init_cli_cmds): Register shell_command instead of shell_escape.
8252
bde6261a
PA
82532017-04-05 Pedro Alves <palves@redhat.com>
8254
8255 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
8256 * tracepoint.c (default_collect): Don't initialize.
8257
b38ef47f
PA
82582017-04-05 Pedro Alves <palves@redhat.com>
8259
8260 * macroexp.c (macro_buffer::shared): Now a bool.
8261 (init_buffer): Update.
8262 (init_shared_buffer): Constify 'addr' parameter.
8263 (substitute_args, expand, macro_expand, macro_expand_next): Remove
8264 casts.
8265
f995bbe8
PA
82662017-04-05 Pedro Alves <palves@redhat.com>
8267
8268 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
8269 * disasm.c (set_disassembler_options): Constify local.
8270 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
8271
4a596fe2
SDJ
82722017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
8273
8274 PR gdb/21352
8275 * tracefile.c (tsave_command): Fix argument parsing for '-r'
8276 option.
8277
2cad08ea
YQ
82782017-04-05 Yao Qi <yao.qi@linaro.org>
8279
8280 * frame.c (frame_unwind_register_unsigned): Call
8281 frame_unwind_register_value.
8282
55a98976
YQ
82832017-04-05 Yao Qi <yao.qi@linaro.org>
8284
8285 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
8286 Use gdb_test_multiple, and don't match anchor.
8287
4ac40124
PA
82882017-04-05 Pedro Alves <palves@redhat.com>
8289
8290 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
8291 (Write After Approval): Remove Simon Marchi.
8292
c053b654
PA
82932017-04-05 Pedro Alves <palves@redhat.com>
8294
8295 * common/gdb_optional.h (optional::optional): Make constexpr and
8296 initialize m_dummy.
8297
4c7bf4f9
JB
82982017-04-04 John Baldwin <jhb@FreeBSD.org>
8299
8300 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
8301 (amd64fbsd_jmp_buf_reg_offset): Remove.
8302 (amd64fbsd_supply_uthread): Remove function.
8303 (amd64fbsd_collect_uthread): Remove function.
8304 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
8305 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
8306 (x86_64-*-freebsd*): Remove bsd-uthread.o.
8307 (fbsd-nat.c): Update comment.
8308 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
8309 (i386fbsd_jmp_buf_reg_offset): Remove.
8310 (i386fbsd_supply_uthread): Remove function.
8311 (i386fbsd_collect_uthread): Remove function.
8312 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
8313
1e1a8bef
JB
83142017-04-04 John Baldwin <jhb@FreeBSD.org>
8315
8316 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
8317 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
8318 * NEWS: Mention that support for FreeBSD/alpha was removed.
8319 * alpha-fbsd-tdep.c: Delete file.
8320 * config/alpha/fbsd.mh: Delete file.
8321 * configure.host: Delete alpha*-*-freebsd* and
8322 alpha*-*-kfreebsd*-gnu.
8323 * configure.tgt: Delete alpha*-*-freebsd* and
8324 alpha*-*-kfreebsd*-gnu.
8325
49907934
JB
83262017-04-04 John Baldwin <jhb@FreeBSD.org>
8327
8328 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
8329 amd64bsd_store_inferior_registers): Use ptid from regcache.
8330
6f77053d
PA
83312017-04-04 Pedro Alves <palves@redhat.com>
8332
8333 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
8334 data fields, make them private and add "m_" prefixes.
8335 (lnp_state_machine::lnp_state_machine): New ctor.
8336 (record_line, check_line_address, handle_set_discriminator)
8337 (handle_set_address, handle_advance_pc, handle_special_opcode)
8338 (handle_advance_line, handle_set_file, handle_negate_stmt)
8339 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
8340 (end_sequence, advance_line): New methods.
8341 (m_gdbarch, m_record_lines_p): New fields.
8342 (lnp_reader_state): Delete.
8343 (dwarf_record_line): Rename to ...
8344 (lnp_state_machine::record_line): ... adjust.
8345 (init_lnp_state_machine): Delete.
8346 (lnp_state_machine::lnp_state_machine): New.
8347 (check_line_address): Rename to ...
8348 (lnp_state_machine::check_line_address): This.
8349 (dwarf_decode_lines_1): Remove reference to "reader_state".
8350 Adjust lnp_state_machine having a non-default ctor. Use bool.
8351 State machine internal state manipulation moved to
8352 lnp_state_machine methods.
8353
9c541725
PA
83542017-04-04 Pedro Alves <palves@redhat.com>
8355
8356 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
8357 unittests/offset-type-selftests.c.
8358 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
8359 * common/offset-type.h: New file.
8360 * common/preprocessor.h: New file.
8361 * common/traits.h: New file.
8362 * common/valid-expr.h: New file.
8363 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
8364 sect_offset and cu_offset strong typedefs throughout.
8365 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
8366 typedefs throughout.
8367 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
8368 sect_offset and cu_offset strong typedefs throughout.
8369 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
8370 typedefs throughout.
8371 * gdbtypes.h: Include "common/offset-type.h".
8372 (cu_offset): Now an offset type (strong typedef) instead of a
8373 struct.
8374 (sect_offset): Likewise.
8375 (union call_site_parameter_u): Rename "param_offset" field to
8376 "param_cu_off".
8377 * unittests/offset-type-selftests.c: New file.
8378
ecfb656c
PA
83792017-04-04 Pedro Alves <palves@redhat.com>
8380
8381 * common/underlying.h: New file.
8382 * dwarf2read.c: Include "common/gdb_optional.h" and
8383 "common/underlying.h".
8384 (dir_index, file_name_index): New types.
8385 (file_entry): Use them.
8386 (file_entry::include): Use to_underlying.
8387 (line_header::add_file_name): Use dir_index.
8388 (read_formatted_entries): Use gdb::optional. Read form before
8389 writting to file_entry.
8390 (dwarf_decode_line_header): Use dir_index.
8391 (lnp_state_machine::current_file): Use to_underlying.
8392 (lnp_state_machine::file): Change type to file_name_index.
8393 (dwarf_record_line): Use to_underlying.
8394 (init_lnp_state_machine): Use file_name_index.
8395 (dwarf_decode_lines_1): Use dir_index and file_name_index.
8396
d194f1fe
PA
83972017-04-04 Pedro Alves <palves@redhat.com>
8398
8399 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
8400 operator bool, has_value and get methods.
8401
fff8551c
PA
84022017-04-04 Pedro Alves <palves@redhat.com>
8403
8404 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
8405 fields.
8406 (line_header): Initialize all data fields. Change type of
8407 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
8408 Change type of include_dirs to std::vector<const char *>. Remove
8409 num_include_dirs, include_dirs_size. Change type of file_names to
8410 std::vector<file_entry>. Remove num_file_names, file_names_size.
8411 (line_header::line_header): New.
8412 (line_header::add_include_dir, line_header::add_file_name): New
8413 methods.
8414 (line_header::include_dir_at): Remove NULL check.
8415 (line_header::file_name_at): Add const overload.
8416 (line_header_up): New unique_ptr typedef.
8417 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
8418 std::vector. Remove free_line_header call.
8419 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
8420 free_line_header call.
8421 (free_cu_line_header): Delete.
8422 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
8423 (setup_type_unit_groups): Use line_header_up instead of cleanups.
8424 Adjust to use std::vector.
8425 (free_line_header): Delete.
8426 (free_line_header_voidp): Use delete.
8427 (add_include_dir): Replace with ...
8428 (line_header::add_include_dir): ... this method. Use std::vector.
8429 (add_file_name): Replace with ...
8430 (line_header::add_file_name): ... this method. Use std::vector.
8431 (add_include_dir_stub): Delete.
8432 (read_formatted_entries): Remove memset.
8433 (dwarf_decode_line_header): Return a line_header_up instead of a
8434 raw pointer. Remove cleanup handling. Pass lambdas to
8435 read_formatted_entries. Adjust to use line_header methods.
8436 (dwarf_decode_lines_1): Adjust to use line_header methods.
8437 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
8438 use std::vector.
8439
d62a8ae2
SM
84402017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
8441
8442 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
8443 instead of struct ptid.
8444
db3a1dc7
AH
84452017-05-04 Alan Hayward <alan.hayward@arm.com>
8446
8447 * frame.c (get_frame_register_bytes): Unwind using value.
8448 (put_frame_register_bytes): Likewise.
8449
b1b45502
IB
84502017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
8451
8452 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
8453 aggregate-like.
8454
ec13808e
JK
84552017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8456
8457 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
8458
12316564
YQ
84592017-03-29 Yao Qi <yao.qi@linaro.org>
8460
8461 * gdbthread.h (struct thread_info): Declare constructor and
8462 destructor. Add some in-class member initializers.
8463 * thread.c (free_thread): Remove.
8464 (init_thread_list): Call delete instead of free_thread.
8465 (new_thread): Call thread_info constructor.
8466 (thread_info::thread_info): New function.
8467 (thread_info::~thread_info): New function.
8468 (delete_thread_1): Call delete instead of free_thread.
8469 (make_cleanup_restore_current_thread): Move tp and frame to
8470 inner block.
8471
fe5f7374
AK
84722017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
8473
8474 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
8475 (arc_skip_prologue): Likewise.
8476 (arc_make_frame_cache): Likewise.
8477 (arc_pv_get_operand): New function.
8478 (arc_is_in_prologue): Likewise.
8479 (arc_analyze_prologue): Likewise.
8480 (arc_print_frame_cache): Likewise.
8481 (MAX_PROLOGUE_LENGTH): New constant.
8482
eea78757
AK
84832017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
8484
8485 * configure.tgt: Add arc-insn.o.
8486 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
8487 (dump_arc_instruction_command): New function.
8488 (arc_fprintf_disasm): Likewise.
8489 (arc_disassemble_info): Likewise.
8490 (arc_insn_get_operand_value): Likewise.
8491 (arc_insn_get_operand_value_signed): Likewise.
8492 (arc_insn_get_memory_base_reg): Likewise.
8493 (arc_insn_get_memory_offset): Likewise.
8494 (arc_insn_get_branch_target): Likewise.
8495 (arc_insn_dump): Likewise.
8496 (arc_insn_get_linear_next_pc): Likewise.
8497 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
8498 (arc_disassemble_info): Likewise.
8499 (arc_insn_get_branch_target): Likewise.
8500 (arc_insn_get_linear_next_pc): Likewise.
8501 * NEWS: Mention new "maint print arc arc-instruction".
8502
3be78afd
AK
85032017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
8504
8505 * arc-tdep (maintenance_print_arc_list): New variable.
8506 (maintenance_print_arc_command): New function.
8507
296ec4fa
AK
85082017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
8509
8510 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
8511 Add "limm" and "reserved".
8512 (arc_cannot_fetch_register, arc_cannot_store_register): Add
8513 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
8514 * arc-tdep.h (arc_regnum): Likewise.
8515
f74f865e
MF
85162017-03-27 Max Filippov <jcmvbkbc@gmail.com>
8517
8518 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
8519 for THREADPTR register.
8520 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
8521 register.
8522 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
8523 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
8524 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
8525
0d0bf81a
MF
85262017-03-27 Max Filippov <jcmvbkbc@gmail.com>
8527
8528 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
8529 registers above gdbarch_num_regs (gdbarch) as privileged in
8530 call0 ABI.
8531
0ce4291e
MF
85322017-03-27 Max Filippov <jcmvbkbc@gmail.com>
8533
8534 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
8535 for a single specified register or for all registers in
8536 a0_base..a0_base + C0_NREGS range.
8537 (supply_gregset_reg): Call regcache_raw_supply for a single
8538 specified register or for all registers in a0_base..a0_base +
8539 C0_NREGS range.
8540
c56054f9
MF
85412017-03-27 Max Filippov <jcmvbkbc@gmail.com>
8542
8543 * arch/xtensa.h (C0_NREGS): Add definition.
8544 * xtensa-tdep.c (C0_NREGS): Remove definition.
8545
a4398628
MF
85462017-03-27 Max Filippov <jcmvbkbc@gmail.com>
8547
8548 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
8549 Drop xtensa_default_isa initialization.
8550 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
8551
8c43009f
PA
85522017-03-27 Pedro Alves <palves@redhat.com>
8553
8554 * dwarf2read.c (file_entry) <dir_index>: Add comment.
8555 (file_entry::include_dir): New method.
8556 (line_header::include_dir_at, line_header::file_name_at): New
8557 methods.
8558 (setup_type_unit_groups, setup_type_unit_groups)
8559 (psymtab_include_file_name): Simplify using the new methods.
8560 (lnp_state_machine) <the_line_header>: New field.
8561 <file>: Add comment.
8562 (lnp_state_machine::current_file): New method.
8563 (dwarf_record_line): Simplify using the new methods.
8564 (init_lnp_state_machine): Initialize the "the_line_header" field.
8565 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
8566 Simplify using the new methods.
8567
a7e80b9e
PA
85682017-03-27 Pedro Alves <palves@redhat.com>
8569
8570 * cp-name-parser.y (make_empty): Delete.
8571 (demangler_special, nested_name, ptr_operator, array_indicator)
8572 (direct_declarator, declarator_1): Use fill_comp instead of
8573 make_empty.
8574
21047726
PA
85752017-03-27 Pedro Alves <palves@redhat.com>
8576
8577 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
8578 to ATTRIBUTE_PRINTF.
8579 * solib-target.c (library_list_start_list): Print "string" not
8580 "version".
8581 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
8582 gdb_xml_error call.
8583
d721ba37
PA
85842017-03-27 Pedro Alves <palves@redhat.com>
8585
8586 * dwarf2read.c (struct file_and_directory): New.
8587 (dwarf2_get_dwz_file): Adjust to use std::string.
8588 (dw2_get_file_names_reader): Adjust to use file_and_directory.
8589 (find_file_and_directory): Adjust to return a file_and_directory
8590 object.
8591 (read_file_scope): Adjust to use file_and_directory. Remove
8592 make_cleanup/do_cleanups calls.
8593 (open_and_init_dwp_file): Adjust to use std::string. Remove
8594 make_cleanup/do_cleanups calls.
8595 * python/python.c (do_start_initialization): Adjust to ldirname
8596 returning a std::string.
8597 * utils.c (ldirname): Now returns a std::string.
8598 * utils.h (ldirname): Change return type to std::string.
8599 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
8600 returning a std::string.
8601 * xml-tdesc.c (file_read_description_xml): Likewise.
8602
ed771251
AH
86032017-03-24 Alan Hayward <alan.hayward@arm.com>
8604
8605 * regcache.c (regcache_debug_print_register): New function.
8606 * regcache.h (regcache_debug_print_register): New declaration.
8607 * target.c (debug_print_register): Remove.
8608 (target_fetch_registers): Call regcache_debug_print_register.
8609 (target_store_registers): Likewise.
8610
568c1b9f
PB
86112017-03-24 Pádraig Brady <pbrady@fb.com>
8612
8613 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
8614 reference beyond the 'lh->include_dirs' array before accessing to
8615 it.
8616 (psymtab_include_file_name): Likewise.
8617 (dwarf_decode_lines_1): Likewise.
8618 (dwarf_decode_lines): Likewise.
8619 (file_file_name): Likewise.
8620
3e00d44f
SM
86212017-03-23 Simon Marchi <simon.marchi@ericsson.com>
8622
8623 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
8624 inferior_ptid.
8625 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
8626 ps_lsetfpregs): Likewise.
8627 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
8628 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
8629 ps_lsetfpregs): Likewise.
8630 * target.c (target_fetch_registers, target_store_registers):
8631 Remove asserts.
8632
077ae656
AH
86332017-03-23 Alan Hayward <alan.hayward@arm.com>
8634
8635 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
8636
1e2b521d
YQ
86372017-03-23 Yao Qi <yao.qi@linaro.org>
8638
8639 * aarch64-tdep.c (aarch64_process_record_test): Declare.
8640 (_initialize_aarch64_tdep): Register it.
8641 (aarch64_record_load_store): Handle PRFM instruction.
8642 (aarch64_process_record_test): New function.
8643
33877125
YQ
86442017-03-23 Yao Qi <yao.qi@linaro.org>
8645
8646 * aarch64-tdep.c (aarch64_record_load_store): Fix code
8647 indentation.
8648
a0eef940
YQ
86492017-03-23 Yao Qi <yao.qi@linaro.org>
8650
8651 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
8652
3f2a3564
PR
86532017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
8654
8655 python/python.c (do_start_initialization): Fix memory leak.
8656
b67aeab0
SM
86572017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
8658
8659 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
8660 using get_ptrace_pid.
8661 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
8662 inferior_ptid.
8663 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
8664 inferior_ptid instead of pid.
8665
ffdbe864
YQ
86662017-03-22 Yao Qi <yao.qi@linaro.org>
8667
8668 * aarch64-tdep.c: Wrap locally used classes in anonymous
8669 namespace.
8670 * arm-tdep.c: Likewise.
8671 * linespec.c: Likewise.
8672 * ui-out.c: Likewise.
8673
9d736fbf
JG
86742017-03-22 Jonah Graham <jonah@kichwacoders.com>
8675
8676 PR gdb/19637
8677 * python/lib/gdb/printer/bound_registers.py: Import sys.
8678
3de88e9a
SM
86792017-03-21 Simon Marchi <simon.marchi@ericsson.com>
8680
8681 * windows-nat.c (do_windows_fetch_inferior_registers): Add
8682 windows_thread_info parameter and use it instead of
8683 current_thread.
8684 (windows_fetch_inferior_registers): Don't set current_thread,
8685 pass the thread to do_windows_fetch_inferior_registers. Use
8686 ptid from regcache instead of inferior_ptid.
8687 (do_windows_store_inferior_registers): Add windows_thread_info
8688 parameter and use it instead of current_thread.
8689 (windows_store_inferior_registers): Don't set current_thread,
8690 pass the thread to do_windows_store_inferior_registers. Use
8691 ptid from regcache instead of inferior_ptid.
8692
0e7b8f61
SM
86932017-03-21 Simon Marchi <simon.marchi@ericsson.com>
8694
8695 * ser-mingw.c (ser_windows_raw): Remove reference to
8696 struct serial::current_timeout.
8697
5badf10a
IR
86982017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
8699
8700 PR tdep/20928
8701 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
8702 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
8703 (sparc64_fsr_type): Fix %fsr decoding.
8704
cee59b3f
TW
87052017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
8706
8707 * python/py-record-btrace.c (btpy_insn_data): Change return type
8708 for Python 2.
8709
639a9038
SM
87102017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
8711
8712 * spu-linux-nat.c (spu_fetch_inferior_registers,
8713 spu_store_inferior_registers): Use ptid from regcache, set and
8714 restore inferior_ptid.
8715 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
8716 Likewise.
8717
bcc0c096
SM
87182017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
8719
8720 * i386-linux-nat.c (fetch_register, store_register,
8721 i386_linux_fetch_inferior_registers,
8722 i386_linux_store_inferior_registers): Use ptid from regcache.
8723 * ia64-linux-nat.c (ia64_linux_fetch_register,
8724 ia64_linux_store_register): Likewise.
8725 * inf-ptrace.c (inf_ptrace_fetch_register,
8726 inf_ptrace_store_register): Likewise.
8727 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
8728 m32r_linux_store_inferior_registers): Likewise.
8729 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
8730 m68kbsd_store_inferior_registers): Likewise.
8731 * m68k-linux-nat.c (fetch_register, store_register,
8732 m68k_linux_fetch_inferior_registers,
8733 m68k_linux_store_inferior_registers): Likewise.
8734 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
8735 m88kbsd_store_inferior_registers): Likewise.
8736 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
8737 mips_fbsd_store_inferior_registers): Likewise.
8738 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
8739 mips64_linux_regsets_store_registers): Likewise.
8740 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
8741 mipsnbsd_store_inferior_registers): Likewise.
8742 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
8743 mips64obsd_store_inferior_registers): Likewise.
8744 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
8745 Likewise.
8746 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
8747 ppcfbsd_store_inferior_registers): Likewise.
8748 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
8749 ppc_linux_store_inferior_registers): Likewise.
8750 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
8751 ppcnbsd_store_inferior_registers): Likewise.
8752 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
8753 ppcobsd_store_registers): Likewise.
8754 * procfs.c (procfs_fetch_registers, procfs_store_registers):
8755 Likewise.
8756 * ravenscar-thread.c (ravenscar_fetch_registers,
8757 ravenscar_store_registers, ravenscar_prepare_to_store):
8758 Likewise.
8759 * record-btrace.c (record_btrace_fetch_registers,
8760 record_btrace_store_registers, record_btrace_prepare_to_store):
8761 Likewise.
8762 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
8763 Lookup inferior using ptid from regcache, instead of
8764 current_inferior.
8765 * remote.c (remote_fetch_registers, remote_store_registers): Use
8766 ptid from regcache.
8767 * rs6000-nat.c (fetch_register, store_register): Likewise.
8768 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
8769 s390_linux_store_inferior_registers): Likewise.
8770 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
8771 shnbsd_store_inferior_registers): Likewise.
8772 * sol-thread.c (sol_thread_fetch_registers,
8773 sol_thread_store_registers): Likewise.
8774 * sparc-nat.c (sparc_fetch_inferior_registers,
8775 sparc_store_inferior_registers): Likewise.
8776 * tilegx-linux-nat.c (fetch_inferior_registers,
8777 store_inferior_registers): Likewise.
8778 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
8779 vaxbsd_store_inferior_registers): Likewise.
8780 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
8781 store_xtregs): Likewise.
8782
c0f55cc6
AV
87832017-03-20 Artemiy Volkov <artemiyv@acm.org>
8784
8785 PR gdb/14441
8786 * NEWS: Mention support for rvalue references in GDB and python.
8787 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
8788 supports both lvalue and rvalue references.
8789
15c0a2a9
AV
87902017-03-20 Artemiy Volkov <artemiyv@acm.org>
8791
8792 PR gdb/14441
8793 * gdbtypes.c (rank_one_type): Implement overloading
8794 resolution rules regarding rvalue references.
8795
aa006118
AV
87962017-03-20 Artemiy Volkov <artemiyv@acm.org>
8797
8798 PR gdb/14441
8799 * aarch64-tdep.c (aarch64_type_align)
8800 (aarch64_extract_return_value, aarch64_store_return_value): Change
8801 lvalue reference type checks to general reference type checks.
8802 * amd64-tdep.c (amd64_classify): Likewise.
8803 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
8804 Likewise.
8805 * arm-tdep.c (arm_type_align, arm_extract_return_value)
8806 (arm_store_return_value): Likewise.
8807 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
8808 * c-typeprint.c (c_print_type): Likewise.
8809 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
8810 (cplus_number_of_children, cplus_describe_child): Likewise.
8811 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
8812 * completer.c (expression_completer): Likewise.
8813 * cp-support.c (make_symbol_overload_list_adl_namespace):
8814 Likewise.
8815 * darwin-nat-info.c (info_mach_region_command): Likewise.
8816 * dwarf2loc.c (entry_data_value_coerce_ref)
8817 (value_of_dwarf_reg_entry): Likewise.
8818 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
8819 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
8820 Likewise.
8821 * findvar.c (extract_typed_address, store_typed_address):
8822 Likewise.
8823 * gdbtypes.c (rank_one_type): Likewise.
8824 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
8825 * infcall.c (value_arg_coerce): Likewise.
8826 * language.c (pointer_type): Likewise.
8827 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
8828 Likewise.
8829 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
8830 * mn10300-tdep.c (mn10300_type_align): Likewise.
8831 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
8832 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
8833 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
8834 Likewise.
8835 * printcmd.c (print_formatted, x_command): Likewise.
8836 * python/py-type.c (typy_get_composite, typy_template_argument):
8837 Likewise.
8838 * python/py-value.c (valpy_referenced_value)
8839 (valpy_get_dynamic_type, value_has_field): Likewise.
8840 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
8841 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
8842 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
8843 * spu-tdep.c (spu_scalar_value_p): Likewise.
8844 * symtab.c (lookup_symbol_aux): Likewise.
8845 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
8846 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
8847 Likewise.
8848 * valops.c (value_cast_pointers, value_cast)
8849 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
8850 (value_struct_elt, value_struct_elt_bitpos)
8851 (value_find_oload_method_list, find_overload_match)
8852 (value_rtti_indirect_type): Likewise.
8853 * valprint.c (val_print_scalar_type_p, generic_val_print):
8854 Likewise.
8855 * value.c (value_actual_type, value_as_address, unpack_long)
8856 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
8857 (coerce_ref): Likewise.
8858 * varobj.c (varobj_get_value_type): Likewise.
8859
3fcf899d
AV
88602017-03-20 Artemiy Volkov <artemiyv@acm.org>
8861
8862 PR gdb/14441
8863 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
8864 table of constants.
8865 * python/lib/gdb/command/explore.py: Support exploring values
8866 of rvalue reference types.
8867 * python/lib/gdb/types.py: Implement get_basic_type() for
8868 rvalue reference types.
8869 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
8870 constant.
8871 * python/py-value.c (valpy_getitem): Add an rvalue reference
8872 check.
8873 (valpy_reference_value): Add new parameter "refcode".
8874 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
8875 New wrappers for valpy_reference_value().
8876 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
8877 (gdbpy_invoke_xmethod): Likewise.
8878
4297a3f0
AV
88792017-03-20 Artemiy Volkov <artemiyv@acm.org>
8880
8881 PR gdb/14441
8882 * dwarf2read.c (process_die, read_type_die_1): Handle the
8883 DW_TAG_rvalue_reference_type DIE.
8884 (read_tag_reference_type): Add new parameter "refcode".
8885
e1cb3213
AV
88862017-03-20 Artemiy Volkov <artemiyv@acm.org>
8887
8888 PR gdb/14441
8889 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
8890 (c_type_print_modifier, c_type_print_varspec_suffix)
8891 (c_type_print_base): Support printing rvalue reference types.
8892 * c-valprint.c (c_val_print, c_value_print): Support printing
8893 rvalue reference values.
8894
e4347c89
AV
88952017-03-20 Artemiy Volkov <artemiyv@acm.org>
8896
8897 PR gdb/14441
8898 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
8899 typename.
8900 * cp-support.c (replace_typedefs): Handle
8901 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
8902 * python/py-type.c (typy_lookup_type): Likewise.
8903
53cc15f5
AV
89042017-03-20 Artemiy Volkov <artemiyv@acm.org>
8905
8906 PR gdb/14441
8907 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
8908 * parse.c (insert_type): Change assert statement.
8909 (follow_types): Handle rvalue reference types.
8910 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
8911 constant.
8912
a65cfae5
AV
89132017-03-20 Artemiy Volkov <artemiyv@acm.org>
8914
8915 PR gdb/14441
8916 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
8917 value_ref() interface.
8918 * c-valprint.c (c_value_print): Likewise.
8919 * infcall.c (value_arg_coerce): Likewise.
8920 * python/py-value.c (valpy_reference_value): Likewise.
8921 * valops.c (value_cast, value_reinterpret_cast)
8922 (value_dynamic_cast, typecmp): Likewise.
8923 (value_ref): Parameterize by kind of return value reference type.
8924 * value.h (value_ref): Add new parameter "refcode".
8925
3b224330
AV
89262017-03-20 Artemiy Volkov <artemiyv@acm.org>
8927
8928 PR gdb/14441
8929 * dwarf2read.c (read_tag_reference_type): Use
8930 lookup_lvalue_reference_type() instead of lookup_reference_type().
8931 * eval.c (evaluate_subexp_standard): Likewise.
8932 * f-exp.y: Likewise.
8933 * gdbtypes.c (make_reference_type, lookup_reference_type):
8934 Generalize with rvalue reference types.
8935 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
8936 convenience wrappers for lookup_reference_type().
8937 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
8938 reference kind parameter.
8939 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
8940 wrappers for lookup_reference_type().
8941 * guile/scm-type.c (gdbscm_type_reference): Use
8942 lookup_lvalue_reference_type() instead of lookup_reference_type().
8943 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
8944 * parse.c (follow_types): Likewise.
8945 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
8946 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
8947 Likewise.
8948 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
8949 (gdbpy_invoke_xmethod): Likewise.
8950 * stabsread.c: Provide extra argument to make_reference_type()
8951 call.
8952 * valops.c (value_ref, value_rtti_indirect_type): Use
8953 lookup_lvalue_reference_type() instead of lookup_reference_type().
8954
f9aeb8d4
AV
89552017-03-20 Artemiy Volkov <artemiyv@acm.org>
8956
8957 PR gdb/14441
8958 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
8959 (TYPE_IS_REFERENCE): New macro.
8960 (struct type): Add rvalue_reference_type field.
8961 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
8962
51457a05
MAL
89632017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
8964
8965 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
8966 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
8967 New function definition.
8968 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
8969 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
8970 New function declaration.
8971 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
8972 * mi/mi-interp.h: New file.
8973 * solib.c (info_sharedlibrary_command): Replace for loop with
8974 ALL_SO_LIBS macro
8975 * solib.h (update_solib_list): New function declaration.
8976 (so_list_head): Move macro.
8977 * solist.h (ALL_SO_LIBS): New macro.
8978
e696b3ad
MAL
89792017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
8980
8981 * infcmd.c (post_create_inferior): Remove unused argument in
8982 call to solib_add.
8983 * remote.c (remote_start_remote): Likewise.
8984 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
8985 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
8986 (enable_break): Likewise.
8987 * solib.c (update_solib_list): Remove unused target argument
8988 and its documentation.
8989 (solib_add): Remove unused target argument. Remove unused
8990 argument in call to update_solib_list.
8991 (info_sharedlibrary_command): Remove unused argument in call
8992 to update_solib_list.
8993 (sharedlibrary_command): Remove unused argument in call to
8994 solib_add.
8995 (handle_solib_event): Likewise.
8996 (reload_shared_libraries): Likewise.
8997 * solib.h (solib_add): Remove unused target argument.
8998
dcb84eda
AA
89992017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
9000
9001 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
9002 (s390_displaced_step_fixup): Cover relative branches with the
9003 default fixup handling. This fixes lack of support for some
9004 relative branch instructions.
9005
d9cb6cdc
SM
90062017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9007
9008 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
9009 ptid from regcache.
9010
1afaf9f4
SM
90112017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9012
9013 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
9014 i386_darwin_store_inferior_registers): Use ptid from regcache.
9015
aac12e24
SM
90162017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9017
9018 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
9019 i386bsd_store_inferior_registers): Use ptid from regcache.
9020
bbe1eef1
SM
90212017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9022
9023 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
9024 hppaobsd_store_registers): Use ptid from regcache.
9025
10799020
SM
90262017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9027
9028 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
9029 hppanbsd_store_registers): Use ptid from regcache.
9030
00204cf7
SM
90312017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9032
9033 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
9034 from regcache. Use get_ptrace_pid.
9035
11a33714
SM
90362017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9037
9038 * corelow.c (get_core_register_section): Use ptid from regcache,
9039 update doc.
9040
317cd492
SM
90412017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9042
9043 * bsd-uthread.c (bsd_uthread_fetch_registers,
9044 bsd_uthread_store_registers): Use ptid from regcache, set and
9045 restore inferior_ptid.
9046
9ac8a7c2
SM
90472017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9048
9049 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
9050 fetch_fp_regs, store_register, store_regs, store_fp_register,
9051 store_fp_regs): Use ptid from regcache.
9052
4ac4bb6a
SM
90532017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
9054
9055 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
9056 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
9057 store_vfp_regs): Use ptid from regcache.
9058
9bcbdca8
PA
90592017-03-17 Pedro Alves <palves@redhat.com>
9060
9061 PR remote/21188
9062 * ser-base.c (ser_base_wait_for): Add comment.
9063 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
9064 version.
9065 * ser-unix.c (hardwire_raw): Remove reference to
9066 scb->current_timeout.
9067 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
9068 (hardwire_ops): Install ser_base_readchar instead of
9069 hardwire_readchar.
9070 * serial.h (struct serial) <current_timeout, timeout_remaining>:
9071 Remove fields.
9072
7503099f
JG
90732017-03-17 Jonah Graham <jonah@kichwacoders.com>
9074
9075 PR gdb/19637
9076 * python/lib/gdb/printer/bound_registers.py: Add support for
9077 Python 3.
9078
7942e96e
AA
90792017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
9080
9081 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
9082 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
9083 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
9084 byte_offset to subobj_byte_offset. Fix the handling of
9085 DWARF_VALUE_STACK on big-endian targets when coming via an
9086 implicit pointer.
9087 (dwarf2_evaluate_loc_desc): Adjust call to
9088 dwarf2_evaluate_loc_desc_full.
9089 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
9090 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
9091
ba14f379
YQ
90922017-03-16 Yao Qi <yao.qi@linaro.org>
9093
9094 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
9095 and REVSH instructions.
9096
b121eeb9
YQ
90972017-03-16 Yao Qi <yao.qi@linaro.org>
9098
9099 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
9100 (arm_record_test): Declare.
9101 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
9102 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
9103 align with the manual.
9104 (thumb_record_misc): Adjust the code order to align with the
9105 manual.
9106 (thumb2_record_decode_insn_handler): Fix instruction matching.
9107 (instruction_reader_thumb): New class.
9108 (arm_record_test): New function.
9109
728a7913
YQ
91102017-03-16 Yao Qi <yao.qi@linaro.org>
9111
9112 * arm-tdep.c (abstract_memory_reader): New class.
9113 (instruction_reader): New class.
9114 (extract_arm_insn): Add argument 'reader'. Callers updated.
9115 (decode_insn): Likewise.
9116
34b43320
DE
91172017-03-16 Doug Evans <dje@google.com>
9118
a7c0469f
DE
9119 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
9120 member. Change type of TYPE member to SCM. All uses updated.
9121 (lsscm_make_lazy_string_smob): Add assert.
9122 (lsscm_make_lazy_string): Flag bad length values.
9123 (lsscm_elt_type): New function.
9124 (gdbscm_lazy_string_to_value): Rewrite to use
9125 lsscm_safe_lazy_string_to_value.
9126 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
9127 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
9128 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
9129 in incoming type.
9130 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
9131 * guile/scm-type.c (tyscm_scm_to_type): New function.
9132
91332017-03-15 Doug Evans <dje@google.com>
9134
34b43320
DE
9135 PR python/17728, python/18439, python/18779
9136 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
9137 member. Change type of TYPE member to PyObject *. All uses updated.
9138 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
9139 (gdbpy_create_lazy_string_object): Flag bad length values.
9140 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
9141 Handle typedefs in incoming type.
9142 (stpy_lazy_string_elt_type): New function.
9143 (gdbpy_extract_lazy_string): Call it.
9144 * python/py-value.c (valpy_lazy_string): Flag bad length values.
9145 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
9146 typedefs in incoming type.
9147
a3a5fecc
DE
91482017-03-16 Doug Evans <dje@google.com>
9149
9150 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
9151 * guile/scm-type.c (tyscm_scm_to_type): New function.
9152
28f1c605
JW
91532017-03-16 Jiong Wang <jiong.wang@arm.com>
9154
9155 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
9156 "ULONGEST" for "skip".
9157
87c336f6
AA
91582017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
9159
9160 PR gdb/21220
9161 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
9162 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
9163 (inf_ptrace_peek_poke): ...here. New function. Now also loop
9164 over ptrace peek/poke until end of buffer or error.
9165
cf81cf60
SM
91662017-03-14 Simon Marchi <simon.marchi@ericsson.com>
9167
9168 * parse.c (length_of_subexp): Make static.
9169 * parser-defs.h (length_of_subexp): Remove.
9170
a379284a
AA
91712017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
9172
9173 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
9174 as well.
9175
8a6200ba
PA
91762017-03-14 Pedro Alves <palves@redhat.com>
9177
9178 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
9179 (main): Use std::unique_ptr. Remove calls to
9180 cp_demangled_name_parse_free.
9181
f79ec206
SM
91822017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9183
9184 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
9185 alphabsd_store_inferior_registers): Use regcache->ptid instead
9186 of inferior_ptid.
9187
edb5fb00
SM
91882017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9189
9190 * aix-thread.c (aix_thread_fetch_registers,
9191 aix_thread_store_registers): Use regcache->ptid instead of
9192 inferior_ptid.
9193
55119686
SM
91942017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9195
9196 * aarch64-linux-nat.c (fetch_gregs_from_thread,
9197 store_gregs_to_thread, fetch_fpregs_from_thread,
9198 store_fpregs_to_thread): Use regcache->ptid instead of
9199 inferior_ptid.
9200
6a06fbb7
SM
92012017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9202
9203 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
9204 amd64_linux_fetch_inferior_registers): Use regcache->ptid
9205 instead of inferior_ptid.
9206
c6386875
SM
92072017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9208
9209 * target.c (target_fetch_registers, target_store_registers): Add
9210 assert.
9211
ddaaf0fb
SM
92122017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
9213
9214 * regcache.h (regcache_get_ptid): New function.
9215 * regcache.c (regcache_get_ptid): New function.
9216
b9da89d1 92172017-03-13 Mark Wielaard <mark@klomp.org>
9218
9219 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
9220
5f4d1085
KS
92212017-03-10 Keith Seitz <keiths@redhat.com>
9222
9223 PR c++/8218
9224 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
9225
c65d6b55
PA
92262017-03-08 Pedro Alves <palves@redhat.com>
9227
9228 PR gdb/18360
9229 * infrun.c (start_step_over, do_target_resume, resume)
9230 (restart_threads): Assert we're not resuming a thread that is
9231 meant to be stopped.
9232 (infrun_thread_stop_requested_callback): Delete.
9233 (infrun_thread_stop_requested): If the thread is internally
9234 stopped, queue a pending stop event and clear the thread's
9235 inline-frame state.
9236 (handle_stop_requested): New function.
9237 (handle_syscall_event, handle_inferior_event_1): Use
9238 handle_stop_requested.
9239 (handle_stop_requested): New function.
9240 (handle_signal_stop): Set the thread's stop_signal here instead of
9241 at caller.
9242 (finish_step_over): Clear step over info unconditionally.
9243 (handle_signal_stop): If the user had interrupted the event
9244 thread, consider the stop a random signal.
9245 (handle_signal_stop) <signal arrived while stepping over
9246 breakpoint>: Don't restart threads here.
9247 (stop_waiting): Don't clear step-over info here.
9248
15c22686
PA
92492017-03-08 Pedro Alves <palves@redhat.com>
9250
9251 PR 21206
9252 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
9253 goes to argument 2, not 1.
9254
6e5d74e7
PA
92552017-03-08 Pedro Alves <palves@redhat.com>
9256
9257 PR cli/21218
9258 * top.c (gdb_readline_wrapper): Avoid passing NULL to
9259 display_gdb_prompt.
9260 (command_line_input): Add comment.
9261
9753a2f6
PA
92622017-03-08 Pedro Alves <palves@redhat.com>
9263
9264 PR tui/21216
9265 * tui/tui-file.c (tui_file::write): New.
9266 * tui/tui-file.h (tui_file): Override "write".
9267 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
9268 factored out from ...
9269 (tui_puts): ... here.
9270 (tui_putc): Use them.
9271 (tui_write): New function.
9272 * tui/tui-io.h (tui_write): Declare.
9273
1672e0d9
SDJ
92742017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
9275
9276 * Makefile.in (SFILES): Replace "environ.c" with
9277 "common/environ.c".
9278 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
9279 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
9280 to...
9281 * common/environ.c: ... here.
9282 * environ.h: Moved to...
9283 * common/environ.h: ... here.
9284
f7bb4e3a
PB
92852017-03-07 Peter Bergner <bergner@vnet.ibm.com>
9286
9287 * gdbarch.sh (pstring_ptr): New static function.
9288 (gdbarch_disassembler_options): Use it.
9289 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
9290 not valid_disassembler_option->name.
9291 * gdbarch.c: Regenerate.
9292
e45ced6c
PB
92932017-03-07 Peter Bergner <bergner@vnet.ibm.com>
9294
9295 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
9296
5f6fd321
PA
92972017-03-07 Pedro Alves <palves@redhat.com>
9298
9299 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
9300
6dbb839a 93012017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
4a612d6f
WT
9302
9303 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
9304 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
9305 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
6dbb839a 9306 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
4a612d6f 9307
d274ecf4
SM
93082017-03-06 Simon Marchi <simon.marchi@ericsson.com>
9309
9310 * xtensa-linux-nat.c (fetch_gregs): Remove const.
9311
df97be55
SM
93122017-03-03 Simon Marchi <simon.marchi@ericsson.com>
9313
9314 * remote.c (remote_add_target_side_commands): Use range-based
9315 for loop.
9316
7d45f3df
YQ
93172017-03-03 Yao Qi <yao.qi@linaro.org>
9318
9319 PR gdb/21165
9320 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
9321 value is lazy.
9322 * valprint.c (common_val_print): Likewise.
9323
65b48a81
PB
93242017-02-28 Peter Bergner <bergner@vnet.ibm.com>
9325
9326 * NEWS: Mention new set/show disassembler-options commands.
9327 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
9328 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
9329 (prospective_options): New static variable.
9330 (gdb_disassembler::gdb_disassembler): Initialize
9331 m_di.disassembler_options.
9332 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
9333 (get_disassembler_options): New function.
9334 (set_disassembler_options): Likewise.
9335 (set_disassembler_options_sfunc): Likewise.
9336 (show_disassembler_options_sfunc): Likewise.
9337 (disassembler_options_completer): Likewise.
9338 (_initialize_disasm): Likewise.
9339 * disasm.h (get_disassembler_options): New prototype.
9340 (set_disassembler_options): Likewise.
9341 * gdbarch.sh (gdbarch_disassembler_options): New variable.
9342 (gdbarch_verify_disassembler_options): Likewise.
9343 * gdbarch.c: Regenerate.
9344 * gdbarch.h: Likewise.
9345 * arm-tdep.c (num_disassembly_options): Delete.
9346 (set_disassembly_style): Likewise.
9347 (arm_disassembler_options): New static variable.
9348 (set_disassembly_style_sfunc): Convert short style name into long
9349 option name. Call set_disassembler_options.
9350 (show_disassembly_style_sfunc): New function.
9351 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
9352 set_gdbarch_verify_disassembler_options.
9353 (_initialize_arm_tdep): Delete regnames variable and update callers.
9354 (arm_disassembler_options): Initialize.
9355 (disasm_options): New variable.
9356 (num_disassembly_options): Rename from this...
9357 (num_disassembly_styles): ...to this. Compute by scanning through
9358 disasm_options.
9359 (valid_disassembly_styles): Initialize using disasm_options.
9360 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
9361 set_arm_regname_option.
9362 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
9363 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
9364 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
9365 set_gdbarch_verify_disassembler_options.
9366 * s390-tdep.c (s390_disassembler_options): New static variable.
9367 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
9368 set_gdbarch_verify_disassembler_options.
9369
d538e36d
SM
93702017-02-27 Simon Marchi <simon.marchi@ericsson.com>
9371
9372 * remote.c (remote_add_target_side_condition): Remove "struct"
9373 keyword from range-based for loop.
9374
83621223
SM
93752017-02-27 Simon Marchi <simon.marchi@ericsson.com>
9376
9377 * remote.c (remote_add_target_side_condition): Use range-based
9378 for loop. Update comment.
9379
2123df0e
YQ
93802017-02-27 Yao Qi <yao.qi@linaro.org>
9381
9382 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
9383
8e368124
AH
93842017-02-26 Alan Hayward <alan.hayward@arm.com>
9385
9386 * regcache.c (regcache_raw_update): New function.
9387 (regcache_raw_read): Move code to regcache_raw_update.
9388 * regcache.h (regcache_raw_update): New declaration.
9389 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
9390
a49dd8dd
JK
93912017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
9392
9393 * dwarf2read.c (create_debug_type_hash_table): Initialize
9394 header.signature and header.type_offset_in_tu.
9395
34e4bae9
PA
93962017-02-24 Pedro Alves <palves@redhat.com>
9397
9398 * symtab.c (make_file_symbol_completion_list_1): Use
9399 add_symtab_completions.
9400
b0e4b369
AH
94012017-02-24 Alan Hayward <alan.hayward@arm.com>
9402
9403 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
9404
975c21ab
AH
94052017-02-24 Alan Hayward <alan.hayward@arm.com>
9406
9407 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
9408 I386_MAX_REGISTER_SIZE.
9409 (i386_pseudo_register_write): Likewise.
9410 (i386_process_record): Likewise.
9411 * i387-tdep.c (i387_supply_xsave): Likewise.
9412 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
9413 (store_register): Likewise.
9414
14bc53a8
PA
94152017-02-23 Pedro Alves <palves@redhat.com>
9416
9417 * ada-lang.c: Include "common/function-view.h".
9418 (ada_iterate_over_symbols): Adjust to use function_view as
9419 callback type.
9420 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
9421 (ada_make_symbol_completion_list): Use a lambda.
9422 (ada_exc_search_name_matches): Delete.
9423 (name_matches_regex): New.
9424 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
9425 * compile/compile-c-support.c: Include "common/function-view.h".
9426 (print_one_macro): Change prototype to accept a ui_file pointer.
9427 (write_macro_definitions): Use a lambda.
9428 * dwarf2read.c: Include "common/function-view.h".
9429 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
9430 (dw2_expand_symtabs_matching): Adjust to use function_view as
9431 callback type.
9432 * language.h: Include "common/function-view.h".
9433 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
9434 function_view as callback type.
9435 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
9436 * linespec.c: Include "common/function-view.h".
9437 (collect_info::add_symbol): New method.
9438 (struct symbol_and_data_callback, iterate_inline_only, struct
9439 symbol_matcher_data, iterate_name_matcher): Delete.
9440 (iterate_over_all_matching_symtabs): Adjust to use function_view
9441 as callback type and lambdas.
9442 (iterate_over_file_blocks): Adjust to use function_view as
9443 callback type.
9444 (decode_compound_collector): Now a class with private fields.
9445 (decode_compound_collector::release_symbols): New method.
9446 (collect_one_symbol): Rename to...
9447 (decode_compound_collector::operator()): ... this and adjust.
9448 (lookup_prefix_sym): decode_compound_collector construction bits
9449 move to decode_compound_collector ctor. Pass the
9450 decode_compound_collector object directly as callback. Remove
9451 cleanups and use decode_compound_collector::release_symbols
9452 instead.
9453 (symtab_collector): Now a class with private fields.
9454 (symtab_collector::release_symtabs): New method.
9455 (add_symtabs_to_list): Rename to...
9456 (symtab_collector::operator()): ... this and adjust.
9457 (collect_symtabs_from_filename): symtab_collector construction
9458 bits move to symtab_collector ctor. Pass the symtab_collector
9459 object directly as callback. Remove cleanups and use
9460 symtab_collector::release_symtabs instead.
9461 (collect_symbols): Delete.
9462 (add_matching_symbols_to_info): Use lambdas.
9463 * macrocmd.c (print_macro_callback): Delete.
9464 (info_macro_command): Use a lambda.
9465 (info_macros_command): Pass print_macro_definition as callable
9466 directly.
9467 (print_one_macro): Remove 'ignore' parameter.
9468 (macro_list_command): Adjust.
9469 * macrotab.c (macro_for_each_data::fn): Now a function_view.
9470 (macro_for_each_data::user_data): Delete field.
9471 (foreach_macro): Adjust to call the function_view.
9472 (macro_for_each): Adjust to use function_view as callback type.
9473 (foreach_macro_in_scope): Adjust to call the function_view.
9474 (macro_for_each_in_scope): Adjust to use function_view as callback
9475 type.
9476 * macrotab.h: Include "common/function-view.h".
9477 (macro_callback_fn): Declare a prototype instead of a pointer.
9478 Remove "user_data" parameter.
9479 (macro_for_each, macro_for_each_in_scope): Adjust to use
9480 function_view as callback type.
9481 * psymtab.c (partial_map_expand_apply)
9482 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
9483 Adjust to use function_view as callback type and to return bool.
9484 (psym_expand_symtabs_matching): Adjust to use function_view as
9485 callback types.
9486 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
9487 to use function_view as callback type and to return bool.
9488 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
9489 callback types.
9490 * symfile.c (expand_symtabs_matching): Adjust to use function_view
9491 as callback types.
9492 * symfile.h: Include "common/function-view.h".
9493 (expand_symtabs_file_matcher_ftype)
9494 (expand_symtabs_symbol_matcher_ftype)
9495 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
9496 return bool.
9497 (quick_symbol_functions::map_symtabs_matching_filename)
9498 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
9499 function_view as callback type and return bool.
9500 (expand_symtabs_matching): Adjust to use function_view as callback
9501 type.
9502 (maintenance_expand_name_matcher)
9503 (maintenance_expand_file_matcher): Delete.
9504 (maintenance_expand_symtabs): Use lambdas.
9505 * symtab.c (iterate_over_some_symtabs): Adjust to use
9506 function_view as callback types and return bool.
9507 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
9508 of a cleanup.
9509 (lookup_symtab_callback): Delete.
9510 (lookup_symtab): Use a lambda.
9511 (iterate_over_symbols): Adjust to use function_view as callback
9512 type.
9513 (struct search_symbols_data, search_symbols_file_matches)
9514 (search_symbols_name_matches): Delete.
9515 (search_symbols): Use a pair of lambdas.
9516 (struct add_name_data, add_macro_name, symbol_completion_matcher)
9517 (symtab_expansion_callback): Delete.
9518 (default_make_symbol_completion_list_break_on_1): Use lambdas.
9519 * symtab.h: Include "common/function-view.h".
9520 (iterate_over_some_symtabs): Adjust to use function_view as
9521 callback type and return bool.
9522 (iterate_over_symtabs): Adjust to use function_view as callback
9523 type.
9524 (symbol_found_callback_ftype): Remove 'data' parameter and return
9525 bool.
9526 (iterate_over_symbols): Adjust to use function_view as callback
9527 type.
9528
07e253aa
PA
95292017-02-23 Pedro Alves <palves@redhat.com>
9530
9531 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
9532 (%.o) <unittests/%.c>: New pattern.
9533 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
9534 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
9535 * common/function-view.h: New file.
9536 * unittests/function-view-selftests.c: New file.
9537 * configure: Regenerate.
9538
8eaf5320
SM
95392017-02-23 Simon Marchi <simon.marchi@ericsson.com>
9540
9541 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
9542 inferior_ptid.
9543 * go32-nat.c (go32_thread_alive): Likewise.
9544
38768751
YQ
95452017-02-23 Yao Qi <yao.qi@linaro.org>
9546
9547 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
9548 delete.
9549
0a8beaba
YQ
95502017-02-23 Yao Qi <yao.qi@linaro.org>
9551
9552 * varobj.c (varobj_clear_saved_item): Use delete instead of
9553 xfree.
9554 (update_dynamic_varobj_children): Likewise.
9555
58fdfd2c
JK
95562017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9557
9558 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
9559
1b90b139
SM
95602017-02-21 Simon Marchi <simon.marchi@ericsson.com>
9561
9562 * common/enum-flags.h (enum_flags::enum_flags): Initialize
9563 m_enum_value to 0 in default constructor.
9564
2039d74e
EBM
95652017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
9566
9567 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
9568 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
9569 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
9570 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
9571 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
9572 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
9573 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
9574 IS_STORE_CONDITIONAL_INSN.
9575
7814882a
JK
95762017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9577
9578 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
9579
0ae60b63
JK
95802017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9581
9582 * NEWS (Changes since GDB 7.12): Add DWARF-5.
9583
0224619f
JK
95842017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9585
9586 * dwarf2read.c (skip_one_die, read_attribute_value)
9587 (dwarf2_const_value_attr, dump_die_shallow)
9588 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
9589 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
9590
0af92d60
JK
95912017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9592
9593 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
9594 (dwarf_parse_macro_header): Accept DWARF version 5.
9595 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
9596
216f72a1
JK
95972017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9598
9599 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
9600 DW_AT_GNU_*.
9601 * common/common-exceptions.h (enum errors): Likewise.
9602 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
9603 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
9604 (dwarf_expr_context::execute_stack_op): Likewise.
9605 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
9606 Likewise.
9607 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
9608 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
9609 (show_entry_values_debug, call_site_to_target_addr)
9610 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
9611 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
9612 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
9613 (value_of_dwarf_block_entry, indirect_pieced_value)
9614 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
9615 (disassemble_dwarf_expression): Likewise.
9616 * dwarf2read.c (process_die, inherit_abstract_dies)
9617 (read_call_site_scope): Likewise.
9618 * gdbtypes.h (struct func_type, struct call_site_parameter)
9619 (struct call_site): Likewise.
9620 * stack.c (read_frame_arg): Likewise.
9621 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
9622
43988095
JK
96232017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9624
9625 * defs.h (read_unsigned_leb128): New declaration.
9626 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
9627 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
9628 (dwarf2_find_location_expression): Call also
9629 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
9630 * dwarf2loc.h (dwarf2_version): New declaration.
9631 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
9632 rnglists.
9633 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
9634 .debug_rnglists.
9635 (struct dwop_section_names): Add loclists_dwo.
9636 (dwop_section_names): Add .debug_loclists.dwo.
9637 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
9638 (struct dwarf2_per_cu_data): Add dwarf_version.
9639 (struct dwo_sections): Add loclists.
9640 (struct attr_abbrev): Add implicit_const.
9641 (read_indirect_line_string): New declaration.
9642 (read_unsigned_leb128): Delete declaration.
9643 (rcuh_kind): New definition.
9644 (read_and_check_comp_unit_head): Change parameter
9645 is_debug_types_section to section_kind.
9646 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
9647 (read_comp_unit_head): Change parameter abfd to section, add parameter
9648 section_kind. Handle DWARF-5.
9649 (error_check_comp_unit_head): Accept also DWARF version 5.
9650 (read_and_check_comp_unit_head): Change parameter
9651 is_debug_types_section to section_kind.
9652 (read_and_check_type_unit_head): Delete function.
9653 (read_abbrev_offset): Handle DWARF-5.
9654 (create_debug_type_hash_table): Add parameter section_kind. Process
9655 only DW_UT_type. Use signature and type_offset_in_tu from struct
9656 comp_unit_head.
9657 (create_debug_types_hash_table): Update create_debug_type_hash_table
9658 caller.
9659 (create_all_type_units): Call create_debug_type_hash_table.
9660 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
9661 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
9662 caller.
9663 (skip_one_die): Handle DW_FORM_implicit_const.
9664 (dwarf2_rnglists_process): New function.
9665 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
9666 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
9667 (read_attribute_value): Handle DW_FORM_implicit_const,
9668 DW_FORM_line_strp.
9669 (read_attribute): Handle DW_FORM_implicit_const.
9670 (read_indirect_string_at_offset_from): New function from
9671 read_indirect_string_at_offset.
9672 (read_indirect_string_at_offset): Call
9673 read_indirect_string_at_offset_from.
9674 (read_indirect_line_string_at_offset): New function.
9675 (read_indirect_string): New function comment.
9676 (read_indirect_line_string): New function.
9677 (read_unsigned_leb128): Make it global.
9678 (dwarf2_string_attr): Handle DWARF-5.
9679 (add_include_dir_stub, read_formatted_entries): New functions.
9680 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
9681 Handle DWARF-5.
9682 (per_cu_header_read_in): Update read_comp_unit_head caller.
9683 (dwarf2_version): New function.
9684 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
9685 rnglists.
9686 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
9687 fields.
9688
22d2f3ab
JK
96892017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9690
9691 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
9692
5f46c5a5
JK
96932017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9694
9695 * dwarf2read.c (dwarf2_ranges_process): New function from
9696 dwarf2_ranges_read.
9697 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
9698 dwarf2_ranges_process.
9699
78d4d2c5
JK
97002017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9701
9702 * dwarf2read.c (create_debug_type_hash_table): New function from
9703 create_debug_types_hash_table.
9704 (create_debug_types_hash_table): Call create_debug_type_hash_table.
9705 (create_all_type_units, open_and_init_dwo_file): Update
9706 create_debug_types_hash_table callers.
9707
1b076f25
SDJ
97082017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
9709
9710 PR gdb/16188
9711 * fork-child.c (trace_start_error): Fix thinko. va_end should
9712 refer to 'ap', not 'args'.
9713
0db8980c
SDJ
97142017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
9715 Pedro Alves <palves@redhat.com>
9716
9717 PR gdb/16188
9718 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
9719 calls succeeded.
9720 * fork-child.c (trace_start_error): New function.
9721 (trace_start_error_with_name): Likewise.
9722 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
9723 * inf-ptrace.c (inf_ptrace_me): Likewise.
9724 * inferior.h (trace_start_error): New prototype.
9725 (trace_start_error_with_name): Likewise.
9726
99e8a4f9
SDJ
97272017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
9728
9729 PR gdb/21164
9730 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
9731 NULL before using it.
9732 * symmisc.c (maintenance_print_symbols): Likewise.
9733 (maintenance_print_msymbols): Likewise.
9734
4e746bb6
TW
97352017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9736
9737 * NEWS: Add record Python bindings entry.
9738
97392017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9740
9741 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
9742 py-record-full.o.
9743 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
9744 * python/py-record-btrace.c, python/py-record-btrace.h,
9745 python/py-record-full.c, python/py-record-full.h: New file.
9746 * python/py-record.c: Add include for py-record-btrace.h and
9747 py-record-full.h.
9748 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
9749 recpy_instruction_history, recpy_function_call_history, recpy_begin,
9750 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
9751 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
9752 New definition.
9753 (gdbpy_initialize_btrace): New export.
9754 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
9755
97562017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9757
9758 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
9759 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
9760 * python/py-record.c: New file.
9761 * python/python-internal.h (gdbpy_start_recording,
9762 gdbpy_current_recording, gdpy_stop_recording,
9763 gdbpy_initialize_record): New export.
9764 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
9765 (python_GdbMethods): Add gdbpy_start_recording,
9766 gdbpy_current_recording and gdbpy_stop_recording.
9767
97682017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9769
9770 * record-btrace.c (record_btrace_record_method): New function.
9771 (init_record_btrace_ops): Initialize to_record_method.
9772 * record-full.c (record_full_record_method): New function.
9773 (init_record_full_ops, init_record_full_core_ops): Add
9774 record_full_record_method.
9775 * record.h (enum record_method): New enum.
9776 * target-debug.h (target_debug_print_enum_record_method: New define.
9777 * target-delegates.c: Regenerate.
9778 * target.c (target_record_method): New function.
9779 * target.h: Include record.h.
9780 (struct target_ops) <to_record_method>: New field.
9781 (target_record_method): New export.
9782
97832017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9784
9785 * record.h (record_start, record_stop): New export.
9786 * record.c (record_start, record_stop): New function.
9787
97882017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9789
9790 * btrace.c (btrace_fetch): Copy function call segments pointer
9791 into a vector.
9792 (btrace_clear): Clear the vector.
9793 (btrace_find_insn_by_number): Use binary search to find the correct
9794 function call segment.
9795 * btrace.h (brace_fun_p): New typedef.
9796 (struct btrace_thread_info) <functions>: New field.
9797
97982017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9799
9800 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
9801 * btrace.c (btrace_decode_error): ... here. New function.
9802 * btrace.h (btrace_decode_error): New export.
9803
98042017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
9805
9806 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
9807 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
9808 btrace_find_insn_by_number): Remove special case for gaps.
9809 * btrace.h (btrace_insn_get_error): New export.
9810 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
9811 * record-btrace.c (btrace_insn_history): Print number for gaps.
9812 (record_btrace_info, record_btrace_goto): Handle gaps.
9813
3f77c769
TT
98142017-02-14 Tom Tromey <tom@tromey.com>
9815
9816 PR python/13598:
9817 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
9818 event.
9819 * python/py-evts.c (gdbpy_initialize_py_events): Add
9820 before_prompt registry.
9821 * python/py-events.h (events_object) <before_prompt>: New field.
9822
4c2c7ac6
MM
98232017-02-14 Markus Metzger <markus.t.metzger@intel.com>
9824
9825 * btrace.c (ftrace_new_switch): Preserve up link and flags.
9826
5cf30ebf
LM
98272017-02-13 Luis Machado <lgustavo@codesourcery.com>
9828
9829 * symfile (_initialize_symfile): Add usage text to the load command's
9830 help text.
9831
26a06916
SM
98322017-02-10 Simon Marchi <simon.marchi@ericsson.com>
9833
9834 * utils.c (defaulted_query): Don't query on secondary UIs.
9835
0b145e37
TT
98362017-02-10 Tom Tromey <tom@tromey.com>
9837
9838 * rust-lang.c (rust_get_disr_info): Remove unused variable.
9839
2d8365c4
TT
98402017-02-10 Tom Tromey <tom@tromey.com>
9841
9842 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
9843 "cleanup" local.
9844 * python/py-type.c (typy_legacy_template_argument): Remove
9845 unnecessary "cleanup" local.
9846
2bb8f231
TT
98472017-02-10 Tom Tromey <tom@tromey.com>
9848
9849 * python/python.c (do_start_initialization): New function, from
9850 _initialize_python.
9851 (_initialize_python): Call do_start_initialization.
9852 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
9853 goto.
9854
1bdfaf42
TT
98552017-02-10 Tom Tromey <tom@tromey.com>
9856
9857 * python/py-prettyprint.c (pretty_print_one_value): Use
9858 gdbpy_ref.
9859
88b6faea
TT
98602017-02-10 Tom Tromey <tom@tromey.com>
9861
9862 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
9863 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
9864 gdbpy_ref.
9865 * python/py-type.c (field_new): Use gdbpy_ref.
9866 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
9867 gdbpy_ref.
9868 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
9869 (py_free_pspace): Likewise.
9870 (pspace_to_pspace_object): Likewise.
9871 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
9872 (py_free_objfile): Likewise.
9873 (objfile_to_objfile_object): Likewise.
9874 * python/py-inferior.c (delete_thread_object): Use
9875 gdbpy_ref.
9876 (infpy_read_memory): Likewise.
9877 (py_free_inferior): Likewise.
9878 * python/py-evtregistry.c (create_eventregistry_object): Use
9879 gdbpy_ref.
9880 * python/py-event.c (create_event_object): Use gdbpy_ref.
9881
7780f186
TT
98822017-02-10 Tom Tromey <tom@tromey.com>
9883
9884 * python/py-ref.h (gdbpy_ref_policy): Now a template.
9885 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
9886 used.
9887 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
9888 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
9889 python/py-exitedevent.c, python/py-finishbreakpoint.c,
9890 python/py-framefilter.c, python/py-function.c,
9891 python/py-inferior.c, python/py-infevents.c,
9892 python/py-linetable.c, python/py-newobjfileevent.c,
9893 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
9894 python/py-signalevent.c, python/py-stopevent.c,
9895 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
9896 python/py-unwind.c, python/py-utils.c, python/py-value.c,
9897 python/py-varobj.c, python/py-xmethods.c, python/python.c,
9898 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
9899
d4b0bb18
TT
99002017-02-10 Tom Tromey <tom@tromey.com>
9901
9902 * ui-out.h (ui_out_emit_type): New class.
9903 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
9904 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
9905 and ui_out_emit_tuple.
9906 (enumerate_locals): Likewise.
9907 (py_mi_print_variables, py_print_locals, py_print_args): Use
9908 ui_out_emit_list.
9909 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
9910 ui_out_emit_list.
9911 * common/gdb_optional.h: New file.
9912
f67f945c
MG
99132017-02-10 Martin Galvan <martingalvan@sourceware.org>
9914
9915 * MAINTAINERS (Write After Approval): Update my e-mail address.
9916
18da0c51
MG
99172017-02-10 Martin Galvan <martingalvan@sourceware.org>
9918
9919 PR gdb/21122
9920 * breakpoint.c (_initialize_breakpoint): Update the help description
9921 of the 'commands' command to indicate that it takes a list argument.
9922
62c14536
SM
99232017-02-09 Simon Marchi <simon.marchi@ericsson.com>
9924
9925 * interps.c (current_interp_set_logging): Remove "return".
9926
ff6fa247
GB
99272017-02-09 Gary Benson <gbenson@redhat.com>
9928
9929 * symtab.c (add_symtab_completions): Prevent NULL pointer
9930 dereference.
9931
a474bd8e
PA
99322017-02-08 Pedro Alves <palves@redhat.com>
9933
9934 * interps.c (interp::interp): Remove reference to quiet_p.
9935 (interp_set): Make static. Remove dead "Switching to" output
9936 code.
9937 (interp_quiet_p, interp_set_quiet): Delete.
9938 (interpreter_exec_cmd): Don't set the interpreter quiet.
9939 * interps.h (interp_quiet_p): Make static.
9940 (class interp) <quiet_p>: Remove field
9941
3d7b173c
JG
99422017-02-08 Jerome Guitton <guitton@adacore.com>
9943
604c4576
JG
9944 * cli/cli-decode.c (find_command_name_length): Make it extern.
9945 * cli/cli-decode.h (find_command_name_length): Declare.
9946 * cli/cli-script.c (command_name_equals, line_first_arg):
9947 New functions.
9948 (process_next_line): Use cli-decode to parse command names.
9949 (build_command_line): Make args a constant pointer.
9950
99512017-02-08 Jerome Guitton <guitton@adacore.com>
6dbb839a 9952
3d7b173c
JG
9953 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
9954 Remove case-insensitive search.
9955
1291063d
JM
99562017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
9957
9958 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
9959 at the end of the line. Avoids an ARI warning.
9960
20b477a7
LM
99612017-02-06 Luis Machado <lgustavo@codesourcery.com>
9962
9963 * NEWS: Mention support for record/replay of Intel 64 rdrand and
9964 rdseed instructions.
9965 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
9966
3f7b46f2
IR
99672017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
9968
9969 PR tdep/20936
9970 Provide and use sparc32 and sparc64 target description XML files.
9971 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
9972 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
9973 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
9974 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
9975 * features/sparc/sparc32-solaris.xml: New file.
9976 * features/sparc/sparc64-solaris.xml: New file.
9977 * features/sparc/sparc32-solaris.c: Generated.
9978 * features/sparc/sparc64-solaris.c: Generated.
9979 * sparc-tdep.h: Account for differences in target descriptions.
9980 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
9981 (sparc32_register_type): Use target provided registers.
9982 (validate_tdesc_registers): New function.
9983 (sparc32_gdbarch_init): Use tdesc_has_registers.
9984 Set pseudoregister functions.
9985 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
9986 (sparc64_register_type): Use target provided registers.
9987 (sparc64_init_abi): Set pseudoregister functions.
9988
f0fd41c1
TT
99892017-02-03 Tom Tromey <tom@tromey.com>
9990
9991 PR rust/21097:
9992 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
9993 with a single member.
9994
d6f9b0fb
PA
99952017-02-03 Pedro Alves <palves@redhat.com>
9996
9997 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
9998 (cli_interp_base::~cli_interp_base): New.
9999 (cli_interp): New struct.
10000 (as_cli_interp): Cast the interp itself to cli_interp.
10001 (cli_interpreter_pre_command_loop): Rename to ...
10002 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
10003 parameter.
10004 (cli_interpreter_init): Rename to ...
10005 (cli_interp::init): ... this. Remove 'self' parameter. Use
10006 boolean. Make extern.
10007 (cli_interpreter_resume): Rename to ...
10008 (cli_interp::resume): ... this. Remove 'data' parameter. Make
10009 extern.
10010 (cli_interpreter_suspend): Rename to ...
10011 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
10012 extern.
10013 (cli_interpreter_exec): Rename to ...
10014 (cli_interp::exec): ... this. Remove 'data' parameter. Make
10015 extern.
10016 (cli_interpreter_supports_command_editing): Rename to ...
10017 (cli_interp_base::supports_command_editing): ... this. Remove
10018 'interp' parameter. Make extern.
10019 (cli_ui_out): Rename to ...
10020 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
10021 Make extern.
10022 (cli_set_logging): Rename to ...
10023 (cli_interp_base::set_logging): ... this. Remove 'interp'
10024 parameter. Make extern.
10025 (cli_interp_procs): Delete.
10026 (cli_interp_factory): Adjust to use "new".
10027 * cli/cli-interp.h: Include "interps.h".
10028 (struct cli_interp_base): New struct.
10029 * interps.c (struct interp): Delete. Fields moved to interps.h.
10030 (interp_new): Delete.
10031 (interp::interp, interp::~interp): New.
10032 (interp_set): Use bool, and return void. Assume the interpreter
10033 has suspend, init and resume methods, and that the all return
10034 void.
10035 (set_top_level_interpreter): interp_set returns void.
10036 (interp_ui_out): Adapt.
10037 (current_interp_set_logging): Adapt.
10038 (interp_data): Delete.
10039 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
10040 (interp_exec): Adapt.
10041 (top_level_interpreter_data): Delete.
10042 * interps.h (interp_init_ftype, interp_resume_ftype)
10043 (interp_suspend_ftype, interp_exec_ftype)
10044 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
10045 (class interp): New.
10046 (interp_new): Delete.
10047 (interp_set): Now returns void. Use bool.
10048 (interp_data, top_level_interpreter_data): Delete.
10049 * mi/mi-common.h: Include interps.h.
10050 (class mi_interp): Inherit from interp. Define a ctor. Declare
10051 init, resume, suspect, exec, interp_ui_out, set_logging and
10052 pre_command_loop methods.
10053 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
10054 (mi_interpreter_init): Rename to ...
10055 (mi_interp::init): ... this. Remove the 'interp' parameter, use
10056 bool, return void and make extern. Adjust.
10057 (mi_interpreter_resume): ... Rename to ...
10058 (mi_interp::resume): ... this. Remove the 'data' parameter,
10059 return void and make extern. Adjust.
10060 (mi_interpreter_suspend): ... Rename to ...
10061 (mi_interp::suspend): ... this. Remove the 'data' parameter,
10062 return void and make extern. Adjust.
10063 (mi_interpreter_exec): ... Rename to ...
10064 (mi_interp::exec): ... this. Remove the 'data' parameter and make
10065 extern. Adjust.
10066 (mi_interpreter_pre_command_loop): ... Rename to ...
10067 (mi_interp::pre_command_loop): ... this. Remove the 'self'
10068 parameter and make extern.
10069 (mi_on_normal_stop_1): Adjust.
10070 (mi_ui_out): Rename to ...
10071 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
10072 parameter and make extern. Adjust.
10073 (mi_set_logging): Rename to ...
10074 (mi_interp::set_logging): ... this. Remove the 'interp'
10075 parameter and make extern. Adjust.
10076 (mi_interp_procs): Delete.
10077 (mi_interp_factory): Adjust to use 'new'.
10078 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
10079 (mi_print_exception, mi_execute_command, mi_load_progress):
10080 Adjust.
10081 * tui/tui-interp.c (tui_interp): New class.
10082 (as_tui_interp): Return a tui_interp pointer.
10083 (tui_on_normal_stop, tui_on_signal_received)
10084 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
10085 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
10086 to use interp::interp_ui_out.
10087 (tui_init): Rename to ...
10088 (tui_interp::init): ... this. Remove the 'self' parameter, use
10089 bool, return void and make extern. Adjust.
10090 (tui_resume): Rename to ...
10091 (tui_interp::resume): ... this. Remove the 'data' parameter,
10092 return void and make extern. Adjust.
10093 (tui_suspend): Rename to ...
10094 (tui_interp::suspend): ... this. Remove the 'data' parameter,
10095 return void and make extern. Adjust.
10096 (tui_ui_out): Rename to ...
10097 (tui_interp::interp_ui_out): ... this. Remove the 'self'
10098 parameter, and make extern. Adjust.
10099 (tui_exec): Rename to ...
10100 (tui_interp::exec): ... this. Remove the 'data' parameter and
10101 make extern.
10102 (tui_interp_procs): Delete.
10103 (tui_interp_factory): Use "new".
10104
65c40c95
TT
101052017-02-02 Tom Tromey <tom@tromey.com>
10106
10107 * rust-exp.y (ends_raw_string, space_then_number)
10108 (rust_identifier_start_p): Return bool.
10109 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
10110 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
10111 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
10112 (rust_chartype_p): Return bool.
10113 (val_print_struct, rust_print_struct_def, rust_print_type):
10114 Update.
10115 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
10116 Return bool.
10117
b50f188d
TT
101182017-02-02 Tom Tromey <tom@tromey.com>
10119
10120 * rust-lang.c: Reindent.
10121
03c85b11
TT
101222017-02-02 Tom Tromey <tom@tromey.com>
10123
10124 * rust-lang.h (rust_crate_for_block): Update.
10125 * rust-lang.c (rust_crate_for_block): Return std::string.
10126 (rust_get_disr_info): Use std:;string, not
10127 gdb::unique_xmalloc_ptr.
10128 * rust-exp.y (crate_name): Update.
10129
9b6da501
PA
101302017-02-02 Pedro Alves <palves@redhat.com>
10131
10132 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
10133 field out of gdb_disassembler_test and make it static.
10134
ec4cb20b
PA
101352017-02-02 Pedro Alves <palves@redhat.com>
10136
10137 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
10138 mi1_interp and mi_interp fields.
10139
5be5dbf0
PA
101402017-02-02 Pedro Alves <palves@redhat.com>
10141
616268b6
PA
10142 * cli/cli-interp.c (struct saved_output_files, saved_output):
10143 Moved from cli/cli-logging.c.
10144 (cli_set_logging): New function.
10145 (cli_interp_procs): Install cli_set_logging.
10146 * cli/cli-interp.h (make_logging_output, cli_set_logging):
10147 Declare.
10148 * cli/cli-logging.c (struct saved_output_files, saved_output):
10149 Moved to cli/cli-interp.c.
10150 (pop_output_files): Don't save outputs here.
10151 (make_logging_output): New function.
10152 (handle_redirections): Don't build tee nor save previous outputs
10153 here.
10154 * interps.c (current_interp_set_logging): Change prototype.
10155 Assume there's always a set_logging_proc method installed.
10156 * interps.h (interp_set_logging_ftype): Change prototype.
10157 (current_interp_set_logging): Change prototype and adjust comment.
10158 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
10159 use make_logging_output.
10160 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
101612017-02-02 Pedro Alves <palves@redhat.com>
10162
5be5dbf0
PA
10163 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
10164 from ...
10165 (set_logging_overwrite): ... here.
10166 (logging_no_redirect_file): Delete.
10167 (set_logging_redirect): Don't handle redirection on the fly.
10168 Instead warn that "logging off" / "logging on" is necessary.
10169 (pop_output_files): Delete references to logging_no_redirect_file.
10170 (show_logging_command): Always speak in terms of what will happen
10171 once logging is reenabled.
10172
c99cc448
PA
101732017-02-02 Pedro Alves <palves@redhat.com>
10174
10175 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
10176
8b172ce7
PA
101772017-02-02 Pedro Alves <palves@redhat.com>
10178
10179 * disasm.c (gdb_pretty_print_insn): Rename to ...
10180 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
10181 Remove gdbarch parameter. Adapt to clear the object's buffers
10182 instead of allocating new buffers, and to print using the object's
10183 gdb_disassembler instead of calling gdb_print_insn.
10184 (dump_insns): Use gdb_pretty_print_disassembler.
10185 * disasm.h (gdb_pretty_print_insn): Delete declaration.
10186 (gdb_pretty_print_disassembler): New class.
10187 * record-btrace.c (btrace_insn_history): Use
10188 gdb_pretty_print_disassembler.
10189
d7e74731
PA
101902017-02-02 Pedro Alves <palves@redhat.com>
10191
10192 * ada-lang.c (type_as_string): Use string_file.
10193 * ada-valprint.c (ada_print_floating): Use string_file.
10194 * ada-varobj.c (ada_varobj_scalar_image)
10195 (ada_varobj_get_value_image): Use string_file.
10196 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
10197 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
10198 * breakpoint.c (update_inserted_breakpoint_locations)
10199 (insert_breakpoint_locations, reattach_breakpoints)
10200 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
10201 (print_it_watchpoint): Use string_file.
10202 (save_breakpoints): Use stdio_file.
10203 * c-exp.y (oper): Use string_file.
10204 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
10205 tee_file.
10206 (pop_output_files): Use delete.
10207 (handle_redirections): Use stdio_file and tee_file.
10208 * cli/cli-setshow.c (do_show_command): Use string_file.
10209 * compile/compile-c-support.c (c_compute_program): Use
10210 string_file.
10211 * compile/compile-c-symbols.c (generate_vla_size): Take a
10212 'string_file &' instead of a 'ui_file *'.
10213 (generate_c_for_for_one_variable): Take a 'string_file &' instead
10214 of a 'ui_file *'. Use string_file.
10215 (generate_c_for_variable_locations): Take a 'string_file &'
10216 instead of a 'ui_file *'.
10217 * compile/compile-internal.h (generate_c_for_for_one_variable):
10218 Take a 'string_file &' instead of a 'ui_file *'.
10219 * compile/compile-loc2c.c (push, pushf, unary, binary)
10220 (print_label, pushf_register_address, pushf_register)
10221 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
10222 'ui_file *'. Adjust.
10223 * compile/compile.c (compile_to_object): Use string_file.
10224 * compile/compile.h (compile_dwarf_expr_to_c)
10225 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
10226 'ui_file *'.
10227 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
10228 (replace_typedefs_qualified_name): Use string_file and
10229 obstack_copy0.
10230 * disasm.c (gdb_pretty_print_insn): Use string_file.
10231 (gdb_disassembly): Adjust reference the null_stream global.
10232 (do_ui_file_delete): Delete.
10233 (gdb_insn_length): Use null_stream.
10234 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
10235 * dwarf2loc.c (dwarf2_compile_property_to_c)
10236 (locexpr_generate_c_location, loclist_generate_c_location): Take a
10237 'string_file &' instead of a 'ui_file *'.
10238 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
10239 * dwarf2read.c (do_ui_file_peek_last): Delete.
10240 (dwarf2_compute_name): Use string_file.
10241 * event-top.c (gdb_setup_readline): Use stdio_file.
10242 * gdbarch.sh (verify_gdbarch): Use string_file.
10243 * gdbtypes.c (safe_parse_type): Use null_stream.
10244 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
10245 string_file.
10246 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
10247 'string_file *' instead of a 'ui_file *'.
10248 (gdbscm_arch_disassemble): Use string_file.
10249 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
10250 * guile/scm-ports.c (class ioscm_file_port): Now a class that
10251 inherits from ui_file.
10252 (ioscm_file_port_delete, ioscm_file_port_rewind)
10253 (ioscm_file_port_put): Delete.
10254 (ioscm_file_port_write): Rename to ...
10255 (ioscm_file_port::write): ... this. Remove file_port_magic
10256 checks.
10257 (ioscm_file_port_new): Delete.
10258 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
10259 ui_file_up.
10260 * guile/scm-type.c (tyscm_type_name): Use string_file.
10261 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
10262 Use string_file.
10263 * infcmd.c (print_return_value_1): Use string_file.
10264 * infrun.c (print_target_wait_results): Use string_file.
10265 * language.c (add_language): Use string_file.
10266 * location.c (explicit_to_string_internal): Use string_file.
10267 * main.c (captured_main_1): Use null_file.
10268 * maint.c (maintenance_print_architecture): Use stdio_file.
10269 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
10270 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
10271 event_channel>: Change type to mi_console_file pointer.
10272 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
10273 (mi_console_file_delete): Delete.
10274 (struct mi_console_file): Delete.
10275 (mi_console_file_magic): Delete.
10276 (mi_console_file_new): Delete.
10277 (mi_console_file::mi_console_file): New.
10278 (mi_console_file_delete): Delete.
10279 (mi_console_file_fputs): Delete.
10280 (mi_console_file::write): New.
10281 (mi_console_raw_packet): Delete.
10282 (mi_console_file::flush): New.
10283 (mi_console_file_flush): Delete.
10284 (mi_console_set_raw): Rename to ...
10285 (mi_console_file::set_raw): ... this.
10286 * mi/mi-console.h (class mi_console_file): New class.
10287 (mi_console_file_new, mi_console_set_raw): Delete.
10288 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
10289 (mi_set_logging): Use delete and tee_file. Adjust.
10290 * mi/mi-main.c (output_register): Use string_file.
10291 (mi_cmd_data_evaluate_expression): Use string_file.
10292 (mi_cmd_data_read_memory): Use string_file.
10293 (mi_cmd_execute, print_variable_or_computed): Use string_file.
10294 * mi/mi-out.c (mi_ui_out::main_stream): New.
10295 (mi_ui_out::rewind): Use main_stream and
10296 string_file.
10297 (mi_ui_out::put): Use main_stream and string_file.
10298 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
10299 Allocate a 'string_file' instead.
10300 (mi_out_new): Don't allocate a mem_fileopen stream here.
10301 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
10302 (mi_ui_out::main_stream): Declare method.
10303 * printcmd.c (eval_command): Use string_file.
10304 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
10305 * python/py-arch.c (archpy_disassemble): Use string_file.
10306 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
10307 * python/py-frame.c (frapy_str): Use string_file.
10308 * python/py-framefilter.c (py_print_type, py_print_single_arg):
10309 Use string_file.
10310 * python/py-type.c (typy_str): Use string_file.
10311 * python/py-unwind.c (unwind_infopy_str): Use string_file.
10312 * python/py-value.c (valpy_str): Use string_file.
10313 * record-btrace.c (btrace_insn_history): Use string_file.
10314 * regcache.c (regcache_print): Use stdio_file.
10315 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
10316 * remote.c (escape_buffer): Use string_file.
10317 * rust-lang.c (rust_get_disr_info): Use string_file.
10318 * serial.c (serial_open_ops_1): Use stdio_file.
10319 (do_serial_close): Use delete.
10320 * stack.c (print_frame_arg): Use string_file.
10321 (print_frame_args): Remove local mem_fileopen stream, not used.
10322 (print_frame): Use string_file.
10323 * symmisc.c (maintenance_print_symbols): Use stdio_file.
10324 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
10325 Take a 'string_file *' instead of a 'ui_file *'.
10326 * top.c (new_ui): Use stdio_file and stderr_file.
10327 (free_ui): Use delete.
10328 (execute_command_to_string): Use string_file.
10329 (quit_confirm): Use string_file.
10330 * tracepoint.c (collection_list::append_exp): Use string_file.
10331 * tui/tui-disasm.c (tui_disassemble): Use string_file.
10332 * tui/tui-file.c: Don't include "ui-file.h".
10333 (enum streamtype, struct tui_stream): Delete.
10334 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
10335 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
10336 (tui_file::tui_file): New method.
10337 (tui_file_fputs): Delete.
10338 (tui_file_get_strbuf): Delete.
10339 (tui_file::puts): New method.
10340 (tui_file_adjust_strbuf): Delete.
10341 (tui_file_flush): Delete.
10342 (tui_file::flush): New method.
10343 * tui/tui-file.h: Tweak intro comment.
10344 Include ui-file.h.
10345 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
10346 (tui_file_adjust_strbuf): Delete declarations.
10347 (class tui_file): New class.
10348 * tui/tui-io.c (tui_initialize_io): Use tui_file.
10349 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
10350 (tui_register_format): Use string_stream.
10351 * tui/tui-stack.c (tui_make_status_line): Use string_file.
10352 (tui_get_function_from_frame): Use string_file.
10353 * typeprint.c (type_to_string): Use string_file.
10354 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
10355 (null_stream): New global.
10356 (ui_file_delete): Delete.
10357 (ui_file::ui_file): New.
10358 (null_file_isatty): Delete.
10359 (ui_file::~ui_file): New.
10360 (null_file_rewind): Delete.
10361 (ui_file::printf): New.
10362 (null_file_put): Delete.
10363 (null_file_flush): Delete.
10364 (ui_file::putstr): New.
10365 (null_file_write): Delete.
10366 (ui_file::putstrn): New.
10367 (null_file_read): Delete.
10368 (ui_file::putc): New.
10369 (null_file_fputs): Delete.
10370 (null_file_write_async_safe): Delete.
10371 (ui_file::vprintf): New.
10372 (null_file_delete): Delete.
10373 (null_file::write): New.
10374 (null_file_fseek): Delete.
10375 (null_file::puts): New.
10376 (ui_file_data): Delete.
10377 (null_file::write_async_safe): New.
10378 (gdb_flush, ui_file_isatty): Adjust.
10379 (ui_file_put, ui_file_rewind): Delete.
10380 (ui_file_write): Adjust.
10381 (ui_file_write_for_put): Delete.
10382 (ui_file_write_async_safe, ui_file_read): Adjust.
10383 (ui_file_fseek): Delete.
10384 (fputs_unfiltered): Adjust.
10385 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
10386 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
10387 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
10388 (set_ui_file_data): Delete.
10389 (string_file::~string_file, string_file::write)
10390 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
10391 (do_ui_file_as_string, ui_file_as_string): Delete.
10392 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
10393 (struct mem_file): Delete.
10394 (mem_file_new): Delete.
10395 (stdio_file::stdio_file): New.
10396 (mem_file_delete): Delete.
10397 (stdio_file::stdio_file): New.
10398 (mem_fileopen): Delete.
10399 (stdio_file::~stdio_file): New.
10400 (mem_file_rewind): Delete.
10401 (stdio_file::set_stream): New.
10402 (mem_file_put): Delete.
10403 (stdio_file::open): New.
10404 (mem_file_write): Delete.
10405 (stdio_file_magic, struct stdio_file): Delete.
10406 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
10407 (stdio_file::flush): New.
10408 (stdio_file_read): Rename to ...
10409 (stdio_file::read): ... this. Adjust.
10410 (stdio_file_write): Rename to ...
10411 (stdio_file::write): ... this. Adjust.
10412 (stdio_file_write_async_safe): Rename to ...
10413 (stdio_file::write_async_safe) ... this. Adjust.
10414 (stdio_file_fputs): Rename to ...
10415 (stdio_file::puts) ... this. Adjust.
10416 (stdio_file_isatty): Delete.
10417 (stdio_file_fseek): Delete.
10418 (stdio_file::isatty): New.
10419 (stderr_file_write): Rename to ...
10420 (stderr_file::write) ... this. Adjust.
10421 (stderr_file_fputs): Rename to ...
10422 (stderr_file::puts) ... this. Adjust.
10423 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
10424 (stderr_file::stderr_file): New.
10425 (tee_file_magic): Delete.
10426 (struct tee_file): Delete.
10427 (tee_file::tee_file): New.
10428 (tee_file_new): Delete.
10429 (tee_file::~tee_file): New.
10430 (tee_file_delete): Delete.
10431 (tee_file_flush): Rename to ...
10432 (tee_file::flush): ... this. Adjust.
10433 (tee_file_write): Rename to ...
10434 (tee_file::write): ... this. Adjust.
10435 (tee_file::write_async_safe): New.
10436 (tee_file_fputs): Rename to ...
10437 (tee_file::puts): ... this. Adjust.
10438 (tee_file_isatty): Rename to ...
10439 (tee_file::isatty): ... this. Adjust.
10440 * ui-file.h (struct obstack, struct ui_file): Don't
10441 forward-declare.
10442 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
10443 (ui_file_write_ftype)
10444 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
10445 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
10446 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
10447 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
10448 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
10449 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
10450 (set_ui_file_fseek): Delete.
10451 (ui_file_data, ui_file_delete, ui_file_rewind)
10452 (struct ui_file): New.
10453 (ui_file_up): New.
10454 (class null_file): New.
10455 (null_stream): Declare.
10456 (ui_file_write_for_put, ui_file_put): Delete.
10457 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
10458 Delete.
10459 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
10460 (gdb_fopen, tee_file_new): Delete.
10461 (struct string_file): New.
10462 (struct stdio_file): New.
10463 (stdio_file_up): New.
10464 (struct stderr_file): New.
10465 (class tee_file): New.
10466 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
10467 of a 'ui_file *'. Adjust.
10468 * ui-out.h (class ui_out) <field_stream>: Likewise.
10469 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
10470 (null_stream): Delete.
10471 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
10472 Adjust.
10473 * utils.h (struct ui_file): Delete forward declaration..
10474 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
10475 (error_stream): Take a 'string_file &' instead of a
10476 'ui_file *'.
10477 * varobj.c (varobj_value_get_print_value): Use string_file.
10478 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
10479 * gdbarch.c: Regenerate.
10480
187808b0
PA
104812017-02-02 Pedro Alves <palves@redhat.com>
10482
10483 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
10484 (gdb_pretty_print_insn): ... this. Now a free function. Add back
10485 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
10486 Adjust to call gdb_print_insn instead of
10487 gdb_disassembler::print_insn.
10488 (dump_insns, do_mixed_source_and_assembly_deprecated)
10489 (do_mixed_source_and_assembly, do_assembly_only): Add back a
10490 'gdbarch' parameter. Remove gdb_disassembler parameter.
10491 (gdb_disassembly): Don't allocate a gdb_disassembler here.
10492 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
10493 declaration.
10494 (gdb_pretty_print_insn): Re-add declaration.
10495 * record-btrace.c (btrace_insn_history): Don't allocate a
10496 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
10497
7a8eb317
SM
104982017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
10499
10500 * disasm.h (gdb_disassembly): Remove file_string parameter.
10501 * disasm.c (gdb_disassembly): Likewise.
10502 * cli/cli-cmds.c (print_disassembly): Adapt.
10503 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
10504 * stack.c (do_gdb_disassembly): Likewise.
10505
7346ef59
AA
105062017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
10507
10508 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
10509 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
10510 targets. And if the implicit value is longer than needed, extract
10511 the first bytes instead of the "least significant" ones.
10512
cd4007e4
MM
105132017-02-01 Markus Metzger <markus.t.metzger@intel.com>
10514
10515 * btrace.c (btrace_enable): Do not call btrace_add_pc for
10516 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
10517 (btrace_fetch): Assert can_access_registers_ptid.
10518 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
10519 validate_registers_access.
10520
cf77c34e
MM
105212017-02-01 Markus Metzger <markus.t.metzger@intel.com>
10522
10523 * gdbthread.h (can_access_registers_ptid): New.
10524 * thread.c (can_access_registers_ptid): New.
10525
be85ce7d
PA
105262017-02-01 Pedro Alves <palves@redhat.com>
10527
10528 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
10529
29b0b251
PA
105302017-01-31 Pedro Alves <palves@redhat.com>
10531
10532 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
10533 Fix typos.
10534
289b5b24
PA
105352017-01-31 Pedro Alves <palves@redhat.com>
10536
10537 * stack.c (print_frame_args): Remove local mem_fileopen stream,
10538 not used.
10539
b47413b4
PA
105402017-01-31 Pedro Alves <palves@redhat.com>
10541
10542 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
10543
60adb36c
PA
105442017-01-31 Pedro Alves <palves@redhat.com>
10545
10546 * common/scoped_restore.h
10547 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
10548 change the value's parameter type to T2.
10549 (make_scoped_restore): Likewise.
10550
2735833d
WT
105512017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
10552 Richard Henderson <rth@redhat.com>
10553
10554 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
10555 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
10556 GS_BASE for older kernels.
10557 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
10558 GS_BASE for older kernels.
10559 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
10560 and GS_BASE to the offset table.
10561 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
10562 system register group.
10563 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
10564 for older kernels.
10565 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
10566 amd64 ABI.
10567 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
10568 AMD64_GSBASE_REGNUM.
10569 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
10570 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
10571 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
10572 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
10573 i386/64bit-segments.xml in those rules.
10574 * features/i386/64bit-segments.xml: New file.
10575 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
10576 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
10577 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
10578 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
10579 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
10580 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
10581 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
10582 * features/i386/amd64-avx-linux.c: Regenerated.
10583 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
10584 * features/i386/amd64-avx-mpx.c: Regenerated.
10585 * features/i386/amd64-avx512-linux.c: Regenerated.
10586 * features/i386/amd64-linux.c: Regenerated.
10587 * features/i386/amd64-mpx-linux.c: Regenerated.
10588 * features/i386/i386-avx-mpx-linux.c: Regenerated.
10589 * features/i386/i386-avx-mpx.c: Regenerated.
10590 * features/i386/x32-avx-linux.c: Regenerated.
10591 * features/i386/x32-avx512-linux.c: Regenerated.
10592 * regformats/i386/amd64-avx-linux.dat: Regenerated.
10593 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
10594 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
10595 * regformats/i386/amd64-linux.dat: Regenerated.
10596 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
10597 * regformats/i386/x32-avx-linux.dat: Regenerated.
10598 * regformats/i386/x32-avx512-linux.dat: Regenerated.
10599 * regformats/i386/x32-linux.dat: Regenerated.
10600
8884e97e
WT
106012017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
10602
10603 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
10604 Set to AMD64_NUM_REGS.
10605
7005d26a
WT
106062017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
10607
10608 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
10609 that checks validity of a register number.
10610
4bd2e1b2
KC
106112017-01-27 Kees Cook <keescook@google.com>
10612
10613 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
10614 fetch_fpregs if target has fpa registers.
10615 (arm_linux_store_inferior_registers): Call store_fpregs if target
10616 has fpa registers.
10617
7cf1de6c
AA
106182017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
10619
10620 * cris-tdep.c (cris_gdbarch_init): Remove check for
10621 info.byte_order and force it to BFD_ENDIAN_LITTLE.
10622
874a1c8c
AT
106232017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
10624
10625 * corelow.c (get_core_register_section): Check for regset
10626 existence before checking for REGSET_VARIABLE_SIZE.
10627
d8b49cf0
YQ
106282017-01-26 Yao Qi <yao.qi@linaro.org>
10629 Pedro Alves <palves@redhat.com>
10630
10631 PR gdb/20939
10632 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
10633 call memory_error, save memaddr instead.
10634 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
10635 negative, cal memory_error.
10636 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
10637
658ca58c
YQ
106382017-01-26 Yao Qi <yao.qi@linaro.org>
10639
10640 * disasm-selftests.c (memory_error_test): New function.
10641 (_initialize_disasm_selftests): Register memory_error_test.
10642
79843d45
YQ
106432017-01-26 Yao Qi <yao.qi@linaro.org>
10644
10645 * Makefile.in (SFILES): Add disasm-selftests.c and
10646 selftest-arch.c.
10647 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
10648 * disasm-selftests.c: New file.
10649 * selftest-arch.c: New file.
10650 * selftest-arch.h: New file.
10651
8cafda32
YQ
106522017-01-26 Yao Qi <yao.qi@linaro.org>
10653
10654 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
10655 to bfd_arch_mep. Don't return 0 if section is not
10656 found. Call print_insn_mep.
10657
e47ad6c0
YQ
106582017-01-26 Pedro Alves <palves@redhat.com>
10659 Yao Qi <yao.qi@linaro.org>
10660
10661 * arm-tdep.c: Include "disasm.h".
10662 (gdb_print_insn_arm): Update code to get gdbarch.
10663 * disasm.c (dis_asm_read_memory): Change it to
10664 gdb_disassembler::dis_asm_read_memory.
10665 (dis_asm_memory_error): Likewise.
10666 (dis_asm_print_address): Likewise.
10667 (gdb_pretty_print_insn): Change it to
10668 gdb_disassembler::pretty_print_insn.
10669 (dump_insns): Add one argument gdb_disassemlber. All
10670 callers updated.
10671 (do_mixed_source_and_assembly_deprecated): Likewise.
10672 (do_mixed_source_and_assembly): Likewise.
10673 (do_assembly_only): Likewise.
10674 (gdb_disassembler::gdb_disassembler): New.
10675 (gdb_disassembler::print_insn): New.
10676 * disasm.h (class gdb_disassembler): New.
10677 (gdb_pretty_print_insn): Remove declaration.
10678 (gdb_disassemble_info): Likewise.
10679 * guile/scm-disasm.c (class gdbscm_disassembler): New.
10680 (gdbscm_disasm_read_memory_worker): Update.
10681 (gdbscm_disasm_read_memory): Update.
10682 (gdbscm_disasm_memory_error): Remove.
10683 (gdbscm_disasm_print_address): Remove.
10684 (gdbscm_disassembler::gdbscm_disassembler): New.
10685 (gdbscm_print_insn_from_port): Update.
10686 * mips-tdep.c: Include disasm.h.
10687 (gdb_print_insn_mips): Update code to get gdbarch.
10688 * record-btrace.c (btrace_insn_history): Update.
10689 * spu-tdep.c: Include disasm.h.
10690 (struct spu_dis_asm_data): Remove.
10691 (struct spu_dis_asm_info): New.
10692 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
10693 SPU id.
10694 (gdb_print_insn_spu): Cast disassemble_info to
10695 spu_dis_asm_info.
10696
80d75874
YQ
106972017-01-26 Yao Qi <yao.qi@linaro.org>
10698
10699 * disasm.c (do_ui_file_delete): Delete.
10700 (gdb_insn_length): Move code creating stream to ...
10701 * utils.c (null_stream): ... here. New function.
10702 * utils.h (null_stream): Declare.
10703
60685cd0
SM
107042017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
10705
10706 * python/py-inferior.c (find_thread_object): Return directly
10707 from the loop. Remove "found" variable.
10708
eb1cdb62
JB
107092017-01-21 Joel Brobecker <brobecker@adacore.com>
10710
10711 GDB 7.12.1 released.
10712
b1ce6568
SM
107132017-01-20 Simon Marchi <simon.marchi@ericsson.com>
10714
10715 * python/py-function.c (fnpy_call): Reorder declarations to have
10716 the gdbpy_enter object declared first.
10717 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
10718
6f8b0407
SM
107192017-01-20 Simon Marchi <simon.marchi@ericsson.com>
10720
fec93fb1 10721 PR python/21068
6f8b0407
SM
10722 * python/python-internal.h (PyMem_RawMalloc): Define for
10723 Python < 3.4.
10724 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
10725 PyMem_RawMalloc instead of PyMem_Malloc.
10726
78cbbba8
LM
107272017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
10728 Luis Machado <lgustavo@codesourcery.com>
10729
10730 * NEWS (New commands): Mention flash-erase.
10731 (New MI commands): Mention target-flash-erase.
10732 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
10733 command.
10734 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
10735 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
10736 * target.c (flash_erase_command): New function.
10737 (initialize_targets): Add new flash-erase command.
10738 * target.h (flash_erase_command): New declaration.
10739
2132fe85
JB
107402017-01-20 Joel Brobecker <brobecker@adacore.com>
10741
10742 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
10743 HAVE_SYS_PROCFS_H is defined.
10744
d1dff226
AH
107452017-01-18 Alan Hayward <alan.hayward@arm.com>
10746
10747 * remote.c (struct cached_reg): Change data into a pointer.
10748 * (stop_reply_dtr): Free data pointers before deleting vector.
10749 (process_stop_reply): Likewise.
10750 (remote_parse_stop_reply): Allocate space for data
10751
9890e433
AH
107522017-01-18 Alan Hayward <alan.hayward@arm.com>
10753
10754 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
10755 MAX_REGISTER_SIZE.
10756 (amd64_pseudo_register_read_value): Likewise.
10757 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
10758 (store_register_using_P): Likewise.
10759 * regcache.c (regcache_xfer_part): Likewise.
10760
7a36499a
IR
107612017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
10762
10763 Split real and pseudo registers.
10764 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
10765 (sparc32_pseudo_regnum): New enum.
10766 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
10767 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
10768 (SPARC32_CP0_REGISTERS): New macro.
10769 (sparc32_pseudo_register_name): New function.
10770 (sparc32_register_name): Use sparc32_pseudo_register_name.
10771 (sparc32_pseudo_register_type): New function.
10772 (sparc32_register_type): Use sparc32_pseudo_register_type.
10773 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
10774 pseudo register numbers.
10775 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
10776 (SPARC64_CP0_REGISTERS): New macro.
10777 (sparc64_pseudo_register_name): New function.
10778 (sparc64_register_name): Use sparc64_pseudo_register_name.
10779 (sparc64_pseudo_register_type): New function.
10780 (sparc64_register_type): Use sparc64_pseudo_register_type.
10781 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
10782 pseudo register numbers.
10783 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
10784 sparc64_store_arguments): Handle pseudo register numbers.
10785
6f8976bf
YQ
107862017-01-13 Yao Qi <yao.qi@linaro.org>
10787
10788 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
10789 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
10790 output.
10791 (getpkt_or_notif_sane_1): Likewise.
10792
e4241ace
YQ
107932017-01-13 Yao Qi <yao.qi@linaro.org>
10794
10795 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
10796 of CC. Pass "-x c++-header" instead of "-x c".
10797
3015c064
SM
107982017-01-12 Simon Marchi <simon.marchi@ericsson.com>
10799
10800 * remote.c (remote_can_async_p): Update comment.
10801
fde1b17d
SM
108022017-01-12 Simon Marchi <simon.marchi@ericsson.com>
10803
10804 * linux-nat.c (linux_nat_can_async_p): Update comment.
10805
ca1ca08b
SM
108062017-01-12 Simon Marchi <simon.marchi@ericsson.com>
10807
10808 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
10809
4ad2da73
SM
108102017-01-11 Simon Marchi <simon.marchi@ericsson.com>
10811
10812 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
10813
c8b23b3f
TT
108142017-01-10 Tom Tromey <tom@tromey.com>
10815
10816 * python/py-type.c (typy_legacy_template_argument): Update.
10817 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
10818 ~demangle_parse_info): Declare new members.
10819 (cp_demangled_name_to_comp): Return unique_ptr.
10820 (cp_demangled_name_parse_free)
10821 (make_cleanup_cp_demangled_name_parse_free)
10822 (cp_new_demangle_parse_info): Remove.
10823 * cp-support.c (do_demangled_name_parse_free_cleanup)
10824 (make_cleanup_cp_demangled_name_parse_free): Remove.
10825 (inspect_type, cp_canonicalize_string_full)
10826 (cp_canonicalize_string): Update.
10827 (mangled_name_to_comp): Change return type.
10828 (cp_class_name_from_physname, method_name_from_physname)
10829 (cp_func_name, cp_remove_params): Update.
10830 * cp-name-parser.y (demangle_parse_info): New constructor, from
10831 cp_new_demangle_parse_info.
10832 (~demangle_parse_info): New destructor, from
10833 cp_demangled_name_parse_free.
10834 (cp_merge_demangle_parse_infos): Update.
10835 (cp_demangled_name_to_comp): Change return type.
10836
1ac32117
TT
108372017-01-10 Tom Tromey <tom@tromey.com>
10838
10839 * top.c (prevent_dont_repeat): Change return type.
10840 * python/python.c (execute_gdb_command): Use std::string.
10841 Update.
10842 * guile/guile.c (gdbscm_execute_gdb_command): Update.
10843 * command.h (prevent_dont_repeat): Change return type.
10844 * breakpoint.c (bpstat_do_actions_1): Update.
10845
0cf08227
TT
108462017-01-10 Tom Tromey <tom@tromey.com>
10847
10848 * value.h (scoped_value_mark::~scoped_value_mark): Call
10849 free_to_mark.
10850 (scoped_value_mark::free_to_mark): New method.
10851 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
10852 scoped_value_mark.
10853
eb115069
TT
108542017-01-10 Tom Tromey <tom@tromey.com>
10855
10856 * python/py-value.c (valpy_dereference, valpy_referenced_value)
10857 (valpy_reference_value, valpy_const_value, valpy_get_address)
10858 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
10859 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
10860 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
10861 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
10862 scoped_value_mark.
10863 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
10864 * value.h (scoped_value_mark): New class.
10865
906768f9
TT
108662017-01-10 Tom Tromey <tom@tromey.com>
10867
10868 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
10869 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
10870 * psymtab.c (discard_psymtabs_upto): Remove.
10871 (make_cleanup_discard_psymtabs): Remove.
10872 (struct psymtab_state): Remove.
10873
bef155c3
TT
108742017-01-10 Tom Tromey <tom@tromey.com>
10875
10876 * record-full.c (record_full_save_cleanups): Remove.
10877 (record_full_save): Use gdb::unlinker.
10878 * gcore.c (do_bfd_delete_cleanup): Remove.
10879 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
10880 cleanups.
10881 * dwarf2read.c (unlink_if_set): Remove.
10882 (write_psymtabs_to_index): Use gdb::unlinker.
10883 * common/gdb_unlinker.h: New file.
10884
192b62ce
TT
108852017-01-10 Tom Tromey <tom@tromey.com>
10886
10887 * windows-tdep.c (windows_xfer_shared_library): Update.
10888 * windows-nat.c (windows_make_so): Update.
10889 * utils.h (make_cleanup_bfd_unref): Remove.
10890 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
10891 * symfile.h (symfile_bfd_open)
10892 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
10893 * symfile.c (read_symbols, symbol_file_add)
10894 (separate_debug_file_exists): Update.
10895 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
10896 (generic_load, reread_symbols): Update.
10897 * symfile-mem.c (symbol_file_add_from_memory): Update.
10898 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
10899 (spu_symbol_file_add_from_memory): Update.
10900 * solist.h (struct target_so_ops) <bfd_open>: Return
10901 gdb_bfd_ref_ptr.
10902 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
10903 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
10904 gdb_bfd_ref_ptr.
10905 (solib_map_sections, reload_shared_libraries_1): Update.
10906 * solib-svr4.c (enable_break): Update.
10907 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
10908 * solib-frv.c (enable_break2): Update.
10909 * solib-dsbt.c (enable_break): Update.
10910 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
10911 gdb_bfd_ref_ptr.
10912 (darwin_solib_get_all_image_info_addr_at_init): Update.
10913 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
10914 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
10915 * record-full.c (record_full_save): Update.
10916 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
10917 * procfs.c (insert_dbx_link_bpt_in_file): Update.
10918 * minidebug.c (find_separate_debug_file_in_section): Return
10919 gdb_bfd_ref_ptr.
10920 * machoread.c (macho_add_oso_symfile): Change abfd to
10921 gdb_bfd_ref_ptr.
10922 (macho_symfile_read_all_oso): Update.
10923 (macho_check_dsym): Return gdb_bfd_ref_ptr.
10924 (macho_symfile_read): Update.
10925 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
10926 (jit_bfd_try_read_symtab): Update.
10927 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
10928 (gdb_bfd_openw, gdb_bfd_openr_iovec)
10929 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
10930 gdb_bfd_ref_ptr.
10931 (gdb_bfd_ref_policy): New struct.
10932 (gdb_bfd_ref_ptr): New typedef.
10933 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
10934 (gdb_bfd_openw, gdb_bfd_openr_iovec)
10935 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
10936 gdb_bfd_ref_ptr.
10937 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
10938 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
10939 (gcore_command): Update.
10940 * exec.c (exec_file_attach): Update.
10941 * elfread.c (elf_symfile_read): Update.
10942 * dwarf2read.c (dwarf2_get_dwz_file): Update.
10943 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
10944 (open_and_init_dwo_file): Update.
10945 (open_dwp_file): Return gdb_bfd_ref_ptr.
10946 (open_and_init_dwp_file): Update.
10947 * corelow.c (core_open): Update.
10948 * compile/compile-object-load.c (compile_object_load): Update.
10949 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
10950 * coffread.c (coff_symfile_read): Update.
10951 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
10952 gdb_bfd_ref_ptr. Rename.
10953 (dump_bfd_file, restore_command): Update.
10954 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
10955 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
10956 (find_separate_debug_file_by_buildid): Update.
10957
50315b21
TT
109582017-01-10 Tom Tromey <tom@tromey.com>
10959
10960 * common/gdb_ref_ptr.h: New file.
10961 * python/py-ref.h (struct gdbpy_ref_policy): New.
10962 (gdbpy_ref): Now a typedef.
10963
fc4007c9
TT
109642017-01-10 Tom Tromey <tom@tromey.com>
10965
10966 * utils.h (make_cleanup_htab_delete): Don't declare.
10967 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
10968 Remove.
10969 * linespec.c (decode_compound_collector): Add constructor,
10970 destructor.
10971 (lookup_prefix_sym): Remove cleanup.
10972 (symtab_collector): Add constructor, destructor.
10973 (collect_symtabs_from_filename): Remove cleanup.
10974 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
10975 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
10976 Use htab_up.
10977 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
10978 * dwarf2read.c (dw2_expand_symtabs_matching)
10979 (dw2_map_symbol_filenames, dwarf_decode_macros)
10980 (write_psymtabs_to_index): Use htab_up.
10981 * dwarf2loc.c (func_verify_no_selftailcall)
10982 (call_site_find_chain_1, func_verify_no_selftailcall)
10983 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
10984 std::vector, gdb::unique_xmalloc_ptr.
10985 (call_sitep): Remove typedef.
10986 (dwarf2_locexpr_baton_eval): Remove unused variable.
10987
8dbcee67
TT
109882017-01-10 Tom Tromey <tom@tromey.com>
10989
10990 * python/python-internal.h (make_cleanup_py_decref)
10991 (make_cleanup_py_xdecref): Don't declare.
10992 * python/py-utils.c (py_decref, make_cleanup_py_decref)
10993 (py_xdecref, make_cleanup_py_xdecref): Remove.
10994
13df46cc
TT
109952017-01-10 Tom Tromey <tom@tromey.com>
10996
10997 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
10998 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
10999
06fc9bf7
TT
110002017-01-10 Tom Tromey <tom@tromey.com>
11001
11002 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
11003
830a4934
TT
110042017-01-10 Tom Tromey <tom@tromey.com>
11005
11006 * python/py-utils.c (unicode_to_encoded_string)
11007 (python_string_to_target_string)
11008 (python_string_to_target_python_string)
11009 (python_string_to_host_string, gdbpy_obj_to_string)
11010 (get_addr_from_python): Use gdbpy_ref.
11011
4586d543
TT
110122017-01-10 Tom Tromey <tom@tromey.com>
11013
11014 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
11015 gdbpy_ref.
11016
59876f8f
TT
110172017-01-10 Tom Tromey <tom@tromey.com>
11018
11019 * python/python.c (eval_python_command, gdbpy_decode_line)
11020 (gdbpy_run_events, gdbpy_start_type_printers)
11021 (gdbpy_apply_type_printers): Use gdbpy_ref.
11022
97d83487
TT
110232017-01-10 Tom Tromey <tom@tromey.com>
11024
11025 * python/py-param.c (get_doc_string, compute_enum_values): Use
11026 gdbpy_ref.
11027
9205649a
TT
110282017-01-10 Tom Tromey <tom@tromey.com>
11029
11030 * python/py-inferior.c (find_thread_object, build_inferior_list):
11031 Use gdbpy_ref.
11032
74c49d45
TT
110332017-01-10 Tom Tromey <tom@tromey.com>
11034
11035 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
11036
16361ffb
TT
110372017-01-10 Tom Tromey <tom@tromey.com>
11038
11039 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
11040 gdbpy_ref.
11041
905f2cca
TT
110422017-01-10 Tom Tromey <tom@tromey.com>
11043
11044 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
11045 extra incref.
11046 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
11047 Use gdbpy_ref.
11048
64081434
TT
110492017-01-10 Tom Tromey <tom@tromey.com>
11050
11051 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
11052 gdbpy_ref.
11053
59e9e831
TT
110542017-01-10 Tom Tromey <tom@tromey.com>
11055
11056 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
11057 decref results of PyArg_ParseTupleAndKeywords.
11058
9de10f6d
TT
110592017-01-10 Tom Tromey <tom@tromey.com>
11060
11061 * python/python.c (python_run_simple_file): Use
11062 unique_xmalloc_ptr, gdbpy_ref.
11063
2bd5759d
TT
110642017-01-10 Tom Tromey <tom@tromey.com>
11065
11066 * python/py-prettyprint.c (print_stack_unless_memory_error)
11067 (print_string_repr, print_children): Use gdbpy_ref.
11068 (dummy_python_frame): New class.
11069 (dummy_python_frame::dummy_python_frame): Rename from
11070 push_dummy_python_frame.
11071 (py_restore_tstate): Remove.
11072
3b4e0e01
TT
110732017-01-10 Tom Tromey <tom@tromey.com>
11074
11075 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
11076
17a22718
TT
110772017-01-10 Tom Tromey <tom@tromey.com>
11078
11079 * python/python.c (ensure_python_env, restore_python_env):
11080 Remove.
11081 * python/python-internal.h (ensure_python_env): Don't declare.
11082 * varobj.h (varobj_ensure_python_env): Don't declare.
11083 * varobj.c (varobj_ensure_python_env): Remove.
11084
68cdc557
TT
110852017-01-10 Tom Tromey <tom@tromey.com>
11086
11087 * varobj.c (varobj_value_get_print_value): Use
11088 gdbpy_enter_varobj.
11089
1eba6383
TT
110902017-01-10 Tom Tromey <tom@tromey.com>
11091
11092 * python/py-prettyprint.c (print_string_repr, print_children):
11093 Update.
11094 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
11095 of "encoding".
11096 * varobj.c (varobj_value_get_print_value): Update.
11097 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
11098
bde7b3e3
TT
110992017-01-10 Tom Tromey <tom@tromey.com>
11100
11101 * varobj.c (varobj_get_display_hint)
11102 (dynamic_varobj_has_child_method, install_new_value_visualizer)
11103 (varobj_set_visualizer, free_variable): Use
11104 gdbpy_enter_varobj.
11105
a7785f8c
TT
111062017-01-10 Tom Tromey <tom@tromey.com>
11107
11108 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
11109 (do_finish_initialization): New function. Use gdbpy_ref.
11110 (gdbpy_finish_initialization): Use gdbpy_enter. Call
11111 do_finish_initialization.
11112
2865bfce
TT
111132017-01-10 Tom Tromey <tom@tromey.com>
11114
11115 * python/py-param.c (get_set_value, get_show_value): Use
11116 gdbpy_enter, gdbpy_ref.
11117
0e9dcc75
TT
111182017-01-10 Tom Tromey <tom@tromey.com>
11119
11120 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
11121
12a5cedd
TT
111222017-01-10 Tom Tromey <tom@tromey.com>
11123
11124 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
11125
788f2586
TT
111262017-01-10 Tom Tromey <tom@tromey.com>
11127
11128 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
11129 Use gdbpy_enter_varobj.
11130
6cd67bea
TT
111312017-01-10 Tom Tromey <tom@tromey.com>
11132
11133 * varobj.c (gdbpy_enter_varobj): New constructor.
11134 * python/python-internal.h (gdbpy_enter_varobj): New class.
11135 * python/py-varobj.c (py_varobj_get_iterator): Use
11136 gdbpy_enter_varobj.
11137
14b122bf
TT
111382017-01-10 Tom Tromey <tom@tromey.com>
11139
11140 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
11141 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
11142 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
11143 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
11144 unique_xmalloc_ptr.
11145 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
11146
bf1ca3b9
TT
111472017-01-10 Tom Tromey <tom@tromey.com>
11148
11149 * python/py-xmethods.c (invoke_match_method): Use
11150 gdbpy_ref.
11151
572a5524
TT
111522017-01-10 Tom Tromey <tom@tromey.com>
11153
11154 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
11155 gdbpy_enter, gdbpy_ref.
11156
396a78b6
TT
111572017-01-10 Tom Tromey <tom@tromey.com>
11158
11159 * python/python.c (python_interactive_command): Use gdbpy_enter.
11160
a88b13c7
TT
111612017-01-10 Tom Tromey <tom@tromey.com>
11162
11163 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
11164 gdbpy_ref.
11165
e9f0c363
TT
111662017-01-10 Tom Tromey <tom@tromey.com>
11167
11168 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
11169 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
11170
6349f452
TT
111712017-01-10 Tom Tromey <tom@tromey.com>
11172
11173 * utils.h (htab_deleter): New struct.
11174 (htab_up): New typedef.
11175 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
11176 gdbpy_enter, gdbpy_ref, htab_up.
11177
c0171de6
TT
111782017-01-10 Tom Tromey <tom@tromey.com>
11179
11180 * python/py-unwind.c (pending_frame_invalidate): Remove.
11181 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
11182
f18e226f
TT
111832017-01-10 Tom Tromey <tom@tromey.com>
11184
11185 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
11186 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
11187
c57af3f1
TT
111882017-01-10 Tom Tromey <tom@tromey.com>
11189
11190 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
11191
60e600ec
TT
111922017-01-10 Tom Tromey <tom@tromey.com>
11193
11194 * python/python.c (gdbpy_eval_from_control_command)
11195 (gdbpy_source_script, gdbpy_run_events)
11196 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
11197 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
11198 gdbpy_enter.
11199
bf7da5b0
TT
112002017-01-10 Tom Tromey <tom@tromey.com>
11201
11202 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
11203
2d38bced
TT
112042017-01-10 Tom Tromey <tom@tromey.com>
11205
11206 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
11207
07bc7329
TT
112082017-01-10 Tom Tromey <tom@tromey.com>
11209
11210 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
11211 (python_on_inferior_call_pre, python_on_inferior_call_post)
11212 (python_on_memory_change, python_on_register_change)
11213 (python_inferior_exit, python_new_objfile, add_thread_object)
11214 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
11215
6e7c365e
TT
112162017-01-10 Tom Tromey <tom@tromey.com>
11217
11218 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
11219 (bpfinishpy_handle_exit): Use gdbpy_enter.
11220
6ba0cd40
TT
112212017-01-10 Tom Tromey <tom@tromey.com>
11222
11223 * python/py-cmd.c (cmdpy_destroyer)
11224 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
11225 gdbpy_enter.
11226
de2dc875
TT
112272017-01-10 Tom Tromey <tom@tromey.com>
11228
11229 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
11230 gdbpy_enter.
11231 (gdbpy_breakpoint_has_cond): Likewise.
11232
4ecee2c4
TT
112332017-01-10 Tom Tromey <tom@tromey.com>
11234
11235 * python/python.c (gdbpy_enter): New constructor.
11236 (~gdbpy_enter): New destructor.
11237 (restore_python_env, ensure_python_env): Rewrite.
11238 * python/python-internal.h (gdbpy_enter): New class.
11239
37fce74f
TT
112402017-01-10 Tom Tromey <tom@tromey.com>
11241
11242 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
11243
53a0cca3
TT
112442017-01-10 Tom Tromey <tom@tromey.com>
11245
11246 * python/py-value.c (value_has_field, get_field_flag)
11247 (get_field_type, valpy_getitem, convert_value_from_python): Use
11248 gdbpy_ref.
11249
ff3724f5
TT
112502017-01-10 Tom Tromey <tom@tromey.com>
11251
11252 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
11253 gdbpy_ref.
11254
0700aea5
TT
112552017-01-10 Tom Tromey <tom@tromey.com>
11256
11257 * python/py-prettyprint.c (search_pp_list)
11258 (find_pretty_printer_from_objfiles)
11259 (find_pretty_printer_from_progspace)
11260 (find_pretty_printer_from_gdb, find_pretty_printer)
11261 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
11262 gdbpy_ref.
11263
1bb44c9f
TT
112642017-01-10 Tom Tromey <tom@tromey.com>
11265
11266 * python/py-param.c (call_doc_function): Use gdbpy_ref.
11267
87ce03fd
TT
112682017-01-10 Tom Tromey <tom@tromey.com>
11269
11270 * python/py-linetable.c (build_line_table_tuple_from_pcs)
11271 (ltpy_get_all_source_lines): Use gdbpy_ref.
11272
ee0a3fb8
TT
112732017-01-10 Tom Tromey <tom@tromey.com>
11274
11275 * python/py-framefilter.c (extract_sym, extract_value)
11276 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
11277 gdbpy_ref.
11278
bf2a52fa
TT
112792017-01-10 Tom Tromey <tom@tromey.com>
11280
11281 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
11282
f59fe7f8
TT
112832017-01-10 Tom Tromey <tom@tromey.com>
11284
11285 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
11286
80bd970a
TT
112872017-01-10 Tom Tromey <tom@tromey.com>
11288
11289 * python/py-function.c (convert_values_to_python, fnpy_init): Use
11290 gdbpy_ref.
11291
d1b3de2e
TT
112922017-01-10 Tom Tromey <tom@tromey.com>
11293
11294 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
11295
3bb43384
TT
112962017-01-10 Tom Tromey <tom@tromey.com>
11297
11298 * python/py-type.c (convert_field, make_fielditem, typy_fields)
11299 (typy_range): Use gdbpy_ref.
11300
abf5651e
TT
113012017-01-10 Tom Tromey <tom@tromey.com>
11302
11303 * python/py-threadevent.c (create_thread_event_object): Use
11304 gdbpy_ref.
11305 * python/py-stopevent.c (create_stop_event_object): Simplify.
11306 (emit_stop_event): Use gdbpy_ref.
11307 * python/py-signalevent.c (create_signal_event_object): Use
11308 gdbpy_ref.
11309 * python/py-newobjfileevent.c (create_new_objfile_event_object)
11310 (emit_new_objfile_event, create_clear_objfiles_event_object)
11311 (emit_clear_objfiles_event): Use gdbpy_ref.
11312 * python/py-infevents.c (create_inferior_call_event_object)
11313 (create_register_changed_event_object)
11314 (create_memory_changed_event_object, emit_inferior_call_event)
11315 (emit_memory_changed_event, emit_register_changed_event): Use
11316 gdbpy_ref.
11317 * python/py-exitedevent.c (create_exited_event_object)
11318 (emit_exited_event): Use gdbpy_ref.
11319 * python/py-event.h (evpy_emit_event): Remove
11320 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
11321 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
11322 * python/py-continueevent.c (emit_continue_event): Use
11323 gdbpy_ref.
11324 * python/py-breakpoint.c (gdbpy_breakpoint_created)
11325 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
11326 gdbpy_ref.
11327 * python/py-bpevent.c (create_breakpoint_event_object): Use
11328 gdbpy_ref.
11329
a68ff33e
TT
113302017-01-10 Tom Tromey <tom@tromey.com>
11331
11332 * python/py-ref.h: New file.
11333
7becfd03
SM
113342017-01-10 Simon Marchi <simon.marchi@ericsson.com>
11335
11336 * cli-out.c (cli_ui_out::do_redirect): Change return type to
11337 void.
11338 * cli-out.h (cli_ui_out::do_redirect): Likewise.
11339 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
11340 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
11341 * ui-out.c (ui_out::redirect): Likewise.
11342 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
11343 * cli/cli-logging.c (set_logging_redirect): Update call site of
11344 ui_out::redirect.
11345 (handle_redirections): Likewise.
11346 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
11347 * top.c (execute_command_to_string): Likewise.
11348 * utils.c (do_ui_out_redirect_pop): Likewise.
11349
df294654
SM
113502017-01-10 Simon Marchi <simon.marchi@ericsson.com>
11351
11352 * stack.c (_initialize_stack): Update "frame" command help message.
11353
f5e6296e
IB
113542017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
11355
11356 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
11357
0e2d6fa6
YQ
113582017-01-06 Yao Qi <yao.qi@linaro.org>
11359
11360 * x86-linux-nat.h: Include gdb_proc_service.h.
11361
44d6d3f9
YQ
113622017-01-06 Yao Qi <yao.qi@linaro.org>
11363
11364 * ser-base.h: Include serial.h.
11365
656731fe
YQ
113662017-01-06 Yao Qi <yao.qi@linaro.org>
11367
11368 * ppc-linux-tdep.h: Include ppc-tdep.h.
11369
1ca8f924
YQ
113702017-01-06 Yao Qi <yao.qi@linaro.org>
11371
11372 * nat/amd64-linux-siginfo.h: Include signal.h.
11373
bc3008c4
YQ
113742017-01-06 Yao Qi <yao.qi@linaro.org>
11375
11376 * nat/aarch64-linux-hw-point.h: Include break-common.h.
11377
66c80d03
YQ
113782017-01-06 Yao Qi <yao.qi@linaro.org>
11379
11380 * mi/mi-parse.h: Include mi-cmds.h.
11381
051d2dda
YQ
113822017-01-06 Yao Qi <yao.qi@linaro.org>
11383
11384 * inf-loop.c: Don't include "target.h".
11385 * inf-loop.h: Include it here.
11386
8018d34f
YQ
113872017-01-06 Yao Qi <yao.qi@linaro.org>
11388
11389 * dfp.h: Include "dboulest.h" and "expression.h".
11390
c0b8369c
YQ
113912017-01-06 Yao Qi <yao.qi@linaro.org>
11392
11393 * ax-gdb.h: Include "ax.h".
11394
ad5cba2a
YQ
113952017-01-06 Yao Qi <yao.qi@linaro.org>
11396
11397 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
11398 with nat/gdb_ptrace.h.
11399
1c33cd7f
YQ
114002017-01-05 Yao Qi <yao.qi@linaro.org>
11401
11402 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
11403 new line.
11404 (mips64_fbsd_sigframe_init): Likewise.
11405
c988ac1d
JB
114062017-01-04 John Baldwin <jhb@FreeBSD.org>
11407
11408 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
11409 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
11410
b268007c
JB
114112017-01-04 John Baldwin <jhb@FreeBSD.org>
11412
11413 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
11414 * NEWS: Mention new FreeBSD/mips native configuration.
11415 * config/mips/fbsd.mh: New file.
11416 * configure.host: Add mips*-*-freebsd*.
11417 * mips-fbsd-nat.c: New file.
11418
387360da
JB
114192017-01-04 John Baldwin <jhb@FreeBSD.org>
11420
11421 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
11422 (ALLDEPFILES): Add mips-fbsd-tdep.c.
11423 * NEWS: Mention new FreeBSD/mips target.
11424 * configure.tgt: Add mips*-*-freebsd*.
11425 * mips-fbsd-tdep.c: New file.
11426 * mips-fbsd-tdep.h: New file.
11427
2aaaf250
YQ
114282017-01-04 Yao Qi <yao.qi@linaro.org>
11429
11430 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
11431 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
11432
61baf725
JB
114332017-01-01 Joel Brobecker <brobecker@adacore.com>
11434
6dbb839a 11435 Update copyright year range in all GDB files.
61baf725 11436
c113e7ff 114372017-01-01 Joel Brobecker <brobecker@adacore.com>
ce0db137 11438
c113e7ff 11439 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
ce0db137 11440
c113e7ff 11441For older changes see ChangeLog-2016.
c906108c
SS
11442\f
11443Local Variables:
11444mode: change-log
11445left-margin: 8
11446fill-column: 74
11447version-control: never
57da7796 11448coding: utf-8
c906108c 11449End:
This page took 2.963492 seconds and 4 git commands to generate.