Use stable sort for ld -r relocs
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
abc56d60
PA
12015-08-24 Pedro Alves <palves@redhat.com>
2
3 * defs.h (maybe_quit): Declare.
4 (QUIT): Now calls maybe_quit.
5 * event-loop.c (clear_async_signal_handler)
6 (async_signal_handler_is_marked): New functions.
7 * event-loop.h (async_signal_handler_is_marked)
8 (clear_async_signal_handler): New declarations.
9 * remote.c (remote_check_pending_interrupt): New function.
10 (interrupt_query): Use make_cleanup_restore_target_terminal. No
11 longer check whether the target is async. If waiting for a stop
12 reply, and a Ctrl-C as been sent to the target, offer to
13 disconnect, and throw TARGET_CLOSE_ERROR instead of a quit.
14 Otherwise do not disconnect and throw a quit.
15 (_initialize_remote): Install remote_check_pending_interrupt as
16 to_check_pending_interrupt.
17 * target.c (target_check_pending_interrupt): New function.
18 * target.h (struct target_ops) <to_check_pending_interrupt>: New
19 field.
20 (target_check_pending_interrupt): New declaration.
21 * utils.c (maybe_quit): New function.
22 * target-delegates.c: Regenerate.
23
dfe7f77c
YQ
242015-08-25 Yao Qi <yao.qi@linaro.org>
25
26 * nat/aarch64-linux-hw-point.c (debug_reg_change_callback):
27 Rename local variable pid to tid, and get lwpid of lwp. Update
28 debug output.
29
63e43d3a
PMR
302015-08-25 Pierre-Marie de Rodat <derodat@adacore.com>
31
32 * ada-lang.c (ada_read_var_value): Add a var_block argument
33 and pass it to default_read_var_value.
34 * block.c (block_static_link): New accessor.
35 * block.h (block_static_link): Declare it.
36 * buildsym.c (finish_block_internal): Add a static_link
37 argument. If there is a static link, associate it to the new
38 block.
39 (finish_block): Add a static link argument and pass it to
40 finish_block_internal.
41 (end_symtab_get_static_block): Update calls to finish_block and
42 to finish_block_internal.
43 (end_symtab_with_blockvector): Update call to
44 finish_block_internal.
45 * buildsym.h: Forward-declare struct dynamic_prop.
46 (struct context_stack): Add a static_link field.
47 (finish_block): Add a static link argument.
48 * c-exp.y: Remove an obsolete comment (evaluation of variables
49 already start from the selected frame, and now they climb *up*
50 the call stack) and propagate the block information to the
51 produced expression.
52 * d-exp.y: Likewise.
53 * f-exp.y: Likewise.
54 * go-exp.y: Likewise.
55 * jv-exp.y: Likewise.
56 * m2-exp.y: Likewise.
57 * p-exp.y: Likewise.
58 * coffread.c (coff_symtab_read): Update calls to finish_block.
59 * dbxread.c (process_one_symbol): Likewise.
60 * xcoffread.c (read_xcoff_symtab): Likewise.
61 * compile/compile-c-symbols.c (convert_one_symbol): Promote the
62 "sym" parameter to struct block_symbol, update its uses and pass
63 its block to calls to read_var_value.
64 (convert_symbol_sym): Update the calls to convert_one_symbol.
65 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update
66 call to read_var_value.
67 * dwarf2loc.c (block_op_get_frame_base): New.
68 (dwarf2_block_frame_base_locexpr_funcs): Implement the
69 get_frame_base method.
70 (dwarf2_block_frame_base_loclist_funcs): Likewise.
71 (dwarf2locexpr_baton_eval): Add a frame argument and use it
72 instead of the selected frame in order to evaluate the
73 expression.
74 (dwarf2_evaluate_property): Add a frame argument. Update call
75 to dwarf2_locexpr_baton_eval to provide a frame in available and
76 to handle the absence of address stack.
77 * dwarf2loc.h (dwarf2_evaluate_property): Add a frame argument.
78 * dwarf2read.c (attr_to_dynamic_prop): Add a forward
79 declaration.
80 (read_func_scope): Record any available static link description.
81 Update call to finish_block.
82 (read_lexical_block_scope): Update call to finish_block.
83 * findvar.c (follow_static_link): New.
84 (get_hosting_frame): New.
85 (default_read_var_value): Add a var_block argument. Use
86 get_hosting_frame to handle non-local references.
87 (read_var_value): Add a var_block argument and pass it to the
88 LA_READ_VAR_VALUE method.
89 * gdbtypes.c (resolve_dynamic_range): Update calls to
90 dwarf2_evaluate_property.
91 (resolve_dynamic_type_internal): Likewise.
92 * guile/scm-frame.c (gdbscm_frame_read_var): Update call to
93 read_var_value, passing it the block coming from symbol lookup.
94 * guile/scm-symbol.c (gdbscm_symbol_value): Update call to
95 read_var_value (TODO).
96 * infcmd.c (finish_command_continuation): Update call to
97 read_var_value, passing it the block coming from symbol lookup.
98 * infrun.c (insert_exception_resume_breakpoint): Likewise.
99 * language.h (struct language_defn): Add a var_block argument to
100 the LA_READ_VAR_VALUE method.
101 * objfiles.c (struct static_link_htab_entry): New.
102 (static_link_htab_entry_hash): New.
103 (static_link_htab_entry_eq): New.
104 (objfile_register_static_link): New.
105 (objfile_lookup_static_link): New.
106 (free_objfile): Free the STATIC_LINKS hashed map if needed.
107 * objfiles.h: Include hashtab.h.
108 (struct objfile): Add a static_links field.
109 (objfile_register_static_link): New.
110 (objfile_lookup_static_link): New.
111 * printcmd.c (print_variable_and_value): Update call to
112 read_var_value.
113 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
114 * python/py-frame.c (frapy_read_var): Update call to
115 read_var_value, passing it the block coming from symbol lookup.
116 * python/py-framefilter.c (extract_sym): Add a sym_block
117 parameter and set the pointed value to NULL (TODO).
118 (enumerate_args): Update call to extract_sym.
119 (enumerate_locals): Update calls to extract_sym and to
120 read_var_value.
121 * python/py-symbol.c (sympy_value): Update call to
122 read_var_value (TODO).
123 * stack.c (read_frame_local): Update call to read_var_value.
124 (read_frame_arg): Likewise.
125 (return_command): Likewise.
126 * symtab.h (struct symbol_block_ops): Add a get_frame_base
127 method.
128 (struct symbol): Add a block field.
129 (SYMBOL_BLOCK): New accessor.
130 * valops.c (value_of_variable): Remove frame/block handling and
131 pass the block argument to read_var_value, which does this job
132 now.
133 (value_struct_elt_for_reference): Update calls to
134 read_var_value.
135 (value_of_this): Pass the block found to read_var_value.
136 * value.h (read_var_value): Add a var_block argument.
137 (default_read_var_value): Likewise.
138
ed8b7b42
YQ
1392015-08-25 Yao Qi <yao.qi@linaro.org>
140
141 * aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
142 * nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
143 * nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
144
db3cb7cb
YQ
1452015-08-25 Yao Qi <yao.qi@linaro.org>
146
147 * Makefile.in (aarch64-liunx.o): New rule.
148 (HFILES_NO_SRCDIR): Add aarch64-linux.h.
149 * config/aarch64/linux.mh (NAT_FILE): Add aarch64-linux.o.
150 * aarch64-linux-nat.c: Include nat/aarch64-linux.h.
151 * aarch64-linux-nat.c (aarch64_get_debug_reg_state): Make it
152 extern.
153 (aarch64_linux_prepare_to_resume): Move it nat/aarch64-linux.c.
154 * nat/aarch64-linux-hw-point.h (aarch64_debug_reg_state): Declare
155 * nat/aarch64-linux.c: New file.
156 * nat/aarch64-linux.h: New file.
157
f6011a1c
YQ
1582015-08-25 Yao Qi <yao.qi@linaro.org>
159
160 * aarch64-linux-nat.c (aarch64_linux_prepare_to_resume): Use
161 lwp_arch_private_info and ptid_of_lwp.
162
5e35436e
YQ
1632015-08-25 Yao Qi <yao.qi@linaro.org>
164
165 * aarch64-linux-nat.c (struct arch64_dr_update_callback_param):
166 Move it to nat/aarch64-linux-hw-point.c.
167 (debug_reg_change_callback): Likewise.
168 (aarch64_notify_debug_reg_change): :Likewise.
169 * nat/aarch64-linux-hw-point.c: Include nat/linux-nat.h.
170 (aarch64_dr_update_callback_param): New.
171 (debug_reg_change_callback): New function.
172 (aarch64_notify_debug_reg_change): Likewise.
173 * nat/aarch64-linux-hw-point.h (aarch64_notify_debug_reg_change):
174 Remove the declaration.
175
4a8a7965
YQ
1762015-08-25 Yao Qi <yao.qi@linaro.org>
177
178 * aarch64-linux-nat.c (aarch64_notify_debug_reg_change):
179 Call current_lwp_ptid.
180
32a271ee
YQ
1812015-08-25 Yao Qi <yao.qi@linaro.org>
182
183 * aarch64-linux-nat.c (debug_reg_change_callback): Use
184 debug_printf.
185
5e137137
YQ
1862015-08-25 Yao Qi <yao.qi@linaro.org>
187
188 * aarch64-linux-nat.c (debug_reg_change_callback): Call
189 ptid_get_pid rather than ptid_get_lwp.
190
73b8c1fd
PA
1912015-08-24 Pedro Alves <palves@redhat.com>
192
193 * NEWS (New commands): Mention set/show remote
194 multiprocess-extensions-packet.
195 * remote.c (remote_query_supported): Only tell the server to use
196 the multiprocess extensions if the user hasn't force-disabled them
197 with "set remote multiprocess-extensions-packet off".
198
4a626d0a
PA
1992015-08-24 Pedro Alves <palves@redhat.com>
200
201 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
202 1029a8112290f6eee9d7878a391c49db42c999bd.
203 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4:
204 Regenerate.
205 * gnulib/import/Makefile.am: Update.
206 * gnulib/import/Makefile.in: Update.
207 * gnulib/import/alloca.in.h: Update.
208 * gnulib/import/basename-lgpl.c: Update.
209 * gnulib/import/canonicalize-lgpl.c: Update.
210 * gnulib/import/config.charset: Update.
211 * gnulib/import/dirent.in.h: Update.
212 * gnulib/import/dirfd.c: Update.
213 * gnulib/import/dirname-lgpl.c: Update.
214 * gnulib/import/dirname.h: Update.
215 * gnulib/import/dosname.h: Update.
216 * gnulib/import/errno.in.h: Update.
217 * gnulib/import/extra/snippet/arg-nonnull.h: Update.
218 * gnulib/import/extra/snippet/c++defs.h: Update.
219 * gnulib/import/extra/snippet/warn-on-use.h: Update.
220 * gnulib/import/extra/update-copyright: Update.
221 * gnulib/import/float+.h: Update.
222 * gnulib/import/float.c: Update.
223 * gnulib/import/float.in.h: Update.
224 * gnulib/import/fnmatch.c: Update.
225 * gnulib/import/fnmatch.in.h: Update.
226 * gnulib/import/fnmatch_loop.c: Update.
227 * gnulib/import/fpucw.h: Update.
228 * gnulib/import/frexp.c: Update.
229 * gnulib/import/frexpl.c: Update.
230 * gnulib/import/gettimeofday.c: Update.
231 * gnulib/import/inttypes.in.h: Update.
232 * gnulib/import/isnan.c: Update.
233 * gnulib/import/isnand-nolibm.h: Update.
234 * gnulib/import/isnand.c: Update.
235 * gnulib/import/isnanl-nolibm.h: Update.
236 * gnulib/import/isnanl.c: Update.
237 * gnulib/import/itold.c: Update.
238 * gnulib/import/localcharset.c: Update.
239 * gnulib/import/localcharset.h: Update.
240 * gnulib/import/lstat.c: Update.
241 * gnulib/import/m4/00gnulib.m4: Update.
242 * gnulib/import/m4/absolute-header.m4: Update.
243 * gnulib/import/m4/alloca.m4: Update.
244 * gnulib/import/m4/canonicalize.m4: Update.
245 * gnulib/import/m4/codeset.m4: Update.
246 * gnulib/import/m4/configmake.m4: Update.
247 * gnulib/import/m4/dirent_h.m4: Update.
248 * gnulib/import/m4/dirfd.m4: Update.
249 * gnulib/import/m4/dirname.m4: Update.
250 * gnulib/import/m4/double-slash-root.m4: Update.
251 * gnulib/import/m4/eealloc.m4: Update.
252 * gnulib/import/m4/errno_h.m4: Update.
253 * gnulib/import/m4/exponentd.m4: Update.
254 * gnulib/import/m4/exponentl.m4: Update.
255 * gnulib/import/m4/extensions.m4: Update.
256 * gnulib/import/m4/extern-inline.m4: Update.
257 * gnulib/import/m4/fcntl-o.m4: Update.
258 * gnulib/import/m4/float_h.m4: Update.
259 * gnulib/import/m4/fnmatch.m4: Update.
260 * gnulib/import/m4/fpieee.m4: Update.
261 * gnulib/import/m4/frexp.m4: Update.
262 * gnulib/import/m4/frexpl.m4: Update.
263 * gnulib/import/m4/gettimeofday.m4: Update.
264 * gnulib/import/m4/glibc21.m4: Update.
265 * gnulib/import/m4/gnulib-cache.m4: Update.
266 * gnulib/import/m4/gnulib-common.m4: Update.
267 * gnulib/import/m4/gnulib-comp.m4: Update.
268 * gnulib/import/m4/gnulib-tool.m4: Update.
269 * gnulib/import/m4/include_next.m4: Update.
270 * gnulib/import/m4/inttypes-pri.m4: Update.
271 * gnulib/import/m4/inttypes.m4: Update.
272 * gnulib/import/m4/isnand.m4: Update.
273 * gnulib/import/m4/isnanl.m4: Update.
274 * gnulib/import/m4/largefile.m4: Update.
275 * gnulib/import/m4/localcharset.m4: Update.
276 * gnulib/import/m4/locale-fr.m4: Update.
277 * gnulib/import/m4/locale-ja.m4: Update.
278 * gnulib/import/m4/locale-zh.m4: Update.
279 * gnulib/import/m4/longlong.m4: Update.
280 * gnulib/import/m4/lstat.m4: Update.
281 * gnulib/import/m4/malloc.m4: Update.
282 * gnulib/import/m4/malloca.m4: Update.
283 * gnulib/import/m4/math_h.m4: Update.
284 * gnulib/import/m4/mbrtowc.m4: Update.
285 * gnulib/import/m4/mbsinit.m4: Update.
286 * gnulib/import/m4/mbsrtowcs.m4: Update.
287 * gnulib/import/m4/mbstate_t.m4: Update.
288 * gnulib/import/m4/memchr.m4: Update.
289 * gnulib/import/m4/memmem.m4: Update.
290 * gnulib/import/m4/mmap-anon.m4: Update.
291 * gnulib/import/m4/multiarch.m4: Update.
292 * gnulib/import/m4/nocrash.m4: Update.
293 * gnulib/import/m4/off_t.m4: Update.
294 * gnulib/import/m4/pathmax.m4: Update.
295 * gnulib/import/m4/readlink.m4: Update.
296 * gnulib/import/m4/rename.m4: Update.
297 * gnulib/import/m4/rmdir.m4: Update.
298 * gnulib/import/m4/ssize_t.m4: Update.
299 * gnulib/import/m4/stat.m4: Update.
300 * gnulib/import/m4/stdbool.m4: Update.
301 * gnulib/import/m4/stddef_h.m4: Update.
302 * gnulib/import/m4/stdint.m4: Update.
303 * gnulib/import/m4/stdio_h.m4: Update.
304 * gnulib/import/m4/stdlib_h.m4: Update.
305 * gnulib/import/m4/string_h.m4: Update.
306 * gnulib/import/m4/strstr.m4: Update.
307 * gnulib/import/m4/strtok_r.m4: Update.
308 * gnulib/import/m4/sys_socket_h.m4: Update.
309 * gnulib/import/m4/sys_stat_h.m4: Update.
310 * gnulib/import/m4/sys_time_h.m4: Update.
311 * gnulib/import/m4/sys_types_h.m4: Update.
312 * gnulib/import/m4/time_h.m4: Update.
313 * gnulib/import/m4/unistd_h.m4: Update.
314 * gnulib/import/m4/warn-on-use.m4: Update.
315 * gnulib/import/m4/wchar_h.m4: Update.
316 * gnulib/import/m4/wchar_t.m4: Update.
317 * gnulib/import/m4/wctype_h.m4: Update.
318 * gnulib/import/m4/wint_t.m4: Update.
319 * gnulib/import/malloc.c: Update.
320 * gnulib/import/malloca.c: Update.
321 * gnulib/import/malloca.h: Update.
322 * gnulib/import/math.in.h: Update.
323 * gnulib/import/mbrtowc.c: Update.
324 * gnulib/import/mbsinit.c: Update.
325 * gnulib/import/mbsrtowcs-impl.h: Update.
326 * gnulib/import/mbsrtowcs-state.c: Update.
327 * gnulib/import/mbsrtowcs.c: Update.
328 * gnulib/import/memchr.c: Update.
329 * gnulib/import/memmem.c: Update.
330 * gnulib/import/pathmax.h: Update.
331 * gnulib/import/readlink.c: Update.
332 * gnulib/import/ref-add.sin: Update.
333 * gnulib/import/ref-del.sin: Update.
334 * gnulib/import/rename.c: Update.
335 * gnulib/import/rmdir.c: Update.
336 * gnulib/import/same-inode.h: Update.
337 * gnulib/import/stat.c: Update.
338 * gnulib/import/stdbool.in.h: Update.
339 * gnulib/import/stddef.in.h: Update.
340 * gnulib/import/stdint.in.h: Update.
341 * gnulib/import/stdio.c: Update.
342 * gnulib/import/stdio.in.h: Update.
343 * gnulib/import/stdlib.in.h: Update.
344 * gnulib/import/str-two-way.h: Update.
345 * gnulib/import/streq.h: Update.
346 * gnulib/import/string.in.h: Update.
347 * gnulib/import/stripslash.c: Update.
348 * gnulib/import/strnlen1.c: Update.
349 * gnulib/import/strnlen1.h: Update.
350 * gnulib/import/strstr.c: Update.
351 * gnulib/import/strtok_r.c: Update.
352 * gnulib/import/sys_stat.in.h: Update.
353 * gnulib/import/sys_time.in.h: Update.
354 * gnulib/import/sys_types.in.h: Update.
355 * gnulib/import/time.in.h: Update.
356 * gnulib/import/unistd.in.h: Update.
357 * gnulib/import/verify.h: Update.
358 * gnulib/import/wchar.in.h: Update.
359 * gnulib/import/wctype.in.h: Update.
360 * gnulib/import/gettimeofday.c: New file.
361 * gnulib/import/m4/absolute-header.m4: New file.
362 * gnulib/import/m4/gettimeofday.m4: New file.
363 * gnulib/import/m4/sys_socket_h.m4: New file.
364 * gnulib/import/m4/sys_time_h.m4: New file.
365 * gnulib/import/stdio.c: Delete file.
366 * gnulib/import/sys_time.in.h: New file.
367
438e1e42
PA
3682015-08-24 Pedro Alves <palves@redhat.com>
369
370 * Makefile.in (HFILES_NO_SRCDIR): Add common/gdb_sys_time.h.
371 * common/gdb_sys_time.h: New file.
372 * event-loop.c: Include gdb_sys_time.h instead of sys/time.h.
373 * gdb_select.h: Likewise.
374 * gdb_usleep.c: Likewise.
375 * maint.c: Likewise.
376 * mi/mi-main.c: Likewise.
377 * mi/mi-parse.h: Likewise.
378 * remote-fileio.c: Likewise.
379 * remote-m32r-sdi.c: Likewise.
380 * remote.c: Likewise.
381 * ser-base.c: Likewise.
382 * ser-pipe.c: Likewise.
383 * ser-tcp.c: Likewise.
384 * ser-unix.c: Likewise.
385 * symfile.c: Likewise.
386 * symfile.c: Likewise. Rename OSIZE to SIZE throughout.
387 * target-memory.c: Include gdb_sys_time.h instead of sys/time.h.
388 * utils.c: Likewise.
389
40e0b271
PA
3902015-08-24 Pedro Alves <palves@redhat.com>
391
392 * NEWS: Mention removed support for the various ROM monitors.
393 * Makefile.in (ALL_TARGET_OBS): Remove dbug-rom.o, dink32-rom.o,
394 ppcbug-rom.o, m32r-rom.o, dsrec.o and monitor.o from gdb_target_obs.
395 * configure.tgt (h8300-*-*): Remove monitor.o and m32r-rom.o from
396 gdb_target_obs.
397 (m68*-*-*): Remove monitor.o dbug-rom.o and dsrec.o from
398 gdb_target_obs.
399 (microblaze*-linux-*): Remove microblaze-rom.o, monitor.o and
400 dsrec.o from gdb_target_obs.
401 (microblaze*-*-*): Remove microblaze-rom.o, monitor.o and dsrec.o
402 from gdb_target_obs.
403 (powerpc-*-lynx*178): Remove monitor.o and dsrec.o from
404 gdb_target_obs.
405 (powerpc*-*-*): Remove monitor.o, dsrec.o, ppcbug-rom.o and
406 dink32-rom.o from gdb_target_obs.
407 (sh*-*-linux*): Remove monitor.o and dsrec.o from gdb_target_obs.
408 (sh*): Remove monitor.o and dsrec.o from gdb_target_obs.
409 * dbug-rom.c, dink32-rom.c, dsrec.c, m32r-rom.c, microblaze-rom.c,
410 monitor.c, monitor.h, ppcbug-rom.c, srec.h: Delete files.
411
f8904751
PA
4122015-08-21 Pedro Alves <palves@redhat.com>
413
414 * frame.c (null_frame_id): Explicitly zero-initialize.
415
049412e3
TT
4162015-08-21 Tom Tromey <tromey@redhat.com>
417
418 * dwarf2read.c (struct dwarf2_section_info): Rename field
419 'asection' to 'section'.
420 (dwarf2_has_info, get_section_bfd_owner, get_section_bfd_section)
421 (dwarf2_locate_sections, dwarf2_locate_sections)
422 (locate_dwz_sections, locate_v1_virtual_dwo_sections)
423 (dwarf2_locate_dwo_sections, dwarf2_locate_dwo_sections)
424 (dwarf2_locate_v2_dwp_sections): Adjust.
425
948578a9
PP
4262015-08-21 Patrick Palka <patrick@parcs.ath.cx>
427
428 * top.h (gdb_in_secondary_prompt_p): Declare.
429 * top.c (gdb_secondary_prompt_depth): Define.
430 (gdb_in_secondary_prompt_p): Define.
431 (gdb_readline_wrapper_cleanup): Decrement
432 gdb_secondary_prompt_depth.
433 (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
434 * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
435 are in a secondary prompt.
436
7a8bcb88
PP
4372015-08-21 Patrick Palka <patrick@parcs.ath.cx>
438
439 * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
440 emit the newline.
441
2d7711a3
GB
4422015-08-21 Gary Benson <gbenson@redhat.com>
443
444 * gdb_bfd.c (gdb_bfd_iovec_fileio_pread): Add QUIT call.
445
4313b8c0
GB
4462015-08-21 Gary Benson <gbenson@redhat.com>
447
448 * target.h (struct target_ops) <to_fileio_open>: New argument
449 warn_if_slow. Update comment. All implementations updated.
450 (target_fileio_open_warn_if_slow): New declaration.
451 * target.c (target_fileio_open): Renamed as...
452 (target_fileio_open_1): ...this. New argument warn_if_slow.
453 Pass warn_if_slow to implementation. Update debug printing.
454 (target_fileio_open): New function.
455 (target_fileio_open_warn_if_slow): Likewise.
456 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Use new function
457 target_fileio_open_warn_if_slow.
458
f36b8719
GB
4592015-08-21 Gary Benson <gbenson@redhat.com>
460
461 * nat/linux-namespaces.c (linux_mntns_access_fs):
462 Do not overwrite old_chain.
463
40045d91
MF
4642015-08-20 Max Filippov <jcmvbkbc@gmail.com>
465
466 * arch/xtensa.h: New file.
467 * xtensa-linux-nat.c (gdb_proc_service.h): New #include.
468 (ps_get_thread_area): New function.
469 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Add call to
470 set_gdbarch_fetch_tls_load_module_address to enable TLS support.
471 * xtensa-tdep.c (osabi.h): New #include.
472 (xtensa_gdbarch_init): Call gdbarch_init_osabi to register
473 xtensa-specific hooks.
474 * xtensa-tdep.h (struct xtensa_elf_gregset_t): Add threadptr
475 member and move the structure to arch/xtensa.h.
476
80152258
PA
4772015-08-21 Pedro Alves <palves@redhat.com>
478
479 * remote.c (struct readahead_cache): New.
480 (struct remote_state) <readahead_cache>: New field.
481 (remote_open_1): Invalidate the cache.
482 (readahead_cache_invalidate, readahead_cache_invalidate_fd): New
483 functions.
484 (remote_hostio_pwrite): Invalidate the readahead cache.
485 (remote_hostio_pread): Rename to ...
486 (remote_hostio_pread_vFile): ... this.
487 (remote_hostio_pread_from_cache): New function.
488 (remote_hostio_pread): Reimplement.
489 (remote_hostio_close): Invalidate the readahead cache.
490
88fc5eb7
MC
4912015-08-21 Marcin Cieślak <saper@saper.info> (tiny patch)
492
493 PR build/18843
494 * procfs.c: Include "filestuff.h".
495
6f1cb6ea
PP
4962015-08-21 Patrick Palka <patrick@parcs.ath.cx>
497
498 * tui/tui-data.h (tui_command_info): Remove fields cur_line and
499 curch.
500 * tui/tui-data.c (tui_clear_win_detail) [CMD_WIN]: Don't set
501 cur_line or curch, instead call wmove().
502 (init_win_info) [CMD_WIN]: Likewise.
503 * tui/tui-io.c (tui_puts): Likewise. Don't read cur_line,
504 instead call getcury().
505 (tui_redisplay_readline): Don't set cur_line or curch.
506 (tui_mld_erase_entire_line): Don't read cur_line, instead call
507 getcury().
508 (tui_cont_sig): Remove call to wmove.
509 (tui_getc): Don't read cur_line or curch, instead call getcury()
510 or getyx(). Don't set curch.
511 * tui/tui-win.c (make_visible_with_new_height) [CMD_WIN]: Don't
512 set cur_line or curch. Always move cursor to (0,0).
513
221e1a37
PA
5142015-08-20 Pedro Alves <palves@redhat.com>
515
516 * infrun.c (print_target_wait_results): Make extern.
517 * infrun.h (print_target_wait_results): Declare.
518 * remote.c (set_stop_requested_callback): Delete.
519 (process_initial_stop_replies): New function.
520 (remote_start_remote): Use it.
521 (stop_reply_queue_length): New function.
522
40e3ad0e
PA
5232015-08-20 Pedro Alves <palves@redhat.com>
524
525 * dwarf2read.c (process_full_comp_unit): To tell whether
526 start_subfile managed to deduce a language, test for
527 language_unknown instead of language_c.
528
af39b327
PMR
5292015-08-20 Pierre-Marie de Rodat <derodat@adacore.com>
530
531 * ada-lex.l: Reset the start condition to INITIAL in the rule that
532 matches attributes.
533
7d45c7c3
KB
5342015-08-19 Kevin Buettner <kevinb@redhat.com>
535
536 * dwarf2read.c (dwarf2_string_attr): New function.
537 (lookup_dwo_unit, process_psymtab_comp_unit_reader)
538 (dwarf2_compute_name, dwarf2_physname, find_file_and_directory)
539 (read_call_site_scope, namespace_name, guess_full_die_structure_name)
540 (anonymous_struct_prefix, prepare_one_comp_unit): Use
541 dwarf2_string_attr in place of dwarf2_attr and DW_STRING.
542
4d6cceb4
DE
5432015-08-18 Doug Evans <dje@google.com>
544 Adrian Sendroiu <adrian.sendroiu@freescale.com>
545
546 PR mi/18833
547 * cli/cli-logging.c (pop_output_files): Don't restore redirection
548 if MI-like.
549 * mi/mi-out.c: #include "vec.h".
550 (ui_filep): New type.
551 (DEV_VEC_P (ui_filep)): New type.
552 (struct ui_out_data) <buffer, original_buffer>: Delete.
553 (struct ui_out_data) <streams>: New member.
554 (mi_ui_out_impl): Add data_destroy field.
555 (mi_field_string, mi_field_fmt): Update.
556 (mi_flush, mi_redirect, field_separator): Update.
557 (mi_open, mi_close): Update.
558 (mi_out_buffered, mi_out_rewind, mi_out_put): Update.
559 (mi_out_data_ctor, mi_out_data_dtor): New functions.
560 (mi_out_new): Call mi_out_data_ctor.
561
26d56a93
SL
5622015-08-18 Sandra Loosemore <sandra@codesourcery.com>
563
564 * remote.c (strprefix): New.
565 (remote_parse_stop_reply): Use strprefix instead of strncmp
566 to ensure exact match of keyword.
567
566f5e3b
AB
5682015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
569
570 * gdb_bfd.c (debug_bfd_cache): New variable.
571 (show_bfd_cache_debug): New function.
572 (gdb_bfd_open): Add debug logging.
573 (gdb_bfd_ref): Likewise.
574 (gdb_bfd_unref): Likewise.
575 (_initialize_gdb_bfd): Add new set/show command.
576 * NEWS: Mention new command.
577
18989b3c
AB
5782015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
579
580 * gdb_bfd.c (bfd_sharing): New variable.
581 (show_bfd_sharing): New function.
582 (gdb_bfd_open): Check bfd_sharing variable.
583 (_initialize_gdb_bfd): Add new set/show command.
584 * NEWS: Mention new command.
585
c04fe68f
AB
5862015-08-18 Andrew Burgess <andrew.burgess@embecosm.com>
587
588 * gdb_bfd.c (struct gdb_bfd_data): Add size, inode, and device id
589 field.
590 (struct gdb_bfd_cache_search): Likewise.
591 (eq_bfd): Compare the size, inode, and device id fields.
592 (gdb_bfd_open): Initialise the size, inode, and device id fields.
593 (gdb_bfd_ref): Likewise.
594 (gdb_bfd_unref): Likewise.
595
b2a33439
PA
5962015-08-18 Pedro Alves <palves@redhat.com>
597
598 * linux-nat.c (linux_nat_always_non_stop_p): If the linux_ops
599 target implements to_always_non_stop_p, call it.
600 * x86-linux-nat.c (x86_linux_always_non_stop_p): New function.
601 (x86_linux_create_target): Install it as to_always_non_stop_p
602 method.
603
71b57e37
DE
6042015-08-17 Doug Evans <dje@google.com>
605
606 * ui-out.c (default_ui_out_impl): Add comment.
607
7f3706eb
IB
6082015-08-17 Iain Buclaw <ibuclaw@gdcproject.org>
609
610 * d-exp.y (type_aggregate_p): New function.
611 (PrimaryExpression : TypeExp '.' IdentifierExp): Use it.
612 (classify_inner_name): Likewise.
613 * d-namespace.c (d_lookup_nested_symbol): Handle TYPE_CODE_ENUM.
614
1762568f
DE
6152015-08-15 Doug Evans <xdje42@gmail.com>
616
617 * psymtab.c (add_psymbol_to_bcache): Remove "val" arg. All callers
618 updated.
619 (add_psymbol_to_list): Ditto.
620
8763cede
DE
6212015-08-15 Doug Evans <xdje42@gmail.com>
622
623 * dbxread.c (dbx_end_psymtab): Renamed from end_psymtab. All callers
624 updated. Call end_psymtab_common.
625 * dwarf2read.c (process_psymtab_comp_unit_reader): Call
626 end_psymtab_common.
627 (build_type_psymtabs_reader): Ditto.
628 * psympriv.h (sort_pst_symbols): Delete.
629 (end_psymtab_common): Declare.
630 * psymtab.c (sort_pst_symbols): Make static.
631 (end_psymtab_common): New function.
632 * xcoffread.c (xcoff_end_psymtab): Call end_psymtab_common.
633
51cdc993
DE
6342015-08-15 Doug Evans <xdje42@gmail.com>
635
636 * defs.h (LANGUAGE_BITS): Define.
637 * psympriv.h (partial_symbol) <domain>: Use SYMBOL_DOMAIN_BITS.
638 (partial_symbol) <aclass>: Use SYMBOL_ACLASS_BITS.
639 * symtab.h (general_symbol_info> <language>: Usage LANGUAGE_BITS.
640 (minimal_symbol_type): Add nr_minsym_types.
641 (MINSYM_TYPE_BITS): Define.
642 (minimal_symbol) <type>: Use MINSYM_TYPE_BITS.
643 (domain_enum_tag): Add NR_DOMAINS.
644 (SYMBOL_DOMAIN_BITS): Change from 4 to 3.
645 (SYMBOL_ACLASS_BITS): Define from 6 to 5.
646
95cf5869
DE
6472015-08-15 Doug Evans <xdje42@gmail.com>
648
649 * objfiles.h: Whitespace cleanup.
650 * psympriv.h: Whitespace cleanup.
651 * psymtab.c: Whitespace/coding convention cleanup.
652
e3ae3c43
PP
6532015-08-15 Patrick Palka <patrick@parcs.ath.cx>
654
655 * inferior.c (detach_inferior_command): Don't call
656 any_thread_of_process when pid is 0.
657 (kill_inferior_command): Likewise.
658
6ff0ba5f
DE
6592015-08-14 Doug Evans <xdje42@gmail.com>
660
661 PR gdb/11833
662 * NEWS: Document new /s modifier for the disassemble command.
663 * cli/cli-cmds.c (disassemble_command): Add support for /s.
664 (_initialize_cli_cmds): Update online docs of disassemble command.
665 * disasm.c: #include "source.h".
666 (struct deprecated_dis_line_entry): Renamed from dis_line_entry.
667 All uses updated.
668 (dis_line_entry): New struct.
669 (hash_dis_line_entry, eq_dis_line_entry): New functions.
670 (allocate_dis_line_table): New functions.
671 (maybe_add_dis_line_entry, line_has_code_p): New functions.
672 (dump_insns): New arg end_pc. All callers updated.
673 (do_mixed_source_and_assembly_deprecated): Renamed from
674 do_mixed_source_and_assembly. All callers updated.
675 (do_mixed_source_and_assembly): New function.
676 (gdb_disassembly): Handle /s (DISASSEMBLY_SOURCE).
677 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED): Renamed from
678 DISASSEMBLY_SOURCE. All uses updated.
679 (DISASSEMBLY_SOURCE): New macro.
680 * mi/mi-cmd-disas.c (mi_cmd_disassemble): New modes 4,5.
681
b56ccc20
KS
6822015-08-14 Keith Seitz <keiths@redhat.com>
683
684 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Rename
685 `typename' to `type_name' to avoid C++ reserved word.
686
ebdad8fc
KS
6872015-08-14 Keith Seitz <keiths@redhat.com>
688
689 * location.c (EL_TYPE, EL_LINESPEC, EL_PROBE, EL_ADDRESS)
690 (EL_EXPLICIT, EL_STRING): Change macro parameter to "P" to
691 silence ARI errors.
692
c0fe2ae7
IB
6932015-08-14 Iain Buclaw <ibuclaw@gdcproject.org>
694
695 * d-exp.y (PrimaryExpression : TypeExp '.' IdentifierExp): Use
696 xstrprintf instead of malloc and sprintf.
697 (PrimaryExpression : IdentifierExp): Avoid operator at end of line.
698 (lex_one_token): Likewise.
699
a738da3a
MF
7002015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
701
702 * solib-svr4.c (read_program_header): Add base_addr argument to
703 report the runtime address of the segment.
704 (find_program_interpreter): Update read_program_header call to pass
705 a NULL pointer for the new argument.
706 (scan_dyntag): Add ptr_addr argument to report the runtime address
707 of the tag payload.
708 (scan_dyntag_auxv): Likewise and use thew new base_addr argument of
709 read_program_header to get the base address of the dynamic segment.
710 (elf_locate_base): Update uses of scan_dyntag, scan_dyntag_auxv and
711 read_program_header.
712 (elf_locate_base): Scan for and handle DT_MIPS_RLD_MAP_REL.
713
f8edc4ff
MF
7142015-08-14 Matthew Fortune <matthew.fortune@imgtec.com>
715
716 * MAINTAINERS (Write After Approval): Add Matthew Fortune.
717
444c1ed8
IB
7182015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
719
720 * d-exp.y (%union): Add voidval.
721 (%token): Add UNKNOWN_NAME as a token to represent an unclassified
722 name in the lexing stage.
723 (PostfixExpression): Move symbol completion handling in grammar here
724 from PrimaryExpression.
725 (PrimaryExpression): Move routines to handle resolving identifier
726 tokens in the grammar here from push_expression_name.
727 (IdentifierExp): Remove the handling of alternating '.' and identifier
728 tokens.
729 (TypeExp): Allow TypeExp to be wrapped in parenthesis in the grammar.
730 (BasicType): Remove C-style typename rules.
731 (d_type_from_name, d_module_from_name, push_variable)
732 (push_fieldnames, push_type_name, push_module_name)
733 (push_expression_name): Remove.
734 (lex_one_token): Rename from yylex. Replace pstate with par_state.
735 (token_and_value): New type.
736 (token_fifo, popping, name_obstack): New globals.
737 (classify_name): New function.
738 (classify_inner_name): Likewise.
739 (yylex): Likewise.
740 (d_parse): Initialize token_fifo, popping and name_obstack.
741
bc7c9fab
IB
7422015-08-13 Iain Buclaw <ibuclaw@gdcproject.org>
743
744 * Makefile.in (SFILES): Add d-namespace.c.
745 (COMMON_OBS): Add d-namespace.o.
746 * d-lang.c (d_language_defn): Use d_lookup_symbol_nonlocal as the
747 la_lookup_symbol_nonlocal callback function pointer.
748 * d-lang.h (d_lookup_symbol_nonlocal): New declaration.
749 (d_lookup_nested_symbol): New declaration.
750 * d-namespace.c: New file.
751
3207396b
PA
7522015-08-13 Pedro Alves <palves@redhat.com>
753
754 * python/py-unwind.c (pyuw_sniffer): Install the invalidate
755 cleanup after the decref cleanup, not before.
756
5d8c3ed3
PMR
7572015-08-13 Pierre-Marie de Rodat <derodat@adacore.com>
758
759 * ada-lang.c: Include namespace.h
760 (aux_add_nonlocal_symbols): Fix a function name in comment.
761 (ada_add_block_renamings): New.
762 (add_nonlocal_symbols): Add global renamings handling.
763 (ada_lookup_symbol_list_worker): Move the symbol lookup part
764 to...
765 (ada_add_all_symbols): ... this new function.
766 (ada_add_block_symbols): Try to match the input name against the
767 "using directives list", perform a recursive symbol lookup on
768 the matched declarations.
769 * block.h (struct block): Move the_namespace to top-level as
770 namespace_info. Remove the language_specific field.
771 (BLOCK_NAMESPACE): Update access to the namespace_info field.
772 * buildsym.h (using_directives): Rename into...
773 (local_using_directives): ... this.
774 (global_using_directives): New.
775 (struct context_stack): Rename the using_directives field into
776 local_using_directives.
777 * buildsym.c (finish_block_internal): Deal with the proper
778 using directives repository (local or global).
779 (prepare_for_building): Reset local_using_directives. Assert
780 that there is no pending global using directive.
781 (reset_symtab_globals): Reset global_using_directives and
782 local_using_directives.
783 (end_symtab_get_static_block): Don't ignore symtabs that have
784 only using directives.
785 (push_context): Update references to local_using_directives.
786 (buildsym_init): Do not reset using_directives.
787 * cp-support.c: Include namespace.h.
788 * cp-support.h (struct using_direct): Move to namespace.h.
789 (cp_add_using_directives): Move to namespace.h.
790 * cp-namespace.c: Include namespace.h
791 (cp_add_using_directive): Move to namespace.c, rename it to
792 add_using_directive, add a "using_directives" argument and use
793 it as the pending using directives repository. All callers
794 updated.
795 * dwarf2read.c (using_directives): New.
796 (read_import_statement): Call using_directives.
797 (read_func_scope): Update references to local_using_directives.
798 (read_lexical_block_scope): Likewise.
799 (read_namespace): Update the heading comment, call
800 using_directives.
801 * namespace.h: New file.
802 * namespace.c: New file.
803 * Makefile.in (SFILES): Add namespace.c.
804 (COMMON_OBS): Add namespace.o
805
4dafcdeb
JB
8062015-08-12 Joel Brobecker <brobecker@adacore.com>
807
808 * amd64-tdep.c (amd64_displaced_step_fixup): Fix the mask used to
809 compute RETADDR.
810
67994074
KS
8112015-08-12 Keith Seitz <keiths@redhat.com>
812
813 * break-catch-throw.c (re_set_exception_catchpoint) Rename
814 reserved C++ keyword "explicit" to "explicit_loc".
815 * breakpoint.c (create_overlay_event_breakpoint)
816 (create_longjmp_master_breakpoint)
817 (create_std_terminate_master_breakpoint)
818 (create_exception_master_breakpoint, update_static_tracepoint):
819 Rename reserved C++ keyword "explicit" to "explicit_loc".
820 * completer.c (collect_explicit_location_matches)
821 (explicit_location_completer): Rename reserved C++ keyword
822 "explicit" to "explicit_loc".
823 * linespec.c (struct linespec) <explicit>: Rename to "explicit_loc".
824 (canonicalize_linespec, create_sals_line_offset)
825 (convert_linespec_to_sals, convert_explicit_location_to_sals)
826 (event_location_to_sals, decode_objc): Rename reserved C++ keyword
827 "explicit" to "explicit_loc".
828 * location.c (struct event_location) <explicit>: Rename to
829 "explicit_loc".
830 (initialize_explicit_location, new_explicit_location)
831 (explicit_location_to_string_internal, explicit_location_to_linespec):
832 Rename reserved C++ keyword "explicit" to "explicit_loc".
833 * location.h (explicit_location_to_string)
834 (explicit_location_to_linespec, initialize_explicit_location)
835 (new_explicit_location): Rename reserved C++ keyword "explicit"
836 to "explicit_loc".
837 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Rename reserved C++
838 keyword "explicit" to "explicit_loc".
839
59ecaff3
KS
8402015-08-12 Keith Seitz <keiths@redhat.com>
841
842 * python/python.c (gdbpy_decode_line): Initialize `location' to NULL
843 and only call decode_line_1 when it is non-NULL.
844
244558af
LM
8452015-08-12 Luis Machado <lgustavo@codesourcery.com>
846
847 * breakpoint.c (bp_loc_is_permanent): Return 0 when breakpoint
848 location address is not meaningful.
849 (breakpoint_address_is_meaningful): Update comment.
850
629500fa
KS
8512015-08-11 Keith Seitz <keiths@redhat.com>
852
853 * NEWS: Mention explicit locations.
854 * breakpoint.c [LOCATION_HELP_STRING]: New macro.
855 [BREAK_ARGS_HELP]: Use LOCATION_HELP_STRING.
856 (_initialize_breakpoint): Update documentation for
857 "clear", "break", "trace", "strace", "ftrace", and "dprintf".
858
eb8c4e2e
KS
8592015-08-11 Keith Seitz <keiths@redhat.com>
860
861 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Add support for
862 explicit locations, options "--source", "--function",
863 "--label", and "--line".
864
87f0e720
KS
8652015-08-11 Keith Seitz <keiths@redhat.com>
866
867 * completer.c: Include location.h.
868 (enum match_type): New enum.
869 (location_completer): Rename to ...
870 (linespec_completer): ... this.
871 (collect_explicit_location_matches, backup_text_ptr)
872 (explicit_location_completer): New functions.
873 (location_completer): "New" function; handle linespec
874 and explicit location completions.
875 (complete_line_internal): Remove all location completer-specific
876 handling.
877 * linespec.c (linespec_lexer_lex_keyword, is_ada_operator)
878 (find_toplevel_char): Export.
879 (linespec_parse_line_offset): Export.
880 Issue error if STRING is not numerical.
881 (gdb_get_linespec_parser_quote_characters): New function.
882 * linespec.h (linespec_parse_line_offset): Declare.
883 (get_gdb_linespec_parser_quote_characters): Declare.
884 (is_ada_operator): Declare.
885 (find_toplevel_char): Declare.
886 (linespec_lexer_lex_keyword): Declare.
887 * location.c (explicit_to_event_location): New function.
888 (explicit_location_lex_one): New function.
889 (string_to_explicit_location): New function.
890 (string_to_event_location): Handle explicit locations.
891 * location.h (explicit_to_event_location): Declare.
892 (string_to_explicit_location): Declare.
893
00e52e53
KS
8942015-08-11 Keith Seitz <keiths@redhat.com>
895
896 * break-catch-throw.c (re_set_exception_catchpoint): Convert
897 linespec into explicit location.
898 * breakpoint.c (create_overlay_breakpoint)
899 (create_longjmp_master_breakpoint)
900 (create_std_terminate_master_breakpoint)
901 (create_exception_master_breakpoint): Convert linespec into explicit
902 location.
903 (update_static_tracepoint): Convert linespec into explicit location.
904 * linespec.c (enum offset_relative_sign, struct line_offset): Move
905 location.h.
906 (struct linespec) <expression, expr_pc, source_filename>
907 <function_name, label_name, line_offset>: Replace with ...
908 <explicit>: ... this.
909 <is_linespec>: New member.
910 (PARSER_EXPLICIT): New accessor macro.
911 (undefined_label_error): New function.
912 (source_file_not_found_error): New function.
913 (linespec_parse_basic): The parser result is now an explicit location.
914 Use PARSER_EXPLICIT to access it.
915 Use undefined_label_error.
916 (canonicalize_linespec): Convert canonical linespec into explicit
917 location.
918 Move string representation of location to explicit_location_to_linespec
919 and use it and explicit_location_to_string to save string
920 representations of the canonical location.
921 (create_sals_line_offset, convert_linespec_to_sals): `ls' contains an
922 explicit location. Update all references.
923 (convert_explicit_location_to_sals): New function.
924 (parse_linespec): Use PARSER_EXPLICIT to access the parser
925 result's explicit location.
926 (linespec_state_constructor): Initialize is_linespec.
927 Use PARSER_EXPLICIT.
928 (linespec_parser_delete): Use PARSER_EXPLICIT to access the parser's
929 result.
930 (event_location_to_sals): For linespec locations, set is_linespec.
931 Handle explicit locations.
932 (decode_objc): 'ls' contains an explicit location now. Update all
933 references.
934 (symtabs_from_filename): Use source_file_not_found_error.
935 * location.c (struct event_location.u) <explicit>: New member.
936 (initialize_explicit_location): New function.
937 (initialize_event_location): Initialize explicit locations.
938 (new_explicit_location, get_explicit_location)
939 (get_explicit_location_const): New functions.
940 (explicit_to_string_internal): New function; most of contents moved
941 from canonicalize_linespec.
942 (explicit_location_to_string): New function.
943 (explicit_location_to_linespec): New function.
944 (copy_event_location, delete_event_location)
945 (event_location_to_string_const, event_location_empty_p): Handle
946 explicit locations.
947 * location.h (enum offset_relative_sign, struct line_offset): Move
948 here from linespec.h.
949 (enum event_location_type): Add EXPLICIT_LOCATION.
950 (struct explicit_location): New structure.
951 (explicit_location_to_string): Declare.
952 (explicit_location_to_linespec): Declare.
953 (new_explicit_location, get_explicit_locationp
954 (get_explicit_location_const, initialize_explicit_location): Declare.
955
5b56227b
KS
9562015-08-11 Keith Seitz <keiths@redhat.com>
957
958 * break-catch-throw.c (re_set_exception_catchpoint): Convert
959 linespec for stap probe to probe location.
960 * breakpoint.c (create_longjmp_master_breakpoint)
961 (create_exception_master_breakpoint): Likewise.
962 (break_command_1): Remove local variable `arg_cp'.
963 Check location type to set appropriate breakpoint ops methods.
964 (trace_command): Likewise.
965 * linespec.c (event_location_to_sals): Assert on probe locations.
966 * location.c (EL_PROBE): Add macro definition.
967 (new_probe_location, get_probe_location): New functions.
968 (copy_event_location, delete_event_location, event_location_to_string)
969 (string_to_event_location, event_location_empty_p): Handle probe
970 locations.
971 * location.h (enum event_location_type): Add PROBE_LOCATION.
972 (new_probe_location, get_probe_location): Declare.
973 * probe.c (parse_probes): Assert that LOCATION is a probe location.
974 Convert linespec into probe location.
975
a06efdd6
KS
9762015-08-11 Keith Seitz <keiths@redhat.com>
977
978 * breakpoint.c (create_thread_event_breakpoint, init_breakpoint_sal):
979 Convert linespec to address location.
980 * linespec.c (canonicalize_linespec): Do not handle address
981 locations here.
982 (convert_address_location_to_sals): New function; contents moved
983 from ...
984 (convert_linespc_to_sals): ... here.
985 (parse_linespec): Remove address locations from linespec grammar.
986 Remove handling of address locations.
987 (linespec_lex_to_end): Remove handling of address linespecs.
988 (event_location_to_sals): Handle ADDRESS_LOCATION.
989 (linespec_expression_to_pc): Export.
990 * linespec.h (linespec_expression_to_pc): Add declaration.
991 * location.c (struct event_location.u) <address>: New member.
992 (new_address_location, get_address_location): New functions.
993 (copy_event_location, delete_event_location, event_location_to_string)
994 (string_to_event_location, event_location_empty_p): Handle address
995 locations.
996 * location.h (enum event_location_type): Add ADDRESS_LOCATION.
997 (new_address_location, get_address_location): Declare.
998 * python/py-finishbreakpoint.c (bpfinishpy_init): Convert linespec
999 to address location.
1000 * spu-tdep.c (spu_catch_start): Likewise.
1001
f00aae0f
KS
10022015-08-11 Keith Seitz <keiths@redhat.com>
1003
1004 * ax-gdb.c: Include location.h.
1005 (agent_command_1) Use linespec location instead of address
1006 string.
1007 * break-catch-throw.c: Include location.h.
1008 (re_set_exception_catchpoint): Use linespec locations instead
1009 of address strings.
1010 * breakpoint.c: Include location.h.
1011 (create_overlay_event_breakpoint, create_longjmp_master_breakpoint)
1012 (create_std_terminate_master_breakpoint)
1013 (create_exception_master_breakpoint, update_breakpoints_after_exec):
1014 Use linespec location instead of address string.
1015 (print_breakpoint_location): Use locations and
1016 event_location_to_string.
1017 Print extra_string for pending locations for non-MI streams.
1018 (print_one_breakpoint_location): Use locations and
1019 event_location_to_string.
1020 (init_raw_breakpoint_without_location): Initialize b->location.
1021 (create_thread_event_breakpoint): Use linespec location instead of
1022 address string.
1023 (init_breakpoint_sal): Likewise.
1024 Only save extra_string if it is non-NULL and not the empty string.
1025 Use event_location_to_string instead of `addr_string'.
1026 Constify `p' and `endp'.
1027 Use skip_spaces_const/skip_space_const instead of non-const versions.
1028 Copy the location into the breakpoint.
1029 If LOCATION is NULL, save the breakpoint address as a linespec location
1030 instead of an address string.
1031 (create_breakpoint_sal): Change `addr_string' parameter to a struct
1032 event_location. All uses updated.
1033 (create_breakpoints_sal): Likewise for local variable `addr_string'.
1034 (parse_breakpoint_sals): Use locations instead of address strings.
1035 Remove check for empty linespec with conditional.
1036 Refactor.
1037 (decode_static_tracepoint_spec): Make argument const and update
1038 function.
1039 (create_breakpoint): Change `arg' to a struct event_location and
1040 rename.
1041 Remove `copy_arg' and `addr_start'.
1042 If EXTRA_STRING is empty, set it to NULL.
1043 Don't populate `canonical' for pending breakpoints.
1044 Pass `extra_string' to find_condition_and_thread.
1045 Clear `extra_string' if `rest' was NULL.
1046 Do not error with "garbage after location" if setting a dprintf
1047 breakpoint.
1048 Copy the location into the breakpoint instead of an address string.
1049 (break_command_1): Use string_to_event_location and pass this to
1050 create_breakpoint instead of an address string.
1051 Check against `arg_cp' for a probe linespec.
1052 (dprintf_command): Use string_to_event_location and pass this to
1053 create_breakpoint instead of an address string.
1054 Throw an exception if no format string was specified.
1055 (print_recreate_ranged_breakpoint): Use event_location_to_string
1056 instead of address strings.
1057 (break_range_command, until_break_command)
1058 (init_ada_exception_breakpoint): Use locations instead
1059 of address strings.
1060 (say_where): Print out extra_string for pending locations.
1061 (base_breakpoint_dtor): Delete `location' and `location_range_end' of
1062 the breakpoint.
1063 (base_breakpoint_create_sals_from_location): Use struct event_location
1064 instead of address string.
1065 Remove `addr_start' and `copy_arg' parameters.
1066 (base_breakpoint_decode_location): Use struct event_location instead of
1067 address string.
1068 (bkpt_re_set): Use locations instead of address strings.
1069 Use event_location_empty_p to check for unset location.
1070 (bkpt_print_recreate): Use event_location_to_string instead of
1071 an address string.
1072 Print out extra_string for pending locations.
1073 (bkpt_create_sals_from_location, bkpt_decode_location)
1074 (bkpt_probe_create_sals_from_location): Use struct event_location
1075 instead of address string.
1076 (bkpt_probe_decode_location): Use struct event_location instead of
1077 address string.
1078 (tracepoint_print_recreate): Use event_location_to_string to
1079 recreate the tracepoint.
1080 (tracepoint_create_sals_from_location, tracepoint_decode_location)
1081 (tracepoint_probe_create_sals_from_location)
1082 (tracepoint_probe_decode_location): Use struct event_location
1083 instead of address string.
1084 (dprintf_print_recreate): Use event_location_to_string to recreate
1085 the dprintf.
1086 (dprintf_re_set): Remove check for valid/missing format string.
1087 (strace_marker_create_sals_from_location)
1088 (strace_marker_create_breakpoints_sal, strace_marker_decode_location)
1089 (update_static_tracepoint): Use struct event_location instead of
1090 address string.
1091 (location_to_sals): Likewise.
1092 Pass `extra_string' to find_condition_and_thread.
1093 For newly resolved pending breakpoint locations, clear the location's
1094 string representation.
1095 Assert that the breakpoint's condition string is NULL when
1096 condition_not_parsed.
1097 (breakpoint_re_set_default, create_sals_from_location_default)
1098 (decode_location_default, trace_command, ftrace_command)
1099 (strace_command, create_tracepoint_from_upload): Use locations
1100 instead of address strings.
1101 * breakpoint.h (struct breakpoint_ops) <create_sals_from_location>:
1102 Use struct event_location instead of address string.
1103 Update all uses.
1104 <decode_location>: Likewise.
1105 (struct breakpoint) <addr_string>: Change to struct event_location
1106 and rename `location'.
1107 <addr_string_range_end>: Change to struct event_location and rename
1108 `location_range_end'.
1109 (create_breakpoint): Use struct event_location instead of address
1110 string.
1111 * cli/cli-cmds.c: Include location.h.
1112 (edit_command, list_command): Use locations instead of address strings.
1113 * elfread.c: Include location.h.
1114 (elf_gnu_ifunc_resolver_return_stop): Use event_location_to_string.
1115 * guile/scm-breakpoint.c: Include location.h.
1116 (bpscm_print_breakpoint_smob): Use event_location_to_string.
1117 (gdbscm_register_breakpoint): Use locations instead of address
1118 strings.
1119 * linespec.c: Include location.h.
1120 (struct ls_parser) <stream>: Change to const char *.
1121 (PARSER_STREAM): Update.
1122 (lionespec_lexer_lex_keyword): According to find_condition_and_thread,
1123 keywords must be followed by whitespace.
1124 (canonicalize_linespec): Save a linespec location into `canonical'.
1125 Save a canonical linespec into `canonical'.
1126 (parse_linespec): Change `argptr' to const char * and rename `arg'.
1127 All uses updated.
1128 Update function description.
1129 (linespec_parser_new): Initialize `parser'.
1130 Update initialization of parsing stream.
1131 (event_location_to_sals): New function.
1132 (decode_line_full): Change `argptr' to a struct event_location and
1133 rename it `location'.
1134 Use locations instead of address strings.
1135 Call event_location_to_sals instead of parse_linespec.
1136 (decode_line_1): Likewise.
1137 (decode_line_with_current_source, decode_line_with_last_displayed)
1138 Use locations instead of address strings.
1139 (decode_objc): Likewise.
1140 Change `argptr' to const char * and rename `arg'.
1141 (destroy_linespec_result): Delete the linespec result's location
1142 instead of freeing the address string.
1143 * linespec.h (struct linespec_result) <addr_string>: Change to
1144 struct event_location and rename to ...
1145 <location>: ... this.
1146 (decode_line_1, decode_line_full): Change `argptr' to struct
1147 event_location. All callers updated.
1148 * mi/mi-cmd-break.c: Include language.h, location.h, and linespec.h.
1149 (mi_cmd_break_insert_1): Use locations instead of address strings.
1150 Throw an error if there was "garbage" at the end of the specified
1151 linespec.
1152 * probe.c: Include location.h.
1153 (parse_probes): Change `argptr' to struct event_location.
1154 Use event locations instead of address strings.
1155 * probe.h (parse_probes): Change `argptr' to struct event_location.
1156 * python/py-breakpoint.c: Include location.h.
1157 (bppy_get_location): Constify local variable `str'.
1158 Use event_location_to_string.
1159 (bppy_init): Use locations instead of address strings.
1160 * python/py-finishbreakpoint.c: Include location.h.
1161 (bpfinishpy_init): Remove local variable `addr_str'.
1162 Use locations instead of address strings.
1163 * python/python.c: Include location.h.
1164 (gdbpy_decode_line): Use locations instead of address strings.
1165 * remote.c: Include location.h.
1166 (remote_download_tracepoint): Use locations instead of address
1167 strings.
1168 * spu-tdep.c: Include location.h.
1169 (spu_catch_start): Remove local variable `buf'.
1170 Use locations instead of address strings.
1171 * tracepoint.c: Include location.h.
1172 (scope_info): Use locations instead of address strings.
1173 (encode_source_string): Constify parameter `src'.
1174 * tracepoint.h (encode_source_string): Likewise.
1175
c7c1b3e9
KS
11762015-08-11 Keith Seitz <keiths@redhat.com>
1177
1178 * Makefile.in (SFILES): Add location.c.
1179 (HFILES_NO_SRCDIR): Add location.h.
1180 (COMMON_OBS): Add location.o.
1181 * linespec.c (linespec_lex_to_end): New function.
1182 * linespec.h (linespec_lex_to_end): Declare.
1183 * location.c: New file.
1184 * location.h: New file.
1185
5f700d83
KS
11862015-08-11 Keith Seitz <keiths@redhat.com>
1187
1188 * breakpoint.h (struct breakpoint_ops) <create_sals_from_address>:
1189 Renamed to create_sals_from_location.
1190 <decode_linespec>: Renamed to decode_location.
1191 Update all callers.
1192 * breakpoint.c (create_sals_from_address_default): Renamed to ...
1193 (create_sals_from_location_default): ... this.
1194 (addr_string_to_sals): Renamed to ...
1195 (location_to_sals): ... this.
1196 (decode_linespec_default): Renamed to ...
1197 (decode_location_default): ... this.
1198 (base_breakpoint_create_sals_from_address): Renamed to ...
1199 (base_breakpoint_create_sals_from_location): ... this.
1200 (bkpt_create_sals_from_address): Renamed to ...
1201 (bkpt_create_sals_from_location): ... this.
1202 (bkpt_decode_linespec): Renamed to ...
1203 (bkpt_decode_location): ... this.
1204 (bkpt_probe_create_sals_from_address): Renamed to ...
1205 (bkpt_probe_create_sals_from_location): ... this.
1206 (tracepoint_create_sals_from_address): Renamed to ...
1207 (tracepoint_create_sals_from_location): ... this.
1208 (tracepoint_decode_linespec): Renamed to ...
1209 (tracepoint_decode_location): ... this.
1210 (tracepoint_probe_create_sals_from_address): Renamed to ...
1211 (tracepoint_probe_create_sals_from_location): ... this.
1212 (tracepoint_probe_decode_linespec): Renamed to ...
1213 (tracepoint_probe_decode_location): ... this.
1214 (strace_marker_create_sals_from_address): Renamed to ...
1215 (strace_marker_create_sals_from_location): ... this.
1216 (decode_linespec_default): Renamed to ...
1217 (decode_location_default): ... this.
1218
e27852be
DE
12192015-08-10 Doug Evans <dje@google.com>
1220 Keith Seitz <keiths@redhat.com>
1221
1222 PR gdb/17960
1223 * symtab.c (make_file_symbol_completion_list_1): Renamed from
1224 make_file_symbol_completion_list and made static.
1225 (make_file_symbol_completion_list): New function.
80af41e0 1226
fd7dcb94
JB
12272015-08-10 Joel Brobecker <brobecker@adacore.com>
1228
1229 * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
1230 trailing new-line at end of warning message.
1231 (proceed): Add i18n marker to error messages.
1232
f12899e9
PA
12332015-08-07 Pedro Alves <palves@redhat.com>
1234
1235 * linux-nat.c (linux_nat_always_non_stop_p): Return 1.
1236
5ac21343
PA
12372015-08-07 Pedro Alves <palves@redhat.com>
1238
1239 * s390-linux-tdep.c (is_non_branch_ril)
1240 (s390_displaced_step_copy_insn): New functions.
1241 (s390_displaced_step_fixup): Update comment.
1242 (s390_gdbarch_init): Install s390_displaced_step_copy_insn as
1243 gdbarch_displaced_step_copy_insn hook.
1244
7f03bd92
PA
12452015-08-07 Pedro Alves <palves@redhat.com>
1246
1247 * infrun.c (displaced_step_prepare_throw): Return -1 if
1248 gdbarch_displaced_step_copy_insn returns NULL. Update intro
1249 comment.
1250 * rs6000-tdep.c (LWARX_MASK, LWARX_INSTRUCTION, LDARX_INSTRUCTION)
1251 (STWCX_MASK, STWCX_INSTRUCTION, STDCX_INSTRUCTION): Move higher up
1252 in file.
1253 (ppc_displaced_step_copy_insn): New function.
1254 (ppc_displaced_step_fixup): Update comment.
1255 (rs6000_gdbarch_init): Install ppc_displaced_step_copy_insn as
1256 gdbarch_displaced_step_copy_insn hook.
1257 * gdbarch.sh (displaced_step_copy_insn): Document what happens on
1258 NULL return.
1259 * gdbarch.h: Regenerate.
1260
3fc8eb30
PA
12612015-08-07 Pedro Alves <palves@redhat.com>
1262
1263 * inferior.h (struct inferior) <displaced_stepping_failed>: New
1264 field.
1265 * infrun.c (use_displaced_stepping_now_p): New parameter 'inf'.
1266 Return false if dispaced stepping failed before.
1267 (resume): Pass the current inferior to
1268 use_displaced_stepping_now_p. Wrap displaced_step_prepare in
1269 TRY/CATCH. If we get a MEMORY_ERROR, set the inferior's
1270 displaced_stepping_failed flag, and fall back to an in-line
1271 step-over.
1272
bfedc46a
PA
12732015-08-07 Pedro Alves <palves@redhat.com>
1274
1275 * darwin-nat.c (darwin_stop): Rename to ...
1276 (darwin_interrupt): ... this.
1277 (_initialize_darwin_inferior): Adjust.
1278 * gnu-nat.c (gnu_stop): Delete.
1279 (gnu_target): Don't install gnu_stop.
1280 * inf-ptrace.c (inf_ptrace_stop): Rename to ...
1281 (inf_ptrace_interrupt): ... this.
1282 (inf_ptrace_target): Adjust.
1283 * infcmd.c (interrupt_target_1): Use target_interrupt instead of
1284 target_stop.
1285 * linux-nat (linux_nat_stop): Rename to ...
1286 (linux_nat_interrupt): ... this.
1287 (linux_nat_stop): Reimplement.
1288 (linux_nat_add_target): Install linux_nat_interrupt.
1289 * nto-procfs.c (nto_interrupt_twice): Rename to ...
1290 (nto_handle_sigint_twice): ... this.
1291 (nto_interrupt): Rename to ...
1292 (nto_handle_sigint): ... this. Call target_interrupt instead of
1293 target_stop.
1294 (procfs_wait): Adjust.
1295 (procfs_stop): Rename to ...
1296 (procfs_interrupt): ... this.
1297 (init_procfs_targets): Adjust.
1298 * procfs.c (procfs_stop): Rename to ...
1299 (procfs_interrupt): ... this.
1300 (procfs_target): Adjust.
1301 * remote-m32r-sdi.c (m32r_stop): Rename to ...
1302 (m32r_interrupt): ... this.
1303 (init_m32r_ops): Adjust.
1304 * remote-sim.c (gdbsim_stop_inferior): Rename to ...
1305 (gdbsim_interrupt_inferior): ... this.
1306 (gdbsim_stop): Rename to ...
1307 (gdbsim_interrupt): ... this.
1308 (gdbsim_cntrl_c): Adjust.
1309 (init_gdbsim_ops): Adjust.
1310 * remote.c (sync_remote_interrupt): Adjust comments.
1311 (remote_stop_as): Rename to ...
1312 (remote_interrupt_as): ... this.
1313 (remote_stop): Adjust comment.
1314 (remote_interrupt): New function.
1315 (init_remote_ops): Install remote_interrupt.
1316 * target.c (target_interrupt): New function.
1317 * target.h (struct target_ops) <to_interrupt>: New field.
1318 (target_interrupt): New declaration.
1319 * windows-nat.c (windows_stop): Rename to ...
1320 (windows_interrupt): ... this.
1321 * target-delegates.c: Regenerate.
1322
d55007b5
PA
13232015-08-07 Pedro Alves <palves@redhat.com>
1324
1325 * signal-while-stepping-over-bp-other-thread.exp: Expect "restart
1326 threads" as alternative to "switching back to stepped thread".
1327
fbea99ea
PA
13282015-08-07 Pedro Alves <palves@redhat.com>
1329
1330 * NEWS: Mention "maint set/show target-non-stop".
1331 * breakpoint.c (update_global_location_list): Check
1332 target_is_non_stop_p instead of non_stop.
1333 * infcmd.c (attach_command_post_wait, attach_command): Likewise.
1334 * infrun.c (show_can_use_displaced_stepping)
1335 (can_use_displaced_stepping_p, start_step_over_inferior):
1336 Likewise.
1337 (internal_resume_ptid): New function.
1338 (resume): Use it.
1339 (proceed): Check target_is_non_stop_p instead of non_stop. If in
1340 all-stop mode but the target is always in non-stop mode, start all
1341 the other threads that are implicitly resumed too.
1342 (for_each_just_stopped_thread, fetch_inferior_event)
1343 (adjust_pc_after_break, stop_all_threads): Check
1344 target_is_non_stop_p instead of non_stop.
1345 (handle_inferior_event): Likewise. Handle detach-fork in all-stop
1346 with the target always in non-stop mode.
1347 (handle_signal_stop) <random signal>: Check target_is_non_stop_p
1348 instead of non_stop.
1349 (switch_back_to_stepped_thread): Check target_is_non_stop_p
1350 instead of non_stop.
1351 (keep_going_stepped_thread): Use internal_resume_ptid.
1352 (stop_waiting): If in all-stop mode, and the target is in non-stop
1353 mode, stop all threads.
1354 (keep_going_pass): Likewise, when starting a new in-line step-over
1355 sequence.
1356 * linux-nat.c (get_pending_status, select_event_lwp)
1357 (linux_nat_filter_event, linux_nat_wait_1, linux_nat_wait): Check
1358 target_is_non_stop_p instead of non_stop.
1359 (linux_nat_always_non_stop_p): New function.
1360 (linux_nat_stop): Check target_is_non_stop_p instead of non_stop.
1361 (linux_nat_add_target): Install linux_nat_always_non_stop_p.
1362 * target-delegates.c: Regenerate.
1363 * target.c (target_is_non_stop_p): New function.
1364 (target_non_stop_enabled, target_non_stop_enabled_1): New globals.
1365 (maint_set_target_non_stop_command)
1366 (maint_show_target_non_stop_command): New functions.
1367 (_initilize_target): Install "maint set/show target-non-stop"
1368 commands.
1369 * target.h (struct target_ops) <to_always_non_stop_p>: New field.
1370 (target_non_stop_enabled): New declaration.
1371 (target_is_non_stop_p): New declaration.
1372
372316f1
PA
13732015-08-07 Pedro Alves <pedro@codesourcery.com>
1374
1375 * breakpoint.c (breakpoints_should_be_inserted_now): If any thread
1376 has a pending status, return true.
1377 * gdbthread.h: Include target/waitstatus.h.
1378 (struct thread_suspend_state) <stop_reason, waitstatus_pending_p,
1379 stop_pc>: New fields.
1380 (struct thread_info) <resumed>: New field.
1381 (set_resumed): Declare.
1382 * infrun.c: Include "event-loop.h".
1383 (infrun_async_inferior_event_token, infrun_is_async): New globals.
1384 (infrun_async): New function.
1385 (clear_step_over_info): Add debug output.
1386 (displaced_step_in_progress_any_inferior): New function.
1387 (displaced_step_fixup): New returns int.
1388 (start_step_over): Handle in-line step-overs too. Assert the
1389 thread is marked resumed.
1390 (resume_cleanups): Clear the thread's resumed flag.
1391 (resume): Set the thread's resumed flag. Return early if the
1392 thread has a pending status. Allow stepping a breakpoint with no
1393 signal.
1394 (proceed): Adjust to check 'resumed' instead of 'executing'.
1395 (clear_proceed_status_thread): If the thread has a pending status,
1396 and that status is a finished step, discard the pending status.
1397 (clear_proceed_status): Don't clear step_over_info here.
1398 (random_pending_event_thread, do_target_wait): New functions.
1399 (prepare_for_detach, wait_for_inferior, fetch_inferior_event): Use
1400 do_target_wait.
1401 (wait_one): New function.
1402 (THREAD_STOPPED_BY): New macro.
1403 (thread_stopped_by_watchpoint, thread_stopped_by_sw_breakpoint)
1404 (thread_stopped_by_hw_breakpoint): New functions.
1405 (switch_to_thread_cleanup, save_waitstatus, stop_all_threads): New
1406 functions.
1407 (handle_inferior_event): Also call set_resumed(false) on all
1408 threads implicitly stopped by the event.
1409 (restart_threads, resumed_thread_with_pending_status): New
1410 functions.
1411 (finish_step_over): If we were doing an in-line step-over before,
1412 and no longer are after trying to start a new step-over, restart
1413 all threads. If we have multiple threads with pending events,
1414 save the current event and go through the event loop again.
1415 (handle_signal_stop): Return early if finish_step_over returns
1416 false.
1417 <random signal>: If we get a signal while stepping over a
1418 breakpoint in-line in non-stop mode, restart all threads. Clear
1419 step_over_info before delivering the signal.
1420 (keep_going_stepped_thread): Use internal_error instead of
1421 gdb_assert. Mark the thread as resumed.
1422 (keep_going_pass_signal): Assert the thread isn't already resumed.
1423 If some other thread is doing an in-line step-over, defer the
1424 resume. If we just started a new in-line step-over, stop all
1425 threads. Don't clear step_over_info.
1426 (infrun_async_inferior_event_handler): New function.
1427 (_initialize_infrun): Create async event handler with
1428 infrun_async_inferior_event_handler as callback.
1429 (infrun_async): New declaration.
1430 * target.c (target_async): New function.
1431 * target.h (target_async): Declare macro and readd as function
1432 declaration.
1433 * target/waitstatus.h (enum target_stop_reason)
1434 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
1435 * thread.c (new_thread): Clear the new waitstatus field.
1436 (set_resumed): New function.
1437
2ac7589c
PA
14382015-08-07 Pedro Alves <palves@redhat.com>
1439
1440 * infrun.c (keep_going_stepped_thread): New function, factored out
1441 from ...
1442 (switch_back_to_stepped_thread): ... here.
1443
8b061563
PA
14442015-08-07 Pedro Alves <palves@redhat.com>
1445
1446 * infrun.c (currently_stepping): Extend intro comment.
1447 * target.h (target_resume): Extend intro comment.
1448
1afd5965
PA
14492015-08-07 Pedro Alves <palves@redhat.com>
1450
1451 * infrun.c (switch_back_to_stepped_thread): Use ecs->ptid instead
1452 of inferior_ptid. If the stepped thread vanished, return 0
1453 instead of resuming here. Use reset_ecs. Print the prev_pc and
1454 the current stop_pc in log message. Clear trap_expected if the
1455 thread advanced. Don't pass currently_stepping to
1456 do_target_resume.
1457
4d9d9d04
PA
14582015-08-07 Pedro Alves <palves@redhat.com>
1459
1460 * gdbthread.h (struct thread_info) <prev_pc>: Extend comment.
1461 * infrun.c (struct execution_control_state): Move higher up in the
1462 file.
1463 (reset_ecs): New function.
1464 (start_step_over): Now returns int. Rewrite to use
1465 keep_going_pass_signal instead of manually starting a displaced step.
1466 (resume): Don't call set_running here. If displaced stepping
1467 can't start now, clear trap_expected.
1468 (find_thread_needs_step_over): Delete function.
1469 (proceed): Set up finish_thread_state_cleanup. Call set_running.
1470 If the current thread needs a step over, push it in the step-over
1471 chain. Don't set insert breakpoints nor call resume directly
1472 here. Instead rewrite to use start_step_over and
1473 keep_going_pass_signal.
1474 (finish_step_over): New function.
1475 (handle_signal_stop): Call finish_step_over instead of
1476 start_step_over.
1477 (switch_back_to_stepped_thread): If the event thread needs another
1478 step-over do that first. Use start_step_over.
1479 (keep_going_pass_signal): New function, factored out from ...
1480 (keep_going): ... here.
1481 (_initialize_infrun): Comment moved here.
1482 * thread.c (set_running_thread): New function.
1483 (set_running, finish_thread_state): Use set_running_thread.
1484
c2829269
PA
14852015-08-07 Pedro Alves <palves@redhat.com>
1486
1487 * gdbthread.h (struct thread_info) <step_over_prev,
1488 step_over_next>: New fields.
1489 (thread_step_over_chain_enqueue, thread_step_over_chain_remove)
1490 (thread_step_over_chain_next, thread_is_in_step_over_chain): New
1491 declarations.
1492 * infrun.c (struct displaced_step_request): Delete.
1493 (struct displaced_step_inferior_state) <step_request_queue>:
1494 Delete field.
1495 (displaced_step_prepare): Assert that trap_expected is set. Use
1496 thread_step_over_chain_enqueue. Split starting a new displaced
1497 step to ...
1498 (start_step_over): ... this new function.
1499 (resume): Assert the thread isn't waiting for a step over already.
1500 (proceed): Assert the thread isn't waiting for a step over
1501 already.
1502 (infrun_thread_stop_requested): Adjust to remove threads from the
1503 embedded step-over chain.
1504 (handle_inferior_event) <fork/vfork>: Call start_step_over after
1505 displaced_step_fixup.
1506 (handle_signal_stop): Call start_step_over after
1507 displaced_step_fixup.
1508 * infrun.h (step_over_queue_head): New declaration.
1509 * thread.c (step_over_chain_enqueue, step_over_chain_remove)
1510 (thread_step_over_chain_next, thread_is_in_step_over_chain)
1511 (thread_step_over_chain_enqueue)
1512 (thread_step_over_chain_remove): New functions.
1513 (delete_thread_1): Remove thread from the step-over chain.
1514
6c4cfb24
PA
15152015-08-07 Pedro Alves <palves@redhat.com>
1516
1517 * infrun.c (thread_still_needs_step_over): Rename to ...
1518 (thread_still_needs_step_over_bp): ... this.
1519 (enum step_over_what): New.
1520 (thread_still_needs_step_over): Reimplement.
1521
567420d1
PA
15222015-08-07 Pedro Alves <palves@redhat.com>
1523
1524 * remote.c (remote_wait_as): If not waiting for a stop reply,
1525 return TARGET_WAITKIND_NO_RESUMED. If TARGET_WNOHANG is
1526 requested, don't block waiting forever.
1527
d8dd4d5f
PA
15282015-08-07 Pedro Alves <pedro@codesourcery.com>
1529
1530 * infrun.c (adjust_pc_after_break): Now takes thread_info and
1531 waitstatus pointers instead of an ecs. Adjust.
1532 (handle_inferior_event): Adjust caller.
1533
e1316e60
PA
15342015-08-07 Pedro Alves <palves@redhat.com>
1535
1536 * infrun.c (handle_inferior_event): If we get
1537 TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
1538 mode, mark all threads of the exiting process as not-executing.
1539 (normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
1540 TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
1541 exiting process, if inferior_ptid still points at a process.
1542 * thread.c (struct current_thread_cleanup) <next>: New field.
1543 (current_thread_cleanup_chain): New global.
1544 (restore_current_thread_ptid_changed): New function.
1545 (restore_current_thread_cleanup_dtor): Remove the cleanup from the
1546 current_thread_cleanup_chain list.
1547 (make_cleanup_restore_current_thread): Add the cleanup data to the
1548 current_thread_cleanup_chain list.
1549 (_initialize_thread): Install restore_current_thread_ptid_changed
1550 as thread_ptid_changed observer.
1551
47e9c225
JB
15522015-08-07 Joel Brobecker <brobecker@adacore.com>
1553
1554 * dtrace-probe.c (dtrace_process_dof): Ignore the objfile's DOF
1555 data if a DTRACE_DOF_SECT_TYPE_PROVIDER section is found to be
1556 smaller than expected.
1557
06096720
AB
15582015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
1559
1560 * stack.c (get_frame_language): Moved ...
1561 * frame.c (get_frame_language): ... to here.
1562 * language.h (get_frame_language): Declaration moved to frame.h.
1563 * frame.h: Add language.h include, for language enum.
1564 (get_frame_language): Declaration moved from language.h.
1565 * language.c: Add frame.h include.
1566 * top.c: Add frame.h include.
1567 * symtab.h (struct obj_section): Declare.
1568 (struct cmd_list_element): Declare.
1569
7ff38b1c
AB
15702015-08-07 Andrew Burgess <andrew.burgess@embecosm.com>
1571
1572 * language.c (show_language_command): Find selected frame before
1573 asking for the language of that frame.
1574 (set_language_command): Likewise.
1575 * language.h (get_frame_language): Add frame parameter.
1576 * stack.c (get_frame_language): Add frame parameter, assert
1577 parameter is not NULL, update comment and reindent.
1578 * top.c (check_frame_language_change): Pass the selected frame
1579 into get_frame_language.
1580
da8c46d2
MM
15812015-08-07 Markus Metzger <markus.t.metzger@intel.com>
1582
1583 * btrace.c (btrace_compute_ftrace_bts): Clear insn flags.
1584 (pt_btrace_insn_flags): New.
1585 (ftrace_add_pt): Call pt_btrace_insn_flags.
1586 * btrace.h (btrace_insn_flag): New.
1587 (btrace_insn) <flags>: New.
1588 * record-btrace.c (btrace_insn_history): Print insn prefix.
1589 * NEWS: Announce it.
1590
5599c404
MM
15912015-08-07 Markus Metzger <markus.t.metzger@intel.com>
1592
1593 * configure.ac: Check for PERF_ATTR_SIZE_VER5 in linux/perf_event.h
1594 * configure: Regenerate.
1595
016a3251
DD
15962015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1597
1598 * Makefile.in (LIBICONV): Define.
1599 (CLIBS): Add LIBICONV.
1600 * acinclude.m4: Use config/iconv.m4 instead of custom AM_ICONV.
1601 * configure: Regenerate.
1602
aead7601
SM
16032015-08-06 Simon Marchi <simon.marchi@ericsson.com>
1604 Pedro Alves <palves@redhat.com>
1605
1606 * arm-tdep.c (set_fp_model_sfunc): Add cast from integer to enum.
1607 (arm_set_abi): Likewise.
1608 * ax-general.c (ax_print): Likewise.
1609 * c-exp.y (exp : string_exp): Likewise.
1610 * compile/compile-loc2c.c (compute_stack_depth_worker): Likewise.
1611 (do_compile_dwarf_expr_to_c): Likewise.
1612 * cp-name-parser.y (demangler_special : DEMANGLER_SPECIAL start):
1613 Likewise.
1614 * dwarf2expr.c (execute_stack_op): Likewise.
1615 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
1616 (disassemble_dwarf_expression): Likewise.
1617 * dwarf2read.c (dwarf2_add_member_fn): Likewise.
1618 (read_array_order): Likewise.
1619 (abbrev_table_read_table): Likewise.
1620 (read_attribute_value): Likewise.
1621 (skip_unknown_opcode): Likewise.
1622 (dwarf_decode_macro_bytes): Likewise.
1623 (dwarf_decode_macros): Likewise.
1624 * eval.c (value_f90_subarray): Likewise.
1625 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
1626 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
1627 * infrun.c (handle_command): Likewise.
1628 * memory-map.c (memory_map_start_memory): Likewise.
1629 * osabi.c (set_osabi): Likewise.
1630 * parse.c (operator_length_standard): Likewise.
1631 * ppc-linux-tdep.c (ppc_canonicalize_syscall): Likewise, and use
1632 single return point.
1633 * python/py-frame.c (gdbpy_frame_stop_reason_string): Likewise.
1634 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
1635 (gdbpy_lookup_global_symbol): Likewise.
1636 * record-full.c (record_full_restore): Likewise.
1637 * regcache.c (regcache_register_status): Likewise.
1638 (regcache_raw_read): Likewise.
1639 (regcache_cooked_read): Likewise.
1640 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
1641 * symtab.c (initialize_ordinary_address_classes): Likewise.
1642 * target-debug.h (target_debug_print_signals): Likewise.
1643 * utils.c (do_restore_current_language): Likewise.
1644
ca0a5f0b
CD
16452015-08-06 Clem Dickey <clemd@acm.org>
1646
1647 PR python/17136
1648 * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo.
1649
05d999b0
SM
16502015-08-06 Simon Marchi <simon.marchi@ericsson.com>
1651
1652 * complaints.c (enum complaint_series): Add newlines and remove
1653 out of date comment.
1654 (struct complaints) <series>: Change type to enum
1655 complaint_series and remove out of date comment.
1656 (symfile_complaint_hook): Use equivalent enum value
1657 ISOLATED_MESSAGE instead of 0.
1658
bf47e248
PA
16592015-08-06 Pedro Alves <palves@redhat.com>
1660
1661 * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid
1662 returned > 0.
1663
b6b9ffcc
PL
16642015-08-06 Pierre Langlois <pierre.langlois@arm.com>
1665
1666 * common/agent.c (symbol_list) <required>: Remove.
1667
863d01bd
PA
16682015-08-06 Pedro Alves <palves@redhat.com>
1669
1670 * target/waitstatus.h (enum target_stop_reason)
1671 <TARGET_STOPPED_BY_SINGLE_STEP>: New value.
1672
0a39bb32
PA
16732015-08-05 Pedro Alves <palves@redhat.com>
1674 Joel Brobecker <brobecker@adacore.com>
1675
9d996aba 1676 * breakpoint.c (bpstat_what) <bp_longjmp, bp_longjmp_call_dummy>
0a39bb32
PA
1677 <bp_exception, bp_longjmp_resume, bp_exception_resume>: Handle the
1678 case where BS->STOP is not set.
1679
260439cb
UW
16802015-08-05 Ulrich Weigand <uweigand@de.ibm.com>
1681
1682 * nat/gdb_thread_db.h: Add copyright header.
1683 Protect against multiple inclusion.
1684
d89fa914
YQ
16852015-08-05 Yao Qi <yao.qi@linaro.org>
1686
1687 * aarch64-linux-nat.c (get_thread_id): Remove.
1688 (debug_reg_change_callback): Call ptid_get_lwp instead of
1689 get_thread_id.
1690 (fetch_gregs_from_thread): Likewise.
1691 (store_gregs_to_thread): Likewise.
1692 (fetch_fpregs_from_thread): Likewise.
1693 (store_fpregs_to_thread): Likewise.
1694 (aarch64_linux_get_debug_reg_capacity): Likewise.
1695 * arm-linux-nat.c (get_thread_id): Remove.
1696 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
1697 * xtensa-linux-nat.c (get_thread_id): Remove.
1698 (GET_THREAD_ID): Update macro to use ptid_get_lwp.
1699 * arm-linux-nat.c (get_thread_id): Remove.
1700 (GET_THREAD_ID): Remove.
1701 (fetch_fpregs): Call ptid_get_lwp instead of GET_THREAD_ID.
1702 (store_fpregs, fetch_regs, store_regs): Likewise.
1703 (fetch_wmmx_regs, store_wmmx_regs): Likewise.
1704 (fetch_vfp_regs, store_vfp_regs): Likewise.
1705 (arm_linux_read_description): Likewise.
1706 (arm_linux_get_hwbp_cap): Likewise.
1707 * xtensa-linux-nat.c (get_thread_id): Remove.
1708 (GET_THREAD_ID): Remove.
1709 (fetch_gregs, store_gregs): Call ptid_get_lwp instead of
1710 GET_THREAD_ID.
1711
4efd80aa
CS
17122015-08-04 Ciro Santilli <ciro.santilli@gmail.com> (obvious patch)
1713
1714 * python/py-linetable.c: Fix case of Linetable to LineTable
1715 in docstrings and code comments.
1716 * python/py-symtab.c: Same.
1717
c6343a91
JK
17182015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1719
1720 * infcmd.c (signal_command): Call do_cleanups for args_chain.
1721
978b9495
JK
17222015-08-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1723
1724 PR gdb/18767
1725 * infcmd.c (attach_command): Move ARGS_CHAIN cleanup after last ARGS
1726 use.
1727
96e9210f
PA
17282015-08-04 Pedro Alves <palves@redhat.com>
1729
1730 * nat/gdb_thread_db.h (td_init_ftype, td_ta_new_ftype)
1731 (td_ta_map_lwp2thr_ftype, td_ta_thr_iter_ftype)
1732 (td_ta_event_addr_ftype, td_ta_set_event_ftype)
1733 (td_ta_clear_event_ftype, td_ta_event_getmsg_ftype)
1734 (td_thr_validate_ftype, td_thr_get_info_ftype)
1735 (td_thr_event_enable_ftype, td_thr_tls_get_addr_ftype)
1736 (td_thr_tlsbase_ftype, td_symbol_list_ftype, td_ta_delete_ftype):
1737 New typedefs.
1738 * linux-thread-db.c (struct thread_db_info): Use new typedefs.
1739 (try_thread_db_load_1): Define TDB_VERBOSE_DLSYM, TDB_DLSYM , CHK
1740 local macros and use them instead of verbose_dlsym and dlsym
1741 calls.
1742
af60a1ef
SL
17432015-08-03 Sandra Loosemore <sandra@codesourcery.com>
1744
1745 * nios2-tdep.h: Include opcode/nios2.h here.
1746 (NIOS2_CDX_OPCODE_SIZE): New.
1747 (struct gdbarch_tdep): Add OP parameter to syscall_next_pc.
1748 * nios2-tdep.c: Don't include opcode/nios2.h here.
1749 (nios2_fetch_insn): For R2, try reading 2-byte instruction if
1750 4-byte read fails.
1751 (nios2_match_add, nios2_match_sub): Add cases for R2 encodings.
1752 (nios2_match_addi, nios2_match_orhi): Likewise.
1753 (nios2_match_stw, nios2_match_ldw): Likewise.
1754 (nios2_match_rdctl): Likewise.
1755 (nios2_match_stwm, nios2_match_ldwm): New.
1756 (nios2_match_branch): Add cases for R2 encodings.
1757 (nios2_match_jmpi, nios2_match_calli): Likewise.
1758 (nios2_match_jmpr, nios2_match_callr): Likewise.
1759 (nios2_match_break, nios2_match_trap): Likewise.
1760 (nios2_in_epilogue_p): Add R2 support.
1761 (nios2_analyze_prologue): Update comments. Recognize R2 CDX
1762 prologues.
1763 (nios2_breakpoint_from_pc): Handle R2 instructions.
1764 (nios2_get_next_pc): Likewise. Adjust call to
1765 tdep->syscall_next_pc.
1766 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame):
1767 Renamed from nios2_linux_rt_sigreturn_tramp_frame. Use
1768 instruction field macros instead of literal hex values.
1769 (nios2_r2_linux_rt_sigreturn_tramp_frame): New.
1770 (nios2_linux_syscall_next_pc): Adjust signature to pass OP.
1771 Use size field from OP instead of assuming all instructions
1772 are the same size.
1773 (nios2_linux_init_abi): Register appropriate unwinder for mach.
1774
1da03605
UW
17752015-08-03 Ulrich Weigand <uweigand@de.ibm.com>
1776
1777 * cp-namespace.c (cp_lookup_symbol_via_imports): Fix uninitialized
1778 variable warning with some compilers.
1779
8156fe7f
YQ
17802015-08-03 Yao Qi <yao.qi@linaro.org>
1781
1782 * arm-linux-nat.c (arm_linux_get_hwbp_type): Capitalize "type"
1783 in comment. Replace "rw" with "type".
1784 (arm_linux_remove_watchpoint): Change type of "rw" to
1785 "enum target_hw_bp_type".
1786
835a09d9
PMR
17872015-08-02 Pierre-Marie de Rodat <derodat@adacore.com>
1788
1789 * alpha-mdebug-tdep.c (find_proc_desc): Update call to
1790 lookup_symbol.
1791 * ft32-tdep.c (ft32_skip_prologue): Likewise.
1792 * moxie-tdep.c (moxie_skip_prologue): Likewise.
1793 * mt-tdep.c (mt_skip_prologue): Likewise.
1794 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
1795
d12307c1
PMR
17962015-08-01 Pierre-Marie de Rodat <derodat@adacore.com>
1797
1798 * ada-exp.y (write_object_renaming): Replace struct
1799 ada_symbol_info with struct block_symbol. Update field
1800 references accordingly.
1801 (block_lookup, select_possible_type_sym): Likewise.
1802 (find_primitive_type): Likewise. Also update call to
1803 ada_lookup_symbol to extract the symbol itself.
1804 (write_var_or_type, write_name_assoc): Likewise.
1805 * ada-lang.h (struct ada_symbol_info): Remove.
1806 (ada_lookup_symbol_list): Replace struct ada_symbol_info with
1807 struct block_symbol.
1808 (ada_lookup_encoded_symbol, user_select_syms): Likewise.
1809 (ada_lookup_symbol): Return struct block_symbol instead of a
1810 mere symbol.
1811 * ada-lang.c (defns_collected): Replace struct ada_symbol_info
1812 with struct block_symbol.
1813 (resolve_subexp, ada_resolve_function, sort_choices,
1814 user_select_syms, is_nonfunction, add_defn_to_vec,
1815 num_defns_collected, defns_collected,
1816 symbols_are_identical_enums, remove_extra_symbols,
1817 remove_irrelevant_renamings, add_lookup_symbol_list_worker,
1818 ada_lookup_symbol_list, ada_iterate_over_symbols,
1819 ada_lookup_encoded_symbol, get_var_value): Likewise.
1820 (ada_lookup_symbol): Return a block_symbol instead of a mere
1821 symbol. Replace struct ada_symbol_info with struct
1822 block_symbol.
1823 (ada_lookup_symbol_nonlocal): Likewise.
1824 (standard_lookup): Make block passing explicit through
1825 lookup_symbol_in_language.
1826 * ada-tasks.c (get_tcb_types_info): Update the calls to
1827 lookup_symbol_in_language to extract the mere symbol out of the
1828 returned value.
1829 (ada_tasks_inferior_data_sniffer): Likewise.
1830 * ax-gdb.c (gen_static_field): Likewise for the call to
1831 lookup_symbol.
a5fdf78a 1832 (gen_maybe_namespace_elt): Deal with struct block_symbol from
d12307c1
PMR
1833 lookup functions.
1834 (gen_expr): Likewise.
1835 * c-exp.y: Likewise. Remove uses of block_found.
1836 (lex_one_token, classify_inner_name, c_print_token): Likewise.
1837 (classify_name): Likewise. Rename the "sym" local variable to
1838 "bsym".
1839 * c-valprint.c (print_unpacked_pointer): Likewise.
1840 * compile/compile-c-symbols.c (convert_symbol_sym): Promote the
1841 "sym" parameter from struct symbol * to struct block_symbol.
1842 Use it to remove uses of block_found. Deal with struct
a5fdf78a 1843 block_symbol from lookup functions.
d12307c1
PMR
1844 (gcc_convert_symbol): Likewise. Update the call to
1845 convert_symbol_sym.
1846 * compile/compile-object-load.c (compile_object_load): Deal with
a5fdf78a 1847 struct block_symbol from lookup functions.
d12307c1
PMR
1848 * cp-namespace.c (cp_lookup_nested_symbol_1,
1849 cp_lookup_nested_symbol, cp_lookup_bare_symbol,
1850 cp_search_static_and_baseclasses,
1851 cp_lookup_symbol_in_namespace, cp_lookup_symbol_via_imports,
1852 cp_lookup_symbol_imports_or_template,
1853 cp_lookup_symbol_via_all_imports, cp_lookup_symbol_namespace,
1854 lookup_namespace_scope, cp_lookup_nonlocal,
a5fdf78a
PMR
1855 find_symbol_in_baseclass): Return struct block_symbol instead of
1856 mere symbols and deal with struct block_symbol from lookup
d12307c1
PMR
1857 functions.
1858 * cp-support.c (inspect_type, replace_typedefs,
a5fdf78a 1859 cp_lookup_rtti_type): Deal with struct block_symbol from
d12307c1
PMR
1860 lookup functions.
1861 * cp-support.h (cp_lookup_symbol_nonlocal,
1862 cp_lookup_symbol_from_namespace,
1863 cp_lookup_symbol_imports_or_template, cp_lookup_nested_symbol):
a5fdf78a 1864 Return struct block_symbol instead of mere symbols.
d12307c1
PMR
1865 * d-exp.y (d_type_from_name, d_module_from_name, push_variable,
1866 push_module_name):
a5fdf78a 1867 Deal with struct block_symbol from lookup functions. Remove
d12307c1
PMR
1868 uses of block_found.
1869 * eval.c (evaluate_subexp_standard): Update call to
1870 cp_lookup_symbol_namespace.
a5fdf78a
PMR
1871 * f-exp.y: Deal with struct block_symbol from lookup functions.
1872 Remove uses of block_found.
d12307c1
PMR
1873 (yylex): Likewise.
1874 * gdbtypes.c (lookup_typename, lookup_struct, lookup_union,
1875 lookup_enum, lookup_template_type, check_typedef): Deal with
a5fdf78a 1876 struct block_symbol from lookup functions.
d12307c1
PMR
1877 * guile/scm-frame.c (gdbscm_frame_read_var): Likewise.
1878 * guile/scm-symbol.c (gdbscm_lookup_symbol): Likewise.
1879 (gdbscm_lookup_global_symbol): Likewise.
1880 * gnu-v3-abi.c (gnuv3_get_typeid_type): Likewise.
1881 * go-exp.y: Likewise. Remove uses of block_found.
1882 (package_name_p, classify_packaged_name, classify_name):
1883 Likewise.
1884 * infrun.c (insert_exception_resume_breakpoint): Likewise.
1885 * jv-exp.y (push_variable): Likewise.
1886 * jv-lang.c (java_lookup_class, get_java_object_type): Likewise.
1887 * language.c (language_bool_type): Likewise.
1888 * language.h (struct language_defn): Update
a5fdf78a
PMR
1889 la_lookup_symbol_nonlocal to return a struct block_symbol rather
1890 than a mere symbol.
1891 * linespec.c (find_label_symbols): Deal with struct block_symbol
1892 from lookup functions.
d12307c1
PMR
1893 * m2-exp.y: Likewise. Remove uses of block_found.
1894 (yylex): Likewise.
1895 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
1896 * objc-lang.c (lookup_struct_typedef, find_imps): Likewise.
1897 * p-exp.y: Likewise. Remove uses of block_found.
1898 (yylex): Likewise.
1899 * p-valprint.c (pascal_val_print): Likewise.
1900 * parse.c (write_dollar_variable): Likewise. Remove uses of
1901 block_found.
1902 * parser-defs.h (struct symtoken): Turn the SYM field into a
a5fdf78a
PMR
1903 struct block_symbol.
1904 * printcmd.c (address_info): Deal with struct block_symbol from
1905 lookup functions.
d12307c1
PMR
1906 * python/py-frame.c (frapy_read_var): Likewise.
1907 * python/py-symbol.c (gdbpy_lookup_symbol,
1908 gdbpy_lookup_global_symbol): Likewise.
1909 * skip.c (skip_function_command): Likewise.
1910 * solib-darwin.c (darwin_lookup_lib_symbol): Return a struct
a5fdf78a 1911 block_symbol instead of a mere symbol.
d12307c1
PMR
1912 * solib-spu.c (spu_lookup_lib_symbol): Likewise.
1913 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
1914 * solib.c (solib_global_lookup): Likewise.
1915 * solist.h (solib_global_lookup): Likewise.
1916 (struct target_so_ops): Update lookup_lib_global_symbol to
a5fdf78a
PMR
1917 return a struct block_symbol rather than a mere symbol.
1918 * source.c (select_source_symtab): Deal with struct block_symbol
1919 from lookup functions.
d12307c1
PMR
1920 * stack.c (print_frame_args, iterate_over_block_arg_vars):
1921 Likewise.
1922 * symfile.c (set_initial_language): Likewise.
1923 * symtab.c (SYMBOL_LOOKUP_FAILED): Turn into a struct
a5fdf78a 1924 block_symbol.
d12307c1
PMR
1925 (SYMBOL_LOOKUP_FAILED_P): New predicate as a macro.
1926 (struct symbol_cache_slot): Turn the FOUND field into a struct
a5fdf78a 1927 block_symbol.
d12307c1 1928 (block_found): Remove.
a5fdf78a 1929 (eq_symbol_entry): Update to deal with struct block_symbol in
d12307c1 1930 cache slots.
a5fdf78a
PMR
1931 (symbol_cache_lookup): Return a struct block_symbol rather than
1932 a mere symbol.
d12307c1
PMR
1933 (symbol_cache_mark_found): Add a BLOCK parameter to fill
1934 appropriately the cache slots. Update callers.
1935 (symbol_cache_dump): Update cache slots handling to the type
1936 change.
1937 (lookup_symbol_in_language, lookup_symbol, lookup_language_this,
1938 lookup_symbol_aux, lookup_local_symbol,
1939 lookup_symbol_in_objfile, lookup_global_symbol_from_objfile,
1940 lookup_symbol_in_objfile_symtabs,
1941 lookup_symbol_in_objfile_from_linkage_name,
1942 lookup_symbol_via_quick_fns, basic_lookup_symbol_nonlocal,
1943 lookup_symbol_in_static_block, lookup_static_symbol,
1944 lookup_global_symbol):
a5fdf78a
PMR
1945 Return a struct block_symbol rather than a mere symbol. Deal
1946 with struct block_symbol from other lookup functions. Remove
d12307c1
PMR
1947 uses of block_found.
1948 (lookup_symbol_in_block): Remove uses of block_found.
1949 (struct global_sym_lookup_data): Turn the RESULT field into a
a5fdf78a 1950 struct block_symbol.
d12307c1
PMR
1951 (lookup_symbol_global_iterator_cb): Update references to the
1952 RESULT field.
a5fdf78a 1953 (search_symbols): Deal with struct block_symbol from lookup
d12307c1 1954 functions.
a5fdf78a 1955 * symtab.h (struct block_symbol): New structure.
d12307c1
PMR
1956 (block_found): Remove.
1957 (lookup_symbol_in_language, lookup_symbol,
1958 basic_lookup_symbol_nonlocal, lookup_symbol_in_static_block,
a5fdf78a
PMR
1959 lookup_static_symbol, lookup_global_symbol, lookup_language_this,
1960 lookup_global_symbol_from_objfile): Return a struct block_symbol
1961 rather than just a mere symbol. Update comments to remove
1962 mentions of block_found.
d12307c1
PMR
1963 * valops.c (find_function_in_inferior,
1964 value_struct_elt_for_reference, value_maybe_namespace_elt,
a5fdf78a 1965 value_of_this): Deal with struct block_symbol from lookup
d12307c1
PMR
1966 functions.
1967 * value.c (value_static_field, value_fn_field): Likewise.
1968
b1c59ddc
SM
19692015-07-31 Simon Marchi <simon.marchi@ericsson.com>
1970
1971 * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type
1972 instead of integer.
1973
f486487f 19742015-07-31 Simon Marchi <simon.marchi@ericsson.com>
84da3f0c 1975 Pedro Alves <palves@redhat.com>
f486487f
SM
1976
1977 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum
1978 type or value instead of integer.
1979 (aarch64_linux_insert_watchpoint): Likewise.
1980 (aarch64_linux_remove_watchpoint): Likewise.
1981 * ada-lang.c (ada_op_print_tab): Likewise.
1982 * amd64-linux-tdep.c (amd64_canonicalize_syscall): Likewise.
1983 (amd64_linux_syscall_record_common): Likewise.
1984 * arch-utils.c (target_byte_order_user): Likewise.
1985 (default_byte_order): Likewise.
1986 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Likewise.
1987 (arm_linux_get_hwbp_type): Likewise.
1988 (arm_linux_hw_watchpoint_initialize): Likewise.
1989 (arm_linux_insert_watchpoint): Likewise.
1990 * arm-linux-tdep.c (arm_canonicalize_syscall): Likewise.
1991 (arm_linux_syscall_record): Likewise.
1992 * breakpoint.c (update_watchpoint): Likewise.
1993 (breakpoint_here_p): Likewise.
1994 (bpstat_print): Likewise.
1995 (enable_breakpoint_disp): Likewise.
1996 * c-lang.c (c_op_print_tab): Likewise.
1997 * cli/cli-decode.c (add_info_alias): Likewise.
1998 * d-lang.c (d_op_print_tab): Likewise.
1999 * eval.c (evaluate_subexp_standard): Likewise.
2000 * f-exp.y (dot_ops): Likewise.
2001 (f77_keywords): Likewise.
2002 * f-lang.c (f_op_print_tab): Likewise.
2003 * go-lang.c (go_op_print_tab): Likewise.
2004 * guile/scm-breakpoint.c (gdbscm_make_breakpoint): Likewise.
2005 * guile/scm-cmd.c (gdbscm_make_command): Likewise.
2006 * guile/scm-param.c (gdbscm_make_parameter): Likewise.
2007 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Likewise.
2008 * guile/scm-string.c (struct scm_to_stringn_data): Likewise.
2009 (struct scm_from_stringn_data): Likewise.
2010 * i386-linux-tdep.c (i386_canonicalize_syscall): Likewise.
2011 * ia64-linux-nat.c (ia64_linux_insert_watchpoint): Likewise.
2012 (ia64_linux_remove_watchpoint): Likewise.
2013 (ia64_linux_can_use_hw_breakpoint): Likewise.
2014 * infrun.c (print_stop_event): Likewise.
2015 * jv-lang.c (java_op_print_tab): Likewise.
2016 * linux-nat.c (linux_proc_xfer_partial): Likewise.
2017 * linux-nat.h (struct lwp_info): Likewise.
2018 * linux-thread-db.c (enable_thread_event): Likewise.
2019 * m2-lang.c (m2_op_print_tab): Likewise.
2020 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Likewise.
2021 (mi_cmd_stack_list_variables): Likewise.
2022 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
2023 * mi/mi-out.c (mi_table_begin): Likewise.
2024 (mi_table_header): Likewise.
2025 * mips-linux-nat.c (mips_linux_can_use_hw_breakpoint): Likewise.
2026 (mips_linux_insert_watchpoint): Likewise.
2027 (mips_linux_remove_watchpoint): Likewise.
2028 * nat/mips-linux-watch.c (mips_linux_watch_type_to_irw): Likewise.
2029 * nat/mips-linux-watch.h (struct mips_watchpoint): Likewise.
2030 (mips_linux_watch_type_to_irw): Likewise.
2031 * nto-procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2032 (procfs_insert_hw_watchpoint): Likewise.
2033 (procfs_remove_hw_watchpoint): Likewise.
2034 (procfs_hw_watchpoint): Likewise.
2035 (procfs_can_use_hw_breakpoint): Likewise.
2036 (procfs_remove_hw_watchpoint): Likewise.
2037 (procfs_insert_hw_watchpoint): Likewise.
2038 * p-lang.c (pascal_op_print_tab): Likewise.
2039 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): Likewise.
2040 * ppc-linux-tdep.c (ppu2spu_unwind_register): Likewise.
2041 * ppc-sysv-tdep.c (get_decimal_float_return_value): Likewise.
2042 * procfs.c (procfs_can_use_hw_breakpoint): Likewise.
2043 (procfs_insert_watchpoint): Likewise.
2044 (procfs_remove_watchpoint): Likewise.
2045 * psymtab.c (recursively_search_psymtabs): Likewise.
2046 * remote-m32r-sdi.c (m32r_can_use_hw_watchpoint): Likewise.
2047 (m32r_insert_watchpoint): Likewise.
2048 * remote-mips.c (mips_can_use_watchpoint): Likewise.
2049 (mips_insert_watchpoint): Likewise.
2050 (mips_remove_watchpoint): Likewise.
2051 * remote.c (watchpoint_to_Z_packet): Likewise.
2052 (remote_insert_watchpoint): Likewise.
2053 (remote_remove_watchpoint): Likewise.
2054 (remote_check_watch_resources): Likewise.
2055 * s390-linux-nat.c (s390_insert_watchpoint): Likewise.
2056 (s390_remove_watchpoint): Likewise.
2057 (s390_can_use_hw_breakpoint): Likewise.
2058 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
2059 * spu-linux-nat.c (spu_can_use_hw_breakpoint): Likewise.
2060 * target.h (struct target_ops): Likewise.
2061 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
2062 * ui-out.c (struct ui_out_hdr): Likewise.
2063 (append_header_to_list): Likewise.
2064 (get_next_header): Likewise.
2065 (verify_field): Likewise.
2066 (ui_out_begin): Likewise.
2067 (ui_out_field_int): Likewise.
2068 (ui_out_field_fmt_int): Likewise.
2069 (ui_out_field_skip): Likewise.
2070 (ui_out_field_string): Likewise.
2071 (ui_out_field_fmt): Likewise.
2072 * varobj.c (new_variable): Likewise.
2073 * x86-nat.c (x86_insert_watchpoint): Likewise.
2074 (x86_remove_watchpoint): Likewise.
2075 (x86_can_use_hw_breakpoint): Likewise.
2076 * xtensa-tdep.h (struct gdbarch_tdep): Likewise.
2077 * inflow.c (enum gdb_has_a_terminal_flag_enum): Add name to
2078 previously anonymous enumeration type..
2079 * linux-record.h (enum gdb_syscall): Add gdb_sys_no_syscall
2080 value.
2081 * target-debug.h (target_debug_print_enum_target_hw_bp_type): New.
2082 (target_debug_print_enum_bptype): New.
2083 * target-delegates.c: Regenerate.
2084
e1b5381f
SL
20852015-07-30 Sandra Loosemore <sandra@codesourcery.com>
2086
2087 * nios2-tdep.c (nios2_analyze_prologue): Do what the comment
2088 already says and disallow non-stack memory writes in the prologue.
2089
9aaf8e3a
SL
20902015-07-30 Sandra Loosemore <sandra@codesourcery.com>
2091
2092 * nios2-tdep.c (nios2_analyze_prologue): Update comments to
2093 reflect how current GCC emits stack overflow checks. Match
2094 both trap and break instructions for backward compatbility.
2095 Disallow other trap and break instructions in the prologue.
2096
69dde7dc
PA
20972015-07-30 Pedro Alves <palves@redhat.com>
2098
2099 PR threads/18600
2100 * linux-nat.c (wait_lwp): Report to the core when thread group
2101 leader exits.
2102
4dd63d48
PA
21032015-07-30 Pedro Alves <palves@redhat.com>
2104 Simon Marchi <simon.marchi@ericsson.com>
2105
2106 PR threads/18600
2107 * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
2108 mark the new thread as resumed. Remove STOPPING parameter.
2109 (wait_lwp): Adjust call to linux_handle_extended_wait.
2110 (linux_nat_filter_event): Adjust call to
2111 linux_handle_extended_wait.
2112 (resume_stopped_resumed_lwps): Add debug output.
2113
6b940e6a
PL
21142015-07-30 Pierre Langlois <pierre.langlois@arm.com>
2115
2116 * arch-utils.c (default_fast_tracepoint_valid_at): Remove unused
2117 isize argument.
2118 * arch-utils.h (default_fast_tracepoint_valid_at): Likewise.
2119 * breakpoint.c (check_fast_tracepoint_sals): Adjust call to
2120 gdbarch_fast_tracepoint_valid_at.
2121 * gdbarch.sh (fast_tracepoint_valid_at): Remove isize argument.
2122 * gdbarch.h: Regenerate.
2123 * gdbarch.c: Regenerate.
2124 * i386-tdep.c (i386_fast_tracepoint_valid_at): Remove isize
2125 argument. Do not set it.
2126 * remote.c (remote_download_tracepoint): Adjust call to
2127 gdbarch_fast_tracepoint_valid_at. Call gdb_insn_length to get
2128 the instruction length.
2129
ec741292
YQ
21302015-07-30 Yao Qi <yao.qi@linaro.org>
2131
2132 * arm-tdep.h (enum gdb_regnum): Move it to ...
2133 * arch/arm.h: ... here. New file.
2134 * Makefile.in (HFILES_NO_SRCDIR): Add arch/arm.h.
2135
0ea6402e
PL
21362015-07-30 Pierre Langlois <pierre.langlois@arm.com>
2137
2138 * aarch64-tdep.c (decode_b): Rename link argument to is_bl.
2139 Change its type to int *.
2140 (decode_br): Rename link argument to is_blr. Change its type to
2141 int *.
2142 (decode_cb): Rename op argument to is_cbnz. Change its type to
2143 int *.
2144 (decode_tb): Rename op argument to is_tbnz. Change its type to
2145 int *. Set is_tbnz to either 1 or 0.
2146 (aarch64_analyze_prologue): Change type of is_link to int. Add
2147 new variables is_cbnz and is_tbnz. Adjust call to
2148 aarch64_decode_cb and aarch64_decode_tb.
2149
aa58a496
SM
21502015-07-29 Simon Marchi <simon.marchi@ericsson.com>
2151
2152 * mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
2153 parameter.
2154 (mips_linux_new_thread): Likewise.
2155 * nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
2156
18206ca3
PP
21572015-07-29 Patrick Palka <patrick@parcs.ath.cx>
2158
2159 * top.c: Include "tui/tui.h".
2160 (undo_terminal_modifications_before_exit): New static function.
2161 (quit_force): Use it.
2162
7afa63c6
PP
21632015-07-29 Patrick Palka <patrick@parcs.ath.cx>
2164
2165 * target.c (terminal_state): Initialize to terminal_is_ours.
2166
cc9f16aa
YQ
21672015-07-29 Yao Qi <yao.qi@linaro.org>
2168
2169 PR record/18691
2170 * dcache.c (dcache_read_memory_partial): Call
2171 raw_memory_xfer_partial.
2172 * target.c (raw_memory_xfer_partial): Make it non-static.
2173 * target.h (raw_memory_xfer_partial): Declare.
2174
3ae385af
SM
21752015-07-28 Simon Marchi <simon.marchi@ericsson.com>
2176
2177 * c-valprint.c (c_val_print_array): Consider addressable memory
2178 unit size.
2179 (c_val_print_ptr): Likewise.
2180 (c_val_print_int): Likewise.
2181 * findvar.c (read_frame_register_value): Likewise.
2182 * valarith.c (find_size_for_pointer_math): Likewise.
2183 (value_ptrdiff): Likewise.
2184 (value_subscripted_rvalue): Likewise.
2185 * valops.c (read_value_memory): Likewise (and rename variables).
2186 (value_assign): Likewise.
2187 (value_repeat): Likewise.
2188 (value_array): Likewise.
2189 (value_slice): Likewise.
2190 * valprint.c (generic_val_print_ptr): Likewise.
2191 (generic_val_print_enum): Likewise.
2192 (generic_val_print_bool): Likewise.
2193 (generic_val_print_int): Likewise.
2194 (generic_val_print_char): Likewise.
2195 (generic_val_print_float): Likewise.
2196 (generic_val_print_decfloat): Likewise.
2197 (generic_val_print_complex): Likewise.
2198 (val_print_scalar_formatted): Likewise.
2199 (val_print_array_elements): Likewise.
2200 * value.c (set_value_parent): Likewise.
2201 (value_contents_copy_raw): Likewise.
2202 (set_internalvar_component): Likewise.
2203 (value_primitive_field): Likewise.
2204 (value_fetch_lazy): Likewise.
2205 * value.h (read_value_memory): Update comment.
2206
e512cdbd
SM
22072015-07-28 Simon Marchi <simon.marchi@ericsson.com>
2208
2209 * value.c (get_value_arch): New function.
2210 * value.h (get_value_arch): New declaration.
2211
3723fda8
SM
22122015-07-28 Simon Marchi <simon.marchi@ericsson.com>
2213
2214 * value.c (struct value): Update comments.
2215
2e056931
SM
22162015-07-28 Simon Marchi <simon.marchi@ericsson.com>
2217
2218 * gdbtypes.c (type_length_units): New function.
2219 * gdbtypes.h (type_length_units): New declaration.
2220 (struct type) <length>: Update comment.
2221
0c87c0bf
SM
22222015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2223
2224 * valprint.c (generic_val_print): Factor out complex
2225 printing code to ...
2226 (generic_val_print_complex): ... this new function.
2227
9550ae5e
SM
22282015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2229
2230 * valprint.c (generic_val_print): Factor out decfloat
2231 printing code to ...
2232 (generic_val_print_decfloat): ... this new function.
2233
7784724b
SM
22342015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2235
2236 * valprint.c (generic_val_print): Factor out float
2237 printing code to ...
2238 (generic_val_print_float): ... this new function.
2239
385f5aff
SM
22402015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2241
2242 * valprint.c (generic_val_print): Factor out char
2243 printing code to ...
2244 (generic_val_print_char): ... this new function.
2245
b21b6342
SM
22462015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2247
2248 * valprint.c (generic_val_print): Factor out integer
2249 printing code to ...
2250 (generic_val_print_int): ... this new function.
2251
e5bead4b
SM
22522015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2253
2254 * valprint.c (generic_val_print): Factor out bool
2255 printing code to ...
2256 (generic_val_print_bool): ... this new function.
2257
4a8c372f
SM
22582015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2259
2260 * valprint.c (generic_val_print): Factor out function/method
2261 printing code to ...
2262 (generic_val_print_func): ... this new function.
2263
d93880bd
SM
22642015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2265
2266 * valprint.c (generic_val_print): Factor out flags
2267 printing code to ...
2268 (generic_val_print_flags): ... this new function.
2269
ef0bc0dd
SM
22702015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2271
2272 * valprint.c (generic_val_print): Factor out enum
2273 printing code to ...
2274 (generic_val_print_enum): ... this new function.
2275
fe43fede
SM
22762015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2277
2278 * valprint.c (generic_val_print): Factor out reference
2279 printing code to ...
2280 (generic_val_print_ref): ... this new function.
2281
45000ea2
SM
22822015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2283
2284 * valprint.c (generic_val_print): Factor out memberptr
2285 printing code to ...
2286 (generic_val_print_memberptr): ... this new function.
2287
81eb921a
SM
22882015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2289
2290 * valprint.c (generic_val_print): Factor out pointer
2291 printing code to ...
2292 (generic_val_print_ptr): ... this new function.
2293
557dbe8a
SM
22942015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2295
2296 * valprint.c (generic_val_print): Factor out array
2297 printing code to ...
2298 (generic_val_print_array): ... this new function.
2299
9f436164
SM
23002015-07-27 Simon Marchi <simon.marchi@ericsson.com>
2301
2302 * valprint.c (generic_val_print): Factor out
2303 print_unpacked_pointer code to ...
2304 (print_unpacked_pointer): ... this new function.
2305
077836f7
PP
23062015-07-27 Patrick Palka <patrick@parcs.ath.cx>
2307
2308 * event-top.c (handle_sigterm): Don't inspect
2309 target_can_async_p. Always set the quit flag and always mark
2310 the async signal handler.
2311
3a60804f
YQ
23122015-07-27 Yao Qi <yao.qi@linaro.org>
2313
2314 * Makefile.in (REMOTE_EXAMPLES): Remove it.
2315
c9f35b34
KB
23162015-07-25 Kevin Buettner <kevinb@redhat.com>
2317
2318 * remote.c (read_ptid): Return null_ptid when no thread id
2319 is found.
2320 (remote_current_thread): Add log warning for malformed
2321 qC reply.
2322 (remote_start_remote): Add log warning when current thread
2323 not found.
2324
2b4cab86
PA
23252015-07-24 Pedro Alves <palves@redhat.com>
2326
2327 * s390-linux-nat.c (fetch_regs, store_regs, fetch_fpregs)
2328 (s390_stopped_by_watchpoint, s390_prepare_to_resume): Pass 0 as
2329 forth argument to ptrace PTRACE_PEEKUSR_AREA/PTRACE_POKEUSR_AREA.
2330
77598427
PA
23312015-07-24 Pedro Alves <palves@redhat.com>
2332
2333 PR gdb/18717
2334 * linux-nat.c (linux_nat_filter_event): Don't assert that the lwp
2335 is resumed, and extend the debug log.
2336
fe23c31f
PA
23372015-07-24 Pedro Alves <palves@redhat.com>
2338
2339 * fork-child.c (fork_inferior): Print argv[0] instead of exec_file.
2340
5826e159
PA
23412015-07-24 Pedro Alves <palves@redhat.com>
2342
2343 * aarch64-linux-nat.c: Include nat/gdb_ptrace.h instead of
2344 sys/ptrace.h.
2345 * alpha-linux-nat.c: Likewise.
2346 * amd64-linux-nat.c: Likewise.
2347 * arm-linux-nat.c: Likewise.
2348 * hppa-linux-nat.c: Likewise.
2349 * i386-linux-nat.c: Likewise.
2350 * ia64-linux-nat.c: Likewise.
2351 * linux-fork.c: Likewise.
2352 * linux-nat.c: Likewise.
2353 * m32r-linux-nat.c: Likewise.
2354 * m68klinux-nat.c: Likewise.
2355 * mips-linux-nat.c: Likewise.
2356 * nat/linux-btrace.c: Likewise.
2357 * nat/linux-ptrace.c: Likewise.
2358 * nat/linux-ptrace.h
2359 * nat/mips-linux-watch.c: Likewise.
2360 * nat/x86-linux-dregs.c: Likewise.
2361 * ppc-linux-nat.c: Likewise.
2362 * s390-linux-nat.c: Likewise.
2363 * spu-linux-nat.c: Likewise.
2364 * tilegx-linux-nat.c: Likewise.
2365 * x86-linux-nat.c: Likewise.
2366 * xtensa-linux-nat.c: Likewise.
2367
54019719
PA
23682015-07-24 Pedro Alves <palves@redhat.com>
2369
2370 * ptrace.m4 (ptrace tests): Test in C++ mode. Try with 'enum
2371 __ptrace_request as first parameter type instead of int.
2372 (PTRACE_TYPE_ARG1): Define.
2373 * nat/gdb_ptrace.h [!PTRACE_TYPE_ARG5] (ptrace): Define as wrapper
2374 that casts first argument to PTRACE_TYPE_ARG1.
2375 * config.in: Regenerate.
2376 * configure: Regenerate.
2377
e3790375
PA
23782015-07-24 Pedro Alves <palves@redhat.com>
2379
2380 * gdb_ptrace.h: Move ...
2381 * nat/gdb_ptrace.h: ... here.
2382 * inf-ptrace.c: Adjust.
2383
eb7aa561
PA
23842015-07-24 Pedro Alves <palves@redhat.com>
2385
2386 * acinclude.m4: Include ptrace.m4.
2387 * configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
2388 * ptrace.m4: ... to this new file.
2389
cc12ce38
DE
23902015-07-23 Doug Evans <dje@google.com>
2391
2392 * dwarf2read.c (dwarf2_per_cu_data): Add comment.
2393 (load_cu): Handle dummy CUs.
2394 (dw2_do_instantiate_symtab, process_queuef): Ditto.
2395 (dwarf2_fetch_die_loc_sect_off, dwarf2_fetch_constant_bytes): Ditto.
2396
7b849db4
CS
23972015-07-23 Ciro Santilli <ciro.santilli@gmail.com> (tiny patch)
2398
2399 * py-linetable.c (ltpy_get_all_source_lines): Adjust function
2400 documentation to say that it returns a list rather than
2401 a FrozenSet.
2402 (linetable_object_methods): Update the docstring of the
2403 "source_line" entry.
2404
d0d84780
PMR
24052015-07-23 Pierre-Marie de Rodat <derodat@adacore.com>
2406
2407 * gdbtypes.c (resolve_dynamic_array): Pass the peeled element
2408 type to the recursive call instead of the original (maybe
2409 TYPE_CODE_TYPEDEF) type.
2410
c2fbdc59
YQ
24112015-07-23 Yao Qi <yao.qi@linaro.org>
2412
2413 * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): If
2414 TYPE is watchpoint, return zero if aarch64_num_wp_regs is zero.
2415 If TYPE is breakpoint, return zero if arch64_num_bp_regs is zero.
2416
af1b22f3
YQ
24172015-07-21 Yao Qi <yao.qi@linaro.org>
2418
2419 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
2420 Move it to nat/aarch64-linux-hw-point.c.
2421 (aarch64_linux_child_post_startup_inferior): Update.
2422 * nat/aarch64-linux-hw-point.c (aarch64_linux_get_debug_reg_capacity):
2423 New function.
2424 * nat/aarch64-linux-hw-point.h (aarch64_linux_get_debug_reg_capacity):
2425 Declare it.
2426
40e050d2
MM
24272015-07-21 Markus Metzger <markus.t.metzger@intel.com>
2428
2429 * common/btrace-common.c (btrace_data_append): Change case label.
2430
3675a06a
YQ
24312015-07-20 Yao Qi <yao.qi@linaro.org>
2432
2433 * nat/aarch64-linux-hw-point.c (aarch64_handle_unaligned_watchpoint):
2434 Re-indent the code.
2435 * nat/aarch64-linux-hw-point.h: Use ULONGEST rather than
2436 "unsigned long long".
2437
b4e1fd61
KB
24382015-07-18 Kevin Buettner <kevinb@redhat.com>
2439
2440 * dwarf2read.c (dwarf2_locate_sections): Allow has_section_at_zero
2441 to be set for SEC_ALLOC sections too.
2442
554717a3
YQ
24432015-07-17 Yao Qi <yao.qi@linaro.org>
2444
2445 * Makefile.in (HFILES_NO_SRCDIR): Add
2446 nat/aarch64-linux-hw-point.h.
2447 (aarch64-linux-hw-point.o): New rule.
2448 * nat/aarch64-linux-hw-point.h: New file.
2449 * nat/aarch64-linux-hw-point.c: New file.
2450 * aarch64-linux-nat.c: Include nat/aarch64-linux-hw-point.h.
2451 (AARCH64_HBP_MAX_NUM): Move to nat/aarch64-linux-hw-point.h.
2452 (AARCH64_HWP_MAX_NUM, AARCH64_HBP_ALIGNMENT): Likewise.
2453 (AARCH64_HWP_ALIGNMENT): Likewise.
2454 (AARCH64_HWP_MAX_LEN_PER_REG): Likewise.
2455 (AARCH64_DEBUG_NUM_SLOTS, AARCH64_DEBUG_ARCH): Likewise.
2456 (AARCH64_DEBUG_ARCH_V8, DR_MARK_ALL_CHANGED): Likewise.
2457 (DR_MARK_N_CHANGED, DR_CLEAR_CHANGED): Likewise.
2458 (DR_HAS_CHANGED, DR_N_HAS_CHANGE): Likewise.
2459 (aarch64_num_bp_regs, aarch64_num_wp_regs): Likewise.
2460 (struct aarch64_debug_reg_state): Likewise.
2461 (struct arch_lwp_info): Likewise.
2462 (aarch64_linux_set_debug_regs): Likewise.
2463 (aarch64_notify_debug_reg_change): Remove static.
2464 (aarch64_align_watchpoint): Likewise.
2465 (DR_CONTROL_ENABLED, DR_CONTROL_LENGTH): Likewise.
2466 (aarch64_watchpoint_length): Likewise.
2467 (aarch64_point_encode_ctrl_reg): Likewise
2468 (aarch64_point_is_aligned): Likewise.
2469 (aarch64_dr_state_insert_one_point): Likewise.
2470 (aarch64_dr_state_remove_one_point): Likewise.
2471 (aarch64_handle_breakpoint): Likewise.
2472 (aarch64_handle_aligned_watchpoint): Likewise.
2473 (aarch64_handle_unaligned_watchpoint): Likewise.
2474 (aarch64_handle_watchpoint): Likewise.
2475 * config/aarch64/linux.mh (NAT_FILE): Add
2476 aarch64-linux-hw-point.o.
2477
c67ca4de
YQ
24782015-07-17 Yao Qi <yao.qi@linaro.org>
2479
2480 * aarch64-linux-nat.c (aarch64_handle_breakpoint): Add argument
2481 state and don't call aarch64_get_debug_reg_state. All callers
2482 update.
2483 (aarch64_linux_insert_hw_breakpoint): Call
2484 aarch64_get_debug_reg_state earlier.
2485 (aarch64_linux_remove_hw_breakpoint): Likewise.
2486 (aarch64_handle_aligned_watchpoint): Add argument state and
2487 don't call aarch64_get_debug_reg_state. All callers update.
2488 (aarch64_handle_unaligned_watchpoint): Likewise.
2489 (aarch64_handle_watchpoint): Add argument state.
2490 (aarch64_linux_insert_watchpoint): Call aarch64_get_debug_reg_state
2491 earlier.
2492 (aarch64_linux_remove_watchpoint): Likewise.
2493
25abf979
YQ
24942015-07-17 Yao Qi <yao.qi@linaro.org>
2495
2496 * aarch64-linux-nat.c (aarch64_show_debug_reg_state): Use
2497 debug_printf.
2498 (aarch64_handle_unaligned_watchpoint): Likewise.
2499
2ecd81c2
YQ
25002015-07-17 Yao Qi <yao.qi@linaro.org>
2501
2502 * aarch64-linux-nat.c (aarch64_dr_state_insert_one_point): Change
2503 argument type's type to 'enum target_hw_bp_type'.
2504 (aarch64_dr_state_remove_one_point): Likewise.
2505 (aarch64_handle_breakpoint): Likewise.
2506 (aarch64_linux_insert_hw_breakpoint): Likewise.
2507 (aarch64_linux_remove_hw_breakpoint): Likewise.
2508 (aarch64_handle_aligned_watchpoint): Likewise.
2509
e53b6938
YQ
25102015-07-17 Yao Qi <yao.qi@linaro.org>
2511
2512 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Call
2513 ptid_get_pid instead of get_thread_id.
2514
6a49a997
YQ
25152015-07-17 Yao Qi <yao.qi@linaro.org>
2516
2517 * remote.c (get_current_thread): Initialise ptid to null_ptid.
2518 (add_current_inferior_and_thread): Don't initialise ptid.
2519
4bcddace
PL
25202015-07-16 Pierre Langlois <pierre.langlois@arm.com>
2521
2522 * aarch64-tdep.c (aarch64_pseudo_read_value): Mark S register as
2523 unavailable if invalid.
2524
db1ff28b
JK
25252015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2526
2527 Revert the previous 6 commits:
2528 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
2529 Move gdb_regex* to common/
2530 Prepare linux_find_memory_regions_full & co. for move
2531 Move linux_find_memory_regions_full & co.
2532 gdbserver build-id attribute generator
2533 Validate symbol file using build-id
2534
ca5268b6
JK
25352015-07-15 Aleksandar Ristovski <aristovski@qnx.com
2536 Jan Kratochvil <jan.kratochvil@redhat.com>
2537
2538 Validate symbol file using build-id.
2539 * NEWS (Changes since GDB 7.10): Add 'set validate-build-id'
2540 and 'show validate-build-id'. Add build-id attribute.
2541 * solib-darwin.c (_initialize_darwin_solib): Assign validate value.
2542 * solib-dsbt.c (_initialize_dsbt_solib): Ditto.
2543 * solib-frv.c (_initialize_frv_solib): Ditto.
2544 * solib-spu.c (set_spu_solib_ops): Ditto.
2545 * solib-svr4.c: Include rsp-low.h.
2546 (NOTE_GNU_BUILD_ID_NAME): New define.
2547 (svr4_validate): New function.
2548 (svr4_copy_library_list): Duplicate field build_id.
2549 (library_list_start_library): Parse 'build-id' attribute.
2550 (svr4_library_attributes): Add 'build-id' attribute.
2551 (_initialize_svr4_solib): Assign validate value.
2552 * solib-target.c (solib.h): Include.
2553 (_initialize_solib_target): Assign validate value.
2554 * solib.c (validate_build_id, show_validate_build_id): New.
2555 (solib_map_sections): Use ops->validate.
2556 (clear_so): Free build_id.
2557 (default_solib_validate): New function.
2558 (_initialize_solib): Add "validate-build-id".
2559 * solib.h (default_solib_validate): New declaration.
2560 * solist.h (struct so_list): New fields 'build_idsz' and 'build_id'.
2561 (target_so_ops): New field 'validate'.
2562
700ca40f
JK
25632015-07-15 Aleksandar Ristovski <aristovski@qnx.com
2564 Jan Kratochvil <jan.kratochvil@redhat.com>
2565
2566 gdbserver build-id attribute generator.
2567 * features/library-list-svr4.dtd (library-list-svr4): New
2568 'build-id' attribute.
2569
9904185c
JK
25702015-07-15 Aleksandar Ristovski <aristovski@qnx.com
2571 Jan Kratochvil <jan.kratochvil@redhat.com>
2572
2573 Move linux_find_memory_regions_full & co.
2574 * linux-tdep.c (nat/linux-maps.h): Include.
2575 (gdb_regex.h): Remove the include.
2576 (enum filterflags, struct smaps_vmflags, read_mapping, decode_vmflags)
2577 (mapping_is_anonymous_p, dump_mapping_p): Moved to nat/linux-maps.c.
2578 (linux_find_memory_region_ftype): Moved typedef to nat/linux-maps.h.
2579 (linux_find_memory_regions_full): Moved definition to nat/linux-maps.c.
2580 * nat/linux-maps.c: Include ctype.h, target/target-utils.h, gdb_regex.h
2581 and target/target.h.
2582 (struct smaps_vmflags, read_mapping, decode_vmflags)
2583 (mapping_is_anonymous_p, dump_mapping_p): Move from linux-tdep.c.
2584 (linux_find_memory_regions_full): Move from linux-tdep.c.
2585 * nat/linux-maps.h (read_mapping): New declaration.
2586 (linux_find_memory_region_ftype, enum filterflags): Moved from
2587 linux-tdep.c.
2588 (linux_find_memory_regions_full): New declaration.
2589 * target.c (target/target-utils.h): Include.
2590 (read_alloc_pread_ftype): Moved typedef to target/target-utils.h.
2591 (read_alloc, read_stralloc_func_ftype, read_stralloc): Moved
2592 definitions to target/target-utils.c.
2593 * target.h (target_fileio_read_stralloc): Move it to target/target.h.
2594 * target/target-utils.c (read_alloc, read_stralloc): Move definitions
2595 from target.c.
2596 * target/target-utils.h (read_alloc_pread_ftype): New typedef.
2597 (read_alloc): New declaration.
2598 (read_stralloc_func_ftype): New typedef.
2599 (read_stralloc): New declaration.
2600 * target/target.h (target_fileio_read_stralloc): Move it from target.h.
2601
f7af1fcd
JK
26022015-07-15 Aleksandar Ristovski <aristovski@qnx.com
2603 Jan Kratochvil <jan.kratochvil@redhat.com>
2604
2605 Prepare linux_find_memory_regions_full & co. for move.
2606 * linux-tdep.c (linux_find_memory_region_ftype): Comment.
2607 (linux_find_memory_regions_full): Change signature and prepare
2608 for moving to linux-maps.
2609 (linux_find_memory_regions_data): Rename field 'obfd' to 'data'.
2610 (linux_find_memory_regions_thunk): New.
2611 (linux_find_memory_regions_thunk): Use 'data' field instead of 'obfd'.
2612 (linux_find_memory_regions_gdb): New.
2613 (linux_find_memory_regions): Rename argument 'obfd' to 'func_data'.
2614 (linux_make_mappings_corefile_notes): Use
2615 linux_find_memory_regions_gdb.
2616 * target.c (read_alloc_pread_ftype): New typedef.
2617 (target_fileio_read_alloc_1_pread): New function.
2618 (read_alloc): Refactor from target_fileio_read_alloc_1.
2619 (read_stralloc_func_ftype): New typedef.
2620 (target_fileio_read_alloc_1): New implementation. Use read_alloc.
2621 (read_stralloc): Refactored from target_fileio_read_stralloc.
2622 (target_fileio_read_stralloc): New implementation, use read_stralloc.
2623
6e5b4429
JK
26242015-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2625
2626 * Makefile.in (HFILES_NO_SRCDIR): Change gdb_regex.h to
2627 common/gdb_regex.h.
2628 (COMMON_OBS): Add gdb_regex.o.
2629 (gdb_regex.o): New.
2630 * common/common.m4 (GDB_AC_COMMON): Add gdb_use_included_regex,
2631 --without-included-regex and USE_INCLUDED_REGEX.
2632 * common/gdb_regex.c: New file from utils.c functions.
2633 * common/gdb_regex.h: Move it here from gdb_regex.h, update include
2634 file wrapping define name.
2635 * configure: Rebuilt.
2636 * configure.ac (gdb_use_included_regex, --without-included-regex)
2637 (USE_INCLUDED_REGEX): Move them to common/common.m4.
2638 * gdb_regex.h: Move it to common/gdb_regex.h.
2639 * utils.c: Remove include gdb_regex.h.
2640 (do_regfree_cleanup, make_regfree_cleanup, get_regcomp_error)
2641 (compile_rx_or_error): Move them to common/gdb_regex.c.
2642
ddc98fbf
JK
26432015-07-15 Aleksandar Ristovski <aristovski@qnx.com
2644 Jan Kratochvil <jan.kratochvil@redhat.com>
2645
2646 Create empty nat/linux-maps.[ch] and common/target-utils.[ch].
2647 * Makefile.in (HFILES_NO_SRCDIR); Add nat/linux-maps.h,
2648 common/target-utils.h.
2649 (COMMON_OBS): Add target-utils.o.
2650 (linux-maps.o, target-utils.o): New.
2651 * target/target-utils.c: New file.
2652 * target/target-utils.h: New file.
2653 * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o.
2654 * config/i386/linux64.mh (NATDEPFILES): Ditto.
2655 * nat/linux-maps.c: New file.
2656 * nat/linux-maps.h: New file.
2657
e7b01ce0
MM
26582015-07-15 Markus Metzger <markus.t.metzger@intel.com>
2659 Pedro Alves <palves@redhat.com>
2660
2661 * nat/linux-btrace.c (perf_event_read): Change the type of DATA_HEAD.
2662 (perf_event_read_all): Change the type of SIZE and DATA_HEAD.
2663 (perf_event_read_bts): Change the type of SIZE and READ.
2664 (linux_enable_bts): Change the type of SIZE, PAGES, DATA_SIZE,
2665 and DATA_OFFSET. Move DATA_SIZE declaration. Restrict the buffer size
2666 to UINT_MAX. Check for overflows when using DATA_HEAD from the perf
2667 mmap page.
2668 (linux_enable_pt): Change the type of PAGES and SIZE. Restrict the
2669 buffer size to UINT_MAX.
2670 (linux_read_bts): Change the type of BUFFER_SIZE, SIZE, DATA_HEAD, and
2671 DATA_TAIL.
2672 * nat/linux-btrace.h (struct perf_event_buffer)<size, data_head>
2673 <last_head>: Change type.
2674 * common/btrace-common.h (struct btrace_dat_pt) <size>: Change type.
2675 * common/btrace-common.c (btrace_data_append): Change the type of
2676 SIZE.
2677 * btrace.c (parse_xml_raw): Change the type of SIZE. Change oddness
2678 check.
2679
f168693b
SM
26802015-07-14 Simon Marchi <simon.marchi@ericsson.com>
2681
2682 * gdbtypes.h (CHECK_TYPEDEF): Remove.
2683 * aarch64-tdep.c (aarch64_return_in_memory): Replace CHECK_TYPEDEF
2684 with check_typedef.
2685 * ada-lang.c (decode_constrained_packed_array_type): Likewise.
2686 (ada_array_length): Likewise.
2687 (find_parallel_type_by_descriptive_type): Likewise.
2688 (ada_check_typedef): Likewise.
2689 * arm-tdep.c (arm_return_in_memory): Likewise.
2690 * ax-gdb.c (gen_trace_static_fields): Likewise.
2691 (gen_struct_ref_recursive): Likewise.
2692 * c-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
2693 (variable: block COLONCOLON name): Likewise.
2694 (qualified_name: TYPENAME COLONCOLON name): Likewise.
2695 * c-lang.c (classify_type): Likewise.
2696 * c-typeprint.c (c_print_type): Likewise.
2697 (c_print_typedef): Likewise.
2698 (c_type_print_base): Likewise.
2699 * c-valprint.c (c_val_print): Likewise.
2700 * compile/compile-c-types.c (convert_type): Likewise.
2701 * compile/compile-object-load.c (get_out_value_type): Likewise.
2702 * completer.c (add_struct_fields): Likewise.
2703 (expression_completer): Likewise.
2704 * cp-namespace.c (cp_find_type_baseclass_by_name): Likewise.
2705 (cp_lookup_nested_symbol_1): Likewise.
2706 (cp_lookup_nested_symbol): Likewise.
2707 * cp-valprint.c (cp_print_value_fields): Likewise.
2708 (cp_print_static_field): Likewise.
2709 * d-valprint.c (d_val_print): Likewise.
2710 * eval.c (evaluate_subexp_standard): Likewise.
2711 (evaluate_subexp_for_sizeof): Likewise.
2712 * f-exp.y (exp : SIZEOF '(' type ')' %prec UNARY): Likewise.
2713 * f-typeprint.c (f_type_print_base): Likewise.
2714 * f-valprint.c (f_val_print): Likewise.
2715 * gdbtypes.c (get_discrete_bounds): Likewise.
2716 (create_array_type_with_stride): Likewise.
2717 (type_name_no_tag_or_error): Likewise.
2718 (lookup_struct_elt_type): Likewise.
2719 (get_unsigned_type_max): Likewise.
2720 (internal_type_vptr_fieldno): Likewise.
2721 (set_type_vptr_fieldno): Likewise.
2722 (internal_type_vptr_basetype): Likewise.
2723 (set_type_vptr_basetype): Likewise.
2724 (get_vptr_fieldno): Likewise.
2725 (is_integral_type): Likewise.
2726 (is_scalar_type): Likewise.
2727 (is_scalar_type_recursive): Likewise.
2728 (distance_to_ancestor): Likewise.
2729 (is_unique_ancestor_worker): Likewise.
2730 (check_types_equal): Likewise.
2731 * gnu-v2-abi.c (gnuv2_value_rtti_type): Likewise.
2732
45280282
IB
27332015-07-14 Iain Buclaw <ibuclaw@gdcproject.org>
2734
2735 * dwarf2read.c (find_slot_in_mapped_hash): Extend language support to
2736 also test for language_d.
2737 (dwarf2_compute_name): Likewise.
2738 (read_func_scope): Likewise.
2739 (read_structure_type): Likewise.
2740 (new_symbol_full): Likewise.
2741 (determine_prefix): Likewise.
2742 (read_import_statement): Use dot as the separator for language_d.
2743 (typename_concat): Likewise, but don't prefix the D main function.
2744
99fe86f7
PB
27452015-07-14 Peter Bergner <bergner@vnet.ibm.com>
2746
2747 * nat/linux-namespaces.c (setns): Rename from this ...
2748 (do_setns): ... to this. Support calling setns if it exists.
2749 (mnsh_handle_setns): Call do_setns.
2750
d5131498
YQ
27512015-07-13 Yao Qi <yao.qi@linaro.org>
2752
2753 * exec.c (exec_file_attach): Add period at the end of error
2754 message.
2755
97605e61
AB
27562015-07-13 Andrew Burgess <andrew.burgess@embecosm.com>
2757
2758 * tui/tui-win.c (window_name_completer): New function.
2759 (focus_completer): Call window_name_completer. All old content
2760 moved into window_name_completer.
2761 (winheight_completer): New function.
2762 (_initialize_tui_win): Rename variable. Add completer to
2763 winheight command. Update doc string on winheight.
2764
8d6dbeb4
SL
27652015-07-12 Sandra Loosemore <sandra@codesourcery.com>
2766
2767 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Register
2768 all nios2 mach variants.
2769
a0e28e54
KB
27702015-07-10 Kevin Buettner <kevinb@redhat.com>
2771
2772 * rx-tdep.c (rx_get_opcode_byte): Use target_read_code instead
2773 of target_read_memory.
2774
c101f28f
AB
27752015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
2776
2777 * tui/tui-win.c (tui_set_win_height): Use a cleanup to free the
2778 string copy.
2779 (parse_scrolling_args): Likewise.
2780
150375dc
AB
27812015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
2782
2783 * tui/tui-win.c (focus_completer): Don't duplicate the tui window
2784 names in this function.
2785
6dce28e4
AB
27862015-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
2787
2788 * tui/tui-data.h (SRC_NAME): Convert to lower case.
2789 (CMD_NAME): Likewise.
2790 (DATA_NAME): Likewise.
2791 (DISASSEM_NAME): Likewise.
2792 * tui/tui-win.c (tui_set_focus): Window names are now lower case.
2793 (tui_set_win_height): Likewise.
2794 (parse_scrolling_args): Likewise.
2795
485668e5
MM
27962015-07-10 Markus Metzger <markus.t.metzger@intel.com>
2797
2798 * record-btrace.c (record_btrace_goto_begin)
2799 (record_btrace_goto_end, record_btrace_goto): Move call to
2800 print_stack_frame ...
2801 (record_btrace_set_replay): ... here. Set stop_pc.
2802 * record-full.c (record_full_goto_entry): Set stop_pc.
2803
58d2eda5
PL
28042015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2805
2806 * NEWS: Mention support for tracepoints on aarch64-linux.
2807
7671bf47
PL
28082015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2809
2810 * linux-aarch64-low.c (aarch64_supports_tracepoints): New
2811 function. Return 1.
2812 (the_low_target): Install it.
2813
7890fb45
PL
28142015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2815
2816 * gdb.trace/backtrace.exp: Set registers for aarch64 target.
2817 * gdb.trace/collection.exp: Likewise.
2818 * gdb.trace/mi-trace-frame-collected.exp: Likewise.
2819 * gdb.trace/mi-trace-unavailable.exp: Likewise.
2820 * gdb.trace/report.exp: Likewise.
2821 * gdb.trace/trace-break.exp: Likewise.
2822 * gdb.trace/unavailable.exp: Likewise.
2823 * gdb.trace/while-dyn.exp: Likewise.
2824
ea873d8e
PL
28252015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2826
2827 * aarch64-tdep.c: Add ax.h and ax-gdb.h includes.
2828 (aarch64_gen_return_address): New function.
2829 (aarch64_gdbarch_init): Hook it.
2830
02a2a705
PL
28312015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2832
2833 * aarch64-tdep.c (aarch64_make_stub_cache): Set available_p and
2834 swallow NOT_AVAILABLE_ERROR.
2835 (aarch64_stub_this_id): Call frame_id_build_unavailable_stack if
2836 available_p is not set.
2837 (aarch64_stub_frame_unwind_stop_reason): New function.
2838 (aarch64_stub_unwind): Install it.
2839
7dfa3edc
PL
28402015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2841
2842 * aarch64-tdep.c (aarch64_prologue_cache) <available_p>: New
2843 field.
2844 (aarch64_make_prologue_cache_1): New function, factored out from
2845 aarch64_make_prologue_cache. Do not allocate cache. Set
2846 available_p.
2847 (aarch64_make_prologue_cache): Reimplement wrapping
2848 aarch64_make_prologue_cache_1, and swallowing
2849 NOT_AVAILABLE_ERROR.
2850 (aarch64_prologue_frame_unwind_stop_reason): New function.
2851 Return UNWIND_UNAVAILABLE if available_p is not set.
2852 (aarch64_prologue_unwind): Install it.
2853 (aarch64_prologue_this_id): Move prev_pc and prev_sp limit
2854 checks into aarch64_prologue_frame_unwind_stop_reason. Call
2855 frame_id_build_unavailable_stack if available_p is not set.
2856
db634143
PL
28572015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2858
2859 * aarch64-tdep.c (aarch64_prologue_cache) <func, prev_pc>: New
2860 fields.
2861 (aarch64_scan_prologue): Set prev_pc.
2862 (aarch64_make_prologue_cache): Set func.
2863 (aarch64_make_stub_cache): Set prev_pc.
2864 (aarch64_prologue_this_id): Remove local variables id, pc and
2865 func. Read prev_pc and func from cache.
2866 (aarch64_stub_this_id): Read prev_pc from cache.
2867
8b61f75d
PL
28682015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2869
2870 * aarch64-tdep.c (aarch64_make_stub_cache): Update comment. New
2871 argument this_cache. Remove unused local variables reg and
2872 unwound_fp. Return early if this_cache is already set. Set
2873 this_cache.
2874 (aarch64_stub_this_id): Update call to aarch64_make_stub_cache.
2875
7c8edfae
PL
28762015-07-09 Pierre Langlois <pierre.langlois@arm.com>
2877
2878 * aarch64-tdep.c (aarch64_make_prologue_cache): Update comment.
2879 New argument this_cache. Return early if this_cache is already
2880 set. Set this_cache.
2881 (aarch64_prologue_this_id): Update call to
2882 aarch64_make_prologue_cache.
2883 (aarch64_prologue_prev_register): Likewise.
2884 (aarch64_normal_frame_base): Likewise.
2885
938c69a1
SM
28862015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2887
2888 * c-valprint.c (c_val_print): Factor out memberptr printing code
2889 from c_val_print to ...
2890 (c_val_print_memberptr): ... this new function.
2891
49f7fe28
SM
28922015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2893
2894 * c-valprint.c (c_val_print): Factor out int printing code to ...
2895 (c_val_print_int): ... this new function.
2896
9e4f353c
SM
28972015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2898
2899 * c-valprint.c (c_val_print): Factor out struct and union
2900 printing code to ...
2901 (c_val_print_struct): ... this new function ...
2902 (c_val_print_union): ... and this new function.
2903
1c67f032
SM
29042015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2905
2906 * c-valprint.c (c_val_print): Factor out pointer printing code
2907 to ...
2908 (c_val_print_ptr): ... this new function.
2909
0b6ef777
SM
29102015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2911
2912 * c-valprint.c (c_valprint): Factor our array printing code from
2913 c_val_print to ...
2914 (c_val_print_array): ... this new function.
2915
1033c33c
SM
29162015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2917
2918 * c-valprint.c (c_val_print): Factor out pointer printing code
2919 to ...
2920 (print_unpacked_pointer): ... this new function.
2921
f6b93c34
SM
29222015-07-09 Simon Marchi <simon.marchi@ericsson.com>
2923
2924 * c-valprint.c (c_val_print): Remove an assignment to i and move
2925 its declaration.
2926
0f4576e3
YQ
29272015-07-09 Yao Qi <yao.qi@linaro.org>
2928
2929 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity): Add
2930 argument ptid. Update comments. Caller update.
2931
37fdfe4c
MM
29322015-07-09 Markus Metzger <markus.t.metzger@intel.com>
2933
2934 * btrace.c (pt_print_packet): Print stop, vmcs, tma, mtc, cyc, and
2935 mnt packets.
2936
80a2b330
MM
29372015-07-09 Markus Metzger <markus.t.metzger@intel.com>
2938
2939 * btrace.c (btrace_pt_readmem_callback): Change type of PC argument.
2940
4ab31498
SM
29412015-07-08 Simon Marchi <simon.marchi@ericsson.com>
2942
2943 * progspace.c (delete_program_space): Add missing spaces.
2944
7a41607e
SM
29452015-07-08 Simon Marchi <simon.marchi@ericsson.com>
2946
2947 * inferior.c (delete_inferior_1): Rename to ...
2948 (delete_inferior): ..., remove 'silent' parameter, delete
2949 program space when unused and remove call to prune_program_spaces.
2950 Remove the old, unused, delete_inferior.
2951 (delete_inferior_silent): Remove.
2952 (prune_inferiors): Change call from delete_inferior_1 to
2953 delete_inferior and remove 'silent' parameter. Remove call to
2954 prune_program_spaces.
2955 (remove_inferior_command): Idem.
2956 * inferior.h (delete_inferior_1): Rename to...
2957 (delete_inferior): ..., remove 'silent' parameter and remove the
2958 original delete_inferior.
2959 (delete_inferior_silent): Remove.
2960 * mi/mi-main.c (mi_cmd_remove_inferior): Change call from
2961 delete_inferior_1 to delete_inferior and remove 'silent'
2962 parameter.
2963 * progspace.c (prune_program_spaces): Remove.
2964 (pspace_empty_p): Rename to...
2965 (program_space_empty_p): ... and make non-static.
2966 (delete_program_space): New.
2967 * progspace.h (prune_program_spaces): Remove declaration.
2968 (program_space_empty_p): New declaration.
2969 (delete_program_space): New declaration.
2970 * monitor.c (monitor_close): Replace call to
2971 delete_thread_silent and delete_inferior_silent with
2972 discard_all_inferiors.
2973
a9bd710f
PP
29742015-07-08 Patrick Palka <patrick@parcs.ath.cx>
2975
2976 * defs.h (deprecated_register_changed_hook): Remove prototype.
2977 * interps.c (clear_iterpreter_hooks): Remove reference to
2978 deprecated_register_changed_hook.
2979 * top.c (deprecated_register_changed_hook): Remove prototype.
2980 * valops.c (value_assign): Remove reference to
2981 deprecated_register_changed_hook.
2982 * tui/tui-hooks.c (tui_register_changed): Add parameter "frame".
2983 Add comment documenting the function.
2984 (tui_register_changed_observer): Define.
2985 (tui_install_hooks): Remove reference to
2986 deprecated_register_changed_hook. Set
2987 tui_register_changed_observer.
2988 (tui_remove_hooks): Remove reference to
2989 deprecated_register_changed_hook. Unset
2990 tui_register_changed_observer.
2991
08464196
JK
29922015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2993
2994 PR compile/18484
2995 * compile/compile-c-types.c (insert_type): Change gdb_assert to error.
2996
bcf5c1d9
RC
29972015-07-08 Robert O'Callahan <robert@ocallahan.org>
2998
2999 PR exp/18617
3000 * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'.
3001
e8643a45
MM
30022015-07-08 Markus Metzger <markus.t.metzger@intel.com>
3003
3004 * MAINTAINERS (Write After Approval): Add Markus T. Metzger.
3005
76fb6829
MM
30062015-07-08 Markus Metzger <markus.t.metzger@intel.com>
3007
3008 * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt):
3009 Use safe_strerror() instead of strerror().
3010
82c40d4b
YQ
30112015-07-07 Yao Qi <yao.qi@linaro.org>
3012
3013 * features/arm-with-m-fpa-layout.xml: Set architecture to arm.
3014 * features/arm-with-m-fpa-layout.c: Regenerated.
3015 * features/arm-with-m-vfp-d16.xml: Likewise.
3016 * features/arm-with-m-vfp-d16.c: Regenerated.
3017 * features/arm-with-m.xml: Likewise.
3018 * features/arm-with-m.c: Regenerated.
3019 * features/arm-with-neon.xml: Likewise.
3020 * features/arm-with-neon.c: Regenerated.
3021 * features/arm-with-vfpv2.xml: Likewise.
3022 * features/arm-with-vfpv2.c: Regenerated.
3023 * features/arm-with-vfpv3.xml: Likewise.
3024 * features/arm-with-vfpv3.c: Regenerated.
3025
607685ec
YQ
30262015-07-07 Yao Qi <yao.qi@linaro.org>
3027
3028 * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from
3029 arm-linux-nat.c.
3030 * aarch64-linux-nat.c: Include aarch32-linux-nat.h and
3031 elf/external.h.
3032 (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply
3033 if target is 32-bit.
3034 (store_gregs_to_thread): Call aarch32_gp_regcache_collect
3035 if target is 32-bit.
3036 (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply
3037 if target is 32-bit.
3038 (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect
3039 if target is 32-bit.
3040 (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare.
3041 (aarch64_linux_read_description): Return the right target
3042 description.
3043 * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h.
3044 * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3045 * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and
3046 arm-linux-tdep.o.
3047
f1b67888
YQ
30482015-07-07 Yao Qi <yao.qi@linaro.org>
3049
3050 * aarch32-linux-nat.c: New file.
3051 * aarch32-linux-nat.h: New file.
3052 * arm-linux-nat.c: Include aarch32-linux-nat.h.
3053 (fetch_regs): Move code to aarch32-linux-nat.c. Call
3054 aarch32_gp_regcache_supply.
3055 (store_regs): Move code to aarch32-linux-nat.c. Call
3056 aarch32_gp_regcache_collect.
3057 (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call
3058 aarch32_vfp_regcache_supply.
3059 (store_vfp_regs): Move code to aarch32-linux-nat.c. Call
3060 aarch32_vfp_regcache_collect.
3061 * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o.
3062
179bfe82
YQ
30632015-07-07 Yao Qi <yao.qi@linaro.org>
3064
3065 * arm-linux-nat.c (store_fpregister): Remove.
3066 (store_register): Likewise.
3067 (fetch_fpregister): Likewise.
3068 (fetch_register): Likewise.
3069 (arm_linux_store_inferior_registers): Call store_regs and
3070 store_fpregs instead.
3071 (arm_linux_fetch_inferior_registers): Call fetch_fpregs and
3072 fetch_regs instead.
3073
6008fc5f
AB
30742015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
3075
3076 * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout
3077 and focus commands.
3078
7c79d316
JB
30792015-07-06 Joel Brobecker <brobecker@adacore.com>
3080
3081 * NEWS: Create a new section for the next release branch.
3082 Rename the section of the current branch, now that it has
3083 been cut.
3084
f2232bea
JB
30852015-07-06 Joel Brobecker <brobecker@adacore.com>
3086
3087 GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e):
3088 * version.in: Bump version to 7.10.50.DATE-cvs.
3089
66c4b3e8
LM
30902015-07-06 Luis Machado <lgustavo@codesourcery.com>
3091
3092 * breakpoint.c (remove_breakpoint_1): Don't handle permanent
3093 breakpoints in a special way.
3094 (remove_breakpoint): Likewise.
3095 (mark_breakpoints_out): Likewise.
3096
bcd8537c
AB
30972015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
3098
3099 * doc/gdb.texinfo (TUI): Add comma after @xref.
3100
10e9aaa3
AB
31012015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
3102
3103 * tui/tui-win.c (tui_set_focus): Use structure member 'generic'
3104 instead of casting the structure type.
3105
8a13d42d
SM
31062015-07-06 Simon Marchi <simon.marchi@ericsson.com>
3107
3108 * valops.c (search_struct_field): Remove OFFSET parameter.
3109 (value_cast_structs): Adjust calls to search_struct_field.
3110 (value_struct_elt): Same.
3111 (find_overload_match): Same.
3112
a844296a
SM
31132015-07-06 Simon Marchi <simon.marchi@ericsson.com>
3114
3115 * value.c (value_fetch_lazy): Update comment, change return
3116 value to void.
3117 * value.h (value_fetch_lazy): Change return value to void.
3118
f41cbf58
AB
31192015-07-06 Andrew Burgess <andrew.burgess@embecosm.com>
3120
3121 * tui/tui-data.c (tui_partial_win_by_name): Window name is const.
3122 (tui_win_name): Make parameter and result const.
3123 * tui/tui-data.h (tui_win_name): Make parameter and result const.
3124
118ca224
PP
31252015-07-06 Patrick Palka <patrick@parcs.ath.cx>
3126
3127 * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead
3128 use printf_unfiltered.
3129 (set_mpx_cmd): Add missing trailing space to command string
3130 literal.
3131 (_initialize_i386_tdep): Give the "mpx" prefix command its
3132 correct name.
3133
1b485e67
KB
31342015-07-02 Kevin Buettner <kevinb@redhat.com>
3135
3136 * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants.
3137 (enum rx_frame_type): New.
3138 (struct rx_prologue): Add new field `frame_type'.
3139 (rx_analyze_prologue): Add `frame_type' parameter. Cache this
3140 parameter in the prologue struct. Add code for recording
3141 locations of PC and PSW for fast interrupt and exception frames.
3142 (rx_skip_prologue): Adjust call to rx_analyze_prologue.
3143 (rx_analyze_frame_prologue): Add `frame_type' parameter.
3144 (rx_frame_type): New function.
3145 (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue.
3146 (rx_frame_this_id): Rename parameter `this_prologue_cache' to
3147 `this_cache'.
3148 (rx_frame_prev_register): Rename parameter `this_prologue_cache' to
72f4393d 3149 `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and
1b485e67
KB
3150 RX_FRAME_TYPE_FAST_INTERRUPT.
3151 (normal_frame_p, exception_frame_p, rx_frame_sniffer_common)
3152 (rx_frame_sniffer, rx_exception_sniffer): New functions.
3153 (rx_frame_unwind): Use rx_frame_sniffer instead of
3154 default_frame_sniffer.
3155 (rx_frame_unwind): New unwinder.
3156 (rx_gdbarch_init): Register new unwinder.
3157
0561fea4
KB
31582015-07-02 Kevin Buettner <kevinb@redhat.com>
3159
3160 * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
3161 (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
3162 (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
3163 and RX_FPSW_REGNUM.
3164 (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
3165
decf8d9a
JK
31662015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3167
3168 Fix GCC false warning.
3169 * s390-linux-tdep.c (s390_handle_arg): Initialize VAL.
3170
2fd0f80d
YQ
31712015-07-02 Yao Qi <yao.qi@linaro.org>
3172
3173 * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
3174 typo in the debugging message.
3175
b0627500
MM
31762015-07-02 Markus Metzger <markus.t.metzger@intel.com>
3177
3178 * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h.
3179 (maint_btrace_cmdlist, maint_btrace_set_cmdlist)
3180 (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist)
3181 (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad)
3182 (btrace_maint_clear): New.
3183 (btrace_fetch, btrace_clear): Call btrace_maint_clear.
3184 (pt_print_packet, btrace_maint_decode_pt)
3185 (btrace_maint_update_pt_packets, btrace_maint_update_packets)
3186 (btrace_maint_print_packets, get_uint, get_context_size, no_chunk)
3187 (maint_btrace_packet_history_cmd)
3188 (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
3189 (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd)
3190 (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd)
3191 (maint_info_btrace_cmd, _initialize_btrace): New.
3192 * btrace.h (btrace_pt_packet, btrace_pt_packet_s)
3193 (btrace_maint_packet_history, btrace_maint_info): New.
3194 (btrace_thread_info) <maint>: New.
3195 * NEWS: Announce it.
3196
9be54cae
MM
31972015-07-02 Markus Metzger <markus.t.metzger@intel.com>
3198
3199 * btrace.c (btrace_fetch): Append the new trace data.
3200 (btrace_clear): Clear the stored trace data.
3201 * btrace.h (btrace_thread_info) <data>: New.
3202 * common/btrace-common.h (btrace_data_clear)
3203 (btrace_data_append): New.
3204 * common/btrace-common.c (btrace_data_clear)
3205 (btrace_data_append): New.
3206
010a18a1
MM
32072015-07-02 Markus Metzger <markus.t.metzger@intel.com>
3208
3209 * nat/linux-btrace.c (linux_enable_bts): Check for
3210 PERF_ATTR_SIZE_VER5.
3211 Check for data_offset and data_size fields. Use them.
3212
b20a6524
MM
32132015-07-02 Markus Metzger <markus.t.metzger@intel.com>
3214
3215 * NEWS: Announce new commands "record btrace pt" and "record pt".
3216 Announce new options "set|show record btrace pt buffer-size".
3217 * btrace.c: Include "rsp-low.h".
3218 Include "inttypes.h".
3219 (btrace_add_pc): Add forward declaration.
3220 (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback)
3221 (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt)
3222 (btrace_compute_ftrace_pt): New.
3223 (btrace_compute_ftrace): Support BTRACE_FORMAT_PT.
3224 (check_xml_btrace_version): Update version check.
3225 (parse_xml_raw, parse_xml_btrace_pt_config_cpu)
3226 (parse_xml_btrace_pt_raw, parse_xml_btrace_pt)
3227 (btrace_pt_config_cpu_attributes, btrace_pt_config_children)
3228 (btrace_pt_children): New.
3229 (btrace_children): Add support for "pt".
3230 (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New.
3231 (btrace_conf_children): Add support for "pt".
3232 * btrace.h: Include "intel-pt.h".
3233 (btrace_pt_error): New.
3234 * common/btrace-common.c (btrace_format_string, btrace_data_fini)
3235 (btrace_data_empty): Support BTRACE_FORMAT_PT.
3236 * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT.
3237 (struct btrace_config_pt): New.
3238 (struct btrace_config)<pt>: New.
3239 (struct btrace_data_pt_config, struct btrace_data_pt): New.
3240 (struct btrace_data)<pt>: New.
3241 * features/btrace-conf.dtd (btrace-conf)<pt>: New.
3242 (pt): New.
3243 * features/btrace.dtd (btrace)<pt>: New.
3244 (pt, pt-config, cpu): New.
3245 * nat/linux-btrace.c (perf_event_read, perf_event_read_all)
3246 (perf_event_pt_event_type, kernel_supports_pt)
3247 (linux_supports_pt): New.
3248 (linux_supports_btrace): Support BTRACE_FORMAT_PT.
3249 (linux_enable_bts): Free tinfo on error.
3250 (linux_enable_pt): New.
3251 (linux_enable_btrace): Support BTRACE_FORMAT_PT.
3252 (linux_disable_pt): New.
3253 (linux_disable_btrace): Support BTRACE_FORMAT_PT.
3254 (linux_fill_btrace_pt_config, linux_read_pt): New.
3255 (linux_read_btrace): Support BTRACE_FORMAT_PT.
3256 * nat/linux-btrace.h (struct btrace_tinfo_pt): New.
3257 (struct btrace_target_info)<pt>: New.
3258 * record-btrace.c (set_record_btrace_pt_cmdlist)
3259 (show_record_btrace_pt_cmdlist): New.
3260 (record_btrace_print_pt_conf): New.
3261 (record_btrace_print_conf): Support BTRACE_FORMAT_PT.
3262 (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT.
3263 (cmd_record_btrace_pt_start): New.
3264 (cmd_record_btrace_start): Support BTRACE_FORMAT_PT.
3265 (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New.
3266 (_initialize_record_btrace): Add new commands.
3267 * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New.
3268 (remote_protocol_features): Add "Qbtrace:pt".
3269 Add "Qbtrace-conf:pt:size".
3270 (remote_supports_btrace): Support BTRACE_FORMAT_PT.
3271 (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size.
3272 (remote_enable_btrace): Support BTRACE_FORMAT_PT.
3273 (_initialize_remote): Add new commands.
3274
58bfce93
MM
32752015-07-02 Markus Metzger <markus.t.metzger@intel.com>
3276
3277 * configure.ac: check for libipt
3278 * configure: Regenerate.
3279 * config.in: Regenerate.
3280 * Makefile.in (LIBIPT): New.
3281 (CLIBS): Add $LIBIPT.
3282 * NEWS: document new configure options
3283
b0fd6b30
JK
32842015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3285
3286 * compile/compile-object-load.c (compile_object_load): Replace debug
3287 message "lookup undefined ELF symbol" by 3 more specific messages.
3288
e6280369
KB
32892015-07-01 Kevin Buettner <kevinb@redhat.com>
3290
3291 * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type.
3292 (rl78_register_type): Add case for RL78_PSW_REGNUM.
3293 (rl78_gdbarch_init): Initialize rl78_psw_type.
3294
bbcbf914
PP
32952015-07-01 Patrick Palka <patrick@parcs.ath.cx>
3296
3297 * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
3298 Update commentary. Always refresh the registers when frame
3299 information has changed.
3300 * tui/tui-stack.c (tui_show_frame_info): Update commentary.
3301 Change return type to int. Return 1 if frame information has
3302 changed, 0 otherwise.
3303 (tui_before_prompt): Update commentary.
3304 * tui/tui-stack.h (tui_show_frame_info): Change return type to
3305 int.
3306
0986c744
PP
33072015-06-30 Patrick Palka <patrick@parcs.ath.cx>
3308
3309 PR tui/13378
3310 * frame.c (select_frame): Remove reference to
3311 deprecated_selected_frame_level_changed_hook.
3312 * frame.h (deprecated_selected_frame_level_changed_hook): Remove
3313 declaration.
3314 * stack.c (deprecated_selected_frame_level_changed_hook):
3315 Likewise.
3316 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook):
3317 Rename to ...
3318 (tui_refresh_frame_and_register_information): ... this. Bail
3319 out if there is no stack. Don't update register information
3320 unless registers_too_p is true.
3321 (tui_print_frame_info_listing_hook): Rename to ...
3322 (tui_dummy_print_frame_info_listing_hook): ... this.
3323 (tui_before_prompt): New function.
3324 (tui_normal_stop): New function.
3325 (tui_before_prompt_observer): New observer.
3326 (tui_normal_stop_observer): New observer.
3327 (tui_install_hooks): Set
3328 deprecated_print_frame_info_listing_hook to
3329 tui_dummy_print_frame_info_listing_hook. Register
3330 tui_before_prompt_observer to call tui_before_prompt and
3331 tui_normal_stop_observer to call tui_normal_stop. Remove
3332 reference to deprecated_selected_frame_level_changed_hook.
3333 (tui_remove_hooks): Detach and unset tui_before_prompt_observer
3334 and tui_normal_stop_observer. Remove reference to
3335 deprecated_selected_frame_level_changed_hook.
3336
b5fca6d7
PP
33372015-06-30 Patrick Palka <patrick@parcs.ath.cx>
3338
3339 PR tui/13378
3340 * tui/tui-stack.c (tui_set_locator_info): Change prototype to
3341 return an int instead of void. Return whether the locator
3342 window has changed.
3343 (tui_show_frame_info): If the locator info has not changed, then
3344 bail out early to avoid refreshing the windows.
3345
c45613e3
PP
33462015-06-30 Patrick Palka <patrick@parcs.ath.cx>
3347
3348 * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
3349 LOCATOR_WIN to tui_alloc_content.
3350
7b9be803
YQ
33512015-06-30 Yao Qi <yao.qi@linaro.org>
3352
3353 PR tdep/18605
3354 * arm-tdep.c (arm_get_next_pc_raw): Break for media
3355 instructions.
3356
fd6e021d
KB
33572015-06-29 Kevin Buettner <kevinb@redhat.com>
3358
78ab7e9d
KB
3359 * rx-tdep.c (RX_PSW_REGNUM): New enum constant.
3360 (rx_dwarf_reg_to_regnum): New function.
3361 (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2
3362 unwinding.
fd6e021d 3363
28bf096c
PA
33642015-06-29 Pedro Alves <palves@redhat.com>
3365
3366 PR threads/18127
3367 * infcall.c (run_inferior_call): On infcall success, if the thread
3368 was marked stopped before, reset it back to stopped.
3369 * infrun.c (resume): Don't suppress the set_running calls when
3370 doing an infcall.
3371 (normal_stop): Only discard the finish_thread_state cleanup if the
3372 infcall succeeded.
3373
2880b51c 33742015-06-29 Pierre Langlois <pierre.langlois@arm.com>
1451ea7d
PL
3375
3376 * MAINTAINERS (Write After Approval): Update my email address.
3377
ee93cd5e
KS
33782015-06-26 Keith Seitz <keiths@redhat.com>
3379 Doug Evans <dje@google.com>
3380
3381 PR 16253
3382 * block.c (block_lookup_symbol): For non-function blocks,
3383 continue to search for a symbol with an exact domain match
3384 Otherwise, return any previously found "best domain" symbol.
3385 (block_lookup_symbol_primary): Likewise.
3386
fc637f04
PP
33872015-06-26 Patrick Palka <patrick@parcs.ath.cx>
3388
3389 * NEWS: Mention the new option "history remove-duplicates".
3390 * top.c (history_remove_duplicates): New static variable.
3391 (show_history_remove_duplicates): New static function.
3392 (gdb_add_history): Conditionally remove duplicate history
3393 entries.
3394 (init_main): Add "history remove-duplicates" option.
3395
2e52ae68
PP
33962015-06-26 Patrick Palka <patrick@parcs.ath.cx>
3397
3398 * tui/tui-win.c (focus_completer): New static function.
3399 (_initialize_tui_win): Set the completion function of the
3400 "focus" command to focus_completer.
3401
6e22494e
JK
34022015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3403
3404 * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID
3405 and language_asm..
3406 * symtab.c (find_function_start_sal): Likewise.
3407
f8773be1
GB
34082015-06-25 Gary Benson <gbenson@redhat.com>
3409
3410 * solib.c (solib_find_1): Set local variable sysroot to NULL if
3411 it is the empty string after trailing slashes have been stripped.
3412
a3be80c3
GB
34132015-06-25 Gary Benson <gbenson@redhat.com>
3414
3415 * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check.
3416 * infrun.c (follow_exec): Likewise.
3417 * remote.c (remote_filesystem_is_local): Likewise.
3418 * solib.c (solib_find_1): Likewise.
3419
32fad71f
KS
34202015-06-24 Keith Seitz <keiths@redhat.com>
3421
3422 * build-id.c (build_id_to_debug_bfd): Add cleanup to free
3423 return value from lrealpath.
3424
87d1b309
MF
34252015-06-24 Mike Frysinger <vapier@gentoo.org>
3426
3427 * remote-sim.c (gdbsim_open): Move sysroot update to the top.
3428
23bf70af
MF
34292015-06-24 Mike Frysinger <vapier@gentoo.org>
3430
3431 * remote-sim.c: Include gdb_bfd.h.
3432 (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot.
3433 Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active.
3434
5cd867b4
YQ
34352015-06-24 Yao Qi <yao.qi@linaro.org>
3436
3437 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call
3438 set_gdbarch_get_siginfo_type.
3439 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
3440 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
3441 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
3442 * m68klinux-tdep.c (m68k_linux_init_abi): Likewise.
3443 * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
3444 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
3445 * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise.
3446 * linux-tdep.c (linux_get_siginfo_type): Change it to static.
3447 (linux_init_abi): Call set_gdbarch_get_siginfo_type.
3448 * linux-tdep.h (linux_get_siginfo_type): Remove the declaration.
3449
dc06243f
GB
34502015-06-24 Gary Benson <gbenson@redhat.com>
3451
3452 * common/buffer.c (stdint.h): Do not include.
3453 * common/print-utils.c (stdint.h): Likewise.
3454 * compile/compile-c-symbols.c (gdb_assert.h): Likewise.
3455 * compile/compile-c-types.c (gdb_assert.h): Likewise.
3456 * ft32-tdep.c (gdb_assert.h): Likewise.
3457 * guile/scm-utils.c (stdint.h): Likewise.
3458 * i386-linux-tdep.c (stdint.h): Likewise.
3459 * i386-tdep.c (stdint.h): Likewise.
3460 * nat/linux-btrace.c (stdint.h): Likewise.
3461 * nat/linux-btrace.h (stdint.h): Likewise.
3462 * nat/linux-ptrace.c (stdint.h): Likewise.
3463 * nat/mips-linux-watch.h (stdint.h): Likewise.
3464 * ppc-linux-nat.c (stdint.h): Likewise.
3465 * python/python-internal.h (stdint.h): Likewise.
3466 * stub-termcap.c (stdlib.h): Likewise.
3467 * target/target.h (stdint.h): Likewise.
3468 * xtensa-linux-nat.c (stdint.h): Likewise.
3469
0fc26caf
PP
34702015-06-23 Patrick Palka <patrick@parcs.ath.cx>
3471
3472 * top.c (init_history): Look at errno after calling strtol to
3473 properly map large GDBHISTSIZE values to infinity.
3474
a38fe4fe
DE
34752015-06-23 Doug Evans <dje@google.com>
3476
3477 * inferior.h (struct inferior_suspend_state): Delete, unused.
3478 All references deleted.
3479
7564fe45
MF
34802015-06-23 Mike Frysinger <vapier@gentoo.org>
3481
3482 * microblaze-tdep.c (microblaze_push_dummy_code): Delete.
3483 (microblaze_push_dummy_call): Likewise.
3484 (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code
3485 and set_gdbarch_push_dummy_call.
3486
0bdb2f78
YQ
34872015-06-23 Yao Qi <yao.qi@linaro.org>
3488
3489 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
3490 Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly.
3491 (amd64_linux_store_inferior_registers): Likewise.
3492 * arm-linux-nat.c (fetch_fpregister): Likewise.
3493 (fetch_fpregs, store_fpregister): Likewise.
3494 (store_fpregister, store_fpregs): Likewise.
3495 (fetch_register, fetch_regs): Likewise.
3496 (store_register, store_regs): Likewise.
3497 (fetch_vfp_regs, store_vfp_regs): Likewise.
3498 (arm_linux_read_description): Check have_ptrace_getregset is
3499 TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE
3500 or TRIBOOL_FALSE.
3501 * i386-linux-nat.c (fetch_xstateregs): Check
3502 have_ptrace_getregset is not TRIBOOL_TRUE.
3503 (store_xstateregs): Likewise.
3504 * linux-nat.c (have_ptrace_getregset): Change its type to
3505 enum tribool.
3506 * linux-nat.h (tribool): New enum.
3507 * x86-linux-nat.c (x86_linux_read_description): Use enum tribool.
3508 Check whether have_ptrace_getregset is TRIBOOL_TRUE.
3509
18a94d75
DE
35102015-06-19 Doug Evans <dje@google.com>
3511
3512 * NEWS: Mention Sun's version of stabs is no longer supported.
3513 * elfread.c (free_elfinfo): Delete. All uses updated.
3514 (elfstab_offset_sections): Delete. All uses updated.
3515 * gdb-stabs.h (stab_section_info): Delete. All uses updated.
3516 * psympriv.h (partial_symtab) <section_offsets>: Delete.
3517 All uses updated.
3518 * psymtab.c (start_psymtab_common): Delete arg section_offsets.
3519 All callers updated.
3520
124e13d9
SM
35212015-06-18 Simon Marchi <simon.marchi@ericsson.com>
3522
3523 * common/rsp-low.c (needs_escaping): New.
3524 (remote_escape_output): Add unit_size parameter. Refactor to
3525 support multi-byte addressable units. Rename parameters.
3526 * common/rsp-low.h (remote_escape_output): Add unit_size
3527 parameter and rename others. Update doc.
3528 * remote.c (align_for_efficient_write): New.
3529 (remote_write_bytes_aux): Add unit_size parameter and use it.
3530 Rename some variables. Update doc.
3531 (remote_xfer_partial): Get unit size and use it.
3532 (remote_read_bytes_1): Add unit_size parameter and use it.
3533 Rename some variables. Update doc.
3534 (remote_write_bytes): Same.
3535 (remote_xfer_live_readonly_partial): Same.
3536 (remote_read_bytes): Same.
3537 (remote_flash_write): Update call to remote_write_bytes_aux.
3538 (remote_write_qxfer): Update call to remote_escape_output.
3539 (remote_search_memory): Same.
3540 (remote_hostio_pwrite): Same.
3541
6ae88661
LM
35422015-06-17 Luis Machado <lgustavo@codesourcery.com>
3543
3544 * breakpoint.c (add_location_to_breakpoint): Don't mark permanent
3545 locations as inserted.
3546 Update and expand comment about permanent locations.
3547 (bp_loc_is_permanent): Don't return 0 for bp_call_dummy.
3548 Move comment to add_location_to_breakpoint.
3549 (update_global_location_list): Don't error out if a permanent
3550 breakpoint is not marked inserted.
3551 Don't error out if a non-permanent breakpoint location is inserted on
3552 top of a permanent breakpoint.
3553
da4616f6
LM
35542015-06-17 Luis Machado <lgustavo@codesourcery.com>
3555
3556 * breakpoint.c (make_breakpoint_permanent): Remove unused
3557 function.
3558 * breakpoint.h (make_breakpoint_permanent): Remove declaration.
3559
bc460514
PP
35602015-06-17 Patrick Palka <patrick@parcs.ath.cx>
3561
3562 PR gdb/16999
3563 * NEWS: Mention new GDBHISTSIZE behavior.
3564 * top.c (init_history): For null or out-of-range GDBHISTSIZE,
3565 set history size to unlimited. Ignore non-numeric GDBHISTSIZE.
3566
b58c513b
PP
35672015-06-17 Patrick Palka <patrick@parcs.ath.cx>
3568
3569 * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
3570 * top.c (init_history): Read from GDBHISTSIZE instead of
3571 HISTSIZE.
3572 (init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
3573
2093d2d3
PP
35742015-06-17 Patrick Palka <patrick@parcs.ath.cx>
3575
3576 * top.c (gdb_safe_append_history): Do not call
3577 history_truncate_file if the history is not stifled.
3578
fc248485
AA
35792015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
3580
3581 * syscalls/s390-linux.xml: Add syscalls 344 through 354.
3582 * syscalls/s390x-linux.xml: Likewise.
3583
4da680ad
ME
35842015-06-16 Michael Eager <eager@eagercon.com>
3585
3586 * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined.
3587
0a75489f
PP
35882015-06-16 Patrick Palka <patrick@parcs.ath.cx>
3589
3590 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call
3591 target_terminal_ours_for_output() before calling
3592 tui_show_frame_info(), and restore the original terminal
3593 settings afterwards.
3594
95855ca8
MS
35952015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch)
3596
3597 * arm-linux-nat.c: Include nat/linux-ptrace.h.
3598
cfc32360
SM
35992015-06-15 Simon Marchi <simon.marchi@ericsson.com>
3600
3601 * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable
3602 memory unit size.
3603 (mi_cmd_data_write_memory_bytes): Same.
3604
cb6f16cf
SM
36052015-06-15 Simon Marchi <simon.marchi@ericsson.com>
3606
3607 * corefile.c (write_memory): Update doc.
3608 * gdbcore.h (write_memory): Same.
3609
31b7833d
JK
36102015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3611
3612 * linux-tdep.c (enum filterflags): Make it from anonymous enum.
3613 (dump_mapping_p): Use it for parameter filterflags.
3614 (linux_find_memory_regions_full): Use it for variable filterflags.
3615
909c2cda
JK
36162015-06-15 Aleksandar Ristovski <aristovski@qnx.com
3617 Jan Kratochvil <jan.kratochvil@redhat.com>
3618
3619 Merge multiple hex conversions.
3620 * monitor.c: Include rsp-low.h.
3621 (fromhex): Remove definition.
3622
03aef70f
JK
36232015-06-15 Aleksandar Ristovski <aristovski@qnx.com
3624 Jan Kratochvil <jan.kratochvil@redhat.com>
3625
3626 Move utility functions to common/.
3627 * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const):
3628 Move defs to common/common-utils.c.
3629 * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space)
3630 (skip_to_space_const): Move decls to common/common-utils.h.
3631 * common/common-defs.h: Move include of common-types.h before
3632 common-utils.h.
3633 * common/common-utils.c: Include host-defs.h and ctype.h.
3634 (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move
3635 from utils.c.
3636 (skip_spaces, skip_spaces_const, skip_to_space_const): Move from
3637 cli/cli-utils.c.
3638 * common/common-utils.h (strtoulst): Move decl from utils.h.
3639 (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const):
3640 Move from cli/cli-utils.h.
3641 * common/host-defs.h: Include limits.h.
3642 (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h.
3643 (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h.
3644 * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to
3645 common/common-utils.h.
3646 * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
3647 (strtoulst): Move to common/common-utils.c.
3648 * utils.h (strtoulst): Moved decl to common/common-utils.h.
3649
d1168cc1
YQ
36502015-06-15 Yao Qi <yao.qi@linaro.org>
3651
3652 * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml.
3653
c74f7d1c
JT
36542015-06-10 Jon Turney <jon.turney@dronecode.org.uk>
3655
3656 * build-id.c: Don't include elf-bfd.h.
3657 (build_id_bfd_get): Use bfd_build_id.
3658 (build_id_verify): Ditto.
3659 * build-id.h: Ditto.
3660 (find_separate_debug_file_by_buildid): Ditto.
3661 * python/py-objfile.c: Don't include elf-bfd.h.
3662 (objfpy_get_build_id) Use bfd_build_id.
3663 (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto.
3664 * coffread.c: Include build-id.h.
3665 (coff_symfile_read): Try find_separate_debug_file_by_buildid.
3666
f20c58f5
JT
36672015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
3668
3669 * windows-nat.c (do_windows_fetch_inferior_registers)
3670 (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE
3671 conditional with __CYGWIN__.
3672
51f0e40d
AB
36732015-06-13 Andrew Burgess <andrew.burgess@embecosm.com>
3674
3675 * completer.c: Add arch-utils.h include.
3676 (enum reg_completer_targets): New enum.
3677 (reg_or_group_completer_1): New function containing old
3678 reg_or_group_completer, add and use new parameter to control what
3679 is completed on. Use get_current_arch rather than architecture of
3680 currently selected frame.
3681 (reg_or_group_completer): Call new reg_or_group_completer_1.
3682 (reggroup_completer): Call new reg_or_group_completer_1.
3683 * completer.h (reggroup_completer): Add declaration.
3684 * tui/tui-regs.c: Add 'completer.h' include.
3685 (tui_reg_next_command): Renamed to...
3686 (tui_reg_next): ...this. Adjust parameters and return rather than
3687 display new group.
3688 (tui_reg_prev_command): Renamed to...
3689 (tui_reg_prev): ...this. Adjust parameters and return rather than
3690 display new group.
3691 (tui_reg_float_command): Delete.
3692 (tui_reg_general_command): Delete.
3693 (tui_reg_system_command): Delete.
3694 (tui_reg_command): Rewrite to perform switching of register group.
3695 Add header comment.
3696 (tuireglist): Remove.
3697 (tui_reggroup_completer): New function.
3698 (_initialize_tui_regs): Remove 'tui reg' sub-commands, update
3699 creation of 'tui reg' command.
3700 * NEWS: Add comment about 'tui reg' changes.
3701
d309493c
SM
37022015-06-12 Simon Marchi <simon.marchi@ericsson.com>
3703
3704 * target.c (target_read): Consider addressable unit size when
3705 reading from a memory object.
3706 (read_memory_robust): Same.
3707 (read_whatever_is_readable): Same.
3708 (target_write_with_progress): Consider addressable unit size
3709 when writing to a memory object.
3710 * target.h (target_read): Update documentation.
3711 (target_write): Add documentation.
3712
3374165f
SM
37132015-06-12 Simon Marchi <simon.marchi@ericsson.com>
3714
3715 * arch-utils.h (default_addressable_memory_unit_size): New.
3716 * arch-utils.c (default_addressable_memory_unit_size): New.
3717 * gdbarch.sh (addressable_memory_unit_size): New.
3718 * gdbarch.h: Re-generate.
3719 * gdbarch.c: Re-generate.
3720
279a6fed
SM
37212015-06-12 Simon Marchi <simon.marchi@ericsson.com>
3722
3723 * target.c (target_read): Rename variables and use
3724 TARGET_XFER_E_IO.
3725 (target_read_with_progress): Same.
3726 (read_memory_robust): Constify parameters and rename
3727 variables.
3728 (read_whatever_is_readable): Constify parameters,
3729 rename variables, adjust formatting.
3730 * target.h (read_memory_robust): Constify parameters.
3731
1e5338b6 37322015-06-12 Ulrich Weigand <uweigand@de.ibm.com>
a1da2672
UW
3733
3734 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short
3735 synthetic (non-AltiVec) vector types.
3736 (ppc64_sysv_abi_return_value): Likewise.
3737
98aa42ee
AT
37382015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com>
3739
3740 PR breakpoints/16465
3741 * breakpoint.c (create_breakpoint): Save extra_string for
3742 pending breakpoints.
3743
966f0aef
WT
37442015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
3745
3746 * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask
3747 and bt_mask to CORE_ADDR.
3748
6449ed0d
GB
37492015-06-11 Gary Benson <gbenson@redhat.com>
3750
3751 * nat/linux-namespaces.c (mnsh_send_message): Use pulongest.
3752 (mnsh_recv_message): Likewise.
3753
34f8ac9f
WT
37542015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com>
3755
3756 * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of
3757 long long int and plongest instead of %ll.
3758
198c808c
GB
37592015-06-11 Gary Benson <gbenson@redhat.com>
3760
3761 * nat/linux-namespaces.c (gdb_wait.h): New include.
3762 (sys/wait.h): Do not include.
3763
e815d2d2
SM
37642015-06-10 Simon Marchi <simon.marchi@ericsson.com>
3765
3766 * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if
3767 end_sequence is true.
3768
8847cac2
JK
37692015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3770
3771 Code cleanup.
3772 * solib-target.c (library_list_start_list): Use explicit NULL
3773 comparison.
3774
24c05f46
JK
37752015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3776
3777 * solib-target.c (library_list_start_list): Do not dereference
3778 variable version in its initialization. Make the VERSION check handle
3779 NULL.
3780 (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL.
3781
51aad7cc
GB
37822015-06-10 Gary Benson <gbenson@redhat.com>
3783
3784 * NEWS: Announce support for direct access of executable and
3785 shared library files when attaching to inferiors in containers
3786 on GNU/Linux systems.
3787
15a201c8
GB
37882015-06-10 Gary Benson <gbenson@redhat.com>
3789
3790 * remote.c (struct remote_state) <fs_pid>: New field.
3791 (new_remote_state): Initialize the above.
3792 (PACKET_vFile_setfs): New enum value.
3793 (remote_hostio_set_filesystem): New function.
3794 (remote_hostio_open): Call the above.
3795 (remote_hostio_unlink): Likewise.
3796 (remote_hostio_readlink): Likewise.
3797 (_initialize_remote): Register new "set/show remote
3798 hostio-setfs-packet" command.
3799 * NEWS: Announce new vFile:setfs packet.
3800
7a6a1731
GB
38012015-06-10 Gary Benson <gbenson@redhat.com>
3802
3803 * linux-nat.c (nat/linux-namespaces.h): New include.
3804 (fileio.h): Likewise.
3805 (linux_nat_filesystem_is_local): New function.
3806 (linux_nat_fileio_pid_of): Likewise.
3807 (linux_nat_fileio_open): Likewise.
3808 (linux_nat_fileio_readlink): Likewise.
3809 (linux_nat_fileio_unlink): Likewise.
3810 (linux_nat_add_target): Initialize to_filesystem_is_local,
3811 to_fileio_open, to_fileio_readlink and to_fileio_unlink.
3812 (_initialize_linux_nat): New "set/show debug linux-namespaces"
3813 commands.
3814 * NEWS: Mention new "set/show debug linux-namespaces" commands.
3815
07c138c8
GB
38162015-06-10 Gary Benson <gbenson@redhat.com>
3817
3818 * target.h (struct inferior): New forward declaration.
3819 (struct target_ops) <to_filesystem_is_local>: Update comment.
3820 (struct target_ops) <to_fileio_open>: New argument inf.
3821 Update comment. All implementations updated.
3822 (struct target_ops) <to_fileio_unlink>: Likewise.
3823 (struct target_ops) <to_fileio_readlink>: Likewise.
3824 (target_filesystem_is_local): Update comment.
3825 (target_fileio_open): New argument inf. Update comment.
3826 (target_fileio_unlink): Likewise.
3827 (target_fileio_readlink): Likewise.
3828 (target_fileio_read_alloc): Likewise.
3829 (target_fileio_read_stralloc): Likewise.
3830 * target.c (target_fileio_open): New argument inf.
3831 Pass inf to implementation. Update debug printing.
3832 (target_fileio_unlink): Likewise.
3833 (target_fileio_readlink): Likewise.
3834 (target_fileio_read_alloc_1): New argument inf. Pass inf
3835 to target_fileio_open.
3836 (target_fileio_read_alloc): New argument inf. Pass inf to
3837 target_fileio_read_alloc_1.
3838 (target_fileio_read_stralloc): Likewise.
3839 * gdb_bfd.c (inferior.h): New include.
3840 (gdb_bfd_iovec_fileio_open): Replace unused "open_closure"
3841 argument with new argument "inferior". Pass inferior to
3842 target_fileio_open.
3843 (gdb_bfd_open): Supply inferior argument to
3844 gdb_bfd_iovec_fileio_open.
3845 * linux-tdep.c (linux_info_proc): Supply inf argument to
3846 relevant target_fileio calls.
3847 (linux_find_memory_regions_full): Likewise.
3848 (linux_fill_prpsinfo): Likewise.
3849 * remote.c (remote_filesystem_is_local): Supply inf
3850 argument to remote_hostio_open.
3851 (remote_file_put): Likewise.
3852 (remote_file_get): Likewise.
3853 (remote_file_delete): Supply inf argument to
3854 remote_hostio_unlink.
3855
12e2a5fd
GB
38562015-06-10 Gary Benson <gbenson@redhat.com>
3857
3858 * inf-child.c (inf_child_fileio_open): Replace comment.
3859 (inf_child_fileio_pwrite): Likewise.
3860 (inf_child_fileio_pread): Likewise.
3861 (inf_child_fileio_fstat): Insert blank line before comment.
3862 (inf_child_fileio_close): Replace comment.
3863 (inf_child_fileio_unlink): Likewise.
3864 (inf_child_fileio_readlink): Likewise.
3865 * remote.c (remote_hostio_open): Likewise.
3866 (remote_hostio_pread): Likewise.
3867 (remote_hostio_pwrite): Likewise.
3868 (remote_hostio_close): Likewise.
3869 (remote_hostio_unlink): Likewise.
3870 (remote_hostio_readlink): Likewise.
3871 (remote_hostio_fstat): Likewise.
3872 (remote_filesystem_is_local): Likewise.
3873 * target.c (target_fileio_open): Likewise.
3874 (target_fileio_pwrite): Likewise.
3875 (target_fileio_pread): Likewise.
3876 (target_fileio_fstat): Insert blank line before comment.
3877 (target_fileio_close): Replace comment.
3878 (target_fileio_unlink): Likewise.
3879 (target_fileio_readlink): Likewise.
3880 (target_fileio_read_alloc): Likewise.
3881 (target_fileio_read_stralloc): Likewise.
3882
9bc3a976
GB
38832015-06-10 Gary Benson <gbenson@redhat.com>
3884
3885 * linux-thread-db.c (nat/linux-namespaces.h): New include.
3886 (check_pid_namespace_match): Use linux_ns_same rather than
3887 linux_proc_pid_get_ns to spot PID namespace mismatches.
3888 * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove.
3889 * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise.
3890
4b8b5e72
GB
38912015-06-10 Gary Benson <gbenson@redhat.com>
3892
3893 * configure.ac (AC_CHECK_FUNCS): Add setns.
3894 * config.in: Regenerate.
3895 * configure: Likewise.
3896 * nat/linux-namespaces.h: New file.
3897 * nat/linux-namespaces.c: Likewise.
3898 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h.
3899 (linux-namespaces.o): New rule.
3900 * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o.
3901 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3902 * config/arm/linux.mh (NATDEPFILES): Likewise.
3903 * config/i386/linux.mh (NATDEPFILES): Likewise.
3904 * config/i386/linux64.mh (NATDEPFILES): Likewise.
3905 * config/ia64/linux.mh (NATDEPFILES): Likewise.
3906 * config/m32r/linux.mh (NATDEPFILES): Likewise.
3907 * config/m68k/linux.mh (NATDEPFILES): Likewise.
3908 * config/mips/linux.mh (NATDEPFILES): Likewise.
3909 * config/pa/linux.mh (NATDEPFILES): Likewise.
3910 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
3911 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3912 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3913 * config/s390/linux.mh (NATDEPFILES): Likewise.
3914 * config/sparc/linux.mh (NATDEPFILES): Likewise.
3915 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3916 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3917 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3918
ca095836
GB
39192015-06-10 Gary Benson <gbenson@redhat.com>
3920
3921 * utils.h (make_cleanup_close): Moved to common/filestuff.h.
3922 * utils.c (do_close_cleanup): Moved to common/filestuff.c.
3923 (make_cleanup_close): Likewise.
3924 * common/filestuff.h (make_cleanup_close): Moved from utils.h.
3925 * common/filestuff.c (do_close_cleanup): Moved from utils.c.
3926 (make_cleanup_close): Likewise.
3927
5d9c55d3
JT
39282015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
3929
3930 * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE
3931 from SuspendThread().
3932
040ea00b
JT
39332015-06-03 Jon Turney <jon.turney@dronecode.org.uk>
3934
3935 * windows-nat.c (handle_output_debug_string): Trim trailing '\n'
3936 from OutputDebugString.
3937
7d73c23c
WT
39382015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com>
3939 Mircea Gherzan <mircea.gherzan@intel.com>
3940
3941 * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32,
3942 MPX_BT_MASK_32): New macros.
3943 (i386_mpx_set_bounds): New function that implements
3944 the command "set-mpx-bound".
3945 (i386_mpx_enabled): Helper function to test MPX availability.
3946 (i386_mpx_bd_base): Helper function to calculate the base directory
3947 address.
3948 (i386_mpx_get_bt_entry): Helper function to access a bound
3949 table entry.
3950 (i386_mpx_print_bounds): Effectively display bound information.
3951 (_initialize_i386_tdep): Add new commands to commands "set mpx" and
3952 "show mpx".
3953 (_initialize_i386_tdep):
3954 Add "bound" to the commands "show mpx" and "set mpx" commands.
3955 (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx"
3956 and "show mpx" commands.
3957 * NEWS: List new commands for MPX support.
3958
3ac2e371
GB
39592015-06-09 Gary Benson <gbenson@redhat.com>
3960
3961 * common/fileio.h (fileio_to_host_mode): New declaration.
3962 * common/fileio.c (fileio_to_host_mode): New Function.
3963 * inf-child.c (inf_child_fileio_open): Process mode argument
3964 with fileio_to_host_mode.
3965
ecef18c5
GB
39662015-06-09 Gary Benson <gbenson@redhat.com>
3967
3968 * common/fileio.c (fileio_mode_pack): Fix preprocessor
3969 conditional.
3970
e3dd7556
GB
39712015-06-05 Gary Benson <gbenson@redhat.com>
3972
3973 * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to...
3974 * remote.c (remote_filesystem_is_local): ...here.
3975
5b74bf7d
YQ
39762015-06-04 Yao Qi <yao.qi@linaro.org>
3977
3978 * gdbarch.c: Regenerate it.
3979
7f361056
JK
39802015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com>
3981
3982 * arch-utils.c (default_infcall_munmap): New.
3983 * arch-utils.h (default_infcall_munmap): New declaration.
3984 * compile/compile-object-load.c (struct munmap_list, munmap_list_add)
3985 (munmap_list_free, munmap_listp_free_cleanup): New.
3986 (struct setup_sections_data): Add field munmap_list_headp.
3987 (setup_sections): Call munmap_list_add.
3988 (compile_object_load): New variable munmap_list_head, initialize
3989 setup_sections_data.munmap_list_headp, return munmap_list_head.
3990 * compile/compile-object-load.h (struct munmap_list): New declaration.
3991 (struct compile_module): Add field munmap_list_head.
3992 (munmap_list_free): New declaration.
3993 * compile/compile-object-run.c (struct do_module_cleanup): Add field
3994 munmap_list_head.
3995 (do_module_cleanup): Call munmap_list_free.
3996 (compile_object_run): Pass munmap_list_head to do_module_cleanup.
3997 * gdbarch.c: Regenerate.
3998 * gdbarch.h: Regenerate.
3999 * gdbarch.sh (infcall_munmap): New.
4000 * linux-tdep.c (linux_infcall_munmap): New.
4001 (linux_init_abi): Install it.
4002
3b462ec2
SM
40032015-06-02 Simon Marchi <simon.marchi@ericsson.com>
4004
4005 PR gdb/15564
4006 * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0.
4007
8d683210
YQ
40082015-06-02 Yao Qi <yao.qi@linaro.org>
4009
4010 * i386-linux-nat.c: Include linux-nat.h.
4011
e0619de6
JK
40122015-06-01 Andreas Schwab <schwab@linux-m68k.org>
4013 Jan Kratochvil <jan.kratochvil@redhat.com>
4014
4015 PR symtab/18392
4016 * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct
4017 assertion.
4018 * dwarf2loc.c (chain_candidate): Likewise.
4019
bd16da51
YQ
40202015-06-01 Yao Qi <yao.qi@linaro.org>
4021
4022 * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET.
4023 (store_vfp_regs): Use PTRACE_SETREGSET.
4024
df9d7ec9
YQ
40252015-06-01 Yao Qi <yao.qi@linaro.org>
4026
4027 * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET.
4028 (fetch_fpregs): Likewise.
4029 * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET.
4030 (store_fpregs): Likewise.
4031
10766686
YQ
40322015-06-01 Yao Qi <yao.qi@linaro.org>
4033
4034 * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET.
4035 (fetch_regs): Likewise.
4036 (store_regs): Use PTRACE_SETREGSET.
4037 (store_register): Likewise.
4038
7efe48d1
YQ
40392015-06-01 Yao Qi <yao.qi@linaro.org>
4040
4041 * arm-linux-nat.c (arm_linux_read_description): Check whether
4042 kernel supports PTRACE_GETREGSET.
4043
433bbbf8
YQ
40442015-06-01 Yao Qi <yao.qi@linaro.org>
4045
4046 * x86-linux-nat.c (have_ptrace_getregset): Move it to ...
4047 * linux-nat.c: ... here.
4048 * x86-linux-nat.h (have_ptrace_getregset): Move the declaration
4049 to ...
4050 * linux-nat.h: ... here.
4051
ca9b78ce
YQ
40522015-06-01 Yao Qi <yao.qi@linaro.org>
4053
4054 * amd64-linux-nat.c: Include "nat/linux-ptrace.h".
4055 * i386-linux-nat.c: Likewise.
4056 * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define.
4057 * s390-linux-nat.c: Include "nat/linux-ptrace.h".
4058 (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4059 * x86-linux-nat.c: Include "nat/linux-ptrace.h".
4060 * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove.
4061
99cee7b7
EZ
40622015-05-30 Eli Zaretskii <eliz@gnu.org>
4063
4064 * go32-nat.c (go32_xfer_memory): Fix the return value to be
4065 compatible to what read_child and write_child return. This
4066 unbreaks that DJGPP build of GDB which was broken since v7.7.
4067
2147f5bd
MG
40682015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com>
4069
4070 * MAINTAINERS (Write After Approval): Add Martin Galvan.
4071
c8f6c93c
RM
40722015-05-29 Roland McGrath <mcgrathr@google.com>
4073
4074 PR gdb/18464
4075 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning
4076 rather than internal_error for an unrecognized value.
4077
8c6a948d
MF
40782015-05-29 Max Filippov <jcmvbkbc@gmail.com>
4079
4080 * xtensa-tdep.c (xtensa_pseudo_register_read)
4081 (xtensa_pseudo_register_write): Don't alias last pseudo register
4082 to a1.
4083
8dd06f7a
DB
40842015-05-28 Don Breazeal <donb@codesourcery.com>
4085
4086 * infrun.c (follow_fork_inferior): Ensure the use of
4087 process-style ptids (pid,0,0) in verbose/debug "Detaching"
4088 messages.
4089
a051152b
DE
40902015-05-28 Doug Evans <dje@google.com>
4091
4092 * dwarf2read.c (record_line_ftype): Remove, duplicate.
4093
a56cc1ce
YQ
40942015-05-28 Yao Qi <yao.qi@linaro.org>
4095
4096 * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove.
4097 (arm_linux_fetch_inferior_registers): Use
4098 tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers.
4099 (arm_linux_store_inferior_registers): Likewise.
4100 (arm_linux_read_description): Don't set
4101 arm_linux_has_wmmx_registers.
4102 * arm-tdep.c (arm_gdbarch_init): Set
4103 tdep->have_wmmx_registers according target descriptions.
4104 * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New
4105 field.
4106
330c6ca9
YQ
41072015-05-28 Yao Qi <yao.qi@linaro.org>
4108
4109 * arm-linux-nat.c (arm_linux_vfp_register_count): Remove.
4110 (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep
4111 instead of arm_linux_vfp_register_count.
4112 (store_vfp_regs): Likewise.
4113 (arm_linux_fetch_inferior_registers): Likewise.
4114 (arm_linux_store_inferior_registers): Likewise.
4115 (arm_linux_read_description): Don't set
4116 arm_linux_vfp_register_count.
4117 * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections):
4118 Adjust.
4119 * arm-tdep.c (arm_gdbarch_init): Add assert on
4120 vfp_register_count.
4121 * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename
4122 field to vfp_register_count. All users updated.
4123
d403db27
KH
41242015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch)
4125
4126 * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on
4127 ELFOSABI_GNU binaries.
4128
d9b3de22
DE
41292015-05-27 Doug Evans <dje@google.com>
4130
4131 * dwarf2read.c (lnp_state_machine): New typedef.
4132 (lnp_reader_state): New typedef.
4133 (dwarf_record_line_1): Renamed from dwarf_record_line.
4134 All callers updated.
4135 (dwarf_record_line): New function.
4136 (init_lnp_state_machine): New function.
4137 (check_line_address): Replace p_record_line parameter with state.
4138 All callers updated.
4139 (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine.
4140 Update to record state in lnp_state_machine.
4141
924c2928
DE
41422015-05-27 Doug Evans <dje@google.com>
4143
4144 * dwarf2read.c (record_line_ftype): New typedef.
4145 (check_line_address): New function.
4146 (dwarf_decode_lines_1): Call it.
4147
27e0867f
DE
41482015-05-27 Doug Evans <dje@google.com>
4149
4150 * NEWS: Mention "set debug dwarf-line".
4151 * dwarf2read.c (dwarf_line_debug): New static global.
4152 (add_include_dir): Add debug dwarf-line support.
4153 (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto.
4154 (_initialize_dwarf2_read): New parameter "debug dwarf-line".
4155
4dcabcc2
DE
41562015-05-27 Doug Evans <dje@google.com>
4157
4158 * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain".
4159 All callers updated.
4160 (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto.
4161 * cp-support.h (cp_lookup_nested_symbol): Update.
4162
b2e2f908
DE
41632015-05-27 Doug Evans <dje@google.com>
4164
4165 PR symtab/18258
4166 * block.c (block_find_symbol): New function.
4167 (block_find_non_opaque_type): Ditto.
4168 (block_find_non_opaque_type_preferred): Ditto.
4169 * block.h (block_symbol_matcher_ftype): New typedef.
4170 (block_find_symbol): Declare.
4171 (block_find_non_opaque_type): Ditto.
4172 (block_find_non_opaque_type_preferred): Ditto.
4173 * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol.
4174 * psymtab.c (psym_lookup_symbol): Ditto.
4175 * symtab.c (basic_lookup_transparent_type_1): New function.
4176 (basic_lookup_transparent_type): Call it.
4177
f62fce35
YQ
41782015-05-27 Yao Qi <yao.qi@linaro.org>
4179
4180 * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return
4181 AARCH64_RECORD_UNKNOWN for unknown instruction encoding.
4182
5d98d3cd
YQ
41832015-05-27 Yao Qi <yao.qi@linaro.org>
4184
4185 * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines
4186 before operator &&.
4187 (aarch64_record_load_store): Likewise.
4188
82c7be31
DE
41892015-05-26 Doug Evans <dje@google.com>
4190
4191 PR c++/18141, c++/18417.
4192 * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being
4193 a typedef.
4194
b4f54984
DE
41952015-05-26 Doug Evans <dje@google.com>
4196
4197 * NEWS: Add entries for command renamings.
4198 * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug.
4199 All uses updated.
4200 (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated.
4201 (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age.
4202 All uses updated.
4203 (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age.
4204 All callers updated. Fix spelling of DWARF in help text.
4205 (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist.
4206 All uses updated.
4207 (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist.
4208 All uses updated.
4209 (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated.
4210 (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated.
4211 (dwarf_always_disassemble): Renamed from dwarf_always_disassemble.
4212 All uses updated.
4213 (show_dwarf_always_disassemble): Renamed from
4214 show_dwarf2_always_disassemble. All callers updated.
4215 (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to
4216 "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to
4217 "set/show dwarf max-cache-age". Rename
4218 "set/show dwarf2 always-disassemble" to
4219 "set/show dwarf always-disassemble". Rename
4220 "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename
4221 "set/show debug dwarf2-die" to "set/show debug dwarf-die".
4222
4ea6efe9
DE
42232015-05-26 Doug Evans <dje@google.com>
4224
4225 PR python/18438
4226 * python/py-lazy-string.c (stpy_convert_to_value): Use
4227 gdbpy_gdb_memory_error not PyExc_MemoryError.
4228 (gdbpy_create_lazy_string_object): Ditto.
4229
b93fd21d
AB
42302015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
4231
4232 * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
4233
55b40027
AB
42342015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
4235
4236 * tui/tui-regs.c (tui_reg_prev_command): New function.
4237 (_initialize_tui_regs): Add 'prev' command for 'tui reg'.
4238 * reggroups.c (reggroup_prev): New function.
4239 * reggroups.h (reggroup_prev): Add declaration. Update comment.
4240
99afc88b
OJ
42412015-05-26 Omair Javaid <omair.javaid@linaro.org>
4242 Yao Qi <yao.qi@linaro.org>
4243
4244 * aarch64-linux-tdep.c: Include linux-record.h and
4245 record-full.h.
4246 (struct linux_record_tdep aarch64_linux_record_tdep): Declare.
4247 (aarch64_syscall): New enum.
4248 (aarch64_canonicalize_syscall): New function.
4249 (aarch64_all_but_pc_registers_record): New function.
4250 (aarch64_linux_syscall_record): New function.
4251 (aarch64_linux_init_abi): Install AArch64 process record
4252 handler. Update to handle syscall recording.
4253 * aarch64-tdep.c: Include record.h and record-full.h.
4254 (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros.
4255 (struct aarch64_mem_r): Define.
4256 (aarch64_record_result): New enum.
4257 (struct insn_decode_record): Define.
4258 (insn_decode_record): New typedef.
4259 (aarch64_record_data_proc_reg): New function.
4260 (aarch64_record_data_proc_imm): New function.
4261 (aarch64_record_branch_except_sys): New function.
4262 (aarch64_record_load_store): New function.
4263 (aarch64_record_data_proc_simd_fp): New function.
4264 (aarch64_record_asimd_load_store): New function.
4265 (aarch64_record_decode_insn_handler): New function.
4266 (deallocate_reg_mem): New function.
4267 (aarch64_process_record): New function.
4268 * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>:
4269 New field.
4270 (aarch64_process_record): New extern declaration.
4271 * configure.tgt: Add linux-record.o to gdb_target_obs.
4272 * linux-record.h (struct linux_record_tdep) <arg7>: New field.
4273
c16a3f52
OJ
42742015-05-26 Omair Javaid <omair.javaid@linaro.org>
4275
4276 * NEWS: Add a note on process record-replay support on aarch64*-linux*
4277 targets.
4278
c9cf6e20
MG
42792015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com>
4280
4281 * amd64-tdep.c: Replace in_function_epilogue_p with
4282 stack_frame_destroyed_p throughout.
4283 * arch-utils.c: Ditto.
4284 * arch-utils.h: Ditto.
4285 * arm-tdep.c: Ditto.
4286 * breakpoint.c: Ditto.
4287 * gdbarch.sh: Ditto.
4288 * hppa-tdep.c: Ditto.
4289 * i386-tdep.c: Ditto.
4290 * mips-tdep.c: Ditto.
4291 * nios2-tdep.c: Ditto.
4292 * rs6000-tdep.c: Ditto.
4293 * s390-linux-tdep.c: Ditto.
4294 * score-tdep.c: Ditto.
4295 * sh-tdep.c: Ditto.
4296 * sparc-tdep.c: Ditto.
4297 * sparc-tdep.h: Ditto.
4298 * sparc64-tdep.c: Ditto.
4299 * spu-tdep.c: Ditto.
4300 * tic6x-tdep.c: Ditto.
4301 * tilegx-tdep.c: Ditto.
4302 * xstormy16-tdep.c: Ditto.
4303 * gdbarch.c, gdbarch.h: Re-generated.
4304
a4ea0946
AB
43052015-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
4306
4307 * NEWS: Mention 'tui enable' and 'tui disable'.
4308 * tui/tui.c (tui_enable_command): New function.
4309 (tui_disable_command): New function.
4310 (_initialize_tui): New function.
4311
b75c69bb
AB
43122015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
4313
4314 * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
4315
c1b009ee
AB
43162015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
4317
4318 * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
4319 buf_ptr is freed.
4320
880d1e40
AB
43212015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
4322
4323 * tui/tui-layout.c (tui_layout_command): Move call to tui_enable
4324 into ...
4325 (tui_set_layout_for_display_command): ...here, before calling
4326 tui_set_layout. Only set the layout if gdb has not already
4327 entered the TUI_FAILURE state.
4328
a0145030
AB
43292015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
4330
4331 * tui/tui-layout.c (layout_completer): New function.
4332 (_initialize_tui_layout): Set completer on layout command.
4333
7bd0be3a
AB
43342015-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
4335
4336 * tui/tui-layout.c (tui_set_layout): Remove
4337 tui_register_display_type parameter. Remove all checking of this
4338 parameter, and reindent function. Update header comment.
4339 (tui_set_layout_for_display_command): Rename to...
4340 (tui_set_layout_by_name): ...this, and don't check for different
4341 register class types, don't pass a tui_register_display_type to
4342 tui_set_layout. Update header comment.
4343 (layout_names): Remove register set specific names.
4344 * tui/tui-layout.h (tui_set_layout): Remove
4345 tui_register_display_type parameter.
4346 * tui/tui.c (tui_rl_change_windows): Don't pass a
4347 tui_register_display_type to tui_set_layout.
4348 (tui_rl_delete_other_windows): Likewise.
4349 (tui_enable): Likewise.
4350 * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove.
4351 (TUI_FLOAT_REGS_NAME_LOWER): Remove.
4352 (TUI_GENERAL_REGS_NAME): Remove.
4353 (TUI_GENERAL_REGS_NAME_LOWER): Remove.
4354 (TUI_SPECIAL_REGS_NAME): Remove.
4355 (TUI_SPECIAL_REGS_NAME_LOWER): Remove.
4356 (TUI_GENERAL_SPECIAL_REGS_NAME): Remove.
4357 (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove.
4358 (enum tui_register_display_type): Remove.
4359 (struct tui_layout_def): Remove regs_display_type and
4360 float_regs_display_type fields.
4361 (struct tui_data_info): Remove regs_display_type field.
4362 (tui_layout_command): Use new name for
4363 tui_set_layout_for_display_command.
4364 * tui/tui-data.c (layout_def): Don't initialise removed fields.
4365 (tui_clear_win_detail): Don't initialise removed fields of
4366 win_info.
4367 * tui/tui-regs.c (tui_show_registers): Use new name for
4368 tui_set_layout_for_display_command.
4369 * tui/tui.h (tui_set_layout_for_display_command): Rename
4370 declaration to...
4371 (tui_set_layout_by_name): ...this.
4372 * printcmd.c (display_command): Remove tui related layout call,
4373 and reindent.
4374
0b6e5e10
JB
43752015-05-20 Joel Brobecker <brobecker@adacore.com>
4376
4377 * infrun.c (handle_inferior_event_1): Renames handle_inferior_event.
4378 (handle_inferior_event): New function.
4379
1da0522e
JB
43802015-05-20 Joel Brobecker <brobecker@adacore.com>
4381
4382 * ada-lang.c (to_fixed_array_type): Rename local variable
4383 typename into type_name.
4384
5fe75eec
JK
43852015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4386
4387 Fix ASAN crash for gdb.compile/compile.exp.
4388 * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME.
4389
a4063588
JK
43902015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4391
4392 * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol)
4393 (gcc_symbol_address): Change gdb_stdout to gdb_stdlog.
4394 * compile/compile-object-load.c (setup_sections, compile_object_load):
4395 Likewise.
4396 * compile/compile.c (compile_to_object): Likewise.
4397
37442ce1
DE
43982015-05-16 Doug Evans <xdje42@gmail.com>
4399
4400 * NEWS: Mention support for unbuffered Guile memory ports.
4401 * scm-ports.c (ioscm_memory_port): Update comments on end, size.
4402 (ioscm_lseek_address): Improve overflow calculation.
4403 (gdbscm_memory_port_fill_input): Add assert.
4404 (gdbscm_memory_port_write): Handle unbuffered ports.
4405 Handle large writes identical to Guile's fport_write.
4406 (gdbscm_memory_port_seek): Fix seeking past end check.
4407 (gdbscm_memory_port_close): Handle closing unbuffered port.
4408 (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports.
4409 (ioscm_init_memory_port): Handle unbuffered ports.
4410 (ioscm_reinit_memory_port): Ditto.
4411 (ioscm_init_memory_port): Update size calculation.
4412 (gdbscm_open_memory): Support zero sized ports.
4413
d976bace
JK
44142015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4415
4416 * compile/compile-object-load.c (get_out_value_type): Fix uninitialized
4417 variable compiler warnings.
4418
4d18dfad
JK
44192015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4420
4421 * compile/compile-object-load.c (get_out_value_type): Fix returned type.
4422
36de76f9
JK
44232015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4424 Phil Muldoon <pmuldoon@redhat.com>
4425
4426 * NEWS (Changes since GDB 7.9): Add compile print.
4427 * compile/compile-c-support.c (add_code_header, add_code_footer)
4428 (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and
4429 COMPILE_I_PRINT_VALUE_SCOPE.
4430 * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE)
4431 (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE):
4432 New.
4433 * compile/compile-object-load.c: Include block.h.
4434 (get_out_value_type): New function.
4435 (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
4436 COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and
4437 OUT_VALUE_TYPE.
4438 * compile/compile-object-load.h (struct compile_module): Add fields
4439 out_value_addr and out_value_type.
4440 * compile/compile-object-run.c: Include valprint.h and compile.h.
4441 (struct do_module_cleanup): Add fields out_value_addr and
4442 out_value_type.
4443 (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and
4444 COMPILE_I_PRINT_VALUE_SCOPE.
4445 (compile_object_run): Propagate out_value_addr and out_value_type.
4446 Pass OUT_VALUE_ADDR.
4447 * compile/compile.c: Include valprint.h.
4448 (compile_print_value, compile_print_command): New functions.
4449 (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE.
4450 (_initialize_compile): Update compile code help text. Install
4451 compile_print_command.
4452 * compile/compile.h (compile_print_value): New prototype.
4453 * defs.h (enum compile_i_scope_types): Add
4454 COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE.
4455
83d3415e
JK
44562015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4457
4458 * compile/compile-object-load.c (get_regs_type): Add parameter func_sym.
4459 Rely on its parameter count.
4460 (compile_object_load): Replace lookup_minimal_symbol_text by
4461 lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the
4462 return value.
4463 * compile/compile-object-load.h (struct compile_module): Replace
4464 func_addr by func_sym.
4465 * compile/compile-object-run.c: Include block.h.
4466 (compile_object_run): Reset module variable after it is freed. Use
4467 FUNC_SYM instead of FUNC_ADDR. Rely on it.
4468
3a9558c4
JK
44692015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4470
4471 * compile/compile-c-support.c (print_one_macro): Use #ifndef.
4472 (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR.
4473 (c_compute_program): Call generate_register_struct after typedefs.
4474 * compile/compile-loc2c.c (push, pushf_register_address)
4475 (pushf_register): Cast to GCC_UINTPTR.
4476 (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after
4477 type. Use GCC_UINTPTR instead of void *. Remove excessive cast.
4478 (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *.
4479 * compile/compile.c (_initialize_compile): Enable warnings for
4480 COMPILE_ARGS.
4481
5c65b58a
JK
44822015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4483
4484 * cli/cli-script.c (execute_control_command): Update
4485 eval_compile_command caller.
4486 * compile/compile-object-load.c (compile_object_load): Add parameters
4487 scope and scope_data. Set them.
4488 * compile/compile-object-load.h (struct compile_module): Add fields
4489 scope and scope_data.
4490 (compile_object_load): Add parameters scope and scope_data.
4491 * compile/compile-object-run.c (struct do_module_cleanup): Add fields
4492 scope and scope_data.
4493 (compile_object_run): Propagate the fields scope and scope_data.
4494 * compile/compile.c (compile_file_command, compile_code_command):
4495 Update eval_compile_command callers.
4496 (eval_compile_command): Add parameter scope_data. Pass it plus scope.
4497 * compile/compile.h (eval_compile_command): Add parameter scope_data.
4498 * defs.h (struct command_line): Add field scope_data.
4499
1c88ceb1
JK
45002015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4501
4502 * printcmd.c (struct format_data): Move it to valprint.h.
4503 (print_command_parse_format, print_value): New functions from ...
4504 (print_command_1): ... here. Call them.
4505 * valprint.h (struct format_data): Move it here from printcmd.c.
4506 (print_command_parse_format, print_value): New declarations.
4507
0b738f27
JK
45082015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com>
4509
4510 * compile/compile-object-load.c (compile_object_load): Add
4511 COMPILE_DEBUG message.
4512
aa715135
JG
45132015-05-15 Jerome Guitton <guitton@adacore.com>
4514
4515 * ada-lang.c (ada_value_ptr_subscript): Use enum position of
4516 index to get element instead of enum value.
4517 (ada_value_slice_from_ptr, ada_value_slice): Use enum position
4518 of index to compute length, but enum values to compute bounds.
4519 (ada_array_length): Use enum position of index instead of enum value.
4520 (pos_atr): Move position computation to...
4521 (ada_evaluate_subexp): Use enum values to compute bounds.
4522 * gdbtypes.c (discrete_position): ...this new function.
4523 * gdbtypes.h (discrete_position): New function declaration.
4524 * valprint.c (val_print_array_elements): Call discrete_position
4525 to handle array indexed by non-contiguous enumeration types.
4526
931e5bc3
JG
45272015-05-15 Jerome Guitton <guitton@adacore.com>
4528
4529 * ada-lang.c (find_parallel_type_by_descriptive_type):
4530 Go through typedefs during lookup.
4531 (to_fixed_array_type): Add support for non-bit packed arrays
4532 as variable-length fields.
4533
4e63d0ac
PA
45342015-05-15 Pedro Alves <palves@redhat.com>
4535 Simon Marchi <simon.marchi@ericsson.com>
4536
4537 * event-loop.c (gdb_notifier) <next_file_handler,
4538 next_poll_fds_index>: New fields.
4539 (get_next_file_handler_to_handle_and_advance): New function.
4540 (delete_file_handler): If deleting the next file handler to
4541 handle, advance to the next file handler.
4542 (gdb_wait_for_event): Bail early if no event fired. Poll file
4543 handlers in round-robin fashion.
4544
52e48b36
PA
45452015-05-15 Pedro Alves <palves@redhat.com>
4546
4547 * linux-tdep.c (linux_find_memory_regions_full): Rename local
4548 'private' to 'priv'.
4549
2465e12e
PA
45502015-05-15 Pedro Alves <palves@redhat.com>
4551
4552 * nat/linux-nat.h: Include "target/waitstatus.h".
4553
13fa0398
YZ
45542015-05-15 Yuanhui Zhang <asmwarrior@gmail.com>
4555
4556 * python/py-unwind.c (struct reg_info): Move out of ...
4557 (struct cached_frame_info): ... this scope.
4558 (pending_frame_object_type, unwind_info_object_type): Make extern.
4559
9cd4d857
JB
45602015-05-15 Joel Brobecker <brobecker@adacore.com>
4561
4562 * ada-lang.c (ada_value_primitive_packed_val): Make sure
4563 accumSize is never negative.
4564
e3555239
PP
45652015-05-14 Patrick Palka <patrick@parcs.ath.cx>
4566
4567 * tui/tui-command.c: Remove include of <ctype.h>.
4568 (tui_dispatch_ctrl_char): Remove workaround for xterm terminals.
4569
08a76f8a
MG
45702015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com>
4571
4572 * dwarf2read.c (die_needs_namespace): Return 1 for
4573 DW_TAG_inlined_subroutine.
4574
bd49952b
JK
45752015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4576
4577 * regcache.c (regcache_cpy_no_passthrough): New declaration.
4578 (regcache_cpy_no_passthrough): Make it static, add function comment.
4579 * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment.
4580 (regcache_cpy_no_passthrough): Remove declaration.
4581
46c03469
JK
45822015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4583
4584 * gdbthread.h (struct thread_control_state): Update comment for
4585 proceed_to_finish.
4586 * infcall.c (run_inferior_call): Update comment about
4587 proceed_to_finish.
4588 * infcmd.c (get_return_value): Update comment about stop_registers.
4589 (finish_forward): Update comment about proceed_to_finish.
4590 * infrun.c (stop_registers): Remove.
4591 (clear_proceed_status, normal_stop): Remove stop_registers handling.
4592 * infrun.h (stop_registers): Remove.
4593
8a6c4031
JK
45942015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4595
4596 * infcall.c (struct dummy_frame_context_saver)
4597 (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor)
4598 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
4599 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
4600 New.
4601 (call_function_by_hand_dummy): Move discard_cleanups of
4602 inf_status_cleanup before dummy_frame_push. Call
4603 dummy_frame_context_saver_setup and prepare context_saver_cleanup.
4604 Use dummy_frame_context_saver_get_regs instead of stop_registers.
4605 * infcall.h (struct dummy_frame_context_saver)
4606 (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup)
4607 (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup):
4608 New declarations.
4609 * infcmd.c: Include infcall.h.
4610 (get_return_value): Add parameter ctx_saver, use it instead of
4611 stop_registers.
4612 (print_return_value): Add parameter ctx_saver, pass it.
4613 (struct finish_command_continuation_args): Add field ctx_saver.
4614 (finish_command_continuation): Update print_return_value caller.
4615 (finish_command_continuation_free_arg): Free also ctx_saver.
4616 (finish_forward): Call dummy_frame_context_saver_setup.
4617 * inferior.h (struct dummy_frame_context_saver): New declaration.
4618 (get_return_value): Add parameter ctx_saver.
4619 * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update
4620 get_return_value caller.
4621
10989690
JK
46222015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4623
4624 * dummy-frame.c (struct dummy_frame_dtor_list): New.
4625 (struct dummy_frame): Replace dtor and dtor_data by dtor_list.
4626 (remove_dummy_frame): Process dtor_list.
4627 (pop_dummy_frame): Process dtor_list.
4628 (register_dummy_frame_dtor): Maintain dtor_list.
4629 (find_dummy_frame_dtor): Handle dtor_list.
4630 * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor):
4631 Update comments.
4632
5e970501
JK
46332015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4634
4635 * compile/compile-object-run.c (do_module_cleanup): Add parameter
4636 registers_valid.
4637 (compile_object_run): Update do_module_cleanup caller.
4638 * dummy-frame.c: Include infcall.h.
4639 (struct dummy_frame): Update dtor comment.
4640 (remove_dummy_frame): Call dtor.
4641 (pop_dummy_frame): Update dtor caller.
4642 * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter
4643 registers_valid.
4644
1c4eb778
JB
46452015-05-13 Joel Brobecker <brobecker@adacore.com>
4646
4647 GDB 7.9.1 released.
4648
f5f85ab9
JB
46492015-05-13 Joel Brobecker <brobecker@adacore.com>
4650
4651 * NEWS: Create "Changes in GDB 7.9.1" section. Move news about
4652 Xmethods now being able to specify a result type to that new
4653 sectioin.
4654
242cd84c
PP
46552015-05-13 Patrick Palka <patrick@parcs.ath.cx>
4656
4657 * tui/tui-win.c (tui_async_resize_screen): Clear win_resized
4658 first before resizing the window.
e3555239 4659 * tui/tui.c (tui_enable): Likewise.
242cd84c
PP
4660
46612015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
558e5469
JK
4662
4663 * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor.
4664 * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment.
4665 * infcall.c (call_function_by_hand_dummy): Use proper typedef for
4666 dummy_dtor parameter.
4667 * infcall.h: Include dummy-frame.h.
4668 (call_function_by_hand_dummy_dtor_ftype): Remove.
4669 (call_function_by_hand_dummy): Use proper typedef for dummy_dtor
4670 parameter.
4671
ebfd00d2
PP
46722015-05-13 Patrick Palka <patrick@parcs.ath.cx>
4673
4674 PR gdb/17820
4675 * top.c (history_size_setshow_var): Change type to signed.
4676 Initialize to -2. Update documentation.
4677 (set_readline_history_size): Define.
4678 (set_history_size_command): Use it. Remove logic for handling
4679 out-of-range sizes.
4680 (init_history): Use set_readline_history_size(). Test for a
4681 value of -2 instead of 0 when determining whether to set a
4682 default history size.
4683 (init_main): Decode the argument of the "size" command as a
4684 zuinteger_unlimited.
4685
83769d0b
DE
46862015-05-12 Doug Evans <dje@google.com>
4687
4688 * dwarf2read.c (struct file_entry): Tweak comments.
4689 (get_debug_line_section): Tweak comments.
4690
0d71eef5
DB
46912015-05-12 Don Breazeal <donb@codesourcery.com>
4692
4693 * NEWS: Announce fork support in the RSP and support
4694 for fork debugging in extended mode.
4695
cbb8991c
DB
46962015-05-12 Don Breazeal <donb@codesourcery.com>
4697
4698 * remote.c (remote_insert_fork_catchpoint): New function.
4699 (remote_remove_fork_catchpoint): New function.
4700 (remote_insert_vfork_catchpoint): New function.
4701 (remote_remove_vfork_catchpoint): New function.
4702 (pending_fork_parent_callback): New function.
4703 (remove_new_fork_child): New function.
4704 (remote_update_thread_list): Call remote_notif_get_pending_events
4705 and remove_new_fork_child.
4706 (extended_remote_kill): Kill fork child when killing the
4707 parent before follow_fork completes.
4708 (init_extended_remote_ops): Initialize target vector with
4709 new fork catchpoint functions.
4710
c269dbdb
DB
47112015-05-12 Don Breazeal <donb@codesourcery.com>
4712
4713 * remote.c (remove_vfork_event_p): New function.
4714 (remote_follow_fork): Add vfork event type to event checking.
4715 (remote_parse_stop_reply): New stop reasons "vfork" and
4716 "vforkdone" for RSP 'T' Stop Reply Packet.
4717
de0d863e
DB
47182015-05-12 Don Breazeal <donb@codesourcery.com>
4719
4720 * linux-nat.c (linux_nat_ptrace_options): New function.
4721 (linux_init_ptrace, wait_lwp, linux_nat_filter_event):
4722 Call linux_nat_ptrace_options and use different argument to
4723 linux_enable_event_reporting.
4724 (_initialize_linux_nat): Delete call to
4725 linux_ptrace_set_additional_flags.
c8f6c93c 4726 * nat/linux-ptrace.c (current_ptrace_options): Rename to
de0d863e
DB
4727 supported_ptrace_options.
4728 (additional_flags): Delete variable.
4729 (linux_check_ptrace_features): Use supported_ptrace_options.
4730 (linux_test_for_tracesysgood, linux_test_for_tracefork):
4731 Likewise, and remove additional_flags check.
4732 (linux_enable_event_reporting): Change 'attached' argument to
4733 'options'. Use supported_ptrace_options.
c8f6c93c 4734 (ptrace_supports_feature): Change comment. Use
de0d863e
DB
4735 supported_ptrace_options.
4736 (linux_ptrace_set_additional_flags): Delete function.
4737 * nat/linux-ptrace.h (linux_ptrace_set_additional_flags):
4738 Delete function prototype.
4739 * remote.c (remote_fork_event_p): New function.
4740 (remote_detach_pid): New function.
4741 (remote_detach_1): Call remote_detach_pid, don't mourn inferior
4742 if doing detach-on-fork.
4743 (remote_follow_fork): New function.
4744 (remote_parse_stop_reply): Handle new "T" stop reason "fork".
4745 (remote_pid_to_str): Print "process" strings for pid/0/0 ptids.
4746 (init_extended_remote_ops): Initialize to_follow_fork.
4747
89245bc0
DB
47482015-05-12 Don Breazeal <donb@codesourcery.com>
4749
4750 * nat/linux-ptrace.c (linux_check_ptrace_features): Change
4751 from static to extern.
4752 * nat/linux-ptrace.h (linux_check_ptrace_features): Declare.
4753 * remote.c (anonymous enum): <PACKET_fork_event_feature,
4754 * PACKET_vfork_event_feature>: New enumeration constants.
4755 (remote_protocol_features): Add table entries for new packets.
4756 (remote_query_supported): Add new feature queries to qSupported
4757 packet.
4758
835205d0
GB
47592015-05-12 Gary Benson <gbenson@redhat.com>
4760
4761 * remote.c (remote_add_inferior): Call exec_file_locate_attach
4762 for fake PIDs as well as real ones.
4763 (remote_pid_to_exec_file): Send empty annex if PID is fake.
4764
4c082a81
SC
47652015-05-09 Siva Chandra Reddy <sivachandra@google.com>
4766
4767 * NEWS (Python Scripting): Mention the new gdb.Value methods.
4768 * python/py-value.c (valpy_reference_value): New function.
4769 (valpy_const_value): Likewise.
4770 (value_object_methods): Add new methods.
4771 * value.c (make_cv_value): New function.
4772 * value.h (make_cv_value): Declare.
4773
afa6c9ab
SL
47742015-05-08 Yao Qi <yao@codesourcery.com>
4775 Sandra Loosemore <sandra@codesourcery.com>
4776
4777 * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check
4778 to 'lh->include_dirs' before accessing to it.
4779 (psymtab_include_file_name): Likewise.
4780 (dwarf_decode_lines_1): Likewise.
4781 (dwarf_decode_lines): Likewise.
4782 (file_file_name): Likewise.
4783
35d54293
SL
47842015-05-08 Sandra Loosemore <sandra@codesourcery.com>
4785
4786 * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define.
4787 (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define.
4788 (nios2_linux_rt_sigreturn_init): Adjust base address of
4789 register save area.
4790
b73c49b7
SL
47912015-05-08 Sandra Loosemore <sandra@codesourcery.com>
4792
4793 * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using
4794 "trap 31" as the breakpoint instruction on all targets.
4795
dd9f02a0
JK
47962015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4797
4798 * infcmd.c (print_return_value): Remove unused declaration.
4799
6ad395a7
JB
48002015-05-08 Joel Brobecker <brobecker@adacore.com>
4801
4802 * dwarf2read.c (attr_to_dynamic_prop)
4803 <DW_AT_data_member_location>: Use read_type_die isntead of
4804 get_die_type.
4805
8344af1e
JB
48062015-05-08 Joel Brobecker <brobecker@adacore.com>
4807
4808 * ada-lang.c (ada_convert_actual): Add handling of formals
4809 passed inside an aligner type.
4810
80b0912b
JB
48112015-05-08 Joel Brobecker <brobecker@adacore.com>
4812
4813 * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries.
4814
df2eb078
SC
48152015-05-08 Siva Chandra Reddy <sivachandra@google.com>
4816
4817 PR python/18291
4818 * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo.
4819 Print xmethod matcher status.
4820
2492f0d0
AA
48212015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com>
4822
4823 * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA
4824 register in the regcache when treating the PSWM register, and vice
4825 versa.
4826
1c56a84d
GB
48272015-05-07 Gary Benson <gbenson@redhat.com>
4828
4829 * linux-thread-db.c (struct thread_db_info)
4830 <td_ta_map_id2thr_p>: Remove field.
4831 (try_thread_db_load_1): Remove initialization for the above.
4832
74850322
GB
48332015-05-07 Gary Benson <gbenson@redhat.com>
4834
4835 * linux-thread-db.c (struct thread_db_info)
4836 <td_thr_validate_p>: Remove field.
4837 (try_thread_db_load_1): Remove initialization for the above.
4838
e26efa40
JK
48392015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4840
4841 * compile/compile-object-load.c (compile_object_load): Support
4842 mst_text_gnu_ifunc.
4843
851c9091
JK
48442015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4845
4846 * compile/compile.c (compile_to_object): Make the cmd_string parameter
4847 const. Use new variables for the const compatibility.
4848 (eval_compile_command): Make the cmd_string parameter const.
4849 * compile/compile.h (eval_compile_command): Make the cmd_string
4850 parameter const.
4851
f218b647
JB
48522015-05-06 Joel Brobecker <brobecker@adacore.com>
4853
4854 * defs.h (deprecated_init_ui_hook): Delete. Remove associated
4855 comment.
4856 * top.c (deprecated_init_ui_hook): Delete.
4857 (gdb_init): Remove handling of deprecated_init_ui_hook.
4858 * interps.c (clear_interpreter_hooks): Remove handling of
4859 deprecated_init_ui_hook.
4860 * main.c (captured_main): Update comment.
4861
b30a0bc3
JB
48622015-05-06 Joel Brobecker <brobecker@adacore.com>
4863
4864 * solib.c (_initialize_solib): Add "info dll" alias creation.
4865 * windows-nat.c (set_windows_aliases): Delete.
4866 (_initialize_windows_nat): Remove deprecated_init_ui_hook
4867 assignment.
4868 * NEWS: Add news entry about "info dll" now being available
4869 on all platforms.
4870
7c512744
JB
48712015-05-05 Joel Brobecker <brobecker@adacore.com>
4872
4873 * ada-lang.c (value_assign_to_component): Reformat and improve
4874 documentation. Remove all trailing spaces.
4875
0fa7fe50
JB
48762015-05-05 Joel Brobecker <brobecker@adacore.com>
4877
4878 * inline-frame.c (inline_frame_sniffer, skip_inline_frames):
4879 Stop counting inlined frames as soon as an out-of-line function
4880 is found.
4881
3ea89b92
PMR
48822014-05-05 Pierre-Marie de Rodat <derodat@adacore.com>
4883
4884 * dwarf2read.c (inherit_abstract_dies): Skip
4885 DW_TAG_GNU_call_site dies while inheriting children of an
4886 abstract DIE into a scope.
4887 (read_lexical_block_scope): Inherit abstract DIE's for
4888 lexical scopes.
4889
2478d075
JB
48902015-05-05 Joel Brobecker <brobecker@adacore.com>
4891
4892 * ada-valprint.c (val_print_packed_array_elements): Delete
4893 variable "len". Add a type-length check when comparing two
4894 consecutive elements of the array. Use the element's actual
4895 length in call to value_contents_eq.
4896 * ada-lang.c (ada_value_primitive_packed_val): Always return
4897 a value whose type has been resolved.
4898
fc958966
JB
48992015-05-05 Joel Brobecker <brobecker@adacore.com>
4900
4901 * ada-lang.c (ada_value_primitive_packed_val): Recompute
4902 BIT_SIZE and LEN if the size of the resolved type is smaller
4903 than BIT_SIZE * HOST_CHAR_BIT.
4904
ca34b84f
JB
49052015-05-05 Joel Brobecker <brobecker@adacore.com>
4906
4907 * ada-lang.c (ada_value_primitive_packed_val): Use a more
4908 correct address in call to value_at. Adjust call to
4909 value_address accordingly.
4910
62c67f3c
JB
49112015-05-05 Joel Brobecker <brobecker@adacore.com>
4912
4913 * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying
4914 to print it.
4915
c3345124
JB
49162015-05-05 Joel Brobecker <brobecker@adacore.com>
4917
4918 * dwarf2loc.h (struct property_addr_info): Add "valaddr" field.
4919 * dwarf2loc.c (dwarf2_evaluate_property): Add handling of
4920 pinfo->valaddr.
4921 * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter.
4922 * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr.
4923 (resolve_dynamic_type_internal): Set pinfo.valaddr.
4924 Add handling of addr_stack->valaddr.
4925 (resolve_dynamic_type): Add "valaddr" parameter.
4926 Set pinfo.valaddr field.
4927 * ada-lang.c (ada_discrete_type_high_bound): Update call to
4928 resolve_dynamic_type.
4929 (ada_discrete_type_low_bound): Likewise.
4930 * findvar.c (default_read_var_value): Likewise.
4931 * value.c (value_from_contents_and_address): Likewise.
4932
75ea5859
JB
49332015-05-05 Joel Brobecker <brobecker@adacore.com>
4934
4935 * gdbtypes.c (resolve_dynamic_array): Use
4936 create_array_type_with_stride instead of create_array_type.
4937
0952813b
DD
49382015-04-30 DJ Delorie <dj@redhat.com>
4939
4940 * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to
4941 rl78_decode_opcode
4942
2ce1cdbf
DE
49432015-04-29 Doug Evans <dje@google.com>
4944
4945 PR python/18285
4946 * NEWS: Document new gdb.XMethodWorker.get_result_type method.
4947 * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle
4948 EVAL_AVOID_SIDE_EFFECTS for xmethods.
4949 * extension-priv.h (struct extension_language_ops)
4950 <get_xmethod_result_type>: New member.
4951 * extension.c (get_xmethod_result_type): New function.
4952 * extension.h (get_xmethod_result_type): Declare.
4953 * python/py-xmethods.c (get_result_type_method_name): New static
4954 global.
4955 (py_get_result_type_method_name): Ditto.
4956 (gdbpy_get_xmethod_result_type): New function.
4957 (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name.
4958 * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare.
4959 * python/python.c (python_extension_ops): Add
4960 gdbpy_get_xmethod_result_type.
4961 * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type.
4962 * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for
4963 xmethods.
4964 (value_x_unop): Ditto.
4965 * value.c (result_type_of_xmethod): New function.
4966 * value.h (result_type_of_xmethod): Declare.
4967
998d2a3e
GB
49682015-04-29 Gary Benson <gbenson@redhat.com>
4969
4970 * solib.c (solib_find_1): Allow fd argument to be NULL.
4971 (exec_file_find): Update comment.
4972 (solib_find): Likewise.
4973 * exec.c (exec_file_locate_attach): Use NULL as fd
4974 argument to exec_file_find to avoid having to close
4975 the opened file.
4976 * infrun.c (follow_exec): Likewise.
4977
34f5f757
DE
49782015-04-28 Doug Evans <dje@google.com>
4979
4980 PR python/18299
4981 * python/lib/gdb/printing.py (register_pretty_printer): Handle
4982 name or __name__ attributes. Handle gdb module as first argument.
4983
69b4374a
DE
49842015-04-28 Doug Evans <dje@google.com>
4985
4986 PR python/18089
4987 * python/py-prettyprint.c (print_children): Verify result of children
4988 iterator. Provide better error message.
4989 * python/python-internal..h (gdbpy_print_python_errors_p): Declare.
4990 * python/python.c (gdbpy_print_python_errors_p): New function.
4991
5e7cf078
DE
49922015-04-28 Doug Evans <dje@google.com>
4993
4994 * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment.
4995
59fb7612
SS
49962015-04-28 Sasha Smundak <asmundak@google.com>
4997
4998 * NEWS: Mention gdb.Type.optimized_out method.
4999 * python/py-type.c (typy_optimized_out): New function.
5000
cea6e4f1
JB
50012015-04-28 John Baldwin <jhb@FreeBSD.org>
5002
5003 * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>.
5004
24b73f8e
PP
50052015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5006
5007 * utils.c (init_page_info): Set rl_catch_sigwinch to zero.
5008 (initialize_utils): Move call of init_page_info() to ...
5009 * top.c (gdb_init): ... here.
5010
a88d0bb3
PP
50112015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5012
5013 * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment.
5014 (tui_sigwinch_handler): Still update our idea of
5015 the terminal's width and height even when TUI is not active.
5016
d6e5e7f7
PP
50172015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5018
5019 * utils.h (set_screen_width_and_height): Declare.
5020 * utils.c (set_screen_width_and_height): Define.
5021 * tui/tui-win.c (tui_update_gdb_sizes): Use it.
5022
ff862be4
GB
50232015-04-28 Gary Benson <gbenson@redhat.com>
5024
5025 * infrun.c (solist.h): New include.
5026 (follow_exec): Use exec_file_find to prefix execd_pathname
5027 with gdb_sysroot.
5028
2eb639cb
PP
50292015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5030
5031 * tui/tui-source.c (tui_set_source_content): Avoid calling
5032 strcpy() when offset is 0.
5033
97206799
PP
50342015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5035
5036 PR gdb/18155
5037 * tui/tui-data.c (tui_free_window): Don't free the locator
5038 window when passed an SRC_WIN or a DISASSEM_WIN.
5039
63ed8182
PP
50402015-04-28 Patrick Palka <patrick@parcs.ath.cx>
5041
5042 * tui/tui-data.h (struct tui_win_element): Forward-declare.
5043 (tui_win_content): Move declaration.
5044 (struct tui_gen_win_info): Give 'content' field the
5045 type tui_win_content.
5046 * tui/tui-data.c (init_content_element): Remove redundant and
5047 erroneous casts.
5048 (tui_add_content_elements): Remove erroneous cast.
5049 * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant
5050 casts.
5051 (tui_get_begin_asm_address): Likewise.
5052 * tui/tui-regs.c (tui_show_registers): Likewise.
5053 (tui_show_register_group): Likewise.
5054 (tui_display_registers_from): Likewise.
5055 (tui_check_register_values): Likewise.
5056 * tui/tui-source.c (tui_set_source_content): Likewise.
5057 (tui_set_source_content_nil): Likewise.
5058 (tui_source_is_displayed): Likewise.
5059 * tui/tui-stack.c (tui_show_locator_content): Likewise.
5060 (tui_set_locator_fullname): Likewise.
5061 (tui_set_locator_info): Likewise.
5062 (tui_show_frame_info): Likewise.
5063 * tui/tui-winsource.c (tui_clear_source_content): Likewise.
5064 (tui_show_source_line): Likewise.
5065 (tui_horizontal_source_scroll): Likewise.
5066 (tui_update_breakpoint_info): Likewise.
5067 (tui_set_exec_info_content): Likewise.
5068 (tui_show_exec_info_content): Likewise.
5069 (tui_alloc_source_buffer): Likewise.
5070 (tui_line_is_displayed): Likewise.
5071 (tui_addr_is_displayed): Likewise.
5072
d2b41ca0
JB
50732015-04-27 John Baldwin <jhb@FreeBSD.org>
5074
5075 * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD
5076 event if PL_FLAG_EXEC is set.
5077 [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function.
5078 [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function.
5079 (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set
5080 "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint".
5081 Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint".
5082
e58e05d6
JB
50832015-04-27 John Baldwin <jhb@FreeBSD.org>
5084
5085 * fbsd-nat.c: [PT_LWPINFO] New variable super_wait.
5086 [TDP_RFPPWAIT] New variable fbsd_pending_children.
5087 [TDP_RFPPWAIT] (fbsd_remember_child): New function.
5088 [TDP_RFPPWAIT] (fbsd_is_child_pending): New function.
5089 [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function.
5090 [PT_LWPINFO] (fbsd_wait): New function.
5091 [TDP_RFPPWAIT] (fbsd_follow_fork): New function.
5092 [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function.
5093 [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function.
5094 [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function.
5095 [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function.
5096 [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function.
5097 [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function.
5098 [TDP_RFPPWAIT] (fbsd_post_attach): New function.
5099 (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to
5100 "fbsd_wait".
5101 [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork".
5102 Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint".
5103 Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint".
5104 Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint".
5105 Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint".
5106 Set "to_post_startup_inferior" to "fbsd_post_startup_inferior".
5107 Set "to_post_attach" to "fbsd_post_attach".
5108
8f60fe01
JB
51092015-04-27 John Baldwin <jhb@FreeBSD.org>
5110
5111 * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static.
5112 (fbsd_find_memory_regions): Mark static.
5113 (fbsd_nat_add_target): New function.
5114 * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for
5115 fbsd_pid_to_exec_file and fbsd_find_memory_regions.
5116 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target.
5117 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise.
5118 * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise.
5119 * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise.
5120
5fbae7d1
GB
51212015-04-27 Gary Benson <gbenson@redhat.com>
5122
5123 * objfiles.c (allocate_objfile): Do not attempt to expand name
5124 if name is a "target:" filename.
5125 * auto-load.c (load_auto_scripts_for_objfile): Do not attempt
5126 to load auto-load scripts for objfiles with "target:" filenames.
5127
417c80f9
AA
51282015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
5129
5130 * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h".
5131 (enum s390_vector_abi_kind): New enum.
5132 (struct gdbarch_tdep)<vector_abi>: New field.
5133 (s390_effective_inner_type): Add parameter min_size. Stop
5134 unwrapping if the inner type is smaller than min_size.
5135 (s390_function_arg_float): Adjust call to
5136 s390_effective_inner_type.
5137 (s390_function_arg_vector): New function.
5138 (s390_function_arg_integer): Adjust comment.
5139 (struct s390_arg_state)<vr>: New field.
5140 (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector
5141 arguments according to vector ABI when appropriate.
5142 (s390_push_dummy_call): Initialize the argument state's field
5143 'vr'. Adjust calls to s390_handle_arg.
5144 (s390_register_return_value): Handle vector return values.
5145 (s390_return_value): Apply the "register" return value convention
5146 to a vector when appropriate.
5147 (s390_gdbarch_init): Initialize tdep->vector_abi.
5148 * NEWS: Announce S390 vector ABI support.
5149
4e65a17e
AA
51502015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
5151
5152 * s390-linux-tdep.c (s390_return_value_convention): Remove
5153 function. Inline its logic...
5154 (s390_return_value): ...here. Instead, move the handling of the
5155 "register" return value convention...
5156 (s390_register_return_value): ...here. New function.
5157
80f75320
AA
51582015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
5159
5160 * s390-linux-tdep.c
5161 (is_float_singleton): Remove function. Move the "singleton" part
5162 of the logic...
5163 (s390_effective_inner_type): ...here. New function.
5164 (is_float_like): Remove function. Inline its logic...
5165 (s390_function_arg_float): ...here.
5166 (is_pointer_like, is_integer_like, is_struct_like): Remove
5167 functions. Inline their logic...
5168 (s390_function_arg_integer): ...here.
5169 (s390_function_arg_pass_by_reference): Remove function.
5170 (extend_simple_arg): Remove function.
5171 (alignment_of): Remove function.
5172 (struct s390_arg_state): New structure.
5173 (s390_handle_arg): New function.
5174 (s390_push_dummy_call): Move parameter placement logic to the new
5175 function s390_handle_arg. Call it for calculating the stack area
5176 sizes first, and again for actually writing the parameters.
5177
6dbc9c04
AA
51782015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
5179
5180 * s390-linux-tdep.c (is_power_of_two): Add comment. Return
5181 false if the argument is zero.
5182
9e195661
PMR
51832015-04-27 Pierre-Marie de Rodat <derodat@adacore.com>
5184
5185 * ada-lang.c (template_to_static_fixed_type): Return input type
5186 when it is already fixed. Cache the input type itself when not
5187 creating a static fixed copy. Make it explicit that we never
5188 molestate the input type.
5189 * gdbtypes.c (resolve_dynamic_struct): Reset the
5190 TYPE_TARGET_TYPE field for resolved copies.
5191
460efde1
JB
51922015-04-27 Joel Brobecker <brobecker@adacore.com>
5193
5194 * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef.
5195 (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef.
5196 (template_to_static_fixed_type): Call ada_check_typedef only
5197 when necessary.
5198
6faec16b
AB
51992015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
5200
5201 * cli/cli-dump.c (srec_dump_command): Add internationalization
5202 mark ups.
5203 (ihex_dump_command): Likewise.
5204 (tekhex_dump_command): Likewise.
5205 (binary_dump_command): Likewise.
5206 (binary_append_command): Likewise.
5207
cf75d6c3
AB
52082015-04-24 Andrew Burgess <andrew.burgess@embecosm.com>
5209
5210 * cli/cli-dump.c (verilog_cmdlist): New variable.
5211 (dump_verilog_memory): New function.
5212 (dump_verilog_value): New function.
5213 (verilog_dump_command): New function.
5214 (_initialize_cli_dump): Add new commands to support verilog dump
5215 format.
5216 * NEWS: Add entry for "dump verilog".
5217
8cd00c59
PMR
52182015-04-24 Pierre-Marie de Rodat <derodat@adacore.com>
5219
5220 * gdbtypes.c (print_gnat_stuff): Do not recurse on the
5221 descriptive type when there is none.
5222
8900d71e
PP
52232015-04-23 Patrick Palka <patrick@parcs.ath.cx>
5224
5225 * tui/tui-win.c (tui_async_resize_screen): Call
5226 rl_resize_terminal().
5227
f16eab5f
JT
52282015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
5229
5230 * windows-nat.c (handle_output_debug_string): Don't change
5231 current_event.dwThreadId.
5232 (get_windows_debug_event): Use thread_id, rather than relying on
5233 current_event.dwThreadId being changed.
5234
68ffc902
JT
52352015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
5236
5237 * windows-nat.c (windows_continue): Report an error if
5238 ContinueDebugEvent() fails.
5239
23942819
JT
52402015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
5241
5242 * windows-nat.c (windows_resume): Fix misspelling in debug output.
5243
e6ad66bd
JT
52442015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
5245
5246 * windows-nat.c (get_windows_debug_event): Replace retval with
5247 thread_id throughout. Update stale comment.
5248
776704b9
JT
52492015-04-16 Jon Turney <jon.turney@dronecode.org.uk>
5250
5251 * windows-nat.c (get_windows_debug_event): Don't use ternary
5252 conditional operator.
5253
8aae4344
PM
52542015-04-21 Pierre Muller <muller@sourceware.org>
5255
5256 PR pascal/17815
5257 p-exp.y (yylex): Reorganize code to return the matched pattern
5258 for a field of this.
5259
819843c7
GB
52602015-04-21 Gary Benson <gbenson@redhat.com>
5261
5262 * common/fileio.h (fileio_to_host_openflags): New declaration.
5263 * common/fileio.c (fcntl.h): New include.
5264 (fileio_to_host_openflags): New function, factored out from...
5265 * inf-child.c (inf_child_fileio_open_flags_to_host): ...here.
5266 Single use updated.
5267
0bca7f99
KB
52682015-04-21 Kevin Buettner <kevinb@redhat.com>
5269
5270 * rl78-tdep.c (RL78_SP_ADDR): Define.
5271 (opc_reg_to_gdb_regnum): New static function.
5272 (rl78_analyze_prologue): Recognize instructions forming slightly
5273 more interesting prologues.
5274
e771e4be
PMR
52752015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
5276
5277 Revert:
5278 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
5279 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
5280 TYPE_CODE_REF types so that they are not considered as dynamic
5281 depending on the referenced type.
5282 (resolve_dynamic_type_internal): Likewise.
5283
ee715b5a
PMR
52842015-04-20 Pierre-Marie de Rodat <derodat@adacore.com>
5285
5286 Revert:
5287 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
5288 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
5289 "top_level" parameter.
5290 (resolve_dynamic_type_internal): Remove the unused "top_level"
5291 parameter. Update call to is_dynamic_type_internal.
5292 (is_dynamic_type): Update call to is_dynamic_type_internal.
5293 (resolve_dynamic_range): Update call to
5294 resolve_dynamic_type_internal.
5295 (resolve_dynamic_union): Likewise.
5296 (resolve_dynamic_struct): Likewise.
5297 (resolve_dynamic_type): Likewise.
5298
e31d7699
GKB
52992015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be>
5300
5301 * breakpoint.c (update_dprintf_command_list): Remove duplicated
5302 xmalloc.
5303
d214e5e7
TS
53042015-04-20 Thomas Schwinge <thomas@codesourcery.com>
5305
110f9112
TS
5306 * reply_mig_hack.awk: Robustify parsing.
5307
d214e5e7
TS
5308 * reply_mig_hack.awk: Don't bother to declare an intermediate
5309 function pointer variable.
5310
8f61baf8
DE
53112015-04-17 Doug Evans <dje@google.com>
5312
5313 * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement"
5314 to "exec_displacement" to avoid confusion with inner use of the name.
5315
dbbf180a
YQ
53162015-04-17 Pedro Alves <palves@redhat.com>
5317
5318 * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero
5319 if HW point of TYPE isn't supported.
5320
059790a0
YQ
53212015-04-17 Yao Qi <yao.qi@linaro.org>
5322 Pedro Alves <palves@redhat.com>
5323
5324 * target.h (target_can_use_hardware_watchpoint): Update comments.
5325 Remove trailing ";".
5326
1b6e6f5c
GB
53272015-04-17 Gary Benson <gbenson@redhat.com>
5328
5329 * remote.c (remote_add_inferior): New argument try_open_exec.
5330 If nonzero, attempt to open the inferior's executable file as
5331 the main executable if no main executable is open already.
5332 All callers updated.
5333 * NEWS: Mention that GDB now supports automatic location and
5334 retrieval of executable + files from remote targets.
5335
c78fa86a
GB
53362015-04-17 Gary Benson <gbenson@redhat.com>
5337
5338 * target.h (TARGET_OBJECT_EXEC_FILE): New enum value.
5339 * remote.c (PACKET_qXfer_exec_file): Likewise.
5340 (remote_protocol_features): Register the
5341 "qXfer:exec-file:read" feature.
5342 (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE.
5343 (remote_pid_to_exec_file): New function.
5344 (init_remote_ops): Initialize to_pid_to_exec_file.
5345 (_initialize_remote): Register new "set/show remote
5346 pid-to-exec-file-packet" command.
5347 * NEWS: Announce new qXfer:exec-file:read packet.
5348
e0d86d2c
GB
53492015-04-17 Gary Benson <gbenson@redhat.com>
5350
5351 * nat/linux-procfs.h (linux_proc_pid_to_exec_file):
5352 New declaration.
5353 * nat/linux-procfs.c (linux_proc_pid_to_exec_file):
5354 New function, factored out from...
5355 * linux-nat.c (linux_child_pid_to_exec_file): ...here.
5356
a9a5a3d1
GB
53572015-04-17 Gary Benson <gbenson@redhat.com>
5358
5359 * exec.c (solist.h): New include.
5360 (exec_file_locate_attach): Prefix absolute executable
5361 paths with gdb_sysroot if set.
5362 * NEWS: Mention that executable paths may be prepended
5363 with sysroot.
5364
af1900b0
GB
53652015-04-17 Gary Benson <gbenson@redhat.com>
5366
5367 * solist.h (exec_file_find): New declaration.
5368 * solib.c (solib_find_1): New function, factored out from...
5369 (solib_find): ...here.
5370 (exec_file_find): New function.
5371
a10de604
GB
53722015-04-17 Gary Benson <gbenson@redhat.com>
5373
5374 * gdbcore.h (exec_file_locate_attach): New declaration.
5375 * exec.c (exec_file_locate_attach): New function, factored
5376 out from...
5377 * infcmd.c (attach_command_post_wait): ...here.
5378
92209ddf
MF
53792015-04-17 Mike Frysinger <vapier@gentoo.org>
5380
5381 * MAINTAINERS: Add myself for Blackfin/write-after-approval.
5382
8550d3b3
YQ
53832015-04-16 Yao Qi <yao.qi@linaro.org>
5384
5385 * infrun.c (maybe_software_singlestep): Declare.
5386 (displaced_step_fixup): Call maybe_software_singlestep.
5387
30b3dd9d
DE
53882015-04-15 Doug Evans <dje@google.com>
5389
5390 * psymtab.c (psym_expand_symtabs_matching): Add QUIT call.
5391
61d96d7e
DE
53922015-04-15 Doug Evans <dje@google.com>
5393
5394 * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls.
5395
40d2f8d6
SM
53962015-04-15 Simon Marchi <simon.marchi@ericsson.com>
5397
5398 * python/lib/gdb/command/unwinders.py: Add parentheses.
5399
6bbbba9b
YQ
54002015-04-15 Yao Qi <yao.qi@linaro.org>
5401
5402 * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message.
5403
2bb2dcab
YQ
54042015-04-15 Yao Qi <yao.qi@linaro.org>
5405
5406 * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation.
5407
41f071ef
YQ
54082015-04-15 Yao Qi <yao.qi@linaro.org>
5409
5410 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5411 dsc->insn_size instead of 4.
5412
326a5c7e
GB
54132015-04-14 Gary Benson <gbenson@redhat.com>
5414
5415 * jit.c (mem_bfd_iovec_stat): Zero supplied buffer.
5416 * minidebug.c (lzma_stat): Likewise.
5417 * solib-spu.c (spu_bfd_iovec_stat): Likewise.
5418 * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise.
5419
dd177e81
SS
54202015-04-13 Stan Shebs <stanshebs@google.com>
5421
5422 * MAINTAINERS: Update my email address.
5423
97de3545
JB
54242015-04-13 John Baldwin <jhb@FreeBSD.org>
5425
5426 * amd64-tdep.c (amd64_target_description): New function.
5427 * amd64-tdep.h: Export amd64_target_description and tdesc_amd64.
5428 * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len.
5429 (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
5430 x86 extended save area.
5431 (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
5432 * amd64bsd-nat.h: Export amd64bsd_xsave_len.
5433 * amd64fbsd-nat.c (amd64fbsd_read_description): New function.
5434 (_initialize_amd64fbsd_nat): Set "to_read_description" to
5435 "amd64fbsd_read_description".
5436 * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function.
5437 (amd64fbsd_supply_xstateregset): New function.
5438 (amd64fbsd_collect_xstateregset): New function.
5439 Add "amd64fbsd_xstateregset".
5440 (amd64fbsd_iterate_over_regset_sections): New function.
5441 (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to
5442 "I386_FBSD_XSAVE_XCR0_OFFSET".
5443 Add "iterate_over_regset_sections" gdbarch method.
5444 Add "core_read_description" gdbarch method.
5445 * i386-tdep.c (i386_target_description): New function.
5446 * i386-tdep.h: Export i386_target_description and tdesc_i386.
5447 * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len.
5448 (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle
5449 x86 extended save area.
5450 (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise.
5451 * i386bsd-nat.h: Export i386bsd_xsave_len.
5452 * i386fbsd-nat.c (i386fbsd_read_description): New function.
5453 (_initialize_i386fbsd_nat): Set "to_read_description" to
5454 "i386fbsd_read_description".
5455 * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function.
5456 (i386fbsd_core_read_description): New function.
5457 (i386fbsd_supply_xstateregset): New function.
5458 (i386fbsd_collect_xstateregset): New function.
5459 Add "i386fbsd_xstateregset".
5460 (i386fbsd_iterate_over_regset_sections): New function.
5461 (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to
5462 "I386_FBSD_XSAVE_XCR0_OFFSET".
5463 Add "iterate_over_regset_sections" gdbarch method.
5464 Add "core_read_description" gdbarch method.
5465 * i386fbsd-tdep.h: New file.
5466
4f45d445
JK
54672015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5468
5469 * NEWS (Changes since GDB 7.9): Add removed -xdb.
5470 * breakpoint.c (command_line_is_silent): Remove xdb_commands
5471 conditional.
5472 (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba
5473 and lb.
5474 * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and
5475 va.
5476 * cli/cli-decode.c (find_command_name_length): Remove xdb_commands
5477 conditional.
5478 * defs.h (xdb_commands): Remove declaration.
5479 * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc.
5480 * guile/scm-cmd.c (command_classes): Remove xdb from comment.
5481 * infcmd.c (run_no_args_command, go_command): Remove.
5482 (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr.
5483 * infrun.c (xdb_handle_command): Remove.
5484 (_initialize_infrun): Remove xdb_commands for lz and z.
5485 * main.c (xdb_commands): Remove variable.
5486 (captured_main): Remove "xdb" from long_options.
5487 (print_gdb_help): Remove --xdb from help.
5488 * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment.
5489 * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?.
5490 * stack.c (backtrace_full_command, args_plus_locals_info)
5491 (current_frame_command): Remove.
5492 (_initialize_stack): Remove xdb_commands for t, T and l.
5493 * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg.
5494 * thread.c (_initialize_thread): Remove xdb_commands condition.
5495 * tui/tui-layout.c (tui_toggle_layout_command)
5496 (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove.
5497 (_initialize_tui_layout): Remove xdb_commands for td and ts.
5498 * tui/tui-regs.c (tui_scroll_regs_forward_command)
5499 (tui_scroll_regs_backward_command): Remove.
5500 (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r.
5501 * tui/tui-win.c (tui_xdb_set_win_height_command): Remove.
5502 (_initialize_tui_win): Remove xdb_commands for U and w.
5503 * utils.c (pagination_on_command, pagination_off_command): Remove.
5504 (initialize_utils): Remove xdb_commands for am and sm.
5505
cb71640d
PA
55062015-04-10 Pedro Alves <palves@redhat.com>
5507
5508 * infrun.c (displaced_step_fixup): Switch to the event ptid
5509 earlier. If the thread stopped for a watchpoint and the
5510 target/arch has non-continuable watchpoints, cancel the displaced
5511 step.
5512 (resume): Don't start a displaced step if in-line step-over info
5513 is valid.
5514
8f572e5c
PA
55152015-04-10 Pedro Alves <palves@redhat.com>
5516
5517 * infrun.c (displaced_step_in_progress): New function.
5518 (do_target_resume): Advise target to report all signals if
5519 displaced stepping.
5520
8d707a12
PA
55212015-04-10 Pedro Alves <palves@redhat.com>
5522
5523 PR gdb/18216
5524 * infrun.c (process_event_stop_test): Don't assume a step-resume
5525 is set if tp->stepped_breakpoint is true.
5526
ef713951
YQ
55272015-04-10 Yao Qi <yao.qi@linaro.org>
5528
5529 * arm-tdep.c (install_alu_reg): Update comment.
5530 (thumb_copy_alu_reg): Remove local variable rn. Update
5531 debugging message. Use r2 instead of r1 in the modified
5532 instruction.
5533
906d60cf
PA
55342015-04-10 Pedro Alves <palves@redhat.com>
5535
5536 PR gdb/13858
5537 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install
5538 linux_displaced_step_location as gdbarch_displaced_step_location
5539 hook.
5540 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
5541 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
5542 * linux-tdep.c (linux_displaced_step_location): New function,
5543 based on ppc_linux_displaced_step_location.
5544 * linux-tdep.h (linux_displaced_step_location): New declaration.
5545 * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete.
5546 (ppc_linux_inferior_created, ppc_linux_displaced_step_location):
5547 Delete.
5548 (ppc_linux_init_abi): Install linux_displaced_step_location as
5549 gdbarch_displaced_step_location hook, even without Cell/B.E..
5550 (_initialize_ppc_linux_tdep): Don't install
5551 ppc_linux_inferior_created as inferior_created observer.
5552 * s390-linux-tdep.c (s390_gdbarch_init): Install
5553 linux_displaced_step_location as gdbarch_displaced_step_location
5554 hook.
5555
7823a941
GB
55562015-04-09 Gary Benson <gbenson@redhat.com>
5557
5558 * common/common-remote-fileio.h: Rename to...
5559 * common/fileio.h: ...this. Update all references.
5560 (remote_fileio_to_fio_error): Rename to...
5561 (host_to_fileio_error): ...this.
5562 (remote_fileio_to_be): Rename to...
5563 (host_to_bigendian): ...this. Update all callers.
5564 (remote_fileio_to_fio_uint): Rename to...
5565 (host_to_fileio_uint): ...this. Update all callers.
5566 (remote_fileio_to_fio_time): Rename to...
5567 (host_to_fileio_time): ...this. Update all callers.
5568 (remote_fileio_to_fio_stat): Rename to...
5569 (host_to_fileio_stat): ...this.
5570 Update all references.
5571 * common/common-remote-fileio.c: Rename to...
5572 * common/fileio.c: ...this. Update all references.
5573 (remote_fileio_to_fio_error): Rename to...
5574 (host_to_fileio_error): ...this. Update all callers.
5575 (remote_fileio_mode_to_target): Rename to...
5576 (fileio_mode_pack): ...this. Update all callers.
5577 (remote_fileio_to_fio_mode): Rename to...
5578 (host_to_fileio_mode): ...this. Update all callers.
5579 (remote_fileio_to_fio_ulong): Rename to...
5580 (host_to_fileio_ulong): ...this. Update all callers.
5581 (remote_fileio_to_fio_stat): Rename to...
5582 (host_to_fileio_stat): ...this. Update all callers.
5583
f2983cc3
AW
55842015-04-09 Andy Wingo <wingo@igalia.com>
5585
5586 * guile/scm-frame.c (gdbscm_frame_read_register): New function.
5587 (frame_functions): Bind gdbscm_frame_read_register to
5588 frame-read-register.
5589 * guile/lib/gdb.scm (frame-read-register): Export.
5590
b88bb450
GB
55912015-04-09 Gary Benson <gbenson@redhat.com>
5592
5593 * common/common-remote-fileio.h (remote_fileio_to_fio_error):
5594 New declaration.
5595 * common/common-remote-fileio.c (remote_fileio_to_fio_error):
5596 New function, factored out the named functions below.
5597 * inf-child.c (gdb/fileio.h): Remove include.
5598 (common-remote-fileio.h): New include.
5599 (inf_child_errno_to_fileio_error): Remove function. Update
5600 all callers to use remote_fileio_to_fio_error.
5601 * remote-fileio.c (remote_fileio_errno_to_target): Likewise.
5602
2f2680f3
AW
56032015-04-09 Andy Wingo <wingo@igalia.com>
5604
5605 * MAINTAINERS (Write After Approval): Add Andy Wingo.
5606
5a2d4533
L
56072015-04-09 H.J. Lu <hongjiu.lu@intel.com>
5608
5609 * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir.
5610 Replace $zlibdir with $ZLIBDIR in LDFLAGS.
5611 * configure: Regenerated.
5612
421693b0
PA
56132015-04-09 Pedro Alves <palves@redhat.com>
5614
5615 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
5616 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
5617 * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
5618 * gnulib/import/Makefile.am: Update.
5619 * gnulib/import/Makefile.in: Update.
5620 * gnulib/import/m4/gnulib-cache.m4: Update.
5621 * gnulib/import/m4/gnulib-comp.m4: Update.
5622 * gnulib/import/m4/strtok_r.m4: New file.
5623 * gnulib/import/strtok_r.c: New file.
5624
f543dc83
PA
56252015-04-09 Pedro Alves <palves@redhat.com>
5626
5627 * gnulib/update-gnulib.sh (aclocal version check): Filter out
5628 "called too early to check prototype".
5629
6d62641c
SDJ
56302015-04-08 Sergio Durigan Junior <sergiodj@redhat.com>
5631
5632 PR python/16699
5633 * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not
5634 use a caching mechanism. Adjust comments and code to reflect
5635 that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'.
5636 (cmdpy_completer_handle_brkchars): Adjust call to
5637 cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'.
5638 (cmdpy_completer): Likewise.
5639
85558555
YQ
56402015-04-08 Yao Qi <yao.qi@linaro.org>
5641
5642 * spu-tdep.c (spu_gdbarch_init): Don't call
5643 set_gdbarch_cannot_step_breakpoint.
5644
d249a14a
SDJ
56452015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
5646
5647 * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
5648
8a06aea7
PA
56492015-04-07 Pedro Alves <palves@redhat.com>
5650
5651 * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
5652 (ALL_THREADS_SAFE): ... this, and don't skip exited threads.
5653 (delete_exited_threads): New declaration.
5654 * infrun.c (follow_exec): Use ALL_THREADS_SAFE.
5655 * linux-nat.c (linux_nat_update_thread_list): New function.
5656 (linux_nat_add_target): Install it.
5657 * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE.
5658 * thread.c (prune_threads): Use ALL_THREADS_SAFE.
5659 (delete_exited_threads): New function.
5660
d9b67d9f
PA
56612015-04-07 Pedro Alves <pedro@codesourcery.com>
5662
5663 * infrun.c (resume) <displaced stepping debug output>: Get the
5664 leader thread's regcache, not resume_ptid's.
5665
2c26b84f
DE
56662015-04-06 Doug Evans <xdje42@gmail.com>
5667
5668 * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as
5669 VAR_DOMAIN.
5670 (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters.
5671 Include symbol domain in debugging output.
5672
7a85168d
PA
56732015-04-06 Pedro Alves <palves@redhat.com>
5674 Bernd Edlinger <bernd.edlinger@hotmail.de>
5675
5676 * configure.ac: Remove the mingw32-specific stub-termcap.o
5677 fallback, and instead fallback to the stub termcap on all hosts.
5678 * configure: Regenerate.
5679 * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak
5680 symbols.
5681
25755e2b
PMR
56822015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
5683
5684 * gdbtypes.c (is_dynamic_type_internal): Remove the unused
5685 "top_level" parameter.
5686 (resolve_dynamic_type_internal): Remove the unused "top_level"
5687 parameter. Update call to is_dynamic_type_internal.
5688 (is_dynamic_type): Update call to is_dynamic_type_internal.
5689 (resolve_dynamic_range): Update call to
5690 resolve_dynamic_type_internal.
5691 (resolve_dynamic_union): Likewise.
5692 (resolve_dynamic_struct): Likewise.
5693 (resolve_dynamic_type): Likewise.
5694
961f4160
PMR
56952015-04-03 Pierre-Marie de Rodat <derodat@adacore.com>
5696
5697 * gdbtypes.c (is_dynamic_type_internal): Remove special handling of
5698 TYPE_CODE_REF types so that they are not considered as dynamic
5699 depending on the referenced type.
5700 (resolve_dynamic_type_internal): Likewise.
5701
39f3de7c
L
57022015-04-02 H.J. Lu <hongjiu.lu@intel.com>
5703
5704 * Makefile.in (top_srcdir): New.
5705 * configure: Regenerated.
5706
599bd15c
GB
57072015-04-02 Gary Benson <gbenson@redhat.com>
5708
5709 * NEWS: Announce the new default sysroot of "target:".
5710
fed040c6
GB
57112015-04-02 Gary Benson <gbenson@redhat.com>
5712
5713 * main.c (captured_main): Set gdb_sysroot to "target:"
5714 if not otherwise set.
5715
64c0b5de
GB
57162015-04-02 Gary Benson <gbenson@redhat.com>
5717
5718 * exec.c (exec_file_attach): Support "target:" filenames.
5719
b57fbfba
GB
57202015-04-02 Gary Benson <gbenson@redhat.com>
5721
5722 * solib.c (solib_find): Strip "target:" prefix from sysroot
5723 if accessing local files.
5724
97a41605
GB
57252015-04-02 Gary Benson <gbenson@redhat.com>
5726
5727 * symfile.c (symfile_bfd_open): Reorder to remove duplicated
5728 checks and error messages.
5729
2938e6cf
GB
57302015-04-02 Gary Benson <gbenson@redhat.com>
5731
5732 * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition.
5733 (remote_filename_p): Remove declaration.
5734 (remote_bfd_open): Likewise.
5735 * remote.c (remote_bfd_iovec_open): Remove function.
5736 (remote_bfd_iovec_close): Likewise.
5737 (remote_bfd_iovec_pread): Likewise.
5738 (remote_bfd_iovec_stat): Likewise.
5739 (remote_filename_p): Likewise.
5740 (remote_bfd_open): Likewise.
5741 * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration.
5742 * symfile.c (separate_debug_file_exists): Use gdb_bfd_open.
5743 (gdb_bfd_open_maybe_remote): Remove function.
5744 (symfile_bfd_open): Replace remote filename check with
5745 target filename check.
5746 (reread_symbols): Use gdb_bfd_open.
5747 * build-id.c (gdbcore.h): New include.
5748 (build_id_to_debug_bfd): Use gdb_bfd_open.
5749 * infcmd.c (attach_command_post_wait): Remove remote filename
5750 check.
5751 * solib.c (solib_find): Replace remote-specific handling with
5752 target-specific handling. Update comments where necessary.
5753 (solib_bfd_open): Replace remote-specific handling with
5754 target-specific handling.
5755 (gdb_sysroot_changed): New function.
5756 (_initialize_solib): Call the above when gdb_sysroot changes.
5757 * windows-tdep.c (gdbcore.h): New include.
5758 (windows_xfer_shared_library): Use gdb_bfd_open.
5759
f08e97fe
GB
57602015-04-02 Gary Benson <gbenson@redhat.com>
5761
5762 * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition.
5763 (is_target_filename): New declaration.
5764 (gdb_bfd_has_target_filename): Likewise.
5765 (gdb_bfd_open): Update documentation comment.
5766 * gdb_bfd.c (target.h): New include.
5767 (gdb/fileio.h): Likewise.
5768 (is_target_filename): New function.
5769 (gdb_bfd_has_target_filename): Likewise.
5770 (fileio_errno_to_host): Likewise.
5771 (gdb_bfd_iovec_fileio_open): Likewise.
5772 (gdb_bfd_iovec_fileio_pread): Likewise.
5773 (gdb_bfd_iovec_fileio_close): Likewise.
5774 (gdb_bfd_iovec_fileio_fstat): Likewise.
5775 (gdb_bfd_open): Use target fileio to access paths prefixed
5776 with "target:" where necessary.
5777
4bd7dc42
GB
57782015-04-02 Gary Benson <gbenson@redhat.com>
5779
5780 * target.h (struct target_ops) <to_filesystem_is_local>:
5781 New field.
5782 (target_filesystem_is_local): New macro.
5783 * target-delegates.c: Regenerate.
5784 * remote.c (remote_filesystem_is_local): New function.
5785 (init_remote_ops): Initialize to_filesystem_is_local.
5786
9b15c1f0
GB
57872015-04-02 Gary Benson <gbenson@redhat.com>
5788
5789 * target.h (struct target_ops) <to_fileio_fstat>: New field.
5790 (target_fileio_fstat): New declaration.
5791 * target.c (target_fileio_fstat): New function.
5792 * inf-child.c (inf_child_fileio_fstat): Likewise.
5793 (inf_child_target): Initialize to_fileio_fstat.
5794 * remote.c (init_remote_ops): Likewise.
5795
d11916aa
SS
57962015-04-01 Sasha Smundak <asmundak@google.com>
5797
5798 * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o.
5799 (SUBDIR_PYTHON_SRCS): Add py-unwind.c.
5800 (py-unwind.o): New recipe.
5801 * NEWS: mention Python frame unwinding.
5802 * data-directory/Makefile.in (PYTHON_FILE_LIST): Add
5803 gdb/unwinder.py and gdb/command/unwinder.py
5804 * python/lib/gdb/__init__.py (packages): Add frame_unwinders
5805 list.
5806 (execute_unwinders): New function.
5807 * python/lib/gdb/command/unwinders.py: New file.
5808 * python/lib/gdb/unwinder.py: New file.
5809 * python/py-objfile.c (objfile_object): Add frame_unwinders field.
5810 (objfpy_dealloc): Decrement frame_unwinders reference count.
5811 (objfpy_initialize): Create frame_unwinders list.
5812 (objfpy_get_frame_unwinders): New function.
5813 (objfpy_set_frame_unwinders): Ditto.
5814 (objfile_getset): Add frame_unwinders attribute to Objfile.
5815 * python/py-progspace.c (pspace_object): Add frame_unwinders field.
5816 (pspy_dealloc): Decrement frame_unwinders reference count.
5817 (pspy_initialize): Create frame_unwinders list.
5818 (pspy_get_frame_unwinders): New function.
5819 (pspy_set_frame_unwinders): Ditto.
5820 (pspy_getset): Add frame_unwinders attribute to gdb.Progspace.
5821 * python/py-unwind.c: New file.
5822 * python/python-internal.h (pspy_get_name_unwinders): New prototype.
5823 (objpy_get_frame_unwinders): New prototype.
5824 (gdbpy_initialize_unwind): New prototype.
5825 * python/python.c (gdbpy_apply_type_printers): Call
5826 gdbpy_initialize_unwind.
5827
6b403daa
PA
58282015-04-01 Pedro Alves <palves@redhat.com>
5829
5830 * infrun.c (resume): Check currently_stepping after clearing
5831 stepped_breakpoint, not before.
5832
1176ecec
PA
58332015-04-01 Pedro Alves <palves@redhat.com>
5834
5835 * infrun.c (print_target_wait_results): Print all the ptid
5836 elements.
5837
de1fe8c8
PA
58382015-04-01 Pedro Alves <palves@redhat.com>
5839
5840 * infrun.c (keep_going): Also discard cleanups if inserting
5841 breakpoints fails.
5842
e6f5c25b
PA
58432015-04-01 Pedro Alves <palves@redhat.com>
5844
5845 * infrun.c (wait_for_inferior): Install the
5846 finish_thread_state_cleanup cleanup across the whole function, not
5847 just around handle_inferior_event.
5848
1ac806b8
PA
58492015-04-01 Pedro Alves <palves@redhat.com>
5850
5851 * infrun.c (resume) <step past permanent breakpoint>: Use
5852 do_target_resume.
5853
2ee52aa4
PA
58542015-04-01 Pedro Alves <palves@redhat.com>
5855
5856 * linux-nat.c (linux_handle_extended_wait): Always call set_running.
5857
5445da1b
PMR
58582015-04-01 Pierre-Marie de Rodat <derodat@adacore.com>
5859
5860 * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat".
5861
4eec2deb
PA
58622015-04-01 Pedro Alves <palves@redhat.com>
5863
5864 * linux-thread-db.c (record_thread): Readd the thread to gdb's
5865 list if it was marked exited.
5866
afa59b79
L
58672015-04-01 H.J. Lu <hongjiu.lu@intel.com>
5868
5869 * configure: Regenerated.
5870
df8411da
SDJ
58712015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
5872 Jan Kratochvil <jan.kratochvil@redhat.com>
5873 Oleg Nesterov <oleg@redhat.com>
5874
5875 PR corefiles/16092
5876 * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
5877 New enum identifying the various options of the coredump_filter
5878 file.
5879 (struct smaps_vmflags): New struct.
5880 (use_coredump_filter): New variable.
5881 (decode_vmflags): New function.
5882 (mapping_is_anonymous_p): Likewise.
5883 (dump_mapping_p): Likewise.
5884 (linux_find_memory_regions_full): New variables
5885 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
5886 Removed variable 'modified'. Read /proc/<PID>/smaps file; improve
5887 parsing of its information. Implement memory mapping filtering
5888 based on its contents.
5889 (show_use_coredump_filter): New function.
5890 (_initialize_linux_tdep): New command 'set use-coredump-filter'.
5891 * NEWS: Mention the possibility of using the
5892 '/proc/PID/coredump_filter' file when generating a corefile.
5893 Mention new command 'set use-coredump-filter'.
5894
416f679e
SDJ
58952015-03-31 Sergio Durigan Junior <sergiodj@redhat.com>
5896
5897 * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by
5898 read_memory_unsigned_integer.
5899
711a72d3
L
59002015-03-31 H.J. Lu <hongjiu.lu@intel.com>
5901
5902 * Makefile.in (ZLIB): New.
5903 (ZLIBINC): Likewise.
5904 (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC).
5905 (CLIBS): Add $(ZLIB).
5906 * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS.
5907 Add -lz to LIBS.
5908 * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>.
5909 * top.c (print_gdb_configuration): Remove --with-zlib and
5910 --without-zlib.
5911 * config.in: Regenerated.
5912 * configure: Likewise.
5913
d33279b3
AT
59142015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com>
5915
5916 * NEWS: Mention info os cpus support.
5917 * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function.
5918 (struct osdata_type): Add cpus entry, reorder the entries in
5919 alphabetical order.
5920
71b30f27
MK
59212015-03-31 Matthias Klose <doko@ubuntu.com>
5922
5923 * compile/compile.c (compile_to_object): Allow triplets with or
5924 without vendor set.
5925
13ce9222
DE
59262015-03-30 Doug Evans <dje@google.com>
5927
5928 PR c++/18141
5929 * cp-namespace.c (cp_search_static_and_baseclasses): Always look for
5930 klass in VAR_DOMAIN.
5931
20f796c9
GB
59322015-03-30 Gary Benson <gbenson@redhat.com>
5933
5934 * remote.c (remote_mourn_1): Remove function. Update all callers
5935 to use remote_mourn.
5936 (extended_remote_mourn_1): Remove function. Update all callers
5937 to use extended_remote_mourn.
5938 (extended_remote_attach_1): Remove function. Update all callers
5939 to use extended_remote_attach.
5940
49d45b20
JB
59412015-03-28 James Bowman <james.bowman@ftdichip.com>
5942
5943 * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o.
5944 (HFILES_NO_SRCDIR): Add ft32-tdep.h.
5945 (ALLDEPFILES): Add ft32-tdep.c.
5946 * configure.tgt: Add FT32 entry.
5947 * ft32-tdep.c: New file, FT32 target-dependent code.
5948 * ft32-tdep.h: New file, FT32 target-dependent code.
5949
1c4ff080
JK
59502015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5951
5952 Revert:
5953 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5954 Code cleanup.
5955 * printcmd.c (print_command_1): Move expr variable scope.
5956
79498702
JB
59572015-03-27 Joel Brobecker <brobecker@adacore.com>
5958
5959 * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL.
5960
ce9c0ca1
AK
59612015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com>
5962
5963 * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special
5964 sections.
5965
429e1e81
JB
59662015-03-26 Joel Brobecker <brobecker@adacore.com>
5967
5968 * dtrace-probe.c (dtrace_process_dof_probe): Contain any
5969 exception raised while parsing the probe arguments.
5970 Force parsing to be done using the C language parser.
5971 * expression.h (parse_expression_with_language): Declare.
5972 * parse.c (parse_expression_with_language): New function.
5973
4593441b
JT
59742015-03-26 Jon Turney <jon.turney@dronecode.org.uk>
5975
5976 * MAINTAINERS (Write After Approval): Add "Jon Turney".
5977
ff908ebf
AW
59782015-03-26 Andy Wingo <wingo@igalia.com>
5979
5980 PR symtab/18148
5981 * dwarf2read.c (struct partial_die_info): Add has_const_value
5982 member.
5983 (add_partial_symbol): Don't punt on symbols that have const_value
5984 attributes.
5985 (read_partial_die): Detect DW_AT_const_value.
5986
f30d5c78
JK
59872015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5988
5989 Code cleanup.
5990 * printcmd.c (print_command_1): Move expr variable scope.
5991
8d89f51a
JK
59922015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5993
5994 Code cleanup.
5995 * printcmd.c (validate_format): Make the parameter cmdname const.
5996
0b736949
DB
59972015-03-26 Don Breazeal <donb@codesourcery.com>
5998
5999 * remote.c (_initialize_remote): Update comment.
6000
20d35291
PA
60012015-03-26 Pedro Alves <palves@redhat.com>
6002 Jon TURNEY <jon.turney@dronecode.org.uk>
6003
6004 * coffread.c (coff_symfile_read): When constructing the name of an
6005 import stub symbol from import symbol for amd64, only skip the
6006 char after _imp_ if the target is underscored (like i386) and the
6007 char is indeed the target's leading char.
6008
6a3753b3
PA
60092015-03-25 Pedro Alves <palves@redhat.com>
6010
6011 * target.h <to_async>: Replace 'callback' and 'context' parameters
6012 with boolean 'enable' parameter.
6013 (target_async): Replace CALLBACK and CONTEXT parameters with
6014 boolean ENABLE parameter.
6015 * inf-loop.c (inferior_event_handler): Adjust.
6016 * linux-nat.c (linux_nat_attach, linux_nat_resume)
6017 (linux_nat_resume): Adjust.
6018 (async_client_callback, async_client_context): Delete.
6019 (handle_target_event): Call inferior_event_handler directly.
6020 (linux_nat_async): Replace 'callback' and 'context' parameters
6021 with boolean 'enable' parameter. Adjust. Remove references to
6022 async_client_callback and async_client_context.
6023 (linux_nat_close): Adjust.
6024 * record-btrace.c (record_btrace_async): Replace 'callback' and
6025 'context' parameters with boolean 'enable' parameter. Adjust.
6026 (record_btrace_resume): Adjust.
6027 * record-full.c (record_full_async): Replace 'callback' and
6028 'context' parameters with boolean 'enable' parameter. Adjust.
6029 (record_full_resume, record_full_core_resume): Adjust.
6030 * remote.c (struct remote_state) <async_client_callback,
6031 async_client_context>: Delete fields.
6032 (remote_start_remote, extended_remote_attach_1, remote_resume)
6033 (extended_remote_create_inferior): Adjust.
6034 (remote_async_serial_handler): Call inferior_event_handler
6035 directly.
6036 (remote_async): Replace 'callback' and 'context' parameters with
6037 boolean 'enable' parameter. Adjust.
6038 * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper):
6039 Adjust.
6040 * target-delegates.c: Regenerate.
6041
1c4b552b
GB
60422015-03-25 Gary Benson <gbenson@redhat.com>
6043 Pedro Alves <palves@redhat.com>
6044
6045 * target.c (fileio_ft_t): New typedef, define object vector.
6046 (fileio_fhandles): New static variable.
6047 (is_closed_fileio_fh): New macro.
6048 (lowest_closed_fd): New static variable.
6049 (acquire_fileio_fd): New function.
6050 (release_fileio_fd): Likewise.
6051 (fileio_fd_to_fh): New macro.
6052 (target_fileio_open): Wrap the file descriptor on success.
6053 (target_fileio_pwrite): Updated to use wrapped file descriptor.
6054 (target_fileio_pread): Likewise.
6055 (target_fileio_close): Likewise.
6056
a25d8bf9
PA
60572015-03-24 Pedro Alves <palves@redhat.com>
6058
6059 * thread.c (thread_apply_all_command): Take exited threads into
6060 account.
6061
44a1ee51
PA
60622015-03-24 Pedro Alves <palves@redhat.com>
6063
6064 * infrun.c (resume, proceed): Mention
6065 switch_back_to_stepped_thread, not switch_back_to_stepping.
6066
f3263aa4
PA
60672015-03-24 Pedro Alves <palves@redhat.com>
6068
6069 * infrun.c (user_visible_resume_ptid): Rewrite going from
6070 most-locked to unlocked instead of the opposite. Move comment ...
6071 * infrun.h (user_visible_resume_ptid): ... here.
6072
2bf6fb9d
PA
60732015-03-24 Pedro Alves <palves@redhat.com>
6074
6075 * linux-nat.c (linux_nat_resume): Output debug logs before trying
6076 to resume the event lwp. Use the lwp's ptid instead of the passed
6077 in (maybe wildcard) ptid.
6078 (stop_wait_callback): Tweak debug log output.
6079 (check_stopped_by_breakpoint): Tweak debug log output. Also dump
6080 TRAP_TRACE.
6081 (linux_nat_filter_event): In debug output, distinguish a
6082 resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs
6083 before trying to resume the lwp.
6084
283a9958
JB
60852015-03-24 Joel Brobecker <brobecker@adacore.com>
6086
6087 * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove
6088 pointer indirection.
6089 * gdbtypes.c (get_dyn_prop): Adjust, following change above.
6090 (add_dyn_prop, copy_dynamic_prop_list): Likewise.
6091
93a8e227
JB
60922015-03-24 Joel Brobecker <brobecker@adacore.com>
6093
6094 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>:
6095 Renames DYN_ATTR_DATA_LOCATION.
6096 (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of
6097 DYN_ATTR_DATA_LOCATION.
6098 * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION
6099 instead of DYN_ATTR_DATA_LOCATION.
6100
64ce06e4
PA
61012015-03-24 Pedro Alves <palves@redhat.com>
6102
6103 * breakpoint.c (until_break_command): Adjust call to proceed.
6104 * gdbthread.h (struct thread_control_state) <stepping_command>:
6105 New field.
6106 * infcall.c (run_inferior_call): Adjust call to proceed.
6107 * infcmd.c (run_command_1, proceed_thread_callback, continue_1):
6108 Adjust calls to proceed.
6109 (set_step_frame): Set the current thread's step_start_function
6110 here.
6111 (step_once): Adjust calls to proceed.
6112 (jump_command, signal_command, until_next_command)
6113 (finish_backward, finish_forward, proceed_after_attach_callback)
6114 (attach_command_post_wait): Adjust calls to proceed.
6115 * infrun.c (proceed_after_vfork_done): Adjust call to proceed.
6116 (do_target_resume): New function, factored out from ...
6117 (resume): ... here. Remove 'step' parameter. Instead, check
6118 currently_stepping to determine whether the thread should be
6119 single-stepped.
6120 (proceed): Remove 'step' parameter and don't set the thread's
6121 step_start_function here. Adjust call to 'resume'.
6122 (handle_inferior_event): Adjust calls to 'resume'.
6123 (switch_back_to_stepped_thread): Use do_target_resume instead of
6124 'resume'.
6125 (keep_going): Adjust calls to 'resume'.
6126 * infrun.h (proceed): Remove 'step' parameter.
6127 (resume): Likewise.
6128 * windows-nat.c (do_initial_windows_stuff): Adjust call to
6129 'resume'.
6130 * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
6131
856e7dd6
PA
61322015-03-24 Pedro Alves <palves@redhat.com>
6133
6134 * gdbthread.h (struct thread_control_state) <stepping_command>:
6135 New field.
6136 * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set
6137 the thread's stepping_command field.
6138 * infrun.c (resume): Check the thread's stepping_command flag to
6139 determine which threads should be resumed. Rename 'entry_step'
6140 local to user_step.
6141 (clear_proceed_status_thread): Clear 'stepping_command'.
6142 (schedlock_applies): Change parameter type to struct thread_info
6143 pointer. Adjust.
6144 (find_thread_needs_step_over): Remove 'step' parameter. Adjust.
6145 (switch_back_to_stepped_thread): Adjust calls to
6146 'schedlock_applies'.
6147 (_initialize_infrun): Adjust "set scheduler-locking step" help.
6148
885eeb5b
PA
61492015-03-24 Pedro Alves <palves@redhat.com>
6150
6151 * infrun.c (step_start_function): Delete and ...
6152 * gdbthread.h (struct thread_control_state) <step_start_function>:
6153 ... now a field here.
6154 * infrun.c (clear_proceed_status_thread): Clear the thread's
6155 step_start_function.
6156 (proceed, process_event_stop_test, print_stop_event): Adjust.
6157
3333f03a
PA
61582015-03-24 Pedro Alves <palves@redhat.com>
6159
6160 * infrun.c (proceed): No longer handle negative step.
6161
369f6daa
GB
61622015-03-24 Gary Benson <gbenson@redhat.com>
6163
6164 * nat/x86-linux.h (x86_linux_new_thread): New declaration.
6165 (x86_linux_prepare_to_resume): Likewise.
6166 * x86-linux-nat.c (x86_linux_new_thread):
6167 Moved to nat/x86-linux.c.
6168 (x86_linux_prepare_to_resume): Likewise.
6169 * nat/x86-linux.c (x86_linux_new_thread): New function.
6170 (x86_linux_prepare_to_resume): Likewise.
6171
8e5d4070
GB
61722015-03-24 Gary Benson <gbenson@redhat.com>
6173
6174 * nat/x86-linux-dregs.h: New file.
6175 * nat/x86-linux-dregs.c: Likewise.
6176 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h.
6177 (x86-linux-dregs.o): New rule.
6178 * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o.
6179 * config/i386/linux64.mh (NATDEPFILES): Likewise.
6180 * x86-linux-nat.c: Include nat/x86-linux-dregs.h.
6181 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
6182 (x86_linux_dr_get): Likewise.
6183 (x86_linux_dr_set): Likewise.
6184 (x86_linux_dr_get_addr): Likewise.
6185 (x86_linux_dr_get_control): Likewise.
6186 (x86_linux_dr_get_status): Likewise.
6187 (update_debug_registers_callback): Likewise.
6188 (x86_linux_dr_set_control): Likewise.
6189 (x86_linux_dr_set_addr): Likewise.
6190 (x86_linux_update_debug_registers): Likewise.
6191
2b95d440
GB
61922015-03-24 Gary Benson <gbenson@redhat.com>
6193
6194 * x86-linux-nat.c (x86_linux_update_debug_registers):
6195 New function, factored out from...
6196 (x86_linux_prepare_to_resume): ...this.
6197
14b0bc68
GB
61982015-03-24 Gary Benson <gbenson@redhat.com>
6199
6200 * x86-linux-nat.c (x86_linux_dr_get): Update comments.
6201 (x86_linux_dr_set): Likewise.
6202 (x86_linux_dr_get_addr): Likewise.
6203 (x86_linux_dr_get_control): Likewise.
6204 (x86_linux_dr_get_status): Likewise.
6205 (update_debug_registers_callback): Likewise.
6206 (x86_linux_dr_set_control): Likewise.
6207 (x86_linux_dr_set_addr): Likewise.
6208 (x86_linux_prepare_to_resume): Likewise.
6209 (x86_linux_new_thread): Likewise.
6210
5dfe6ca8
GB
62112015-03-24 Gary Benson <gbenson@redhat.com>
6212
6213 * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion.
6214 (x86_linux_new_thread): Rename argument.
6215
4b134ca1
GB
62162015-03-24 Gary Benson <gbenson@redhat.com>
6217
6218 * nat/x86-linux.h: New file.
6219 * nat/x86-linux.c: Likewise.
6220 * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h.
6221 (x86-linux.o): New rule.
6222 * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o.
6223 * config/i386/linux64.mh (NATDEPFILES): Likewise.
6224 * nat/linux-nat.h (struct arch_lwp_info): New forward declaration.
6225 (lwp_set_arch_private_info): New declaration.
6226 (lwp_arch_private_info): Likewise.
6227 * linux-nat.c (lwp_set_arch_private_info): New function.
6228 (lwp_arch_private_info): Likewise.
6229 * x86-linux-nat.c: Include nat/x86-linux.h.
6230 (arch_lwp_info): Removed structure.
6231 (update_debug_registers_callback):
6232 Use lwp_set_debug_registers_changed.
6233 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
6234 and lwp_set_debug_registers_changed.
6235 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
6236
cff068da
GB
62372015-03-24 Gary Benson <gbenson@redhat.com>
6238
6239 * nat/linux-nat.h (ptid_of_lwp): New declaration.
6240 (lwp_is_stopped): Likewise.
6241 (lwp_stop_reason): Likewise.
6242 * linux-nat.c (ptid_of_lwp): New function.
6243 (lwp_is_stopped): Likewise.
6244 (lwp_is_stopped_by_watchpoint): Likewise.
6245 * x86-linux-nat.c (update_debug_registers_callback):
6246 Use lwp_is_stopped.
6247 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
6248 lwp_stop_reason.
6249
b2f7c7e8
GB
62502015-03-24 Gary Benson <gbenson@redhat.com>
6251
6252 * linux-nat.h (linux_stop_lwp): Move declaration to...
6253 * nat/linux-nat.h (linux_stop_lwp): New declaration.
6254
6d4ee8c6
GB
62552015-03-24 Gary Benson <gbenson@redhat.com>
6256
6257 * linux-nat.h: Include nat/linux-nat.h.
6258 (iterate_over_lwps): Move declaration to nat/linux-nat.h.
6259 * nat/linux-nat.h (struct lwp_info): New forward declaration.
6260 (iterate_over_lwps_ftype): New typedef.
6261 (iterate_over_lwps): New declaration.
6262 * linux-nat.h (iterate_over_lwps): Update comment. Use
6263 iterate_over_lwps_ftype. Update callback return value check.
6264
70a0bb6b
GB
62652015-03-24 Gary Benson <gbenson@redhat.com>
6266
6267 * x86-nat.h (x86_debug_reg_state): Move declaration to...
6268 * nat/x86-dregs.h (x86_debug_reg_state): New declaration.
6269
7b669087
GB
62702015-03-24 Gary Benson <gbenson@redhat.com>
6271
6272 * nat/linux-nat.h (current_lwp_ptid): New declaration.
6273 * linux-nat.c (current_lwp_ptid): New function.
6274 * x86-linux-nat.c: Include nat/linux-nat.h.
6275 (x86_linux_dr_get_addr): Use current_lwp_ptid.
6276 (x86_linux_dr_get_control): Likewise.
6277 (x86_linux_dr_get_status): Likewise.
6278 (x86_linux_dr_set_control): Likewise.
6279 (x86_linux_dr_set_addr): Likewise.
6280
15630549
AT
62812015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com>
6282
6283 PR breakpoints/16466
6284 * breakpoint.c (create_breakpoint): Set thread on breakpoint struct.
6285
8a4506c0
JB
62862015-03-23 Joel Brobecker <brobecker@adacore.com>
6287
6288 * ser-mingw.c (ser_windows_setparity): Fix indentation.
6289 * ser-unix.c (hardwire_setparity): Likewise.
6290
236af5e3
YG
62912015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com>
6292
6293 * NEWS: Mention set/show serial parity command.
6294 * monitor.c (monitor_open): Call serial_setparity.
6295 * remote.c (remote_open_1): Likewise.
6296 * ser-base.c (ser_base_serparity): New function.
6297 * ser-base.h (ser_base_setparity): Add declaration.
6298 * ser-go32.c (dos_ops): Set "setparity" field.
6299 * ser-mingw.c (ser_windows_raw): Do not set state.fParity and
6300 state.Parity.
6301 (ser_windows_setparity): New function.
6302 (hardwire_ops): Add ser_windows_setparity.
6303 (tty_ops): Add NULL for setparity field.
6304 (pipe_ops): Add ser_base_setparity.
6305 (tcp_ops): Likewise.
6306 * ser-pipe.c (pipe_ops): Likewise.
6307 * ser-tcp.c (tcp_ops): Likewise.
6308 * ser-unix.c (hardwire_setparity): Add declaration.
6309 (hardwire_raw): Don't reset PARENB flag.
6310 (hardwire_setparity): New function.
6311 (hardwire_ops): Add hardwire_setparity.
6312 * serial.c (serial_setparity): New function.
6313 (serial_parity): New global.
6314 (parity_none, parity_odd, parity_even, parity_enums, parity):
6315 New static globals.
6316 (set_parity): New function.
6317 (_initialize_serial): Add set/show serial parity commands.
6318 * serial.h (GDBPARITY_NONE): Define.
6319 (GDBPARITY_ODD): Define.
6320 (GDBPARITY_EVEN): Define.
6321 (serial_setparity) Add declaration.
6322 (struct serial_ops): Add setparity field.
6323 * target.h (serial_parity): Add declaration.
6324
32b40af9
KS
63252015-03-23 Keith Seitz <keiths@redhat.com>
6326
6327 * linespec.c (linespec_lexer_lex_keyword): Update comment.
6328
693dca06
KS
63292015-03-23 Keith Seitz <keiths@redhat.com>
6330
6331 * breakpoint.c (parse_breakpoint_sals): Use
6332 linespec_lexer_lex_keyword to ascertain if the user specified
6333 a NULL location.
6334 * linespec.c [IF_KEYWORD_INDEX]: Define.
6335 (linespec_lexer_lex_keyword): Export.
6336 (struct ls_parser) <keyword_ok>: Remove.
6337 A keyword is only a keyword if not followed by another keyword.
6338 (linespec_lexer_lex_one): Remove keyword_ok handling.
6339 Add comment explaining why the parsing stream is not advanced
6340 when a keyword is seen.
6341 (parse_linespec): Remove parser->keyword_ok.
6342 * linespec.h (linespec_lexer_lex_keyword): Add declaration.
6343
7e993ebf
KS
63442015-03-23 Keith Seitz <keiths@redhat.com>
6345
6346 PR gdb/18021
6347 * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint
6348 if we find a static method with DW_AT_vtable_elem_location.
6349
b1a0f704
EZ
63502015-03-21 Eli Zaretskii <eliz@gnu.org>
6351
6352 * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter
6353 before the second loop, to avoid undefined behavior. Reported by
6354 Anton Blanchard <anton@samba.org>.
6355
d9823cbb
KB
63562015-03-20 Keven Boell <keven.boell@intel.com>
6357
6358 * gdbtypes.c (resolve_dynamic_type_internal): Adapt
6359 data_location usage to linked list.
6360 (resolve_dynamic_type_internal): Adapt data_location to
6361 linked list.
6362 (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function.
6363 (copy_type_recursive, copy_type): Add copy of linked list.
6364 * gdbtypes.h (enum dynamic_prop_node_kind): New enum.
6365 (struct dynamic_prop_list): New struct.
6366 * dwarf2read.c (set_die_type): Set data_location data.
6367
2e7bf1d7
PA
63682015-03-20 Pedro Alves <palves@redhat.com>
6369
6370 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
6371 inner block and make it const.
6372 * machoread.c (get_archive_prefix_len): Make "lparen" const.
6373
7a26bd4d
PA
63742015-03-20 Pedro Alves <palves@redhat.com>
6375
6376 * breakpoint.c (set_breakpoint_condition): Make argument "exp" const.
6377 * breakpoint.h (set_breakpoint_condition): Update declaration.
6378
cd46431b
PA
63792015-03-20 Pedro Alves <palves@redhat.com>
6380
6381 * tui/tui-io.c (tui_expand_tabs): Make "s1" const.
6382
e28566f7
PA
63832015-03-20 Pedro Alves <palves@redhat.com>
6384
6385 * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const.
6386
f6fc92f6
PA
63872015-03-20 Pedro Alves <palves@redhat.com>
6388
6389 * remote-m32r-sdi.c (m32r_open): Make "port_str" const.
6390
c32ed3ef
PA
63912015-03-20 Pedro Alves <palves@redhat.com>
6392
6393 * nto-tdep.c (nto_find_and_open_solib): Make "endian" const.
6394 (nto_init_solib_absolute_prefix): Likewise.
6395
53e78085
PA
63962015-03-20 Pedro Alves <palves@redhat.com>
6397
6398 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const.
6399 * spu-tdep.c (spu_gdbarch_init): Make "name" const.
6400
bc23328c
JK
64012015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6402
6403 * config/djgpp/README: Remove gdb.hp.
6404
e8ffc436
YQ
64052015-03-20 Yao Qi <yao.qi@linaro.org>
6406
6407 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
6408 set_gdbarch_cannot_step_breakpoint.
6409
23f238d3
PA
64102015-03-19 Pedro Alves <palves@redhat.com>
6411
6412 * linux-nat.c (linux_resume_one_lwp): Rename to ...
6413 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
6414 instead call perror_with_name.
6415 (check_ptrace_stopped_lwp_gone): New function.
6416 (linux_resume_one_lwp): Reimplement as wrapper around
6417 linux_resume_one_lwp_throw that swallows errors if the LWP is
6418 gone.
6419 (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and
6420 swallows errors if the LWP is gone. Use
6421 linux_resume_one_lwp_throw instead of linux_resume_one_lwp.
6422
eb54c8bf
PA
64232015-03-19 Pedro Alves <palves@redhat.com>
6424
6425 * linux-nat.c (status_callback): Return early if the LWP has no
6426 status pending.
6427
b90fc188
PA
64282015-03-19 Pedro Alves <palves@redhat.com>
6429
6430 * linux-nat.c (select_event_lwp_callback): Update comment to no
6431 longer mention SIGTRAP.
6432
670f82d4
TG
64332015-03-18 Tristan Gingold <gingold@adacore.com>
6434
72f4393d
L
6435 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move
6436 redirection code to ...
6437 (amd64_windows_frame_decode_insns): ... Here. Fix in prologue
6438 checks. Fix SAVE_NONVOL operations. Add debug code and comments.
670f82d4 6439
464b0089
GB
64402015-03-18 Gary Benson <gbenson@redhat.com>
6441
6442 (remote_protocol_features): Remove the "vFile:fstat" feature.
6443 (remote_hostio_fstat): Probe for "vFile:fstat" support.
6444
f68f11b7
YQ
64452015-03-11 Yao Qi <yao.qi@linaro.org>
6446
6447 PR tdep/18107
6448 * aarch64-linux-tdep.c: Include xml-syscall.h
6449 (aarch64_linux_get_syscall_number): New function.
6450 (aarch64_linux_init_abi): Call
6451 set_gdbarch_get_syscall_number.
6452 * syscalls/aarch64-linux.xml: New file.
6453
393bd0c0
YG
64542015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com>
6455
6456 * ser-base.h (ser_base_setstopbits): Change second argument name
6457 from "rate" to "num".
6458
7f3647e2
GB
64592015-03-17 Gary Benson <gbenson@redhat.com>
6460 Luke Allardyce <lukeallardyce@gmail.com>
6461
6462 PR gdb/18131
6463 * common/common-remote-fileio.h (sys/stat.h): New include.
6464 (stuct stat): Remove forward declaration.
6465
3ce5b6e2
JB
64662015-03-16 John Baldwin <jhb@FreeBSD.org>
6467
6468 * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers
6469 before writing core register notes.
6470
d053f6be
YZ
64712015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
6472 Pedro Alves <palves@redhat.com>
6473
6474 * gdb_curses.h (tgetnum): Mark with EXTERN_C.
6475 * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs)
6476 (tgoto): Wrap with extern "C".
6477
b1a921c8
PA
64782015-03-16 Pedro Alves <palves@redhat.com>
6479 Yuanhui Zhang <asmwarrior@gmail.com>
6480
6481 * stub-termcap.c (tputs): Change prototype.
6482
876d1cd7
YZ
64832015-03-16 Yuanhui Zhang <asmwarrior@gmail.com>
6484 Pedro Alves <palves@redhat.com>
6485
6486 * windows-nat.c (struct thread_info_struct): Rename to ...
6487 (struct windows_thread_info_struct): ... this.
6488 (thread_info): Rename to ...
6489 (windows_thread_info): ... this.
6490 All users updated.
6491
0800b440
JK
64922015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6493 Pedro Alves <palves@redhat.com>
6494
6495 * NEWS: New Removed targets and native configurations.
6496
64972015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
61a12cfa
JK
6498
6499 Remove HPUX.
6500 * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o.
6501 (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o.
6502 (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and
6503 ia64-hpux-tdep.h, solib-ia64-hpux.h.
6504 (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c,
6505 ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c.
6506 * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and
6507 hppa-hpux-tdep.c.
6508 * config/ia64/hpux.mh: Remove file.
6509 * config/pa/hpux.mh: Remove file.
6510 * configure: Rebuilt.
6511 * configure.ac (dlgetmodinfo, somread.o): Remove.
6512 * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
6513 (ia64-*-hpux*): Remove its float format exception.
6514 * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete.
6515 * hppa-hpux-nat.c: Remove file.
6516 * hppa-hpux-tdep.c: Remove file.
6517 * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private):
6518 Move them here from hppa-tdep.h
6519 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static.
6520 (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception.
6521 * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private):
6522 Move them to hppa-tdep.c.
6523 (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove
6524 declarations.
6525 * ia64-hpux-nat.c: Remove file.
6526 * ia64-hpux-tdep.c: Remove file.
6527 * ia64-hpux-tdep.h: Remove file.
6528 * inf-ttrace.c: Remove file.
6529 * inf-ttrace.h: Remove file.
6530 * solib-ia64-hpux.c: Remove file.
6531 * solib-ia64-hpux.h: Remove file.
6532 * solib-pa64.c: Remove file.
6533 * solib-pa64.h: Remove file.
6534 * solib-som.c: Remove file.
6535 * solib-som.h: Remove file.
6536 * somread.c: Remove file.
6537
25268153
JB
65382015-03-13 John Baldwin <jhb@FreeBSD.org>
6539
6540 * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util).
6541 * config.in: Regenerate.
6542 * configure: Regenerate.
6543 * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't
72f4393d 6544 define.
25268153
JB
6545 (fbsd_find_memory_regions): Use kinfo_getvmmap to
6546 enumerate memory regions if present.
6547
773eacf5
JB
65482015-03-13 John Baldwin <jhb@FreeBSD.org>
6549
6550 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes.
6551 * i386fbsd-tdep.c: Fix style in various gdb_static_assert
6552 expressions.
6553 (i386fbsd_sigtramp_p): Likewise.
6554
01b6bdb0
JB
65552015-03-12 John Baldwin <jhb@FreeBSD.org>
6556
6557 * MAINTAINERS (Write After Approval): Add John Baldwin.
6558
811a659a
GB
65592015-03-12 Gary Benson <gbenson@redhat.com>
6560
6561 * solib.c (_initialize_solib): Make "set/show sysroot" use
6562 add_setshow_optional_filename_cmd so it can be restored to
6563 empty after being set.
6564
10304ef3
SDJ
65652015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
6566
6567 * Makefile.in (SFILES): New source break-catch-syscall.c.
6568 (COMMON_OBS): New object break-catch-syscall.o.
6569 * break-catch-syscall.c: New file.
6570 * breakpoint.c: Remove inclusion of "xml-syscall.h".
6571 (syscall_catchpoint_p): Move declaration to break-catch-syscall.c
6572 (struct syscall_catchpoint): Likewise.
6573 (dtor_catch_syscall): Likewise.
6574 (catch_syscall_inferior_data): Likewise.
6575 (struct catch_syscall_inferior_data): Likewise.
6576 (get_catch_syscall_inferior_data): Likewise.
6577 (catch_syscall_inferior_data_cleanup): Likewise.
6578 (insert_catch_syscall): Likewise.
6579 (remove_catch_syscall): Likewise.
6580 (breakpoint_hit_catch_syscall): Likewise.
6581 (print_it_catch_syscall): Likewise.
6582 (print_one_catch_syscall): Likewise.
6583 (print_mention_catch_syscall): Likewise.
6584 (print_recreate_catch_syscall): Likewise.
6585 (catch_syscall_breakpoint_ops): Likewise.
6586 (syscall_catchpoint_p): Likewise.
6587 (create_syscall_event_catchpoint): Likewise.
6588 (catch_syscall_split_args): Likewise.
6589 (catch_syscall_command_1): Likewise.
6590 (is_syscall_catchpoint_enabled): Likewise.
6591 (catch_syscall_enabled): Likewise.
6592 (catching_syscall_number): Likewise.
6593 (catch_syscall_completer): Likewise.
6594 (clear_syscall_counts): Likewise.
6595 (initialize_breakpoint_ops): Move initialization of syscall
6596 catchpoints to break-catch-syscall.c.
6597 (_initialize_breakpoint): Move code related to syscall catchpoints
6598 to break-catch-syscall.c.
6599
badd37ce
SDJ
66002015-03-11 Sergio Durigan Junior <sergiodj@redhat.com>
6601
6602 * breakpoint.c (breakpoint_find_if): New function.
6603 * breakpoint.h (breakpoint_find_if): New prototype.
6604
0a93529c
GB
66052015-03-11 Gary Benson <gbenson@redhat.com>
6606
6607 * remote-fileio.h (remote_fileio_to_host_stat): New declaration.
6608 * remote-fileio.c (remote_fileio_to_host_uint): New function.
6609 (remote_fileio_to_host_ulong): Likewise.
6610 (remote_fileio_to_host_mode): Likewise.
6611 (remote_fileio_to_host_time): Likewise.
6612 (remote_fileio_to_host_stat): Likewise.
6613 * remote.c (PACKET_vFile_fstat): New enum value.
6614 (remote_protocol_features): Register the "vFile:fstat" feature.
6615 (remote_hostio_fstat): New function.
6616 (remote_bfd_iovec_stat): Use the above.
6617 (_initialize_remote): Register new "set/show remote
6618 hostio-fstat-packet" command.
6619 * symfile.c (separate_debug_file_exists): Update comment.
6620 * NEWS: Announce new vFile:fstat packet.
6621
791c0056
GB
66222015-03-11 Gary Benson <gbenson@redhat.com>
6623
6624 * common/common-remote-fileio.h: New file.
6625 * common/common-remote-fileio.c: Likewise.
6626 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
6627 (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h.
6628 (COMMON_OBS): Add common-remote-fileio.o.
6629 (common-remote-fileio.o): New rule.
6630 * remote-fileio.h (common-remote-fileio.h): New include.
6631 * remote-fileio.c (gdb/fileio.h): Do not include.
6632 (remote_fileio_to_be): Moved to common-remote-fileio.h.
6633 (remote_fileio_to_fio_uint): Likewise.
6634 (remote_fileio_to_fio_time): Likewise.
6635 (remote_fileio_mode_to_target): Moved to common-remote-fileio.c.
6636 (remote_fileio_to_fio_mode): Likewise.
6637 (remote_fileio_to_fio_ulong): Likewise.
6638 (remote_fileio_to_fio_stat): Likewise.
6639
1390d0ef
AW
66402015-03-11 Andy Wingo <wingo@igalia.com>
6641
6642 * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which
6643 we were checking the cached type, not the cached dynamic type.
6644
84a4591a
AW
66452015-03-11 Andy Wingo <wingo@igalia.com>
6646
6647 * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and
6648 other strings, as these are on the GC'd heap, and will be
6649 collected along with the smob.
6650
85642ba0
AW
66512015-03-11 Andy Wingo <wingo@igalia.com>
6652
6653 * guile/scm-objfile.c (gdbscm_objfile_progspace): New function.
6654 (objfile_functions): Bind gdbscm_objfile_progspace to
6655 objfile-progspace.
6656 * guile/lib/gdb.scm: Add objfile-progspace to exports.
6657
92fab5a6
AW
66582015-03-11 Andy Wingo <wingo@igalia.com>
6659
6660 * guile/guile.c (_initialize_guile): Disable automatic
6661 finalization, if Guile offers us that possibility.
6662 * guile/guile.c (call_initialize_gdb_module):
6663 * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run
6664 finalizers in appropriate places.
6665 * configure.ac (AC_TRY_LIBGUILE): Add a check for
6666 scm_set_automatic_finalization_enabled.
6667 * configure: Regenerated.
6668
f054145e
AA
66692015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
6670
6671 * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using
6672 SAL, if possible.
6673
18396193
AA
66742015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com>
6675
6676 * s390-linux-nat.c (struct arch_lwp_info): New.
6677 (s390_fix_watch_points): Rename to...
6678 (s390_prepare_to_resume): ...this. Skip the PER info update
6679 unless the watch points have changed.
6680 (s390_refresh_per_info, s390_new_thread): New functions.
6681 (s390_insert_watchpoint): Call s390_refresh_per_info instead of
6682 s390_fix_watch_points.
6683 (s390_remove_watchpoint): Likewise.
6684 (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points.
6685 Register s390_prepare_to_resume.
6686
9eb1356e
PA
66872015-03-09 Pedro Alves <palves@redhat.com>
6688
6689 Revert:
6690 2015-03-07 Pedro Alves <palves@redhat.com>
6691 * common/gdb_socket.h: New file.
6692 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
6693 sys/socket.h.
6694 (net_open): Use union gdb_sockaddr_u.
6695
aac331e4
PA
66962015-03-07 Pedro Alves <palves@redhat.com>
6697
6698 * configure.ac (build_warnings): Move -Wmissing-prototypes
6699 -Wdeclaration-after-statement -Wmissing-parameter-type
6700 -Wold-style-declaration -Wold-style-definition to the C-specific
6701 set.
6702 * configure: Regenerate.
6703
366c75fc
PA
67042015-03-07 Pedro Alves <palves@redhat.com>
6705
6706 * common/gdb_socket.h: New file.
6707 * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor
6708 sys/socket.h.
6709 (net_open): Use union gdb_sockaddr_u.
6710
72df25b2
PA
67112015-03-07 Pedro Alves <palves@redhat.com>
6712
6713 * common/common-exceptions.c [!__cplusplus] (enum catcher_state)
6714 (exceptions_state_mc_action_iter)
6715 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
6716 Don't define.
6717 [__cplusplus] (try_scope_depth): New global.
6718 [__cplusplus] (exception_try_scope_entry)
6719 (exception_try_scope_exit, gdb_exception_sliced_copy)
6720 (exception_rethrow): New functions.
6721 (throw_exception): In C++ mode, throw
6722 gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and
6723 gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR.
6724 (throw_it): In C++ mode, use try_scope_depth.
6725 * common/common-exceptions.h [!__cplusplus]
6726 (exceptions_state_mc_action_iter)
6727 (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch):
6728 Don't declare.
6729 [__cplusplus] (exception_try_scope_entry)
6730 (exception_try_scope_exit, exception_rethrow): Declare.
6731 [__cplusplus] (struct exception_try_scope): New struct.
6732 [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real
6733 C++ exceptions.
6734 (struct gdb_exception_RETURN_MASK_ALL)
6735 (struct gdb_exception_RETURN_MASK_ERROR)
6736 (struct gdb_exception_RETURN_MASK_QUIT): New types.
6737
284e6217
PA
67382015-03-07 Pedro Alves <palves@redhat.com>
6739
6740 * main.c (handle_command_errors): Remove volatile qualifier from
6741 parameter.
6742
6c63c96a
PA
67432015-03-07 Pedro Alves <palves@redhat.com>
6744
6745 * breakpoint.c (save_breakpoints): Adjust to avoid code between
6746 TRY and CATCH.
6747 * gdbtypes.c (safe_parse_type): Remove empty line.
6748 (types_deeply_equal):
6749 * guile/scm-frame.c (gdbscm_frame_name):
6750 * linux-thread-db.c (find_new_threads_once):
6751 * python/py-breakpoint.c (bppy_get_commands):
6752 * record-btrace.c (record_btrace_insert_breakpoint)
6753 (record_btrace_remove_breakpoint, record_btrace_start_replaying)
6754 (record_btrace_start_replaying): Adjust to avoid code between TRY
6755 and CATCH.
6756
492d29ea
PA
67572015-03-07 Pedro Alves <palves@redhat.com>
6758
6759 * common/common-exceptions.c (struct catcher) <exception>: No
6760 longer a pointer to volatile exception. Now an exception value.
6761 <mask>: Delete field.
6762 (exceptions_state_mc_init): Remove all parameters. Adjust.
6763 (exceptions_state_mc): No longer pop the catcher here.
6764 (exceptions_state_mc_catch): New function.
6765 (throw_exception): Adjust.
6766 * common/common-exceptions.h (exceptions_state_mc_init): Remove
6767 all parameters.
6768 (exceptions_state_mc_catch): Declare.
6769 (TRY_CATCH): Rename to ...
6770 (TRY): ... this. Remove EXCEPTION and MASK parameters.
6771 (CATCH, END_CATCH): New.
6772 All callers adjusted.
6773
ece957c8
TT
67742015-03-07 Tom Tromey <tromey@redhat.com>
6775
6776 * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX.
6777
7556d4a4
PA
67782015-03-07 Pedro Alves <palves@redhat.com>
6779
6780 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
6781 (amd64_epilogue_frame_cache): Normal exception handling code.
6782 * break-catch-throw.c (check_status_exception_catchpoint)
6783 (re_set_exception_catchpoint): Ditto.
6784 * cli/cli-interp.c (safe_execute_command):
6785 * cli/cli-script.c (script_from_file): Ditto.
6786 * compile/compile-c-symbols.c (generate_c_for_for_one_variable):
6787 Ditto.
6788 * compile/compile-object-run.c (compile_object_run): Ditto.
6789 * cp-abi.c (baseclass_offset): Ditto.
6790 * cp-valprint.c (cp_print_value): Ditto.
6791 * exceptions.c (catch_exceptions_with_msg):
6792 * frame-unwind.c (frame_unwind_try_unwinder): Ditto.
6793 * frame.c (get_frame_address_in_block_if_available): Ditto.
6794 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
6795 (i386_sigtramp_frame_cache): Ditto.
6796 * infcmd.c (post_create_inferior): Ditto.
6797 * linespec.c (parse_linespec, find_linespec_symbols):
6798 * p-valprint.c (pascal_object_print_value): Ditto.
6799 * parse.c (parse_expression_for_completion): Ditto.
6800 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6801 * remote.c (remote_get_noisy_reply): Ditto.
6802 * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto.
6803 * solib-svr4.c (solib_svr4_r_map): Ditto.
6804
f873665f 68052015-03-06 Gary Benson <gbenson@redhat.com>
61012eef
GB
6806
6807 * common/common-utils.h (startswith): New inline function.
6808 All places where this logic was used updated to use the above.
6809
68901c4d
PA
68102015-03-05 Pedro Alves <palves@redhat.com>
6811
6812 PR gdb/18002
6813 * mem-break.c (default_memory_insert_breakpoint): Set shadow_len
6814 after reading the breakpoint's shadow memory.
6815
2dcb2b1a
MK
68162015-03-05 Mark Kettenis <kettenis@gnu.org>
6817
6818 * hppabsd-nat.c: Remove file.
6819 * hppaobsd-nat.c: New file.
6820 * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add
6821 hppaobsd-nat.c.
6822 * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with
6823 hppaobsd-nat.o.
6824
527a273a
PA
68252015-03-04 Pedro Alves <palves@redhat.com>
6826
6827 * target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
6828 (target_decr_pc_after_break): Delete declaration.
6829 * target.c (default_target_decr_pc_after_break)
6830 (target_decr_pc_after_break): Delete.
6831 * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
6832 gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
6833 * linux-thread-db.c (check_event): Likewise.
6834 * infrun.c (adjust_pc_after_break): Likewise.
6835 * darwin-nat.c (cancel_breakpoint): Likewise.
6836 * aix-thread.c (aix_thread_wait): Likewise.
6837 * target-delegates.c: Regenerate.
6838
faf09f01
PA
68392015-03-04 Pedro Alves <palves@redhat.com>
6840
6841 * linux-nat.c (save_sigtrap): Check for breakpoints before
6842 checking watchpoints.
6843 (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a
6844 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
6845 (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether
6846 a breakpoint triggered based on the SIGTRAP's siginfo.si_code.
6847 (linux_nat_stopped_by_sw_breakpoint)
6848 (linux_nat_supports_stopped_by_sw_breakpoint)
6849 (linux_nat_stopped_by_hw_breakpoint)
6850 (linux_nat_supports_stopped_by_hw_breakpoint): New functions.
6851 (linux_nat_wait_1): Don't re-increment the PC if relying on
6852 SIGTRAP's siginfo->si_code.
6853 (linux_nat_add_target): Install new target methods.
6854 * linux-thread-db.c (check_event): Don't account for breakpoint PC
6855 offset if the target already adjusted the PC.
6856 * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New.
6857 (GDB_ARCH_TRAP_BRKPT): New.
6858 (TRAP_HWBKPT): Define if not already defined.
6859
f7e6eed5
PA
68602015-03-04 Pedro Alves <palves@redhat.com>
6861
6862 * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons.
6863 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>:
6864 Delete field.
6865 <stop_reason>: New field.
6866 (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values.
6867 (packet_set_cmd_state): New function.
6868 (remote_protocol_features): Register the "swbreak" and "hwbreak"
6869 features.
6870 (remote_query_supported): If not disabled with the corresponding
6871 "set remote foo-packet" command, report support for the swbreak
6872 and hwbreak features.
6873 (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete
6874 field.
6875 <stop_reason>: New field.
6876 (remote_parse_stop_reply): Handle "swbreak" and "hwbreak".
6877 (remote_wait_as): Adjust.
6878 (remote_stopped_by_sw_breakpoint)
6879 (remote_supports_stopped_by_sw_breakpoint)
6880 (remote_stopped_by_hw_breakpoint)
6881 (remote_supports_stopped_by_hw_breakpoint): New functions.
6882 (remote_stopped_by_watchpoint): New function.
6883 (init_remote_ops): Install them.
6884 (_initialize_remote): Register new "set/show remote
6885 swbreak-feature-packet" and "set/show remote
6886 swbreak-feature-packet" commands.
6887
9e8915c6
PA
68882015-03-04 Pedro Alves <palves@redhat.com>
6889
6890 * btrace.h: Include target/waitstatus.h.
6891 (struct btrace_thread_info) <stop_reason>: New field.
6892 * record-btrace.c (record_btrace_step_thread): Use
6893 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
6894 (record_btrace_decr_pc_after_break): Delete.
6895 (record_btrace_stopped_by_sw_breakpoint)
6896 (record_btrace_supports_stopped_by_sw_breakpoint)
6897 (record_btrace_stopped_by_hw_breakpoint)
6898 (record_btrace_supports_stopped_by_hw_breakpoint): New functions.
6899 (init_record_btrace_ops): Install them.
6900 * record-full.c (record_full_hw_watchpoint): Delete and replace
6901 with ...
6902 (record_full_stop_reason): ... this throughout.
6903 (record_full_exec_insn): Adjust.
6904 (record_full_wait_1): Adjust. No longer re-increment the PC.
6905 (record_full_wait_1): Adjust. Use
6906 record_check_stopped_by_breakpoint instead of breakpoint_here_p.
6907 (record_full_stopped_by_watchpoint): Adjust.
6908 (record_full_stopped_by_sw_breakpoint)
6909 (record_full_supports_stopped_by_sw_breakpoint)
6910 (record_full_supports_stopped_by_sw_breakpoint)
6911 (record_full_stopped_by_hw_breakpoint)
6912 (record_full_supports_stopped_by_hw_breakpoint): New functions.
6913 (init_record_full_ops, init_record_full_core_ops): Install them.
6914 * record.c (record_check_stopped_by_breakpoint): New function.
6915 * record.h: Include target/waitstatus.h.
6916 (record_check_stopped_by_breakpoint): New declaration.
6917
15c66dd6
PA
69182015-03-04 Pedro Alves <palves@redhat.com>
6919
6920 enum lwp_stop_reason -> enum target_stop_reason
6921 * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint)
6922 (linux_nat_stopped_by_watchpoint, status_callback)
6923 (linux_nat_wait_1): Adjust.
6924 * linux-nat.h (enum lwp_stop_reason): Delete.
6925 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
6926 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
6927 * target/waitstatus.h (enum target_stop_reason): New.
6928
1cf4d951
PA
69292015-03-04 Pedro Alves <palves@redhat.com>
6930
6931 * breakpoint.c (need_moribund_for_location_type): New function.
6932 (bpstat_stop_status): Don't skipping checking moribund locations
6933 of breakpoint types which the target tell caused a stop.
6934 (program_breakpoint_here_p): New function, factored out from ...
6935 (bp_loc_is_permanent): ... this.
6936 (update_global_location_list): Don't create a moribund location if
6937 the target supports reporting stops of the type of the removed
6938 breakpoint.
6939 * breakpoint.h (program_breakpoint_here_p): New declaration.
6940 * infrun.c (adjust_pc_after_break): Return early if the target has
6941 already adjusted the PC. Add comments.
6942 (handle_signal_stop): If nothing explains a signal, and the target
6943 tells us the stop was caused by a software breakpoint, check if
6944 there's a breakpoint instruction in the memory. If so, adjust the
6945 PC before presenting the stop to the user. Otherwise, ignore the
6946 trap. If nothing explains a signal, and the target tells us the
6947 stop was caused by a hardware breakpoint, ignore the trap.
6948 * target.h (struct target_ops) <to_stopped_by_sw_breakpoint,
6949 to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint,
6950 to_supports_stopped_by_hw_breakpoint>: New fields.
6951 (target_stopped_by_sw_breakpoint)
6952 (target_supports_stopped_by_sw_breakpoint)
6953 (target_stopped_by_hw_breakpoint)
6954 (target_supports_stopped_by_hw_breakpoint): Define.
6955 * target-delegates.c: Regenerate.
6956
79639e11
PA
69572015-03-04 Pedro Alves <palves@redhat.com>
6958
6959 * infrun.c (follow_fork_inferior): Use the whole of the
6960 inferior_ptid and pending_follow.related_pid ptids instead of
6961 building ptids from the process components. Adjust verbose output
6962 to use target_pid_to_str.
6963 * linux-nat.c (linux_child_follow_fork): Use the whole of the
6964 inferior_ptid and pending_follow.related_pid ptids instead of
6965 building ptids from the process components.
6966
e85e8e5e
MK
69672015-03-04 Mark Kettenis <kettenis@gnu.org>
6968
6969 * inf-ptrace.c [PT_GET_PROCESS_STATE]
6970 (inf_ptrace_insert_fork_catchpoint): New function.
6971 (inf_ptrace_remove_fork_catchpoint): New function.
6972 (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them.
6973
87de11c0
AA
69742015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6975
6976 * s390-linux-tdep.c (s390_register_name): Return empty string
6977 instead of NULL for registers that shouldn't be visible.
6978
d851a69a
AA
69792015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
6980
6981 * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall
6982 XML file for 64-bit targets.
6983
b072f6c1
SM
69842015-03-03 Simon Marchi <simon.marchi@ericsson.com>
6985
6986 * target.h (find_default_create_inferior): Remove declaration.
6987 (find_default_attach): Likewise.
6988
c1593e4f
PA
69892015-03-03 Pedro Alves <palves@redhat.com>
6990
6991 * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace.
6992 Use ptid_get_pid to get the overall process id when resuming all
6993 threads.
6994
90ad5e1d
PA
69952015-03-03 Pedro Alves <palves@redhat.com>
6996
6997 * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of
6998 the lwp field of ptid. Pass the full ptid to get_thread_regcache.
6999 * inf-ptrace.c (get_ptrace_pid): New function.
7000 (inf_ptrace_resume): Use it.
7001 * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified
7002 to the lower layer.
7003
d68e53f4
MM
70042015-03-03 Markus Metzger <markus.t.metzger@intel.com>
7005
7006 * nat/linux-btrace.c: Include sys/utsname.h.
7007 (linux_determine_kernel_ptr_bits): New.
7008 (linux_enable_bts): Call linux_determine_kernel_ptr_bits.
7009 * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero
7010 ptr_bits.
7011
986b6601
MM
70122015-03-03 Markus Metzger <markus.t.metzger@intel.com>
7013
7014 * btrace.c (ftrace_update_function): Treat return as tailcall for
7015 "_dl_runtime_resolve".
7016
ce0dfbea
MM
70172015-03-03 Markus Metzger <markus.t.metzger@intel.com>
7018
7019 * btrace.h (btrace_function) <lbegin, lend>: Remove.
7020 * btrace.c (ftrace_debug): Do not print the line range.
7021 (ftrace_skip_file, ftrace_update_lines): Remove.
7022 (ftrace_new_function): Remove lbegin and lend initialization.
7023 (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines.
7024 * record-btrace.c (btrace_compute_src_line_range): New.
7025 (btrace_call_history_src_line): Call btrace_compute_src_line_range.
7026
95e50b27
PA
70272015-03-02 Pedro Alves <palves@redhat.com>
7028
7029 * infrun.c (follow_exec): Delete all threads of the process except
7030 the event thread. Extended comments.
7031
00e474c2
JB
70322015-03-02 Joel Brobecker <brobecker@adacore.com>
7033
7034 * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false".
7035
cc7039d3
JB
70362015-03-02 Joel Brobecker <brobecker@adacore.com>
7037
7038 * utils.h: Remove <stdbool.h> #include.
7039 (producer_is_gcc): Change return type to "int".
7040 * utils.c (producer_is_gcc): Change return type to int.
7041 Return 1 instead of true, and 0 instead of false.
7042 Adjust function documentation accordingly.
7043
550bdf96
AA
70442015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
7045
7046 * s390-linux-nat.c (have_regset_vxrs): New static variable.
7047 (s390_linux_fetch_inferior_registers): Handle vector registers, if
7048 present.
7049 (s390_linux_store_inferior_registers): Likewise.
7050 (s390_get_hwcap): Remove function. Embed its logic...
7051 (s390_read_description): ...here. Yield a target description with
7052 vector registers if applicable.
7053 * s390-linux-tdep.c: Include "features/s390-vx-linux64.c",
7054 "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and
7055 "features/s390x-tevx-linux64.c".
7056 (struct gdbarch_tdep) <v0_full_regnum>: New field.
7057 (s390_dwarf_regmap): Add vector registers. Remove bogus entries
7058 for "GNU/Linux-specific registers".
7059 (s390_dwarf_reg_r0l): New enum value.
7060 (s390_dwarf_reg_to_regnum): Support vector registers.
7061 (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers
7062 of GPR lower halves.
7063 (regnum_is_vxr_full): New function.
7064 (s390_register_name): New function.
7065 (s390_pseudo_register_name): Handle v0-v15, which are composed of
7066 f0-f15 and v0l-v15l.
7067 (s390_pseudo_register_type): Likewise.
7068 (s390_pseudo_register_read): Likewise.
7069 (s390_pseudo_register_write): Likewise.
7070 (s390_value_from_register): Account for the fact that values are
7071 placed left-justified in vector registers.
7072 (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to
7073 the vector reggroup and omit them from the general reggroup.
7074 (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps.
7075 (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets.
7076 (s390_iterate_over_regset_sections): Add iterations for the two
7077 new vector regsets.
7078 (s390_core_read_description): Yield a target description with
7079 vector registers if applicable.
7080 (s390_gdbarch_init): Handle target descriptions with vector
7081 registers. Add "register_name" gdbarch method.
7082 (_initialize_s390_tdep): Call new tdesc initialization functions.
7083 * s390-linux-tdep.h (HWCAP_S390_VX): New macro.
7084 (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM)
7085 (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM)
7086 (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM)
7087 (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM)
7088 (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM)
7089 (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM)
7090 (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM)
7091 (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM)
7092 (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM)
7093 (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM)
7094 (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM)
7095 (S390_V30_REGNUM, S390_V31_REGNUM): New macros.
7096 (S390_NUM_REGS): Adjust value.
7097 (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare.
7098 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
7099 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise.
7100 * NEWS: Announce S/390 vector register support.
7101
446899e4
AA
71022015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
7103
7104 * features/s390-tevx-linux64.xml: New file.
7105 * features/s390-vx-linux64.xml: New file.
7106 * features/s390-vx.xml: New file.
7107 * features/s390x-tevx-linux64.xml: New file.
7108 * features/s390x-vx-linux64.xml: New file.
7109 * features/Makefile (WHICH): Add s390-vx-linux64,
7110 s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64.
7111 (s390-vx-linux64-expedite, s390-tevx-linux64-expedite)
7112 (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New
7113 macros.
7114 * features/s390-tevx-linux64.c: New generated file.
7115 * features/s390-vx-linux64.c: Likewise.
7116 * features/s390x-tevx-linux64.c: Likewise.
7117 * features/s390x-vx-linux64.c: Likewise.
7118 * regformats/s390-tevx-linux64.dat: Likewise.
7119 * regformats/s390-vx-linux64.dat: Likewise.
7120 * regformats/s390x-tevx-linux64.dat: Likewise.
7121 * regformats/s390x-vx-linux64.dat: Likewise.
7122
b7236fbe
DE
71232015-02-28 Doug Evans <xdje42@gmail.com>
7124
7125 * symtab.h (struct symtab) <next>: Fix comment.
7126
02e62830
SM
71272015-02-27 Simon Marchi <simon.marchi@ericsson.com>
7128
7129 * python/python.c (python_GdbModuleDef): Rename GdbMethods to
7130 python_GdbMethods.
7131
bf36a1e7
PA
71322015-02-27 Pedro Alves <palves@redhat.com>
7133
7134 * dtrace-probe.c (dtrace_probe_ops): Make extern.
7135
ad6aff7d
PA
71362015-02-27 Pedro Alves <palves@redhat.com>
7137
7138 * common/common-exceptions.h (exception_none): Declare.
7139 * common/common-exceptions.c (exception_none): Moved from
7140 exceptions.c.
7141 (exceptions_state_mc_init): Use exception_none.
7142 * exceptions.c (exception_none): Move to
7143 common/common-exceptions.c.
7144 * exceptions.h (exception_none): Move to
7145 common/common-exceptions.h.
7146
97c18565
PA
71472015-02-27 Pedro Alves <palves@redhat.com>
7148
7149 * main.c (catch_command_errors, catch_command_errors_const):
7150 Remove 'mask' argument. Adjust.
7151 (captured_main): Adjust callers.
7152
e992c591
PA
71532015-02-27 Pedro Alves <palves@redhat.com>
7154
7155 * python/python-internal.h: Include "extension-priv.h".
7156
64166036
PA
71572015-02-27 Pedro Alves <palves@redhat.com>
7158
7159 * breakpoint.h (enum print_stop_action): Move further up in the
7160 file.
7161
8a526fa6
PA
71622015-02-27 Pedro Alves <palves@redhat.com>
7163
7164 * gdbarch.sh: Include regcache.h.
7165 * gdbarch.h: Regenerate.
7166
0fa9c223
PA
71672015-02-27 Pedro Alves <palves@redhat.com>
7168
7169 * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>:
7170 Remove duplicate const.
7171 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove
7172 duplicate const.
7173
7cf99fb1
PA
71742015-02-27 Pedro Alves <palves@redhat.com>
7175
7176 * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST.
7177 * guile/guile.c (extension_language_guile): Use EXPORTED_CONST.
7178 * features/feature_to_c.sh: Tag the generated xml_builtin array
7179 with extern const in C++ mode.
7180
1424c16e
TT
71812015-02-27 Tom Tromey <tromey@redhat.com>
7182
7183 * minidebug.c (struct lzma_stream): Rename to ...
7184 (struct gdb_lzma_stream): ... this.
7185 (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust.
7186
10367c7c
PA
71872015-02-27 Pedro Alves <palves@redhat.com>
7188
7189 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New
7190 function.
7191 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7192 (mi_cmd_stack_list_variables): Use it.
7193
4180215b
PA
71942015-02-27 Pedro Alves <palves@redhat.com>
7195
7196 * x86-linux-nat.c (u_debugreg_offset): New function.
7197 (x86_linux_dr_get, x86_linux_dr_set): Use it.
7198
2f56f7c3
PA
71992015-02-27 Pedro Alves <palves@redhat.com>
7200
7201 * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward
7202 declaration.
7203 Include break-common.h.
7204
570dc176
TT
72052015-02-27 Tom Tromey <tromey@redhat.com>
7206 Pedro Alves <palves@redhat.com>
7207
7208 * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for
7209 local used to iterate over enums.
7210 * completer.c (signal_completer): Likewise.
7211 * i386-tdep.c (i386_stap_parse_special_token): Likewise.
7212 * rs6000-tdep.c (powerpc_set_vector_abi): Likewise.
7213 * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise.
7214 * tui/tui-layout.c (next_layout, prev_layout): Likewise.
7215 * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all)
7216 (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise.
7217 * tui-wingeneral.c (tui_refresh_all): Likewise.
7218
68c14faa
PA
72192015-02-27 Pedro Alves <palves@redhat.com>
7220
7221 * target.h: Include "infrun.h".
7222
749bab01
PA
72232015-02-27 Pedro Alves <palves@redhat.com>
7224
7225 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
7226
3c14e5a3
PA
72272015-02-27 Pedro Alves <palves@redhat.com>
7228
7229 * common/agent.h (IPA_SYM_EXPORTED_NAME): New.
7230 (IPA_SYM): Use it.
7231 * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros.
7232
56000a98
PA
72332015-02-27 Pedro Alves <palves@redhat.com>
7234
7235 * cli-out.c (_rl_erase_entire_line): Move declaration out of
7236 cli_mld_erase_entire_line, and make it extern "C".
7237 * common/common-defs.h (EXTERN_C): New.
7238 * completer.c (_rl_completion_prefix_display_length)
7239 (_rl_print_completions_horizontally, QSFUNC): Move declarations
7240 out of gdb_display_match_list_1.
7241 (_rl_qsort_string_compare): Move declaration out of
7242 gdb_display_match_list_1, and make it extern "C".
7243 * defs.h (re_comp): Use EXTERN_C.
7244 * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper,
7245 and make it extern "C".
7246 (monstartup): Move declaration out of maintenance_set_profile_cmd,
7247 and make it extern "C".
7248 (main): Move declaration out of maintenance_set_profile_cmd.
7249 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use
7250 EXTERN_C.
7251
bcabf420
PA
72522015-02-27 Pedro Alves <palves@redhat.com>
7253
7254 * python/python.c (GdbMethods): Rename to ...
7255 (python_GdbMethods): ... this and make extern.
7256 (GdbModuleDef): Rename to ...
7257 (python_GdbModuleDef): ... this and make extern.
7258
928dbe07
PA
72592015-02-27 Pedro Alves <palves@redhat.com>
7260
7261 * record-btrace.c (set_record_btrace_cmdlist)
7262 (show_record_btrace_cmdlist): Remove redefinitions.
7263
52059ffd
TT
72642015-02-27 Tom Tromey <tromey@redhat.com>
7265 Pedro Alves <palves@redhat.com>
7266
7267 * dwarf2-frame.c (enum cfa_how_kind, struct
7268 dwarf2_frame_state_reg_info): Move out of struct
7269 dwarf2_frame_state.
7270 * dwarf2read.c (struct tu_stats): Move out of struct
7271 dwarf2_per_objfile.
7272 (struct file_entry): Move out of struct line_header.
7273 (struct nextfield, struct nextfnfield, struct fnfieldlist, struct
7274 typedef_field_list): Move out of struct field_info.
7275 * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data):
7276 Move out of struct dynamic_prop.
7277 (union type_owner, union field_location, struct field, struct
7278 range_bounds, union type_specific): Move out of struct main_type.
7279 (struct fn_fieldlist, struct fn_field, struct typedef_field)
7280 (VOFFSET_STATIC): Move out of struct cplus_struct_type.
7281 (struct call_site_target, union call_site_parameter_u, struct
7282 call_site_parameter): Move out of struct call_site.
7283 * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct
7284 m32c_prologue.
7285 (enum srcdest_kind): Move out of struct srcdest.
7286 * main.c (enum cmdarg_kind): Move out of struct cmdarg.
7287 * prologue-value.h (enum prologue_value_kind): Move out of struct
7288 prologue_value.
7289 * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct
7290 gdbarch_tdep.
7291 * stabsread.c (struct nextfield, struct next_fnfieldlist): Move
7292 out of struct field_info.
7293 * symfile.h (struct other_sections): Move out of struct
7294 section_addr_info.
7295 * symtab.c (struct symbol_cache_slot): Move out struct
7296 block_symbol_cache.
7297 * target-descriptions.c (enum tdesc_type_kind): Move out of
7298 typedef struct tdesc_type.
7299 * tui/tui-data.h (enum tui_line_or_address_kind): Move out of
7300 struct tui_line_or_address.
7301 * value.c (enum internalvar_kind, union internalvar_data): Move
7302 out of struct internalvar.
7303 * xtensa-tdep.h (struct ctype_cache): Move out of struct
7304 gdbarch_tdep.
7305
fe978cb0
PA
73062015-02-27 Tom Tromey <tromey@redhat.com>
7307 Pedro Alves <palves@redhat.com>
7308
7309 Rename symbols whose names are reserved C++ keywords throughout.
7310
3bc3d82a
PA
73112015-02-27 Pedro Alves <palves@redhat.com>
7312
7313 * Makefile.in (COMPILER): New, get it from autoconf.
7314 (COMPILE.pre, CC_LD): Use COMPILER.
7315 (CXX): Get from autoconf instead.
7316 (CXX_FOR_TARGET): Default to g++ instead of gcc.
7317 * acinclude.m4: Include build-with-cxx.m4.
7318 * build-with-cxx.m4: New file.
7319 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
7320 Disable -Werror by default if building in C++ mode.
7321 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
7322 -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode.
7323 Run supported-warning-flags tests with the C++ compiler.
7324 Save/restore CXXFLAGS too.
7325 * configure: Regenerate.
7326
07697489
PA
73272015-02-27 Pedro Alves <palves@redhat.com>
7328
7329 * libiberty.m4: New file.
7330 * acinclude.m4: Include libiberty.m4.
7331 * configure.ac: Call libiberty_INIT.
7332 * config.in, configure: Regenerate.
7333
60abeae4
AA
73342015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com>
7335
7336 * s390-linux-tdep.c (s390_gcc_target_options): Not just handle
7337 31-bit targets, but 64-bit targets as well.
7338 (s390_gnu_triplet_regexp): New function.
7339 (s390_gdbarch_init): Set the gcc_target_options gdbarch method for
7340 64-bit targets as well. Set the gnu_triplet_regexp gdbarch
7341 method.
7342
f44466fb 73432015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch)
f0666312
JT
7344
7345 * windows-nat.c (CONTEXT_DEBUGGER): Remove.
7346 (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags
7347 from CONTEXT_DEBUGGER.
7348
0def5aaa
DE
73492015-02-26 Doug Evans <dje@google.com>
7350
7351 * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to
7352 CHECK_TYPEDEF.
7353 (set_type_vptr_fieldno): Ditto.
7354 (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto.
7355 * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto.
7356
77b64a49
PA
73572015-02-26 Pedro Alves <palves@redhat.com>
7358
7359 * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF.
7360 * complaints.c (vcomplaint): Pass argument FMT directly to
7361 printf-like functions instead of complaint->fmt.
7362 * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF.
7363 * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF.
7364 * compile/compile-loc2c.c (pushf, unary, binary): Add
7365 ATTRIBUTE_PRINTF.
7366 (do_compile_dwarf_expr_to_c): Pass string literal as format string
7367 to pushf.
7368 (BINARY): Pass string literal as format string to 'binary'.
7369 * compile/compile-object-load.c (link_callbacks_einfo): Add
7370 ATTRIBUTE_PRINTF.
7371 * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF.
7372
532f44ed
PA
73732015-02-26 Pedro Alves <palves@redhat.com>
7374
7375 * windows-termcap.c: Rename to ...
7376 * stub-termcap.c: ... this. Adjust header line.
7377 * Makefile.in (SFILES): Refer to stub-termcap.c instead of
7378 windows-termcap.c.
7379 * configure: Regenerate.
7380 * configure.ac: Refer to stub-termcap.o instead of
7381 windows-termcap.o.
7382 * gdb_curses.h: Mention stub-termcap.c instead of
7383 windows-termcap.c.
7384
081a1c2c
JK
73852015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7386
7387 * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym)
7388 (gcc_symbol_address): Call gnu_ifunc_resolve_addr.
7389
2f41223f
AT
73902015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
7391
7392 * gdb/infcmd.c (print_return_value): use type_to_string to print type.
7393
80c57053
JK
73942015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7395
7396 * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for
7397 bfd_canonicalize_symtab.
7398
cf424aef
JB
73992015-02-25 John Baldwin <jhb@FreeBSD.org>
7400
7401 * amd64fbsd-nat.c: Include sys/user.h.
7402 (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
7403 instead of KERN_PS_STRINGS to locate the signal trampoline.
7404 * i386fbsd-nat.c: Include sys/user.h.
7405 (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl
7406 instead of KERN_PS_STRINGS to locate the signal trampoline.
7407 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New.
7408 (amd64fbsd_sigtramp_p): New.
7409 (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No
7410 longer set default values.
7411 (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p".
7412 * i386fbsd-tdep.c (i386fbsd_sigtramp_start)
7413 (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end)
7414 (i386fbsd_freebsd4_sigtramp_start)
7415 (i386fbsd_freebsd4_sigtramp_middle)
7416 (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start)
7417 (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New.
7418 (i386fbsd_sigtramp_p): New.
7419 (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No
7420 longer set default values.
7421 (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p".
7422
c5cb74ee
JB
74232015-02-25 John Baldwin <jhb@freebsd.org>
7424
7425 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use
7426 get_frame_register instead of frame_unwind_register_unsigned.
7427
17487d85
JK
74282015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7429
7430 PR build/18033
7431 * compile/compile-c-support.c (c_compute_program): Change // comment.
7432 * compile/compile-object-load.c (setup_sections): Change // comment.
7433
9357a9e6
JB
74342015-02-26 Joel Brobecker <brobecker@adacore.com>
7435
7436 PR build/18033:
7437 * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment.
7438
1f10ba14
PA
74392015-02-23 Pedro Alves <palves@redhat.com>
7440
7441 * remote.c (skip_to_semicolon): New function.
7442 (remote_parse_stop_reply) <T stop reply>: Use it. Don't
7443 special case the stop reasons that look like hex numbers
7444 upfront. Instead handle real register numbers after matching
7445 all the known stop reasons.
7446
96553a0c
DE
74472015-02-21 Doug Evans <dje@google.com>
7448
7449 PR c++/17976, symtab/17821
7450 * cp-namespace.c (cp_search_static_and_baseclasses): New parameter
7451 is_in_anonymous. All callers updated.
7452 (find_symbol_in_baseclass): Ditto.
7453 (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks
7454 for symbols in an anonymous namespace.
7455 * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch
7456 DW_AT_name directly.
7457 (dwarf2_name): Convert missing namespace name to
7458 CP_ANONYMOUS_NAMESPACE_STR.
7459
2db9a427
PA
74602015-02-20 Pedro Alves <palves@redhat.com>
7461
7462 * linux-nat.c (linux_handle_extended_wait): Call
7463 thread_db_notice_clone whenever a new clone LWP is detected.
7464 (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New
7465 functions.
7466 * linux-nat.h (thread_db_attach_lwp): Delete declaration.
7467 (thread_db_notice_clone, linux_stop_and_wait_all_lwps)
7468 (linux_unstop_all_lwps): Declare.
7469 * linux-thread-db.c (struct thread_get_info_inout): Delete.
7470 (thread_get_info_callback): Delete.
7471 (thread_from_lwp): Use td_thr_get_info and record_thread.
7472 (thread_db_attach_lwp): Delete.
7473 (thread_db_notice_clone): New function.
7474 (try_thread_db_load_1): If /proc is mounted and shows the
7475 process'es task list, walk over all LWPs and call thread_from_lwp
7476 instead of relying on td_ta_thr_iter.
7477 (attach_thread): Don't call check_thread_signals here. Split the
7478 tail part of the function (which adds the thread to the core GDB
7479 thread list) to ...
7480 (record_thread): ... this function. Call check_thread_signals
7481 here.
7482 (thread_db_wait): Don't call thread_db_find_new_threads_1. Always
7483 call thread_from_lwp.
7484 (thread_db_update_thread_list): Rename to ...
7485 (thread_db_update_thread_list_org): ... this.
7486 (thread_db_update_thread_list): New function.
7487 (thread_db_find_thread_from_tid): Delete.
7488 (thread_db_get_ada_task_ptid): Simplify.
7489 * nat/linux-procfs.c: Include <sys/stat.h>.
7490 (linux_proc_task_list_dir_exists): New function.
7491 * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare.
7492
3b27ef47
PA
74932015-02-20 Pedro Alves <palves@redhat.com>
7494
7495 * linux-nat.c (lin_lwp_attach_lwp): No longer special case the
7496 main LWP. Handle the case of waitpid returning 0 if we're already
7497 attached to the LWP. Don't set the LWP's last_resume_kind to
7498 resume_stop if we already knew about the LWP.
7499 (linux_nat_filter_event): Add debug logs.
7500
1cc28231
PA
75012015-02-20 Pedro Alves <palves@redhat.com>
7502
7503 * target.h (forward_target_decr_pc_after_break): Delete
7504 declaration.
7505
5c5019c2
PA
75062015-02-20 Pedro Alves <palves@redhat.com>
7507
7508 PR threads/18006
7509 * linux-thread-db.c (thread_get_info_callback): Return early if
7510 the thread's lwp id is -1.
7511
f3978e91
JB
75122015-02-20 Joel Brobecker <brobecker@adacore.com>
7513
7514 GDB 7.9 released.
7515
ffdf88ec
SE
75162015-02-19 Steve Ellcey <sellcey@imgtec.com>
7517
7518 * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr.
7519 (dtrace_get_probes) Change type of variable 'dof'.
7520
c9587f88
AT
75212015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
7522
7523 PR breakpoints/16812
7524 * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV.
7525 * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add.
7526 * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint.
7527
53cf2ee0
DT
75282015-02-19 David Taylor <dtaylor@emc.com>
7529
7530 * common/ax.def (setv): Fix consumed entry in setv DEFOP.
7531
acfe0940
PP
75322015-02-18 Patrick Palka <patrick@parcs.ath.cx>
7533
7534 * tui/tui-io.c (tui_handle_resize_during_io): Remove this
7535 function.
7536 (tui_putc): Don't call tui_handle_resize_during_io.
7537 (tui_getc): Likewise.
7538 (tui_mld_getc): Likewise.
7539 * tui/tui-win.c: Include event-loop.h and tui/tui-io.h.
7540 (tui_sigwinch_token): New static variable.
7541 (tui_initialize_win): Adjust documentation. Set
7542 tui_sigwinch_token.
7543 (tui_async_resize_screen): New asynchronous callback.
7544 (tui_sigwinch_handler): Adjust documentation. Asynchronously
7545 invoke tui_async_resize_screen.
7546
f6a88844
JM
75472015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com>
7548
7549 * configure: Regenerated.
7550 * configure.ac: Use GDB_AC_TRANSFORM.
7551 * Makefile.in (aclocal_m4_deps): Added transform.m4.
7552 * acinclude.m4: sinclude transform.m4.
7553 * transform.m4: New file.
7554 (GDB_AC_TRANSFORM): New macro.
7555
b05e3b0d
JM
75562015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7557
7558 * NEWS: Announce the support for DTrace SDT probes.
7559
c3e3045e
JM
75602015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7561
7562 * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
7563 (amd64_dtrace_parse_probe_argument): New function.
7564 (amd64_dtrace_probe_is_enabled): Likewise.
7565 (amd64_dtrace_enable_probe): Likewise.
7566 (amd64_dtrace_disable_probe): Likewise.
7567 (amd64_linux_init_abi): Register the
7568 `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
7569 `gdbarch_dtrace_disable_probe' and
7570 `gdbarch_dtrace_probe_is_enabled' hooks.
7571 (amd64_dtrace_disabled_probe_sequence_1): New constant.
7572 (amd64_dtrace_disabled_probe_sequence_2): Likewise.
7573 (amd64_dtrace_enable_probe_sequence): Likewise.
7574 (amd64_dtrace_disable_probe_sequence): Likewise.
7575
d4777acb
JM
75762015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7577
7578 * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention
7579 the -probe-dtrace new vpossible value for PROBE_MODIFIER.
7580 * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can
7581 handle ELF files.
7582 * Makefile.in (SFILES): dtrace-probe.c added.
7583 * configure: Regenerate.
7584 * dtrace-probe.c: New file.
7585 (SHT_SUNW_dof): New constant.
7586 (dtrace_probe_type): New enum.
7587 (dtrace_probe_arg): New struct.
7588 (dtrace_probe_arg_s): New typedef.
7589 (struct dtrace_probe_enabler): New struct.
7590 (dtrace_probe_enabler_s): New typedef.
7591 (dtrace_probe): New struct.
7592 (dtrace_probe_is_linespec): New function.
7593 (dtrace_dof_sect_type): New enum.
7594 (dtrace_dof_dofh_ident): Likewise.
7595 (dtrace_dof_encoding): Likewise.
7596 (DTRACE_DOF_ENCODE_LSB): Likewise.
7597 (DTRACE_DOF_ENCODE_MSB): Likewise.
7598 (dtrace_dof_hdr): New struct.
7599 (dtrace_dof_sect): Likewise.
7600 (dtrace_dof_provider): Likewise.
7601 (dtrace_dof_probe): Likewise.
7602 (DOF_UINT): New macro.
7603 (DTRACE_DOF_PTR): Likewise.
7604 (DTRACE_DOF_SECT): Likewise.
7605 (dtrace_process_dof_probe): New function.
7606 (dtrace_process_dof): Likewise.
7607 (dtrace_build_arg_exprs): Likewise.
7608 (dtrace_get_arg): Likewise.
7609 (dtrace_get_probes): Likewise.
7610 (dtrace_get_probe_argument_count): Likewise.
7611 (dtrace_can_evaluate_probe_arguments): Likewise.
7612 (dtrace_evaluate_probe_argument): Likewise.
7613 (dtrace_compile_to_ax): Likewise.
7614 (dtrace_probe_destroy): Likewise.
7615 (dtrace_gen_info_probes_table_header): Likewise.
7616 (dtrace_gen_info_probes_table_values): Likewise.
7617 (dtrace_probe_is_enabled): Likewise.
7618 (dtrace_probe_ops): New variable.
7619 (info_probes_dtrace_command): New function.
7620 (_initialize_dtrace_probe): Likewise.
7621 (dtrace_type_name): Likewise.
7622
8b367e17
JM
76232015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7624
7625 * gdbarch.sh (dtrace_parse_probe_argument): New.
7626 (dtrace_probe_is_enabled): Likewise.
7627 (dtrace_enable_probe): Likewise.
7628 (dtrace_disable_probe): Likewise.
7629 * gdbarch.c: Regenerate.
7630 * gdbarch.h: Regenerate.
7631
9aca2ff8
JM
76322015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7633
7634 * stap-probe.c (stap_probe_ops): Add NULLs in the static
7635 stap_probe_ops for `enable_probe' and `disable_probe'.
7636 * probe.c (enable_probes_command): New function.
7637 (disable_probes_command): Likewise.
7638 (_initialize_probe): Define the cli commands `enable probe' and
7639 `disable probe'.
7640 (parse_probe_linespec): New function.
7641 (info_probes_for_ops): Use parse_probe_linespec.
7642 * probe.h (probe_ops): New hooks `enable_probe' and
7643 `disable_probe'.
7644
03e98035
JM
76452015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7646
7647 * probe.c (compute_probe_arg): Moved from stap-probe.c
7648 (compile_probe_arg): Likewise.
7649 (probe_funcs): Likewise.
7650 * stap-probe.c (compute_probe_arg): Moved to probe.c.
7651 (compile_probe_arg): Likewise.
7652 (probe_funcs): Likewise.
7653
6f9b8491
JM
76542015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com>
7655
7656 * probe.c (print_ui_out_not_applicables): New function.
7657 (exists_probe_with_pops): Likewise.
7658 (info_probes_for_ops): Do not include column headers for probe
7659 types for which no probe has been actually found on any object.
7660 Also invoke `print_ui_out_not_applicables' in order to match the
7661 column rows with the header when probes of several types are
7662 listed.
7663 Print the "Type" column.
7664 * probe.h (probe_ops): Added a new probe operation `type_name'.
7665 * stap-probe.c (stap_probe_ops): Add `stap_type_name'.
7666 (stap_type_name): New function.
7667
69efdff1
PP
76682015-02-17 Patrick Palka <patrick@parcs.ath.cx>
7669
7670 * tui/tui-io.c (tui_getc): Don't call key_is_command_char.
7671 (key_is_command_char): Delete.
7672
f8e5e23e
PA
76732015-02-17 Pedro Alves <palves@redhat.com>
7674
7675 * tui/tui.c (tui_enable): Resize windows before anything
7676 might show a window.
7677
9f2e0721
MO
76782015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com>
7679
7680 PR gdb/17984
7681 * aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
7682 (aarch64_linux_read_description): Remove initialize_tdesc_aarch64
7683 call.
7684 * aarch64-tdep.h (tdesc_aarch64): Declare.
7685
171e6b1c
MW
76862015-02-12 Mark Wielaard <mjw@redhat.com>
7687
7688 * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false".
7689
d5ff0482
DE
76902015-02-13 Doug Evans <dje@google.com>
7691
7692 * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter
7693 anonymous_namespace to is_in_anonymous for consistency with the rest
7694 of the file.
7695 (cp_lookup_bare_symbol): Fix typo in comment.
7696 (cp_search_static_and_baseclasses): Ditto.
7697 (search_symbol_list): Use vertical space in comment better.
7698 (reset_directive_searched): Ditto. Fix typo.
7699 (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter.
7700
9f04ac5f
YQ
77012015-02-13 Yao Qi <yao.qi@arm.com>
7702
7703 * MAINTAINERS: Update my email address.
7704
013d0319
DE
77052015-02-12 Doug Evans <dje@google.com>
7706
b615dd20 7707 * symtab.c (completion_list_add_name): Fix memory leak.
013d0319 7708
9a7e538e
DE
77092015-02-12 Doug Evans <dje@google.com>
7710
7711 * completer.c (complete_line): Remove incorrect comment.
7712
e1fcd575
JK
77132015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7714
7715 * python/py-framefilter.c (py_print_single_arg, enumerate_locals)
7716 (py_print_frame): Use RETURN_MASK_ERROR.
7717
b99bf4e3
JK
77182015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7719
7720 * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in
7721 function comment. Wrap all function that can throw in cleanups.
7722 (gdbpy_apply_frame_filter): Wrap all function that can throw in
7723 cleanups.
7724
800eb1ce
JK
77252015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7726
7727 * python/py-framefilter.c (py_print_frame): Substitute goto error.
7728 Remove the error label.
7729
34019068
JK
77302015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7731
7732 * python/py-framefilter.c (py_print_frame): Put conditional code paths
7733 with goto first, indent the former else codepath left. Put variable
7734 'elided' to a new inner block.
7735
8d4a54e2
JK
77362015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7737
7738 * python/py-framefilter.c (py_print_frame): Whitespacing fixes.
7739
18ad82c1
PA
77402015-02-11 Pedro Alves <palves@redhat.com>
7741
7742 * xcoffread.c (within_function): Delete.
7743
e36122e9
TT
77442015-02-11 Tom Tromey <tromey@redhat.com>
7745 Pedro Alves <palves@redhat.com>
7746
7747 * breakpoint.c (base_breakpoint_ops): Delete.
7748 * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern.
7749 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern.
7750 * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern.
7751 * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern.
7752 * python/py-arch.c (arch_object_type): Make extern.
7753 * python/py-block.c (block_syms_iterator_object_type): Make extern.
7754 * python/py-bpevent.c (breakpoint_event_object_type): Make extern.
7755 * python/py-cmd.c (cmdpy_object_type): Make extern.
7756 * python/py-continueevent.c (continue_event_object_type)
7757 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual'
7758 parameter. Update all callers.
7759 * python/py-evtregistry.c (eventregistry_object_type): Make extern.
7760 * python/py-exitedevent.c (exited_event_object_type): Make extern.
7761 * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern.
7762 * python/py-function.c (fnpy_object_type): Make extern.
7763 * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern.
7764 * python/py-infevents.c (call_pre_event_object_type)
7765 (inferior_call_post_event_object_type).
7766 (memory_changed_event_object_type): Make extern.
7767 * python/py-infthread.c (thread_object_type): Make extern.
7768 * python/py-lazy-string.c (lazy_string_object_type): Make extern.
7769 * python/py-linetable.c (linetable_entry_object_type)
7770 (linetable_object_type, ltpy_iterator_object_type): Make extern.
7771 * python/py-newobjfileevent.c (new_objfile_event_object_type)
7772 (clear_objfiles_event_object_type): Make extern.
7773 * python/py-objfile.c (objfile_object_type): Make extern.
7774 * python/py-param.c (parmpy_object_type): Make extern.
7775 * python/py-progspace.c (pspace_object_type): Make extern.
7776 * python/py-signalevent.c (signal_event_object_type): Make extern.
7777 * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern.
7778 * python/py-type.c (type_object_type, field_object_type)
7779 (type_iterator_object_type): Make extern.
7780 * python/python.c (python_extension_script_ops)
7781 (python_extension_ops): Make extern.
7782 * stap-probe.c (stap_probe_ops): Make extern.
7783
0703599a
PA
77842015-02-11 Pedro Alves <pedro@codesourcery.com>
7785
7786 * infrun.c (adjust_pc_after_break): Don't adjust the PC just
7787 because the event thread is not the current thread.
7788
eaaf76ab
DE
77892015-02-11 Doug Evans <xdje42@gmail.com>
7790
7791 * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't
7792 been initialized yet, return NULL.
7793
e7d52ed3
DE
77942015-02-11 Doug Evans <dje@google.com>
7795
7796 * symfile.h (new_symfile_objfile): Delete.
7797 * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile.
7798 All callers updated.
7799
fc6b1256
PP
78002015-02-11 Patrick Palka <patrick@parcs.ath.cx>
7801
7802 * tui/tui-io.c (tui_handle_resize_during_io): Call
7803 tui_update_gdb_sizes() after resizing the screen.
7804 * tui/tui.c (tui_enable): Resize the terminal before
7805 calling tui_update_gdb_sizes().
7806
d9080678
PP
78072015-02-11 Patrick Palka <patrick@parcs.ath.cx>
7808
7809 * tui/tui-io.c (tui_getc): Move cursor to the end of the command
7810 line before printing a newline.
7811
9f615e3a
MW
78122015-02-11 Mark Wielaard <mjw@redhat.com>
7813
7814 * utils.c (producer_is_gcc): Return true or false.
7815
d9080678 78162015-02-10 Mark Wielaard <mjw@redhat.com>
b1ffba5a
MW
7817
7818 * utils.h (producer_is_gcc): Change return type to bool. Add major
7819 argument.
7820 * utils.c (producer_is_gcc): Likewise.
7821 (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
7822 * dwarf2read.c (check_producer): Likewise.
7823
b052c4fb
PA
78242015-02-10 Pedro Alves <palves@redhat.com>
7825
7826 * infrun.c (displaced_step_fixup): Switch to the event thread
7827 before calling gdbarch_displaced_step_fixup.
7828
3ac240d4
AT
78292015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
7830
7831 * MAINTAINERS (Write After Approval): Add Antoine Tremblay.
7832
c1cc6152
SM
78332015-02-10 Simon Marchi <simon.marchi@ericsson.com>
7834
7835 * ada-varobj.c (ada_name_of_child): Constify parent.
7836 (ada_path_expr_of_child): Same.
7837 (ada_value_of_child): Same.
7838 (ada_type_of_child): Same.
7839 * c-varobj.c (c_is_path_expr_parent): Same.
7840 (c_describe_child): Same.
7841 (c_name_of_child): Same.
7842 (c_value_of_child): Same.
7843 (c_type_of_child): Same.
7844 (cplus_number_of_children): Same.
7845 (cplus_describe_child): Constify var.
7846 (cplus_name_of_child): Constify parent.
7847 (cplus_value_of_child): Same.
7848 (cplus_type_of_child): Same.
7849 * jv-varobj.c (java_name_of_child): Same.
7850 (java_value_of_child): Same.
7851 (java_type_of_child): Same.
7852 * varobj.c (value_of_child): Same.
7853 (varobj_default_is_path_expr_parent): Constify var, parent and return
7854 value.
7855 (varobj_get_path_expr): Constify var, modify path_expr through
7856 mutable_var.
7857 (install_new_value): Constify parent.
7858 (value_of_child): Constify parent.
7859 * varobj.h (struct varobj): Constify parent.
7860 (struct lang_varobj_ops): Constify name_of_child, value_of_child and
7861 type_of_child.
7862 (varobj_get_path_expr): Constify var.
7863 (varobj_get_path_expr_parent): Constify var and return value.
7864
c1ee9414
LM
78652015-02-10 Luis Machado <lgustavo@codesourcery.com>
7866
7867 * arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
7868 (arm_prologue_this_id): Move PC and SP limit checks to
7869 arm_prologue_unwind_stop_reason.
7870 (arm_prologue_unwind) <stop_reason> : Set to
7871 arm_prologue_unwind_stop_reason.
7872
f7de9aab
MW
78732015-02-09 Mark Wielaard <mjw@redhat.com>
7874
7875 * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and
7876 DW_LANG_Fortran08 as language_fortran.
7877
0b24eb2d
SDJ
78782015-02-09 Sergio Durigan Junior <sergiodj@redhat.com>
7879
7880 PR remote/17946
7881 * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
7882 of pointer against char.
7883
a2c2acaf
MW
78842015-02-09 Mark Wielaard <mjw@redhat.com>
7885
7886 * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'.
7887 (c_type_print_modifier): Likewise.
7888 * dwarf2read.c (read_tag_atomic_type): New function.
7889 (read_type_die_1): Handle DW_TAG_atomic_type.
7890 * gdbtypes.c (make_atomic_type): New function.
7891 (recursive_dump_type): Handle TYPE_ATOMIC.
7892 * gdbtypes.h (enum type_flag_values): Renumber.
7893 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC.
7894 (TYPE_ATOMIC): New macro.
7895 (make_atomic_type): Declare.
7896
31fd9caa
MM
78972015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7898
7899 * btrace.c (ftrace_find_call): Skip gaps.
7900 (ftrace_new_function): Initialize level.
7901 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return)
7902 (ftrace_new_switch): Update
7903 level computation.
7904 (ftrace_new_gap): New.
7905 (ftrace_update_function): Create new function after gap.
7906 (btrace_compute_ftrace_bts): Create gap on error.
7907 (btrace_stitch_bts): Update parameters. Clear trace if it
7908 becomes empty.
7909 (btrace_stitch_trace): Update parameters. Update callers.
7910 (btrace_clear): Reset the number of gaps.
7911 (btrace_insn_get): Return NULL if the iterator points to a gap.
7912 (btrace_insn_number): Return zero if the iterator points to a gap.
7913 (btrace_insn_end): Allow gaps at the end.
7914 (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps.
7915 (btrace_find_insn_by_number): Assert that the found iterator does
7916 not point to a gap.
7917 (btrace_call_next, btrace_call_prev): Assert that the last function
7918 is not a gap.
7919 * btrace.h (btrace_bts_error): New.
7920 (btrace_function): Update comment.
7921 (btrace_function) <insn, insn_offset, number>: Update comment.
7922 (btrace_function) <errcode>: New.
7923 (btrace_thread_info) <ngaps>: New.
7924 (btrace_thread_info) <replay>: Update comment.
7925 (btrace_insn_get): Update comment.
7926 * record-btrace.c (btrace_ui_out_decode_error): New.
7927 (record_btrace_info): Print number of gaps.
7928 (btrace_insn_history, btrace_call_history): Call
7929 btrace_ui_out_decode_error for gaps.
7930 (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps.
7931
afb778a2
MM
79322015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7933
7934 * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New.
7935 * nat/linux-btrace.c: (btrace_this_cpu): New.
7936 (cpu_supports_bts): Call btrace_this_cpu.
7937 (intel_supports_bts): Add cpu parameter.
7938
7d5c24b3
MM
79392015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7940
7941 * btrace.h (btrace_insn_class): New.
7942 (btrace_insn) <size, iclass>: New.
7943 * btrace.c (ftrace_find_call): Update parameters. Update users.
7944 Use instruction classification.
7945 (ftrace_new_return): Update parameters. Update users.
7946 (ftrace_update_function): Update parameters. Update users. Use
7947 instruction classification.
7948 (ftrace_update_insns): Update parameters. Update users.
7949 (ftrace_classify_insn): New.
7950 (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add
7951 TRY_CATCH around call to gdb_insn_length.
7952
76235df1
MM
79532015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7954
7955 * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace):
7956 Update parameters. Update users.
7957
d33501a5
MM
79582015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7959
7960 * btrace.c (parse_xml_btrace_conf_bts): Add size.
7961 (btrace_conf_bts_attributes): New.
7962 (btrace_conf_children): Add attributes.
7963 * common/btrace-common.h (btrace_config_bts): New.
7964 (btrace_config)<bts>: New.
7965 (btrace_config): Update comment.
7966 * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
7967 Use config.
7968 * features/btrace-conf.dtd: Increment version. Add size
7969 attribute to bts element.
7970 * record-btrace.c (set_record_btrace_bts_cmdlist,
7971 show_record_btrace_bts_cmdlist): New.
7972 (record_btrace_adjust_size, record_btrace_print_bts_conf,
7973 record_btrace_print_conf, cmd_set_record_btrace_bts,
7974 cmd_show_record_btrace_bts): New.
7975 (record_btrace_info): Call record_btrace_print_conf.
7976 (_initialize_record_btrace): Add commands.
7977 * remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
7978 (remote_protocol_features): Add Qbtrace-conf:bts:size packet.
7979 (btrace_sync_conf): Synchronize bts size.
7980 (_initialize_remote): Add Qbtrace-conf:bts:size packet.
7981 * NEWS: Announce new commands and new packets.
7982
f4abbc16
MM
79832015-02-09 Markus Metzger <markus.t.metzger@intel.com>
7984
7985 * Makefile.in (XMLFILES): Add btrace-conf.dtd.
7986 * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
7987 (x86_linux_btrace_conf): New.
7988 (x86_linux_create_target): Initialize to_btrace_conf.
7989 * nat/linux-btrace.c (linux_enable_btrace): Update parameters.
7990 Check format. Split into this and ...
7991 (linux_enable_bts): ... this.
7992 (linux_btrace_conf): New.
7993 (perf_event_skip_record): Renamed into ...
7994 (perf_event_skip_bts_record): ... this. Updated users.
7995 (linux_disable_btrace): Split into this and ...
7996 (linux_disable_bts): ... this.
7997 (linux_read_btrace): Check format.
7998 * nat/linux-btrace.h (linux_enable_btrace): Update parameters.
7999 (linux_btrace_conf): New.
8000 (btrace_target_info)<ptid>: Moved.
8001 (btrace_target_info)<conf>: New.
8002 (btrace_target_info): Split into this and ...
8003 (btrace_tinfo_bts): ... this. Updated users.
8004 * btrace.c (btrace_enable): Update parameters.
8005 (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
8006 (btrace_conf_children, btrace_conf_attributes)
8007 (btrace_conf_elements): New.
8008 * btrace.h (btrace_enable): Update parameters.
8009 (btrace_conf, parse_xml_btrace_conf): New.
8010 * common/btrace-common.h (btrace_config): New.
8011 * feature/btrace-conf.dtd: New.
8012 * record-btrace.c (record_btrace_conf): New.
8013 (record_btrace_cmdlist): New.
8014 (record_btrace_enable_warn, record_btrace_open): Pass
8015 &record_btrace_conf.
8016 (record_btrace_info): Print recording format.
8017 (cmd_record_btrace_bts_start): New.
8018 (cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
8019 (_initialize_record_btrace): Add "record btrace bts" subcommand.
8020 Add "record bts" alias command.
8021 * remote.c (remote_state)<btrace_config>: New.
8022 (remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
8023 (remote_protocol_features): Add qXfer:btrace-conf:read.
8024 (remote_open_1): Call remote_btrace_reset.
8025 (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
8026 (btrace_target_info)<conf>: New.
8027 (btrace_sync_conf, btrace_read_config): New.
8028 (remote_enable_btrace): Update parameters. Call btrace_sync_conf and
8029 btrace_read_conf.
8030 (remote_btrace_conf): New.
8031 (init_remote_ops): Initialize to_btrace_conf.
8032 (_initialize_remote): Add qXfer:btrace-conf packet.
8033 * target.c (target_enable_btrace): Update parameters.
8034 (target_btrace_conf): New.
8035 * target.h (target_enable_btrace): Update parameters.
8036 (target_btrace_conf): New.
8037 (target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
8038 (target_ops)<to_enable_btrace>: Update parameters and comment.
8039 (target_ops)<to_btrace_conf>: New.
8040 * target-delegates: Regenerate.
8041 * target-debug.h (target_debug_print_const_struct_btrace_config_p)
8042 (target_debug_print_const_struct_btrace_target_info_p): New.
8043 * NEWS: Announce new command and new packet.
8044
aadf7753
MM
80452015-02-09 Markus Metzger <markus.t.metzger@intel.com>
8046
8047 * nat/linux-btrace.h (perf_event_buffer): New.
8048 (btrace_target_info) <buffer, size, data_head>: Replace with ...
8049 <bts>: ... this.
8050 * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size)
8051 (perf_event_buffer_size, perf_event_buffer_begin)
8052 (perf_event_buffer_end, linux_btrace_has_changed): Removed.
8053 Updated users.
8054 (perf_event_new_data): New.
8055
043c3577
MM
80562015-02-09 Markus Metzger <markus.t.metzger@intel.com>
8057
8058 * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS.
8059 * record-btrace.c (record_btrace_open): Remove call to
8060 target_supports_btrace.
8061 * remote.c (remote_supports_btrace): Update parameters.
8062 * target.c (target_supports_btrace): Update parameters.
8063 * target.h (to_supports_btrace, target_supports_btrace): Update
8064 parameters.
8065 * target-delegates.c: Regenerate.
8066 * target-debug.h (target_debug_print_enum_btrace_format): New.
8067 * nat/linux-btrace.c
8068 (kernel_supports_btrace): Rename into ...
8069 (kernel_supports_bts): ... this. Update users. Update warning text.
8070 (intel_supports_btrace): Rename into ...
8071 (intel_supports_bts): ... this. Update users.
8072 (cpu_supports_btrace): Rename into ...
8073 (cpu_supports_bts): ... this. Update users.
8074 (linux_supports_btrace): Update parameters. Split into this and ...
8075 (linux_supports_bts): ... this.
8076 * nat/linux-btrace.h (linux_supports_btrace): Update parameters.
8077
734b0e4b
MM
80782015-02-09 Markus Metzger <markus.t.metzger@intel.com>
8079
8080 * Makefile.in (SFILES): Add common/btrace-common.c.
8081 (COMMON_OBS): Add common/btrace-common.o.
8082 (btrace-common.o): Add build rules.
8083 * btrace.c (parse_xml_btrace): Update parameters.
8084 (parse_xml_btrace_block): Set format field.
8085 (btrace_add_pc, btrace_fetch): Use struct btrace_data.
8086 (do_btrace_data_cleanup, make_cleanup_btrace_data): New.
8087 (btrace_compute_ftrace): Split into this and...
8088 (btrace_compute_ftrace_bts): ...this.
8089 (btrace_stitch_trace): Split into this and...
8090 (btrace_stitch_bts): ...this.
8091 * btrace.h (parse_xml_btrace): Update parameters.
8092 (make_cleanup_btrace_data): New.
8093 * common/btrace-common.c: New.
8094 * common/btrace-common.h: Include common-defs.h.
8095 (btrace_block_s): Update comment.
8096 (btrace_format): New.
8097 (btrace_format_string): New.
8098 (btrace_data_bts): New.
8099 (btrace_data): New.
8100 (btrace_data_init, btrace_data_fini, btrace_data_empty): New.
8101 * remote.c (remote_read_btrace): Update parameters.
8102 * target.c (target_read_btrace): Update parameters.
8103 * target.h (target_read_btrace): Update parameters.
8104 (target_ops)<to_read_btrace>: Update parameters.
8105 * x86-linux-nat.c (x86_linux_read_btrace): Update parameters.
8106 * target-delegates.c: Regenerate.
8107 * target-debug (target_debug_print_struct_btrace_data_p): New.
8108 * nat/linux-btrace.c (linux_read_btrace): Split into this and...
8109 (linux_read_bts): ...this.
8110 * nat/linux-btrace.h (linux_read_btrace): Update parameters.
8111
bd2e0e9e
DE
81122015-02-06 Doug Evans <dje@google.com>
8113
8114 * remote-m32r-sdi.c: Include symfile.h.
8115
f176c4b5
DE
81162015-02-06 Doug Evans <dje@google.com>
8117
8118 * symtab.h (clear_symtab_users, deduce_language_from_filename): Move
8119 * symfile.h (clear_symtab_users, deduce_language_from_filename): ...
8120 to here.
8121
d6c146e9
PA
81222015-02-06 Pedro Alves <palves@redhat.com>
8123
8124 * linux-thread-db.c (find_new_threads_callback): Add debug output.
8125
b9d61307
SM
81262015-02-06 Simon Marchi <simon.marchi@ericsson.com>
8127
8128 PR gdb/15678
8129 * breakpoint.c (map_breakpoint_numbers): Check for empty args string.
8130 (enable_count_command): Check args for NULL value.
8131
e9fbd043
DE
81322015-02-05 Doug Evans <xdje42@gmail.com>
8133
8134 * guile/scm-frame.c: Fix spelling errors in a comment.
8135
881d5d5d
JK
81362015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8137
8138 * python/python-internal.h (Py_hash_t): Define it for Python <3.2.
8139 * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the
8140 return type.
8141
20ba1ce6
PA
81422015-02-04 Pedro Alves <palves@redhat.com>
8143
8144 * linux-nat.c (handle_extended_wait): Don't resume LWPs here.
8145 (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait
8146 returns true.
8147 (resume_stopped_resumed_lwps): Don't check whether the thread is
8148 marked as executing.
8149 (linux_nat_wait_1): Use resume_stopped_resumed_lwps.
8150
f962539a
AA
81512015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
8152
8153 * regset.h (struct regset): Add flags field.
8154 (REGSET_VARIABLE_SIZE): New value for a regset's flags field.
8155 * corelow.c (get_core_register_section): Add warning if the size
8156 exceeds the requested size and the regset does not have the
8157 REGSET_VARIABLE_SIZE flag set.
8158 * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE
8159 flag.
8160 * armbsd-tdep.c (armbsd_gregset): Likewise.
8161 * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise.
8162 * hppaobsd-tdep.c (hppaobsd_gregset): Likewise.
8163 * m68kbsd-tdep.c (m68kbsd_gregset): Likewise.
8164 * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise.
8165
dde9acd6
AA
81662015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
8167
8168 * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections):
8169 For ".reg-xstate", explicitly specify the requested section size
8170 via X86_XSTATE_SIZE instead of just 0 on input and
8171 X86_XSTATE_MAX_SIZE on output.
8172 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections):
8173 Likewise.
8174
1528345d
AA
81752015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
8176
8177 PR corefiles/17808:
8178 * gdbarch.sh (iterate_over_regset_sections_cb): Document this
8179 function type, particularly its SIZE parameter.
8180 * gdbarch.h: Regenerate.
8181 * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare
8182 actual against required size using ">=" instead of "==".
8183 (amd64_collect_fpregset): Likewise.
8184 * i386-tdep.c (i386_supply_gregset): Likewise.
8185 (i386_collect_gregset): Likewise.
8186 (i386_supply_fpregset): Likewise.
8187 (i386_collect_fpregset): Likewise.
8188 * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise.
8189 (mips_fill_gregset_wrapper): Likewise.
8190 (mips_supply_fpregset_wrapper): Likewise.
8191 (mips_fill_fpregset_wrapper): Likewise.
8192 (mips64_supply_gregset_wrapper): Likewise.
8193 (mips64_fill_gregset_wrapper): Likewise.
8194 (mips64_supply_fpregset_wrapper): Likewise.
8195 (mips64_fill_fpregset_wrapper): Likewise.
8196 * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise.
8197 (am33_supply_fpregset_method): Likewise.
8198 (am33_collect_gregset_method): Likewise.
8199 (am33_collect_fpregset_method): Likewise.
8200
518be979
DE
82012015-02-04 Doug Evans <dje@google.com>
8202 Pedro Alves <palves@redhat.com>
8203 Eli Zaretskii <eliz@gnu.org>
8204
8205 PR tui/17810
8206 * tui/tui-command.c (tui_refresh_cmd_win): New function.
8207 * tui/tui-command.c (tui_refresh_cmd_win): Declare.
8208 * tui/tui-file.c: #include tui/tui-command.h.
8209 (tui_file_fputs): Refresh command window if stream is not gdb_stdout.
8210 (tui_file_flush): Refresh command window if stream is gdb_stdout.
8211 * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush.
8212
80bd5fab
PA
82132015-02-04 Pedro Alves <palves@redhat.com>
8214
8215 Fix build breakage.
8216 * event-loop.c (gdb_do_one_event): Add default switch case.
8217
a7606d80
JK
82182015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8219
8220 Filter out inferior gcc option -fpreprocessed.
8221 * compile/compile.c (filter_args): New function.
8222 (get_args): Use it.
8223
70b66289
PA
82242015-02-03 Pedro Alves <palves@redhat.com>
8225
8226 * event-loop.c: Don't declare nor define a queue type for
8227 gdb_event_p.
8228 (event_queue): Delete.
8229 (create_event, create_file_event, gdb_event_xfree)
8230 (initialize_event_loop, process_event): Delete.
8231 (gdb_do_one_event): Return as soon as one event is handled.
8232 (handle_file_event): Change prototype. Used the passed in
8233 file_handler pointer and ready_mask instead of looping over all
8234 file handlers.
8235 (gdb_wait_for_event): Update the poll/select timeouts before
8236 blocking. Run event handlers directly instead of queueing events.
8237 Return as soon as one event is handled.
8238 (struct async_event_handler_data): Delete.
8239 (invoke_async_event_handler): Delete.
8240 (check_async_event_handlers): Change return type to int. Run
8241 event handlers directly instead of queueing events. Return as
8242 soon as one event is handled.
8243 (handle_timer_event): Delete.
8244 (update_wait_timeout): New function, factored out from
8245 poll_timers.
8246 (poll_timers): Reimplement.
8247 * event-loop.h (initialize_event_loop): Delete declaration.
8248 * top.c (gdb_init): Don't call initialize_event_loop.
8249
b7d2e916
PA
82502015-02-03 Pedro Alves <palves@redhat.com>
8251
8252 * event-loop.c (clear_async_event_handler): New function.
8253 * event-loop.h (clear_async_event_handler): New declaration.
8254 * record-btrace.c (record_btrace_async): New function.
8255 (init_record_btrace_ops): Install record_btrace_async.
8256 * record-full.c (record_full_async): New function.
8257 (record_full_resume): Don't mark the async event source here.
8258 (init_record_full_ops): Install record_full_async.
8259 (record_full_core_resume): Don't mark the async event source here.
8260 (init_record_full_core_ops): Install record_full_async.
8261 * remote.c (remote_async): Mark and clear the async stop reply
8262 queue event-loop token as appropriate.
8263
d9d41e78
PA
82642015-02-03 Pedro Alves <palves@redhat.com>
8265
8266 * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use
8267 target_is_async_p instead of target_can_async.
8268 (linux_nat_wait): Use target_is_async_p instead of
8269 target_can_async. Don't enable async here.
8270 * remote.c (interrupt_query, remote_wait, putpkt_binary): Use
8271 target_is_async_p instead of target_can_async.
8272
aa3de267
SM
82732015-02-02 Simon Marchi <simon.marchi@ericsson.com>
8274
8275 * varobj.h (lang_varobj_ops): Mention which return values need
8276 to be freed.
8277
2c811c0f
JB
82782015-02-02 Joel Brobecker <brobecker@adacore.com>
8279
8280 * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker.
8281
b1eedac9
JB
82822015-02-02 Joel Brobecker <brobecker@adacore.com>
8283
8284 PR gdb/17856:
8285 * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache
8286 results found in the cache.
8287
66c168ae
JB
82882015-02-02 Joel Brobecker <brobecker@adacore.com>
8289
8290 PR gdb/17854:
8291 * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache
8292 when allocating a new one.
8293
4bdc02b2
TT
82942015-02-01 Tom Tromey <tom@tromey.com>
8295
8296 * MAINTAINERS: Remove myself.
8297
ae6ae975
DE
82982015-01-31 Doug Evans <xdje42@gmail.com>
8299
8300 * dwarf2read.c (process_structure_scope): Update setting of
8301 TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO.
8302 * gdbtypes.c (internal_type_vptr_fieldno): New function.
8303 (set_type_vptr_fieldno): New function.
8304 (internal_type_vptr_basetype): New function.
8305 (set_type_vptr_basetype): New function.
8306 (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO,
8307 TYPE_VPTR_BASETYPE.
8308 (allocate_cplus_struct_type): Initialize vptr_fieldno.
8309 (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ...
8310 (print_cplus_stuff): ... moved here.
8311 (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE.
8312 * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype
8313 moved to ...
8314 (struct cplus_struct_type): ... here. All uses updated.
8315 (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite.
8316 (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare.
8317 (internal_type_vptr_basetype, set_type_vptr_basetype): Declare.
8318 * stabsread.c (read_tilde_fields): Update setting of
8319 TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE.
8320
09e2d7c7
DE
83212015-01-31 Doug Evans <xdje42@gmail.com>
8322
8323 * cp-valprint.c (cp_find_class_member): Rename parameter domain_p
8324 to self_p.
8325 (cp_print_class_member): Rename local domain to self_type.
8326 * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local
8327 domain_type to self_type.
8328 (set_die_type) <need_gnat_info>: Handle
8329 TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD.
8330 * gdb-gdb.py (StructMainTypePrettyPrinter): Handle
8331 TYPE_SPECIFIC_SELF_TYPE.
8332 * gdbtypes.c (internal_type_self_type): New function.
8333 (set_type_self_type): New function.
8334 (smash_to_memberptr_type): Rename parameter domain to self_type.
8335 Update setting of TYPE_SELF_TYPE.
8336 (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE.
8337 (smash_to_method_type): Rename parameter domain to self_type.
8338 Update setting of TYPE_SELF_TYPE.
8339 (check_stub_method): Call smash_to_method_type.
8340 (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE.
8341 (copy_type_recursive): Ditto.
8342 * gdbtypes.h (enum type_specific_kind): New value
8343 TYPE_SPECIFIC_SELF_TYPE.
8344 (struct main_type) <type_specific>: New member self_type.
8345 (struct cplus_struct_type) <fn_field.type>: Update comment.
8346 (TYPE_SELF_TYPE): Rewrite.
8347 (internal_type_self_type, set_type_self_type): Declare.
8348 * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to
8349 self_type.
8350 (gnuv3_method_ptr_to_value): Rename local domain_type to self_type.
8351 * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with
8352 TYPE_TARGET_TYPE.
8353 * stabsread.c (read_member_functions): Mark methods with
8354 TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of
8355 TYPE_SELF_TYPE.
8356
4bfb94b8
DE
83572015-01-31 Doug Evans <xdje42@gmail.com>
8358
8359 * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE.
8360 All uses updated.
8361
5f4ce105
DE
83622015-01-31 Doug Evans <xdje42@gmail.com>
8363
8364 * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs
8365 or unions. Return zero if union.
8366 (gnuv3_get_vtable): Call check_typedef. Assert only passed structs.
8367 (gnuv3_rtti_type): Pass already-check_typedef'd value to
8368 gnuv3_get_vtable.
8369 (compute_vtable_size): Assert only passed structs.
8370 (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs.
8371
f6b3afbf
DE
83722015-01-31 Doug Evans <xdje42@gmail.com>
8373
8374 * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD
8375 kinds.
8376
cfb069a8
GB
83772015-01-31 Gary Benson <gbenson@redhat.com>
8378 Doug Evans <dje@google.com>
8379
8380 PR cli/9007
8381 PR cli/11920
8382 PR cli/15548
8383 * cli/cli-cmds.c (complete_command): Notify user if max-completions
8384 reached.
8385 * common/common-exceptions.h (enum errors)
8386 <MAX_COMPLETIONS_REACHED_ERROR>: New value.
8387 * completer.h (get_max_completions_reached_message): New declaration.
8388 (max_completions): Likewise.
8389 (completion_tracker_t): New typedef.
8390 (new_completion_tracker): New declaration.
8391 (make_cleanup_free_completion_tracker): Likewise.
8392 (maybe_add_completion_enum): New enum.
8393 (maybe_add_completion): New declaration.
8394 (throw_max_completions_reached_error): Likewise.
8395 * completer.c (max_completions): New global variable.
8396 (new_completion_tracker): New function.
8397 (free_completion_tracker): Likewise.
8398 (make_cleanup_free_completion_tracker): Likewise.
8399 (maybe_add_completions): Likewise.
8400 (throw_max_completions_reached_error): Likewise.
8401 (complete_line): Remove duplicates and limit result to max_completions
8402 entries.
8403 (get_max_completions_reached_message): New function.
8404 (gdb_display_match_list): Handle max_completions.
8405 (_initialize_completer): New declaration and function.
8406 * symtab.c: Include completer.h.
8407 (completion_tracker): New static variable.
8408 (completion_list_add_name): Call maybe_add_completion.
8409 (default_make_symbol_completion_list_break_on_1): Renamed from
8410 default_make_symbol_completion_list_break_on. Maintain
8411 completion_tracker across calls to completion_list_add_name.
8412 (default_make_symbol_completion_list_break_on): New function.
8413 * top.c (init_main): Set rl_completion_display_matches_hook.
8414 * tui/tui-io.c: Include completer.h.
8415 (tui_old_rl_display_matches_hook): New static global.
8416 (tui_rl_display_match_list): Notify user if max-completions reached.
8417 (tui_setup_io): Save/restore rl_completion_display_matches_hook.
8418 * NEWS (New Options): Mention set/show max-completions.
8419
e11c72c7
GB
84202015-01-31 Gary Benson <gbenson@redhat.com>
8421
8422 * symtab.c (struct add_name_data) <code>: New field.
8423 Updated comments.
8424 (add_symtab_completions): New function.
8425 (symtab_expansion_callback): Likewise.
8426 (default_make_symbol_completion_list_break_on): Set datum.code.
8427 Move minimal symbol scan before calling expand_symtabs_matching.
8428 Scan known primary symtabs for externs and statics before calling
8429 expand_symtabs_matching. Pass symtab_expansion_callback as
8430 expansion_notify argument to expand_symtabs_matching. Do not scan
8431 primary symtabs for externs and statics after calling
8432 expand_symtabs_matching.
8433
276d885b
GB
84342015-01-31 Gary Benson <gbenson@redhat.com>
8435
8436 * symfile.h (expand_symtabs_exp_notify_ftype): New typedef.
8437 (struct quick_symbol_functions) <expand_symtabs_matching>:
8438 New argument expansion_notify. All uses updated.
8439 (expand_symtabs_matching): New argument expansion_notify.
8440 All uses updated.
8441 * symfile-debug.c (debug_qf_expand_symtabs_matching):
8442 Also print expansion notify.
8443 * symtab.c (expand_symtabs_matching_via_partial): Call
8444 expansion_notify whenever a partial symbol table is expanded.
8445 * dwarf2read.c (dw2_expand_symtabs_matching): Call
8446 expansion_notify whenever a symbol table is instantiated.
8447
82083d6d
DE
84482015-01-31 Doug Evans <xdje42@gmail.com>
8449
8450 * cli-out.c: #include completer.h, readline/readline.h.
8451 (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions.
8452 (cli_mld_flush, cld_mld_erase_entire_line): Ditto.
8453 (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto.
8454 * cli-out.h (cli_display_match_list): Declare.
8455 * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros.
8456 (ELLIPSIS_LEN): Ditto.
8457 (gdb_get_y_or_n, gdb_display_match_list_pager): New functions.
8458 (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto.
8459 (gdb_fnprint, gdb_print_filename): Ditto.
8460 (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto.
8461 (gdb_display_match_list): Ditto.
8462 * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs.
8463 (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto.
8464 (mld_beep_ftype, mld_read_key_ftype): Ditto.
8465 (match_list_displayer): New struct.
8466 (gdb_display_match_list): Declare.
8467 * top.c (init_main): Set rl_completion_display_matches_hook.
8468 * tui/tui-io.c: #include completer.h.
8469 (printable_part, PUTX, print_filename, get_y_or_n): Delete.
8470 (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions.
8471 (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto.
8472 (tui_mld_getc, tui_mld_read_key): Ditto.
8473 (tui_rl_display_match_list): Rewrite.
8474 (tui_handle_resize_during_io): New arg for_completion. All callers
8475 updated.
8476
f57d2163
DE
84772015-01-31 Doug Evans <xdje42@gmail.com>
8478
8479 Add symbol lookup cache.
8480 * NEWS: Document new options and commands.
8481 * symtab.c (symbol_cache_key): New static global.
8482 (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros.
8483 (SYMBOL_LOOKUP_FAILED): New macro.
8484 (symbol_cache_slot_state): New enum.
8485 (block_symbol_cache): New struct.
8486 (symbol_cache): New struct.
8487 (new_symbol_cache_size, symbol_cache_size): New static globals.
8488 (hash_symbol_entry, eq_symbol_entry): New functions.
8489 (symbol_cache_byte_size, resize_symbol_cache): New functions.
8490 (make_symbol_cache, free_symbol_cache): New functions.
8491 (get_symbol_cache, symbol_cache_cleanup): New function.
8492 (set_symbol_cache_size, set_symbol_cache_size_handler): New functions.
8493 (symbol_cache_lookup, symbol_cache_clear_slot): New function.
8494 (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions.
8495 (symbol_cache_flush, symbol_cache_dump): New functions.
8496 (maintenance_print_symbol_cache): New function.
8497 (maintenance_flush_symbol_cache): New function.
8498 (symbol_cache_stats): New function.
8499 (maintenance_print_symbol_cache_statistics): New function.
8500 (symtab_new_objfile_observer): New function.
8501 (symtab_free_objfile_observer): New function.
8502 (lookup_static_symbol, lookup_global_symbol): Use symbol cache.
8503 (_initialize_symtab): Init symbol_cache_key. New parameter
8504 maint symbol-cache-size. New maint commands print symbol-cache,
8505 print symbol-cache-statistics, flush-symbol-cache.
8506 Install new_objfile, free_objfile observers.
8507
e700d1b2
JB
85082015-01-31 Joel Brobecker <brobecker@adacore.com>
8509
8510 PR symtab/17855
8511 * symfile.c (clear_symtab_users): Move call to breakpoint_re_set
8512 to end.
8513
9f050062
DE
85142015-01-31 Doug Evans <xdje42@gmail.com>
8515
8516 * NEWS: Mention inlined scripts in .debug_gdb_scripts section.
8517 * auto-load.c: #include ctype.h.
8518 (struct auto_load_pspace_info): Replace member loaded_scripts with
8519 new members loaded_script_files, loaded_script_texts.
8520 (auto_load_pspace_data_cleanup): Update.
8521 (init_loaded_scripts_info): Update.
8522 (get_auto_load_pspace_data_for_loading): Update.
8523 (maybe_add_script_file): Renamed from maybe_add_script. All callers
8524 updated.
8525 (maybe_add_script_text): New function.
8526 (clear_section_scripts): Update.
8527 (source_script_file, execute_script_contents): New functions.
8528 (source_section_scripts): Add support for
8529 SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT.
8530 (print_scripts): New function.
8531 (auto_load_info_scripts): Also print inlined scripts.
8532 (maybe_print_unsupported_script_warning): Renamed from
8533 unsupported_script_warning_print. All callers updated.
8534 (maybe_print_script_not_found_warning): Renamed from
8535 script_not_found_warning_print. All callers updated.
8536 * extension-priv.h (struct extension_language_script_ops): New member
8537 objfile_script_executor.
8538 * extension.c (ext_lang_objfile_script_executor): New function.
8539 * extension.h (objfile_script_executor_func): New typedef.
8540 (ext_lang_objfile_script_executor): Declare.
8541 * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare.
8542 * guile/guile.c (guile_extension_script_ops): Update.
8543 * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function.
8544 * python/python.c (python_extension_script_ops): Update.
8545 (gdbpy_execute_objfile_script): New function.
8546
312809f8
EZ
85472015-01-31 Eli Zaretskii <eliz@gnu.org>
8548
8549 * tui/tui-io.c (tui_expand_tabs): New function.
8550 (tui_puts, tui_redisplay_readline): Expand TABs into the
8551 appropriate number of spaces.
8552 * tui/tui-regs.c: Include tui-io.h.
8553 (tui_register_format): Call tui_expand_tabs to expand TABs into
8554 the appropriate number of spaces.
8555 * tui/tui-io.h: Add prototype for tui_expand_tabs.
8556
b6577aab
DE
85572015-01-30 Doug Evans <dje@google.com>
8558
8559 * NEWS: "info source" command now display producer string if present.
8560 * source.c (source_info): Print producer string if present.
8561
6da58d3e
SM
85622015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8563
8564 * varobj.c (varobj_delete): Fix comment.
8565
837ce252
SM
85662015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8567
8568 * varobj.c (create_child): Modify comment.
8569
b09e2c59
SM
85702015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8571
8572 * ada-varobj.c (ada_number_of_children): Constify struct varobj *
8573 parameter.
8574 (ada_name_of_variable): Same.
8575 (ada_path_expr_of_child): Same.
8576 (ada_value_of_variable): Same.
8577 (ada_value_is_changeable_p): Same.
8578 (ada_value_has_mutated): Same.
8579 * c-varobj.c (varobj_is_anonymous_child): Same.
8580 (c_is_path_expr_parent): Same.
8581 (c_number_of_children): Same.
8582 (c_name_of_variable): Same.
8583 (c_path_expr_of_child): Same.
8584 (get_type): Same.
8585 (c_value_of_variable): Same.
8586 (cplus_number_of_children): Same.
8587 (cplus_name_of_variable): Same.
8588 (cplus_path_expr_of_child): Same.
8589 (cplus_value_of_variable): Same.
8590 * jv-varobj.c (java_number_of_children): Same.
8591 (java_name_of_variable): Same.
8592 (java_path_expr_of_child): Same.
8593 (java_value_of_variable): Same.
8594 * varobj.c (number_of_children): Same.
8595 (name_of_variable): Same.
8596 (is_root_p): Same.
8597 (varobj_ensure_python_env): Same.
8598 (varobj_get_objname): Same.
8599 (varobj_get_expression): Same.
8600 (varobj_get_display_format): Same.
8601 (varobj_get_display_hint): Same.
8602 (varobj_has_more): Same.
8603 (varobj_get_thread_id): Same.
8604 (varobj_get_frozen): Same.
8605 (dynamic_varobj_has_child_method): Same.
8606 (varobj_get_gdb_type): Same.
8607 (is_path_expr_parent): Same.
8608 (varobj_default_is_path_expr_parent): Same.
8609 (varobj_get_language): Same.
8610 (varobj_get_attributes): Same.
8611 (varobj_is_dynamic_p): Same.
8612 (varobj_get_child_range): Same.
8613 (varobj_value_has_mutated): Same.
8614 (varobj_get_value_type): Same.
8615 (number_of_children): Same.
8616 (name_of_variable): Same.
8617 (check_scope): Same.
8618 (varobj_editable_p): Same.
8619 (varobj_value_is_changeable_p): Same.
8620 (varobj_floating_p): Same.
8621 (varobj_default_value_is_changeable_p): Same.
8622
2568868e
SM
86232015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8624
8625 * varobj.c (varobj_get_path_expr): Set var->path_expr.
8626 * c-varobj.c (c_path_expr_of_child): Set local var instead of
8627 child->path_expr.
8628 (cplus_path_expr_of_child): Same.
8629
ca83fa81
SM
86302015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8631
8632 * mi-cmd-var.c (print_varobj): Free varobj_get_expression
8633 result.
8634 (mi_cmd_var_info_expression): Same.
8635 * varobj.c (varobj_get_expression): Mention in the comment that
8636 the result must by freed by the caller.
8637
afa269ae
SM
86382015-01-30 Simon Marchi <simon.marchi@ericsson.com>
8639
8640 * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of
8641 varobj_get_type.
8642 (varobj_update_one): Same.
8643 * varobj.c (update_type_if_necessary): Free curr_type_str and
8644 new_type_str.
8645 (varobj_get_type): Specify in comment that the result needs to be
8646 freed by the caller.
8647
cd366ee8
DE
86482015-01-29 Doug Evans <dje@google.com>
8649
8650 PR symtab/17890
8651 * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4.
8652
38360086
MW
86532015-01-25 Mark Wielaard <mjw@redhat.com>
8654
8655 * dwarf2read.c (checkproducer): Call producer_is_gcc.
8656 * utils.c (producer_is_gcc_ge_4): Likewise.
8657 (producer_is_gcc): New function.
8658 * utils.h (producer_is_gcc): New declaration.
8659
df25ebbd
JB
86602015-01-29 Joel Brobecker <brobecker@adacore.com>
8661
8662 * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum
8663 kind.
8664 * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr"
8665 parameter by "addr_stack" parameter.
8666 (resolve_dynamic_range): Replace "addr" parameter by
8667 "stack_addr" parameter. Update function documentation.
8668 Update code accordingly.
8669 (resolve_dynamic_array, resolve_dynamic_union)
8670 (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise.
8671 (resolve_dynamic_type): Update code, following the changes made
8672 to resolve_dynamic_type_internal's interface.
8673 * dwarf2loc.h (struct property_addr_info): New.
8674 (dwarf2_evaluate_property): Replace "address" parameter
8675 by "addr_stack" parameter. Adjust function documentation.
8676 (struct dwarf2_offset_baton): New.
8677 (struct dwarf2_property_baton): Update documentation of
8678 field "referenced_type" to be more general. New field
8679 "offset_info" in union data field.
8680 * dwarf2loc.c (dwarf2_evaluate_property): Replace "address"
8681 parameter by "addr_stack" parameter. Adjust code accordingly.
8682 Add support for PROP_ADDR_OFFSET properties.
8683 * dwarf2read.c (attr_to_dynamic_prop): Add support for
8684 DW_AT_data_member_location attributes as well. Use case
8685 statements instead of if/else condition.
8686
4a0ca9ec
JB
86872015-01-29 Joel Brobecker <brobecker@adacore.com>
8688
8689 * ada-varobj.c (ada_varobj_get_array_number_of_children):
8690 Return zero if PARENT_VALUE is NULL and parent_type's
8691 range type is dynamic.
8692
ddb87a81
JB
86932015-01-29 Joel Brobecker <brobecker@adacore.com>
8694
8695 * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return
8696 nonzero if the type's subtype is dynamic.
8697 (resolve_dynamic_range): Also resolve the range's subtype.
8698
3d7ad9b4 86992015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch)
7a270e0c 8700
3d7ad9b4 8701 Pushed by Joel Brobecker <brobecker@adacore.com>.
7a270e0c
AK
8702 * symfile.c (unmap_overlay_command): Initialize sec to NULL.
8703
3a8b707a
DE
87042015-01-27 Doug Evans <dje@google.com>
8705
8706 * NEWS: Mention gdb.Objfile.username.
8707 * python/py-objfile.c (objfpy_get_username): New function.
8708 (objfile_getset): Add "username".
8709
d35b90fb
MW
87102015-01-24 Mark Wielaard <mjw@redhat.com>
8711
8712 * stack.c (return_command): Markup warning message with _.
8713
734ae125
DE
87142015-01-24 Doug Evans <xdje42@gmail.com>
8715
8716 * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
8717
527f3840
JK
87182015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
8719
8720 Fix 100x slowdown regression on DWZ files.
8721 * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash.
8722 (struct line_header): Add offset and offset_in_dwz.
8723 (dwarf_decode_lines): Add parameter decode_mapping to the declaration.
8724 (free_line_header_voidp): New declaration.
8725 (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New
8726 functions.
8727 (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller.
8728 (handle_DW_AT_stmt_list): Use line_header_hash.
8729 (free_line_header_voidp): New function.
8730 (dwarf_decode_line_header): Initialize offset and offset_in_dwz.
8731 (dwarf_decode_lines): New parameter decode_mapping, use it.
8732 (dwarf2_free_objfile): Free line_header_hash.
8733
f7e5394d
SM
87342015-01-23 Simon Marchi <simon.marchi@ericsson.com>
8735
8736 PR gdb/17416
8737 * valops.c (value_rtti_indirect_type): Catch exception thrown by
8738 value_ind.
8739
743649fd
MW
87402015-01-15 Mark Wielaard <mjw@redhat.com>
8741
8742 * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from
8743 DW_AT_noreturn.
8744 * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make
8745 calling_convention an 8 bit bit field.
8746 (TYPE_NO_RETURN): New macro.
8747 * infcmd.c (finish_command): Query if function does not return
8748 normally.
8749 * stack.c (return_command): Likewise.
8750
198297aa
PA
87512015-01-23 Pedro Alves <palves@redhat.com>
8752
8753 * linux-nat.c (linux_is_async_p): New macro.
8754 (linux_nat_is_async_p):
8755 (linux_nat_terminal_inferior): Check whether the target can async
8756 instead of whether it is already async.
8757 (linux_nat_terminal_ours): Don't check whether the target is
8758 async.
8759 (linux_async_pipe): Use linux_is_async_p.
8760
253828f1
JK
87612015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8762
8763 * NEWS (Changes since GDB 7.9): Add 'thread apply all' option
8764 '-ascending'.
8765 * thread.c (tp_array_compar_ascending, tp_array_compar): New.
8766 (thread_apply_all_command): Parse CMD for tp_array_compar_ascending.
8767 Sort tp_array using tp_array_compar.
8768 (_initialize_thread): Extend thread_apply_all_command help.
8769
f0e8c4c5
JK
87702015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8771
8772 * corelow.c (core_open): Call also thread_command.
8773 * gdbthread.h (thread_command): New prototype moved from ...
8774 * thread.c (thread_command): ... here.
8775 (thread_command): Make it global.
8776
03b79603
PA
87772015-01-22 Pedro Alves <palves@redhat.com>
8778
8779 * configure.ac [*mingw32*]: Check $curses_found instead of
8780 $prefer_curses.
8781 * configure: Regenerate.
8782 * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and
8783 HAVE_NCURSES_NCURSES_H checks.
8784
6b8a872f
EZ
87852015-01-22 Eli Zaretskii <eliz@gnu.org>
8786
bbbbffbb 8787 * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm'
6b8a872f
EZ
8788 fails with the 1st arg NULL, try again with "unknown". Don't test
8789 the "cup" capability: it isn't supported by the Windows port of
8790 ncurses, but the Windows console driver is still capable of
8791 supporting TUI.
8792
4b62a76e
JK
87932015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8794
8795 * compile/compile.c (_initialize_compile): Use -fPIE for compile_args.
8796
82a864f9
EZ
87972015-01-22 Eli Zaretskii <eliz@gnu.org>
8798
8799 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
8800 (ALLDEPFILES): Remove irix5-nat.c. These two are part of the
8801 reason that "make TAGS" is broken.
8802
b35018fd
CG
88032015-01-22 Chen Gang <gang.chen.5i5j@gmail.com>
8804
8805 * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues
8806 and check additional store instructions.
8807
ffbc4646
WW
88082015-01-21 Wei-cheng Wang <cole945@gmail.com>
8809
8810 * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang".
8811
ddeca1df
WW
88122015-01-21 Wei-cheng Wang <cole945@gmail.com>
8813
8814 * ppc-linux-tdep.c (ppc_skip_trampoline_code,
8815 ppc_canonicalize_syscall, ppc_linux_syscall_record,
8816 ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments.
8817 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
8818 * rs6000-tdep.c (rs6000_epilogue_frame_cache,
8819 rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register,
8820 rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4,
8821 ppc_process_record_op19, ppc_process_record_op31,
8822 ppc_process_record_op59, ppc_process_record_op60,
8823 ppc_process_record_op63): Likewise.
8824
049bb5de
JB
88252015-01-20 Joel Brobecker <brobecker@adacore.com>
8826
8827 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string)
8828 (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of
8829 strerror.
8830
42b87c63 88312015-01-20 Wei-cheng Wang <cole945@gmail.com>
810c1026
WW
8832
8833 * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19,
8834 ppc_process_record_op31, ppc_process_record_op59,
8835 ppc_process_record_op60, ppc_process_record_op63,
8836 ppc_process_record): Fix -Wformat warning.
8837 * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60):
8838 Remove unused variables.
8839
569340fc
CG
88402015-01-20 Chen Gang <gang.chen.5i5j@gmail.com>
8841
8842 * MAINTAINERS (Write After Approval): Add "Chen Gang".
8843
63413d85
EZ
88442015-01-19 Eli Zaretskii <eliz@gnu.org>
8845
8846 * configure.ac [*mingw32*]: Only add windows-termcap.o to
8847 CONFIG_OBS if not building with a curses library.
8848 * configure: Regenerate.
8849
8850 * windows-termcap.c: Include defs.h. Make the whole body empty if
8851 either one of HAVE_CURSES_H or HAVE_NCURSES_H or
8852 HAVE_NCURSES_NCURSES_H is defined.
8853
16d8013c
JB
88542015-01-19 Joel Brobecker <brobecker@adacore.com>
8855
8856 * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator
8857 from end of line to start of next line.
8858
cf90fd9a
WW
88592015-01-17 Wei-cheng Wang <cole945@gmail.com>
8860
8861 * ppc-linux-tdep.c (ppc_skip_trampoline_code):
8862 Scan PLT stub backward for reverse debugging.
8863 * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise.
8864
b4cdae6f
WW
88652015-01-17 Wei-cheng Wang <cole945@gmail.com>
8866 Ulrich Weigand <uweigand@de.ibm.com>
8867
8868 * configure.tgt (powerpc*-*-linux): Add linux-record.o to
8869 gdb_target_obs.
8870 (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall
8871 record.
8872 (ppc_canonicalize_syscall, ppc_linux_syscall_record,
8873 ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions.
8874 (ppc_linux_init_abi): Set process_record, process_record_signal.
8875 * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and
8876 ppc_linux_record_tdep to gdbarch_tdep.
8877 (ppc_process_record): New declaration.
8878 * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4,
8879 ppc_process_record_op19, ppc_process_record_op31,
8880 ppc_process_record_op59, ppc_process_record_op60,
8881 ppc_process_record_op63, ppc_process_record): New functions.
8882
2608dbf8
WW
88832015-01-17 Wei-cheng Wang <cole945@gmail.com>
8884
8885 * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to
8886 rs6000_in_function_epilogue_frame_p and add an argument
8887 for frame_info.
8888 (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id,
8889 rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer):
8890 New functions.
8891 (rs6000_epilogue_frame_unwind): New.
8892 (rs6000_gdbarch_init): Append epilogue unwinder.
8893
4c347be6
SDJ
88942015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
8895
8896 * nat/linux-personality.c: Replace "#ifndef
8897 HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
8898 !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
8899 systems.
8900
9f2850ba
EZ
89012015-01-16 Eli Zaretskii <eliz@gnu.org>
8902
6cdb25f4
EZ
8903 * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New
8904 functions.
8905 (_initialize_tui_win) <border-kind, border-mode>:
8906 <active-border-mode>: Use tui_set_var_cmd as the "set" function.
c54da50d
EZ
8907 (tui_set_tab_width_command): Fix the commentary.
8908
6cdb25f4
EZ
8909 * tui/tui-win.h: Add prototype for tui_rehighlight_all.
8910
bf555842
EZ
8911 * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command):
8912 Doc fix.
cb86fcc1
EZ
8913 (tui_set_tab_width_command): Delete and recreate the source and
8914 the disassembly windows, to show the effect of the changed tab
8915 size immediately.
bf555842 8916
9f2850ba
EZ
8917 * tui/tui-data.h (LINE_PREFIX): Make shorter
8918 (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for
8919 "Thread NNNNN.XXXX" thread ID notation on Windows.
8920
95761b2d
JK
89212015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8922
8923 Fix gcc-5 compilation.
8924 * hppa-tdep.c (inst_saves_gr): Fix parentheses typo.
8925
8cc73a39
SDJ
89262015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
8927
8928 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h.
8929 (linux-personality.o): New rule.
8930 * common/common-defs.h: Include <stdint.h>.
8931 * config/aarch64/linux.mh (NATDEPFILES): Include
8932 linux-personality.o.
8933 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
8934 * config/arm/linux.mh (NATDEPFILES): Likewise.
8935 * config/i386/linux64.mh (NATDEPFILES): Likewise.
8936 * config/i386/linux.mh (NATDEPFILES): Likewise.
8937 * config/ia64/linux.mh (NATDEPFILES): Likewise.
8938 * config/m32r/linux.mh (NATDEPFILES): Likewise.
8939 * config/m68k/linux.mh (NATDEPFILES): Likewise.
8940 * config/mips/linux.mh (NATDEPFILES): Likewise.
8941 * config/pa/linux.mh (NATDEPFILES): Likewise.
8942 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
8943 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
8944 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
8945 * config/s390/linux.mh (NATDEPFILES): Likewise.
8946 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
8947 * config/sparc/linux.mh (NATDEPFILES): Likewise.
8948 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
8949 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
8950 * defs.h: Remove #include <stdint.h> (moved to
8951 common/common-defs.h).
8952 * linux-nat.c: Include nat/linux-personality.h. Remove #include
8953 <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to
8954 nat/linux-personality.c).
8955 (linux_nat_create_inferior): Remove code to disable address space
8956 randomization (moved to nat/linux-personality.c). Create cleanup
8957 to disable address space randomization.
8958 * nat/linux-personality.c: New file.
8959 * nat/linux-personality.h: Likewise.
8960
fb23d554
SDJ
89612015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
8962
8963 * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and
8964 common/posix-strerror.c.
8965 (posix-strerror.o): New rule.
8966 (mingw-strerror.o): Likewise.
8967 * common/common-utils.h (safe_strerror): Move prototype to here,
8968 from utils.h.
8969 * common/common.host: New file.
8970 * common/mingw-strerror.c: Likewise.
8971 * common/posix-strerror.c: Likewise.
8972 * configure: Regenerated.
8973 * configure.ac: Source common/common.host. Add variable
8974 common_host_obs to gdb_host_obs.
8975 * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and
8976 gdb/common/posix-strerror.c when warning about the use of
8977 strerror.
8978 * mingw-hdep.c (safe_strerror): Remove definition; move it to
8979 common/mingw-strerror.c.
8980 * posix-hdep.c (safe_strerror): Remove definition; move it to
8981 common/posix-hdep.c.
8982 * utils.h (safe_strerror): Remove prototype; move to
8983 common/common-utils.h.
8984
3af8af43
JB
89852015-01-15 Joel Brobecker <brobecker@adacore.com>
8986
8987 GDB 7.8.2 released.
8988
bafffb51
JB
89892015-01-15 Joel Brobecker <brobecker@adacore.com>
8990
8991 * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel
8992 ___XA type if the array has already been fixed.
8993
cdf43629
YQ
89942015-01-14 Yao Qi <yao@codesourcery.com>
8995
8996 * Makefile.in (ppc-linux.o): New rule.
8997 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o.
8998 * configure.ac: AC_CHECK_FUNCS(getauxval).
8999 * config.in: Re-generated.
9000 * configure: Re-generated.
9001 * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p):
9002 Declare.
9003 * nat/ppc-linux.c: New file.
9004 * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]:
9005 Call ppc64_64bit_inferior_p.
9006
514c5338
YQ
90072015-01-14 Yao Qi <yao@codesourcery.com>
9008
9009 * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to
9010 nat/ppc-linux.h.
9011 (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise.
9012 (PPC_FEATURE_HAS_DFP): Likewise.
9013 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
9014 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
9015 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
9016 Include "nat/ppc-linux.h".
9017 * nat/ppc-linux.h: New file.
9018 * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h.
9019
5589af0e
PA
90202015-01-14 Pedro Alves <palves@redhat.com>
9021
9022 PR gdb/17525
9023 * breakpoint.c: Include "interps.h".
9024 (bpstat_do_actions_1): Also check whether the interpreter is
9025 async.
9026
6c400b59
PA
90272015-01-14 Pedro Alves <palves@redhat.com>
9028
9029 PR cli/17828
9030 * infrun.c (reinstall_readline_callback_handler_cleanup): Don't
9031 reinstall if the interpreter is sync.
9032
e02c96a7
DE
90332015-01-13 Doug Evans <dje@google.com>
9034
9035 * objfiles.c (objfile_filename): New function.
9036 * objfiles.h (objfile_filename): Declare it.
9037 (objfile_name): Add function comment.
9038 * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the
9039 bfd file name (which may be realpath'd), and the original name.
9040
3b2f13ff
JB
90412015-01-13 Joel Brobecker <brobecker@adacore.com>
9042
9043 * NEWS: Create a new section for the next release branch.
9044 Rename the section of the current branch, now that it has
9045 been cut.
9046
b4cfe7f8
JB
90472015-01-13 Joel Brobecker <brobecker@adacore.com>
9048
9049 GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37):
9050 * version.in: Bump version to 7.9.50.DATE-cvs.
9051
92fc2e69
JB
90522015-01-13 Joel Brobecker <brobecker@adacore.com>
9053
9054 * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
9055 Remove trailing new-line in argument of call to warning.
9056
f71f0b0d
JB
90572015-01-13 Joel Brobecker <brobecker@adacore.com>
9058
9059 * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing
9060 new-line in argument of call to "warning".
9061
04dccad0
JB
90622015-01-13 Joel Brobecker <brobecker@adacore.com>
9063
9064 * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found
9065 in static block, then try searching for primitive types.
9066
08b13bdd
PP
90672015-01-12 Patrick Palka <patrick@parcs.ath.cx>
9068
9069 * top.h (gdb_add_history): Declare.
9070 * top.c (command_count): New variable.
9071 (gdb_add_history): New function.
9072 (gdb_safe_append_history): New static function.
9073 (quit_force): Call it.
9074 (command_line_input): Use gdb_add_history instead of
9075 add_history.
9076 * event-top.c (command_line_handler): Likewise.
9077
4ac15b59
JC
90782015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
9079
9080 PR gdb/17046
9081 * darwin-nat.c: Replace <machine/setjmp.h> #include by
9082 <setjmp.h> #include.
9083
005e54bb
DE
90842015-01-11 Doug Evans <xdje42@gmail.com>
9085
9086 * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.
9087
439250fb
DE
90882015-01-11 Doug Evans <xdje42@gmail.com>
9089
9090 PR gdb/15830
9091 * NEWS: The "maint demangle" command is renamed as "demangle".
9092 * demangle.c: #include cli/cli-utils.h, language.h.
9093 (demangle_command): New function.
9094 (_initialize_demangle): Add new command "demangle".
9095 * maint.c (maintenance_demangle): Stub out.
9096 (_initialize_maint_cmds): Update help text for "maint demangle",
9097 and mark as deprecated.
9098
ebf3aa72
MK
90992015-01-11 Mark Kettenis <kettenis@gnu.org>
9100
9101 * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that
9102 inferior_thread is a function.
9103
6bf045cd
PP
91042015-01-09 Patrick Palka <patrick@parcs.ath.cx>
9105
9106 * Makefile.in (.y.c): Don't munge yacc's #line
9107 directives.
9108
588dcc3e
PP
91092015-01-09 Patrick Palka <patrick@parcs.ath.cx>
9110
9111 * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper
9112 to prompt for input.
9113 * tui/tui-hooks.c (tui_query_hook): Remove.
9114 (tui_install_hooks): Don't set deprecated_query_hook.
9115 * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in
9116 height calculation. Always update the command window's cur_line.
9117
9c02b525
PA
91182015-01-09 Pedro Alves <palves@redhat.com>
9119
9120 * breakpoint.c (hardware_breakpoint_inserted_here_p): New
9121 function.
9122 * breakpoint.h (hardware_breakpoint_inserted_here_p): New
9123 declaration.
9124 * linux-nat.c (linux_nat_status_is_event): Move higher up in file.
9125 (linux_resume_one_lwp): Store the thread's PC. Adjust to clear
9126 stop_reason.
9127 (check_stopped_by_watchpoint): New function.
9128 (save_sigtrap): Reimplement.
9129 (linux_nat_stopped_by_watchpoint): Adjust.
9130 (linux_nat_lp_status_is_event): Delete.
9131 (stop_wait_callback): Only call save_sigtrap after storing the
9132 pending status.
9133 (status_callback): If the thread had been stopped for a breakpoint
9134 that has since been removed, discard the event and resume the LWP.
9135 (count_events_callback, select_event_lwp_callback): Use
9136 lwp_status_pending_p instead of linux_nat_lp_status_is_event.
9137 (cancel_breakpoint): Rename to ...
9138 (check_stopped_by_breakpoint): ... this. Record whether the LWP
9139 stopped for a software breakpoint or hardware breakpoint.
9140 (select_event_lwp): Only give preference to the stepping LWP in
9141 all-stop mode. Adjust comments.
9142 (stop_and_resume_callback): Remove references to new_pending_p.
9143 (linux_nat_filter_event): Likewise. Leave exit events of the
9144 leader thread pending here. Handle signal short circuiting here.
9145 Only call save_sigtrap after storing the pending waitstatus.
9146 (linux_nat_wait_1): Remove 'retry' label. Remove references to
9147 new_pending. Don't handle leaving events the caller is not
9148 interested in pending here, nor handle signal short-circuiting
9149 here. Also give equal priority to all LWPs that have had events
9150 in non-stop mode. If reporting a software breakpoint event,
9151 unadjust the LWP's PC.
9152 * linux-nat.h (enum lwp_stop_reason): New.
9153 (struct lwp_info) <stop_pc>: New field.
9154 (struct lwp_info) <stopped_by_watchpoint>: Delete field.
9155 (struct lwp_info) <stop_reason>: New field.
9156 * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust.
9157
8af756ef
PA
91582015-01-09 Pedro Alves <palves@redhat.com>
9159
9160 * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>:
9161 Set the LWP's 'resumed' flag.
9162
8a99810d
PA
91632015-01-09 Pedro Alves <palves@redhat.com>
9164
9165 * linux-nat.c (linux_resume_one_lwp): New function.
9166 (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp.
9167 (linux_nat_resume): Use lwp_status_pending_p and
9168 linux_resume_one_lwp.
9169 (linux_handle_syscall_trap): Use linux_resume_one_lwp.
9170 (linux_handle_extended_wait): Use linux_resume_one_lwp.
9171 (status_callback, running_callback): Use lwp_status_pending_p.
9172 (lwp_status_pending_p): New function.
9173 (stop_and_resume_callback): Use lwp_status_pending_p.
9174 (linux_nat_filter_event): Use linux_resume_one_lwp.
9175 (linux_nat_wait_1): Always use status_callback to look for an LWP
9176 with a pending status. Use linux_resume_one_lwp.
9177 (resume_stopped_resumed_lwps): Use lwp_status_pending_p and
9178 linux_resume_one_lwp.
9179
f7ce857f
PA
91802015-01-09 Pedro Alves <palves@redhat.com>
9181
9182 * breakpoint.c (bp_location_inserted_here_p): New function,
9183 factored out from ...
9184 (breakpoint_inserted_here_p): ... here. Use
9185 ALL_BP_LOCATIONS_AT_ADDR.
9186 (software_breakpoint_inserted_here_p): Use
9187 bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR.
9188
c1a747c1
PA
91892014-01-09 Pedro Alves <palves@redhat.com>
9190
9191 Skip enabling event reporting if the kernel supports
9192 PTRACE_EVENT_CLONE.
9193 * linux-thread-db.c: Include "nat/linux-ptrace.h".
9194 (thread_db_use_events): New function.
9195 (try_thread_db_load_1): Check thread_db_use_events before enabling
9196 event reporting.
9197 (update_thread_state): New function.
9198 (attach_thread): Use it. Check thread_db_use_events before
9199 enabling event reporting.
9200 (thread_db_detach): Check thread_db_use_events before disabling
9201 event reporting.
9202 (find_new_threads_callback): Check thread_db_use_events before
9203 enabling event reporting. Update the thread's state if not using
9204 libthread_db events.
9205
a33e3959
PA
92062015-01-09 Pedro Alves <palves@redhat.com>
9207
9208 * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're
9209 about to wait for is > 0.
9210 * linux-thread-db.c (find_new_threads_callback): Ignore thread if
9211 the kernel thread ID is -1.
9212
8784d563
PA
92132015-01-09 Pedro Alves <palves@redhat.com>
9214
9215 * linux-nat.c (attach_proc_task_lwp_callback): New function.
9216 (linux_nat_attach): Use linux_proc_attach_tgid_threads.
9217 (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's
9218 ptrace option flags.
9219 * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New
9220 field.
9221 * nat/linux-procfs.c: Include <dirent.h>.
9222 (linux_proc_get_int): New parameter "warn". Handle it.
9223 (linux_proc_get_tgid): Adjust.
9224 (linux_proc_get_tracerpid): Rename to ...
9225 (linux_proc_get_tracerpid_nowarn): ... this.
9226 (linux_proc_pid_get_state): New function, factored out from
9227 (linux_proc_pid_has_state): ... this. Add new parameter "warn"
9228 and handle it.
9229 (linux_proc_pid_is_gone): New function.
9230 (linux_proc_pid_is_stopped): Adjust.
9231 (linux_proc_pid_is_zombie_maybe_warn)
9232 (linux_proc_pid_is_zombie_nowarn): New functions.
9233 (linux_proc_pid_is_zombie): Use
9234 linux_proc_pid_is_zombie_maybe_warn.
9235 (linux_proc_attach_tgid_threads): New function.
9236 * nat/linux-procfs.h (linux_proc_get_tgid): Update comment.
9237 (linux_proc_get_tracerpid): Rename to ...
9238 (linux_proc_get_tracerpid_nowarn): ... this, and update comment.
9239 (linux_proc_pid_is_gone): New declaration.
9240 (linux_proc_pid_is_zombie): Update comment.
9241 (linux_proc_pid_is_zombie_nowarn): New declaration.
9242 (linux_proc_attach_lwp_func): New typedef.
9243 (linux_proc_attach_tgid_threads): New declaration.
9244 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to
9245 use nowarn functions.
9246 (linux_ptrace_attach_fail_reason_string): Move here from
9247 gdbserver/linux-low.c and rename.
9248 (ptrace_supports_feature): If the current ptrace options are not
9249 known yet, check them now, instead of asserting.
9250 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string):
9251 Declare.
9252
883ed13e
PA
92532015-01-09 Pedro Alves <palves@redhat.com>
9254
9255 * linux-thread-db.c (thread_db_find_new_threads_silently)
9256 (try_thread_db_load_1, try_thread_db_load, thread_db_load_search)
9257 (find_new_threads_once): Print debug output on gdb_stdlog.
9258
1710aab8
CG
92592015-01-09 Chen Gang <gang.chen.5i5j@gmail.com>
9260 Pedro Alves <palves@redhat.com>
9261
9262 * compile/compile.c: Include "gdb_wait.h".
9263 (do_rmdir): Check return value, and free 'zap'.
9264
b597c318
YQ
92652015-01-08 Pedro Alves <palves@redhat.com>
9266 Yao Qi <yao@codesourcery.com>
9267
9268 * dwarf2loc.c (indirect_pieced_value): Don't call
9269 gdb_sign_extend. Call extract_signed_integer instead.
9270 * utils.c (gdb_sign_extend): Remove.
9271 * utils.h (gdb_sign_extend): Remove declaration.
9272
025ac414
PM
92732015-01-07 Pierre Muller <muller@sourceware.org>
9274
9275 PR symtab/17811
9276 * stabsread.c (define_symbol): Set language for C++ special symbols.
9277
fa5af12a
PP
92782015-01-07 Patrick Palka <patrick@parcs.ath.cx>
9279
9280 * inflow.c (initial_gdb_ttystate): Tweak comment.
9281
ea42d6f8
JB
92822015-01-07 Joel Brobecker <brobecker@adacore.com>
9283
9284 * inflow.c (set_initial_gdb_ttystate): Add empty line after
9285 comment documenting function.
9286
6a06d660
PP
92872015-01-07 Patrick Palka <patrick@parcs.ath.cx>
9288
9289 * terminal.h (set_initial_gdb_ttystate): Declare.
9290 * inflow.c (initial_gdb_ttystate): New static variable.
9291 (set_initial_gdb_ttystate): New setter.
9292 (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate
9293 instead of our current terminal state.
9294 * top.c (gdb_init): Call set_initial_gdb_ttystate.
9295
e810d75b
JB
92962015-01-07 Joel Brobecker <brobecker@adacore.com>
9297
9298 * guile/scm-type.c (tyscm_array_1): Add comment.
9299 * python/py-type.c (typy_array_1): Add comment.
9300
fce10a84
JB
93012015-01-06 Joel Brobecker <brobecker@adacore.com>
9302
9303 * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range
9304 error if N2 is equal to N1 - 1.
9305
8503d6e1
JB
93062015-01-06 Joel Brobecker <brobecker@adacore.com>
9307
9308 * python/py-type.c (typy_array_1): Do not raise negative-length
9309 exception if N2 is equal to N1 - 1.
9310
4d29c0a8
DE
93112015-01-03 Doug Evans <xdje42@gmail.com>
9312
9313 * c-exp.y: Whitespace cleanup.
9314 (classify_inner_name): Remove extra ;.
9315
eaa6a9a4
MR
93162015-01-02 Maciej W. Rozycki <macro@codesourcery.com>
9317
9318 * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack
9319 offset signed.
9320
02fe9972
DE
93212015-01-02 Doug Evans <dje@google.com>
9322
9323 * dwarf2read.c (setup_type_unit_groups): Remove outdated comment.
9324
e2ada9cb
DE
93252015-01-02 Doug Evans <dje@google.com>
9326
9327 * symtab.h (struct symbol): Fix typo in comment.
9328
32d0add0
JB
93292015-01-01 Joel Brobecker <brobecker@adacore.com>
9330
9331 Update year range in copyright notice of all files.
9332
76f2b779
JB
93332015-01-01 Joel Brobecker <brobecker@adacore.com>
9334
9335 * top.c (print_gdb_version): Update copyright year to 2015.
9336
077309e2 93372015-01-01 Joel Brobecker <brobecker@adacore.com>
6bf6fd09 9338
077309e2 9339 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014.
6bf6fd09 9340
077309e2 9341For older changes see ChangeLog-2014.
c906108c
SS
9342\f
9343Local Variables:
9344mode: change-log
9345left-margin: 8
9346fill-column: 74
9347version-control: never
57da7796 9348coding: utf-8
c906108c 9349End:
This page took 2.191545 seconds and 4 git commands to generate.