]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
Rename make_symbol_completion_list_fn -> symbol_completer
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2017-07-17 Pedro Alves <palves@redhat.com>
2
3 * completer.c (symbol_completer): New function, based on
4 make_symbol_completion_list_fn.
5 * completer.h (symbol_completer): New declaration.
6 * guile/scm-cmd.c (cmdscm_completers): Adjust.
7 * python/py-cmd.c (completers): Adjust.
8 * symtab.c (make_symbol_completion_list_fn): Delete.
9 * symtab.h (make_symbol_completion_list_fn): Delete.
10 * cli/cli-decode.c (add_cmd): Adjust.
11
12 2017-07-17 Pedro Alves <palves@redhat.com>
13
14 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
15 * dwarf2read.c: Include "filename-seen-cache.h".
16 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
17 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
18 * filename-seen-cache.c: New file.
19 * filename-seen-cache.h: New file.
20 * symtab.c: Include "filename-seen-cache.h".
21 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
22 (create_filename_seen_cache, clear_filename_seen_cache)
23 (delete_filename_seen_cache, filename_seen): Delete, parts moved
24 to filename-seen-cache.h/filename-seen-cache.c.
25 (output_source_filename, sources_info)
26 (maybe_add_partial_symtab_filename)
27 (make_source_files_completion_list): Adjust to use
28 filename_seen_cache.
29
30 2017-07-17 Pedro Alves <palves@redhat.com>
31
32 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
33 fields.
34 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
35 dwarf2_debug_sections*)): New.
36 (dwarf2_per_objfile::dwarf2_per_objfile(const
37 dwarf2_per_objfile&)): Declare as deleted.
38 (dwarf2_per_objfile::operator=): Declare as deleted.
39 (dwarf2_per_objfile::dwarf2_per_objfile)
40 (dwarf2_per_objfile::~dwarf2_per_objfile)
41 (dwarf2_per_objfile::free_cached_comp_units): New.
42 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
43 ctor. Call dwarf2_per_objfile's ctor manually.
44 (dwarf2_locate_sections): Deleted/refactored as ...
45 (dwarf2_per_objfile::locate_sections): ... this new method.
46 (free_cached_comp_units): Defer to
47 dwarf2_per_objfile::free_cached_comp_units.
48 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
49
50 2017-07-14 Tom Tromey <tom@tromey.com>
51
52 PR rust/21764:
53 * rust-exp.y (convert_ast_to_expression): Add "want_type"
54 parameter.
55 <UNOP_SIZEOF>: Split into separate case.
56 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
57
58 2017-07-14 Tom Tromey <tom@tromey.com>
59
60 PR rust/21763:
61 * symtab.c (symbol_matches_domain): Add language_rust to special
62 case.
63 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
64 treat LOC_TYPEDEF symbols as variables.
65
66 2017-07-14 Pedro Alves <palves@redhat.com>
67
68 * symtab.c (make_file_symbol_completion_list_1): Iterate over
69 symtabs matching all symtabs with SRCFILE as file name instead of
70 only considering the first hit, with lookup_symtab.
71
72 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
73
74 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
75 operator_name parameters.
76 (gen_expr): Update function call.
77
78 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
79
80 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
81 parameter.
82 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
83 Likewise.
84 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
85 parameter, use agent_expr::gdbarch instead, update function
86 calls.
87 (locexpr_tracepoint_var_ref): Likewise.
88 (loclist_tracepoint_var_ref): Likewise.
89 * ax-gdb.c (gen_trace_static_fields): Likewise.
90 (gen_traced_pop): Likewise.
91 (gen_frame_args_address): Likewise.
92 (gen_frame_locals_address): Likewise.
93 (gen_var_ref): Likewise.
94 (gen_struct_ref_recursive): Likewise.
95 (gen_static_field): Likewise.
96 (gen_maybe_namespace_elt): Likewise.
97 (gen_expr): Likewise.
98 (gen_trace_for_var): Likewise.
99 (gen_trace_for_expr): Likewise.
100 (gen_trace_for_return_address): Likewise.
101
102 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
103
104 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
105 parameter.
106 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
107
108 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
109
110 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
111 from ax, update calls.
112 (gen_usual_arithmetic): Likewise.
113 (gen_integral_promotions): Likewise.
114 (gen_bitfield_ref): Likewise.
115 (gen_primitive_field): Likewise.
116 (gen_struct_ref_recursive): Likewise.
117 (gen_struct_ref): Likewise.
118 (gen_maybe_namespace_elt): Likewise.
119 (gen_struct_elt_for_reference): Likewise.
120 (gen_namespace_elt): Likewise.
121 (gen_aggregate_elt_ref): Likewise.
122 (gen_expr): Get gdbarch from ax, update calls.
123 (gen_expr_binop_rest): Likewise.
124
125 2017-07-13 Pedro Alves <palves@redhat.com>
126
127 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
128 as default tdesc.
129 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
130 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
131 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
132 tdesc_amd64_linux as default tdesc. Get final tdesc from the
133 tdep.
134 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
135 Get final tdesc from the tdep.
136 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
137 default tdesc.
138 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
139 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
140 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
141 Use it as default tdesc.
142 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
143 down to amd_init_abi. No longer handle fallback tdesc here.
144 * amd64-tdep.h (tdesc_x32): Declare.
145 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
146 parameter.
147 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
148 as default tdesc.
149
150 2017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
151
152 * s390-linux-tdep.c (s390_process_record): Add support for
153 instructions new in arch12.
154
155 2017-07-11 John Baldwin <jhb@FreeBSD.org>
156
157 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
158 PT_GETFSBASE and PT_GETGSBASE.
159 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
160 PT_SETGSBASE.
161
162 2017-07-11 John Baldwin <jhb@FreeBSD.org>
163
164 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
165 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
166 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
167 those rules.
168 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
169 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
170 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
171 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
172 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
173 * features/i386/amd64.xml: Add 64bit-segments.xml.
174 * features/i386/amd64-avx-avx512.c: Regenerated.
175 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
176 * features/i386/amd64-avx-mpx.c: Regenerated.
177 * features/i386/amd64-avx.c: Regenerated.
178 * features/i386/amd64-mpx.c: Regenerated.
179 * features/i386/amd64.c: Regenerated.
180 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
181 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
182 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
183 * regformats/i386/amd64-avx.dat: Regenerated.
184 * regformats/i386/amd64-mpx.dat: Regenerated.
185 * regformats/i386/amd64.dat: Regenerated.
186
187 2017-07-10 Yao Qi <yao.qi@linaro.org>
188
189 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
190 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
191
192 2017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
193
194 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
195 unsetenv.
196 * gnulib/aclocal.m4: Regenerate.
197 * gnulib/config.in: Regenerate.
198 * gnulib/configure: Regenerate.
199 * gnulib/import/Makefile.am: Regenerate.
200 * gnulib/import/Makefile.in: Regenerate.
201 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
202 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
203 * gnulib/import/m4/environ.m4: New file.
204 * gnulib/import/m4/setenv.m4: New file.
205 * gnulib/import/setenv.c: New file.
206 * gnulib/import/unsetenv.c: New file.
207
208 2017-07-09 Simon Marchi <simon.marchi@ericsson.com>
209
210 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
211 address when op is DW_OP_addr.
212
213 2017-07-09 Tom Tromey <tom@tromey.com>
214
215 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
216 check and apply to outer type.
217
218 2017-07-07 John Baldwin <jhb@FreeBSD.org>
219
220 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
221 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
222 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
223 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
224
225 2017-07-07 John Baldwin <jhb@FreeBSD.org>
226
227 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
228
229 2017-07-07 John Baldwin <jhb@FreeBSD.org>
230
231 * corelow.c (get_core_siginfo): Remove.
232 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
233 instead of get_core_siginfo.
234 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
235 * gdbarch.h: Re-generate.
236 * gdbarch.c: Re-generate.
237 * linux-tdep.c (linux_core_xfer_siginfo): New.
238 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
239
240 2017-07-07 John Baldwin <jhb@FreeBSD.org>
241
242 * corelow.c (thread_section_name): Move to ...
243 * gdbcore.h (thread_section_name): ... here.
244
245 2017-07-07 John Baldwin <jhb@FreeBSD.org>
246
247 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
248 (struct siginfo32): New.
249 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
250 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
251 via ptrace(PT_LWPINFO).
252
253 2017-07-07 John Baldwin <jhb@FreeBSD.org>
254
255 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
256 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
257 (fbsd_get_siginfo_type): New.
258 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
259 (_initialize_fbsd_tdep): New.
260
261 2017-07-06 David Blaikie <dblaikie@gmail.com>
262
263 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
264 a singular dwo_unit*) to support multiple CUs in the same way that
265 multiple TUs are supported.
266 (create_cus_hash_table): Replace create_dwo_cu with a function for
267 parsing multiple CUs from a DWO file.
268 (open_and_init_dwo_file): Use create_cus_hash_table rather than
269 create_dwo_cu.
270 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
271 htab_find, rather than comparing the signature to a singleton CU in
272 the dwo_file.
273
274 2017-07-06 Pedro Alves <palves@redhat.com>
275
276 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
277
278 2017-07-04 Pedro Alves <palves@redhat.com>
279
280 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
281 * gdbtypes.h (TYPE_STATIC): Delete.
282 (struct fn_field) <is_public, is_abstract, is_static, is_final,
283 is_synchronized, is_native>: Delete.
284 <dummy>: Bump.
285 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
286 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
287 (TYPE_FN_FIELD_ABSTRACT): Delete.
288
289 2017-07-03 Simon Marchi <simon.marchi@ericsson.com>
290
291 * buffer.h (buffer_finish): Fix spelling mistakes.
292
293 2017-07-01 Eli Zaretskii <eliz@gnu.org>
294
295 * .dir-locals.el: Automatically switch to C-style comments in
296 versions of Emacs that support the feature.
297
298 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
299 Pedro Alves <palves@redhat.com>
300
301 PR cli/21688
302 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
303 (process_next_line): New variable 'inline_cmd'.
304 Adjust 'if' clauses for "python", "compile" and "guile" to use
305 'command_name_equals' and check for '!inline_cmd'.
306
307 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
308
309 PR cli/21688
310 * cli/cli-script.c (command_name_equals_not_inline): New function.
311 (process_next_line): Adjust 'if' clauses for "python", "compile"
312 and "guile" to use command_name_equals_not_inline.
313
314 2017-06-29 Pedro Alves <palves@redhat.com>
315
316 * completer.c (expression_completer): Call
317 linespec_location_completer instead of location_completer.
318
319 2017-06-29 Pedro Alves <palves@redhat.com>
320
321 * completer.c (expression_completer): Remove code that recomputes
322 'text' from 'word'.
323
324 2017-06-29 Yao Qi <yao.qi@linaro.org>
325
326 * regformats/regdat.sh: Generate code with
327 "ifndef IN_PROCESS_AGENT".
328
329 2017-06-28 Pedro Alves <palves@redhat.com>
330
331 * command.h: Include "common/scoped_restore.h".
332
333 2017-06-28 Yao Qi <yao.qi@linaro.org>
334
335 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
336 instead of obstack_grow.
337
338 2017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
339
340 PR gdb/21337
341 * symfile.c (reread_symbols): Call objfiles_changed just before
342 read_symbols.
343
344 2017-06-27 Pedro Alves <palves@redhat.com>
345
346 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
347 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
348 (completion_list_add_symbol, completion_list_add_msymbol):
349 ... these new functions.
350 (add_symtab_completions)
351 (default_make_symbol_completion_list_break_on_1): Adjust.
352
353 2017-06-27 Pedro Alves <palves@redhat.com>
354
355 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
356 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
357 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
358 dtor.
359 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
360 'storage_obstack' field an auto_obstack. In-class initialize all
361 non-bitfield fields. Make minsyms_read bool.
362 * symfile.c (read_symbols): Adjust.
363
364 2017-06-27 Alan Hayward <alan.hayward@arm.com>
365
366 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
367 (gdbsim_store_register): Likewise.
368
369 2017-06-27 Pedro Alves <palves@redhat.com>
370
371 * c-exp.y (name_obstack): Now an auto_obstack.
372 (yylex): Use auto_obstack::clear.
373 (c_parse): Use auto_obstack::clear instead of reinitializing and
374 freeing the obstack.
375 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
376 * d-exp.y (name_obstack): Now an auto_obstack.
377 (yylex): Use auto_obstack::clear.
378 (d_parse): Use auto_obstack::clear instead of reinitializing and
379 freeing the obstack.
380 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
381 auto_obstack.
382 * dwarf2read.c (create_addrmap_from_index)
383 (dwarf2_build_psymtabs_hard)
384 (update_enumeration_type_from_children): Likewise.
385 * gdb_obstack.h (auto_obstack): New type.
386 * go-exp.y (name_obstack): Now an auto_obstack.
387 (build_packaged_name): Use auto_obstack::clear.
388 (go_parse): Use auto_obstack::clear instead of reinitializing and
389 freeing the obstack.
390 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
391 auto_obstack.
392 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
393 * rust-exp.y (work_obstack): Now an auto_obstack.
394 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
395 reinitializing and freeing the obstack.
396 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
397 (host_char_to_target): Use auto_obstack.
398 * utils.h (make_cleanup_obstack_free): Delete declaration.
399 * valprint.c (generic_emit_char, generic_printstr): Use
400 auto_obstack.
401
402 2017-06-27 Simon Marchi <simon.marchi@ericsson.com>
403
404 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
405 thread.
406 (darwin_init_thread_list): Don't update dummy thread.
407 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
408
409 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
410
411 * record-full.c (netorder16): Remove.
412
413 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
414
415 * common/diagnostics.h: Define macros for GCC.
416 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
417 * common/vec.h: Include diagnostics.h.
418 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
419 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
420 warning.
421
422 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
423
424 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
425 New macro.
426 * ada-lex.l: Ignore deprecated register warnings.
427
428 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
429
430 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
431 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
432
433 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
434
435 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
436 its own line.
437
438 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
439
440 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
441
442 2017-06-23 Alan Hayward <alan.hayward@arm.com>
443
444 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
445 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
446 (xtensa_register_read_masked): Likewise.
447
448 2017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
449
450 * common/environ.c (gdb_environ::unset): Update comment.
451
452 2017-06-22 Alan Hayward <alan.hayward@arm.com>
453
454 * python/py-unwind.c (pyuw_sniffer): Allocate space for
455 registers.
456
457 2017-06-22 Alan Hayward <alan.hayward@arm.com>
458
459 * record-full.c (record_full_exec_insn): Use byte_vector.
460
461 2017-06-22 Yao Qi <yao.qi@linaro.org>
462
463 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
464 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
465
466 2017-06-22 Alan Hayward <alan.hayward@arm.com>
467
468 * remote.c (cached_reg): Move from here...
469 * regcache.h (cached_reg): ...to here.
470 * python/py-unwind.c (struct reg_info): Remove.
471 (cached_frame_info): Use cached_reg_t.
472 (pyuw_prev_register): Likewise.
473 (pyuw_sniffer): Use cached_reg_t and allocate registers.
474 (pyuw_dealloc_cache): Free all registers.
475
476 2017-06-22 Pedro Alves <palves@redhat.com>
477 Simon Marchi <simon.marchi@ericsson.com>
478
479 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
480 warning.
481 * common/diagnostics.h: New file.
482
483 2017-06-22 Pedro Alves <palves@redhat.com>
484
485 * common/agent.h: Add include guards.
486
487 2017-06-21 Simon Marchi <simon.marchi@ericsson.com>
488
489 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
490 talk about addressable units instead of bytes.
491
492 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
493
494 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
495 of '::const_iterator'.
496
497 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
498
499 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
500 'unittests/environ-selftests.c'.
501 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
502 * charset.c (find_charset_names): Declare object 'iconv_env'.
503 Update code to use 'iconv_env' object. Remove call to
504 'free_environ'.
505 * common/environ.c: Include <utility>.
506 (make_environ): Delete function.
507 (free_environ): Delete function.
508 (gdb_environ::clear): New function.
509 (gdb_environ::operator=): New function.
510 (gdb_environ::get): Likewise.
511 (environ_vector): Delete function.
512 (set_in_environ): Delete function.
513 (gdb_environ::set): New function.
514 (unset_in_environ): Delete function.
515 (gdb_environ::unset): New function.
516 (gdb_environ::envp): Likewise.
517 * common/environ.h: Include <vector>.
518 (struct gdb_environ): Delete; transform into...
519 (class gdb_environ): ... this class.
520 (free_environ): Delete prototype.
521 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
522 environ_vector): Likewise.
523 * infcmd.c (run_command_1): Update code to call
524 'envp' from 'gdb_environ' class.
525 (environment_info): Update code to call methods from 'gdb_environ'
526 class.
527 (unset_environment_command): Likewise.
528 (path_info): Likewise.
529 (path_command): Likewise.
530 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
531 (inferior::inferior): Initialize 'environment' using the host's
532 information.
533 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
534 Include "environ.h".
535 (class inferior) <environment>: Change type from 'struct
536 gdb_environ' to 'gdb_environ'.
537 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
538 methods from 'gdb_environ' class.
539 * solib.c (solib_find_1): Likewise
540 * unittests/environ-selftests.c: New file.
541
542 2017-06-20 Yao Qi <yao.qi@linaro.org>
543
544 * features/i386/i386-linux.xml: Exchange the order of including
545 32bit-linux.xml and 32bit-sse.xml.
546 * features/i386/i386-linux.c: Regenerated.
547
548 2017-06-20 Yao Qi <yao.qi@linaro.org>
549
550 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
551 Delete copy ctor and assignment operator.
552 (tdesc_type): Likewise.
553 (tdesc_feature): Likewise.
554 (tdesc_free_reg): Remove.
555 (tdesc_create_reg): Use new.
556 (tdesc_free_type): Remove.
557 (tdesc_create_vector): Use new.
558 (tdesc_create_union): Likewise.
559 (tdesc_create_flags): Likewise.
560 (tdesc_create_enum): Likewise.
561 (tdesc_free_feature): Delete.
562 (free_target_description): Use delete.
563
564 2017-06-19 John Baldwin <jhb@FreeBSD.org>
565
566 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
567 registers.
568
569 2017-06-19 Pedro Alves <palves@redhat.com>
570
571 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
572 after gdb::unlinker.
573
574 2017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
575
576 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
577 gdb_environ to access an environment variable.
578
579 2017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
580
581 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
582 gdb_byte*.
583
584 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
585
586 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
587
588 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
589
590 * configure: Re-generate.
591 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
592
593 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
594
595 * configure: Re-generate.
596 * warning.m4: Pass -Werror to compiler when checking for
597 supported warning flags.
598
599 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
600
601 * Makefile.in (COMPILE.pre): Add "-x c++".
602
603 2017-06-16 Alan Hayward <alan.hayward@arm.com>
604 Pedro Alves <palves@redhat.com>
605 Yao Qi <yao.qi@linaro.org>
606
607 * defs.h (RequireLongest): New.
608 (extract_integer): Declare function template.
609 (extract_signed_integer): Remove the declaration, but define it
610 static inline.
611 (extract_unsigned_integer): Likewise.
612 (store_integer): Declare function template.
613 (store_signed_integer): Remove the declaration, but define it
614 static inline.
615 (store_unsigned_integer): Likewise.
616 * findvar.c (extract_integer): New function template.
617 (extract_signed_integer): Remove.
618 (extract_unsigned_integer): Remove.
619 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
620 instantiations.
621 (store_integer): New function template.
622 (store_signed_integer): Remove.
623 (store_unsigned_integer): Remove.
624 (store_integer): Explicit instantiations.
625 * regcache.c (regcache_raw_read_signed): Update.
626 (regcache::raw_read): New function.
627 (regcache::raw_read_signed): Remove.
628 (regcache::raw_read_unsigned): Remove.
629 (regcache_raw_read_unsigned): Update.
630 (regcache_raw_write_unsigned): Update.
631 (regcache::raw_write_signed): Remove.
632 (regcache::raw_write): New function.
633 (regcache_cooked_read_signed): Update.
634 (regcache::raw_write_unsigned): Remove.
635 (regcache::cooked_read_signed): Remove.
636 (regcache_cooked_read_unsigned): Update.
637 (regcache::cooked_read_unsigned): Remove.
638 (regcache_cooked_write_signed): Update.
639 (regcache_cooked_write_unsigned): Update.
640 * regcache.h (regcache) <raw_read_signed>: Remove.
641 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
642 <raw_read, raw_write>: New.
643 <cooked_read_signed, cooked_write_signed>: Remove.
644 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
645 <cooked_read, cooked_write>: New.
646 * sh64-tdep.c (sh64_pseudo_register_read): Update.
647 (sh64_pseudo_register_write): Update.
648
649 2017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
650
651 * arc-tdep.c (arc_disassembler_options): New variable.
652 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
653 of default_print_insn.
654 (arc_delayed_print_insn): Set info->section when needed,
655 use default_print_insn to retrieve a disassembler.
656
657 2017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
658
659 PR gdb/21574
660 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
661 to mention $SHELL and startup-with-shell.
662
663 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
664
665 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
666
667 2017-06-14 Yao Qi <yao.qi@linaro.org>
668
669 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
670 default_print_insn instead of print_insn_aarch64.
671 * arm-tdep.c (gdb_print_insn_arm): Call
672 default_print_insn instead of print_insn_big_arm
673 and print_insn_little_arm.
674 * i386-tdep.c (i386_print_insn): Call default_print_insn
675 instead of print_insn_i386.
676 * ia64-tdep.c (ia64_print_insn): Call
677 default_print_insn instead of print_insn_ia64.
678 * mips-tdep.c (gdb_print_insn_mips): Call
679 default_print_insn instead of print_insn_big_mips
680 and print_insn_little_mips.
681 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
682 instead of print_insn_spu.
683
684 2017-06-14 Pedro Alves <palves@redhat.com>
685
686 * ada-lang.c: Include "common/byte-vector.h".
687 (ada_value_primitive_packed_val): Use gdb::byte_vector.
688 * charset.c (wchar_iterator::iterate): Resize the vector instead
689 of reserving it.
690 * common/byte-vector.h: Include "common/def-vector.h".
691 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
692 * cli/cli-dump.c: Include "common/byte-vector.h".
693 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
694 * common/byte-vector.h: New file.
695 * common/def-vector.h: New file.
696 * common/default-init-alloc.h: New file.
697 * dwarf2loc.c: Include "common/byte-vector.h".
698 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
699 instead of reserving it.
700 * dwarf2read.c: Include "common/byte-vector.h".
701 (data_buf::m_vec): Now a gdb::byte_vector.
702 * gdb_regex.c: Include "common/def-vector.h".
703 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
704 * mi/mi-main.c: Include "common/byte-vector.h".
705 (mi_cmd_data_read_memory): Use gdb::byte_vector.
706 * printcmd.c: Include "common/byte-vector.h".
707 (print_scalar_formatted): Use gdb::byte_vector.
708 * valprint.c: Include "common/byte-vector.h".
709 (maybe_negate_by_bytes, print_decimal_chars): Use
710 gdb::byte_vector.
711
712 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
713
714 * darwin-nat.c: Include "nat/fork-inferior.h".
715
716 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
717
718 * configure.nat: Factor out Darwin bits that are not
719 architecture-specific. Add fork-inferior.o.
720
721 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
722
723 * configure.nat: Factor out AIX bits that are not
724 architecture-specific. Add fork-inferior.o.
725
726 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
727
728 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
729 (read_pieced_value, write_pieced_value): ...here. Reduce to
730 wrappers that just call rw_pieced_value.
731
732 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
733
734 * dwarf2loc.c (write_pieced_value): When writing the data for a
735 memory piece, use write_memory_with_notification instead of
736 write_memory.
737
738 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
739
740 * valops.c (read_value_memory): Change embedded_offset to
741 represent a bit offset instead of a byte offset.
742 * value.h (read_value_memory): Adjust comment.
743
744 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
745
746 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
747 dest_offset_bits and source_offset_bits.
748 (write_pieced_value): Likewise.
749
750 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
751
752 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
753 given by DW_OP_bit_piece.
754 (write_pieced_value): Likewise.
755
756 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
757
758 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
759 some other preparations to the places where sufficient information
760 is available.
761 (write_pieced_value): Likewise.
762
763 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
764
765 * dwarf2loc.c (bits_to_bytes): New function.
766 (read_pieced_value): Fix offset calculations for register pieces
767 on big-endian targets.
768 (write_pieced_value): Likewise.
769
770 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
771
772 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
773 (write_pieced_value): Likewise.
774
775 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
776
777 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
778 transfer the source value's least significant bits, instead of its
779 lowest-addressed ones. Rename type_len to max_offset.
780 (read_pieced_value): Mirror above changes to write_pieced_value as
781 applicable.
782
783 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
784
785 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
786 truncate full bytes from dest_offset_bits before using it as an
787 offset into the buffer.
788
789 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
790
791 * dwarf2loc.c (write_pieced_value): Include transfer size in
792 byte-wise check.
793
794 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
795
796 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
797 calculation of this_size.
798
799 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
800
801 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
802 when targeting a bit-field.
803 (write_pieced_value): Likewise.
804
805 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
806
807 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
808 (allocate_piece_closure): Drop addr_size parameter.
809 (dwarf2_evaluate_loc_desc_full): Adjust call to
810 allocate_piece_closure.
811
812 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
813
814 PR gdb/21226
815 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
816 the LSB end, independent of endianness.
817
818 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
819
820 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
821 size capping.
822
823 2017-06-13 Yao Qi <yao.qi@linaro.org>
824
825 * mips-linux-nat.c: Move include features/mips*-linux.c to
826 mips-linux-tdep.c.
827 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
828 to mips-linux-tdep.c.
829 * mips-linux-tdep.c: Include features/mips*-linux.c
830 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
831 functions.
832 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
833 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
834 (tdesc_mips64_dsp_linux): Declare.
835
836 2017-06-12 Tom Tromey <tom@tromey.com>
837
838 * valprint.h (val_print_type_code_int): Remove.
839 * valprint.c (generic_val_print_int): Always call
840 val_print_scalar_formatted.
841 (val_print_type_code_int): Remove.
842 * printcmd.c (print_scalar_formatted): Handle options->format==0.
843 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
844 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
845 * ada-valprint.c (ada_val_print_num): Use
846 val_print_scalar_formatted.
847
848 2017-06-12 Tom Tromey <tom@tromey.com>
849
850 * printcmd.c (print_scalar_formatted): Unify the two switches.
851 Don't convert scalars to LONGEST.
852
853 2017-06-12 Tom Tromey <tom@tromey.com>
854
855 PR exp/16225:
856 * valprint.h (print_decimal_chars): Update.
857 * valprint.c (maybe_negate_by_bytes): New function.
858 (print_decimal_chars): Add "is_signed" argument.
859 * printcmd.c (print_scalar_formatted): Update.
860
861 2017-06-12 Tom Tromey <tom@tromey.com>
862
863 PR exp/16225:
864 * valprint.h (print_binary_chars, print_hex_chars): Update.
865 * valprint.c (val_print_type_code_int): Update.
866 (print_binary_chars): Add "zero_pad" argument.
867 (emit_octal_digit): New function.
868 (print_octal_chars): Don't zero-pad.
869 (print_decimal_chars): Likewise.
870 (print_hex_chars): Add "zero_pad" argument.
871 * sh64-tdep.c (sh64_do_fp_register): Update.
872 * regcache.c (regcache::dump): Update.
873 * printcmd.c (print_scalar_formatted): Update.
874 * infcmd.c (default_print_one_register_info): Update.
875
876 2017-06-12 Pedro Alves <palves@redhat.com>
877 Alan Hayward <alan.hayward@arm.com>
878
879 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
880 (mips_eabi_push_dummy_call): Rename local 'regsize' to
881 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
882 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
883 Assert that abi_regsize bytes fit in 'ref_valbuf'.
884
885 2017-06-12 Pedro Alves <palves@redhat.com>
886
887 * dwarf2read.c (mapped_symtab::data): Now a vector of
888 symtab_index_entry instead of vector of
889 std::unique_ptr<symtab_index_entry>. All users adjusted to check
890 whether an element's name is NULL instead of checking whether the
891 element itself is NULL.
892 (find_slot): Change return type. Adjust.
893 (hash_expand, , add_index_entry, uniquify_cu_indices)
894 (write_hash_table): Adjust.
895
896 2017-06-12 Pedro Alves <palves@redhat.com>
897
898 * dwarf2read.c (recursively_count_psymbols): New function.
899 (write_psymtabs_to_index): Call it to compute number of psyms and
900 pass estimate size of psyms_seen to unordered_set's ctor.
901
902 2017-06-12 Pedro Alves <palves@redhat.com>
903
904 * dwarf2read.c (write_hash_table): Check if key already exists
905 before emplacing.
906
907 2017-06-12 Pedro Alves <palves@redhat.com>
908
909 * dwarf2read.c (data_buf::append_space): Rename to...
910 (data_buf::grow): ... this, and make private. Adjust all callers.
911 (data_buf::append_uint): New method.
912 (add_address_entry, write_one_signatured_type)
913 (write_psymtabs_to_index): Use it.
914
915 2017-06-12 Pedro Alves <palves@redhat.com>
916
917 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
918 (file_write (FILE *, const std::vector<Elem>&)): Delete.
919 (data_buf::file_write): Call ::fwrite directly.
920
921 2017-06-12 Pedro Alves <palves@redhat.com>
922
923 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
924 std::vector::erase.
925
926 2017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
927
928 Code cleanup: C++ify .gdb_index producer.
929 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
930 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
931 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
932 (create_strtab, add_string): Remove.
933 (file_write, data_buf): New.
934 (struct symtab_index_entry): Use std::vector for cu_indices.
935 (struct mapped_symtab): Use std::vector for data.
936 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
937 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
938 Remove.
939 (find_slot): Change return type. Update it to the new data structures.
940 (hash_expand, add_index_entry): Update it to the new data structures.
941 (offset_type_compare): Remove.
942 (uniquify_cu_indices): Update it to the new data structures.
943 (c_str_view, c_str_view_hasher, vector_hasher): New.
944 (add_indices_to_cpool): Remove.
945 (write_hash_table): Update it to the new data structures.
946 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
947 (eq_psymtab_cu_index): Remove.
948 (psym_index_map): New typedef.
949 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
950 reference and std::unordered_map for cu_index_htab.
951 (add_address_entry, add_address_entry_worker, write_address_map)
952 (write_psymbols): Update it to the new data structures.
953 (write_obstack): Remove.
954 (struct signatured_type_index_data): Change types_list to a data_buf
955 reference and psyms_seen to a std::unordered_set reference.
956 (write_one_signatured_type, recursively_write_psymbols)
957 (write_psymtabs_to_index): Update it to the new data structures.
958
959 2017-06-11 Simon Marchi <simon.marchi@ericsson.com>
960
961 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
962 separate-debug-file commands.
963 * symfile.h (separate_debug_file_debug): New global.
964 * symfile.c (separate_debug_file_debug): New global.
965 (separate_debug_file_exists, find_separate_debug_file): Add
966 debug output.
967 (_initialize_symfile): Add "set debug separate-debug-file"
968 command.
969 * build-id.c (build_id_to_debug_bfd,
970 find_separate_debug_file_by_buildid): Add debug output.
971
972 2017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
973
974 * gdbarch.sh (displaced_step_free_closure): Remove.
975 * gdbarch.h, gdbarch.c: Re-generate.
976 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
977 displaced_step_free_closure.
978 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
979 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
980 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
981 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
982 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
983 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
984 * arch-utils.h (simple_displaced_step_free_closure): Remove.
985 * arch-utils.c (simple_displaced_step_free_closure): Remove.
986 * infrun.c (displaced_step_clear): Call xfree instead of
987 gdbarch_displaced_step_free_closure.
988
989 2017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
990
991 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
992 NULL".
993
994 2017-06-08 Alan Hayward <alan.hayward@arm.com>
995
996 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
997 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
998 (mn10300_push_dummy_call): Likewise.
999
1000 2017-06-08 Alan Hayward <alan.hayward@arm.com>
1001
1002 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
1003
1004 2017-06-08 Alan Hayward <alan.hayward@arm.com>
1005
1006 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
1007
1008 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
1009
1010 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
1011 able to start inferiors using a shell.
1012 (New remote packets): Announce new packet "QStartupWithShell".
1013 * remote.c: Add PACKET_QStartupWithShell.
1014 (extended_remote_create_inferior): Handle new
1015 PACKET_QStartupWithShell.
1016 (remote_protocol_features) <QStartupWithShell>: New entry for
1017 PACKET_QStartupWithShell.
1018 (_initialize_remote): Call "add_packet_config_cmd" for
1019 QStartupShell.
1020
1021 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
1022 Pedro Alves <palves@redhat.com>
1023
1024 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
1025 and "nat/fork-inferior.h".
1026 * common/common-inferior.h: New file, with contents from
1027 "gdb/inferior.h".
1028 * commom/common-utils.c: Include "common-utils.h".
1029 (stringify_argv): New function.
1030 * common/common-utils.h (stringify_argv): New prototype.
1031 * configure.nat: Add "fork-inferior.o" as a dependency for
1032 "*linux*", "fbsd*" and "nbsd*" hosts.
1033 * corefile.c (get_exec_file): Update comment.
1034 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
1035 instead of "startup_inferior".
1036 (darwin_create_inferior): Call "add_thread_silent" after
1037 "fork_inferior".
1038 * fork-child.c: Cleanup unnecessary includes.
1039 (SHELL_FILE): Move to "common/common-fork-child.c".
1040 (environ): Likewise.
1041 (exec_wrapper): Initialize.
1042 (get_exec_wrapper): New function.
1043 (breakup_args): Move to "common/common-fork-child.c"; rename to
1044 "breakup_args_for_exec".
1045 (escape_bang_in_quoted_argument): Move to
1046 "common/common-fork-child.c".
1047 (saved_ui): New variable.
1048 (prefork_hook): New function.
1049 (postfork_hook): Likewise.
1050 (postfork_child_hook): Likewise.
1051 (gdb_startup_inferior): Likewise.
1052 (fork_inferior): Move to "common/common-fork-child.c". Update
1053 function to support gdbserver.
1054 (startup_inferior): Likewise.
1055 * gdbcore.h (get_exec_file): Remove declaration.
1056 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
1057 instead of "startup_inferior". Call "add_thread_silent" after
1058 "fork_inferior".
1059 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
1060 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
1061 instead of "startup_inferior". Call "add_thread_silent" after
1062 "fork_inferior".
1063 * inferior.h: Include "common-inferior.h".
1064 (trace_start_error): Move to "common/common-utils.h".
1065 (trace_start_error_with_name): Likewise.
1066 (fork_inferior): Move prototype to "nat/fork-inferior.h".
1067 (startup_inferior): Likewise.
1068 (gdb_startup_inferior): New prototype.
1069 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
1070 * nat/fork-inferior.h: New file.
1071 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
1072 instead of "startup_inferior". Call "add_thread_silent" after
1073 "fork_inferior".
1074 * target.h (target_terminal_init): Move prototype to
1075 "target/target.h".
1076 (target_terminal_inferior): Likewise.
1077 (target_terminal_ours): Likewise.
1078 * target/target.h (target_terminal_init): New prototype, moved
1079 from "target.h".
1080 (target_terminal_inferior): Likewise.
1081 (target_terminal_ours): Likewise.
1082 * utils.c (gdb_flush_out_err): New function.
1083
1084 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
1085
1086 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
1087 * common/common-gdbthread.h: New file, with parts from
1088 "gdb/gdbthread.h".
1089 * gdbthread.h: Include "common-gdbthread.h".
1090 (switch_to_thread): Moved to "common/common-gdbthread.h".
1091
1092 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
1093
1094 * Makefile.in (SFILES): Add "common/job-control.c".
1095 (HFILES_NO_SRCDIR): Add "common/job-control.h".
1096 (COMMON_OBS): Add "job-control.o".
1097 * common/job-control.c: New file, with contents from
1098 "gdb/inflow.c".
1099 * common/job-control.h: New file, with contents from "terminal.h".
1100 * fork-child.c: Include "job-control.h".
1101 * inflow.c: Include "job-control.h".
1102 (gdb_setpgid): Move to "common/common-inflow.c".
1103 (_initialize_inflow): Move setting of "job_control" to
1104 "handle_job_control".
1105 * terminal.h (job_control): Moved to "common/common-terminal.h".
1106 (gdb_setpgid): Likewise.
1107 * top.c: Include "job_control.h".
1108 * utils.c: Likewise.
1109 (job_control): Moved to "job-control.c".
1110
1111 2017-06-07 Pedro Alves <palves@redhat.com>
1112
1113 * Makefile.in (SFILES): Add gdb_regex.c.
1114 (COMMON_OBS): Add gdb_regex.o.
1115 * ada-lang.c (ada_add_standard_exceptions)
1116 (ada_add_exceptions_from_frame, name_matches_regex)
1117 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
1118 parameter type to compiled_regex. Adjust.
1119 (ada_exceptions_list): Use compiled_regex.
1120 * break-catch-throw.c (exception_catchpoint::pattern): Now a
1121 std::unique_ptr<compiled_regex>.
1122 (exception_catchpoint::~exception_catchpoint): Remove regfree
1123 call.
1124 (check_status_exception_catchpoint): Adjust to use compiled_regex.
1125 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
1126 * breakpoint.c (solib_catchpoint::compiled): Now a
1127 std::unique_ptr<compiled_regex>.
1128 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
1129 (check_status_catch_solib): Adjust to use compiled_regex.
1130 (add_solib_catchpoint): Adjust to use compiled_regex.
1131 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
1132 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
1133 compiled_regex reference. Adjust to use it.
1134 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
1135 declaration. Include "gdb_regex.h".
1136 (apropos_cmd): Change regex parameter to compiled_regex reference.
1137 * gdb_regex.c: New file.
1138 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
1139 declarations.
1140 (class compiled_regex): New.
1141 * linux-tdep.c: Include "common/gdb_optional.h".
1142 (struct mapping_regexes): New, factored out from
1143 mapping_is_anonymous_p, and adjusted to use compiled_regex.
1144 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
1145 gdb::optional and remove cleanups. Adjust to compiled_regex.
1146 * probe.c: Include "common/gdb_optional.h".
1147 (collect_probes): Use compiled_regex and gdb::optional and remove
1148 cleanups.
1149 * skip.c: Include "common/gdb_optional.h".
1150 (skiplist_entry::compiled_function_regexp): Now a
1151 gdb::optional<compiled_regex>.
1152 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
1153 (free_skiplist_entry): Remove regfree call.
1154 (compile_skip_regexp, skip_rfunction_p): Adjust to use
1155 compiled_regex and gdb::optional.
1156 * symtab.c: Include "common/gdb_optional.h".
1157 (search_symbols): Use compiled_regex and gdb::optional.
1158 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
1159 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
1160 to gdb_regex.c.
1161
1162 2017-06-07 Alan Hayward <alan.hayward@arm.com>
1163
1164 * regcache.c (regcache::save): Avoid buffer use.
1165 (regcache::dump): Likewise.
1166
1167 2017-06-07 Alan Hayward <alan.hayward@arm.com>
1168
1169 * sh-tdep.c (sh_pseudo_register_read): Remove
1170 MAX_REGISTER_SIZE.
1171 (sh_pseudo_register_write): Likewise.
1172 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
1173 (sh64_pseudo_register_write): Likewise
1174
1175 2017-06-07 Alan Hayward <alan.hayward@arm.com>
1176
1177 * aarch64-tdep.c (aarch64_store_return_value): Use
1178 V_REGISTER_SIZE.
1179 (aarch64_pseudo_read_value): Likewise.
1180 (aarch64_pseudo_write): Likewise.
1181
1182 2017-06-06 Yao Qi <yao.qi@linaro.org>
1183
1184 * regformats/regdef.h (set_register_cache): Remove the
1185 declaration.
1186
1187 2017-06-06 Alan Hayward <alan.hayward@arm.com>
1188
1189 * frame.c (frame_unwind_register_signed): Use
1190 frame_unwind_register_value.
1191
1192 2017-06-06 Pedro Alves <palves@redhat.com>
1193
1194 PR breakpoints/21553
1195 * breakpoint.c (create_breakpoints_sal_default)
1196 (init_breakpoint_sal, create_breakpoint_sal): Use
1197 gdb::unique_xmalloc_ptr for string parameters.
1198 (create_breakpoint): Constify 'extra_string' and 'cond_string'
1199 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
1200 (base_breakpoint_create_breakpoints_sal)
1201 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
1202 (strace_marker_create_breakpoints_sal)
1203 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
1204 string parameters.
1205 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
1206 gdb::unique_xmalloc_ptr for string parameters.
1207 (create_breakpoint): Constify 'extra_string' and 'cond_string'
1208 parameters.
1209
1210 2017-06-06 Alan Hayward <alan.hayward@arm.com>
1211
1212 * alpha-tdep.c (alpha_register_to_value): Use
1213 get_frame_register_value.
1214 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
1215
1216 2017-06-06 Alan Hayward <alan.hayward@arm.com>
1217
1218 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
1219 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
1220 (ia64_value_to_register): Likewise.
1221 (ia64_extract_return_value): Likewise.
1222 (ia64_store_return_value): Likewise.
1223 (ia64_push_dummy_call): Likewise.
1224
1225 2017-06-04 Joel Brobecker <brobecker@adacore.com>
1226
1227 GDB 8.0 released.
1228
1229 2017-06-03 Simon Marchi <simon.marchi@ericsson.com>
1230
1231 * x86-linux-nat.c (struct arch_lwp_info): Remove.
1232
1233 2017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
1234
1235 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
1236 parameter.
1237 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
1238
1239 2017-06-02 Simon Marchi <simon.marchi@ericsson.com>
1240
1241 * event-loop.c (poll_timers): Unallocate timer using delete
1242 instead of xfree.
1243
1244 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
1245
1246 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
1247 (struct breakpoint) <~breakpoint>: New.
1248 (struct watchpoint): Inherit from breakpoint.
1249 <~watchpoint>: New.
1250 <base>: Remove.
1251 (struct tracepoint): Inherit from breakpoint.
1252 <base>: Remove.
1253 * breakpoint.c (longjmp_breakpoint_ops): Remove.
1254 (struct longjmp_breakpoint): Inherit from breakpoint.
1255 <~longjmp_breakpoint>: New.
1256 <base>: Remove.
1257 (new_breakpoint_from_type): Remove casts.
1258 (watchpoint_in_thread_scope): Remove reference to base field.
1259 (watchpoint_del_at_next_stop): Likewise.
1260 (update_watchpoint): Likewise.
1261 (watchpoint_check): Likewise.
1262 (bpstat_check_watchpoint): Likewise.
1263 (set_longjmp_breakpoint): Likewise.
1264 (struct fork_catchpoint): Inherit from breakpoint.
1265 <base>: Remove.
1266 (struct solib_catchpoint): Inherit from breakpoint.
1267 <~solib_catchpoint>: New.
1268 <base>: Remove.
1269 (dtor_catch_solib): Change to ...
1270 (solib_catchpoint::~solib_catchpoint): ... this.
1271 (breakpoint_hit_catch_solib): Remove reference to base field.
1272 (add_solib_catchpoint): Likewise.
1273 (create_fork_vfork_event_catchpoint): Likewise.
1274 (struct exec_catchpoint): Inherit from breakpoint.
1275 <~exec_catchpoint>: New.
1276 <base>: Remove.
1277 (dtor_catch_exec): Change to ...
1278 (exec_catchpoint::~exec_catchpoint): ... this.
1279 (dtor_watchpoint): Change to ...
1280 (watchpoint::~watchpoint): ... this.
1281 (watch_command_1): Remove reference to base field.
1282 (catch_exec_command_1): Likewise.
1283 (base_breakpoint_dtor): Change to ...
1284 (breakpoint::~breakpoint): ... this.
1285 (base_breakpoint_ops): Remove dtor field value.
1286 (longjmp_bkpt_dtor): Change to ...
1287 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
1288 (strace_marker_create_breakpoints_sal): Remove reference to base
1289 field.
1290 (delete_breakpoint): Don't manually call breakpoint destructor.
1291 (create_tracepoint_from_upload): Remove reference to base field.
1292 (trace_pass_set_count): Likewise.
1293 (initialize_breakpoint_ops): Don't initialize
1294 momentary_breakpoint_ops, don't set dtors.
1295 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
1296 <~ada_catchpoint>: New.
1297 <base>: Remove.
1298 (create_excep_cond_exprs): Remove reference to base field.
1299 (dtor_exception): Change to ...
1300 (ada_catchpoint::~ada_catchpoint): ... this.
1301 (dtor_catch_exception): Remove.
1302 (dtor_catch_exception_unhandled): Remove.
1303 (dtor_catch_assert): Remove.
1304 (create_ada_exception_catchpoint): Remove reference to base
1305 field.
1306 (initialize_ada_catchpoint_ops): Don't set dtors.
1307 * break-catch-sig.c (struct signal_catchpoint): Inherit from
1308 breakpoint.
1309 <~signal_catchpoint>: New.
1310 <base>: Remove.
1311 (signal_catchpoint_dtor): Change to ...
1312 (signal_catchpoint::~signal_catchpoint): ... this.
1313 (create_signal_catchpoint): Remove reference to base field.
1314 (initialize_signal_catchpoint_ops): Don't set dtor.
1315 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
1316 from breakpoint.
1317 <~syscall_catchpoint>: New.
1318 <base>: Remove.
1319 (dtor_catch_syscall): Change to ...
1320 (syscall_catchpoint::~syscall_catchpoint): ... this.
1321 (create_syscall_event_catchpoint): Remove reference to base
1322 field.
1323 (initialize_syscall_catchpoint_ops): Don't set dtor.
1324 * break-catch-throw.c (struct exception_catchpoint): Inherit
1325 from breakpoint.
1326 <~exception_catchpoint>: New.
1327 <base>: Remove.
1328 (dtor_exception_catchpoint): Change to ...
1329 (exception_catchpoint::~exception_catchpoint): ... this.
1330 (handle_gnu_v3_exceptions): Remove reference to base field.
1331 (initialize_throw_catchpoint_ops): Don't set dtor.
1332 * ctf.c (ctf_get_traceframe_address): Remove reference to base
1333 field.
1334 * remote.c (remote_get_tracepoint_status): Likewise.
1335 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
1336 * tracefile.c (tracefile_fetch_registers): Likewise.
1337 * tracepoint.c (actions_command): Likewise.
1338 (validate_actionline): Likewise.
1339 (tfind_1): Likewise.
1340 (get_traceframe_location): Likewise.
1341 (find_matching_tracepoint_location): Likewise.
1342 (parse_tracepoint_status): Likewise.
1343 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1344
1345 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
1346
1347 * breakpoint.c (struct longjmp_breakpoint): New struct.
1348 (is_tracepoint_type): Change return type to bool.
1349 (is_longjmp_type): New function.
1350 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
1351 (set_raw_breakpoint_without_location): Use
1352 new_breakpoint_from_type.
1353 (set_raw_breakpoint): Likewise.
1354
1355 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
1356
1357 * breakpoint.c (new_breakpoint_from_type): New function.
1358 (create_breakpoint_sal): Use new_breakpoint_from_type and
1359 unique_ptr.
1360 (create_breakpoint): Likewise.
1361
1362 2017-05-31 Simon Marchi <simon.marchi@ericsson.com>
1363
1364 * memattr.c (mem_info_command): Rename to ...
1365 (info_mem_command): ... this.
1366 (mem_enable_command): Rename to ...
1367 (enable_mem_command): ... this.
1368 (mem_disable_command): Rename to ...
1369 (disable_mem_command): ... this.
1370 (mem_delete_command): Rename to ...
1371 (delete_mem_command): ... this.
1372 (_initialize_mem): Adjust function names.
1373
1374 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
1375
1376 * btrace.c (handle_pt_insn_events): New.
1377 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
1378 STATUS. Split into this and ...
1379 (handle_pt_insn_event_flags): ... this.
1380
1381 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
1382
1383 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
1384 and struct pt_insn.resynced.
1385 * configure: Regenerated.
1386 * config.in: Regenerated.
1387
1388 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1389
1390 * btrace.c (ftrace_find_call_by_number): New function.
1391 (ftrace_new_function): Store objects, not pointers.
1392 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
1393 ftrace_new_gap, ftrace_update_function,
1394 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
1395 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
1396 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
1397 btrace_ends_with_single_insn, btrace_call_get): Account for
1398 btrace_thread_info::functions now storing objects.
1399 * btrace.h (struct btrace_thread_info): Add constructor.
1400 (struct btrace_thread_info) <functions>: Make std::vector.
1401 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
1402 Initialize with default values.
1403 * record-btrace.c (record_btrace_frame_sniffer): Account for
1404 btrace_thread_info::functions now storing objects.
1405
1406 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1407
1408 * btrace.c: Remove typedef bfun_s.
1409 (ftrace_new_gap): Directly add gaps to the list of gaps.
1410 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
1411 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
1412 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
1413 instead of gdb VEC.
1414
1415 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1416
1417 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
1418 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
1419 with btrace_thread_info::next_segment and
1420 btrace_thread_info::prev_segment.
1421 * btrace.h: Remove struct btrace_func_link.
1422 (struct btrace_function): Replace pair of function segment pointers
1423 with pair of indices.
1424 * python/py-record-btrace.c (btpy_call_prev_sibling,
1425 btpy_call_next_sibling): Replace references to
1426 btrace_thread_info::segment with btrace_thread_info::next_segment and
1427 btrace_thread_info::prev_segment.
1428 * record-btrace.c (record_btrace_frame_this_id): Use
1429 btrace_find_call_by_number.
1430
1431 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1432
1433 * btrace.c (ftrace_new_function, ftrace_fixup_level,
1434 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
1435 btrace_insn_next, btrace_insn_prev): Remove references to
1436 btrace_thread_info::flow.
1437 * btrace.h (struct btrace_function): Remove FLOW.
1438
1439 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1440
1441 * btrace.c (ftrace_find_call_by_number): New function.
1442 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
1443 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
1444 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
1445 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
1446 index.
1447 * btrace.h (struct btrace_function): Turn UP into an index.
1448 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
1449 as an index.
1450 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
1451 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
1452 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
1453
1454 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1455
1456 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
1457 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
1458 ftrace_update_function, ftrace_compute_global_level_offset,
1459 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
1460 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
1461 btrace_insn_end, btrace_is_empty): Remove references to
1462 btrace_thread_info::begin and btrace_thread_info::end.
1463 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
1464 (struct btrace_thread_info) <functions>: Adjust comment.
1465 * record-btrace.c (record_btrace_start_replaying): Remove reference to
1466 btrace_thread_info::begin.
1467
1468 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1469
1470 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
1471 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
1472 ftrace_update_function): Remove arguments that implicitly were always
1473 BTINFO->END.
1474 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
1475 Don't pass BTINFO->END.
1476
1477 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1478
1479 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
1480 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
1481 btrace_find_insn_by_number): Replace function segment pointer with
1482 index.
1483 (btrace_insn_cmp): Simplify.
1484 * btrace.h: (struct btrace_insn_iterator) Rename index to
1485 insn_index. Replace function segment pointer with index into function
1486 segment vector.
1487 * record-btrace.c (record_btrace_call_history): Replace function
1488 segment pointer use with index.
1489 (record_btrace_frame_sniffer): Retrieve function call segment through
1490 vector.
1491 (record_btrace_set_replay): Remove defunc't safety check.
1492
1493 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1494
1495 * btrace.c (btrace_ends_with_single_insn): New function.
1496 (btrace_call_get, btrace_call_number, btrace_call_begin,
1497 btrace_call_end, btrace_call_next, btrace_call_prev,
1498 btrace_find_call_by_number): Use index into call segment vector
1499 instead of pointer.
1500 (btrace_call_cmp): Simplify.
1501 * btrace.h (struct btrace_call_iterator): Replace function call segment
1502 pointer with index into vector.
1503 * record-btrace.c (record_btrace_call_history): Use index instead of
1504 pointer.
1505
1506 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1507
1508 * btrace.c (btrace_insn_begin, btrace_insn_end,
1509 btrace_find_insn_by_number): Add btinfo to iterator.
1510 * btrace.h (struct btrace_insn_iterator): Add btinfo.
1511
1512 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1513
1514 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
1515 and save pointers directly.
1516 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
1517 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
1518 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
1519 changed signature of functions.
1520 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
1521 (btrace_fetch): Remove code that adds btrace_function pointers to
1522 vector of btrace_functions.
1523 (btrace_clear): Simplify freeing vector of btrace_functions.
1524
1525 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
1526
1527 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
1528 Replace VEC_* with std::vector functions.
1529 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
1530 (struct btrace_thread_info)<functions>: Change type to std::vector.
1531
1532 2017-05-30 Simon Marchi <simon.marchi@ericsson.com>
1533
1534 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
1535 "Removed targets and native configurations" up. Merge duplicate
1536 "New commands" sub-sections. Add "New options" sub-sections.
1537
1538 2017-05-26 Alan Hayward <alan.hayward@arm.com>
1539
1540 * defs.h (copy_integer_to_size): New declaration.
1541 * findvar.c (copy_integer_to_size): New function.
1542 (do_cint_test): New selftest function.
1543 (copy_integer_to_size_test): Likewise.
1544 (_initialize_findvar): Likewise.
1545 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
1546 (mips_fbsd_collect_reg): Use raw_collect_integer.
1547 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
1548 (mips64_fill_gregset): Use raw_collect_integer
1549 (mips64_fill_fpregset): Use raw_supply_integer.
1550 * regcache.c (regcache::raw_supply_integer): New function.
1551 (regcache::raw_collect_integer): Likewise.
1552 * regcache.h: (regcache::raw_supply_integer): New declaration.
1553 (regcache::raw_collect_integer): Likewise.
1554
1555 2017-05-24 Yao Qi <yao.qi@linaro.org>
1556
1557 * Makefile.in (SFILES): Add gdbarch-selftests.c.
1558 (COMMON_OBS): Add gdbarch-selftests.o.
1559 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
1560 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
1561 * gdbarch-selftests.c: New file.
1562 * regcache.h (regcache) <~regcache>: Mark it virtual if
1563 GDB_SELF_TEST.
1564 <raw_write>: Likewise.
1565
1566 2017-05-24 Yao Qi <yao.qi@linaro.org>
1567
1568 * regcache.c (current_regcache): Change it to
1569 regcache::current_regcache.
1570 (regcache_observer_target_changed): Update.
1571 (regcache_thread_ptid_changed): Make it a regcache static
1572 method.
1573 (regcache_thread_ptid_changed): Update.
1574 (class regcache_access): New.
1575 (current_regcache_test): Update.
1576 (_initialize_regcache): Update.
1577 * regcache.h: Include forward_list.
1578 (regcache): Declare regcache_thread_ptid_changed and declare
1579 registers_changed_ptid as friend.
1580
1581 2017-05-24 Yao Qi <yao.qi@linaro.org>
1582
1583 * i387-tdep.c (i387_register_to_value): Use register_size
1584 instead of TYPE_LENGTH.
1585 * m68k-tdep.c (m68k_register_to_value): Likewise.
1586
1587 2017-05-24 Yao Qi <yao.qi@linaro.org>
1588
1589 * i387-tdep.c (i387_convert_register_p): Return false if type
1590 code isn't TYPE_CODE_FLT.
1591
1592 2017-05-24 Yao Qi <yao.qi@linaro.org>
1593
1594 * alpha-tdep.c (alpha_convert_register_p): Return true if type
1595 length is 4.
1596 (alpha_register_to_value): Remove type length check.
1597 (alpha_value_to_register): Likewise.
1598
1599 2017-05-24 Yao Qi <yao.qi@linaro.org>
1600
1601 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
1602 TYPE_CODE_FLT.
1603
1604 2017-05-24 Yao Qi <yao.qi@linaro.org>
1605
1606 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
1607 TYPE_CODE_FLT or not.
1608
1609 2017-05-24 Yao Qi <yao.qi@linaro.org>
1610
1611 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
1612 * avr-tdep.c (avr_gdbarch_init): Likewise.
1613 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
1614 * cris-tdep.c (cris_gdbarch_init): Likewise.
1615 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
1616 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
1617 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1618 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
1619 * mep-tdep.c (mep_gdbarch_init): Likewise.
1620 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
1621 * mips-tdep.c (mips_gdbarch_init): Likewise.
1622 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
1623 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1624 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
1625 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
1626 * v850-tdep.c (v850_gdbarch_init): Likewise.
1627
1628 2017-05-24 Yao Qi <yao.qi@linaro.org>
1629
1630 * selftest-arch.c (tests_with_arch): Call registers_changed
1631 and reinit_frame_cache.
1632 * selftest.c (run_self_tests): Likewise.
1633
1634 2017-05-24 Yao Qi <yao.qi@linaro.org>
1635
1636 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
1637 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
1638
1639 2017-05-24 Yao Qi <yao.qi@linaro.org>
1640
1641 * rl78-tdep.c (rl78_gdbarch_init): Don't call
1642 set_gdbarch_print_insn.
1643
1644 2017-05-24 Yao Qi <yao.qi@linaro.org>
1645
1646 * h8300-tdep.c (h8300_gdbarch_init): Don't call
1647 set_gdbarch_print_insn.
1648
1649 2017-05-24 Yao Qi <yao.qi@linaro.org>
1650
1651 * alpha-tdep.c (alpha_gdbarch_init): Don't call
1652 set_gdbarch_print_insn.
1653 * arc-tdep.c (arc_gdbarch_init): Likewise.
1654 * arch-utils.c: include dis-asm.h.
1655 (default_print_insn): New function.
1656 * arch-utils.h (default_print_insn): Declare.
1657 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
1658 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
1659 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
1660 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
1661 * frv-tdep.c (frv_gdbarch_init): Likewise.
1662 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
1663 * gdbarch.sh (print_insn): Use default_print_insn.
1664 * gdbarch.c: Regenerated.
1665 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
1666 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
1667 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
1668 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
1669 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1670 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
1671 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
1672 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
1673 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
1674 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
1675 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
1676 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1677 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
1678 * mt-tdep.c (mt_gdbarch_init): Likewise.
1679 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
1680 * nios2-tdep.c (nios2_print_insn): Remove.
1681 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
1682 * rx-tdep.c (rx_gdbarch_init): Likewise.
1683 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
1684 * score-tdep.c (score_print_insn): Remove.
1685 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
1686 * sh-tdep.c (sh_gdbarch_init): Likewise.
1687 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
1688 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1689 * tic6x-tdep.c (tic6x_print_insn): Remove.
1690 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
1691 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
1692 * v850-tdep.c (v850_gdbarch_init): Likewise.
1693 * vax-tdep.c (vax_gdbarch_init): Likewise.
1694 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
1695 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
1696
1697 2017-05-23 John Baldwin <jhb@FreeBSD.org>
1698
1699 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
1700 (MIPS_FP0_REGNUM): Remove.
1701 (MIPS_FSR_REGNUM): Remove.
1702 (mips_fbsd_supply_fpregs): Use mips_regnum.
1703 (mips_fbsd_supply_gregs): Likewise.
1704 (mips_fbsd_collect_fpregs): Likewise.
1705 (mips_fbsd_collect_gregs): Likewise.
1706
1707 2017-05-23 John Baldwin <jhb@FreeBSD.org>
1708
1709 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
1710 (getpfpregs_supplies): New function.
1711 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
1712 getfpregs_supplies.
1713 (mips_fbsd_store_inferior_registers): Likewise.
1714
1715 2017-05-22 Pedro Alves <palves@redhat.com>
1716
1717 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
1718 maintainer.
1719
1720 2017-05-22 Alan Hayward <alan.hayward@arm.com>
1721
1722 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
1723 (store_register): Likewise.
1724 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
1725 (get_decimal_float_return_value): Likewise.
1726 (do_ppc_sysv_return_value): Likewise.
1727 (ppc64_sysv_abi_push_integer): Likewise.
1728 (ppc64_sysv_abi_push_freg): Likewise.
1729 (ppc64_sysv_abi_return_value_base): Likewise.
1730 (ppc64_sysv_abi_return_value): Likewise.
1731 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
1732 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
1733 * rs6000-nat.c: Likewise.
1734 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
1735 (rs6000_value_to_register): Likewise.
1736 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
1737
1738 2017-05-21 Tom Tromey <tom@tromey.com>
1739
1740 PR rust/21466:
1741 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
1742 arrays as "[T]", not "[T; ]".
1743
1744 2017-05-19 Tom Tromey <tom@tromey.com>
1745
1746 PR rust/21484:
1747 * rust-lang.c (exp_descriptor_rust): New function.
1748 (rust_language_defn): Use it.
1749 * p-lang.c (pascal_language_defn): Update.
1750 * opencl-lang.c (opencl_language_defn): Update.
1751 * objc-lang.c (objc_language_defn): Update.
1752 * m2-lang.c (m2_language_defn): Update.
1753 * language.h (struct language_defn)
1754 <la_watch_location_expression>: New member.
1755 * language.c (unknown_language_defn, auto_language_defn)
1756 (local_language_defn): Update.
1757 * go-lang.c (go_language_defn): Update.
1758 * f-lang.c (f_language_defn): Update.
1759 * d-lang.c (d_language_defn): Update.
1760 * c-lang.h (c_watch_location_expression): Declare.
1761 * c-lang.c (c_watch_location_expression): New function.
1762 (c_language_defn, cplus_language_defn, asm_language_defn)
1763 (minimal_language_defn): Use it.
1764 * breakpoint.c (watch_command_1): Call
1765 la_watch_location_expression.
1766 * ada-lang.c (ada_language_defn): Update.
1767
1768 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1769
1770 PR tui/21482
1771 * gdb_curses.h (NOMACROS): Define.
1772 (NCURSES_NOMACROS): Define.
1773
1774 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1775
1776 PR tui/21482
1777 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
1778 arg to char *.
1779 * tui/tui-wingeneral.c (box_win): Likewise.
1780 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
1781 (tui_show_source_line): Likewise.
1782 (tui_show_exec_info_content): Likewise.
1783
1784 2017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
1785
1786 * sparc-tdep.c (sparc_structure_return_p)
1787 (sparc_arg_on_registers_p): New functions.
1788 (sparc32_store_arguments): Use them.
1789 * sparc64-tdep.c (sparc64_16_byte_align_p)
1790 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
1791 Handle TYPE_CODE_ARRAY.
1792
1793 2017-05-17 Yao Qi <yao.qi@linaro.org>
1794
1795 * cli/cli-decode.c (add_alias_cmd): New function.
1796 * command.h (add_alias_cmd): Declare.
1797 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
1798 instead call add_alias_cmd.
1799
1800 2017-05-17 Pedro Alves <palves@redhat.com>
1801
1802 * Makefile.in (nat_extra_makefile_frag): Rename to ...
1803 (nat_makefile_frag): ... this. All references updated.
1804 * configure.ac: Likewise.
1805 * configure.nat: Likewise. Enhance comments.
1806 * configure: Regenerate.
1807
1808 2017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1809
1810 * procfs.c (procfs_create_inferior): Change prototype to match
1811 definition.
1812
1813 2017-05-13 Eli Zaretskii <eliz@gnu.org>
1814
1815 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
1816 C++ compiler warning.
1817
1818 2017-05-12 Tom Tromey <tom@tromey.com>
1819
1820 PR rust/21483:
1821 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
1822 recurse, just call value_struct_elt directly.
1823
1824 2017-05-12 Tom Tromey <tom@tromey.com>
1825
1826 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
1827 OP_RUST_ARRAY>: Fix.
1828
1829 2017-05-12 Tom Tromey <tom@tromey.com>
1830
1831 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
1832
1833 2017-05-09 Yao Qi <yao.qi@linaro.org>
1834
1835 * regcache.c: Include <forward_list>.
1836 (struct regcache_list): Remove.
1837 (current_regcache): Update.
1838 (get_thread_arch_aspace_regcache): Update for std::forward_list.
1839 (regcache_thread_ptid_changed): Likewise.
1840 (registers_changed_ptid): Likewise.
1841 (current_regcache_size): Likewise.
1842
1843 2017-05-09 Yao Qi <yao.qi@linaro.org>
1844
1845 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
1846 (current_regcache_size): New function.
1847 (current_regcache_test): New function.
1848 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
1849
1850 2017-05-08 Alan Hayward <alan.hayward@arm.com>
1851
1852 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
1853 (print_gp_register_row): Use get_frame_register_value.
1854
1855 2017-05-08 Alan Hayward <alan.hayward@arm.com>
1856
1857 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
1858 (mips_supply_fpregset): Likewise.
1859 (mips64_supply_gregset): Likewise.
1860
1861 2017-05-08 Alan Hayward <alan.hayward@arm.com>
1862
1863 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
1864 regcache->raw_supply_zeroed.
1865
1866 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
1867
1868 * configure.nat: Rearrange 'case' statements to match
1869 host before cpu.
1870
1871 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
1872
1873 * Makefile.in: Remove "@host_makefile_frag@". Add variables
1874 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
1875 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
1876 "@nat_extra_makefile_frag@".
1877 (Makefile): Remove dependency on "@frags@".
1878 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
1879 (data-directory/Makefile): Likewise.
1880 * config/aarch64/linux.mh: Deleted; moved contents to
1881 "gdb/configure.nat".
1882 * config/alpha/alpha-linux.mh: Likewise.
1883 * config/alpha/nbsd.mh: Likewise.
1884 * config/arm/linux.mh: Likewise.
1885 * config/arm/nbsdelf.mh: Likewise.
1886 * config/i386/cygwin.mh: Likewise.
1887 * config/i386/cygwin64.mh: Likewise.
1888 * config/i386/darwin.mh: Likewise.
1889 * config/i386/fbsd.mh: Likewise.
1890 * config/i386/fbsd64.mh: Likewise.
1891 * config/i386/go32.mh: Likewise.
1892 * config/i386/i386gnu.mh: Likewise.
1893 * config/i386/i386sol2.mh: Likewise.
1894 * config/i386/linux.mh: Likewise.
1895 * config/i386/linux64.mh: Likewise.
1896 * config/i386/mingw.mh: Likewise.
1897 * config/i386/mingw64.mh: Likewise.
1898 * config/i386/nbsd64.mh: Likewise.
1899 * config/i386/nbsdelf.mh: Likewise.
1900 * config/i386/nto.mh: Likewise.
1901 * config/i386/obsd.mh: Likewise.
1902 * config/i386/obsd64.mh: Likewise.
1903 * config/i386/sol2-64.mh: Likewise.
1904 * config/ia64/linux.mh: Likewise.
1905 * config/m32r/linux.mh: Likewise.
1906 * config/m68k/linux.mh: Likewise.
1907 * config/m68k/nbsdelf.mh: Likewise.
1908 * config/m68k/obsd.mh: Likewise.
1909 * config/m88k/obsd.mh: Likewise.
1910 * config/mips/fbsd.mh: Likewise.
1911 * config/mips/linux.mh: Likewise.
1912 * config/mips/nbsd.mh: Likewise.
1913 * config/mips/obsd64.mh: Likewise.
1914 * config/pa/linux.mh: Likewise.
1915 * config/pa/nbsd.mh: Likewise.
1916 * config/pa/obsd.mh: Likewise.
1917 * config/powerpc/aix.mh: Likewise.
1918 * config/powerpc/fbsd.mh: Likewise.
1919 * config/powerpc/linux.mh: Likewise.
1920 * config/powerpc/nbsd.mh: Likewise.
1921 * config/powerpc/obsd.mh: Likewise.
1922 * config/powerpc/ppc64-linux.mh: Likewise.
1923 * config/powerpc/spu-linux.mh: Likewise.
1924 * config/s390/linux.mh: Likewise.
1925 * config/sh/nbsd.mh: Likewise.
1926 * config/sparc/fbsd.mh: Likewise.
1927 * config/sparc/linux.mh: Likewise.
1928 * config/sparc/linux64.mh: Likewise.
1929 * config/sparc/nbsd64.mh: Likewise.
1930 * config/sparc/nbsdelf.mh: Likewise.
1931 * config/sparc/obsd64.mh: Likewise.
1932 * config/sparc/sol2.mh: Likewise.
1933 * config/tilegx/linux.mh: Likewise.
1934 * config/vax/nbsdelf.mh: Likewise.
1935 * config/vax/obsd.mh: Likewise.
1936 * config/xtensa/linux.mh: Likewise.
1937 * config/i386/i386gnu.mn: New file, with excerpts from
1938 "config/i386/i386gnu.mh".
1939 * configure: Regenerate.
1940 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
1941 *.mh files under "gdb/config".
1942 * configure.nat: New file, with contents from the
1943 "gdb/config/*/*.mh" files.
1944
1945 2017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
1946
1947 * btrace.c (btrace_clear): Free insn vector.
1948
1949 2017-05-05 Pedro Alves <palves@redhat.com>
1950
1951 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
1952 * configure: Regenerate.
1953
1954 2017-05-04 Pedro Alves <palves@redhat.com>
1955
1956 * Makefile.in (SFILES): Add progspace-and-thread.c.
1957 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
1958 (COMMON_OBS): Add progspace-and-thread.o.
1959 * breakpoint.c: Include "progspace-and-thread.h".
1960 (update_inserted_breakpoint_locations)
1961 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
1962 Use scoped_restore_current_pspace_and_thread.
1963 (create_std_terminate_master_breakpoint): Use
1964 scoped_restore_current_program_space.
1965 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
1966 (print_breakpoint_location): Use
1967 scoped_restore_current_program_space.
1968 (bp_loc_is_permanent): Use
1969 scoped_restore_current_pspace_and_thread.
1970 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
1971 (download_tracepoint_locations): Use
1972 scoped_restore_current_pspace_and_thread.
1973 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
1974 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
1975 (enum step_over_calls_kind): Moved from inferior.h.
1976 (class scoped_restore_current_thread): New class.
1977 * gdbthread.h (make_cleanup_restore_current_thread): Delete
1978 declaration.
1979 (scoped_restore_current_thread): New class.
1980 * infcmd.c: Include "common/gdb_optional.h".
1981 (continue_1, proceed_after_attach): Use
1982 scoped_restore_current_thread.
1983 (notice_new_inferior): Use scoped_restore_current_thread.
1984 * inferior.c: Include "progspace-and-thread.h".
1985 (restore_inferior, save_current_inferior): Delete.
1986 (add_inferior_command, clone_inferior_command): Use
1987 scoped_restore_current_pspace_and_thread.
1988 * inferior.h (scoped_restore_current_inferior): New class.
1989 * infrun.c: Include "progspace-and-thread.h" and
1990 "common/gdb_optional.h".
1991 (follow_fork_inferior): Use
1992 scoped_restore_current_pspace_and_thread.
1993 (scoped_restore_exited_inferior): New class.
1994 (handle_vfork_child_exec_or_exit): Use
1995 scoped_restore_exited_inferior,
1996 scoped_restore_current_pspace_and_thread,
1997 scoped_restore_current_thread and scoped_restore.
1998 (fetch_inferior_event): Use scoped_restore_current_thread.
1999 * linespec.c (decode_line_full, decode_line_1): Use
2000 scoped_restore_current_program_space.
2001 * mi/mi-main.c: Include "progspace-and-thread.h".
2002 (exec_continue): Use scoped_restore_current_thread.
2003 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
2004 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
2005 * proc-service.c (ps_pglobal_lookup): Use
2006 scoped_restore_current_program_space.
2007 * progspace-and-thread.c: New file.
2008 * progspace-and-thread.h: New file.
2009 * progspace.c (release_program_space, clone_program_space): Use
2010 scoped_restore_current_program_space.
2011 (restore_program_space, save_current_program_space)
2012 (save_current_space_and_thread): Delete.
2013 (switch_to_program_space_and_thread): Moved to
2014 progspace-and-thread.c.
2015 * progspace.h (save_current_program_space)
2016 (save_current_space_and_thread): Delete declarations.
2017 (scoped_restore_current_program_space): New class.
2018 * remote.c (remote_btrace_maybe_reopen): Use
2019 scoped_restore_current_thread.
2020 * symtab.c: Include "progspace-and-thread.h".
2021 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
2022 * thread.c (print_thread_info_1): Use
2023 scoped_restore_current_thread.
2024 (struct current_thread_cleanup): Delete.
2025 (do_restore_current_thread_cleanup)
2026 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
2027 (scoped_restore_current_thread::~scoped_restore_current_thread):
2028 ... this new dtor.
2029 (make_cleanup_restore_current_thread): Rename/convert to ...
2030 (scoped_restore_current_thread::scoped_restore_current_thread):
2031 ... this new ctor.
2032 (thread_apply_all_command): Use scoped_restore_current_thread.
2033 (thread_apply_command): Use scoped_restore_current_thread.
2034 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
2035 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
2036
2037 2017-05-04 Pedro Alves <palves@redhat.com>
2038
2039 * thread.c (make_cleanup_restore_current_thread): Move
2040 find_thread_ptid call before the is_stopped call. Assert that the
2041 thread is found. Replace is_stopped call by checking the thread's
2042 state directly. Remove unnecessary NULL-thread check.
2043
2044 2017-05-04 Pedro Alves <palves@redhat.com>
2045
2046 * corelow.c (thread_section_name): New class.
2047 (get_core_register_section, get_core_siginfo): Use it.
2048
2049 2017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
2050
2051 * corelow.c (sniff_core_bfd): Remove extra semicolon.
2052 (get_core_register_section): Remove xfree of NULL pointer.
2053
2054 2017-05-03 Alan Hayward <alan.hayward@arm.com>
2055
2056 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
2057 * regcache.c (regcache::raw_supply_zeroed): New function.
2058 * regcache.h (regcache::raw_supply_zeroed): New declaration.
2059
2060 2017-05-03 Simon Marchi <simon.marchi@ericsson.com>
2061
2062 * gdbarch.sh: Remove commented out definition of
2063 TARGET_CHAR_BIT.
2064 * gdbarch.h: Re-generate.
2065
2066 2017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
2067
2068 * configure: Regenerate.
2069
2070 2017-05-02 Simon Marchi <simon.marchi@ericsson.com>
2071
2072 * solib-target.c (solib_target_relocate_section_addresses):
2073 Remove num_section_bases, num_bases, segment_bases variables.
2074
2075 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
2076
2077 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
2078
2079 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
2080
2081 * solib-target.c: Include <vector>
2082 (struct lm_info_target) <~lm_info_target>: Remove.
2083 <segment_bases, section_bases>: Change type to
2084 std::vector<CORE_ADDR>.
2085 (library_list_start_segment, library_list_start_section,
2086 library_list_end_library,
2087 solib_target_relocate_section_addresses): Adjust.
2088
2089 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
2090
2091 * gdbarch.sh (software_single_step): Change return type to
2092 std::vector<CORE_ADDR>.
2093 * gdbarch.c, gdbarch.h: Re-generate.
2094 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
2095 Adjust.
2096 (arm_deal_with_atomic_sequence_raw): Adjust.
2097 (thumb_get_next_pcs_raw): Adjust.
2098 (arm_get_next_pcs_raw): Adjust.
2099 (arm_get_next_pcs): Adjust.
2100 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
2101 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
2102 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
2103 (alpha_software_single_step): Adjust.
2104 * alpha-tdep.h (alpha_software_single_step): Adjust.
2105 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
2106 * arm-tdep.c (arm_software_single_step): Adjust.
2107 (arm_breakpoint_kind_from_current_state): Adjust.
2108 * arm-tdep.h (arm_software_single_step): Adjust.
2109 * breakpoint.c (insert_single_step_breakpoint): Adjust.
2110 * cris-tdep.c (cris_software_single_step): Adjust.
2111 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
2112 (micromips_deal_with_atomic_sequence): Adjust.
2113 (deal_with_atomic_sequence): Adjust.
2114 (mips_software_single_step): Adjust.
2115 * mips-tdep.h (mips_software_single_step): Adjust.
2116 * moxie-tdep.c (moxie_software_single_step): Adjust.
2117 * nios2-tdep.c (nios2_software_single_step): Adjust.
2118 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
2119 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
2120 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
2121 * s390-linux-tdep.c (s390_software_single_step): Adjust.
2122 * sparc-tdep.c (sparc_software_single_step): Adjust.
2123 * spu-tdep.c (spu_software_single_step): Adjust.
2124 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
2125
2126 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
2127
2128 * gdbarch.sh: Use semi-colon as field separator instead of colon.
2129 * gdbarch.h: Re-generate.
2130
2131 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2132
2133 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
2134 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
2135 * python/py-instruction.c, python/py-instruction.h: New file.
2136 * python/py-record.c: Add py-instruction.h include.
2137 (gdbpy_initialize_record): Make gdb.Instruction a super class of
2138 gdb.RecordInstruction.
2139 * python/python-internal.h: Add gdbpy_initialize_instruction
2140 declaration.
2141 * python/python.c (do_start_initialization): Add
2142 gdbpy_initialize_instruction.
2143
2144 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2145
2146 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
2147 Remove.
2148 (btrace_func_from_recpy_func): New function.
2149 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
2150 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
2151 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
2152 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
2153 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
2154 Also, use new helper functions.
2155 (btpy_list_item): Use new helper functions.
2156 (recpy_bt_function_call_history): Use new type name.
2157 (btpy_call_getset): Remove.
2158 (gdbpy_initialize_btrace): Remove code to initialize
2159 gdb.BtraceFunctionCall.
2160 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
2161 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
2162 recpy_bt_func_prev, recpy_bt_func_next): New export.
2163 * python/py-record.c (recpy_func_type): New static object.
2164 (recpy_func_new, recpy_func_level, recpy_func_symbol,
2165 recpy_func_instructions, recpy_func_up, recpy_func_prev,
2166 recpy_func_next): New function.
2167 (recpy_element_hash, recpy_element_richcompare): Updated comment.
2168 (recpy_func_getset): New static object.
2169 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
2170 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
2171
2172 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2173
2174 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
2175 (btpy_object, btpy_insn_type, btpy_new): Remove.
2176 (btpy_list_object): Use gdb.RecordInstruction type instead of
2177 gdb.BtraceInstruction type.
2178 (btrace_insn_from_recpy_insn): New function.
2179 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
2180 btpy_new.
2181 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
2182 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
2183 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
2184 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
2185 instead of btpy_object.
2186 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
2187 btpy_insn_data, btpy_insn_decode): Rename to ...
2188 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
2189 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
2190 recpy_bt_insn_decode): This. Also, use new helper functions.
2191 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
2192 recpy_insn_type.
2193 (btpy_insn_getset): Remove.
2194 (gdbpy_initialize_btrace): Remove code to initialize
2195 gdb.BtraceInstruction. Use recpy_element_object.
2196 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
2197 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
2198 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
2199 * python/py-record.c (recpy_insn_type): New static object.
2200 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
2201 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
2202 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
2203 New function.
2204 (recpy_insn_getset): New static object.
2205 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
2206 * python/py-record.h (recpy_element_object): New typedef.
2207 (recpy_insn_type, recpy_insn_new): New export.
2208
2209 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2210
2211 * py-record-btrace.c (btpy_insn_new): Removed.
2212 (btpy_insn_or_gap_new): New function.
2213 (btpy_insn_error): Removed.
2214 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
2215 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
2216 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
2217 btpy_insn_or_gap_new instead of btpy_insn_new.
2218 (btpy_insn_getset): Remove btpy_insn_error.
2219 * py-record.c (recpy_gap_type): New static object.
2220 (recpy_gap_object): New typedef.
2221 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
2222 recpy_gap_reason_string): New function.
2223 (recpy_gap_getset): New static object.
2224 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
2225 * py-record.h (recpy_gap_new): New export.
2226
2227 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2228
2229 * python/py-record.c (recpy_ptid): Remove.
2230 (recpy_record_getset): Remove recpy_ptid.
2231
2232 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2233
2234 * btrace.c (btrace_fetch): Set inferior_ptid.
2235 * python/py-record-btrace.c: Add "py-record.h" include.
2236 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
2237 recpy_bt_end, recpy_bt_instruction_history,
2238 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
2239 in gdb.Record object instead of current ptid.
2240 * python/py-record.c: Include new "py-record.h" file.
2241 (recpy_record_object): Moved to py-record.h.
2242 * python/py-record.h: New file.
2243
2244 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
2245
2246 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
2247 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
2248 indentation.
2249
2250 2017-05-01 Joel Brobecker <brobecker@adacore.com>
2251
2252 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
2253 the past maintainers section.
2254
2255 2017-04-28 Yao Qi <yao.qi@linaro.org>
2256
2257 * infcmd.c (get_return_value): Use regcache ctor, and remove
2258 cleanup.
2259
2260 2017-04-28 Yao Qi <yao.qi@linaro.org>
2261 Pedro Alves <palves@redhat.com>
2262
2263 * regcache.c (regcache::regcache): New tag dispatch ctor.
2264 (do_cooked_read): Moved above.
2265 (regcache_dup): Use the tag dispatch ctor..
2266 * regcache.h (regcache): Declare ctor, delete copy ctor and
2267 assignment operator, remove friend regcache_dup.
2268
2269 2017-04-28 Yao Qi <yao.qi@linaro.org>
2270
2271 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
2272 call method save instead of regcache_cpy.
2273 * regcache.h (struct regcache): Make regcache_dup a friend.
2274
2275 2017-04-28 Yao Qi <yao.qi@linaro.org>
2276
2277 * regcache.c (struct regcache): Move to regcache.h
2278 (regcache::arch): New method.
2279 (regcache_get_ptid): Update.
2280 (get_regcache_arch): Call arch method.
2281 (get_regcache_aspace): Call method aspace.
2282 (register_buffer): Change it to method.
2283 (regcache_save): Change it to regcache::save.
2284 (regcache_restore): Likewise.
2285 (regcache_cpy_no_passthrough): Remove the declaration.
2286 (regcache_cpy): Call methods restore and cpy_no_passthrough.
2287 (regcache_cpy_no_passthrough): Change it to method
2288 cpy_no_passthrough.
2289 (regcache_register_status): Change it to method
2290 get_register_status.
2291 (regcache_invalidate): Change it to method invalidate.
2292 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
2293 (regcache_raw_update): Change it to method raw_update.
2294 (regcache_raw_read): Likewise.
2295 (regcache_raw_read_signed): Likewise.
2296 (regcache_raw_read_unsigned): Likewise.
2297 (regcache_raw_write_signed): Likewise.
2298 (regcache_raw_write_unsigned): Likewise.
2299 (regcache_cooked_read): Likewise.
2300 (regcache_cooked_read_value): Likewise.
2301 (regcache_cooked_read_signed): Likewise.
2302 (regcache_cooked_read_unsigned): Likewise.
2303 (regcache_cooked_write_signed): Likewise.
2304 (regcache_cooked_write_unsigned): Likewise.
2305 (regcache_raw_set_cached_value): Likewise.
2306 (regcache_raw_write): Likewise.
2307 (regcache_cooked_write): Likewise.
2308 (regcache_xfer_part): Likewise.
2309 (regcache_raw_read_part): Likewise.
2310 (regcache_raw_write_part): Likewise.
2311 (regcache_cooked_read_part): Likewise.
2312 (regcache_cooked_write_part): Likewise.
2313 (regcache_raw_supply): Likewise.
2314 (regcache_raw_collect): Likewise.
2315 (regcache_transfer_regset): Likewise.
2316 (regcache_supply_regset): Likewise.
2317 (regcache_collect_regset): Likewise.
2318 (regcache_debug_print_register): Likewise.
2319 (enum regcache_dump_what): Move it to regcache.h.
2320 (regcache_dump): Change it to method dump.
2321 * regcache.h (enum regcache_dump_what): New.
2322 (class regcache): New.
2323 * target.c (target_fetch_registers): Call method
2324 debug_print_register.
2325 (target_store_registers): Likewise.
2326
2327 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2328
2329 * windows-nat.c (struct lm_info_windows): Initialize field.
2330 (windows_make_so): Allocate lm_info_windows with new.
2331 (windows_free_so): Free lm_info_windows with delete.
2332
2333 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2334
2335 * solib-darwin.c (struct lm_info_darwin): Initialize field.
2336 (darwin_current_sos): Allocate lm_info_darwin with new, remove
2337 cleanup.
2338 (darwin_free_so): Free lm_info_darwin with delete.
2339
2340 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2341
2342 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
2343 <l_addr_p>: Change type to bool.
2344 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
2345 (svr4_free_so): Free lm_info_svr4 with delete.
2346 (svr4_copy_library_list): Replace memcpy with call to copy
2347 constructor.
2348 (library_list_start_library, svr4_default_sos): Allocate
2349 lm_info_svr4 with new.
2350
2351 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2352
2353 * solib-target.c (struct lm_info_target): Add destructor,
2354 initialize fields.
2355 <name>: Change type to std::string.
2356 (library_list_start_library): Allocate lm_info_target with new.
2357 (solib_target_free_library_list): Free lm_info_target with
2358 delete.
2359 (solib_target_current_sos): Adapt to std::string.
2360 (solib_target_free_so): Free lm_info_target with delete.
2361
2362 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2363
2364 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
2365 fields.
2366 (frv_current_sos): Allocate lm_info_frv with new.
2367 (frv_relocate_main_executable): Free lm_info_frv with delete,
2368 allocate with new.
2369 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
2370
2371 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2372
2373 * solib-frv.c (struct lm_info_frv): Fix indentation.
2374
2375 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2376
2377 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
2378 map field.
2379 (dsbt_current_sos): Allocate lm_info_dsbt with new.
2380 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
2381 and allocate with new.
2382 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
2383
2384 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2385
2386 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
2387 <filename, member_name>: Change type to std::string.
2388 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
2389 (library_list_start_library): Allocate lm_info_aix with new.
2390 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
2391 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
2392 with copy constructor.
2393
2394 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2395
2396 * solist.h (struct lm_info): Remove.
2397 (struct lm_info_base): New class.
2398 (struct so_list) <lm_info>: Change type to lm_info_base *.
2399 * nto-tdep.c (struct lm_info): Remove.
2400 (lm_addr): Adjust.
2401 * solib-aix.c (struct lm_info): Rename to ...
2402 (struct lm_info_aix): ... this. Extend lm_info_base.
2403 (lm_info_p): Rename to ...
2404 (lm_info_aix_p): ... this, and adjust.
2405 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
2406 solib_aix_parse_libraries, library_list_start_library,
2407 solib_aix_free_library_list, solib_aix_parse_libraries,
2408 solib_aix_get_library_list,
2409 solib_aix_relocate_section_addresses, solib_aix_free_so,
2410 solib_aix_get_section_offsets,
2411 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
2412 Adjust.
2413 (struct solib_aix_inferior_data) <library_list>: Adjust.
2414 * solib-darwin.c (struct lm_info): Rename to ...
2415 (struct lm_info_darwin): ... this. Extend lm_info_base.
2416 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
2417 * solib-dsbt.c (struct lm_info): Rename to ...
2418 (struct lm_info_dsbt): ... this. Extend lm_info_base.
2419 (struct dsbt_info) <main_executable_lm_info): Adjust.
2420 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
2421 dsbt_relocate_section_addresses): Adjust.
2422 * solib-frv.c (struct lm_info): Rename to ...
2423 (struct lm_info_frv): ... this. Extend lm_info_base.
2424 (main_executable_lm_info): Adjust.
2425 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
2426 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
2427 find_canonical_descriptor_in_load_object,
2428 frv_fdpic_find_canonical_descriptor): Adjust.
2429 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
2430 to lm_info_svr4.
2431 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
2432 svr4_clear_so, svr4_copy_library_list,
2433 library_list_start_library, svr4_default_sos, svr4_read_so_list,
2434 svr4_current_sos, svr4_fetch_objfile_link_map,
2435 solist_update_incremental): Adjust.
2436 * solib-svr4.h (struct lm_info_svr4): Move here from
2437 solib-svr4.c.
2438 * solib-target.c (struct lm_info): Rename to ...
2439 (struct lm_info_target): ... this. Extend lm_info_base.
2440 (lm_info_p): Rename to ...
2441 (lm_info_target_p): ... this.
2442 (solib_target_parse_libraries, library_list_start_segment,
2443 library_list_start_section, library_list_start_library,
2444 library_list_end_library, solib_target_free_library_list,
2445 solib_target_current_sos, solib_target_free_so,
2446 solib_target_relocate_section_addresses): Adjust.
2447 * windows-nat.c (struct lm_info): Rename to ...
2448 (struct lm_info_windows): ... this. Extend lm_info_base.
2449 (windows_make_so, handle_load_dll, handle_unload_dll,
2450 windows_xfer_shared_libraries): Adjust.
2451
2452 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
2453
2454 * solib-darwin.c (struct darwin_so_list): Remove.
2455 (darwin_current_sos): Allocate an so_list object instead of a
2456 darwin_so_list, separately allocate an lm_info object.
2457 (darwin_free_so): Free lm_info.
2458
2459 2017-04-28 John Baldwin <jhb@FreeBSD.org>
2460
2461 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
2462 with fprintf_filtered.
2463
2464 2017-04-28 Yao Qi <yao.qi@linaro.org>
2465
2466 * regcache.c (regcache::regcache): New function.
2467 (regcache::~regcache): New function.
2468 (regcache_xmalloc_1): Remove.
2469 (regcache_xmalloc): Call new regcache.
2470 (regcache_xfree): Call delete regcache.
2471 (get_thread_arch_aspace_regcache): Call new regcache.
2472
2473 2017-04-28 Yao Qi <yao.qi@linaro.org>
2474
2475 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
2476 lwp instead of ptid_get_lwp.
2477
2478 2017-04-28 Yao Qi <yao.qi@linaro.org>
2479
2480 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
2481 lwp_info instead of getting from inferior_ptid.
2482
2483 2017-04-27 Keith Seitz <keiths@redhat.com>
2484
2485 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
2486 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
2487 (CV_CONVERSION_BADNESS): Define.
2488 (rank_one_type): Remove overly restrictive rvalue reference
2489 rank checks.
2490 Add cv-qualifier checks and subranks for type equality.
2491 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
2492 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
2493 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
2494
2495 2017-04-27 Simon Marchi <simon.marchi@ericsson.com>
2496
2497 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
2498 count when creating the object.
2499
2500 2017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
2501 Ulrich Weigand <uweigand@de.ibm.com>
2502
2503 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
2504 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
2505 is used in AIX.
2506 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
2507 (process_xcoff_symbol): Likewise.
2508 (scan_xcoff_symtab): Likewise.
2509
2510 2017-04-26 Alan Hayward <alan.hayward@arm.com>
2511
2512 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
2513 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
2514 (ia64_access_reg): Use get_frame_register_unsigned.
2515 (ia64_access_rse_reg): Likewise.
2516 (ia64_libunwind_frame_prev_register): Likewise.
2517
2518 2017-04-26 Jiong Wang <jiong.wang@arm.com>
2519
2520 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
2521 * gdbarch.c: Regenerated.
2522 * gdbarch.h: Regenerated.
2523 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
2524 visibility external.
2525 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
2526 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
2527 (enum cfa_how_kind): Move to ...
2528 (struct dwarf2_frame_state_reg_info): Likewise.
2529 (struct dwarf2_frame_state): Likewise.
2530 * dwarf2-frame.h: ... here.
2531 (dwarf2_frame_state_alloc_regs): New declaration.
2532 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
2533 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
2534
2535 2017-04-26 Alan Hayward <alan.hayward@arm.com>
2536
2537 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
2538 regcache_raw_read_unsigned.
2539 (xtensa_pseudo_register_write): Likewise.
2540
2541 2017-04-26 Alan Hayward <alan.hayward@arm.com>
2542
2543 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
2544 (nds32_pseudo_register_write): Likewise.
2545
2546 2017-04-25 Yao Qi <yao.qi@linaro.org>
2547
2548 * regcache.c (struct regcache) <readonly_p>: Change its type
2549 to bool.
2550 (regcache_xmalloc_1): Update parameter type and callers update.
2551
2552 2017-04-25 Yao Qi <yao.qi@linaro.org>
2553
2554 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
2555 set_gdbarch_wchar_bit.
2556 * arm-tdep.c (arm_gdbarch_init): Likewise.
2557
2558 2017-04-25 Pedro Alves <palves@redhat.com>
2559
2560 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
2561 (BothAreRelocatable, memcopy, memmove): Don't define.
2562 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
2563 macros.
2564
2565 2017-04-25 Pedro Alves <palves@redhat.com>
2566
2567 * common/common-defs.h: Include "common/poison.h".
2568 * common/function-view.h: (Not, Or, Requires): Move to traits.h
2569 and adjust.
2570 * common/poison.h: New file.
2571 * common/traits.h: Include <type_traits>.
2572 (Not, Or, Requires): New, moved from common/function-view.h.
2573
2574 2017-04-25 Pedro Alves <palves@redhat.com>
2575
2576 * breakpoint.h (struct breakpoint): In-class initialize all
2577 fields. Make boolean fields "bool".
2578 * breakpoint.c (init_raw_breakpoint_without_location): Remove
2579 memset call and initializations no longer necessary.
2580
2581 2017-04-25 Pedro Alves <palves@redhat.com>
2582
2583 * btrace.c (pt_btrace_insn_flags): Change parameter type to
2584 reference.
2585 (pt_btrace_insn): New function.
2586 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
2587
2588 2017-04-25 Pedro Alves <palves@redhat.com>
2589
2590 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
2591 "base" field and inherit from "bp_location" instead. Add
2592 non-default ctor.
2593 (allocate_location_exception): Use new non-default ctor.
2594 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
2595 (init_bp_location): Convert to ...
2596 (bp_location::bp_location): ... this new ctor, and remove memset
2597 call.
2598 (base_breakpoint_allocate_location): Use the new non-default ctor.
2599 * breakpoint.h (bp_location): Now a class. Declare default and
2600 non-default ctors. In-class initialize all members.
2601 (init_bp_location): Remove declaration.
2602
2603 2017-04-25 Pedro Alves <palves@redhat.com>
2604
2605 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
2606 assignment operator.
2607
2608 2017-04-24 Yao Qi <yao.qi@linaro.org>
2609
2610 * doublest.c (convert_doublest_to_floatformat): Call
2611 floatformat_totalsize_bytes.
2612
2613 2017-04-22 Tom Tromey <tom@tromey.com>
2614
2615 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
2616 ui_out_emit_list.
2617 * stack.c (print_frame): Use ui_out_emit_list.
2618 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
2619 ui_out_emit_list.
2620 * mi/mi-main.c (print_one_inferior)
2621 (mi_cmd_data_list_register_names)
2622 (mi_cmd_data_list_register_values, mi_cmd_list_features)
2623 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
2624 ui_out_emit_list.
2625 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
2626 (mi_output_solib_attribs): Use ui_out_emit_list,
2627 ui_out_emit_tuple.
2628 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
2629 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
2630 (mi_cmd_stack_list_args, list_args_or_locals): Use
2631 ui_out_emit_list.
2632 * disasm.c (do_assembly_only): Use ui_out_emit_list.
2633 * breakpoint.c (print_solib_event, output_thread_groups): Use
2634 ui_out_emit_list.
2635
2636 2017-04-22 Tom Tromey <tom@tromey.com>
2637
2638 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
2639 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
2640 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
2641
2642 2017-04-22 Tom Tromey <tom@tromey.com>
2643
2644 * tracepoint.c (tvariables_info_1)
2645 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
2646
2647 2017-04-22 Tom Tromey <tom@tromey.com>
2648
2649 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
2650 annotate_arg_emitter.
2651 * breakpoint.c (print_mention_watchpoint)
2652 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
2653 * annotate.h (struct annotate_arg_emitter): New.
2654
2655 2017-04-22 Tom Tromey <tom@tromey.com>
2656
2657 * record-btrace.c (record_btrace_insn_history)
2658 (record_btrace_insn_history_range, record_btrace_call_history)
2659 (record_btrace_call_history_range): Use ui_out_emit_tuple.
2660 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
2661 ui_out_emit_tuple.
2662 * stack.c (print_frame_info): Use ui_out_emit_tuple.
2663 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
2664 * skip.c (skip_info): Use ui_out_emit_tuple.
2665 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
2666 * progspace.c (print_program_space): Use ui_out_emit_tuple.
2667 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
2668 * osdata.c (info_osdata): Use ui_out_emit_tuple.
2669 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
2670 ui_out_emit_tuple.
2671 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
2672 (output_register, mi_cmd_data_read_memory)
2673 (mi_cmd_data_read_memory_bytes, mi_load_progress)
2674 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
2675 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
2676 Use ui_out_emit_tuple.
2677 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
2678 ui_out_emit_tuple.
2679 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
2680 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
2681 * linux-thread-db.c (info_auto_load_libthread_db): Use
2682 ui_out_emit_tuple.
2683 * inferior.c (print_inferior): Use ui_out_emit_tuple.
2684 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
2685 * disasm.c (do_mixed_source_and_assembly_deprecated)
2686 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
2687 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
2688 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
2689 * breakpoint.c (print_one_breakpoint_location)
2690 (print_one_breakpoint): Use ui_out_emit_tuple.
2691 * auto-load.c (print_script, info_auto_load_cmd): Use
2692 ui_out_emit_tuple.
2693 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
2694
2695 2017-04-21 Simon Marchi <simon.marchi@ericsson.com>
2696
2697 * thread.c (print_thread_info_1): Remove dead code.
2698
2699 2017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2700
2701 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
2702 GDB_SELF_TEST.
2703 * arm-tdep.c (selftests::arm_record_test): Likewise.
2704
2705 2017-04-21 Yao Qi <yao.qi@linaro.org>
2706
2707 * regcache.c (regcache_restore): Remove argument 2. Replace
2708 argument 3 with regcache. Get register status from
2709 src->register_status and get register contents from
2710 register_buffer (src, regnum).
2711 (regcache_cpy): Update.
2712
2713 2017-04-19 Pedro Alves <palves@redhat.com>
2714
2715 * gdbthread.h (thread): Add missing closing parenthesis in
2716 comment.
2717
2718 2017-04-19 Pedro Alves <palves@redhat.com>
2719
2720 * common/refcounted-object.h: New file.
2721 * gdbthread.h: Include "common/refcounted-object.h".
2722 (thread_info): Inherit from refcounted_object and add comments.
2723 (thread_info::incref, thread_info::decref)
2724 (thread_info::m_refcount): Delete.
2725 (thread_info::deletable): Use the refcounted_object::refcount()
2726 method.
2727 * inferior.c (current_inferior_): Add comment.
2728 (set_current_inferior): Increment/decrement refcounts.
2729 (prune_inferiors, remove_inferior_command): Skip inferiors marked
2730 not-deletable instead of comparing with the current inferior.
2731 (initialize_inferiors): Increment the initial inferior's refcount.
2732 * inferior.h (struct inferior): Forward declare.
2733 Include "common/refcounted-object.h".
2734 (current_inferior, set_current_inferior): Move declaration to
2735 before struct inferior's definition, and fix comment.
2736 (inferior): Inherit from refcounted_object. Add comments.
2737 * thread.c (switch_to_thread_no_regs): Reference the thread's
2738 inferior pointer directly instead of doing a ptid lookup.
2739 (switch_to_no_thread): New function.
2740 (switch_to_thread(thread_info *)): New function, factored out
2741 from ...
2742 (switch_to_thread(ptid_t)): ... this.
2743 (restore_current_thread): Delete.
2744 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
2745 fields, and add 'inf' field.
2746 (do_restore_current_thread_cleanup): Check whether old->inf is
2747 alive instead of looking up an inferior by ptid. Use
2748 switch_to_thread and switch_to_no_thread.
2749 (restore_current_thread_cleanup_dtor): Use old->inf directly
2750 instead of lookup up an inferior by id. Decref the inferior.
2751 Don't restore 'removable'.
2752 (make_cleanup_restore_current_thread): Same the inferior pointer
2753 in old, instead of the inferior number. Incref the inferior.
2754 Don't save/clear 'removable'.
2755
2756 2017-04-19 Pedro Alves <palves@redhat.com>
2757
2758 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
2759 unittests/scoped_restore-selftests.c.
2760 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
2761 * common/scoped_restore.h (scoped_restore_base): Make "class".
2762 (scoped_restore_base::release): New public method.
2763 (scoped_restore_base::scoped_restore_base): New protected ctor.
2764 (scoped_restore_base::m_saved_var): New protected field.
2765 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
2766 scoped_restore_base base class instead of m_saved_var directly.
2767 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
2768 (scoped_restore_tmpl::scoped_restore_tmpl(const
2769 scoped_restore_tmpl<T>&)): Likewise.
2770 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
2771 method.
2772 (scoped_restore_tmpl::saved_var): New method.
2773 (scoped_restore_tmpl::m_saved_var): Delete.
2774 * inferior.h (inferior::detaching): Now a bool.
2775 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
2776 cleanup.
2777 * unittests/scoped_restore-selftests.c: New file.
2778
2779 2017-04-19 Pedro Alves <palves@redhat.com>
2780
2781 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
2782 Re-sort in alphabetic order.
2783
2784 2017-04-18 Pedro Alves <palves@redhat.com>
2785
2786 * xml-support.c (obstack_xml_printf): Delete.
2787 * xml-support.h (obstack_xml_printf): Delete.
2788
2789 2017-04-18 Pedro Alves <palves@redhat.com>
2790
2791 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
2792 vdebug, verror, body_text, start_element, end_element, name,
2793 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
2794 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
2795 is_xinclude>: Make private and add m_ prefix.
2796 (gdb_xml_parser::body_text): New method, based on ...
2797 (gdb_xml_body_text): ... this. Adjust.
2798 (gdb_xml_parser::vdebug): New method, based on ...
2799 (gdb_xml_debug): ... this. Adjust.
2800 (gdb_xml_parser::verror): New method, based on ...
2801 (gdb_xml_error): ... this. Adjust.
2802 (gdb_xml_parser::start_element): New method, based on ...
2803 (gdb_xml_start_element): ... this. Adjust.
2804 (gdb_xml_start_element_wrapper): Defer to
2805 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
2806 (gdb_xml_parser::end_element): New method, based on ...
2807 (gdb_xml_end_element_wrapper): ... this. Adjust.
2808 (gdb_xml_parser::~gdb_xml_parser): Adjust.
2809 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
2810 (gdb_xml_parser::use_dtd): New method, based on ...
2811 (gdb_xml_use_dtd): ... this. Adjust.
2812 (gdb_xml_parser::parse): New method, based on ...
2813 (gdb_xml_parse): ... this. Adjust.
2814 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
2815 (xinclude_start_include): Adjust to call the parser's name method.
2816 (xml_xinclude_default, xml_xinclude_start_doctype)
2817 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
2818 method.
2819 (xml_process_xincludes): Adjust to call parser methods.
2820 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
2821 declarations.
2822
2823 2017-04-18 Pedro Alves <palves@redhat.com>
2824
2825 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
2826 gdb::optional<std::string>.
2827 * xml-support.c: Include <string>.
2828 (scope_level::scope_level(scope_level &&))
2829 (scope_level::~scope_level): Delete.
2830 (scope_level::body): Now a std::string.
2831 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
2832 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
2833 parameter.
2834 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
2835 (xinclude_parsing_data::output): Now a std::string reference.
2836 (xinclude_start_include): Adjust.
2837 (xml_xinclude_default): Adjust.
2838 (xml_process_xincludes): Add 'output' parameter, and return bool.
2839 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
2840 and return bool.
2841 * xml-tdesc.c: Include <unordered_map> and <string>.
2842 (tdesc_xml_cache): Delete.
2843 (tdesc_xml_cache_s): Delete.
2844 (xml_cache): Now an std::unordered_map.
2845 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
2846 (target_fetch_description_xml): Change return type to
2847 gdb::optional<std::string>, and adjust.
2848 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
2849 (target_fetch_description_xml): Change return type to
2850 gdb::optional<std::string>.
2851
2852 2017-04-18 Pedro Alves <palves@redhat.com>
2853
2854 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
2855 unittests/optional-selftests.c.
2856 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
2857 * unittests/optional-selftests.c: New file.
2858 * unittests/optional/assignment/1.cc: New file.
2859 * unittests/optional/assignment/2.cc: New file.
2860 * unittests/optional/assignment/3.cc: New file.
2861 * unittests/optional/assignment/4.cc: New file.
2862 * unittests/optional/assignment/5.cc: New file.
2863 * unittests/optional/assignment/6.cc: New file.
2864 * unittests/optional/assignment/7.cc: New file.
2865 * unittests/optional/cons/copy.cc: New file.
2866 * unittests/optional/cons/default.cc: New file.
2867 * unittests/optional/cons/move.cc: New file.
2868 * unittests/optional/cons/value.cc: New file.
2869 * unittests/optional/in_place.cc: New file.
2870 * unittests/optional/observers/1.cc: New file.
2871 * unittests/optional/observers/2.cc: New file.
2872
2873 2017-04-18 Pedro Alves <palves@redhat.com>
2874
2875 * common/gdb_optional.h: Include common/traits.h.
2876 (in_place_t): New type.
2877 (in_place): New constexpr variable.
2878 (optional::optional): Remove member initialization of
2879 m_instantiated.
2880 (optional::optional(in_place_t...)): New constructor.
2881 (optional::~optional): Use reset.
2882 (optional::optional(const optional&)): New.
2883 (optional::optional(const optional&&)): New.
2884 (optional::optional(T &)): New.
2885 (optional::optional(T &&)): New.
2886 (operator::operator=(const optional &)): New.
2887 (operator::operator=(optional &&)): New.
2888 (operator::operator= (const T &))
2889 (operator::operator= (T &&))
2890 (operator::emplace (Args &&... args)): Return a T&. Use reset.
2891 (operator::reset): New.
2892 (operator::m_instantiated):: Add in-class initializer.
2893 * common/traits.h: Include <type_traits>.
2894 (struct And): New types.
2895
2896 2017-04-18 Pedro Alves <palves@redhat.com>
2897
2898 * xml-support.c: Include <vector>.
2899 (scope_level::scope_level(const gdb_xml_element *))
2900 (scope_level::scope_level(scope_level&&)): New.
2901 (scope_level::~scope_level): New.
2902 (scope_level_s): Delete.
2903 (gdb_xml_parser::scopes): Now a std::vector.
2904 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
2905 Use std::vector.
2906 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
2907 scope cleanup code.
2908 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
2909 of the scopes member. Use std::vector::emplace_back.
2910
2911 2017-04-18 Pedro Alves <palves@redhat.com>
2912
2913 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
2914 a bool.
2915 (gdb_xml_end_element): Change type of first parameter.
2916 (gdb_xml_cleanup): Rename to ...
2917 (gdb_xml_parser::~gdb_xml_parser): ... this.
2918 (gdb_xml_create_parser_and_cleanup): Delete with ...
2919 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
2920 to this new ctor.
2921 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
2922 using gdb_xml_create_parser_and_cleanup.
2923 (xinclude_parsing_data): Add ctor/dtor.
2924 (xml_xinclude_cleanup): Delete.
2925 (xml_process_xincludes): Create a local xinclude_parsing_data
2926 instead of heap-allocating one. Create a local gdb_xml_parser
2927 instead of heap-allocating one with
2928 gdb_xml_create_parser_and_cleanup.
2929
2930 2017-04-18 John Baldwin <jhb@FreeBSD.org>
2931
2932 PR threads/20743
2933 * fbsd-nat.c (resume_one_thread_cb): Remove.
2934 (resume_all_threads_cb): Remove.
2935 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
2936 iterate_over_threads.
2937
2938 2017-04-17 Joel Brobecker <brobecker@adacore.com>
2939
2940 * NEWS: Create a new section for the next release branch.
2941 Rename the section of the current branch, now that it has
2942 been cut.
2943
2944 2017-04-17 Joel Brobecker <brobecker@adacore.com>
2945
2946 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
2947 * version.in: Bump version to 8.0.50.DATE-git.
2948
2949 2017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
2950
2951 PR gdb/21385
2952 * windows-nat.c (windows_create_inferior): Declare 'allargs'
2953 independently of the host, and fix build breakage on Cygwin.
2954
2955 2017-04-13 Pedro Alves <palves@redhat.com>
2956
2957 * inferior.c (free_inferior): Convert to ...
2958 (inferior::~inferior): ... this dtor.
2959 (inferior::inferior): New ctor, factored out from ...
2960 (add_inferior_silent): ... here. Allocate the inferior with a new
2961 expression.
2962 (delete_inferior): Call delete instead of free_inferior.
2963 * inferior.h (gdb_environ, continuation): Forward declare.
2964 (inferior): Now a class. Add in-class initialization to all
2965 members. Make boolean fields bool, except 'detaching'.
2966 (inferior::inferior): New explicit ctor.
2967 (inferior::~inferior): New.
2968
2969 2017-04-13 Pedro Alves <palves@redhat.com>
2970
2971 * inferior.c (init_inferior_list): Delete.
2972 * inferior.h (init_inferior_list): Delete.
2973
2974 2017-04-13 Pedro Alves <palves@redhat.com>
2975
2976 PR threads/13217
2977 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
2978 (top level): Call it twice, with different thread sets.
2979
2980 2017-04-13 Pedro Alves <palves@redhat.com>
2981
2982 * thread.c: Include <algorithm>.
2983 (thread_array_cleanup): Delete.
2984 (scoped_inc_dec_ref): New class.
2985 (live_threads_count): New function.
2986 (set_thread_refcount): Delete.
2987 (tp_array_compar_ascending): Now a bool.
2988 (tp_array_compar): Convert to a std::sort comparison function.
2989 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
2990 and live_threads_count.
2991
2992 2017-04-13 Pedro Alves <palves@redhat.com>
2993
2994 * infrun.c (follow_fork_inferior): Also switch the current
2995 inferior.
2996
2997 2017-04-13 Pedro Alves <palves@redhat.com>
2998
2999 * breakpoint.c (watch_command_1): Save watchpoint-frame info
3000 before calling create_internal_breakpoint.
3001
3002 2017-04-13 Pedro Alves <palves@redhat.com>
3003
3004 * fork-child.c (execv_argv): New class.
3005 (breakup_args): Refactored as ...
3006 (execv_argv::init_for_no_shell): .. this method of execv_argv.
3007 Copy arguments to storage and replace separators with NULL
3008 terminators in place.
3009 (escape_bang_in_quoted_argument): Adjust to return bool.
3010 (execv_argv::execv_argv): New ctor.
3011 (execv_argv::init_for_shell): New method, factored out from
3012 fork_inferior. Don't strdup strings into the vector.
3013 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
3014 Remove free_vector_argv call.
3015
3016 2017-04-13 Yao Qi <yao.qi@linaro.org>
3017
3018 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
3019 tdep->rx_psw_type.
3020
3021 2017-04-13 Yao Qi <yao.qi@linaro.org>
3022
3023 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
3024 * rx-tdep.c (rx_gdbarch_init): Likewise.
3025
3026 2017-04-13 Pedro Alves <palves@redhat.com>
3027
3028 * breakpoint.h (struct breakpoint): Reindent.
3029
3030 2017-04-13 Pedro Alves <palves@redhat.com>
3031
3032 * breakpoint.c (bp_location): Rename to ...
3033 (bp_locations): ... this. All references updated.
3034 (bp_location_count): Rename to ...
3035 (bp_locations_count): ... this. All references updated.
3036 (bp_location_placed_address_before_address_max): Rename to ...
3037 (bp_locations_placed_address_before_address_max): ... this. All
3038 references updated.
3039 (bp_location_shadow_len_after_address_max): Rename to ...
3040 (bp_locations_shadow_len_after_address_max): ... this. All
3041 references updated.
3042 (bp_location_compare_addrs): Rename to ...
3043 (bp_locations_compare_addrs): ... this. All references updated.
3044 (bp_location_compare):Rename to ...
3045 (bp_locations_compare): ... this. All references updated.
3046 (bp_location_target_extensions_update): Rename to ...
3047 (bp_locations_target_extensions_update): ... this. All references
3048 updated.
3049
3050 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
3051
3052 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
3053 * common/common.m4: Check headers 'termios.h', 'termio.h' and
3054 'sgtty.h'.
3055 * common/gdb_termios.h: New file, with parts of "terminal.h".
3056 * inflow.c: Include "gdb_termios.h".
3057 * ser-unix.c: Include "gdb_termios.h".
3058 * terminal.h: Move terminal-related defines to
3059 "common/gdb_termios.h".
3060
3061 2017-04-12 Tom Tromey <tom@tromey.com>
3062
3063 * probe.c (parse_probes): Update.
3064 * location.h (delete_event_location): Don't declare.
3065 (event_location_deleter::operator()): Update.
3066 * location.c (event_location_deleter::operator()): Rename from
3067 delete_event_location.
3068 * linespec.h (linespec_result) <location>: Change type to
3069 event_location_up.
3070 * linespec.c (canonicalize_linespec, event_location_to_sals)
3071 (decode_objc): Update.
3072 (linespec_result): Don't call delete_event_location.
3073 * breakpoint.c (create_breakpoints_sal)
3074 (bkpt_probe_create_sals_from_location)
3075 (strace_marker_create_sals_from_location): Update.
3076
3077 2017-04-12 Tom Tromey <tom@tromey.com>
3078
3079 * linespec.h (struct linespec_result): Add constructor and
3080 destructor.
3081 (init_linespec_result, destroy_linespec_result)
3082 (make_cleanup_destroy_linespec_result): Don't declare.
3083 * linespec.c (init_linespec_result): Remove.
3084 (linespec_result::~linespec_result): Rename from
3085 destroy_linespec_result. Update.
3086 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
3087 Remove.
3088 * breakpoint.c (create_breakpoint, break_range_command)
3089 (decode_location_default): Update.
3090 * ax-gdb.c (agent_command_1): Update.
3091
3092 2017-04-12 Tom Tromey <tom@tromey.com>
3093
3094 * remote.c (remote_download_tracepoint): Update.
3095 * python/py-breakpoint.c (bppy_get_location): Update.
3096 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
3097 (gdbscm_breakpoint_location): Update.
3098 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
3099 * breakpoint.h (struct breakpoint) <location, location_range_end>:
3100 Change type to event_location_up.
3101 * breakpoint.c (create_overlay_event_breakpoint)
3102 (create_longjmp_master_breakpoint)
3103 (create_std_terminate_master_breakpoint)
3104 (create_exception_master_breakpoint)
3105 (breakpoint_event_location_empty_p, print_breakpoint_location)
3106 (print_one_breakpoint_location, create_thread_event_breakpoint)
3107 (init_breakpoint_sal, create_breakpoint)
3108 (print_recreate_ranged_breakpoint, break_range_command)
3109 (init_ada_exception_breakpoint, say_where): Update.
3110 (base_breakpoint_dtor): Don't call delete_event_location.
3111 (bkpt_print_recreate, tracepoint_print_recreate)
3112 (dprintf_print_recreate, update_static_tracepoint)
3113 (breakpoint_re_set_default): Update.
3114
3115 2017-04-12 Tom Tromey <tom@tromey.com>
3116
3117 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
3118 type of "to_do". Update.
3119 (compute_stack_depth): Use std::vector.
3120
3121 2017-04-12 Tom Tromey <tom@tromey.com>
3122
3123 * printcmd.c (find_instruction_backward): Use std::vector.
3124
3125 2017-04-12 Tom Tromey <tom@tromey.com>
3126
3127 * symfile.c (objfilep): Remove typedef.
3128 (reread_symbols): Use a std::vector.
3129
3130 2017-04-12 Tom Tromey <tom@tromey.com>
3131
3132 * mi/mi-main.c (exec_direction_forward): Remove.
3133 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
3134 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
3135 scoped_restore.
3136 * guile/guile.c (guile_repl_command, guile_command)
3137 (gdbscm_execute_gdb_command): Use scoped_restore.
3138 * go-exp.y (go_parse): Use scoped_restore.
3139 * d-exp.y (d_parse): Use scoped_restore.
3140 * cli/cli-decode.c (cmd_func): Use scoped_restore.
3141 * c-exp.y (c_parse): Use scoped_restore.
3142
3143 2017-04-12 Tom Tromey <tom@tromey.com>
3144
3145 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
3146 (mi_parse): Update return type.
3147 (mi_parse_free): Remove.
3148 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
3149 (mi_parse::~mi_parse): Rename from mi_parse_free.
3150 (mi_parse_cleanup): Remove.
3151 (mi_parse): Return a unique_ptr. Use new.
3152 * mi/mi-main.c (mi_execute_command): Update.
3153
3154 2017-04-12 Tom Tromey <tom@tromey.com>
3155
3156 * location.c (explicit_location_lex_one): Return a
3157 unique_xmalloc_ptr.
3158 (string_to_explicit_location): Update. Remove cleanups.
3159
3160 2017-04-12 Tom Tromey <tom@tromey.com>
3161
3162 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
3163 (compare_value_and_voffset): Change type. Update.
3164 (compute_vtable_size): Change type of "offset_vec".
3165 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
3166 (gnuv3_get_typeid): Remove extraneous declaration.
3167
3168 2017-04-12 Tom Tromey <tom@tromey.com>
3169
3170 * charset.h (wchar_iterator): Fix comment.
3171
3172 2017-04-12 Tom Tromey <tom@tromey.com>
3173
3174 * charset.c (iconv_wrapper): New class.
3175 (cleanup_iconv): Remove.
3176 (convert_between_encodings): Use it.
3177
3178 2017-04-12 Tom Tromey <tom@tromey.com>
3179
3180 * symfile.h (increment_reading_symtab): Update type.
3181 * symfile.c (decrement_reading_symtab): Remove.
3182 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
3183 * psymtab.c (psymtab_to_symtab): Update.
3184 * dwarf2read.c (dw2_instantiate_symtab): Update.
3185
3186 2017-04-12 Tom Tromey <tom@tromey.com>
3187
3188 * jit.c (struct jit_reader): Declare separately. Add constructor
3189 and destructor. Change type of "handle".
3190 (loaded_jit_reader): Define separately.
3191 (jit_reader_load): Update. New "new".
3192 (jit_reader_unload_command): Use "delete".
3193 * gdb-dlfcn.h (struct dlclose_deleter): New.
3194 (gdb_dlhandle_up): New typedef.
3195 (gdb_dlopen, gdb_dlsym): Update types.
3196 (gdb_dlclose): Remove.
3197 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
3198 (gdb_dlsym): Change type of "handle".
3199 (make_cleanup_dlclose): Remove.
3200 (dlclose_deleter::operator()): Rename from gdb_dlclose.
3201 * compile/compile-c-support.c (load_libcc): Update.
3202
3203 2017-04-12 Tom Tromey <tom@tromey.com>
3204
3205 * symtab.h (find_pcs_for_symtab_line): Change return type.
3206 * symtab.c (find_pcs_for_symtab_line): Change return type.
3207 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
3208 type of "vec". Update.
3209 (ltpy_get_pcs_for_line): Update.
3210 * linespec.c (decode_digits_ordinary): Update.
3211
3212 2017-04-12 Tom Tromey <tom@tromey.com>
3213
3214 * tracepoint.c (actions_command): Update.
3215 * python/python.c (python_command, python_interactive_command):
3216 Update.
3217 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
3218 * guile/guile.c (guile_command): Update.
3219 * defs.h (read_command_lines, read_command_lines_1): Return
3220 command_line_up.
3221 (command_lines_deleter): New struct.
3222 (command_line_up): New typedef.
3223 * compile/compile.c (compile_code_command)
3224 (compile_print_command): Update.
3225 * cli/cli-script.h (get_command_line, copy_command_lines): Return
3226 command_line_up.
3227 (make_cleanup_free_command_lines): Remove.
3228 * cli/cli-script.c (get_command_line, read_command_lines_1)
3229 (copy_command_lines): Return command_line_up.
3230 (while_command, if_command, read_command_lines, define_command)
3231 (document_command): Update.
3232 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
3233 Remove.
3234 * breakpoint.h (breakpoint_set_commands): Change type of
3235 "commands".
3236 * breakpoint.c (breakpoint_set_commands): Change type of
3237 "commands". Update.
3238 (do_map_commands_command, update_dprintf_command_list)
3239 (create_tracepoint_from_upload): Update.
3240
3241 2017-04-12 Tom Tromey <tom@tromey.com>
3242
3243 * tracepoint.c (scope_info): Update.
3244 * spu-tdep.c (spu_catch_start): Update.
3245 * python/python.c (gdbpy_decode_line): Update.
3246 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
3247 * python/py-breakpoint.c (bppy_init): Update.
3248 * probe.c (parse_probes): Update.
3249 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
3250 * location.h (event_location_deleter): New struct.
3251 (event_location_up): New typedef.
3252 (new_linespec_location, new_address_location, new_probe_location)
3253 (new_explicit_location, copy_event_location)
3254 (string_to_event_location, string_to_event_location_basic)
3255 (string_to_explicit_location): Update return type.
3256 (make_cleanup_delete_event_location): Remove.
3257 * location.c (new_linespec_location, new_address_location)
3258 (new_probe_location, new_explicit_location, copy_event_location):
3259 Return event_location_up.
3260 (delete_event_location_cleanup)
3261 (make_cleanup_delete_event_location): Remove.
3262 (string_to_explicit_location, string_to_event_location_basic)
3263 (string_to_event_location): Return event_location_up.
3264 * linespec.c (canonicalize_linespec, event_location_to_sals)
3265 (decode_line_with_current_source)
3266 (decode_line_with_last_displayed, decode_objc): Update.
3267 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
3268 * completer.c (location_completer): Update.
3269 * cli/cli-cmds.c (edit_command, list_command): Update.
3270 * breakpoint.c (create_overlay_event_breakpoint)
3271 (create_longjmp_master_breakpoint)
3272 (create_std_terminate_master_breakpoint)
3273 (create_exception_master_breakpoint)
3274 (create_thread_event_breakpoint): Update.
3275 (init_breakpoint_sal): Update. Remove some dead code.
3276 (create_breakpoint_sal): Change type of "location". Update.
3277 (create_breakpoints_sal, create_breakpoint, break_command_1)
3278 (dprintf_command, break_range_command, until_break_command)
3279 (init_ada_exception_breakpoint)
3280 (strace_marker_create_sals_from_location)
3281 (update_static_tracepoint, trace_command, ftrace_command)
3282 (strace_command, create_tracepoint_from_upload): Update.
3283 * break-catch-throw.c (re_set_exception_catchpoint): Update.
3284 * ax-gdb.c (agent_command_1): Update.
3285
3286 2017-04-12 Pedro Alves <palves@redhat.com>
3287
3288 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
3289 * configure.tgt: Handle i[34567]86-*-go32* and
3290 i[34567]86-*-msdosdjgpp*.
3291 * i386-tdep.c (i386_svr4_reg_to_regnum):
3292 Make extern.
3293 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
3294 i386-go32-tdep.c.
3295 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
3296 * i386-go32-tdep.c: New file.
3297 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
3298 declarations.
3299
3300 2017-04-12 Simon Marchi <simon.marchi@ericsson.com>
3301
3302 * aix-thread.c (pd_status2str): Change return type to const char *.
3303
3304 2017-04-12 Pedro Alves <palves@redhat.com>
3305
3306 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
3307 calls to set_gdbarch_gnu_triplet_regexp.
3308
3309 2017-04-12 Pedro Alves <palves@redhat.com>
3310
3311 PR gdb/21323
3312 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
3313 New enum value.
3314 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
3315 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
3316 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
3317 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
3318 * gdbarch.h, gdbarch.c: Regenerate.
3319 * aarch64-tdep.c (aarch64_gdbarch_init): Override
3320 gdbarch_wchar_bit and gdbarch_wchar_signed.
3321 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
3322 * arm-tdep.c (arm_gdbarch_init): Likewise.
3323 * avr-tdep.c (avr_gdbarch_init): Likewise.
3324 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
3325 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
3326 * i386-tdep.c (i386_go32_init_abi): Likewise.
3327 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
3328 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
3329 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
3330 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
3331 * sh-tdep.c (sh_gdbarch_init): Likewise.
3332 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
3333 * sparc64-tdep.c (sparc64_init_abi): Likewise.
3334 * windows-tdep.c (windows_init_abi): Likewise.
3335 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
3336
3337 2017-04-12 Pedro Alves <palves@redhat.com>
3338
3339 PR c++/21323
3340 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
3341 cplus_primitive_type_char32_t>: New enum values.
3342 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
3343 and cplus_primitive_type_char32_t.
3344 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
3345 32, use the archtecture's built-in type for char16_t and char32_t,
3346 respectively. Otherwise, fallback to init_integer_type as before,
3347 but make the type unsigned, and issue a complaint.
3348 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
3349
3350 2017-04-12 Alan Hayward <alan.hayward@arm.com>
3351
3352 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
3353 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
3354
3355 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
3356
3357 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
3358 'const char *'.
3359
3360 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
3361
3362 * common/common-utils.c (free_vector_argv): New function.
3363 * common/common-utils.h: Include <vector>.
3364 (free_vector_argv): New prototype.
3365 * darwin-nat.c (darwin_create_inferior): Rewrite function
3366 prototype in order to constify "exec_file" and accept a
3367 "std::string" for "allargs".
3368 * fork-child.c: Include <vector>.
3369 (breakup_args): Rewrite function, using C++.
3370 (fork_inferior): Rewrite function header, constify "exec_file_arg"
3371 and accept "std::string" for "allargs". Update the code to
3372 calculate "argv" based on "allargs". Update calls to "exec_fun"
3373 and "execvp".
3374 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
3375 order to constify "exec_file" and accept a "std::string" for
3376 "allargs".
3377 * go32-nat.c (go32_create_inferior): Likewise.
3378 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
3379 * infcmd.c (run_command_1): Constify "exec_file". Use
3380 "std::string" for inferior arguments.
3381 * inferior.h (fork_inferior): Update prototype.
3382 * linux-nat.c (linux_nat_create_inferior): Rewrite function
3383 prototype in order to constify "exec_file" and accept a
3384 "std::string" for "allargs".
3385 * nto-procfs.c (procfs_create_inferior): Likewise.
3386 * procfs.c (procfs_create_inferior): Likewise.
3387 * remote-sim.c (gdbsim_create_inferior): Likewise.
3388 * remote.c (extended_remote_run): Update code to accept
3389 "std::string" as argument.
3390 (extended_remote_create_inferior): Rewrite function prototype in
3391 order to constify "exec_file" and accept a "std::string" for
3392 "allargs".
3393 * rs6000-nat.c (super_create_inferior): Likewise.
3394 (rs6000_create_inferior): Likewise.
3395 * target.h (struct target_ops) <to_create_inferior>: Likewise.
3396 * windows-nat.c (windows_create_inferior): Likewise.
3397
3398 2017-04-11 Pedro Alves <palves@redhat.com>
3399
3400 * thread.c: Fix whitespace throughout.
3401
3402 2017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
3403
3404 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
3405
3406 2017-04-11 Alan Hayward <alan.hayward@arm.com>
3407
3408 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
3409
3410 2017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
3411
3412 PR gdb/21364
3413 * osdata.c (info_osdata): Check if 'type' is an empty string
3414 instead of NULL.
3415
3416 2017-04-10 Pedro Alves <palves@redhat.com>
3417
3418 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
3419 (ptid_to_global_thread_id, in_thread_list)
3420 (do_captured_list_thread_ids, set_resumed, set_running)
3421 (set_executing, set_stop_requested, finish_thread_state)
3422 (validate_registers_access, can_access_registers_ptid)
3423 (print_thread_info_1, switch_to_thread)
3424 (do_restore_current_thread_cleanup)
3425 (make_cleanup_restore_current_thread, thread_command)
3426 (thread_name_command): Use operator== instead of ptid_equal.
3427
3428 2017-04-10 Pedro Alves <palves@redhat.com>
3429
3430 * thread.c (struct current_thread_cleanup) <next>: Delete field.
3431 (current_thread_cleanup_chain): Delete.
3432 (restore_current_thread_cleanup_dtor)
3433 (make_cleanup_restore_current_thread): Remove references to
3434 current_thread_cleanup_chain.
3435
3436 2017-04-10 Alan Hayward <alan.hayward@arm.com>
3437
3438 * msp430-tdep.c (msp430_pseudo_register_read): Never return
3439 REG_UNKNOWN.
3440
3441 2017-04-10 Yao Qi <yao.qi@linaro.org>
3442
3443 PR gdb/19942
3444 * gdbthread.h (thread_info::deletable): New method.
3445 (thread_info::incref): New method.
3446 (thread_info::decref): New method.
3447 (thread_info::refcount): Move it to private.
3448 * infrun.c (save_stop_context): Call inc_refcount.
3449 (release_stop_context_cleanup): Likewise.
3450 * thread.c (set_thread_exited): New function.
3451 (init_thread_list): Delete "tp" only it is deletable, otherwise
3452 call set_thread_exited.
3453 (delete_thread_1): Call set_thread_exited.
3454 (current_thread_cleanup) <inferior_pid>: Remove.
3455 <thread>: New field.
3456 (restore_current_thread_ptid_changed): Removed.
3457 (do_restore_current_thread_cleanup): Adjust.
3458 (restore_current_thread_cleanup_dtor): Don't call
3459 find_thread_ptid.
3460 (set_thread_refcount): Use dec_refcount.
3461 (make_cleanup_restore_current_thread): Adjust.
3462 (thread_apply_all_command): Call inc_refcount.
3463 (_initialize_thread): Don't call
3464 observer_attach_thread_ptid_changed.
3465
3466 2017-04-10 Yao Qi <yao.qi@linaro.org>
3467
3468 * thread.c (delete_thread_1): Hoist code on marking thread as
3469 exited.
3470
3471 2017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
3472
3473 * windows-nat.c (windows_detach): Initialize ptid with
3474 minus_one_ptid.
3475
3476 2017-04-07 Simon Marchi <simon.marchi@ericsson.com>
3477
3478 * unittests/ptid-selftests.c: Fix erroneous assert messages.
3479
3480 2017-04-07 Alan Hayward <alan.hayward@arm.com>
3481
3482 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
3483 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
3484 (bfin_pseudo_register_write): Likewise
3485
3486 2017-04-06 Simon Marchi <simon.marchi@ericsson.com>
3487
3488 * common/ptid.h (struct ptid): Change to...
3489 (class ptid_t): ... this.
3490 <ptid_t>: New constructors.
3491 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
3492 matches>: New methods.
3493 <make_null, make_minus_one>: New static methods.
3494 <pid>: Rename to...
3495 <m_pid>: ...this.
3496 <lwp>: Rename to...
3497 <m_lwp>: ...this.
3498 <tid>: Rename to...
3499 <m_tid>: ...this.
3500 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
3501 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
3502 as references, move comment to class ptid_t.
3503 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
3504 ptid_t static methods.
3505 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
3506 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
3507 Take ptid arguments as references, implement using ptid_t methods.
3508 * unittests/ptid-selftests.c: New file.
3509 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3510 unittests/ptid-selftests.c.
3511 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
3512
3513 2017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
3514
3515 * python/python.c (python_run_simple_file): Cast mode literal to
3516 non-const char pointer as expected by PyFile_FromString.
3517
3518 2017-04-05 Simon Marchi <simon.marchi@ericsson.com>
3519
3520 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
3521 minus_one_ptid and null_ptid.
3522
3523 2017-04-05 Pedro Alves <palves@redhat.com>
3524
3525 * warning.m4 (build_warnings): Remove -Wno-write-strings.
3526 * configure: Regenerate.
3527
3528 2017-04-05 Pedro Alves <palves@redhat.com>
3529
3530 * ada-exp.y (yyerror): Constify.
3531 * ada-lang.c (bound_name, get_selections)
3532 (ada_variant_discrim_type)
3533 (ada_variant_discrim_name, ada_value_struct_elt)
3534 (ada_lookup_struct_elt_type, is_unchecked_variant)
3535 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
3536 (catch_ada_exception_command_split)
3537 (catch_ada_assert_command_split, catch_assert_command)
3538 (ada_op_name): Constify.
3539 * ada-lang.h (ada_yyerror, get_selections)
3540 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
3541 * arc-tdep.c (arc_print_frame_cache): Constify.
3542 * arm-tdep.c (arm_skip_stub): Constify.
3543 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
3544 (gen_aggregate_elt_ref): Constify.
3545 * bcache.c (print_bcache_statistics): Constify.
3546 * bcache.h (print_bcache_statistics): Constify.
3547 * break-catch-throw.c (catch_exception_command_1):
3548 * breakpoint.c (struct ep_type_description::description):
3549 Constify.
3550 (add_solib_catchpoint): Constify.
3551 (catch_fork_command_1): Add cast.
3552 (add_catch_command): Constify.
3553 * breakpoint.h (add_catch_command, add_solib_catchpoint):
3554 Constify.
3555 * bsd-uthread.c (bsd_uthread_state): Constify.
3556 * buildsym.c (patch_subfile_names): Constify.
3557 * buildsym.h (next_symbol_text_func, patch_subfile_names):
3558 Constify.
3559 * c-exp.y (yyerror): Constify.
3560 (token::oper): Constify.
3561 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
3562 * c-varobj.c (cplus_describe_child): Constify.
3563 * charset.c (find_charset_names): Add cast.
3564 (find_charset_names): Constify array and add const_cast.
3565 * cli/cli-cmds.c (complete_command, cd_command): Constify.
3566 (edit_command): Constify.
3567 * cli/cli-decode.c (lookup_cmd): Constify.
3568 * cli/cli-dump.c (dump_memory_command, dump_value_command):
3569 Constify.
3570 (struct dump_context): Constify.
3571 (add_dump_command, restore_command): Constify.
3572 * cli/cli-script.c (get_command_line): Constify.
3573 * cli/cli-script.h (get_command_line): Constify.
3574 * cli/cli-utils.c (check_for_argument): Constify.
3575 * cli/cli-utils.h (check_for_argument): Constify.
3576 * coff-pe-read.c (struct read_pe_section_data): Constify.
3577 * command.h (lookup_cmd): Constify.
3578 * common/print-utils.c (decimal2str): Constify.
3579 * completer.c (gdb_print_filename): Constify.
3580 * corefile.c (set_gnutarget): Constify.
3581 * cp-name-parser.y (yyerror): Constify.
3582 * cp-valprint.c (cp_print_class_member): Constify.
3583 * cris-tdep.c (cris_register_name, crisv32_register_name):
3584 Constify.
3585 * d-exp.y (yyerror): Constify.
3586 (struct token::oper): Constify.
3587 * d-lang.h (d_yyerror): Constify.
3588 * dbxread.c (struct header_file_location::name): Constify.
3589 (add_old_header_file, add_new_header_file, last_function_name)
3590 (dbx_next_symbol_text, add_bincl_to_list)
3591 (find_corresponding_bincl_psymtab, set_namestring)
3592 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
3593 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
3594 * defs.h (command_line_input, print_address_symbolic)
3595 (deprecated_readline_begin_hook): Constify.
3596 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
3597 Constify.
3598 * event-top.c (handle_line_of_input): Constify and add cast.
3599 * exceptions.c (catch_errors): Constify.
3600 * exceptions.h (catch_errors): Constify.
3601 * expprint.c (print_subexp_standard, op_string, op_name)
3602 (op_name_standard, dump_raw_expression, dump_raw_expression):
3603 * expression.h (op_name, op_string, dump_raw_expression):
3604 Constify.
3605 * f-exp.y (yyerror): Constify.
3606 (struct token::oper): Constify.
3607 (struct f77_boolean_val::name): Constify.
3608 * f-lang.c (f_word_break_characters): Constify.
3609 * f-lang.h (f_yyerror): Constify.
3610 * fork-child.c (fork_inferior): Add cast.
3611 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
3612 (new_variant): Constify.
3613 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
3614 * gdbarch.c: Regenerate.
3615 * gdbcore.h (set_gnutarget): Constify.
3616 * go-exp.y (yyerror): Constify.
3617 (token::oper): Constify.
3618 * go-lang.h (go_yyerror): Constify.
3619 * go32-nat.c (go32_sysinfo): Constify.
3620 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
3621 * guile/scm-cmd.c (cmdscm_function): Constify.
3622 * guile/scm-param.c (pascm_param_value): Constify.
3623 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
3624 (h8300sx_register_name): Constify.
3625 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
3626 Constify.
3627 * ia64-tdep.c (ia64_register_names): Constify.
3628 * infcmd.c (construct_inferior_arguments): Constify.
3629 (path_command, attach_post_wait): Constify.
3630 * language.c (show_range_command, show_case_command)
3631 (unk_lang_error): Constify.
3632 * language.h (language_defn::la_error)
3633 (language_defn::la_name_of_this): Constify.
3634 * linespec.c (decode_line_2): Constify.
3635 * linux-thread-db.c (thread_db_err_str): Constify.
3636 * lm32-tdep.c (lm32_register_name): Constify.
3637 * m2-exp.y (yyerror): Constify.
3638 * m2-lang.h (m2_yyerror): Constify.
3639 * m32r-tdep.c (m32r_register_names): Constify and make static.
3640 * m68hc11-tdep.c (m68hc11_register_names): Constify.
3641 * m88k-tdep.c (m88k_register_name): Constify.
3642 * macroexp.c (appendmem): Constify.
3643 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
3644 (upgrade_type, parse_external, parse_partial_symbols)
3645 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
3646 (new_symbol): Constify.
3647 * memattr.c (mem_info_command): Constify.
3648 * mep-tdep.c (register_name_from_keyword): Constify.
3649 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
3650 Constify.
3651 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
3652 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
3653 * mi/mi-main.c (captured_mi_execute_command): Constify and add
3654 cast.
3655 (mi_execute_async_cli_command): Constify.
3656 * mips-tdep.c (mips_register_name): Constify.
3657 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
3658 (am33_register_name, am33_2_register_name)
3659 * moxie-tdep.c (moxie_register_names): Constify.
3660 * nat/linux-osdata.c (osdata_type): Constify fields.
3661 * nto-tdep.c (nto_parse_redirection): Constify.
3662 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
3663 (lookup_child_selector): Constify.
3664 (objc_methcall::name): Constify.
3665 * objc-lang.h (lookup_objc_class, lookup_child_selector)
3666 (lookup_struct_typedef): Constify.
3667 * objfiles.c (pc_in_section): Constify.
3668 * objfiles.h (pc_in_section): Constify.
3669 * p-exp.y (struct token::oper): Constify.
3670 (yyerror): Constify.
3671 * p-lang.h (pascal_yyerror): Constify.
3672 * parser-defs.h (op_name_standard): Constify.
3673 (op_print::string): Constify.
3674 (exp_descriptor::op_name): Constify.
3675 * printcmd.c (print_address_symbolic): Constify.
3676 * psymtab.c (print_partial_symbols): Constify.
3677 * python/py-breakpoint.c (stop_func): Constify.
3678 (bppy_get_expression): Constify.
3679 * python/py-cmd.c (cmdpy_completer::name): Constify.
3680 (cmdpy_function): Constify.
3681 * python/py-event.c (evpy_add_attribute)
3682 (gdbpy_initialize_event_generic): Constify.
3683 * python/py-event.h (evpy_add_attribute)
3684 (gdbpy_initialize_event_generic): Constify.
3685 * python/py-evts.c (add_new_registry): Constify.
3686 * python/py-finishbreakpoint.c (outofscope_func): Constify.
3687 * python/py-framefilter.c (get_py_iter_from_func): Constify.
3688 * python/py-inferior.c (get_buffer): Add cast.
3689 * python/py-param.c (parm_constant::name): Constify.
3690 * python/py-unwind.c (fprint_frame_id): Constify.
3691 * python/python.c (gdbpy_parameter_value): Constify.
3692 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
3693 * remote.c (memory_packet_config::name): Constify.
3694 (show_packet_config_cmd, remote_write_bytes)
3695 (remote_buffer_add_string):
3696 * reverse.c (exec_reverse_once): Constify.
3697 * rs6000-tdep.c (variant::name, variant::description): Constify.
3698 * rust-exp.y (rustyyerror): Constify.
3699 * rust-lang.c (rust_op_name): Constify.
3700 * rust-lang.h (rustyyerror): Constify.
3701 * serial.h (serial_ops::name): Constify.
3702 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
3703 (sh_sh3e_register_name, sh_sh2e_register_name)
3704 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
3705 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
3706 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
3707 (sh_sh4al_dsp_register_name): Constify.
3708 * sh64-tdep.c (sh64_register_name): Constify.
3709 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
3710 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
3711 * stabsread.c (patch_block_stabs, read_type_number)
3712 (ref_map::stabs, ref_add, process_reference)
3713 (symbol_reference_defined, define_symbol, define_symbol)
3714 (error_type, read_type, read_member_functions, read_cpp_abbrev)
3715 (read_one_struct_field, read_struct_fields, read_baseclasses)
3716 (read_tilde_fields, read_struct_type, read_array_type)
3717 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
3718 (read_huge_number, read_range_type, read_args, common_block_start)
3719 (find_name_end): Constify.
3720 * stabsread.h (common_block_start, define_symbol)
3721 (process_one_symbol, symbol_reference_defined, ref_add):
3722 * symfile.c (get_section_index, add_symbol_file_command):
3723 * symfile.h (get_section_index): Constify.
3724 * target-descriptions.c (tdesc_type::name): Constify.
3725 (tdesc_free_type): Add cast.
3726 * target.c (find_default_run_target):
3727 (add_deprecated_target_alias, find_default_run_target)
3728 (target_announce_detach): Constify.
3729 (do_option): Constify.
3730 * target.h (add_deprecated_target_alias): Constify.
3731 * thread.c (print_thread_info_1): Constify.
3732 * top.c (deprecated_readline_begin_hook, command_line_input):
3733 Constify.
3734 (init_main): Add casts.
3735 * top.h (handle_line_of_input): Constify.
3736 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
3737 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
3738 (tfind_command): Rename to ...
3739 (tfind_command_1): ... this and constify.
3740 (tfind_command): New function.
3741 (tfind_end_command, tfind_start_command): Adjust.
3742 (encode_source_string): Constify.
3743 * tracepoint.h (encode_source_string): Constify.
3744 * tui/tui-data.c (tui_partial_win_by_name): Constify.
3745 * tui/tui-data.h (tui_partial_win_by_name): Constify.
3746 * tui/tui-source.c (tui_set_source_content_nil): Constify.
3747 * tui/tui-source.h (tui_set_source_content_nil): Constify.
3748 * tui/tui-win.c (parse_scrolling_args): Constify.
3749 * tui/tui-windata.c (tui_erase_data_content): Constify.
3750 * tui/tui-windata.h (tui_erase_data_content): Constify.
3751 * tui/tui-winsource.c (tui_erase_source_content): Constify.
3752 * tui/tui.c (tui_enable): Add cast.
3753 * utils.c (defaulted_query): Constify.
3754 (init_page_info): Add cast.
3755 (puts_debug, subset_compare): Constify.
3756 * utils.h (subset_compare): Constify.
3757 * varobj.c (varobj_format_string): Constify.
3758 * varobj.h (varobj_format_string): Constify.
3759 * vax-tdep.c (vax_register_name): Constify.
3760 * windows-nat.c (windows_detach): Constify.
3761 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
3762 * xml-support.c (gdb_xml_end_element): Constify.
3763 * xml-tdesc.c (tdesc_start_reg): Constify.
3764 * xstormy16-tdep.c (xstormy16_register_name): Constify.
3765 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
3766 * xtensa-tdep.h (xtensa_register_t::name): Constify.
3767
3768 2017-04-05 Pedro Alves <palves@redhat.com>
3769
3770 * proc-api.c (struct trans): Constify.
3771 (procfs_note): Constify.
3772 * proc-events.c (struct trans, syscall_table):
3773 * proc-flags.c (struct trans): Constify.
3774 * proc-utils.h (procfs_note): Constify.
3775 * proc-why.c (struct trans): Constify.
3776 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
3777 (procfs_detach): Constify.
3778 * sol-thread.c (struct string_map): Constify.
3779 (td_err_string, td_state_string): Constify.
3780
3781 2017-04-05 Pedro Alves <palves@redhat.com>
3782
3783 * proc-api.c (procfs_filename): Don't initialize
3784 procfs_filename.
3785 (prepare_to_trace): Assume procfs_filename is non-NULL.
3786 (_initialize_proc_api): Give procfs_filename a default value here.
3787
3788 2017-04-05 Pedro Alves <palves@redhat.com>
3789
3790 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
3791 'cond_string' parameter.
3792 (extract_exception_regexp): Constify 'string' parameter.
3793 (catch_exception_command_1): Constify.
3794 * breakpoint.c (init_catchpoint)
3795 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
3796 parameter.
3797 (ep_parse_optional_if_clause, catch_fork_command_1)
3798 (catch_exec_command_1): Constify.
3799 * breakpoint.h (init_catchpoint): Constify 'cond_string'
3800 parameter.
3801 (ep_parse_optional_if_clause): Constify.
3802 * cli/cli-utils.c (remove_trailing_whitespace)
3803 (check_for_argument): Constify.
3804 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
3805 non-const overload.
3806 (check_for_argument): Likewise.
3807
3808 2017-04-05 Pedro Alves <palves@redhat.com>
3809
3810 * event-top.c (command_line_handler): Add cast to execute_command
3811 call.
3812 * record-btrace.c (cmd_record_btrace_bts_start)
3813 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
3814 (cmd_record_btrace_start): Add cast to execute_command call.
3815 * record-full.c (record_full_goto_insn):
3816 * record.c (record_start, record_stop): Add cast to
3817 execute_command_to_string calls.
3818 (cmd_record_start): Add cast to execute_command calls.
3819
3820 2017-04-05 Pedro Alves <palves@redhat.com>
3821
3822 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
3823 static inline function.
3824 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
3825 array and use gdb_PyArg_ParseTupleAndKeywords.
3826 * python/py-cmd.c (cmdpy_init): Likewise.
3827 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
3828 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
3829 (infpy_search_memory): Likewise.
3830 * python/py-objfile.c (objfpy_add_separate_debug_file)
3831 (gdbpy_lookup_objfile): Likewise.
3832 * python/py-symbol.c (gdbpy_lookup_symbol)
3833 (gdbpy_lookup_global_symbol): Likewise.
3834 * python/py-type.c (gdbpy_lookup_type): Likewise.
3835 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
3836 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
3837 Likewise.
3838
3839 2017-04-05 Pedro Alves <palves@redhat.com>
3840
3841 * python/python-internal.h (gdb_PyGetSetDef): New type.
3842 * python/py-block.c (block_object_getset)
3843 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
3844 * python/py-event.c (event_object_getset)
3845 (finish_breakpoint_object_getset): Likewise.
3846 * python/py-inferior.c (inferior_object_getset): Likewise.
3847 * python/py-infthread.c (thread_object_getset): Likewise.
3848 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
3849 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
3850 * python/py-objfile.c (objfile_getset): Likewise.
3851 * python/py-progspace.c (pspace_getset): Likewise.
3852 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
3853 Likewise.
3854 * python/py-record.c (recpy_record_getset): Likewise.
3855 * python/py-symbol.c (symbol_object_getset): Likewise.
3856 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
3857 Likewise.
3858 * python/py-type.c (type_object_getset, field_object_getset):
3859 Likewise.
3860 * python/py-value.c (value_object_getset): Likewise.
3861
3862 2017-04-05 Pedro Alves <palves@redhat.com>
3863
3864 * python/python-internal.h (gdb_PyObject_CallMethod)
3865 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
3866 New functions.
3867 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
3868 (PySys_GetObject, PySys_SetPath): New macros.
3869
3870 2017-04-05 Pedro Alves <palves@redhat.com>
3871
3872 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
3873 info_osdata_command.
3874 * osdata.c (info_osdata_command): Rename to ...
3875 (info_osdata): ... this. Constify 'type' parameter, and remove
3876 the 'from_tty' parameter. Accept NULL TYPE.
3877 (info_osdata_command): New function.
3878 * osdata.h (info_osdata_command): Remove declaration.
3879 (info_osdata): New declaration.
3880
3881 2017-04-05 Pedro Alves <palves@redhat.com>
3882
3883 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
3884 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
3885 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
3886 parameter.
3887 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
3888 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
3889 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
3890 parameter.
3891 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
3892 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
3893 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
3894 (mi_cmd_file_list_exec_source_files)
3895 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
3896 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
3897 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
3898 parameter.
3899 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
3900 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
3901 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
3902 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
3903 (mi_cmd_stack_info_frame): Constify 'command' parameter.
3904 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
3905 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
3906 'command' parameter.
3907 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
3908 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
3909 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
3910 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
3911 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
3912 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
3913 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
3914 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
3915 (mi_cmd_var_set_update_range): Constify 'command' parameter.
3916 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
3917 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
3918 parameter.
3919 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
3920 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
3921 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
3922 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
3923 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
3924 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
3925 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
3926 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
3927 (mi_cmd_data_list_changed_registers)
3928 (mi_cmd_data_write_register_values)
3929 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
3930 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
3931 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
3932 (mi_cmd_list_features, mi_cmd_list_target_features)
3933 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
3934 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
3935 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
3936 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
3937 (mi_cmd_trace_frame_collected): Constify 'command'
3938 parameter.
3939 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
3940 'command' parameter.
3941
3942 2017-04-05 Pedro Alves <palves@redhat.com>
3943
3944 * ada-lang.c (ada_completer_word_break_characters): Now a const
3945 array.
3946 (ada_get_gdb_completer_word_break_characters): Constify.
3947 * completer.c (gdb_completer_command_word_break_characters)
3948 (gdb_completer_file_name_break_characters)
3949 (gdb_completer_quote_characters): Now const arrays.
3950 (get_gdb_completer_quote_characters): Constify.
3951 (set_rl_completer_word_break_characters): New function.
3952 (set_gdb_completion_word_break_characters)
3953 (complete_line_internal): Use it.
3954 * completer.h (get_gdb_completer_quote_characters): Constify.
3955 (set_rl_completer_word_break_characters): Declare.
3956 * f-lang.c (f_word_break_characters): Constify.
3957 * language.c (default_word_break_characters): Constify.
3958 * language.h (language_defn::la_word_break_characters): Constify.
3959 (default_word_break_characters): Constify.
3960 * top.c (init_main): Use set_rl_completer_word_break_characters.
3961
3962 2017-04-05 Pedro Alves <palves@redhat.com>
3963
3964 * aix-thread.c (aix_thread_pid_to_str)
3965 (aix_thread_extra_thread_info): Constify.
3966 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
3967 * bsd-uthread.c (bsd_uthread_extra_thread_info)
3968 (bsd_uthread_pid_to_str): Constify.
3969 * corelow.c (core_pid_to_str): Constify.
3970 * darwin-nat.c (darwin_pid_to_str): Constify.
3971 * fbsd-nat.c (fbsd_pid_to_str): Constify.
3972 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
3973 Constify.
3974 * gnu-nat.c (gnu_pid_to_str): Constify.
3975 * go32-nat.c (go32_pid_to_str): Constify.
3976 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
3977 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
3978 * inferior.c (inferior_pid_to_str): Constify.
3979 * linux-nat.c (linux_nat_pid_to_str): Constify.
3980 * linux-tdep.c (linux_core_pid_to_str): Constify.
3981 * linux-thread-db.c (thread_db_pid_to_str)
3982 (thread_db_extra_thread_info): Constify.
3983 * nto-tdep.c (nto_extra_thread_info): Constify.
3984 * nto-tdep.h (nto_extra_thread_info): Constify.
3985 * obsd-nat.c (obsd_pid_to_str): Constify.
3986 * procfs.c (procfs_pid_to_str): Constify.
3987 * ravenscar-thread.c (ravenscar_extra_thread_info)
3988 (ravenscar_pid_to_str): Constify.
3989 * remote-sim.c (gdbsim_pid_to_str): Constify.
3990 * remote.c (remote_threads_extra_info, remote_pid_to_str):
3991 Constify.
3992 * sol-thread.c (solaris_pid_to_str): Constify.
3993 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
3994 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
3995 * target.c (default_pid_to_str, target_pid_to_str)
3996 (normal_pid_to_str, default_pid_to_str): Constify.
3997 * target.h (target_ops::to_pid_to_str)
3998 (target_ops::to_extra_thread_info): Constify.
3999 (target_pid_to_str, normal_pid_to_str): Constify.
4000 * windows-nat.c (windows_pid_to_str): Constify.
4001 * gdbarch.sh (core_pid_to_str): Constify.
4002 * target-delegates.c: Regenerate.
4003 * gdbarch.h, gdbarch.c: Regenerate.
4004
4005 2017-04-05 Pedro Alves <palves@redhat.com>
4006
4007 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
4008 the memory of the temporary warning_pre_print override.
4009 * utils.c (warning_pre_print): Constify.
4010 * utils.h (warning_pre_print): Constify.
4011
4012 2017-04-05 Pedro Alves <palves@redhat.com>
4013
4014 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
4015 (shell_command): New function.
4016 (make_command): Use std::string.
4017 (init_cli_cmds): Register shell_command instead of shell_escape.
4018
4019 2017-04-05 Pedro Alves <palves@redhat.com>
4020
4021 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
4022 * tracepoint.c (default_collect): Don't initialize.
4023
4024 2017-04-05 Pedro Alves <palves@redhat.com>
4025
4026 * macroexp.c (macro_buffer::shared): Now a bool.
4027 (init_buffer): Update.
4028 (init_shared_buffer): Constify 'addr' parameter.
4029 (substitute_args, expand, macro_expand, macro_expand_next): Remove
4030 casts.
4031
4032 2017-04-05 Pedro Alves <palves@redhat.com>
4033
4034 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
4035 * disasm.c (set_disassembler_options): Constify local.
4036 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
4037
4038 2017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
4039
4040 PR gdb/21352
4041 * tracefile.c (tsave_command): Fix argument parsing for '-r'
4042 option.
4043
4044 2017-04-05 Yao Qi <yao.qi@linaro.org>
4045
4046 * frame.c (frame_unwind_register_unsigned): Call
4047 frame_unwind_register_value.
4048
4049 2017-04-05 Yao Qi <yao.qi@linaro.org>
4050
4051 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
4052 Use gdb_test_multiple, and don't match anchor.
4053
4054 2017-04-05 Pedro Alves <palves@redhat.com>
4055
4056 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
4057 (Write After Approval): Remove Simon Marchi.
4058
4059 2017-04-05 Pedro Alves <palves@redhat.com>
4060
4061 * common/gdb_optional.h (optional::optional): Make constexpr and
4062 initialize m_dummy.
4063
4064 2017-04-04 John Baldwin <jhb@FreeBSD.org>
4065
4066 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
4067 (amd64fbsd_jmp_buf_reg_offset): Remove.
4068 (amd64fbsd_supply_uthread): Remove function.
4069 (amd64fbsd_collect_uthread): Remove function.
4070 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
4071 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
4072 (x86_64-*-freebsd*): Remove bsd-uthread.o.
4073 (fbsd-nat.c): Update comment.
4074 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
4075 (i386fbsd_jmp_buf_reg_offset): Remove.
4076 (i386fbsd_supply_uthread): Remove function.
4077 (i386fbsd_collect_uthread): Remove function.
4078 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
4079
4080 2017-04-04 John Baldwin <jhb@FreeBSD.org>
4081
4082 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
4083 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
4084 * NEWS: Mention that support for FreeBSD/alpha was removed.
4085 * alpha-fbsd-tdep.c: Delete file.
4086 * config/alpha/fbsd.mh: Delete file.
4087 * configure.host: Delete alpha*-*-freebsd* and
4088 alpha*-*-kfreebsd*-gnu.
4089 * configure.tgt: Delete alpha*-*-freebsd* and
4090 alpha*-*-kfreebsd*-gnu.
4091
4092 2017-04-04 John Baldwin <jhb@FreeBSD.org>
4093
4094 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
4095 amd64bsd_store_inferior_registers): Use ptid from regcache.
4096
4097 2017-04-04 Pedro Alves <palves@redhat.com>
4098
4099 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
4100 data fields, make them private and add "m_" prefixes.
4101 (lnp_state_machine::lnp_state_machine): New ctor.
4102 (record_line, check_line_address, handle_set_discriminator)
4103 (handle_set_address, handle_advance_pc, handle_special_opcode)
4104 (handle_advance_line, handle_set_file, handle_negate_stmt)
4105 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
4106 (end_sequence, advance_line): New methods.
4107 (m_gdbarch, m_record_lines_p): New fields.
4108 (lnp_reader_state): Delete.
4109 (dwarf_record_line): Rename to ...
4110 (lnp_state_machine::record_line): ... adjust.
4111 (init_lnp_state_machine): Delete.
4112 (lnp_state_machine::lnp_state_machine): New.
4113 (check_line_address): Rename to ...
4114 (lnp_state_machine::check_line_address): This.
4115 (dwarf_decode_lines_1): Remove reference to "reader_state".
4116 Adjust lnp_state_machine having a non-default ctor. Use bool.
4117 State machine internal state manipulation moved to
4118 lnp_state_machine methods.
4119
4120 2017-04-04 Pedro Alves <palves@redhat.com>
4121
4122 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4123 unittests/offset-type-selftests.c.
4124 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
4125 * common/offset-type.h: New file.
4126 * common/preprocessor.h: New file.
4127 * common/traits.h: New file.
4128 * common/valid-expr.h: New file.
4129 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
4130 sect_offset and cu_offset strong typedefs throughout.
4131 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
4132 typedefs throughout.
4133 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
4134 sect_offset and cu_offset strong typedefs throughout.
4135 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
4136 typedefs throughout.
4137 * gdbtypes.h: Include "common/offset-type.h".
4138 (cu_offset): Now an offset type (strong typedef) instead of a
4139 struct.
4140 (sect_offset): Likewise.
4141 (union call_site_parameter_u): Rename "param_offset" field to
4142 "param_cu_off".
4143 * unittests/offset-type-selftests.c: New file.
4144
4145 2017-04-04 Pedro Alves <palves@redhat.com>
4146
4147 * common/underlying.h: New file.
4148 * dwarf2read.c: Include "common/gdb_optional.h" and
4149 "common/underlying.h".
4150 (dir_index, file_name_index): New types.
4151 (file_entry): Use them.
4152 (file_entry::include): Use to_underlying.
4153 (line_header::add_file_name): Use dir_index.
4154 (read_formatted_entries): Use gdb::optional. Read form before
4155 writting to file_entry.
4156 (dwarf_decode_line_header): Use dir_index.
4157 (lnp_state_machine::current_file): Use to_underlying.
4158 (lnp_state_machine::file): Change type to file_name_index.
4159 (dwarf_record_line): Use to_underlying.
4160 (init_lnp_state_machine): Use file_name_index.
4161 (dwarf_decode_lines_1): Use dir_index and file_name_index.
4162
4163 2017-04-04 Pedro Alves <palves@redhat.com>
4164
4165 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
4166 operator bool, has_value and get methods.
4167
4168 2017-04-04 Pedro Alves <palves@redhat.com>
4169
4170 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
4171 fields.
4172 (line_header): Initialize all data fields. Change type of
4173 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
4174 Change type of include_dirs to std::vector<const char *>. Remove
4175 num_include_dirs, include_dirs_size. Change type of file_names to
4176 std::vector<file_entry>. Remove num_file_names, file_names_size.
4177 (line_header::line_header): New.
4178 (line_header::add_include_dir, line_header::add_file_name): New
4179 methods.
4180 (line_header::include_dir_at): Remove NULL check.
4181 (line_header::file_name_at): Add const overload.
4182 (line_header_up): New unique_ptr typedef.
4183 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
4184 std::vector. Remove free_line_header call.
4185 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
4186 free_line_header call.
4187 (free_cu_line_header): Delete.
4188 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
4189 (setup_type_unit_groups): Use line_header_up instead of cleanups.
4190 Adjust to use std::vector.
4191 (free_line_header): Delete.
4192 (free_line_header_voidp): Use delete.
4193 (add_include_dir): Replace with ...
4194 (line_header::add_include_dir): ... this method. Use std::vector.
4195 (add_file_name): Replace with ...
4196 (line_header::add_file_name): ... this method. Use std::vector.
4197 (add_include_dir_stub): Delete.
4198 (read_formatted_entries): Remove memset.
4199 (dwarf_decode_line_header): Return a line_header_up instead of a
4200 raw pointer. Remove cleanup handling. Pass lambdas to
4201 read_formatted_entries. Adjust to use line_header methods.
4202 (dwarf_decode_lines_1): Adjust to use line_header methods.
4203 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
4204 use std::vector.
4205
4206 2017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
4207
4208 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
4209 instead of struct ptid.
4210
4211 2017-05-04 Alan Hayward <alan.hayward@arm.com>
4212
4213 * frame.c (get_frame_register_bytes): Unwind using value.
4214 (put_frame_register_bytes): Likewise.
4215
4216 2017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
4217
4218 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
4219 aggregate-like.
4220
4221 2017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
4222
4223 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
4224
4225 2017-03-29 Yao Qi <yao.qi@linaro.org>
4226
4227 * gdbthread.h (struct thread_info): Declare constructor and
4228 destructor. Add some in-class member initializers.
4229 * thread.c (free_thread): Remove.
4230 (init_thread_list): Call delete instead of free_thread.
4231 (new_thread): Call thread_info constructor.
4232 (thread_info::thread_info): New function.
4233 (thread_info::~thread_info): New function.
4234 (delete_thread_1): Call delete instead of free_thread.
4235 (make_cleanup_restore_current_thread): Move tp and frame to
4236 inner block.
4237
4238 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
4239
4240 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
4241 (arc_skip_prologue): Likewise.
4242 (arc_make_frame_cache): Likewise.
4243 (arc_pv_get_operand): New function.
4244 (arc_is_in_prologue): Likewise.
4245 (arc_analyze_prologue): Likewise.
4246 (arc_print_frame_cache): Likewise.
4247 (MAX_PROLOGUE_LENGTH): New constant.
4248
4249 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
4250
4251 * configure.tgt: Add arc-insn.o.
4252 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
4253 (dump_arc_instruction_command): New function.
4254 (arc_fprintf_disasm): Likewise.
4255 (arc_disassemble_info): Likewise.
4256 (arc_insn_get_operand_value): Likewise.
4257 (arc_insn_get_operand_value_signed): Likewise.
4258 (arc_insn_get_memory_base_reg): Likewise.
4259 (arc_insn_get_memory_offset): Likewise.
4260 (arc_insn_get_branch_target): Likewise.
4261 (arc_insn_dump): Likewise.
4262 (arc_insn_get_linear_next_pc): Likewise.
4263 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
4264 (arc_disassemble_info): Likewise.
4265 (arc_insn_get_branch_target): Likewise.
4266 (arc_insn_get_linear_next_pc): Likewise.
4267 * NEWS: Mention new "maint print arc arc-instruction".
4268
4269 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
4270
4271 * arc-tdep (maintenance_print_arc_list): New variable.
4272 (maintenance_print_arc_command): New function.
4273
4274 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
4275
4276 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
4277 Add "limm" and "reserved".
4278 (arc_cannot_fetch_register, arc_cannot_store_register): Add
4279 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
4280 * arc-tdep.h (arc_regnum): Likewise.
4281
4282 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
4283
4284 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
4285 for THREADPTR register.
4286 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
4287 register.
4288 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
4289 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
4290 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
4291
4292 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
4293
4294 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
4295 registers above gdbarch_num_regs (gdbarch) as privileged in
4296 call0 ABI.
4297
4298 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
4299
4300 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
4301 for a single specified register or for all registers in
4302 a0_base..a0_base + C0_NREGS range.
4303 (supply_gregset_reg): Call regcache_raw_supply for a single
4304 specified register or for all registers in a0_base..a0_base +
4305 C0_NREGS range.
4306
4307 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
4308
4309 * arch/xtensa.h (C0_NREGS): Add definition.
4310 * xtensa-tdep.c (C0_NREGS): Remove definition.
4311
4312 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
4313
4314 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
4315 Drop xtensa_default_isa initialization.
4316 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
4317
4318 2017-03-27 Pedro Alves <palves@redhat.com>
4319
4320 * dwarf2read.c (file_entry) <dir_index>: Add comment.
4321 (file_entry::include_dir): New method.
4322 (line_header::include_dir_at, line_header::file_name_at): New
4323 methods.
4324 (setup_type_unit_groups, setup_type_unit_groups)
4325 (psymtab_include_file_name): Simplify using the new methods.
4326 (lnp_state_machine) <the_line_header>: New field.
4327 <file>: Add comment.
4328 (lnp_state_machine::current_file): New method.
4329 (dwarf_record_line): Simplify using the new methods.
4330 (init_lnp_state_machine): Initialize the "the_line_header" field.
4331 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
4332 Simplify using the new methods.
4333
4334 2017-03-27 Pedro Alves <palves@redhat.com>
4335
4336 * cp-name-parser.y (make_empty): Delete.
4337 (demangler_special, nested_name, ptr_operator, array_indicator)
4338 (direct_declarator, declarator_1): Use fill_comp instead of
4339 make_empty.
4340
4341 2017-03-27 Pedro Alves <palves@redhat.com>
4342
4343 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
4344 to ATTRIBUTE_PRINTF.
4345 * solib-target.c (library_list_start_list): Print "string" not
4346 "version".
4347 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
4348 gdb_xml_error call.
4349
4350 2017-03-27 Pedro Alves <palves@redhat.com>
4351
4352 * dwarf2read.c (struct file_and_directory): New.
4353 (dwarf2_get_dwz_file): Adjust to use std::string.
4354 (dw2_get_file_names_reader): Adjust to use file_and_directory.
4355 (find_file_and_directory): Adjust to return a file_and_directory
4356 object.
4357 (read_file_scope): Adjust to use file_and_directory. Remove
4358 make_cleanup/do_cleanups calls.
4359 (open_and_init_dwp_file): Adjust to use std::string. Remove
4360 make_cleanup/do_cleanups calls.
4361 * python/python.c (do_start_initialization): Adjust to ldirname
4362 returning a std::string.
4363 * utils.c (ldirname): Now returns a std::string.
4364 * utils.h (ldirname): Change return type to std::string.
4365 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
4366 returning a std::string.
4367 * xml-tdesc.c (file_read_description_xml): Likewise.
4368
4369 2017-03-24 Alan Hayward <alan.hayward@arm.com>
4370
4371 * regcache.c (regcache_debug_print_register): New function.
4372 * regcache.h (regcache_debug_print_register): New declaration.
4373 * target.c (debug_print_register): Remove.
4374 (target_fetch_registers): Call regcache_debug_print_register.
4375 (target_store_registers): Likewise.
4376
4377 2017-03-24 Pádraig Brady <pbrady@fb.com>
4378
4379 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
4380 reference beyond the 'lh->include_dirs' array before accessing to
4381 it.
4382 (psymtab_include_file_name): Likewise.
4383 (dwarf_decode_lines_1): Likewise.
4384 (dwarf_decode_lines): Likewise.
4385 (file_file_name): Likewise.
4386
4387 2017-03-23 Simon Marchi <simon.marchi@ericsson.com>
4388
4389 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
4390 inferior_ptid.
4391 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
4392 ps_lsetfpregs): Likewise.
4393 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
4394 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
4395 ps_lsetfpregs): Likewise.
4396 * target.c (target_fetch_registers, target_store_registers):
4397 Remove asserts.
4398
4399 2017-03-23 Alan Hayward <alan.hayward@arm.com>
4400
4401 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
4402
4403 2017-03-23 Yao Qi <yao.qi@linaro.org>
4404
4405 * aarch64-tdep.c (aarch64_process_record_test): Declare.
4406 (_initialize_aarch64_tdep): Register it.
4407 (aarch64_record_load_store): Handle PRFM instruction.
4408 (aarch64_process_record_test): New function.
4409
4410 2017-03-23 Yao Qi <yao.qi@linaro.org>
4411
4412 * aarch64-tdep.c (aarch64_record_load_store): Fix code
4413 indentation.
4414
4415 2017-03-23 Yao Qi <yao.qi@linaro.org>
4416
4417 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
4418
4419 2017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
4420
4421 python/python.c (do_start_initialization): Fix memory leak.
4422
4423 2017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
4424
4425 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
4426 using get_ptrace_pid.
4427 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
4428 inferior_ptid.
4429 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
4430 inferior_ptid instead of pid.
4431
4432 2017-03-22 Yao Qi <yao.qi@linaro.org>
4433
4434 * aarch64-tdep.c: Wrap locally used classes in anonymous
4435 namespace.
4436 * arm-tdep.c: Likewise.
4437 * linespec.c: Likewise.
4438 * ui-out.c: Likewise.
4439
4440 2017-03-22 Jonah Graham <jonah@kichwacoders.com>
4441
4442 PR gdb/19637
4443 * python/lib/gdb/printer/bound_registers.py: Import sys.
4444
4445 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
4446
4447 * windows-nat.c (do_windows_fetch_inferior_registers): Add
4448 windows_thread_info parameter and use it instead of
4449 current_thread.
4450 (windows_fetch_inferior_registers): Don't set current_thread,
4451 pass the thread to do_windows_fetch_inferior_registers. Use
4452 ptid from regcache instead of inferior_ptid.
4453 (do_windows_store_inferior_registers): Add windows_thread_info
4454 parameter and use it instead of current_thread.
4455 (windows_store_inferior_registers): Don't set current_thread,
4456 pass the thread to do_windows_store_inferior_registers. Use
4457 ptid from regcache instead of inferior_ptid.
4458
4459 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
4460
4461 * ser-mingw.c (ser_windows_raw): Remove reference to
4462 struct serial::current_timeout.
4463
4464 2017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
4465
4466 PR tdep/20928
4467 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
4468 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
4469 (sparc64_fsr_type): Fix %fsr decoding.
4470
4471 2017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
4472
4473 * python/py-record-btrace.c (btpy_insn_data): Change return type
4474 for Python 2.
4475
4476 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
4477
4478 * spu-linux-nat.c (spu_fetch_inferior_registers,
4479 spu_store_inferior_registers): Use ptid from regcache, set and
4480 restore inferior_ptid.
4481 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
4482 Likewise.
4483
4484 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
4485
4486 * i386-linux-nat.c (fetch_register, store_register,
4487 i386_linux_fetch_inferior_registers,
4488 i386_linux_store_inferior_registers): Use ptid from regcache.
4489 * ia64-linux-nat.c (ia64_linux_fetch_register,
4490 ia64_linux_store_register): Likewise.
4491 * inf-ptrace.c (inf_ptrace_fetch_register,
4492 inf_ptrace_store_register): Likewise.
4493 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
4494 m32r_linux_store_inferior_registers): Likewise.
4495 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
4496 m68kbsd_store_inferior_registers): Likewise.
4497 * m68k-linux-nat.c (fetch_register, store_register,
4498 m68k_linux_fetch_inferior_registers,
4499 m68k_linux_store_inferior_registers): Likewise.
4500 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
4501 m88kbsd_store_inferior_registers): Likewise.
4502 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
4503 mips_fbsd_store_inferior_registers): Likewise.
4504 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
4505 mips64_linux_regsets_store_registers): Likewise.
4506 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
4507 mipsnbsd_store_inferior_registers): Likewise.
4508 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
4509 mips64obsd_store_inferior_registers): Likewise.
4510 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
4511 Likewise.
4512 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
4513 ppcfbsd_store_inferior_registers): Likewise.
4514 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
4515 ppc_linux_store_inferior_registers): Likewise.
4516 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
4517 ppcnbsd_store_inferior_registers): Likewise.
4518 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
4519 ppcobsd_store_registers): Likewise.
4520 * procfs.c (procfs_fetch_registers, procfs_store_registers):
4521 Likewise.
4522 * ravenscar-thread.c (ravenscar_fetch_registers,
4523 ravenscar_store_registers, ravenscar_prepare_to_store):
4524 Likewise.
4525 * record-btrace.c (record_btrace_fetch_registers,
4526 record_btrace_store_registers, record_btrace_prepare_to_store):
4527 Likewise.
4528 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
4529 Lookup inferior using ptid from regcache, instead of
4530 current_inferior.
4531 * remote.c (remote_fetch_registers, remote_store_registers): Use
4532 ptid from regcache.
4533 * rs6000-nat.c (fetch_register, store_register): Likewise.
4534 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
4535 s390_linux_store_inferior_registers): Likewise.
4536 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
4537 shnbsd_store_inferior_registers): Likewise.
4538 * sol-thread.c (sol_thread_fetch_registers,
4539 sol_thread_store_registers): Likewise.
4540 * sparc-nat.c (sparc_fetch_inferior_registers,
4541 sparc_store_inferior_registers): Likewise.
4542 * tilegx-linux-nat.c (fetch_inferior_registers,
4543 store_inferior_registers): Likewise.
4544 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
4545 vaxbsd_store_inferior_registers): Likewise.
4546 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
4547 store_xtregs): Likewise.
4548
4549 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4550
4551 PR gdb/14441
4552 * NEWS: Mention support for rvalue references in GDB and python.
4553 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
4554 supports both lvalue and rvalue references.
4555
4556 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4557
4558 PR gdb/14441
4559 * gdbtypes.c (rank_one_type): Implement overloading
4560 resolution rules regarding rvalue references.
4561
4562 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4563
4564 PR gdb/14441
4565 * aarch64-tdep.c (aarch64_type_align)
4566 (aarch64_extract_return_value, aarch64_store_return_value): Change
4567 lvalue reference type checks to general reference type checks.
4568 * amd64-tdep.c (amd64_classify): Likewise.
4569 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
4570 Likewise.
4571 * arm-tdep.c (arm_type_align, arm_extract_return_value)
4572 (arm_store_return_value): Likewise.
4573 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
4574 * c-typeprint.c (c_print_type): Likewise.
4575 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
4576 (cplus_number_of_children, cplus_describe_child): Likewise.
4577 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
4578 * completer.c (expression_completer): Likewise.
4579 * cp-support.c (make_symbol_overload_list_adl_namespace):
4580 Likewise.
4581 * darwin-nat-info.c (info_mach_region_command): Likewise.
4582 * dwarf2loc.c (entry_data_value_coerce_ref)
4583 (value_of_dwarf_reg_entry): Likewise.
4584 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
4585 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
4586 Likewise.
4587 * findvar.c (extract_typed_address, store_typed_address):
4588 Likewise.
4589 * gdbtypes.c (rank_one_type): Likewise.
4590 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
4591 * infcall.c (value_arg_coerce): Likewise.
4592 * language.c (pointer_type): Likewise.
4593 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
4594 Likewise.
4595 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
4596 * mn10300-tdep.c (mn10300_type_align): Likewise.
4597 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
4598 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
4599 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
4600 Likewise.
4601 * printcmd.c (print_formatted, x_command): Likewise.
4602 * python/py-type.c (typy_get_composite, typy_template_argument):
4603 Likewise.
4604 * python/py-value.c (valpy_referenced_value)
4605 (valpy_get_dynamic_type, value_has_field): Likewise.
4606 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
4607 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
4608 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
4609 * spu-tdep.c (spu_scalar_value_p): Likewise.
4610 * symtab.c (lookup_symbol_aux): Likewise.
4611 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
4612 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
4613 Likewise.
4614 * valops.c (value_cast_pointers, value_cast)
4615 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
4616 (value_struct_elt, value_struct_elt_bitpos)
4617 (value_find_oload_method_list, find_overload_match)
4618 (value_rtti_indirect_type): Likewise.
4619 * valprint.c (val_print_scalar_type_p, generic_val_print):
4620 Likewise.
4621 * value.c (value_actual_type, value_as_address, unpack_long)
4622 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
4623 (coerce_ref): Likewise.
4624 * varobj.c (varobj_get_value_type): Likewise.
4625
4626 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4627
4628 PR gdb/14441
4629 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
4630 table of constants.
4631 * python/lib/gdb/command/explore.py: Support exploring values
4632 of rvalue reference types.
4633 * python/lib/gdb/types.py: Implement get_basic_type() for
4634 rvalue reference types.
4635 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
4636 constant.
4637 * python/py-value.c (valpy_getitem): Add an rvalue reference
4638 check.
4639 (valpy_reference_value): Add new parameter "refcode".
4640 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
4641 New wrappers for valpy_reference_value().
4642 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
4643 (gdbpy_invoke_xmethod): Likewise.
4644
4645 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4646
4647 PR gdb/14441
4648 * dwarf2read.c (process_die, read_type_die_1): Handle the
4649 DW_TAG_rvalue_reference_type DIE.
4650 (read_tag_reference_type): Add new parameter "refcode".
4651
4652 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4653
4654 PR gdb/14441
4655 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
4656 (c_type_print_modifier, c_type_print_varspec_suffix)
4657 (c_type_print_base): Support printing rvalue reference types.
4658 * c-valprint.c (c_val_print, c_value_print): Support printing
4659 rvalue reference values.
4660
4661 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4662
4663 PR gdb/14441
4664 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
4665 typename.
4666 * cp-support.c (replace_typedefs): Handle
4667 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
4668 * python/py-type.c (typy_lookup_type): Likewise.
4669
4670 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4671
4672 PR gdb/14441
4673 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
4674 * parse.c (insert_type): Change assert statement.
4675 (follow_types): Handle rvalue reference types.
4676 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
4677 constant.
4678
4679 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4680
4681 PR gdb/14441
4682 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
4683 value_ref() interface.
4684 * c-valprint.c (c_value_print): Likewise.
4685 * infcall.c (value_arg_coerce): Likewise.
4686 * python/py-value.c (valpy_reference_value): Likewise.
4687 * valops.c (value_cast, value_reinterpret_cast)
4688 (value_dynamic_cast, typecmp): Likewise.
4689 (value_ref): Parameterize by kind of return value reference type.
4690 * value.h (value_ref): Add new parameter "refcode".
4691
4692 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4693
4694 PR gdb/14441
4695 * dwarf2read.c (read_tag_reference_type): Use
4696 lookup_lvalue_reference_type() instead of lookup_reference_type().
4697 * eval.c (evaluate_subexp_standard): Likewise.
4698 * f-exp.y: Likewise.
4699 * gdbtypes.c (make_reference_type, lookup_reference_type):
4700 Generalize with rvalue reference types.
4701 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
4702 convenience wrappers for lookup_reference_type().
4703 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
4704 reference kind parameter.
4705 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
4706 wrappers for lookup_reference_type().
4707 * guile/scm-type.c (gdbscm_type_reference): Use
4708 lookup_lvalue_reference_type() instead of lookup_reference_type().
4709 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
4710 * parse.c (follow_types): Likewise.
4711 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
4712 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
4713 Likewise.
4714 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
4715 (gdbpy_invoke_xmethod): Likewise.
4716 * stabsread.c: Provide extra argument to make_reference_type()
4717 call.
4718 * valops.c (value_ref, value_rtti_indirect_type): Use
4719 lookup_lvalue_reference_type() instead of lookup_reference_type().
4720
4721 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
4722
4723 PR gdb/14441
4724 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
4725 (TYPE_IS_REFERENCE): New macro.
4726 (struct type): Add rvalue_reference_type field.
4727 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
4728
4729 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
4730
4731 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
4732 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
4733 New function definition.
4734 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
4735 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
4736 New function declaration.
4737 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
4738 * mi/mi-interp.h: New file.
4739 * solib.c (info_sharedlibrary_command): Replace for loop with
4740 ALL_SO_LIBS macro
4741 * solib.h (update_solib_list): New function declaration.
4742 (so_list_head): Move macro.
4743 * solist.h (ALL_SO_LIBS): New macro.
4744
4745 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
4746
4747 * infcmd.c (post_create_inferior): Remove unused argument in
4748 call to solib_add.
4749 * remote.c (remote_start_remote): Likewise.
4750 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
4751 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
4752 (enable_break): Likewise.
4753 * solib.c (update_solib_list): Remove unused target argument
4754 and its documentation.
4755 (solib_add): Remove unused target argument. Remove unused
4756 argument in call to update_solib_list.
4757 (info_sharedlibrary_command): Remove unused argument in call
4758 to update_solib_list.
4759 (sharedlibrary_command): Remove unused argument in call to
4760 solib_add.
4761 (handle_solib_event): Likewise.
4762 (reload_shared_libraries): Likewise.
4763 * solib.h (solib_add): Remove unused target argument.
4764
4765 2017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
4766
4767 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
4768 (s390_displaced_step_fixup): Cover relative branches with the
4769 default fixup handling. This fixes lack of support for some
4770 relative branch instructions.
4771
4772 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4773
4774 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
4775 ptid from regcache.
4776
4777 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4778
4779 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
4780 i386_darwin_store_inferior_registers): Use ptid from regcache.
4781
4782 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4783
4784 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
4785 i386bsd_store_inferior_registers): Use ptid from regcache.
4786
4787 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4788
4789 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
4790 hppaobsd_store_registers): Use ptid from regcache.
4791
4792 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4793
4794 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
4795 hppanbsd_store_registers): Use ptid from regcache.
4796
4797 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4798
4799 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
4800 from regcache. Use get_ptrace_pid.
4801
4802 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4803
4804 * corelow.c (get_core_register_section): Use ptid from regcache,
4805 update doc.
4806
4807 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4808
4809 * bsd-uthread.c (bsd_uthread_fetch_registers,
4810 bsd_uthread_store_registers): Use ptid from regcache, set and
4811 restore inferior_ptid.
4812
4813 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4814
4815 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
4816 fetch_fp_regs, store_register, store_regs, store_fp_register,
4817 store_fp_regs): Use ptid from regcache.
4818
4819 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
4820
4821 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
4822 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
4823 store_vfp_regs): Use ptid from regcache.
4824
4825 2017-03-17 Pedro Alves <palves@redhat.com>
4826
4827 PR remote/21188
4828 * ser-base.c (ser_base_wait_for): Add comment.
4829 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
4830 version.
4831 * ser-unix.c (hardwire_raw): Remove reference to
4832 scb->current_timeout.
4833 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
4834 (hardwire_ops): Install ser_base_readchar instead of
4835 hardwire_readchar.
4836 * serial.h (struct serial) <current_timeout, timeout_remaining>:
4837 Remove fields.
4838
4839 2017-03-17 Jonah Graham <jonah@kichwacoders.com>
4840
4841 PR gdb/19637
4842 * python/lib/gdb/printer/bound_registers.py: Add support for
4843 Python 3.
4844
4845 2017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
4846
4847 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
4848 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
4849 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
4850 byte_offset to subobj_byte_offset. Fix the handling of
4851 DWARF_VALUE_STACK on big-endian targets when coming via an
4852 implicit pointer.
4853 (dwarf2_evaluate_loc_desc): Adjust call to
4854 dwarf2_evaluate_loc_desc_full.
4855 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
4856 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
4857
4858 2017-03-16 Yao Qi <yao.qi@linaro.org>
4859
4860 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
4861 and REVSH instructions.
4862
4863 2017-03-16 Yao Qi <yao.qi@linaro.org>
4864
4865 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
4866 (arm_record_test): Declare.
4867 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
4868 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
4869 align with the manual.
4870 (thumb_record_misc): Adjust the code order to align with the
4871 manual.
4872 (thumb2_record_decode_insn_handler): Fix instruction matching.
4873 (instruction_reader_thumb): New class.
4874 (arm_record_test): New function.
4875
4876 2017-03-16 Yao Qi <yao.qi@linaro.org>
4877
4878 * arm-tdep.c (abstract_memory_reader): New class.
4879 (instruction_reader): New class.
4880 (extract_arm_insn): Add argument 'reader'. Callers updated.
4881 (decode_insn): Likewise.
4882
4883 2017-03-16 Doug Evans <dje@google.com>
4884
4885 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
4886 member. Change type of TYPE member to SCM. All uses updated.
4887 (lsscm_make_lazy_string_smob): Add assert.
4888 (lsscm_make_lazy_string): Flag bad length values.
4889 (lsscm_elt_type): New function.
4890 (gdbscm_lazy_string_to_value): Rewrite to use
4891 lsscm_safe_lazy_string_to_value.
4892 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
4893 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
4894 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
4895 in incoming type.
4896 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
4897 * guile/scm-type.c (tyscm_scm_to_type): New function.
4898
4899 2017-03-15 Doug Evans <dje@google.com>
4900
4901 PR python/17728, python/18439, python/18779
4902 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
4903 member. Change type of TYPE member to PyObject *. All uses updated.
4904 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
4905 (gdbpy_create_lazy_string_object): Flag bad length values.
4906 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
4907 Handle typedefs in incoming type.
4908 (stpy_lazy_string_elt_type): New function.
4909 (gdbpy_extract_lazy_string): Call it.
4910 * python/py-value.c (valpy_lazy_string): Flag bad length values.
4911 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
4912 typedefs in incoming type.
4913
4914 2017-03-16 Doug Evans <dje@google.com>
4915
4916 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
4917 * guile/scm-type.c (tyscm_scm_to_type): New function.
4918
4919 2017-03-16 Jiong Wang <jiong.wang@arm.com>
4920
4921 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
4922 "ULONGEST" for "skip".
4923
4924 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
4925
4926 PR gdb/21220
4927 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
4928 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
4929 (inf_ptrace_peek_poke): ...here. New function. Now also loop
4930 over ptrace peek/poke until end of buffer or error.
4931
4932 2017-03-14 Simon Marchi <simon.marchi@ericsson.com>
4933
4934 * parse.c (length_of_subexp): Make static.
4935 * parser-defs.h (length_of_subexp): Remove.
4936
4937 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
4938
4939 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
4940 as well.
4941
4942 2017-03-14 Pedro Alves <palves@redhat.com>
4943
4944 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
4945 (main): Use std::unique_ptr. Remove calls to
4946 cp_demangled_name_parse_free.
4947
4948 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4949
4950 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
4951 alphabsd_store_inferior_registers): Use regcache->ptid instead
4952 of inferior_ptid.
4953
4954 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4955
4956 * aix-thread.c (aix_thread_fetch_registers,
4957 aix_thread_store_registers): Use regcache->ptid instead of
4958 inferior_ptid.
4959
4960 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4961
4962 * aarch64-linux-nat.c (fetch_gregs_from_thread,
4963 store_gregs_to_thread, fetch_fpregs_from_thread,
4964 store_fpregs_to_thread): Use regcache->ptid instead of
4965 inferior_ptid.
4966
4967 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4968
4969 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
4970 amd64_linux_fetch_inferior_registers): Use regcache->ptid
4971 instead of inferior_ptid.
4972
4973 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4974
4975 * target.c (target_fetch_registers, target_store_registers): Add
4976 assert.
4977
4978 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
4979
4980 * regcache.h (regcache_get_ptid): New function.
4981 * regcache.c (regcache_get_ptid): New function.
4982
4983 2017-03-13 Mark Wielaard <mark@klomp.org>
4984
4985 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
4986
4987 2017-03-10 Keith Seitz <keiths@redhat.com>
4988
4989 PR c++/8218
4990 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
4991
4992 2017-03-08 Pedro Alves <palves@redhat.com>
4993
4994 PR gdb/18360
4995 * infrun.c (start_step_over, do_target_resume, resume)
4996 (restart_threads): Assert we're not resuming a thread that is
4997 meant to be stopped.
4998 (infrun_thread_stop_requested_callback): Delete.
4999 (infrun_thread_stop_requested): If the thread is internally
5000 stopped, queue a pending stop event and clear the thread's
5001 inline-frame state.
5002 (handle_stop_requested): New function.
5003 (handle_syscall_event, handle_inferior_event_1): Use
5004 handle_stop_requested.
5005 (handle_stop_requested): New function.
5006 (handle_signal_stop): Set the thread's stop_signal here instead of
5007 at caller.
5008 (finish_step_over): Clear step over info unconditionally.
5009 (handle_signal_stop): If the user had interrupted the event
5010 thread, consider the stop a random signal.
5011 (handle_signal_stop) <signal arrived while stepping over
5012 breakpoint>: Don't restart threads here.
5013 (stop_waiting): Don't clear step-over info here.
5014
5015 2017-03-08 Pedro Alves <palves@redhat.com>
5016
5017 PR 21206
5018 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
5019 goes to argument 2, not 1.
5020
5021 2017-03-08 Pedro Alves <palves@redhat.com>
5022
5023 PR cli/21218
5024 * top.c (gdb_readline_wrapper): Avoid passing NULL to
5025 display_gdb_prompt.
5026 (command_line_input): Add comment.
5027
5028 2017-03-08 Pedro Alves <palves@redhat.com>
5029
5030 PR tui/21216
5031 * tui/tui-file.c (tui_file::write): New.
5032 * tui/tui-file.h (tui_file): Override "write".
5033 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
5034 factored out from ...
5035 (tui_puts): ... here.
5036 (tui_putc): Use them.
5037 (tui_write): New function.
5038 * tui/tui-io.h (tui_write): Declare.
5039
5040 2017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
5041
5042 * Makefile.in (SFILES): Replace "environ.c" with
5043 "common/environ.c".
5044 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
5045 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
5046 to...
5047 * common/environ.c: ... here.
5048 * environ.h: Moved to...
5049 * common/environ.h: ... here.
5050
5051 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
5052
5053 * gdbarch.sh (pstring_ptr): New static function.
5054 (gdbarch_disassembler_options): Use it.
5055 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
5056 not valid_disassembler_option->name.
5057 * gdbarch.c: Regenerate.
5058
5059 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
5060
5061 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
5062
5063 2017-03-07 Pedro Alves <palves@redhat.com>
5064
5065 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
5066
5067 2017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
5068
5069 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
5070 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
5071 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
5072 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
5073
5074 2017-03-06 Simon Marchi <simon.marchi@ericsson.com>
5075
5076 * xtensa-linux-nat.c (fetch_gregs): Remove const.
5077
5078 2017-03-03 Simon Marchi <simon.marchi@ericsson.com>
5079
5080 * remote.c (remote_add_target_side_commands): Use range-based
5081 for loop.
5082
5083 2017-03-03 Yao Qi <yao.qi@linaro.org>
5084
5085 PR gdb/21165
5086 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
5087 value is lazy.
5088 * valprint.c (common_val_print): Likewise.
5089
5090 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
5091
5092 * NEWS: Mention new set/show disassembler-options commands.
5093 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
5094 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
5095 (prospective_options): New static variable.
5096 (gdb_disassembler::gdb_disassembler): Initialize
5097 m_di.disassembler_options.
5098 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
5099 (get_disassembler_options): New function.
5100 (set_disassembler_options): Likewise.
5101 (set_disassembler_options_sfunc): Likewise.
5102 (show_disassembler_options_sfunc): Likewise.
5103 (disassembler_options_completer): Likewise.
5104 (_initialize_disasm): Likewise.
5105 * disasm.h (get_disassembler_options): New prototype.
5106 (set_disassembler_options): Likewise.
5107 * gdbarch.sh (gdbarch_disassembler_options): New variable.
5108 (gdbarch_verify_disassembler_options): Likewise.
5109 * gdbarch.c: Regenerate.
5110 * gdbarch.h: Likewise.
5111 * arm-tdep.c (num_disassembly_options): Delete.
5112 (set_disassembly_style): Likewise.
5113 (arm_disassembler_options): New static variable.
5114 (set_disassembly_style_sfunc): Convert short style name into long
5115 option name. Call set_disassembler_options.
5116 (show_disassembly_style_sfunc): New function.
5117 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
5118 set_gdbarch_verify_disassembler_options.
5119 (_initialize_arm_tdep): Delete regnames variable and update callers.
5120 (arm_disassembler_options): Initialize.
5121 (disasm_options): New variable.
5122 (num_disassembly_options): Rename from this...
5123 (num_disassembly_styles): ...to this. Compute by scanning through
5124 disasm_options.
5125 (valid_disassembly_styles): Initialize using disasm_options.
5126 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
5127 set_arm_regname_option.
5128 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
5129 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
5130 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
5131 set_gdbarch_verify_disassembler_options.
5132 * s390-tdep.c (s390_disassembler_options): New static variable.
5133 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
5134 set_gdbarch_verify_disassembler_options.
5135
5136 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
5137
5138 * remote.c (remote_add_target_side_condition): Remove "struct"
5139 keyword from range-based for loop.
5140
5141 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
5142
5143 * remote.c (remote_add_target_side_condition): Use range-based
5144 for loop. Update comment.
5145
5146 2017-02-27 Yao Qi <yao.qi@linaro.org>
5147
5148 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
5149
5150 2017-02-26 Alan Hayward <alan.hayward@arm.com>
5151
5152 * regcache.c (regcache_raw_update): New function.
5153 (regcache_raw_read): Move code to regcache_raw_update.
5154 * regcache.h (regcache_raw_update): New declaration.
5155 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
5156
5157 2017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5158
5159 * dwarf2read.c (create_debug_type_hash_table): Initialize
5160 header.signature and header.type_offset_in_tu.
5161
5162 2017-02-24 Pedro Alves <palves@redhat.com>
5163
5164 * symtab.c (make_file_symbol_completion_list_1): Use
5165 add_symtab_completions.
5166
5167 2017-02-24 Alan Hayward <alan.hayward@arm.com>
5168
5169 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
5170
5171 2017-02-24 Alan Hayward <alan.hayward@arm.com>
5172
5173 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
5174 I386_MAX_REGISTER_SIZE.
5175 (i386_pseudo_register_write): Likewise.
5176 (i386_process_record): Likewise.
5177 * i387-tdep.c (i387_supply_xsave): Likewise.
5178 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
5179 (store_register): Likewise.
5180
5181 2017-02-23 Pedro Alves <palves@redhat.com>
5182
5183 * ada-lang.c: Include "common/function-view.h".
5184 (ada_iterate_over_symbols): Adjust to use function_view as
5185 callback type.
5186 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
5187 (ada_make_symbol_completion_list): Use a lambda.
5188 (ada_exc_search_name_matches): Delete.
5189 (name_matches_regex): New.
5190 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
5191 * compile/compile-c-support.c: Include "common/function-view.h".
5192 (print_one_macro): Change prototype to accept a ui_file pointer.
5193 (write_macro_definitions): Use a lambda.
5194 * dwarf2read.c: Include "common/function-view.h".
5195 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
5196 (dw2_expand_symtabs_matching): Adjust to use function_view as
5197 callback type.
5198 * language.h: Include "common/function-view.h".
5199 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
5200 function_view as callback type.
5201 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
5202 * linespec.c: Include "common/function-view.h".
5203 (collect_info::add_symbol): New method.
5204 (struct symbol_and_data_callback, iterate_inline_only, struct
5205 symbol_matcher_data, iterate_name_matcher): Delete.
5206 (iterate_over_all_matching_symtabs): Adjust to use function_view
5207 as callback type and lambdas.
5208 (iterate_over_file_blocks): Adjust to use function_view as
5209 callback type.
5210 (decode_compound_collector): Now a class with private fields.
5211 (decode_compound_collector::release_symbols): New method.
5212 (collect_one_symbol): Rename to...
5213 (decode_compound_collector::operator()): ... this and adjust.
5214 (lookup_prefix_sym): decode_compound_collector construction bits
5215 move to decode_compound_collector ctor. Pass the
5216 decode_compound_collector object directly as callback. Remove
5217 cleanups and use decode_compound_collector::release_symbols
5218 instead.
5219 (symtab_collector): Now a class with private fields.
5220 (symtab_collector::release_symtabs): New method.
5221 (add_symtabs_to_list): Rename to...
5222 (symtab_collector::operator()): ... this and adjust.
5223 (collect_symtabs_from_filename): symtab_collector construction
5224 bits move to symtab_collector ctor. Pass the symtab_collector
5225 object directly as callback. Remove cleanups and use
5226 symtab_collector::release_symtabs instead.
5227 (collect_symbols): Delete.
5228 (add_matching_symbols_to_info): Use lambdas.
5229 * macrocmd.c (print_macro_callback): Delete.
5230 (info_macro_command): Use a lambda.
5231 (info_macros_command): Pass print_macro_definition as callable
5232 directly.
5233 (print_one_macro): Remove 'ignore' parameter.
5234 (macro_list_command): Adjust.
5235 * macrotab.c (macro_for_each_data::fn): Now a function_view.
5236 (macro_for_each_data::user_data): Delete field.
5237 (foreach_macro): Adjust to call the function_view.
5238 (macro_for_each): Adjust to use function_view as callback type.
5239 (foreach_macro_in_scope): Adjust to call the function_view.
5240 (macro_for_each_in_scope): Adjust to use function_view as callback
5241 type.
5242 * macrotab.h: Include "common/function-view.h".
5243 (macro_callback_fn): Declare a prototype instead of a pointer.
5244 Remove "user_data" parameter.
5245 (macro_for_each, macro_for_each_in_scope): Adjust to use
5246 function_view as callback type.
5247 * psymtab.c (partial_map_expand_apply)
5248 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
5249 Adjust to use function_view as callback type and to return bool.
5250 (psym_expand_symtabs_matching): Adjust to use function_view as
5251 callback types.
5252 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
5253 to use function_view as callback type and to return bool.
5254 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
5255 callback types.
5256 * symfile.c (expand_symtabs_matching): Adjust to use function_view
5257 as callback types.
5258 * symfile.h: Include "common/function-view.h".
5259 (expand_symtabs_file_matcher_ftype)
5260 (expand_symtabs_symbol_matcher_ftype)
5261 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
5262 return bool.
5263 (quick_symbol_functions::map_symtabs_matching_filename)
5264 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
5265 function_view as callback type and return bool.
5266 (expand_symtabs_matching): Adjust to use function_view as callback
5267 type.
5268 (maintenance_expand_name_matcher)
5269 (maintenance_expand_file_matcher): Delete.
5270 (maintenance_expand_symtabs): Use lambdas.
5271 * symtab.c (iterate_over_some_symtabs): Adjust to use
5272 function_view as callback types and return bool.
5273 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
5274 of a cleanup.
5275 (lookup_symtab_callback): Delete.
5276 (lookup_symtab): Use a lambda.
5277 (iterate_over_symbols): Adjust to use function_view as callback
5278 type.
5279 (struct search_symbols_data, search_symbols_file_matches)
5280 (search_symbols_name_matches): Delete.
5281 (search_symbols): Use a pair of lambdas.
5282 (struct add_name_data, add_macro_name, symbol_completion_matcher)
5283 (symtab_expansion_callback): Delete.
5284 (default_make_symbol_completion_list_break_on_1): Use lambdas.
5285 * symtab.h: Include "common/function-view.h".
5286 (iterate_over_some_symtabs): Adjust to use function_view as
5287 callback type and return bool.
5288 (iterate_over_symtabs): Adjust to use function_view as callback
5289 type.
5290 (symbol_found_callback_ftype): Remove 'data' parameter and return
5291 bool.
5292 (iterate_over_symbols): Adjust to use function_view as callback
5293 type.
5294
5295 2017-02-23 Pedro Alves <palves@redhat.com>
5296
5297 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
5298 (%.o) <unittests/%.c>: New pattern.
5299 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
5300 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
5301 * common/function-view.h: New file.
5302 * unittests/function-view-selftests.c: New file.
5303 * configure: Regenerate.
5304
5305 2017-02-23 Simon Marchi <simon.marchi@ericsson.com>
5306
5307 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
5308 inferior_ptid.
5309 * go32-nat.c (go32_thread_alive): Likewise.
5310
5311 2017-02-23 Yao Qi <yao.qi@linaro.org>
5312
5313 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
5314 delete.
5315
5316 2017-02-23 Yao Qi <yao.qi@linaro.org>
5317
5318 * varobj.c (varobj_clear_saved_item): Use delete instead of
5319 xfree.
5320 (update_dynamic_varobj_children): Likewise.
5321
5322 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5323
5324 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
5325
5326 2017-02-21 Simon Marchi <simon.marchi@ericsson.com>
5327
5328 * common/enum-flags.h (enum_flags::enum_flags): Initialize
5329 m_enum_value to 0 in default constructor.
5330
5331 2017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
5332
5333 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
5334 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
5335 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
5336 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
5337 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
5338 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
5339 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
5340 IS_STORE_CONDITIONAL_INSN.
5341
5342 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5343
5344 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
5345
5346 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5347
5348 * NEWS (Changes since GDB 7.12): Add DWARF-5.
5349
5350 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5351
5352 * dwarf2read.c (skip_one_die, read_attribute_value)
5353 (dwarf2_const_value_attr, dump_die_shallow)
5354 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
5355 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
5356
5357 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5358
5359 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
5360 (dwarf_parse_macro_header): Accept DWARF version 5.
5361 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
5362
5363 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5364
5365 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
5366 DW_AT_GNU_*.
5367 * common/common-exceptions.h (enum errors): Likewise.
5368 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
5369 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
5370 (dwarf_expr_context::execute_stack_op): Likewise.
5371 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
5372 Likewise.
5373 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
5374 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
5375 (show_entry_values_debug, call_site_to_target_addr)
5376 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
5377 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
5378 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
5379 (value_of_dwarf_block_entry, indirect_pieced_value)
5380 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
5381 (disassemble_dwarf_expression): Likewise.
5382 * dwarf2read.c (process_die, inherit_abstract_dies)
5383 (read_call_site_scope): Likewise.
5384 * gdbtypes.h (struct func_type, struct call_site_parameter)
5385 (struct call_site): Likewise.
5386 * stack.c (read_frame_arg): Likewise.
5387 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
5388
5389 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5390
5391 * defs.h (read_unsigned_leb128): New declaration.
5392 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
5393 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
5394 (dwarf2_find_location_expression): Call also
5395 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
5396 * dwarf2loc.h (dwarf2_version): New declaration.
5397 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
5398 rnglists.
5399 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
5400 .debug_rnglists.
5401 (struct dwop_section_names): Add loclists_dwo.
5402 (dwop_section_names): Add .debug_loclists.dwo.
5403 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
5404 (struct dwarf2_per_cu_data): Add dwarf_version.
5405 (struct dwo_sections): Add loclists.
5406 (struct attr_abbrev): Add implicit_const.
5407 (read_indirect_line_string): New declaration.
5408 (read_unsigned_leb128): Delete declaration.
5409 (rcuh_kind): New definition.
5410 (read_and_check_comp_unit_head): Change parameter
5411 is_debug_types_section to section_kind.
5412 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
5413 (read_comp_unit_head): Change parameter abfd to section, add parameter
5414 section_kind. Handle DWARF-5.
5415 (error_check_comp_unit_head): Accept also DWARF version 5.
5416 (read_and_check_comp_unit_head): Change parameter
5417 is_debug_types_section to section_kind.
5418 (read_and_check_type_unit_head): Delete function.
5419 (read_abbrev_offset): Handle DWARF-5.
5420 (create_debug_type_hash_table): Add parameter section_kind. Process
5421 only DW_UT_type. Use signature and type_offset_in_tu from struct
5422 comp_unit_head.
5423 (create_debug_types_hash_table): Update create_debug_type_hash_table
5424 caller.
5425 (create_all_type_units): Call create_debug_type_hash_table.
5426 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
5427 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
5428 caller.
5429 (skip_one_die): Handle DW_FORM_implicit_const.
5430 (dwarf2_rnglists_process): New function.
5431 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
5432 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
5433 (read_attribute_value): Handle DW_FORM_implicit_const,
5434 DW_FORM_line_strp.
5435 (read_attribute): Handle DW_FORM_implicit_const.
5436 (read_indirect_string_at_offset_from): New function from
5437 read_indirect_string_at_offset.
5438 (read_indirect_string_at_offset): Call
5439 read_indirect_string_at_offset_from.
5440 (read_indirect_line_string_at_offset): New function.
5441 (read_indirect_string): New function comment.
5442 (read_indirect_line_string): New function.
5443 (read_unsigned_leb128): Make it global.
5444 (dwarf2_string_attr): Handle DWARF-5.
5445 (add_include_dir_stub, read_formatted_entries): New functions.
5446 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
5447 Handle DWARF-5.
5448 (per_cu_header_read_in): Update read_comp_unit_head caller.
5449 (dwarf2_version): New function.
5450 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
5451 rnglists.
5452 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
5453 fields.
5454
5455 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5456
5457 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
5458
5459 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5460
5461 * dwarf2read.c (dwarf2_ranges_process): New function from
5462 dwarf2_ranges_read.
5463 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
5464 dwarf2_ranges_process.
5465
5466 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5467
5468 * dwarf2read.c (create_debug_type_hash_table): New function from
5469 create_debug_types_hash_table.
5470 (create_debug_types_hash_table): Call create_debug_type_hash_table.
5471 (create_all_type_units, open_and_init_dwo_file): Update
5472 create_debug_types_hash_table callers.
5473
5474 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
5475
5476 PR gdb/16188
5477 * fork-child.c (trace_start_error): Fix thinko. va_end should
5478 refer to 'ap', not 'args'.
5479
5480 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
5481 Pedro Alves <palves@redhat.com>
5482
5483 PR gdb/16188
5484 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
5485 calls succeeded.
5486 * fork-child.c (trace_start_error): New function.
5487 (trace_start_error_with_name): Likewise.
5488 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
5489 * inf-ptrace.c (inf_ptrace_me): Likewise.
5490 * inferior.h (trace_start_error): New prototype.
5491 (trace_start_error_with_name): Likewise.
5492
5493 2017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
5494
5495 PR gdb/21164
5496 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
5497 NULL before using it.
5498 * symmisc.c (maintenance_print_symbols): Likewise.
5499 (maintenance_print_msymbols): Likewise.
5500
5501 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5502
5503 * NEWS: Add record Python bindings entry.
5504
5505 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5506
5507 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
5508 py-record-full.o.
5509 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
5510 * python/py-record-btrace.c, python/py-record-btrace.h,
5511 python/py-record-full.c, python/py-record-full.h: New file.
5512 * python/py-record.c: Add include for py-record-btrace.h and
5513 py-record-full.h.
5514 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
5515 recpy_instruction_history, recpy_function_call_history, recpy_begin,
5516 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
5517 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
5518 New definition.
5519 (gdbpy_initialize_btrace): New export.
5520 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
5521
5522 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5523
5524 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
5525 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
5526 * python/py-record.c: New file.
5527 * python/python-internal.h (gdbpy_start_recording,
5528 gdbpy_current_recording, gdpy_stop_recording,
5529 gdbpy_initialize_record): New export.
5530 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
5531 (python_GdbMethods): Add gdbpy_start_recording,
5532 gdbpy_current_recording and gdbpy_stop_recording.
5533
5534 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5535
5536 * record-btrace.c (record_btrace_record_method): New function.
5537 (init_record_btrace_ops): Initialize to_record_method.
5538 * record-full.c (record_full_record_method): New function.
5539 (init_record_full_ops, init_record_full_core_ops): Add
5540 record_full_record_method.
5541 * record.h (enum record_method): New enum.
5542 * target-debug.h (target_debug_print_enum_record_method: New define.
5543 * target-delegates.c: Regenerate.
5544 * target.c (target_record_method): New function.
5545 * target.h: Include record.h.
5546 (struct target_ops) <to_record_method>: New field.
5547 (target_record_method): New export.
5548
5549 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5550
5551 * record.h (record_start, record_stop): New export.
5552 * record.c (record_start, record_stop): New function.
5553
5554 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5555
5556 * btrace.c (btrace_fetch): Copy function call segments pointer
5557 into a vector.
5558 (btrace_clear): Clear the vector.
5559 (btrace_find_insn_by_number): Use binary search to find the correct
5560 function call segment.
5561 * btrace.h (brace_fun_p): New typedef.
5562 (struct btrace_thread_info) <functions>: New field.
5563
5564 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5565
5566 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
5567 * btrace.c (btrace_decode_error): ... here. New function.
5568 * btrace.h (btrace_decode_error): New export.
5569
5570 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
5571
5572 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
5573 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
5574 btrace_find_insn_by_number): Remove special case for gaps.
5575 * btrace.h (btrace_insn_get_error): New export.
5576 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
5577 * record-btrace.c (btrace_insn_history): Print number for gaps.
5578 (record_btrace_info, record_btrace_goto): Handle gaps.
5579
5580 2017-02-14 Tom Tromey <tom@tromey.com>
5581
5582 PR python/13598:
5583 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
5584 event.
5585 * python/py-evts.c (gdbpy_initialize_py_events): Add
5586 before_prompt registry.
5587 * python/py-events.h (events_object) <before_prompt>: New field.
5588
5589 2017-02-14 Markus Metzger <markus.t.metzger@intel.com>
5590
5591 * btrace.c (ftrace_new_switch): Preserve up link and flags.
5592
5593 2017-02-13 Luis Machado <lgustavo@codesourcery.com>
5594
5595 * symfile (_initialize_symfile): Add usage text to the load command's
5596 help text.
5597
5598 2017-02-10 Simon Marchi <simon.marchi@ericsson.com>
5599
5600 * utils.c (defaulted_query): Don't query on secondary UIs.
5601
5602 2017-02-10 Tom Tromey <tom@tromey.com>
5603
5604 * rust-lang.c (rust_get_disr_info): Remove unused variable.
5605
5606 2017-02-10 Tom Tromey <tom@tromey.com>
5607
5608 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
5609 "cleanup" local.
5610 * python/py-type.c (typy_legacy_template_argument): Remove
5611 unnecessary "cleanup" local.
5612
5613 2017-02-10 Tom Tromey <tom@tromey.com>
5614
5615 * python/python.c (do_start_initialization): New function, from
5616 _initialize_python.
5617 (_initialize_python): Call do_start_initialization.
5618 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
5619 goto.
5620
5621 2017-02-10 Tom Tromey <tom@tromey.com>
5622
5623 * python/py-prettyprint.c (pretty_print_one_value): Use
5624 gdbpy_ref.
5625
5626 2017-02-10 Tom Tromey <tom@tromey.com>
5627
5628 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
5629 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
5630 gdbpy_ref.
5631 * python/py-type.c (field_new): Use gdbpy_ref.
5632 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
5633 gdbpy_ref.
5634 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
5635 (py_free_pspace): Likewise.
5636 (pspace_to_pspace_object): Likewise.
5637 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
5638 (py_free_objfile): Likewise.
5639 (objfile_to_objfile_object): Likewise.
5640 * python/py-inferior.c (delete_thread_object): Use
5641 gdbpy_ref.
5642 (infpy_read_memory): Likewise.
5643 (py_free_inferior): Likewise.
5644 * python/py-evtregistry.c (create_eventregistry_object): Use
5645 gdbpy_ref.
5646 * python/py-event.c (create_event_object): Use gdbpy_ref.
5647
5648 2017-02-10 Tom Tromey <tom@tromey.com>
5649
5650 * python/py-ref.h (gdbpy_ref_policy): Now a template.
5651 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
5652 used.
5653 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
5654 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
5655 python/py-exitedevent.c, python/py-finishbreakpoint.c,
5656 python/py-framefilter.c, python/py-function.c,
5657 python/py-inferior.c, python/py-infevents.c,
5658 python/py-linetable.c, python/py-newobjfileevent.c,
5659 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
5660 python/py-signalevent.c, python/py-stopevent.c,
5661 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
5662 python/py-unwind.c, python/py-utils.c, python/py-value.c,
5663 python/py-varobj.c, python/py-xmethods.c, python/python.c,
5664 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
5665
5666 2017-02-10 Tom Tromey <tom@tromey.com>
5667
5668 * ui-out.h (ui_out_emit_type): New class.
5669 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
5670 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
5671 and ui_out_emit_tuple.
5672 (enumerate_locals): Likewise.
5673 (py_mi_print_variables, py_print_locals, py_print_args): Use
5674 ui_out_emit_list.
5675 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
5676 ui_out_emit_list.
5677 * common/gdb_optional.h: New file.
5678
5679 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
5680
5681 * MAINTAINERS (Write After Approval): Update my e-mail address.
5682
5683 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
5684
5685 PR gdb/21122
5686 * breakpoint.c (_initialize_breakpoint): Update the help description
5687 of the 'commands' command to indicate that it takes a list argument.
5688
5689 2017-02-09 Simon Marchi <simon.marchi@ericsson.com>
5690
5691 * interps.c (current_interp_set_logging): Remove "return".
5692
5693 2017-02-09 Gary Benson <gbenson@redhat.com>
5694
5695 * symtab.c (add_symtab_completions): Prevent NULL pointer
5696 dereference.
5697
5698 2017-02-08 Pedro Alves <palves@redhat.com>
5699
5700 * interps.c (interp::interp): Remove reference to quiet_p.
5701 (interp_set): Make static. Remove dead "Switching to" output
5702 code.
5703 (interp_quiet_p, interp_set_quiet): Delete.
5704 (interpreter_exec_cmd): Don't set the interpreter quiet.
5705 * interps.h (interp_quiet_p): Make static.
5706 (class interp) <quiet_p>: Remove field
5707
5708 2017-02-08 Jerome Guitton <guitton@adacore.com>
5709
5710 * cli/cli-decode.c (find_command_name_length): Make it extern.
5711 * cli/cli-decode.h (find_command_name_length): Declare.
5712 * cli/cli-script.c (command_name_equals, line_first_arg):
5713 New functions.
5714 (process_next_line): Use cli-decode to parse command names.
5715 (build_command_line): Make args a constant pointer.
5716
5717 2017-02-08 Jerome Guitton <guitton@adacore.com>
5718
5719 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
5720 Remove case-insensitive search.
5721
5722 2017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
5723
5724 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
5725 at the end of the line. Avoids an ARI warning.
5726
5727 2017-02-06 Luis Machado <lgustavo@codesourcery.com>
5728
5729 * NEWS: Mention support for record/replay of Intel 64 rdrand and
5730 rdseed instructions.
5731 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
5732
5733 2017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
5734
5735 PR tdep/20936
5736 Provide and use sparc32 and sparc64 target description XML files.
5737 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
5738 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
5739 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
5740 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
5741 * features/sparc/sparc32-solaris.xml: New file.
5742 * features/sparc/sparc64-solaris.xml: New file.
5743 * features/sparc/sparc32-solaris.c: Generated.
5744 * features/sparc/sparc64-solaris.c: Generated.
5745 * sparc-tdep.h: Account for differences in target descriptions.
5746 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
5747 (sparc32_register_type): Use target provided registers.
5748 (validate_tdesc_registers): New function.
5749 (sparc32_gdbarch_init): Use tdesc_has_registers.
5750 Set pseudoregister functions.
5751 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
5752 (sparc64_register_type): Use target provided registers.
5753 (sparc64_init_abi): Set pseudoregister functions.
5754
5755 2017-02-03 Tom Tromey <tom@tromey.com>
5756
5757 PR rust/21097:
5758 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
5759 with a single member.
5760
5761 2017-02-03 Pedro Alves <palves@redhat.com>
5762
5763 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
5764 (cli_interp_base::~cli_interp_base): New.
5765 (cli_interp): New struct.
5766 (as_cli_interp): Cast the interp itself to cli_interp.
5767 (cli_interpreter_pre_command_loop): Rename to ...
5768 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
5769 parameter.
5770 (cli_interpreter_init): Rename to ...
5771 (cli_interp::init): ... this. Remove 'self' parameter. Use
5772 boolean. Make extern.
5773 (cli_interpreter_resume): Rename to ...
5774 (cli_interp::resume): ... this. Remove 'data' parameter. Make
5775 extern.
5776 (cli_interpreter_suspend): Rename to ...
5777 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
5778 extern.
5779 (cli_interpreter_exec): Rename to ...
5780 (cli_interp::exec): ... this. Remove 'data' parameter. Make
5781 extern.
5782 (cli_interpreter_supports_command_editing): Rename to ...
5783 (cli_interp_base::supports_command_editing): ... this. Remove
5784 'interp' parameter. Make extern.
5785 (cli_ui_out): Rename to ...
5786 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
5787 Make extern.
5788 (cli_set_logging): Rename to ...
5789 (cli_interp_base::set_logging): ... this. Remove 'interp'
5790 parameter. Make extern.
5791 (cli_interp_procs): Delete.
5792 (cli_interp_factory): Adjust to use "new".
5793 * cli/cli-interp.h: Include "interps.h".
5794 (struct cli_interp_base): New struct.
5795 * interps.c (struct interp): Delete. Fields moved to interps.h.
5796 (interp_new): Delete.
5797 (interp::interp, interp::~interp): New.
5798 (interp_set): Use bool, and return void. Assume the interpreter
5799 has suspend, init and resume methods, and that the all return
5800 void.
5801 (set_top_level_interpreter): interp_set returns void.
5802 (interp_ui_out): Adapt.
5803 (current_interp_set_logging): Adapt.
5804 (interp_data): Delete.
5805 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
5806 (interp_exec): Adapt.
5807 (top_level_interpreter_data): Delete.
5808 * interps.h (interp_init_ftype, interp_resume_ftype)
5809 (interp_suspend_ftype, interp_exec_ftype)
5810 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
5811 (class interp): New.
5812 (interp_new): Delete.
5813 (interp_set): Now returns void. Use bool.
5814 (interp_data, top_level_interpreter_data): Delete.
5815 * mi/mi-common.h: Include interps.h.
5816 (class mi_interp): Inherit from interp. Define a ctor. Declare
5817 init, resume, suspect, exec, interp_ui_out, set_logging and
5818 pre_command_loop methods.
5819 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
5820 (mi_interpreter_init): Rename to ...
5821 (mi_interp::init): ... this. Remove the 'interp' parameter, use
5822 bool, return void and make extern. Adjust.
5823 (mi_interpreter_resume): ... Rename to ...
5824 (mi_interp::resume): ... this. Remove the 'data' parameter,
5825 return void and make extern. Adjust.
5826 (mi_interpreter_suspend): ... Rename to ...
5827 (mi_interp::suspend): ... this. Remove the 'data' parameter,
5828 return void and make extern. Adjust.
5829 (mi_interpreter_exec): ... Rename to ...
5830 (mi_interp::exec): ... this. Remove the 'data' parameter and make
5831 extern. Adjust.
5832 (mi_interpreter_pre_command_loop): ... Rename to ...
5833 (mi_interp::pre_command_loop): ... this. Remove the 'self'
5834 parameter and make extern.
5835 (mi_on_normal_stop_1): Adjust.
5836 (mi_ui_out): Rename to ...
5837 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
5838 parameter and make extern. Adjust.
5839 (mi_set_logging): Rename to ...
5840 (mi_interp::set_logging): ... this. Remove the 'interp'
5841 parameter and make extern. Adjust.
5842 (mi_interp_procs): Delete.
5843 (mi_interp_factory): Adjust to use 'new'.
5844 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
5845 (mi_print_exception, mi_execute_command, mi_load_progress):
5846 Adjust.
5847 * tui/tui-interp.c (tui_interp): New class.
5848 (as_tui_interp): Return a tui_interp pointer.
5849 (tui_on_normal_stop, tui_on_signal_received)
5850 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
5851 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
5852 to use interp::interp_ui_out.
5853 (tui_init): Rename to ...
5854 (tui_interp::init): ... this. Remove the 'self' parameter, use
5855 bool, return void and make extern. Adjust.
5856 (tui_resume): Rename to ...
5857 (tui_interp::resume): ... this. Remove the 'data' parameter,
5858 return void and make extern. Adjust.
5859 (tui_suspend): Rename to ...
5860 (tui_interp::suspend): ... this. Remove the 'data' parameter,
5861 return void and make extern. Adjust.
5862 (tui_ui_out): Rename to ...
5863 (tui_interp::interp_ui_out): ... this. Remove the 'self'
5864 parameter, and make extern. Adjust.
5865 (tui_exec): Rename to ...
5866 (tui_interp::exec): ... this. Remove the 'data' parameter and
5867 make extern.
5868 (tui_interp_procs): Delete.
5869 (tui_interp_factory): Use "new".
5870
5871 2017-02-02 Tom Tromey <tom@tromey.com>
5872
5873 * rust-exp.y (ends_raw_string, space_then_number)
5874 (rust_identifier_start_p): Return bool.
5875 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
5876 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
5877 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
5878 (rust_chartype_p): Return bool.
5879 (val_print_struct, rust_print_struct_def, rust_print_type):
5880 Update.
5881 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
5882 Return bool.
5883
5884 2017-02-02 Tom Tromey <tom@tromey.com>
5885
5886 * rust-lang.c: Reindent.
5887
5888 2017-02-02 Tom Tromey <tom@tromey.com>
5889
5890 * rust-lang.h (rust_crate_for_block): Update.
5891 * rust-lang.c (rust_crate_for_block): Return std::string.
5892 (rust_get_disr_info): Use std:;string, not
5893 gdb::unique_xmalloc_ptr.
5894 * rust-exp.y (crate_name): Update.
5895
5896 2017-02-02 Pedro Alves <palves@redhat.com>
5897
5898 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
5899 field out of gdb_disassembler_test and make it static.
5900
5901 2017-02-02 Pedro Alves <palves@redhat.com>
5902
5903 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
5904 mi1_interp and mi_interp fields.
5905
5906 2017-02-02 Pedro Alves <palves@redhat.com>
5907
5908 * cli/cli-interp.c (struct saved_output_files, saved_output):
5909 Moved from cli/cli-logging.c.
5910 (cli_set_logging): New function.
5911 (cli_interp_procs): Install cli_set_logging.
5912 * cli/cli-interp.h (make_logging_output, cli_set_logging):
5913 Declare.
5914 * cli/cli-logging.c (struct saved_output_files, saved_output):
5915 Moved to cli/cli-interp.c.
5916 (pop_output_files): Don't save outputs here.
5917 (make_logging_output): New function.
5918 (handle_redirections): Don't build tee nor save previous outputs
5919 here.
5920 * interps.c (current_interp_set_logging): Change prototype.
5921 Assume there's always a set_logging_proc method installed.
5922 * interps.h (interp_set_logging_ftype): Change prototype.
5923 (current_interp_set_logging): Change prototype and adjust comment.
5924 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
5925 use make_logging_output.
5926 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
5927 2017-02-02 Pedro Alves <palves@redhat.com>
5928
5929 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
5930 from ...
5931 (set_logging_overwrite): ... here.
5932 (logging_no_redirect_file): Delete.
5933 (set_logging_redirect): Don't handle redirection on the fly.
5934 Instead warn that "logging off" / "logging on" is necessary.
5935 (pop_output_files): Delete references to logging_no_redirect_file.
5936 (show_logging_command): Always speak in terms of what will happen
5937 once logging is reenabled.
5938
5939 2017-02-02 Pedro Alves <palves@redhat.com>
5940
5941 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
5942
5943 2017-02-02 Pedro Alves <palves@redhat.com>
5944
5945 * disasm.c (gdb_pretty_print_insn): Rename to ...
5946 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
5947 Remove gdbarch parameter. Adapt to clear the object's buffers
5948 instead of allocating new buffers, and to print using the object's
5949 gdb_disassembler instead of calling gdb_print_insn.
5950 (dump_insns): Use gdb_pretty_print_disassembler.
5951 * disasm.h (gdb_pretty_print_insn): Delete declaration.
5952 (gdb_pretty_print_disassembler): New class.
5953 * record-btrace.c (btrace_insn_history): Use
5954 gdb_pretty_print_disassembler.
5955
5956 2017-02-02 Pedro Alves <palves@redhat.com>
5957
5958 * ada-lang.c (type_as_string): Use string_file.
5959 * ada-valprint.c (ada_print_floating): Use string_file.
5960 * ada-varobj.c (ada_varobj_scalar_image)
5961 (ada_varobj_get_value_image): Use string_file.
5962 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
5963 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
5964 * breakpoint.c (update_inserted_breakpoint_locations)
5965 (insert_breakpoint_locations, reattach_breakpoints)
5966 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
5967 (print_it_watchpoint): Use string_file.
5968 (save_breakpoints): Use stdio_file.
5969 * c-exp.y (oper): Use string_file.
5970 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
5971 tee_file.
5972 (pop_output_files): Use delete.
5973 (handle_redirections): Use stdio_file and tee_file.
5974 * cli/cli-setshow.c (do_show_command): Use string_file.
5975 * compile/compile-c-support.c (c_compute_program): Use
5976 string_file.
5977 * compile/compile-c-symbols.c (generate_vla_size): Take a
5978 'string_file &' instead of a 'ui_file *'.
5979 (generate_c_for_for_one_variable): Take a 'string_file &' instead
5980 of a 'ui_file *'. Use string_file.
5981 (generate_c_for_variable_locations): Take a 'string_file &'
5982 instead of a 'ui_file *'.
5983 * compile/compile-internal.h (generate_c_for_for_one_variable):
5984 Take a 'string_file &' instead of a 'ui_file *'.
5985 * compile/compile-loc2c.c (push, pushf, unary, binary)
5986 (print_label, pushf_register_address, pushf_register)
5987 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
5988 'ui_file *'. Adjust.
5989 * compile/compile.c (compile_to_object): Use string_file.
5990 * compile/compile.h (compile_dwarf_expr_to_c)
5991 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
5992 'ui_file *'.
5993 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
5994 (replace_typedefs_qualified_name): Use string_file and
5995 obstack_copy0.
5996 * disasm.c (gdb_pretty_print_insn): Use string_file.
5997 (gdb_disassembly): Adjust reference the null_stream global.
5998 (do_ui_file_delete): Delete.
5999 (gdb_insn_length): Use null_stream.
6000 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
6001 * dwarf2loc.c (dwarf2_compile_property_to_c)
6002 (locexpr_generate_c_location, loclist_generate_c_location): Take a
6003 'string_file &' instead of a 'ui_file *'.
6004 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
6005 * dwarf2read.c (do_ui_file_peek_last): Delete.
6006 (dwarf2_compute_name): Use string_file.
6007 * event-top.c (gdb_setup_readline): Use stdio_file.
6008 * gdbarch.sh (verify_gdbarch): Use string_file.
6009 * gdbtypes.c (safe_parse_type): Use null_stream.
6010 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
6011 string_file.
6012 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
6013 'string_file *' instead of a 'ui_file *'.
6014 (gdbscm_arch_disassemble): Use string_file.
6015 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
6016 * guile/scm-ports.c (class ioscm_file_port): Now a class that
6017 inherits from ui_file.
6018 (ioscm_file_port_delete, ioscm_file_port_rewind)
6019 (ioscm_file_port_put): Delete.
6020 (ioscm_file_port_write): Rename to ...
6021 (ioscm_file_port::write): ... this. Remove file_port_magic
6022 checks.
6023 (ioscm_file_port_new): Delete.
6024 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
6025 ui_file_up.
6026 * guile/scm-type.c (tyscm_type_name): Use string_file.
6027 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
6028 Use string_file.
6029 * infcmd.c (print_return_value_1): Use string_file.
6030 * infrun.c (print_target_wait_results): Use string_file.
6031 * language.c (add_language): Use string_file.
6032 * location.c (explicit_to_string_internal): Use string_file.
6033 * main.c (captured_main_1): Use null_file.
6034 * maint.c (maintenance_print_architecture): Use stdio_file.
6035 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
6036 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
6037 event_channel>: Change type to mi_console_file pointer.
6038 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
6039 (mi_console_file_delete): Delete.
6040 (struct mi_console_file): Delete.
6041 (mi_console_file_magic): Delete.
6042 (mi_console_file_new): Delete.
6043 (mi_console_file::mi_console_file): New.
6044 (mi_console_file_delete): Delete.
6045 (mi_console_file_fputs): Delete.
6046 (mi_console_file::write): New.
6047 (mi_console_raw_packet): Delete.
6048 (mi_console_file::flush): New.
6049 (mi_console_file_flush): Delete.
6050 (mi_console_set_raw): Rename to ...
6051 (mi_console_file::set_raw): ... this.
6052 * mi/mi-console.h (class mi_console_file): New class.
6053 (mi_console_file_new, mi_console_set_raw): Delete.
6054 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
6055 (mi_set_logging): Use delete and tee_file. Adjust.
6056 * mi/mi-main.c (output_register): Use string_file.
6057 (mi_cmd_data_evaluate_expression): Use string_file.
6058 (mi_cmd_data_read_memory): Use string_file.
6059 (mi_cmd_execute, print_variable_or_computed): Use string_file.
6060 * mi/mi-out.c (mi_ui_out::main_stream): New.
6061 (mi_ui_out::rewind): Use main_stream and
6062 string_file.
6063 (mi_ui_out::put): Use main_stream and string_file.
6064 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
6065 Allocate a 'string_file' instead.
6066 (mi_out_new): Don't allocate a mem_fileopen stream here.
6067 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
6068 (mi_ui_out::main_stream): Declare method.
6069 * printcmd.c (eval_command): Use string_file.
6070 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
6071 * python/py-arch.c (archpy_disassemble): Use string_file.
6072 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
6073 * python/py-frame.c (frapy_str): Use string_file.
6074 * python/py-framefilter.c (py_print_type, py_print_single_arg):
6075 Use string_file.
6076 * python/py-type.c (typy_str): Use string_file.
6077 * python/py-unwind.c (unwind_infopy_str): Use string_file.
6078 * python/py-value.c (valpy_str): Use string_file.
6079 * record-btrace.c (btrace_insn_history): Use string_file.
6080 * regcache.c (regcache_print): Use stdio_file.
6081 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
6082 * remote.c (escape_buffer): Use string_file.
6083 * rust-lang.c (rust_get_disr_info): Use string_file.
6084 * serial.c (serial_open_ops_1): Use stdio_file.
6085 (do_serial_close): Use delete.
6086 * stack.c (print_frame_arg): Use string_file.
6087 (print_frame_args): Remove local mem_fileopen stream, not used.
6088 (print_frame): Use string_file.
6089 * symmisc.c (maintenance_print_symbols): Use stdio_file.
6090 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
6091 Take a 'string_file *' instead of a 'ui_file *'.
6092 * top.c (new_ui): Use stdio_file and stderr_file.
6093 (free_ui): Use delete.
6094 (execute_command_to_string): Use string_file.
6095 (quit_confirm): Use string_file.
6096 * tracepoint.c (collection_list::append_exp): Use string_file.
6097 * tui/tui-disasm.c (tui_disassemble): Use string_file.
6098 * tui/tui-file.c: Don't include "ui-file.h".
6099 (enum streamtype, struct tui_stream): Delete.
6100 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
6101 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
6102 (tui_file::tui_file): New method.
6103 (tui_file_fputs): Delete.
6104 (tui_file_get_strbuf): Delete.
6105 (tui_file::puts): New method.
6106 (tui_file_adjust_strbuf): Delete.
6107 (tui_file_flush): Delete.
6108 (tui_file::flush): New method.
6109 * tui/tui-file.h: Tweak intro comment.
6110 Include ui-file.h.
6111 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
6112 (tui_file_adjust_strbuf): Delete declarations.
6113 (class tui_file): New class.
6114 * tui/tui-io.c (tui_initialize_io): Use tui_file.
6115 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
6116 (tui_register_format): Use string_stream.
6117 * tui/tui-stack.c (tui_make_status_line): Use string_file.
6118 (tui_get_function_from_frame): Use string_file.
6119 * typeprint.c (type_to_string): Use string_file.
6120 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
6121 (null_stream): New global.
6122 (ui_file_delete): Delete.
6123 (ui_file::ui_file): New.
6124 (null_file_isatty): Delete.
6125 (ui_file::~ui_file): New.
6126 (null_file_rewind): Delete.
6127 (ui_file::printf): New.
6128 (null_file_put): Delete.
6129 (null_file_flush): Delete.
6130 (ui_file::putstr): New.
6131 (null_file_write): Delete.
6132 (ui_file::putstrn): New.
6133 (null_file_read): Delete.
6134 (ui_file::putc): New.
6135 (null_file_fputs): Delete.
6136 (null_file_write_async_safe): Delete.
6137 (ui_file::vprintf): New.
6138 (null_file_delete): Delete.
6139 (null_file::write): New.
6140 (null_file_fseek): Delete.
6141 (null_file::puts): New.
6142 (ui_file_data): Delete.
6143 (null_file::write_async_safe): New.
6144 (gdb_flush, ui_file_isatty): Adjust.
6145 (ui_file_put, ui_file_rewind): Delete.
6146 (ui_file_write): Adjust.
6147 (ui_file_write_for_put): Delete.
6148 (ui_file_write_async_safe, ui_file_read): Adjust.
6149 (ui_file_fseek): Delete.
6150 (fputs_unfiltered): Adjust.
6151 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
6152 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
6153 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
6154 (set_ui_file_data): Delete.
6155 (string_file::~string_file, string_file::write)
6156 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
6157 (do_ui_file_as_string, ui_file_as_string): Delete.
6158 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
6159 (struct mem_file): Delete.
6160 (mem_file_new): Delete.
6161 (stdio_file::stdio_file): New.
6162 (mem_file_delete): Delete.
6163 (stdio_file::stdio_file): New.
6164 (mem_fileopen): Delete.
6165 (stdio_file::~stdio_file): New.
6166 (mem_file_rewind): Delete.
6167 (stdio_file::set_stream): New.
6168 (mem_file_put): Delete.
6169 (stdio_file::open): New.
6170 (mem_file_write): Delete.
6171 (stdio_file_magic, struct stdio_file): Delete.
6172 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
6173 (stdio_file::flush): New.
6174 (stdio_file_read): Rename to ...
6175 (stdio_file::read): ... this. Adjust.
6176 (stdio_file_write): Rename to ...
6177 (stdio_file::write): ... this. Adjust.
6178 (stdio_file_write_async_safe): Rename to ...
6179 (stdio_file::write_async_safe) ... this. Adjust.
6180 (stdio_file_fputs): Rename to ...
6181 (stdio_file::puts) ... this. Adjust.
6182 (stdio_file_isatty): Delete.
6183 (stdio_file_fseek): Delete.
6184 (stdio_file::isatty): New.
6185 (stderr_file_write): Rename to ...
6186 (stderr_file::write) ... this. Adjust.
6187 (stderr_file_fputs): Rename to ...
6188 (stderr_file::puts) ... this. Adjust.
6189 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
6190 (stderr_file::stderr_file): New.
6191 (tee_file_magic): Delete.
6192 (struct tee_file): Delete.
6193 (tee_file::tee_file): New.
6194 (tee_file_new): Delete.
6195 (tee_file::~tee_file): New.
6196 (tee_file_delete): Delete.
6197 (tee_file_flush): Rename to ...
6198 (tee_file::flush): ... this. Adjust.
6199 (tee_file_write): Rename to ...
6200 (tee_file::write): ... this. Adjust.
6201 (tee_file::write_async_safe): New.
6202 (tee_file_fputs): Rename to ...
6203 (tee_file::puts): ... this. Adjust.
6204 (tee_file_isatty): Rename to ...
6205 (tee_file::isatty): ... this. Adjust.
6206 * ui-file.h (struct obstack, struct ui_file): Don't
6207 forward-declare.
6208 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
6209 (ui_file_write_ftype)
6210 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
6211 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
6212 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
6213 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
6214 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
6215 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
6216 (set_ui_file_fseek): Delete.
6217 (ui_file_data, ui_file_delete, ui_file_rewind)
6218 (struct ui_file): New.
6219 (ui_file_up): New.
6220 (class null_file): New.
6221 (null_stream): Declare.
6222 (ui_file_write_for_put, ui_file_put): Delete.
6223 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
6224 Delete.
6225 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
6226 (gdb_fopen, tee_file_new): Delete.
6227 (struct string_file): New.
6228 (struct stdio_file): New.
6229 (stdio_file_up): New.
6230 (struct stderr_file): New.
6231 (class tee_file): New.
6232 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
6233 of a 'ui_file *'. Adjust.
6234 * ui-out.h (class ui_out) <field_stream>: Likewise.
6235 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
6236 (null_stream): Delete.
6237 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
6238 Adjust.
6239 * utils.h (struct ui_file): Delete forward declaration..
6240 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
6241 (error_stream): Take a 'string_file &' instead of a
6242 'ui_file *'.
6243 * varobj.c (varobj_value_get_print_value): Use string_file.
6244 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
6245 * gdbarch.c: Regenerate.
6246
6247 2017-02-02 Pedro Alves <palves@redhat.com>
6248
6249 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
6250 (gdb_pretty_print_insn): ... this. Now a free function. Add back
6251 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
6252 Adjust to call gdb_print_insn instead of
6253 gdb_disassembler::print_insn.
6254 (dump_insns, do_mixed_source_and_assembly_deprecated)
6255 (do_mixed_source_and_assembly, do_assembly_only): Add back a
6256 'gdbarch' parameter. Remove gdb_disassembler parameter.
6257 (gdb_disassembly): Don't allocate a gdb_disassembler here.
6258 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
6259 declaration.
6260 (gdb_pretty_print_insn): Re-add declaration.
6261 * record-btrace.c (btrace_insn_history): Don't allocate a
6262 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
6263
6264 2017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
6265
6266 * disasm.h (gdb_disassembly): Remove file_string parameter.
6267 * disasm.c (gdb_disassembly): Likewise.
6268 * cli/cli-cmds.c (print_disassembly): Adapt.
6269 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
6270 * stack.c (do_gdb_disassembly): Likewise.
6271
6272 2017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
6273
6274 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
6275 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
6276 targets. And if the implicit value is longer than needed, extract
6277 the first bytes instead of the "least significant" ones.
6278
6279 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
6280
6281 * btrace.c (btrace_enable): Do not call btrace_add_pc for
6282 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
6283 (btrace_fetch): Assert can_access_registers_ptid.
6284 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
6285 validate_registers_access.
6286
6287 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
6288
6289 * gdbthread.h (can_access_registers_ptid): New.
6290 * thread.c (can_access_registers_ptid): New.
6291
6292 2017-02-01 Pedro Alves <palves@redhat.com>
6293
6294 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
6295
6296 2017-01-31 Pedro Alves <palves@redhat.com>
6297
6298 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
6299 Fix typos.
6300
6301 2017-01-31 Pedro Alves <palves@redhat.com>
6302
6303 * stack.c (print_frame_args): Remove local mem_fileopen stream,
6304 not used.
6305
6306 2017-01-31 Pedro Alves <palves@redhat.com>
6307
6308 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
6309
6310 2017-01-31 Pedro Alves <palves@redhat.com>
6311
6312 * common/scoped_restore.h
6313 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
6314 change the value's parameter type to T2.
6315 (make_scoped_restore): Likewise.
6316
6317 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6318 Richard Henderson <rth@redhat.com>
6319
6320 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
6321 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
6322 GS_BASE for older kernels.
6323 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
6324 GS_BASE for older kernels.
6325 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
6326 and GS_BASE to the offset table.
6327 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
6328 system register group.
6329 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
6330 for older kernels.
6331 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
6332 amd64 ABI.
6333 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
6334 AMD64_GSBASE_REGNUM.
6335 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
6336 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
6337 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
6338 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
6339 i386/64bit-segments.xml in those rules.
6340 * features/i386/64bit-segments.xml: New file.
6341 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
6342 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
6343 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
6344 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
6345 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
6346 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
6347 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
6348 * features/i386/amd64-avx-linux.c: Regenerated.
6349 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
6350 * features/i386/amd64-avx-mpx.c: Regenerated.
6351 * features/i386/amd64-avx512-linux.c: Regenerated.
6352 * features/i386/amd64-linux.c: Regenerated.
6353 * features/i386/amd64-mpx-linux.c: Regenerated.
6354 * features/i386/i386-avx-mpx-linux.c: Regenerated.
6355 * features/i386/i386-avx-mpx.c: Regenerated.
6356 * features/i386/x32-avx-linux.c: Regenerated.
6357 * features/i386/x32-avx512-linux.c: Regenerated.
6358 * regformats/i386/amd64-avx-linux.dat: Regenerated.
6359 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
6360 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
6361 * regformats/i386/amd64-linux.dat: Regenerated.
6362 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
6363 * regformats/i386/x32-avx-linux.dat: Regenerated.
6364 * regformats/i386/x32-avx512-linux.dat: Regenerated.
6365 * regformats/i386/x32-linux.dat: Regenerated.
6366
6367 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6368
6369 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
6370 Set to AMD64_NUM_REGS.
6371
6372 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6373
6374 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
6375 that checks validity of a register number.
6376
6377 2017-01-27 Kees Cook <keescook@google.com>
6378
6379 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
6380 fetch_fpregs if target has fpa registers.
6381 (arm_linux_store_inferior_registers): Call store_fpregs if target
6382 has fpa registers.
6383
6384 2017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
6385
6386 * cris-tdep.c (cris_gdbarch_init): Remove check for
6387 info.byte_order and force it to BFD_ENDIAN_LITTLE.
6388
6389 2017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
6390
6391 * corelow.c (get_core_register_section): Check for regset
6392 existence before checking for REGSET_VARIABLE_SIZE.
6393
6394 2017-01-26 Yao Qi <yao.qi@linaro.org>
6395 Pedro Alves <palves@redhat.com>
6396
6397 PR gdb/20939
6398 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
6399 call memory_error, save memaddr instead.
6400 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
6401 negative, cal memory_error.
6402 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
6403
6404 2017-01-26 Yao Qi <yao.qi@linaro.org>
6405
6406 * disasm-selftests.c (memory_error_test): New function.
6407 (_initialize_disasm_selftests): Register memory_error_test.
6408
6409 2017-01-26 Yao Qi <yao.qi@linaro.org>
6410
6411 * Makefile.in (SFILES): Add disasm-selftests.c and
6412 selftest-arch.c.
6413 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
6414 * disasm-selftests.c: New file.
6415 * selftest-arch.c: New file.
6416 * selftest-arch.h: New file.
6417
6418 2017-01-26 Yao Qi <yao.qi@linaro.org>
6419
6420 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
6421 to bfd_arch_mep. Don't return 0 if section is not
6422 found. Call print_insn_mep.
6423
6424 2017-01-26 Pedro Alves <palves@redhat.com>
6425 Yao Qi <yao.qi@linaro.org>
6426
6427 * arm-tdep.c: Include "disasm.h".
6428 (gdb_print_insn_arm): Update code to get gdbarch.
6429 * disasm.c (dis_asm_read_memory): Change it to
6430 gdb_disassembler::dis_asm_read_memory.
6431 (dis_asm_memory_error): Likewise.
6432 (dis_asm_print_address): Likewise.
6433 (gdb_pretty_print_insn): Change it to
6434 gdb_disassembler::pretty_print_insn.
6435 (dump_insns): Add one argument gdb_disassemlber. All
6436 callers updated.
6437 (do_mixed_source_and_assembly_deprecated): Likewise.
6438 (do_mixed_source_and_assembly): Likewise.
6439 (do_assembly_only): Likewise.
6440 (gdb_disassembler::gdb_disassembler): New.
6441 (gdb_disassembler::print_insn): New.
6442 * disasm.h (class gdb_disassembler): New.
6443 (gdb_pretty_print_insn): Remove declaration.
6444 (gdb_disassemble_info): Likewise.
6445 * guile/scm-disasm.c (class gdbscm_disassembler): New.
6446 (gdbscm_disasm_read_memory_worker): Update.
6447 (gdbscm_disasm_read_memory): Update.
6448 (gdbscm_disasm_memory_error): Remove.
6449 (gdbscm_disasm_print_address): Remove.
6450 (gdbscm_disassembler::gdbscm_disassembler): New.
6451 (gdbscm_print_insn_from_port): Update.
6452 * mips-tdep.c: Include disasm.h.
6453 (gdb_print_insn_mips): Update code to get gdbarch.
6454 * record-btrace.c (btrace_insn_history): Update.
6455 * spu-tdep.c: Include disasm.h.
6456 (struct spu_dis_asm_data): Remove.
6457 (struct spu_dis_asm_info): New.
6458 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
6459 SPU id.
6460 (gdb_print_insn_spu): Cast disassemble_info to
6461 spu_dis_asm_info.
6462
6463 2017-01-26 Yao Qi <yao.qi@linaro.org>
6464
6465 * disasm.c (do_ui_file_delete): Delete.
6466 (gdb_insn_length): Move code creating stream to ...
6467 * utils.c (null_stream): ... here. New function.
6468 * utils.h (null_stream): Declare.
6469
6470 2017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
6471
6472 * python/py-inferior.c (find_thread_object): Return directly
6473 from the loop. Remove "found" variable.
6474
6475 2017-01-21 Joel Brobecker <brobecker@adacore.com>
6476
6477 GDB 7.12.1 released.
6478
6479 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
6480
6481 * python/py-function.c (fnpy_call): Reorder declarations to have
6482 the gdbpy_enter object declared first.
6483 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
6484
6485 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
6486
6487 PR python/21068
6488 * python/python-internal.h (PyMem_RawMalloc): Define for
6489 Python < 3.4.
6490 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
6491 PyMem_RawMalloc instead of PyMem_Malloc.
6492
6493 2017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
6494 Luis Machado <lgustavo@codesourcery.com>
6495
6496 * NEWS (New commands): Mention flash-erase.
6497 (New MI commands): Mention target-flash-erase.
6498 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
6499 command.
6500 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
6501 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
6502 * target.c (flash_erase_command): New function.
6503 (initialize_targets): Add new flash-erase command.
6504 * target.h (flash_erase_command): New declaration.
6505
6506 2017-01-20 Joel Brobecker <brobecker@adacore.com>
6507
6508 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
6509 HAVE_SYS_PROCFS_H is defined.
6510
6511 2017-01-18 Alan Hayward <alan.hayward@arm.com>
6512
6513 * remote.c (struct cached_reg): Change data into a pointer.
6514 * (stop_reply_dtr): Free data pointers before deleting vector.
6515 (process_stop_reply): Likewise.
6516 (remote_parse_stop_reply): Allocate space for data
6517
6518 2017-01-18 Alan Hayward <alan.hayward@arm.com>
6519
6520 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
6521 MAX_REGISTER_SIZE.
6522 (amd64_pseudo_register_read_value): Likewise.
6523 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
6524 (store_register_using_P): Likewise.
6525 * regcache.c (regcache_xfer_part): Likewise.
6526
6527 2017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
6528
6529 Split real and pseudo registers.
6530 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
6531 (sparc32_pseudo_regnum): New enum.
6532 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
6533 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
6534 (SPARC32_CP0_REGISTERS): New macro.
6535 (sparc32_pseudo_register_name): New function.
6536 (sparc32_register_name): Use sparc32_pseudo_register_name.
6537 (sparc32_pseudo_register_type): New function.
6538 (sparc32_register_type): Use sparc32_pseudo_register_type.
6539 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
6540 pseudo register numbers.
6541 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
6542 (SPARC64_CP0_REGISTERS): New macro.
6543 (sparc64_pseudo_register_name): New function.
6544 (sparc64_register_name): Use sparc64_pseudo_register_name.
6545 (sparc64_pseudo_register_type): New function.
6546 (sparc64_register_type): Use sparc64_pseudo_register_type.
6547 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
6548 pseudo register numbers.
6549 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
6550 sparc64_store_arguments): Handle pseudo register numbers.
6551
6552 2017-01-13 Yao Qi <yao.qi@linaro.org>
6553
6554 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
6555 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
6556 output.
6557 (getpkt_or_notif_sane_1): Likewise.
6558
6559 2017-01-13 Yao Qi <yao.qi@linaro.org>
6560
6561 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
6562 of CC. Pass "-x c++-header" instead of "-x c".
6563
6564 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
6565
6566 * remote.c (remote_can_async_p): Update comment.
6567
6568 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
6569
6570 * linux-nat.c (linux_nat_can_async_p): Update comment.
6571
6572 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
6573
6574 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
6575
6576 2017-01-11 Simon Marchi <simon.marchi@ericsson.com>
6577
6578 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
6579
6580 2017-01-10 Tom Tromey <tom@tromey.com>
6581
6582 * python/py-type.c (typy_legacy_template_argument): Update.
6583 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
6584 ~demangle_parse_info): Declare new members.
6585 (cp_demangled_name_to_comp): Return unique_ptr.
6586 (cp_demangled_name_parse_free)
6587 (make_cleanup_cp_demangled_name_parse_free)
6588 (cp_new_demangle_parse_info): Remove.
6589 * cp-support.c (do_demangled_name_parse_free_cleanup)
6590 (make_cleanup_cp_demangled_name_parse_free): Remove.
6591 (inspect_type, cp_canonicalize_string_full)
6592 (cp_canonicalize_string): Update.
6593 (mangled_name_to_comp): Change return type.
6594 (cp_class_name_from_physname, method_name_from_physname)
6595 (cp_func_name, cp_remove_params): Update.
6596 * cp-name-parser.y (demangle_parse_info): New constructor, from
6597 cp_new_demangle_parse_info.
6598 (~demangle_parse_info): New destructor, from
6599 cp_demangled_name_parse_free.
6600 (cp_merge_demangle_parse_infos): Update.
6601 (cp_demangled_name_to_comp): Change return type.
6602
6603 2017-01-10 Tom Tromey <tom@tromey.com>
6604
6605 * top.c (prevent_dont_repeat): Change return type.
6606 * python/python.c (execute_gdb_command): Use std::string.
6607 Update.
6608 * guile/guile.c (gdbscm_execute_gdb_command): Update.
6609 * command.h (prevent_dont_repeat): Change return type.
6610 * breakpoint.c (bpstat_do_actions_1): Update.
6611
6612 2017-01-10 Tom Tromey <tom@tromey.com>
6613
6614 * value.h (scoped_value_mark::~scoped_value_mark): Call
6615 free_to_mark.
6616 (scoped_value_mark::free_to_mark): New method.
6617 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
6618 scoped_value_mark.
6619
6620 2017-01-10 Tom Tromey <tom@tromey.com>
6621
6622 * python/py-value.c (valpy_dereference, valpy_referenced_value)
6623 (valpy_reference_value, valpy_const_value, valpy_get_address)
6624 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
6625 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
6626 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
6627 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
6628 scoped_value_mark.
6629 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
6630 * value.h (scoped_value_mark): New class.
6631
6632 2017-01-10 Tom Tromey <tom@tromey.com>
6633
6634 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
6635 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
6636 * psymtab.c (discard_psymtabs_upto): Remove.
6637 (make_cleanup_discard_psymtabs): Remove.
6638 (struct psymtab_state): Remove.
6639
6640 2017-01-10 Tom Tromey <tom@tromey.com>
6641
6642 * record-full.c (record_full_save_cleanups): Remove.
6643 (record_full_save): Use gdb::unlinker.
6644 * gcore.c (do_bfd_delete_cleanup): Remove.
6645 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
6646 cleanups.
6647 * dwarf2read.c (unlink_if_set): Remove.
6648 (write_psymtabs_to_index): Use gdb::unlinker.
6649 * common/gdb_unlinker.h: New file.
6650
6651 2017-01-10 Tom Tromey <tom@tromey.com>
6652
6653 * windows-tdep.c (windows_xfer_shared_library): Update.
6654 * windows-nat.c (windows_make_so): Update.
6655 * utils.h (make_cleanup_bfd_unref): Remove.
6656 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
6657 * symfile.h (symfile_bfd_open)
6658 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
6659 * symfile.c (read_symbols, symbol_file_add)
6660 (separate_debug_file_exists): Update.
6661 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
6662 (generic_load, reread_symbols): Update.
6663 * symfile-mem.c (symbol_file_add_from_memory): Update.
6664 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
6665 (spu_symbol_file_add_from_memory): Update.
6666 * solist.h (struct target_so_ops) <bfd_open>: Return
6667 gdb_bfd_ref_ptr.
6668 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
6669 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
6670 gdb_bfd_ref_ptr.
6671 (solib_map_sections, reload_shared_libraries_1): Update.
6672 * solib-svr4.c (enable_break): Update.
6673 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
6674 * solib-frv.c (enable_break2): Update.
6675 * solib-dsbt.c (enable_break): Update.
6676 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
6677 gdb_bfd_ref_ptr.
6678 (darwin_solib_get_all_image_info_addr_at_init): Update.
6679 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
6680 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
6681 * record-full.c (record_full_save): Update.
6682 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
6683 * procfs.c (insert_dbx_link_bpt_in_file): Update.
6684 * minidebug.c (find_separate_debug_file_in_section): Return
6685 gdb_bfd_ref_ptr.
6686 * machoread.c (macho_add_oso_symfile): Change abfd to
6687 gdb_bfd_ref_ptr.
6688 (macho_symfile_read_all_oso): Update.
6689 (macho_check_dsym): Return gdb_bfd_ref_ptr.
6690 (macho_symfile_read): Update.
6691 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
6692 (jit_bfd_try_read_symtab): Update.
6693 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
6694 (gdb_bfd_openw, gdb_bfd_openr_iovec)
6695 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
6696 gdb_bfd_ref_ptr.
6697 (gdb_bfd_ref_policy): New struct.
6698 (gdb_bfd_ref_ptr): New typedef.
6699 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
6700 (gdb_bfd_openw, gdb_bfd_openr_iovec)
6701 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
6702 gdb_bfd_ref_ptr.
6703 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
6704 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
6705 (gcore_command): Update.
6706 * exec.c (exec_file_attach): Update.
6707 * elfread.c (elf_symfile_read): Update.
6708 * dwarf2read.c (dwarf2_get_dwz_file): Update.
6709 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
6710 (open_and_init_dwo_file): Update.
6711 (open_dwp_file): Return gdb_bfd_ref_ptr.
6712 (open_and_init_dwp_file): Update.
6713 * corelow.c (core_open): Update.
6714 * compile/compile-object-load.c (compile_object_load): Update.
6715 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
6716 * coffread.c (coff_symfile_read): Update.
6717 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
6718 gdb_bfd_ref_ptr. Rename.
6719 (dump_bfd_file, restore_command): Update.
6720 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
6721 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
6722 (find_separate_debug_file_by_buildid): Update.
6723
6724 2017-01-10 Tom Tromey <tom@tromey.com>
6725
6726 * common/gdb_ref_ptr.h: New file.
6727 * python/py-ref.h (struct gdbpy_ref_policy): New.
6728 (gdbpy_ref): Now a typedef.
6729
6730 2017-01-10 Tom Tromey <tom@tromey.com>
6731
6732 * utils.h (make_cleanup_htab_delete): Don't declare.
6733 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
6734 Remove.
6735 * linespec.c (decode_compound_collector): Add constructor,
6736 destructor.
6737 (lookup_prefix_sym): Remove cleanup.
6738 (symtab_collector): Add constructor, destructor.
6739 (collect_symtabs_from_filename): Remove cleanup.
6740 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
6741 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
6742 Use htab_up.
6743 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
6744 * dwarf2read.c (dw2_expand_symtabs_matching)
6745 (dw2_map_symbol_filenames, dwarf_decode_macros)
6746 (write_psymtabs_to_index): Use htab_up.
6747 * dwarf2loc.c (func_verify_no_selftailcall)
6748 (call_site_find_chain_1, func_verify_no_selftailcall)
6749 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
6750 std::vector, gdb::unique_xmalloc_ptr.
6751 (call_sitep): Remove typedef.
6752 (dwarf2_locexpr_baton_eval): Remove unused variable.
6753
6754 2017-01-10 Tom Tromey <tom@tromey.com>
6755
6756 * python/python-internal.h (make_cleanup_py_decref)
6757 (make_cleanup_py_xdecref): Don't declare.
6758 * python/py-utils.c (py_decref, make_cleanup_py_decref)
6759 (py_xdecref, make_cleanup_py_xdecref): Remove.
6760
6761 2017-01-10 Tom Tromey <tom@tromey.com>
6762
6763 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
6764 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
6765
6766 2017-01-10 Tom Tromey <tom@tromey.com>
6767
6768 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
6769
6770 2017-01-10 Tom Tromey <tom@tromey.com>
6771
6772 * python/py-utils.c (unicode_to_encoded_string)
6773 (python_string_to_target_string)
6774 (python_string_to_target_python_string)
6775 (python_string_to_host_string, gdbpy_obj_to_string)
6776 (get_addr_from_python): Use gdbpy_ref.
6777
6778 2017-01-10 Tom Tromey <tom@tromey.com>
6779
6780 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
6781 gdbpy_ref.
6782
6783 2017-01-10 Tom Tromey <tom@tromey.com>
6784
6785 * python/python.c (eval_python_command, gdbpy_decode_line)
6786 (gdbpy_run_events, gdbpy_start_type_printers)
6787 (gdbpy_apply_type_printers): Use gdbpy_ref.
6788
6789 2017-01-10 Tom Tromey <tom@tromey.com>
6790
6791 * python/py-param.c (get_doc_string, compute_enum_values): Use
6792 gdbpy_ref.
6793
6794 2017-01-10 Tom Tromey <tom@tromey.com>
6795
6796 * python/py-inferior.c (find_thread_object, build_inferior_list):
6797 Use gdbpy_ref.
6798
6799 2017-01-10 Tom Tromey <tom@tromey.com>
6800
6801 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
6802
6803 2017-01-10 Tom Tromey <tom@tromey.com>
6804
6805 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
6806 gdbpy_ref.
6807
6808 2017-01-10 Tom Tromey <tom@tromey.com>
6809
6810 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
6811 extra incref.
6812 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
6813 Use gdbpy_ref.
6814
6815 2017-01-10 Tom Tromey <tom@tromey.com>
6816
6817 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
6818 gdbpy_ref.
6819
6820 2017-01-10 Tom Tromey <tom@tromey.com>
6821
6822 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
6823 decref results of PyArg_ParseTupleAndKeywords.
6824
6825 2017-01-10 Tom Tromey <tom@tromey.com>
6826
6827 * python/python.c (python_run_simple_file): Use
6828 unique_xmalloc_ptr, gdbpy_ref.
6829
6830 2017-01-10 Tom Tromey <tom@tromey.com>
6831
6832 * python/py-prettyprint.c (print_stack_unless_memory_error)
6833 (print_string_repr, print_children): Use gdbpy_ref.
6834 (dummy_python_frame): New class.
6835 (dummy_python_frame::dummy_python_frame): Rename from
6836 push_dummy_python_frame.
6837 (py_restore_tstate): Remove.
6838
6839 2017-01-10 Tom Tromey <tom@tromey.com>
6840
6841 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
6842
6843 2017-01-10 Tom Tromey <tom@tromey.com>
6844
6845 * python/python.c (ensure_python_env, restore_python_env):
6846 Remove.
6847 * python/python-internal.h (ensure_python_env): Don't declare.
6848 * varobj.h (varobj_ensure_python_env): Don't declare.
6849 * varobj.c (varobj_ensure_python_env): Remove.
6850
6851 2017-01-10 Tom Tromey <tom@tromey.com>
6852
6853 * varobj.c (varobj_value_get_print_value): Use
6854 gdbpy_enter_varobj.
6855
6856 2017-01-10 Tom Tromey <tom@tromey.com>
6857
6858 * python/py-prettyprint.c (print_string_repr, print_children):
6859 Update.
6860 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
6861 of "encoding".
6862 * varobj.c (varobj_value_get_print_value): Update.
6863 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
6864
6865 2017-01-10 Tom Tromey <tom@tromey.com>
6866
6867 * varobj.c (varobj_get_display_hint)
6868 (dynamic_varobj_has_child_method, install_new_value_visualizer)
6869 (varobj_set_visualizer, free_variable): Use
6870 gdbpy_enter_varobj.
6871
6872 2017-01-10 Tom Tromey <tom@tromey.com>
6873
6874 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
6875 (do_finish_initialization): New function. Use gdbpy_ref.
6876 (gdbpy_finish_initialization): Use gdbpy_enter. Call
6877 do_finish_initialization.
6878
6879 2017-01-10 Tom Tromey <tom@tromey.com>
6880
6881 * python/py-param.c (get_set_value, get_show_value): Use
6882 gdbpy_enter, gdbpy_ref.
6883
6884 2017-01-10 Tom Tromey <tom@tromey.com>
6885
6886 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
6887
6888 2017-01-10 Tom Tromey <tom@tromey.com>
6889
6890 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
6891
6892 2017-01-10 Tom Tromey <tom@tromey.com>
6893
6894 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
6895 Use gdbpy_enter_varobj.
6896
6897 2017-01-10 Tom Tromey <tom@tromey.com>
6898
6899 * varobj.c (gdbpy_enter_varobj): New constructor.
6900 * python/python-internal.h (gdbpy_enter_varobj): New class.
6901 * python/py-varobj.c (py_varobj_get_iterator): Use
6902 gdbpy_enter_varobj.
6903
6904 2017-01-10 Tom Tromey <tom@tromey.com>
6905
6906 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
6907 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
6908 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
6909 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
6910 unique_xmalloc_ptr.
6911 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
6912
6913 2017-01-10 Tom Tromey <tom@tromey.com>
6914
6915 * python/py-xmethods.c (invoke_match_method): Use
6916 gdbpy_ref.
6917
6918 2017-01-10 Tom Tromey <tom@tromey.com>
6919
6920 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
6921 gdbpy_enter, gdbpy_ref.
6922
6923 2017-01-10 Tom Tromey <tom@tromey.com>
6924
6925 * python/python.c (python_interactive_command): Use gdbpy_enter.
6926
6927 2017-01-10 Tom Tromey <tom@tromey.com>
6928
6929 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
6930 gdbpy_ref.
6931
6932 2017-01-10 Tom Tromey <tom@tromey.com>
6933
6934 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
6935 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
6936
6937 2017-01-10 Tom Tromey <tom@tromey.com>
6938
6939 * utils.h (htab_deleter): New struct.
6940 (htab_up): New typedef.
6941 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
6942 gdbpy_enter, gdbpy_ref, htab_up.
6943
6944 2017-01-10 Tom Tromey <tom@tromey.com>
6945
6946 * python/py-unwind.c (pending_frame_invalidate): Remove.
6947 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
6948
6949 2017-01-10 Tom Tromey <tom@tromey.com>
6950
6951 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
6952 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
6953
6954 2017-01-10 Tom Tromey <tom@tromey.com>
6955
6956 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
6957
6958 2017-01-10 Tom Tromey <tom@tromey.com>
6959
6960 * python/python.c (gdbpy_eval_from_control_command)
6961 (gdbpy_source_script, gdbpy_run_events)
6962 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
6963 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
6964 gdbpy_enter.
6965
6966 2017-01-10 Tom Tromey <tom@tromey.com>
6967
6968 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
6969
6970 2017-01-10 Tom Tromey <tom@tromey.com>
6971
6972 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
6973
6974 2017-01-10 Tom Tromey <tom@tromey.com>
6975
6976 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6977 (python_on_inferior_call_pre, python_on_inferior_call_post)
6978 (python_on_memory_change, python_on_register_change)
6979 (python_inferior_exit, python_new_objfile, add_thread_object)
6980 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
6981
6982 2017-01-10 Tom Tromey <tom@tromey.com>
6983
6984 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
6985 (bpfinishpy_handle_exit): Use gdbpy_enter.
6986
6987 2017-01-10 Tom Tromey <tom@tromey.com>
6988
6989 * python/py-cmd.c (cmdpy_destroyer)
6990 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
6991 gdbpy_enter.
6992
6993 2017-01-10 Tom Tromey <tom@tromey.com>
6994
6995 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
6996 gdbpy_enter.
6997 (gdbpy_breakpoint_has_cond): Likewise.
6998
6999 2017-01-10 Tom Tromey <tom@tromey.com>
7000
7001 * python/python.c (gdbpy_enter): New constructor.
7002 (~gdbpy_enter): New destructor.
7003 (restore_python_env, ensure_python_env): Rewrite.
7004 * python/python-internal.h (gdbpy_enter): New class.
7005
7006 2017-01-10 Tom Tromey <tom@tromey.com>
7007
7008 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
7009
7010 2017-01-10 Tom Tromey <tom@tromey.com>
7011
7012 * python/py-value.c (value_has_field, get_field_flag)
7013 (get_field_type, valpy_getitem, convert_value_from_python): Use
7014 gdbpy_ref.
7015
7016 2017-01-10 Tom Tromey <tom@tromey.com>
7017
7018 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
7019 gdbpy_ref.
7020
7021 2017-01-10 Tom Tromey <tom@tromey.com>
7022
7023 * python/py-prettyprint.c (search_pp_list)
7024 (find_pretty_printer_from_objfiles)
7025 (find_pretty_printer_from_progspace)
7026 (find_pretty_printer_from_gdb, find_pretty_printer)
7027 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
7028 gdbpy_ref.
7029
7030 2017-01-10 Tom Tromey <tom@tromey.com>
7031
7032 * python/py-param.c (call_doc_function): Use gdbpy_ref.
7033
7034 2017-01-10 Tom Tromey <tom@tromey.com>
7035
7036 * python/py-linetable.c (build_line_table_tuple_from_pcs)
7037 (ltpy_get_all_source_lines): Use gdbpy_ref.
7038
7039 2017-01-10 Tom Tromey <tom@tromey.com>
7040
7041 * python/py-framefilter.c (extract_sym, extract_value)
7042 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
7043 gdbpy_ref.
7044
7045 2017-01-10 Tom Tromey <tom@tromey.com>
7046
7047 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
7048
7049 2017-01-10 Tom Tromey <tom@tromey.com>
7050
7051 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
7052
7053 2017-01-10 Tom Tromey <tom@tromey.com>
7054
7055 * python/py-function.c (convert_values_to_python, fnpy_init): Use
7056 gdbpy_ref.
7057
7058 2017-01-10 Tom Tromey <tom@tromey.com>
7059
7060 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
7061
7062 2017-01-10 Tom Tromey <tom@tromey.com>
7063
7064 * python/py-type.c (convert_field, make_fielditem, typy_fields)
7065 (typy_range): Use gdbpy_ref.
7066
7067 2017-01-10 Tom Tromey <tom@tromey.com>
7068
7069 * python/py-threadevent.c (create_thread_event_object): Use
7070 gdbpy_ref.
7071 * python/py-stopevent.c (create_stop_event_object): Simplify.
7072 (emit_stop_event): Use gdbpy_ref.
7073 * python/py-signalevent.c (create_signal_event_object): Use
7074 gdbpy_ref.
7075 * python/py-newobjfileevent.c (create_new_objfile_event_object)
7076 (emit_new_objfile_event, create_clear_objfiles_event_object)
7077 (emit_clear_objfiles_event): Use gdbpy_ref.
7078 * python/py-infevents.c (create_inferior_call_event_object)
7079 (create_register_changed_event_object)
7080 (create_memory_changed_event_object, emit_inferior_call_event)
7081 (emit_memory_changed_event, emit_register_changed_event): Use
7082 gdbpy_ref.
7083 * python/py-exitedevent.c (create_exited_event_object)
7084 (emit_exited_event): Use gdbpy_ref.
7085 * python/py-event.h (evpy_emit_event): Remove
7086 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
7087 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
7088 * python/py-continueevent.c (emit_continue_event): Use
7089 gdbpy_ref.
7090 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7091 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7092 gdbpy_ref.
7093 * python/py-bpevent.c (create_breakpoint_event_object): Use
7094 gdbpy_ref.
7095
7096 2017-01-10 Tom Tromey <tom@tromey.com>
7097
7098 * python/py-ref.h: New file.
7099
7100 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
7101
7102 * cli-out.c (cli_ui_out::do_redirect): Change return type to
7103 void.
7104 * cli-out.h (cli_ui_out::do_redirect): Likewise.
7105 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
7106 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
7107 * ui-out.c (ui_out::redirect): Likewise.
7108 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
7109 * cli/cli-logging.c (set_logging_redirect): Update call site of
7110 ui_out::redirect.
7111 (handle_redirections): Likewise.
7112 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
7113 * top.c (execute_command_to_string): Likewise.
7114 * utils.c (do_ui_out_redirect_pop): Likewise.
7115
7116 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
7117
7118 * stack.c (_initialize_stack): Update "frame" command help message.
7119
7120 2017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
7121
7122 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
7123
7124 2017-01-06 Yao Qi <yao.qi@linaro.org>
7125
7126 * x86-linux-nat.h: Include gdb_proc_service.h.
7127
7128 2017-01-06 Yao Qi <yao.qi@linaro.org>
7129
7130 * ser-base.h: Include serial.h.
7131
7132 2017-01-06 Yao Qi <yao.qi@linaro.org>
7133
7134 * ppc-linux-tdep.h: Include ppc-tdep.h.
7135
7136 2017-01-06 Yao Qi <yao.qi@linaro.org>
7137
7138 * nat/amd64-linux-siginfo.h: Include signal.h.
7139
7140 2017-01-06 Yao Qi <yao.qi@linaro.org>
7141
7142 * nat/aarch64-linux-hw-point.h: Include break-common.h.
7143
7144 2017-01-06 Yao Qi <yao.qi@linaro.org>
7145
7146 * mi/mi-parse.h: Include mi-cmds.h.
7147
7148 2017-01-06 Yao Qi <yao.qi@linaro.org>
7149
7150 * inf-loop.c: Don't include "target.h".
7151 * inf-loop.h: Include it here.
7152
7153 2017-01-06 Yao Qi <yao.qi@linaro.org>
7154
7155 * dfp.h: Include "dboulest.h" and "expression.h".
7156
7157 2017-01-06 Yao Qi <yao.qi@linaro.org>
7158
7159 * ax-gdb.h: Include "ax.h".
7160
7161 2017-01-06 Yao Qi <yao.qi@linaro.org>
7162
7163 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
7164 with nat/gdb_ptrace.h.
7165
7166 2017-01-05 Yao Qi <yao.qi@linaro.org>
7167
7168 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
7169 new line.
7170 (mips64_fbsd_sigframe_init): Likewise.
7171
7172 2017-01-04 John Baldwin <jhb@FreeBSD.org>
7173
7174 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
7175 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
7176
7177 2017-01-04 John Baldwin <jhb@FreeBSD.org>
7178
7179 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
7180 * NEWS: Mention new FreeBSD/mips native configuration.
7181 * config/mips/fbsd.mh: New file.
7182 * configure.host: Add mips*-*-freebsd*.
7183 * mips-fbsd-nat.c: New file.
7184
7185 2017-01-04 John Baldwin <jhb@FreeBSD.org>
7186
7187 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
7188 (ALLDEPFILES): Add mips-fbsd-tdep.c.
7189 * NEWS: Mention new FreeBSD/mips target.
7190 * configure.tgt: Add mips*-*-freebsd*.
7191 * mips-fbsd-tdep.c: New file.
7192 * mips-fbsd-tdep.h: New file.
7193
7194 2017-01-04 Yao Qi <yao.qi@linaro.org>
7195
7196 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
7197 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
7198
7199 2017-01-01 Joel Brobecker <brobecker@adacore.com>
7200
7201 Update copyright year range in all GDB files.
7202
7203 2017-01-01 Joel Brobecker <brobecker@adacore.com>
7204
7205 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
7206
7207 For older changes see ChangeLog-2016.
7208 \f
7209 Local Variables:
7210 mode: change-log
7211 left-margin: 8
7212 fill-column: 74
7213 version-control: never
7214 coding: utf-8
7215 End: