]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog
Remove last cleanups from d-exp.y
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
1 2017-09-05 Tom Tromey <tom@tromey.com>
2
3 * d-exp.y (PrimaryExpression): Use std::string.
4 (d_parse): Don't create a cleanup.
5
6 2017-09-05 Tom Tromey <tom@tromey.com>
7
8 * utils.c (do_clear_parser_state): Remove.
9 (make_cleanup_clear_parser_state): Remove.
10 * p-exp.y (pascal_parse): Use scoped_restore.
11 * m2-exp.y (m2_parse): Use scoped_restore.
12 * f-exp.y (f_parse): Use scoped_restore.
13 * d-exp.y (d_parse): Use scoped_restore.
14 * c-exp.y (c_parse): Use scoped_restore.
15 * ada-exp.y (ada_parse): Use scoped_restore.
16 * utils.h (make_cleanup_clear_parser_state): Remove.
17
18 2017-09-06 Keith Seitz <keiths@redhat.com>
19
20 * dwarf2read.c (dw2_linkage_name_attr): New function.
21 (dw2_linkage_name): New function.
22 (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
23 (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
24 (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
25
26 2017-09-06 Kamil Rytarowski <n54@gmx.com>
27
28 * config/djgpp/djconfig.sh: Correct shell portability issue.
29
30 2017-09-06 Kamil Rytarowski <n54@gmx.com>
31
32 * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
33
34 2017-09-06 John Baldwin <jhb@FreeBSD.org>
35
36 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
37 * NEWS: Mention new FreeBSD/mips native configuration.
38 * configure.host: Add aarch64*-*-freebsd*.
39 * configure.nat: Likewise.
40 * aarch64-fbsd-nat.c: New file.
41
42 2017-09-06 John Baldwin <jhb@FreeBSD.org>
43
44 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
45 (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
46 * NEWS: Mention new FreeBSD/aarch64 target.
47 * configure.tgt: Add aarch64*-*-freebsd*.
48 * aarch64-fbsd-tdep.c: New file.
49 * aarch64-fbsd-tdep.h: New file.
50
51 2017-09-06 Kamil Rytarowski <n54@gmx.com>
52
53 * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
54
55 2017-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
56
57 * parse.c (find_minsym_type_and_address): Don't relocate addresses
58 of TLS symbols.
59
60 2017-09-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
61
62 * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
63 call.
64
65 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
66
67 * infrun.c (follow_exec): Call add_thread after
68 target_find_description.
69
70 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
71
72 * infrun.c (handle_inferior_event_1): When exec'ing, read
73 stop_pc after follow_exec.
74
75 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
76
77 * remote.c (process_g_packet): Update error message.
78
79 2017-09-05 Yao Qi <yao.qi@linaro.org>
80
81 * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
82 targets.
83
84 2017-09-05 Pedro Alves <palves@redhat.com>
85
86 * eval.c (eval_call, evaluate_funcall): New functions, factored
87 out from ...
88 (evaluate_subexp_standard): ... this.
89
90 2017-09-05 Yao Qi <yao.qi@linaro.org>
91
92 * amd64-tdep.c (amd64_target_description): Create target
93 descriptions.
94 (_initialize_amd64_tdep): Don't call functions
95 initialize_tdesc_amd64_*. Add self tests.
96 * arch/amd64.c (amd64_create_target_description): Add parameter
97 is_linux. Call set_tdesc_osabi if is_linux is true.
98 * arch/amd64.h (amd64_create_target_description): Update the
99 declaration.
100 * arch/i386.c (i386_create_target_description): Add parameter
101 is_linux. Call set_tdesc_osabi if is_linux is true.
102 * arch/i386.h (i386_create_target_description): Update
103 declaration.
104 * configure.tgt: Add i386.o to gdb_target_obs.
105 * features/Makefile (XMLTOC): Remove i386/*.xml.
106 * features/i386/amd64-avx-avx512.c: Remove.
107 * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
108 * features/i386/amd64-avx-mpx.c: Remove.
109 * features/i386/amd64-avx.c: Remove.
110 * features/i386/amd64-mpx.c: Remove.
111 * features/i386/amd64.c: Remove.
112 * features/i386/i386-avx-avx512.c: Remove.
113 * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
114 * features/i386/i386-avx-mpx.c: Remove.
115 * features/i386/i386-avx.c: Remove.
116 * features/i386/i386-mmx.c: Remove.
117 * features/i386/i386-mpx.c: Remove.
118 * features/i386/i386.c: Remove.
119 * i386-tdep.c: Don't include features/i386/i386*.c., include
120 target-descriptions.h and arch/i386.h.
121 (i386_target_description): Create target descriptions.
122 (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
123 functions. Do self tests.
124
125 2017-09-05 Yao Qi <yao.qi@linaro.org>
126
127 * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
128 * features/i386/amd64-avx-avx512-linux.c: Removed.
129 * features/i386/amd64-avx-linux.c: Removed.
130 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
131 * features/i386/amd64-avx-mpx-linux.c: Removed.
132 * features/i386/amd64-linux.c: Removed.
133 * features/i386/amd64-mpx-linux.c: Removed.
134 * features/i386/x32-avx-avx512-linux.c: Removed.
135 * features/i386/x32-avx-linux.c: Removed.
136 * features/i386/x32-linux.c: Removed.
137
138 2017-09-05 Yao Qi <yao.qi@linaro.org>
139
140 * amd64-linux-tdep.c: Include arch/amd64.h. Don't include
141 features/i386/*.c.
142 (amd64_linux_read_description): Call
143 amd64_create_target_description.
144 * arch/amd64.c: New file.
145 * arch/amd64.h: New file.
146 * configure.tgt (x86_64-*-linux*): Append amd64.o.
147 * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
148
149 2017-09-05 Yao Qi <yao.qi@linaro.org>
150
151 * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
152 x32-XXX-linux.c. Include 64bit-XX.c and x32-XX.c.
153 (amd64_linux_read_description): Create target descriptions.
154 (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
155 functions. Add unit tests.
156 * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
157 x32-core.xml.
158 * features/i386/64bit-avx.c: Generated.
159 * features/i386/64bit-avx512.c: Generated.
160 * features/i386/64bit-core.c: Generated.
161 * features/i386/64bit-linux.c: Generated.
162 * features/i386/64bit-mpx.c: Generated.
163 * features/i386/64bit-pkeys.c: Generated.
164 * features/i386/64bit-segments.c: Generated.
165 * features/i386/64bit-sse.c: Generated.
166 * features/i386/x32-core.c: Generated.
167 * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
168 c files for amd64-linux and x32-linux.
169
170 2017-09-05 Yao Qi <yao.qi@linaro.org>
171
172 * amd64-linux-tdep.c (amd64_linux_read_description): New
173 function.
174 (amd64_linux_core_read_description): Call
175 amd64_linux_read_description.
176 (amd64_linux_init_abi): Likewise.
177 (amd64_x32_linux_init_abi): Likewise.
178 * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
179 * x86-linux-nat.c (x86_linux_read_description): Call
180 amd64_linux_read_description.
181
182 2017-09-05 Yao Qi <yao.qi@linaro.org>
183
184 * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
185 comments.
186
187 2017-09-05 Yao Qi <yao.qi@linaro.org>
188
189 * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
190 * features/i386/i386-avx-avx512-linux.c: Remove.
191 * features/i386/i386-avx-linux.c: Remove.
192 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
193 * features/i386/i386-avx-mpx-linux.c: Remove.
194 * features/i386/i386-linux.c: Remove.
195 * features/i386/i386-mmx-linux.c: Remove.
196 * features/i386/i386-mpx-linux.c: Remove.
197
198 2017-09-05 Yao Qi <yao.qi@linaro.org>
199
200 * Makefile.in (ALL_TARGET_OBS): Add i386.o.
201 (SFILES): Add arch/i386.c.
202 (HFILES_NO_SRCDIR): Add arch/i386.h.
203 * arch/i386.c: New file.
204 * arch/i386.h: New file.
205 * arch/tdesc.h (allocate_target_description): Declare.
206 (set_tdesc_architecture): Declare.
207 (set_tdesc_osabi): Declare.
208 * configure.tgt (i[34567]86-*-linux*): Add i386.o.
209 * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
210 include arch/i386.h.
211 (i386_linux_read_description): Remove code and call
212 i386_create_target_description.
213 (set_tdesc_architecture): New function.
214 (set_tdesc_osabi): New function.
215 * target-descriptions.h (allocate_target_description): Remove.
216
217 2017-09-05 Yao Qi <yao.qi@linaro.org>
218
219 * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
220 * target-descriptions.c (tdesc_create_feature): Likewise, and
221 adjust code.
222 * features/i386/32bit-avx.c: Re-generated.
223 * features/i386/32bit-avx512.c: Re-generated.
224 * features/i386/32bit-core.c: Re-generated.
225 * features/i386/32bit-linux.c: Re-generated.
226 * features/i386/32bit-mpx.c: Re-generated.
227 * features/i386/32bit-pkeys.c: Re-generated.
228 * features/i386/32bit-sse.c: Re-generated.
229
230 2017-09-05 Yao Qi <yao.qi@linaro.org>
231
232 * regformats/regdef.h (struct reg): Override operator == and !=.
233
234 2017-09-05 Yao Qi <yao.qi@linaro.org>
235
236 * arch/tdesc.h: New file.
237 * regformats/regdat.sh: Generate code using tdesc_create_reg.
238 * target-descriptions.c: Update comments.
239 * target-descriptions.h: Include "arch/tdesc.h". Remove the
240 declarations.
241 * features/i386/32bit-avx.c: Re-generated.
242 * features/i386/32bit-avx512.c: Re-generated.
243 * features/i386/32bit-core.c: Re-generated.
244 * features/i386/32bit-linux.c: Re-generated.
245 * features/i386/32bit-mpx.c: Re-generated.
246 * features/i386/32bit-pkeys.c: Re-generated.
247 * features/i386/32bit-sse.c: Re-generated.
248
249 2017-09-05 Yao Qi <yao.qi@linaro.org>
250
251 * regformats/regdat.sh: Update generated code.
252
253 2017-09-05 Yao Qi <yao.qi@linaro.org>
254
255 * regformats/regdat.sh: Adjust code order.
256
257 2017-09-05 Simon Marchi <simon.marchi@ericsson.com>
258
259 * expprint.c (dump_subexp_body_standard): Use constant format
260 string in fprintf_filtered call.
261
262 2017-09-04 John Baldwin <jhb@FreeBSD.org>
263
264 * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
265 NetBSD/i386.
266 * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
267
268 2017-09-04 John Baldwin <jhb@FreeBSD.org>
269
270 * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
271
272 2017-09-04 John Baldwin <jhb@FreeBSD.org>
273
274 * bsd-kvm.o: Define _KMEMUSER.
275 * configure.ac: Define _KMEMUSER when checking for "struct lwp".
276 * configure: Regenerate.
277
278 2017-09-04 John Baldwin <jhb@FreeBSD.org>
279
280 * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
281 * i386-fbsd-nat.c: Likewise.
282
283 2017-09-04 John Baldwin <jhb@FreeBSD.org>
284
285 * unittests/array-view-selftests.c: Add include of <array>.
286
287 2017-09-04 John Baldwin <jhb@FreeBSD.org>
288
289 * spu-tdep.c (flush_ea_cache): Add missing argument to
290 call_function_by_hand.
291
292 2017-09-04 Pedro Alves <palves@redhat.com>
293
294 * NEWS (Safer support for debugging with no debug info): New.
295
296 2017-09-04 Pedro Alves <palves@redhat.com>
297
298 * c-exp.y (function_method, function_method_void): Add current
299 instance flags to TYPE_INSTANCE.
300 * dwarf2read.c (check_modifier): New.
301 (compute_delayed_physnames): Assert that only C++ adds delayed
302 physnames. Mark fn_fields as const/volatile depending on
303 physname.
304 * eval.c (make_params): New type_instance_flags parameter. Use
305 it as the new type's instance flags.
306 (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
307 flags element and pass it to make_params.
308 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
309 instance flags element.
310 (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
311 * gdbtypes.h: Include "enum-flags.h".
312 (type_instance_flags): New enum-flags type.
313 (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
314 (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
315 * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
316 (follow_type_instance_flags): New function.
317 (operator_check_standard) <TYPE_INSTANCE>: Adjust.
318 * parser-defs.h (follow_type_instance_flags): Declare.
319 * valops.c (value_struct_elt_for_reference): const/volatile must
320 match too.
321
322 2017-09-04 Pedro Alves <palves@redhat.com>
323
324 * cp-namespace.c (cp_search_static_and_baseclasses): Handle
325 function/method scopes; lookup the nested name as a function local
326 static variable.
327
328 2017-09-04 Pedro Alves <palves@redhat.com>
329
330 (%type <voidval>): Add function_method.
331 * c-exp.y (exp): New production for calls with no arguments.
332 (function_method, function_method_void_or_typelist): New
333 productions.
334 (exp): New production for "method()::static_var".
335 * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
336 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
337 Handle OP_FUNC_STATIC_VAR.
338 * parse.c (operator_length_standard):
339 Handle OP_FUNC_STATIC_VAR.
340
341 2017-09-04 Pedro Alves <palves@redhat.com>
342
343 * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
344 handling.
345 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
346 Ditto.
347 * parse.c (operator_length_standard, operator_check_standard):
348 Ditto.
349 * std-operator.def (UNOP_MEMVAL_TLS): Delete.
350
351 2017-09-04 Pedro Alves <palves@redhat.com>
352
353 * ax-gdb.c: Include "typeprint.h".
354 (gen_expr_for_cast): New function.
355 (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
356 <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
357 type is unknown.
358 * dwarf2read.c (new_symbol_full): Fallback to int instead of
359 nodebug_data_symbol.
360 * eval.c: Include "typeprint.h".
361 (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
362 Error out if symbol has unknown type.
363 <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
364 evaluate_subexp_for_cast.
365 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
366 OP_VAR_MSYM_VALUE.
367 (evaluate_subexp_for_cast): New function.
368 * gdbtypes.c (init_nodebug_var_type): New function.
369 (objfile_type): Use it to initialize types of variables with no
370 debug info.
371 * typeprint.c (error_unknown_type): New.
372 * typeprint.h (error_unknown_type): New declaration.
373 * compile/compile-c-types.c (convert_type_basic): Handle
374 TYPE_CODE_ERROR; warn and fallback to int for variables with
375 unknown type.
376
377 2017-09-04 Pedro Alves <palves@redhat.com>
378
379 * eval.c (evaluate_var_value): New function, factored out from ...
380 (evaluate_subexp_standard): ... here.
381
382 2017-09-04 Pedro Alves <palves@redhat.com>
383
384 * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
385 Remove useless assignments to 'op'.
386
387 2017-09-04 Pedro Alves <palves@redhat.com>
388
389 * eval.c (eval_skip_value): New function.
390 (evaluate_subexp_standard): Use it.
391
392 2017-09-04 Pedro Alves <palves@redhat.com>
393
394 * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
395 function name from symbol/minsym and pass it to
396 error_call_unknown_return_type.
397
398 2017-09-04 Pedro Alves <palves@redhat.com>
399
400 * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
401 * ax-gdb.c (gen_msym_var_ref): New function.
402 (gen_expr): Handle OP_VAR_MSYM_VALUE.
403 * eval.c (evaluate_var_msym_value): New function.
404 * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
405 <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
406 to call_function_by_hand.
407 * expprint.c (print_subexp_standard, dump_subexp_body_standard):
408 Handle OP_VAR_MSYM_VALUE.
409 (union exp_element) <msymbol>: New field.
410 * minsyms.h (struct type): Forward declare.
411 (find_minsym_type_and_address): Declare.
412 * parse.c (write_exp_elt_msym): New function.
413 (write_exp_msymbol): Delete, refactored as ...
414 (find_minsym_type_and_address): ... this new function.
415 (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
416 (operator_length_standard, operator_check_standard): Handle
417 OP_VAR_MSYM_VALUE.
418 * std-operator.def (OP_VAR_MSYM_VALUE): New.
419
420 2017-09-04 Pedro Alves <palves@redhat.com>
421
422 * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
423 TYPE_GNU_IFUNC specially here. Throw error if return type is
424 unknown.
425 * ada-typeprint.c (print_func_type): Handle functions with unknown
426 return type.
427 * c-typeprint.c (c_type_print_base): Handle functions and methods
428 with unknown return type.
429 * compile/compile-c-symbols.c (convert_symbol_bmsym)
430 <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
431 * compile/compile-c-types.c: Include "objfiles.h".
432 (convert_func): For functions with unknown return type, warn and
433 default to int.
434 * compile/compile-object-run.c (compile_object_run): Adjust call
435 to call_function_by_hand_dummy.
436 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
437 call_function_by_hand.
438 * eval.c (evaluate_subexp_standard): Adjust calls to
439 call_function_by_hand. Handle functions and methods with unknown
440 return type. Pass expect_type to call_function_by_hand.
441 * f-typeprint.c (f_type_print_base): Handle functions with unknown
442 return type.
443 * gcore.c (call_target_sbrk): Adjust call to
444 call_function_by_hand.
445 * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
446 return type instead of int. Make nodebug_text_gnu_ifunc_symbol be
447 an integer address type instead of nodebug.
448 * guile/scm-value.c (gdbscm_value_call): Adjust call to
449 call_function_by_hand.
450 * infcall.c (error_call_unknown_return_type): New function.
451 (call_function_by_hand): New "default_return_type" parameter.
452 Pass it down.
453 (call_function_by_hand_dummy): New "default_return_type"
454 parameter. Use it instead of defaulting to int. If there's no
455 default and the return type is unknown, throw an error. If
456 there's a default return type, and the called function has no
457 debug info, then assume the function is prototyped.
458 * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
459 New "default_return_type" parameter.
460 (error_call_unknown_return_type): New declaration.
461 * linux-fork.c (call_lseek): Cast return type of lseek.
462 (inferior_call_waitpid, checkpoint_command): Adjust calls to
463 call_function_by_hand.
464 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
465 calls to call_function_by_hand.
466 * m2-typeprint.c (m2_procedure): Handle functions with unknown
467 return type.
468 * objc-lang.c (lookup_objc_class, lookup_child_selector)
469 (value_nsstring, print_object_command): Adjust calls to
470 call_function_by_hand.
471 * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
472 functions with unknown return type.
473 (pascal_type_print_func_varspec_suffix): New function.
474 (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
475 TYPE_CODE_METHOD>: Use it.
476 * python/py-value.c (valpy_call): Adjust call to
477 call_function_by_hand.
478 * rust-lang.c (rust_evaluate_funcall): Adjust call to
479 call_function_by_hand.
480 * valarith.c (value_x_binop, value_x_unop): Adjust calls to
481 call_function_by_hand.
482 * valops.c (value_allocate_space_in_inferior): Adjust call to
483 call_function_by_hand.
484 * typeprint.c (type_print_unknown_return_type): New function.
485 * typeprint.h (type_print_unknown_return_type): New declaration.
486
487 2017-09-04 Pedro Alves <palves@redhat.com>
488
489 * gdbtypes.c (lookup_function_type_with_arguments): Mark function
490 types with more than one parameter as prototyped.
491
492 2017-09-04 Pedro Alves <palves@redhat.com>
493
494 * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
495 (disassemble_command): Use gdb_disassembly_flags instead of bare
496 int.
497 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
498 (dump_insns, do_mixed_source_and_assembly_deprecated)
499 (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
500 Use gdb_disassembly_flags instead of bare int.
501 * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
502 (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
503 (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
504 (DISASSEMBLY_SPECULATIVE): No longer macros. Instead they're...
505 (enum gdb_disassembly_flag): ... values of this new enumeration.
506 (gdb_disassembly_flags): Define.
507 (gdb_disassembly)
508 (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
509 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
510 gdb_disassembly_flags instead of bare int.
511 * record-btrace.c (btrace_insn_history)
512 (record_btrace_insn_history, record_btrace_insn_history_range)
513 (record_btrace_insn_history_from): Use gdb_disassembly_flags
514 instead of bare int.
515 * record.c (get_insn_history_modifiers, cmd_record_insn_history):
516 Use gdb_disassembly_flags instead of bare int.
517 * target-debug.h (target_debug_print_gdb_disassembly_flags):
518 Define.
519 * target-delegates.c: Regenerate.
520 * target.c (target_insn_history, target_insn_history_from)
521 (target_insn_history_range): Use gdb_disassembly_flags instead of
522 bare int.
523 * target.h: Include "disasm.h".
524 (struct target_ops) <to_insn_history, to_insn_history_from,
525 to_insn_history_range>: Use gdb_disassembly_flags instead of bare
526 int.
527 (target_insn_history, target_insn_history_from)
528 (target_insn_history_range): Use gdb_disassembly_flags instead of
529 bare int.
530
531 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
532
533 * cli/cli-script.c (build_command_line): For if/while commands,
534 check whether args is empty.
535
536 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
537
538 * cli/cli-script.h (enum misc_command_type): Move from defs.h.
539 (enum command_control_type): Likewise.
540 (struct command_line): Likewise.
541 (free_command_lines): Likewise.
542 (struct command_lines_deleter): Likewise.
543 (command_line_up): Likewise.
544 (read_command_lines): Likewise.
545 (read_command_lines_1): Likewise.
546 * defs.h (enum misc_command_type): Move to cli/cli-script.h.
547 (enum command_control_type): Likewise.
548 (struct command_line): Likewise.
549 (free_command_lines): Likewise.
550 (struct command_lines_deleter): Likewise.
551 (command_line_up): Likewise.
552 (read_command_lines): Likewise.
553 (read_command_lines_1): Likewise.
554 * breakpoint.h: Include cli/cli-script.h.
555 * extension-priv.h: Likewise.
556 * gdbcmd.h: Likewise.
557
558 2017-09-04 Pedro Alves <palves@redhat.com>
559
560 * ada-lang.c (is_known_support_routine): Move sal declaration to
561 where it is initialized.
562 * breakpoint.c (create_internal_breakpoint, init_catchpoint)
563 (parse_breakpoint_sals, decode_static_tracepoint_spec)
564 (clear_command, update_static_tracepoint): Remove init_sal
565 references. Move declarations closer to initializations.
566 * cli/cli-cmds.c (list_command): Move sal declarations closer to
567 initializations.
568 * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
569 references. Move sal declarations closer to initializations.
570 * frame.c (find_frame_sal): Return a symtab_and_line via function
571 return instead of output parameter. Remove init_sal references.
572 * frame.h (find_frame_sal): Return a symtab_and_line via function
573 return instead of output parameter.
574 * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
575 * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
576 instead of memset.
577 (gdbscm_find_pc_line): Remove init_sal reference.
578 * infcall.c (call_function_by_hand_dummy): Remove init_sal
579 references. Move declarations closer to initializations.
580 * infcmd.c (set_step_frame): Update. Move declarations closer to
581 initializations.
582 (finish_backward): Remove init_sal references. Move declarations
583 closer to initializations.
584 * infrun.c (process_event_stop_test, handle_step_into_function)
585 (insert_hp_step_resume_breakpoint_at_frame)
586 (insert_step_resume_breakpoint_at_caller): Likewise.
587 * linespec.c (create_sals_line_offset, decode_digits_ordinary)
588 (symbol_to_sal): Likewise.
589 * probe.c (parse_probes_in_pspace): Remove init_sal reference.
590 * python/py-frame.c (frapy_find_sal): Move sal declaration closer
591 to its initialization.
592 * reverse.c (save_bookmark_command): Use new/delete. Remove
593 init_sal references. Move declarations closer to initializations.
594 * source.c (get_current_source_symtab_and_line): Remove brace
595 initialization.
596 (set_current_source_symtab_and_line): Now takes the sal by const
597 reference. Remove brace initialization.
598 (line_info): Remove init_sal reference.
599 * source.h (set_current_source_symtab_and_line): Now takes a
600 symtab_and_line via const reference.
601 * stack.c (set_current_sal_from_frame): Adjust.
602 (print_frame_info): Adjust.
603 (get_last_displayed_sal): Return the sal via function return
604 instead of via output parameter. Simplify.
605 (frame_info): Adjust.
606 * stack.h (get_last_displayed_sal): Return the sal via function
607 return instead of via output parameter.
608 * symtab.c (init_sal): Delete.
609 (find_pc_sect_line): Remove init_sal references. Move
610 declarations closer to initializations.
611 (find_function_start_sal): Remove init_sal references. Move
612 declarations closer to initializations.
613 * symtab.h (struct symtab_and_line): In-class initialize all
614 fields.
615 * tracepoint.c (set_traceframe_context)
616 (print_one_static_tracepoint_marker): Remove init_sal references.
617 Move declarations closer to initializations.
618 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
619 * tui/tui-stack.c (tui_show_frame_info): Adjust. Move
620 declarations closer to initializations.
621 * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
622 init_sal references. Adjust.
623
624 2017-09-04 Pedro Alves <palves@redhat.com>
625
626 * ax-gdb.c (agent_command_1): Use range-for.
627 * break-catch-throw.c (re_set_exception_catchpoint): Update.
628 * breakpoint.c: Include "common/array-view.h".
629 (init_breakpoint_sal, create_breakpoint_sal): Change sals
630 parameter from struct symtabs_and_lines to
631 array_view<symtab_and_line>. Adjust. Use range-for. Update.
632 (breakpoint_sals_to_pc): Change sals parameter from struct
633 symtabs_and_lines to std::vector reference.
634 (check_fast_tracepoint_sals): Change sals parameter from struct
635 symtabs_and_lines to std::array_view. Use range-for.
636 (decode_static_tracepoint_spec): Return a std::vector instead of
637 symtabs_and_lines. Update.
638 (create_breakpoint): Update.
639 (break_range_command, until_break_command, clear_command): Update.
640 (base_breakpoint_decode_location, bkpt_decode_location)
641 (bkpt_probe_create_sals_from_location)
642 (bkpt_probe_decode_location, tracepoint_decode_location)
643 (tracepoint_probe_decode_location)
644 (strace_marker_create_sals_from_location): Return a std::vector
645 instead of symtabs_and_lines.
646 (strace_marker_create_breakpoints_sal): Update.
647 (strace_marker_decode_location): Return a std::vector instead of
648 symtabs_and_lines. Update.
649 (update_breakpoint_locations): Change struct symtabs_and_lines
650 parameters to gdb::array_view. Adjust.
651 (location_to_sals): Return a std::vector instead of
652 symtabs_and_lines. Update.
653 (breakpoint_re_set_default): Use std::vector instead of struct
654 symtabs_and_lines.
655 (decode_location_default): Return a std::vector instead of
656 symtabs_and_lines. Update.
657 * breakpoint.h: Include "common/array-view.h".
658 (struct breakpoint_ops) <decode_location>: Now returns a
659 std::vector instead of returning a symtabs_and_lines via output
660 parameter.
661 (update_breakpoint_locations): Change sals parameters to use
662 gdb::array_view.
663 * cli/cli-cmds.c (edit_command, list_command): Update to use
664 std::vector and gdb::array_view.
665 (ambiguous_line_spec): Adjust to use gdb::array_view and
666 range-for.
667 (compare_symtabs): Rename to ...
668 (cmp_symtabs): ... this. Change parameters to symtab_and_line
669 const reference and adjust.
670 (filter_sals): Rewrite using std::vector and standard algorithms.
671 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
672 (jump_command): Update to use std::vector.
673 * linespec.c (struct linespec_state) <canonical_names>: Update
674 comment.
675 (add_sal_to_sals_basic): Delete.
676 (add_sal_to_sals, filter_results, convert_results_to_lsals)
677 (decode_line_2, create_sals_line_offset)
678 (convert_address_location_to_sals, convert_linespec_to_sals)
679 (convert_explicit_location_to_sals, parse_linespec)
680 (event_location_to_sals, decode_line_full, decode_line_1)
681 (decode_line_with_current_source)
682 (decode_line_with_last_displayed, decode_objc)
683 (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
684 (linespec_result::~linespec_result): Adjust to use std::vector
685 instead of symtabs_and_lines.
686 * linespec.h (linespec_sals::sals): Now a std::vector.
687 (struct linespec_result): Use std::vector, bool, and in-class
688 initialization.
689 (decode_line_1, decode_line_with_current_source)
690 (decode_line_with_last_displayed): Return std::vector.
691 * macrocmd.c (info_macros_command): Use std::vector.
692 * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
693 * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
694 std::vector.
695 * probe.h (parse_probes): Return a std::vector.
696 * python/python.c (gdbpy_decode_line): Use std::vector and
697 gdb::array_view.
698 * source.c (select_source_symtab, line_info): Use std::vector.
699 * stack.c (func_command): Use std::vector.
700 * symtab.h (struct symtabs_and_lines): Delete.
701 * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
702
703 2017-09-04 Pedro Alves <palves@redhat.com>
704
705 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
706 unittests/array-view-selftests.c.
707 (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
708 * common/array-view.h: New file.
709 * unittests/array-view-selftests.c: New file.
710
711 2017-09-04 Pedro Alves <palves@redhat.com>
712
713 * cli/cli-cmds.c (edit_command): Pass message to
714 ambiguous_line_spec.
715 (list_command): Pass message to ambiguous_line_spec. Say
716 "first"/"last" instead of "start" and "end" to be consistent with
717 the manual.
718 (ambiguous_line_spec): Add 'format' and vararg parameters. Use
719 them to print formatted message.
720
721 2017-09-04 Pedro Alves <palves@redhat.com>
722
723 * btrace.c (ftrace_add_pt): Pass btrace_insn to
724 ftrace_update_insns by reference instead of pointer.
725
726 2017-09-04 Yao Qi <yao.qi@linaro.org>
727
728 * i386-go32-tdep.c: Include x86-xstate.h.
729 (i386_go32_init_abi): Call i386_target_description.
730 * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
731 if xcr0 is X86_XSTATE_X87_MASK.
732 * i386-tdep.h (tdesc_i386): Remove the declaration.
733 (tdesc_i386_mmx): Likewise.
734
735 2017-09-04 Yao Qi <yao.qi@linaro.org>
736
737 * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
738 X86_XSTATE_SSE_MASK instead of 0.
739
740 2017-09-04 Yao Qi <yao.qi@linaro.org>
741
742 * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
743 i386_target_description.
744 * i386-fbsd-nat.c (i386fbsd_read_description): Call
745 i386_target_description.
746 * i386-tdep.c (i386_gdbarch_init): Likewise.
747
748 2017-09-04 Yao Qi <yao.qi@linaro.org>
749
750 * amd64-darwin-tdep.c: Include "x86-xstate.h".
751 (x86_darwin_init_abi_64): Call amd64_target_description.
752 * amd64-dicos-tdep.c: Likewise.
753 * amd64-fbsd-nat.c: Likewise.
754 * amd64-fbsd-tdep.c: Likewise.
755 * amd64-nbsd-tdep.c: Likewise.
756 * amd64-obsd-tdep.c: Likewise.
757 * amd64-sol2-tdep.c: Likewise.
758 * amd64-windows-tdep.c: Likewise.
759 * amd64-tdep.h (tdesc_amd64): Remove the declaration.
760
761 2017-09-04 Simon Marchi <simon.marchi@ericsson.com>
762
763 * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
764 (btrace_function) <insn>: Change type to use std::vector.
765 * btrace.c (ftrace_debug, ftrace_call_num_insn,
766 ftrace_find_call, ftrace_new_gap, ftrace_update_function,
767 ftrace_update_insns, ftrace_compute_global_level_offset,
768 btrace_stitch_bts, btrace_clear, btrace_insn_get,
769 btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
770 change to std::vector.
771 (ftrace_update_insns): Adjust to change to std::vector, change
772 type of INSN parameter.
773 (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
774 * record-btrace.c (btrace_call_history_insn_range,
775 btrace_compute_src_line_range,
776 record_btrace_frame_prev_register): Adjust to change to
777 std::vector.
778 * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
779 to change to std::vector.
780
781 2017-09-03 Tom Tromey <tom@tromey.com>
782
783 * corefile.c (reopen_exec_file): Use std::string.
784
785 2017-09-03 Tom Tromey <tom@tromey.com>
786
787 * compile/compile.c (compile_register_name_mangled): Return
788 std::string.
789 * compile/compile-loc2c.c (pushf_register_address): Update.
790 (pushf_register): Update.
791 * compile/compile-c-types.c (convert_array): Update.
792 * compile/compile-c-symbols.c (generate_vla_size): Update.
793 (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
794 (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
795 (convert_one_symbol): Update.
796 (generate_c_for_for_one_variable): Update.
797 * compile/compile-c-support.c (c_get_range_decl_name): Return a
798 std::string.
799 (generate_register_struct): Update.
800 * compile/compile-internal.h (c_get_range_decl_name): Return a
801 std::string.
802 (compile_register_name_mangled): Return std::string.
803
804 2017-09-03 Tom Tromey <tom@tromey.com>
805
806 * utils.c (perror_string): Return a std::string.
807 (throw_perror_with_name, perror_warning_with_name): Update.
808
809 2017-09-03 Tom Tromey <tom@tromey.com>
810
811 * demangle.c (demangle_command): Use std::string,
812 unique_xmalloc_ptr.
813
814 2017-09-03 Tom Tromey <tom@tromey.com>
815
816 * cli/cli-setshow.c (do_set_command): Use std::string.
817
818 2017-09-03 Tom Tromey <tom@tromey.com>
819
820 * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
821
822 2017-09-03 Tom Tromey <tom@tromey.com>
823
824 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
825
826 2017-09-03 Tom Tromey <tom@tromey.com>
827
828 * mi/mi-cmd-env.c (env_execute_cli_command): Use
829 gdb::unique_xmalloc_ptr.
830
831 2017-09-03 Tom Tromey <tom@tromey.com>
832
833 * thread.c (print_thread_info_1): Use string_printf.
834 (thread_apply_command, thread_apply_all_command): Use
835 std::string.
836
837 2017-09-03 Tom Tromey <tom@tromey.com>
838
839 * valprint.c (val_print_string): Update.
840 * gdbcore.h (memory_error_message): Return std::string.
841 * corefile.c (memory_error_message): Return std::string.
842 (memory_error): Update.
843 * breakpoint.c (insert_bp_location): Update.
844
845 2017-09-03 Simon Marchi <simon.marchi@ericsson.com>
846
847 * target/waitstatus.h (target_waitstatus_to_string): Change
848 return type to std::string.
849 * target/waitstatus.c (target_waitstatus_to_string): Return
850 std::string.
851 * target.h (target_waitstatus_to_string): Remove declaration.
852 * infrun.c (resume, clear_proceed_status_thread,
853 print_target_wait_results, do_target_wait, save_waitstatus,
854 stop_all_threads): Adjust.
855 * record-btrace.c (record_btrace_wait): Adjust.
856 * target-debug.h
857 (target_debug_print_struct_target_waitstatus_p): Adjust.
858
859 2017-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
860
861 PR gdb/22046
862 * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
863 detection.
864
865 2017-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
866
867 * NEWS (Changes since GDB 8.0): Add entry mentioning new support
868 for setting/unsetting environment variables on the remote target.
869 (New remote packets): Add entries for QEnvironmentHexEncoded,
870 QEnvironmentUnset and QEnvironmentReset.
871 * common/environ.c (gdb_environ::operator=): Extend method to
872 handle m_user_set_env_list and m_user_unset_env_list.
873 (gdb_environ::clear): Likewise.
874 (match_var_in_string): Change type of first parameter from 'char
875 *' to 'const char *'.
876 (gdb_environ::set): Extend method to handle
877 m_user_set_env_list and m_user_unset_env_list.
878 (gdb_environ::unset): Likewise.
879 (gdb_environ::clear_user_set_env): New method.
880 (gdb_environ::user_set_envp): Likewise.
881 (gdb_environ::user_unset_envp): Likewise.
882 * common/environ.h (gdb_environ): Handle m_user_set_env_list and
883 m_user_unset_env_list on move constructor/assignment.
884 (unset): Add new default parameter 'update_unset_list = true'.
885 (clear_user_set_env): New method.
886 (user_set_envp): Likewise.
887 (user_unset_envp): Likewise.
888 (m_user_set_env_list): New std::set.
889 (m_user_unset_env_list): Likewise.
890 * common/rsp-low.c (hex2str): New function.
891 (bin2hex): New overload for bin2hex function.
892 * common/rsp-low.c (hex2str): New prototype.
893 (str2hex): New overload prototype.
894 * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
895 QEnvironmentUnset and QEnvironmentReset.
896 (remote_protocol_features): Add QEnvironmentHexEncoded,
897 QEnvironmentUnset and QEnvironmentReset packets.
898 (send_environment_packet): New function.
899 (extended_remote_environment_support): Likewise.
900 (extended_remote_create_inferior): Call
901 extended_remote_environment_support.
902 (_initialize_remote): Add QEnvironmentHexEncoded,
903 QEnvironmentUnset and QEnvironmentReset packet configs.
904 * unittests/environ-selftests.c (gdb_selftest_env_var):
905 New variable.
906 (test_vector_initialization): New function.
907 (test_init_from_host_environ): Likewise.
908 (test_reinit_from_host_environ): Likewise.
909 (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
910 Likewise.
911 (test_unset_set_empty_vector): Likewise.
912 (test_vector_clear): Likewise.
913 (test_std_move): Likewise.
914 (test_move_constructor):
915 (test_self_move): Likewise.
916 (test_set_unset_reset): Likewise.
917 (run_tests): Rewrite in terms of the functions above.
918
919 2017-08-31 Weimin Pan <weimin.pan@oracle.com>
920
921 * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
922 (adi_available): Use a temp variable of type CORE_ADDR as argument
923 3 when calling target_auxv_search.
924 (adi_normalize_address): Use masks and xor operators to calculate
925 normalized address.
926 (adi_read_versions, adi_write_versions, adi_print_versions)
927 (do_examine, do_assign): Use paddress.
928
929 2017-08-29 John Baldwin <jhb@FreeBSD.org>
930
931 * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
932 * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
933 out of loop and add supply of FIR.
934 (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
935 add collect of FIR.
936
937 2017-08-28 Simon Marchi <simon.marchi@ericsson.com>
938
939 PR gdb/21827
940 * cli/cli-script.c (define_command): Don't convert command name
941 to lower case.
942
943 2017-08-25 Joel Brobecker <brobecker@adacore.com>
944
945 * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
946 Update all callers accordingly. Remove all code blocks handling
947 the case where DISPP is not NULL.
948
949 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
950
951 PR symtab/22003
952 * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
953 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
954 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
955
956 2017-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
957
958 * dwarf2read.c (build_type_psymtabs_reader): New prototype.
959 (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
960 (read_comp_units_from_section): New parameter abbrev_section, use
961 read_and_check_comp_unit_head, allocate signatured_type if needed.
962 (create_all_comp_units): Update read_comp_units_from_section caller.
963
964 2017-08-23 Pedro Alves <palves@redhat.com>
965
966 PR remote/21852
967 * remote.c (add_current_inferior_and_thread): Set inferior_ptid
968 to null_ptid and switch to thread without reading the registers
969 after adding the inferior.
970
971 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
972
973 * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
974 compile-gcc.
975 * compile/compile.c (compile_gcc, show_compile_gcc): New.
976 (compile_to_object): Implement compile_gcc.
977 (_initialize_compile): Install "set compile-gcc". Initialize
978 compile_gcc.
979
980 2017-08-23 Jan Kratochvil <jan.kratochvil@redhat.com>
981
982 * compile/compile.c (compile_to_object): Conditionally call
983 set_verbose. Conditionally call compile or compile_v0.
984
985 2017-08-07 Weimin Pan <weimin.pan@oracle.com>
986
987 * sparc64-tdep.h: (adi_normalize_address): New export.
988 * sparc-nat.h: (open_adi_tag_fd): New export.
989 * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
990 * sparc64-linux-tdep.c:
991 (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
992 (sparc64_linux_handle_segmentation_fault): New function.
993 (sparc64_linux_init_abi): Register
994 sparc64_linux_handle_segmentation_fault
995 * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
996 (sparc64_addr_bits_remove): New function.
997 (sparc64_init_abi): Register sparc64_addr_bits_remove.
998 (MAX_PROC_NAME_SIZE): New macro.
999 (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
1000 (sparc64adilist): New variable.
1001 (adi_proc_list): New variable.
1002 (find_adi_info): New function.
1003 (add_adi_info): New function.
1004 (get_adi_info_proc): New function.
1005 (get_adi_info): New function.
1006 (info_adi_command): New function.
1007 (read_maps_entry): New function.
1008 (adi_available): New function.
1009 (adi_normalize_address): New function.
1010 (adi_align_address): New function.
1011 (adi_convert_byte_count): New function.
1012 (adi_tag_fd): New function.
1013 (adi_is_addr_mapped): New function.
1014 (adi_read_versions): New function.
1015 (adi_write_versions): New function.
1016 (adi_print_versions): New function.
1017 (do_examine): New function.
1018 (do_assign): New function.
1019 (adi_examine_command): New function.
1020 (adi_assign_command): New function.
1021 (_initialize_sparc64_adi_tdep): New function.
1022
1023 2017-08-22 Simon Marchi <simon.marchi@ericsson.com>
1024
1025 * breakpoint.c (breakpoints_info): Rename to ...
1026 (info_breakpoints_command): ... this.
1027 (watchpoints_info): Rename to ...
1028 (info_watchpoints_command): ... this.
1029 (tracepoints_info): Rename to ...
1030 (info_tracepoints_command): ... this.
1031 (_initialize_breakpoint): Adjust.
1032 * dcache.c (dcache_info): Rename to ...
1033 (info_display_command): ... this.
1034 (_initialize_dcache): Adjust.
1035 * frame.h (args_info): Rename to ...
1036 (info_args_command): ... this.
1037 (locals_info): Rename to ...
1038 (info_locals_command): ... this.
1039 * infcmd.c (nofp_registers_info): Rename to ...
1040 (info_registers_command): ... this.
1041 (float_info): Rename to ...
1042 (info_float_command): ... this.
1043 (program_info): Rename to ...
1044 (info_program_command): ... this.
1045 (all_registers_info): Rename to ...
1046 (info_all_registers_command): ... this.
1047 (vector_info): Rename to ...
1048 (info_vector_command): ... this.
1049 (float_info): Rename to ...
1050 (info_float_command): ... this.
1051 (_initialize_infcmd): Adjust.
1052 * inferior.h (term_info): Rename to ...
1053 (info_terminal_command): ... this.
1054 * inflow.c (term_info): Rename to ...
1055 (info_terminal_command): ... this.
1056 (_initialize_inflow): Adjust.
1057 * infrun.c (signals_info): Rename to ...
1058 (info_signals_command): ... this.
1059 (_initialize_infrun): Adjust.
1060 * objc-lang.c (classes_info): Rename to ...
1061 (info_classes_command): ... this.
1062 (selectors_info): Rename to ...
1063 (info_selectors_command): ... this.
1064 (_initialize_objc_language): Adjust.
1065 * printcmd.c (sym_info): Rename to ...
1066 (info_symbol_command): ... this.
1067 (address_info): Rename to ...
1068 (info_address_command): ... this.
1069 (display_info): Rename to ...
1070 (info_display_command): ... this.
1071 (_initialize_printcmd): Adjust.
1072 * reverse.c (bookmarks_info): Rename to ...
1073 (info_breakpoints_command): ... this.
1074 (_initialize_reverse): Adjust.
1075 * ser-go32.c (dos_info): Rename to ...
1076 (info_serial_command): ... this.
1077 (_initialize_ser_dos): Adjust.
1078 * skip.c (skip_info): Rename to ...
1079 (info_skip_command): ... this.
1080 (_initialize_step_skip): Adjust.
1081 * source.c (line_info): Rename to ...
1082 (info_line_command): ... this.
1083 (source_info): Rename to ...
1084 (info_source_command)
1085 * stack.c (frame_info): Rename to ...
1086 (info_frame_command): ... this.
1087 (locals_info): Rename to ...
1088 (info_locals_command): ... this.
1089 (args_info): Rename to ...
1090 (info_args_command): ... this.
1091 (_initialize_stack): Adjust.
1092 * symtab.c (sources_info): Rename to ...
1093 (info_sources_command): ... this.
1094 (variables_info): Rename to ...
1095 (info_variables_command): ... this.
1096 (functions_info): Rename to ...
1097 (info_functions_command): ... this.
1098 (types_info): Rename to ...
1099 (info_types_command): ... this.
1100 (_initialize_symtab): Adjust.
1101 * target.c (target_info): Rename to ...
1102 (info_target_command): ... this.
1103 (initialize_targets): Adjust.
1104 * tracepoint.c (tvariables_info): Rename to ...
1105 (info_tvariables_command): ... this.
1106 (scope_info): Rename to ...
1107 (info_scope_command): ... this.
1108 (trace_dump_actions): Adjust.
1109 (_initialize_tracepoint): Adjust.
1110
1111 2017-08-22 Tom Tromey <tom@tromey.com>
1112
1113 * breakpoint.h (install_breakpoint): Update.
1114 * breakpoint.c (add_solib_catchpoint): Update.
1115 (install_breakpoint): Change argument to a std::unique_ptr.
1116 (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
1117 (create_breakpoint_sal, create_breakpoint): Update.
1118 (watch_command_1, catch_exec_command_1)
1119 (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
1120 (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
1121 Return the breakpoint.
1122 (set_raw_breakpoint_without_location, set_raw_breakpoint)
1123 (new_single_step_breakpoint): Update.
1124 * break-catch-throw.c (handle_gnu_v3_exceptions): Use
1125 std::unique_ptr.
1126 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
1127 std::unique_ptr.
1128 * break-catch-sig.c (create_signal_catchpoint): Use
1129 std::unique_ptr.
1130 * ada-lang.c (create_ada_exception_catchpoint): Use
1131 std::unique_ptr.
1132
1133 2017-08-22 Tom Tromey <tom@tromey.com>
1134
1135 * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
1136
1137 2017-08-22 Tom Tromey <tom@tromey.com>
1138
1139 * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
1140 (lookup_partial_symbol): Update.
1141
1142 2017-08-22 Tom Tromey <tom@tromey.com>
1143
1144 * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
1145 * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
1146 (find_and_open_source, symtab_to_fullname): Update.
1147 * psymtab.c (psymtab_to_fullname): Update.
1148
1149 2017-08-22 Tom Tromey <tom@tromey.com>
1150
1151 * exec.c (exec_file_attach): Update.
1152 * linux-thread-db.c (try_thread_db_load): Update.
1153 * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
1154 * utils.c (gdb_realpath): Change return type.
1155 (gdb_realpath_keepfile): Update.
1156 (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
1157 (_initialize_utils): Register the new self test.
1158 * source.c (openp): Update.
1159 (find_and_open_source): Update.
1160 * nto-tdep.c (nto_find_and_open_solib): Update.
1161 * main.c (set_gdb_data_directory): Update.
1162 (captured_main_1): Update.
1163 * dwarf2read.c (dwarf2_get_dwz_file): Update
1164 (dw2_map_symbol_filenames): Update.
1165 * auto-load.c (auto_load_safe_path_vec_update): Update.
1166 (filename_is_in_auto_load_safe_path_vec): Change type of
1167 "filename_realp".
1168 (auto_load_objfile_script): Update.
1169 (file_is_auto_load_safe): Update. Use std::string.
1170 * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
1171
1172 2017-08-22 Tom Tromey <tom@tromey.com>
1173
1174 * utils.c (gdb_realpath_keepfile): Return a
1175 gdb::unique_xmalloc_ptr.
1176 * exec.c (exec_file_attach): Update.
1177 * utils.h (gdb_realpath_keepfile): Return a
1178 gdb::unique_xmalloc_ptr.
1179
1180 2017-08-22 Tom Tromey <tom@tromey.com>
1181
1182 * compile/compile.c (compile_file_command): Use
1183 gdb::unique_xmalloc_ptr, std::string.
1184 * utils.c (gdb_abspath): Change return type.
1185 * source.c (openp): Update.
1186 * objfiles.c (allocate_objfile): Update.
1187 * main.c (set_gdb_data_directory): Update.
1188 * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
1189
1190 2017-08-22 Zhouyi Zhou <zhouzhouyi@gmail.com>
1191
1192 * cli-cmds.c (list_commands): List actual code around more than
1193 one location.
1194
1195 2017-08-21 John Baldwin <jhb@FreeBSD.org>
1196
1197 * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
1198
1199 2017-08-21 Pedro Alves <palves@redhat.com>
1200
1201 PR gdb/19487
1202 * c-exp.y (variable production): Handle function aliases.
1203 * minsyms.c (msymbol_is_text): New function.
1204 * minsyms.h (msymbol_is_text): Declare.
1205 * symtab.c (find_function_alias_target): New function.
1206 * symtab.h (find_function_alias_target): Declare.
1207
1208 2017-08-21 Pedro Alves <palves@redhat.com>
1209
1210 * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
1211 typedefs.
1212 * typeprint.c (whatis_exp): If handling "whatis", and expression
1213 is OP_TYPE, strip one typedef level. Otherwise don't strip
1214 typedefs here.
1215 * valops.c (value_cast): Save "to" type before resolving
1216 stubs/typedefs. Use that type as resulting value's type.
1217
1218 2017-08-18 Tom Tromey <tom@tromey.com>
1219 Pedro Alves <palves@redhat.com>
1220
1221 * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
1222 * sol-thread.c (sol_thread_resume, sol_thread_wait)
1223 (sol_thread_xfer_partial, rw_common): Use scoped_restore.
1224 * procfs.c (procfs_do_thread_registers): Use scoped_restore.
1225 * proc-service.c (ps_xfer_memory): Use scoped_restore.
1226 * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
1227 (linux_get_siginfo_data): Add "thread" argument. Use
1228 scoped_restore.
1229 * linux-nat.c (linux_child_follow_fork)
1230 (check_stopped_by_watchpoint): Use scoped_restore.
1231 * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
1232 (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
1233 (restore_inferior_ptid, save_inferior_ptid): Remove.
1234 * btrace.c (btrace_fetch): Use scoped_restore.
1235 * bsd-uthread.c (bsd_uthread_fetch_registers)
1236 (bsd_uthread_store_registers): Use scoped_restore.
1237 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
1238 scoped_restore.
1239 * aix-thread.c (aix_thread_resume, aix_thread_wait)
1240 (aix_thread_xfer_partial): Use scoped_restore.
1241 * inferior.h (save_inferior_ptid): Remove.
1242
1243 2017-08-18 Yao Qi <yao.qi@linaro.org>
1244
1245 PR tdep/21818
1246 * arm-tdep.c (gdb_print_insn_arm): Mark
1247 USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
1248
1249 2017-08-18 Yao Qi <yao.qi@linaro.org>
1250
1251 * NEWS: Mention GDBserver's new option "--selftest".
1252 * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
1253 * selftest.c: Move it to common/selftest.c.
1254 * selftest.h: Move it to common/selftest.h.
1255 * selftest-arch.c (reset): New function.
1256 (tests_with_arch): Call reset.
1257
1258 2017-08-18 Yao Qi <yao.qi@linaro.org>
1259
1260 * selftest.c (run_tests): Don't call QUIT. Call debug_printf
1261 instead of exception_fprintf and printf_filtered.
1262
1263 2017-08-18 Yao Qi <yao.qi@linaro.org>
1264
1265 * selftest.c (register_self_test): Rename it to
1266 selftests::register_test.
1267 (run_self_tests): selftest::run_tests.
1268 * selftest.h: Update declarations.
1269 * selftest-arch.c (register_self_test_foreach_arch): Rename it to
1270 selftests::register_test_foreach_arch.
1271 * selftest-arch.h: Update declaration.
1272 * aarch64-tdep.c: Update.
1273 * arm-tdep.c: Likewise.
1274 * disasm-selftests.c: Likewise.
1275 * dwarf2loc.c: Likewise.
1276 * dwarf2-frame.c: Likewise.
1277 * findvar.c: Likewise.
1278 * gdbarch-selftests.c: Likewise.
1279 * maint.c (maintenance_selftest): Likewise.
1280 * regcache.c: Likewise.
1281 * rust-exp.y: Likewise.
1282 * selftest-arch.c: Likewise.
1283 * unittests/environ-selftests.c: Likewise.
1284 * unittests/function-view-selftests.c: Likewise.
1285 * unittests/offset-type-selftests.c: Likewise.
1286 * unittests/optional-selftests.c: Likewise.
1287 * unittests/scoped_restore-selftests.c: Likewise.
1288 * utils-selftests.c: Likewise.
1289
1290 2017-08-17 Pedro Alves <palves@redhat.com>
1291
1292 * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
1293 local.
1294
1295 2017-08-17 Pedro Alves <palves@redhat.com>
1296
1297 * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
1298 field.
1299 (reset_die_in_process): Delete, replaced by ...
1300 (process_die_scope): ... this new class. Make it responsible for
1301 freeing cu->line_header too.
1302 (process_die): Use process_die_scope.
1303 (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
1304 cu->line_header_die_owner. Don't release the line header if it's
1305 owned by the CU.
1306 (setup_type_unit_groups): Make the CU/DIE own the line header.
1307 Don't release the line header here.
1308
1309 2017-08-17 Alex Lindsay <alexlindsay239@gmail.com> (tiny change)
1310
1311 * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
1312
1313 2017-08-17 Ruslan Kabatsayev <b7.10110111@gmail.com>
1314
1315 * NEWS: Mention new shortcuts for nexti and stepi in TUI
1316 Single-Key mode
1317
1318 2017-08-16 Ruslan Kabatsayev <b7.10110111@gmail.com>
1319
1320 * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
1321 mode command list.
1322
1323 2017-08-15 Stafford Horne <shorne@gmail.com>
1324
1325 * MAINTAINERS (Write After Approval): Add Stafford Horne.
1326
1327 2017-08-15 Stafford Horne <shorne@gmail.com>
1328
1329 * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
1330
1331 2017-08-15 Sergio Durigan Junior <sergiodj@redhat.com>
1332
1333 PR gdb/21954
1334 * infcmd.c (unset_environment_command): Use the 'clear' method on
1335 the environment instead of resetting it.
1336
1337 2017-08-15 John Baldwin <jhb@FreeBSD.org>
1338
1339 * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
1340 platforms.
1341
1342 2017-08-14 Tom Tromey <tom@tromey.com>
1343
1344 * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
1345 (print_binary_chars): Likewise.
1346 (BITS_IN_BYTES): Remove.
1347
1348 2017-08-14 Tom Tromey <tom@tromey.com>
1349
1350 PR gdb/21675
1351 * valprint.c (LOW_ZERO): Change value to 034.
1352 (print_octal_chars): Add static_asserts for octal constants.
1353 * printcmd.c (print_scalar_formatted): Add 'd' case.
1354
1355 2017-08-11 Tom Tromey <tom@tromey.com>
1356
1357 * symfile.c (add_symbol_file_command): Use std::vector.
1358
1359 2017-08-14 Tom Tromey <tom@tromey.com>
1360
1361 * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
1362 * break-catch-syscall.c (create_syscall_event_catchpoint): Use
1363 std::move.
1364 * break-catch-sig.c (create_signal_catchpoint): Use std::move.
1365
1366 2017-08-11 Pedro Alves <palves@redhat.com>
1367
1368 * infrun.c (process_event_stop_test): Adjust
1369 function_name_is_marked_for_skip call.
1370 * skip.c: Include <list>.
1371 (skiplist_entry): Make it a class with private fields, and
1372 getters/setters.
1373 (skiplist_entry_chain): Delete.
1374 (skiplist_entries): New.
1375 (skiplist_entry_count): Delete.
1376 (highest_skiplist_entry_num): New.
1377 (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
1378 (add_skiplist_entry): Delete.
1379 (skiplist_entry::skiplist_entry): New.
1380 (skiplist_entry::add_entry): New.
1381 (skip_file_command, skip_function): Adjust.
1382 (compile_skip_regexp): Delete.
1383 (skip_command): Don't compile regexp here. Adjust to use
1384 skiplist_entry::add_entry.
1385 (skip_info): Adjust to use range-for and getters.
1386 (skip_enable_command, skip_disable_command): Adjust to use
1387 range-for and setters.
1388 (skip_delete_command): Adjust to use std::list.
1389 (add_skiplist_entry): Delete.
1390 (skip_file_p): Delete, refactored as ...
1391 (skiplist_entry::do_skip_file_p): ... this new method.
1392 (skip_gfile_p): Delete, refactored as ...
1393 (skiplist_entry::do_gskip_file_p): ... this new method.
1394 (skip_function_p, skip_rfunction_p): Delete, refactored as ...
1395 (skiplist_entry::skip_function_p): ... this new method.
1396 (function_name_is_marked_for_skip): Now returns bool, and takes
1397 the function sal by const reference. Adjust to use range-for and
1398 skiplist_entry methods.
1399 (_initialize_step_skip): Remove references to
1400 skiplist_entry_chain, skiplist_entry_count.
1401 * skip.h (function_name_is_marked_for_skip): Now returns bool, and
1402 takes the function sal by const reference.
1403
1404 2017-08-11 Yao Qi <yao.qi@linaro.org>
1405
1406 * dwarf2-frame.c (clear_pointer_cleanup): Remove.
1407 (dwarf2_frame_cache): Remove reset_cache_cleanup.
1408 (dwarf2_frame_cache):
1409 * frame-unwind.c (frame_unwind_try_unwinder): Catch
1410 RETURN_MASK_ALL and set *this_case to NULL.
1411 * frame-unwind.h: Update comments.
1412
1413 2017-08-11 Yao Qi <yao.qi@linaro.org>
1414
1415 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
1416 (dwarf2_frame_state_copy_regs): Remove.
1417 (dwarf2_frame_state_free_regs): Remove.
1418 (dwarf2_frame_state::~dwarf2_frame_state): Remove.
1419 (dwarf2_restore_rule): Call method .alloc_regs instead of
1420 dwarf2_frame_state_alloc_regs.
1421 (execute_cfa_program): Likewise. Call dwarf2_frame_state_reg_info
1422 constructor. Call std::move.
1423 (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
1424 (dwarf2_frame_cache): Likewise.
1425
1426 [GDB_SELF_TEST]: Include selftest.h and
1427 selftest-arch.h.
1428 [GDB_SELF_TEST] (execute_cfa_program_test): New function.
1429 (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
1430 execute_cfa_program_test.
1431
1432 * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
1433 copy ctor, assignment operator, move assignment.
1434 <alloc_regs>: New method.
1435 <swap>: New method.
1436 (struct dwarf2_frame_state): Delete dtor.
1437 (dwarf2_frame_state_alloc_regs): Remove declaration.
1438 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
1439 dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
1440
1441 2017-08-11 Yao Qi <yao.qi@linaro.org>
1442
1443 * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
1444 (dwarf2_frame_state::dwarf2_frame_state): New.
1445 (dwarf2_frame_state::~dwarf2_frame_state): New.
1446 (dwarf2_fetch_cfa_info): Update.
1447 (dwarf2_frame_cache): Remove old_chain. Change 'fs' to an object
1448 rather than a pointer. Update code.
1449 * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
1450 dtor.
1451 <data_align, code_align, retaddr_column>: Change them to const.
1452 <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
1453 to bool.
1454
1455 2017-08-11 Yao Qi <yao.qi@linaro.org>
1456
1457 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
1458 <loc.exp>: New field.
1459 * dwarf2-frame.c (execute_cfa_program): Update.
1460 (dwarf2_frame_prev_register): Update.
1461
1462 2017-08-10 Pedro Alves <palves@redhat.com>
1463
1464 * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
1465
1466 2017-08-09 John Baldwin <jhb@FreeBSD.org>
1467
1468 * fbsd-nat.c (struct fbsd_fork_info): Remove.
1469 (fbsd_pending_children): Use std::list.
1470 (fbsd_remember_child): Likewise.
1471 (fbsd_is_child_pending): Likewise.
1472 (fbsd_pending_vfork_done): Use std::forward_list.
1473 (fbsd_add_vfork_done): Likewise.
1474 (fbsd_is_vfork_done_pending): Likewise.
1475 (fbsd_next_vfork_done): Likewise.
1476
1477 2017-08-09 John Baldwin <jhb@FreeBSD.org>
1478
1479 * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
1480 (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
1481 [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
1482 for `mapfilename'.
1483 (fbsd_xfer_partial): Use gdb::byte_vector.
1484 (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
1485
1486 2017-08-09 John Baldwin <jhb@FreeBSD.org>
1487
1488 * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
1489 "filestuff.h".
1490 (fbsd_find_memory_regions): Fix `mapfile' initialization.
1491
1492 2017-08-09 Tom Tromey <tom@tromey.com>
1493
1494 * skip.c (skiplist_entry): New constructor.
1495 (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
1496 (skiplist_entry::file_is_glob): Now bool.
1497 (skiplist_entry::file, skiplist_entry::function): Now
1498 std::string.
1499 (make_skip_entry): Return a unique_ptr. Use new.
1500 (free_skiplist_entry, free_skiplist_entry_cleanup)
1501 (make_free_skiplist_entry_cleanup): Remove.
1502 (skip_command, skip_disable_command, add_skiplist_entry)
1503 (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
1504 (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
1505 (function_name_is_marked_for_skip): Update.
1506 (skip_delete_command): Update. Use delete.
1507
1508 2017-08-09 Jiong Wang <jiong.wang@arm.com>
1509
1510 * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
1511 (aarch64_linux_core_read_description): New function.
1512 (aarch64_linux_init_abi): Register gdbarch_core_read_description.
1513
1514 2017-08-09 Pedro Alves <palves@redhat.com>
1515
1516 * cp-name-parser.y (cp_comp_to_string): Return a
1517 gdb::unique_xmalloc_ptr<char>.
1518 * cp-support.c (replace_typedefs_qualified_name)
1519 (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
1520 (cp_canonicalize_string_full): Use op= instead of explicit
1521 convertion.
1522 (cp_class_name_from_physname, method_name_from_physname)
1523 (cp_func_name, cp_remove_params): Adjust to use
1524 gdb::unique_xmalloc_ptr<char>.
1525 * cp-support.h (cp_comp_to_string): Return a
1526 gdb::unique_xmalloc_ptr<char>.
1527 * python/py-type.c (typy_lookup_type): Adjust to use
1528 gdb::unique_xmalloc_ptr<char>.
1529
1530 2017-08-09 H.J. Lu <hongjiu.lu@intel.com>
1531
1532 * dwarf2read.c (dwarf2_string_attr): Fix a typo.
1533
1534 2017-08-09 Alex Lindsay <alexlindsay239@gmail.com>
1535 Yao Qi <yao.qi@linaro.org>
1536
1537 * cp-support.c (cp_canonicalize_string_full): Use
1538 gdb::unique_xmalloc_ptr<char>.
1539 (cp_canonicalize_string): Likewise.
1540
1541 2017-08-09 Yao Qi <yao.qi@linaro.org>
1542
1543 * features/Makefile (WHICH): Remove i386/ non-linux stuff.
1544 * regformats/i386/amd64-avx-avx512.dat: Remove.
1545 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
1546 * regformats/i386/amd64-avx-mpx.dat:Remove.
1547 * regformats/i386/amd64-avx.dat: Remove.
1548 * regformats/i386/amd64-mpx.dat: Remove.
1549 * regformats/i386/i386-avx-avx512.dat: Remove.
1550 * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
1551 * regformats/i386/i386-avx-mpx.dat: Remove.
1552 * regformats/i386/i386-mmx.dat: Remove.
1553 * regformats/i386/i386-mpx.dat: Remove.
1554
1555 2017-08-09 Yao Qi <yao.qi@linaro.org>
1556
1557 * amd64-tdep.h (tdesc_x32): Remove the declaration.
1558 * amd64-tdep.c: Don't include features/i386/x32*.c.
1559 (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
1560 functions.
1561 * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
1562 and i386/x32-avx-avx512.
1563 (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
1564 and i386/x32.xml.
1565 * features/i386/x32-avx-avx512.c: Removed.
1566 * features/i386/x32-avx-avx512.xml: Removed.
1567 * features/i386/x32-avx.c: Removed.
1568 * features/i386/x32-avx.xml: Removed.
1569 * features/i386/x32.c: Removed.
1570 * features/i386/x32.xml: Removed.
1571 * regformats/i386/x32-avx-avx512.dat: Removed.
1572 * regformats/i386/x32-avx.dat: Removed.
1573 * regformats/i386/x32.dat: Removed.
1574
1575 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
1576
1577 PR breakpoints/21886
1578 * mem-break.c (default_memory_insert_breakpoint): Use
1579 `->placed_address' rather than `->reqstd_address' for the
1580 breakpoint location.
1581
1582 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
1583
1584 * arch-utils.c (default_print_insn): Remove arch/mach/endian
1585 assertions.
1586
1587 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
1588
1589 * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
1590 a union of `tdep_info', `tdesc_data' and `id'.
1591 * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
1592 rather than `info.tdep_info'.
1593 * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
1594 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
1595 * i386-tdep.c (i386_gdbarch_init): Likewise.
1596 * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
1597 * mips-tdep.c (mips_gdbarch_init): Likewise.
1598 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
1599 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
1600 * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
1601 `info.tdep_info'.
1602 (ppc_linux_init_abi): Use `info.tdesc_data' rather than
1603 `info.tdep_info'.
1604 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1605 * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
1606 `info.tdep_info'.
1607 * spu-tdep.c (spu_gdbarch_init): Likewise.
1608 * gdbarch.h: Regenerate.
1609
1610 2017-08-07 Leszek Swirski <leszeks@google.com>
1611
1612 PR symtab/20899
1613 * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
1614
1615 2017-08-07 Simon Marchi <simon.marchi@ericsson.com>
1616
1617 * remote-sim.c (gdbsim_load): Remove char **argv local variable.
1618 (gdbsim_open): Rename gdb_argv args object to argv.
1619
1620 2017-08-05 Tom Tromey <tom@tromey.com>
1621
1622 * compile/compile-object-load.c (compile_object_load): Use
1623 gdb::unique_xmalloc_ptr.
1624 * cli/cli-dump.c (scan_filename): Rename from
1625 scan_filename_with_cleanup. Change return type.
1626 (scan_expression): Rename from scan_expression_with_cleanup.
1627 Change return type.
1628 (dump_memory_to_file, dump_value_to_file, restore_command):
1629 Use gdb::unique_xmalloc_ptr. Update.
1630 * cli/cli-cmds.c (find_and_open_script): Use
1631 gdb::unique_xmalloc_ptr.
1632 * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
1633 * symmisc.c (maintenance_print_symbols)
1634 (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
1635 * symfile.c (symfile_bfd_open, generic_load)
1636 (add_symbol_file_command, remove_symbol_file_command): Use
1637 gdb::unique_xmalloc_ptr.
1638 * source.c (openp): Use gdb::unique_xmalloc_ptr.
1639 * psymtab.c (maintenance_print_psymbols): Use
1640 gdb::unique_xmalloc_ptr.
1641 * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
1642 * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
1643 * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
1644 (reload_shared_libraries_1): Likewise.
1645
1646 2017-08-05 Tom Tromey <tom@tromey.com>
1647
1648 * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
1649 (rust_op_vector, rust_set_vector): New typedefs.
1650 (current_parser): New global.
1651 (work_obstack): Change to pointer type. Update all users.
1652 (rust_ast, pstate): Remove globals.
1653 (struct rust_parser): New.
1654 (%union) <params, field_inits>: Change type.
1655 (start, tuple_expr, unit_expr, struct_expr_list, literal)
1656 (field_expr, expr_list, maybe_expr_list, type_list): Update.
1657 (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
1658 (convert_params_to_types, convert_params_to_expression): Change
1659 type of "params".
1660 (ast_string): Change type of "fields".
1661 (rust_parse): Make a rust_parser. Remove cleanups.
1662 (rust_lex_tests): Make and install an auto_obstack.
1663
1664 2017-08-04 Yao Qi <yao.qi@linaro.org>
1665
1666 * configure.srv (ipa_x32_linux_regobj): New.
1667 * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
1668 instead of X86_TDESC_AVX512.
1669 (initialize_low_tracepoint): Call
1670 init_registers_x32_avx_avx512_linux.
1671
1672 2017-08-04 Yao Qi <yao.qi@linaro.org>
1673
1674 * utils.h (gdb_argv): Add namespace std for nullptr_t.
1675
1676 2017-08-03 Ruslan Kabatsayev <b7.10110111@gmail.com>
1677
1678 * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
1679
1680 2017-08-03 Tom Tromey <tom@tromey.com>
1681
1682 * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
1683 Remove.
1684 * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
1685
1686 2017-08-03 Tom Tromey <tom@tromey.com>
1687
1688 * python/py-param.c (compute_enum_values): Use gdb_argv.
1689
1690 2017-08-03 Tom Tromey <tom@tromey.com>
1691
1692 * utils.h (struct gdb_argv_deleter): New.
1693 (gdb_argv): New class.
1694 * utils.c (gdb_argv::reset): New method.
1695 * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
1696 * tracefile.c (tsave_command): Use gdb_argv.
1697 * top.c (new_ui_command): Use gdb_argv.
1698 * symmisc.c (maintenance_print_symbols)
1699 (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
1700 * symfile.c (symbol_file_command, generic_load)
1701 (remove_symbol_file_command): Use gdb_argv.
1702 * stack.c (backtrace_command): Use gdb_argv.
1703 * source.c (add_path, show_substitute_path_command)
1704 (unset_substitute_path_command, set_substitute_path_command):
1705 Use gdb_argv.
1706 * skip.c (skip_command): Use gdb_argv. Use gdb_buildargv.
1707 * ser-mingw.c (pipe_windows_open): Use gdb_argv.
1708 * remote.c (extended_remote_run, remote_put_command)
1709 (remote_get_command, remote_delete_command): Use gdb_argv.
1710 * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
1711 (gdbsim_open): Use gdb_argv.
1712 * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
1713 * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
1714 * procfs.c (procfs_info_proc): Use gdb_argv.
1715 * interps.c (interpreter_exec_cmd): Use gdb_argv.
1716 * infrun.c (handle_command): Use gdb_argv.
1717 * inferior.c (add_inferior_command, clone_inferior_command):
1718 Use gdb_argv.
1719 * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
1720 * exec.c (exec_file_command): Use gdb_argv.
1721 * cli/cli-cmds.c (alias_command): Use gdb_argv.
1722 * compile/compile.c (build_argc_argv): Use gdb_argv.
1723
1724 2017-08-03 Tom Tromey <tom@tromey.com>
1725
1726 * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
1727
1728 2017-08-03 Tom Tromey <tom@tromey.com>
1729
1730 * python/python.c (compute_python_string): Return std::string.
1731 (gdbpy_eval_from_control_command): Update.
1732 (do_start_initialization): Use std::string.
1733 * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
1734 xstrprintf.
1735 * python/py-breakpoint.c (local_setattro): Use string_printf, not
1736 xstrprintf.
1737
1738 2017-08-03 Tom Tromey <tom@tromey.com>
1739
1740 * top.h (do_restore_instream_cleanup): Remove.
1741 * top.c (do_restore_instream_cleanup): Remove.
1742 (read_command_file): Use scoped_restore.
1743 * cli/cli-script.c (execute_user_command): Use scoped_restore.
1744
1745 2017-08-03 Tom Tromey <tom@tromey.com>
1746
1747 * cli/cli-script.c (execute_user_command)
1748 (execute_control_command): Use scoped_restore.
1749
1750 2017-08-03 Tom Tromey <tom@tromey.com>
1751
1752 * cli/cli-script.c (do_restore_user_call_depth): Remove.
1753 (execute_user_command): Remove user_call_depth; use
1754 user_args_stack's size instead.
1755
1756 2017-08-03 Tom Tromey <tom@tromey.com>
1757
1758 * top.h (in_user_command): Remove.
1759 * top.c (in_user_command): Remove.
1760 * cli/cli-script.c (do_restore_user_call_depth)
1761 (execute_user_command): Update.
1762
1763 2017-08-03 Tom Tromey <tom@tromey.com>
1764
1765 * valops.c (search_struct_method): Use gdb::byte_vector.
1766 * valarith.c (value_concat): Use std::vector.
1767 * target.c (memory_xfer_partial): Use gdb::byte_vector.
1768 (simple_search_memory): Likewise.
1769 * printcmd.c (find_string_backward): Use gdb::byte_vector.
1770 * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
1771 * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
1772 * elfread.c (elf_rel_plt_read): Use std::string.
1773 * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
1774 * cli/cli-dump.c (restore_section_callback): Use
1775 gdb::byte_vector.
1776
1777 2017-08-03 Tom Tromey <tom@tromey.com>
1778
1779 * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
1780
1781 2017-08-03 Tom Tromey <tom@tromey.com>
1782
1783 * tui/tui-regs.c (tui_restore_gdbout): Remove.
1784 (tui_register_format): Use scoped_restore.
1785
1786 2017-08-03 Tom Tromey <tom@tromey.com>
1787
1788 * reverse.c (exec_direction_default): Remove.
1789 (exec_reverse_once): Use scoped_restore.
1790 * remote.c (restore_remote_timeout): Remove.
1791 (remote_flash_erase, remote_flash_write, remote_flash_done)
1792 (readchar, remote_serial_write): Use scoped_restore.
1793 * cli/cli-script.c (struct source_cleanup_lines_args)
1794 (source_cleanup_lines): Remove.
1795 (script_from_file): Use scoped_restore.
1796 * cli/cli-cmds.c (source_verbose_cleanup): Remove.
1797 (source_command): Use scoped_restore.
1798
1799 2017-08-03 Tom Tromey <tom@tromey.com>
1800
1801 * utils.h (make_cleanup_free_so): Remove.
1802 * utils.c (do_free_so, make_cleanup_free_so): Remove.
1803 * solist.h (struct so_deleter): New.
1804 (so_list_up): New typedef.
1805 * solib-svr4.c (svr4_read_so_list): Use so_list_up.
1806
1807 2017-08-03 Tom Tromey <tom@tromey.com>
1808
1809 * utils.h (make_cleanup_restore_current_language): Remove.
1810 * utils.c (do_restore_current_language)
1811 (make_cleanup_restore_current_language): Remove.
1812 * parse.c (parse_exp_in_context_1)
1813 (parse_expression_with_language): Use
1814 scoped_restore_current_language.
1815 * mi/mi-main.c (mi_cmd_execute): Use
1816 scoped_restore_current_language.
1817 * language.h (scoped_restore_current_language): New class.
1818
1819 2017-08-03 Tom Tromey <tom@tromey.com>
1820
1821 * compile/compile.c (cleanup_unlink_file): Remove.
1822 (compile_to_object): Use gdb::unlinker.
1823 (eval_compile_command): Likewise.
1824
1825 2017-08-03 Tom Tromey <tom@tromey.com>
1826
1827 * utils.h (make_cleanup_fclose): Remove.
1828 * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
1829
1830 2017-08-03 Tom Tromey <tom@tromey.com>
1831
1832 * top.c (open_terminal_stream): Return gdb_file_up.
1833 (new_ui_command): Update.
1834
1835 2017-08-03 Tom Tromey <tom@tromey.com>
1836
1837 * source.c (print_source_lines_base, forward_search_command)
1838 (reverse_search_command): Use gdb_file_up.
1839
1840 2017-08-03 Tom Tromey <tom@tromey.com>
1841
1842 * fbsd-nat.c (fbsd_find_memory_regions): Update.
1843
1844 2017-08-03 Tom Tromey <tom@tromey.com>
1845
1846 * cli/cli-cmds.c (find_and_open_script): Change return type.
1847 Remove "streamp" and "full_path" parameters.
1848 (source_script_with_search): Update.
1849 * auto-load.c (source_script_file): Update.
1850 * cli/cli-cmds.h (find_and_open_script): Change type.
1851 (open_script): New struct.
1852
1853 2017-08-03 Tom Tromey <tom@tromey.com>
1854
1855 * xml-support.c (xml_fetch_content_from_file): Update.
1856 * ui-file.c (stdio_file::open): Update.
1857 * tracefile-tfile.c (tfile_start): Update.
1858 * remote.c (remote_file_put, remote_file_get): Update.
1859 * nat/linux-procfs.c (linux_proc_get_int)
1860 (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
1861 * nat/linux-osdata.c (linux_common_core_of_thread): Update.
1862 (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
1863 (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
1864 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
1865 * nat/linux-btrace.c (linux_determine_kernel_start): Update.
1866 * linux-nat.c (linux_proc_pending_signals): Update.
1867 * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
1868 (file_closer): Remove.
1869 * compile/compile.c (compile_to_object): Update.
1870 * common/filestuff.h (struct gdb_file_deleter): New.
1871 (gdb_file_up): New typedef.
1872 (gdb_fopen_cloexec): Change return type.
1873 * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
1874 * cli/cli-dump.c (fopen_with_cleanup): Remove.
1875 (dump_binary_file, restore_binary_file): Update.
1876 * auto-load.c (auto_load_objfile_script_1): Update.
1877
1878 2017-08-03 Tom Tromey <tom@tromey.com>
1879
1880 * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
1881 (info_static_tracepoint_markers_command): Likewise.
1882 * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
1883 * skip.c (skip_info): Use ui_out_emit_table.
1884 * progspace.c (print_program_space): Use ui_out_emit_table.
1885 * osdata.c (info_osdata): Use ui_out_emit_table.
1886 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
1887 ui_out_emit_table.
1888 * linux-thread-db.c (info_auto_load_libthread_db): Use
1889 ui_out_emit_table.
1890 * inferior.c (print_inferior): Use ui_out_emit_table.
1891 * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
1892 * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
1893 * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
1894 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
1895 * ui-out.h (class ui_out_emit_table): New.
1896
1897 2017-08-02 Maciej W. Rozycki <macro@imgtec.com>
1898
1899 * mips-tdep.c (mips_fpu_type_str): New function.
1900 (mips_dump_tdep): Call it.
1901
1902 2017-08-01 Maciej W. Rozycki <macro@imgtec.com>
1903
1904 * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
1905 `->mips_fpu_type'.
1906
1907 2017-07-31 Xavier Roirand <roirand@adacore.com>
1908
1909 * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
1910
1911 2017-07-27 Xavier Roirand <roirand@adacore.com>
1912
1913 * MAINTAINERS (Write After Approval): Add Xavier Roirand.
1914
1915 2017-07-26 Yao Qi <yao.qi@linaro.org>
1916
1917 * cli/cli-cmds.c (maintenancechecklist): New variable.
1918 * gdbcmd.h (maintenancechecklist): Declare it.
1919 * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
1920 Call i386_linux_read_description with different masks.
1921 * maint.c (maintenance_check_command): New function.
1922 (_initialize_maint_cmds): Call add_prefix_cmd.
1923 * target-descriptions.c (tdesc_reg): override operator != and ==.
1924 (tdesc_type): Likewise.
1925 (tdesc_feature): Likewise.
1926 (target_desc): Likewise.
1927 [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
1928 (maintenance_check_xml_descriptions): New function.
1929 (_initialize_target_descriptions) Add command "xml-descriptions".
1930 * target-descriptions.h (selftests::record_xml_tdesc): Declare.
1931
1932 2017-07-26 Yao Qi <yao.qi@linaro.org>
1933
1934 * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
1935 Include features/i386/32bit-*.c.
1936 (i386_linux_read_description): Generate target description if it
1937 doesn't exist.
1938 (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
1939 functions.
1940 * features/i386/32bit-linux.c: Re-generated.
1941 * features/i386/32bit-sse.c: Likewise.
1942 * target-descriptions.c (print_c_feature::visit): Print code to
1943 set register number if needed.
1944 (print_c_feature) <m_next_regnum>: New field.
1945
1946 2017-07-26 Yao Qi <yao.qi@linaro.org>
1947
1948 * features/Makefile (CFILES): Rename with TDESC_CFILES.
1949 (FEATURE_XMLFILES): New.
1950 (FEATURE_CFILES): New.
1951 New rules.
1952 (clean-cfiles): Remove generated c files.
1953 * features/i386/32bit-avx.c: Generated.
1954 * features/i386/32bit-avx512.c: Generated.
1955 * features/i386/32bit-core.c: Generated.
1956 * features/i386/32bit-linux.c: Generated.
1957 * features/i386/32bit-mpx.c: Generated.
1958 * features/i386/32bit-pkeys.c: Generated.
1959 * features/i386/32bit-sse.c: Generated.
1960 * target-descriptions.c: Include algorithm.
1961 (tdesc_element_visitor): Add method visit_end.
1962 (print_c_tdesc): Implement visit_end.
1963 (print_c_tdesc:: m_filename_after_features): Move it to
1964 protected.
1965 (print_c_feature): New class.
1966 (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
1967 name starts with "i386/32bit-".
1968
1969 2017-07-26 Yao Qi <yao.qi@linaro.org>
1970
1971 * target-descriptions.c (tdesc_element_visitor): New class.
1972 (tdesc_element): New class.
1973 (tdesc_reg): Inherit from tdesc_element.
1974 (tdesc_reg::accept): New function.
1975 (tdesc_type): Inherit from tdesc_element.
1976 (tdesc_type::accept): New function.
1977 (tdesc_feature): Inherit from tdesc_element.
1978 (tdesc_feature::accept): New function.
1979 (target_desc): Inherit from tdesc_element.
1980 (target_desc::target_desc): New.
1981 (target_desc::~target_desc): New.
1982 (target_desc::accept): New.
1983 (allocate_target_description): Use new.
1984 (free_target_description): Use delete.
1985 (print_c_tdesc): New class.
1986 (maint_print_c_tdesc_cmd): Adjust.
1987
1988 * features/aarch64.c: Re-generated.
1989 * features/arc-arcompact.c: Re-generated.
1990 * features/arc-v2.c: Re-generated.
1991 * features/arm/arm-with-iwmmxt.c: Re-generated.
1992 * features/arm/arm-with-m.c: Re-generated.
1993 * features/arm/arm-with-m-fpa-layout.c: Re-generated.
1994 * features/arm/arm-with-m-vfp-d16.c: Re-generated.
1995 * features/arm/arm-with-neon.c: Re-generated.
1996 * features/arm/arm-with-vfpv2.c: Re-generated.
1997 * features/arm/arm-with-vfpv3.c: Re-generated.
1998 * features/i386/amd64-avx-avx512.c: Re-generated.
1999 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
2000 * features/i386/amd64-avx.c: Re-generated.
2001 * features/i386/amd64-avx-linux.c: Re-generated.
2002 * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
2003 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
2004 * features/i386/amd64-avx-mpx.c: Re-generated.
2005 * features/i386/amd64-avx-mpx-linux.c: Re-generated.
2006 * features/i386/amd64.c: Re-generated.
2007 * features/i386/amd64-linux.c: Re-generated.
2008 * features/i386/amd64-mpx.c: Re-generated.
2009 * features/i386/amd64-mpx-linux.c: Re-generated.
2010 * features/i386/i386-avx-avx512.c: Re-generated.
2011 * features/i386/i386-avx-avx512-linux.c: Re-generated.
2012 * features/i386/i386-avx.c: Re-generated.
2013 * features/i386/i386-avx-linux.c: Re-generated.
2014 * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
2015 * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
2016 * features/i386/i386-avx-mpx.c: Re-generated.
2017 * features/i386/i386-avx-mpx-linux.c: Re-generated.
2018 * features/i386/i386.c: Re-generated.
2019 * features/i386/i386-linux.c: Re-generated.
2020 * features/i386/i386-mmx.c: Re-generated.
2021 * features/i386/i386-mmx-linux.c: Re-generated.
2022 * features/i386/i386-mpx.c: Re-generated.
2023 * features/i386/i386-mpx-linux.c: Re-generated.
2024 * features/i386/x32-avx-avx512.c: Re-generated.
2025 * features/i386/x32-avx-avx512-linux.c: Re-generated.
2026 * features/i386/x32-avx.c: Re-generated.
2027 * features/i386/x32-avx-linux.c: Re-generated.
2028 * features/i386/x32.c: Re-generated.
2029 * features/i386/x32-linux.c: Re-generated.
2030 * features/microblaze.c: Re-generated.
2031 * features/microblaze-with-stack-protect.c: Re-generated.
2032 * features/mips64-dsp-linux.c: Re-generated.
2033 * features/mips64-linux.c: Re-generated.
2034 * features/mips-dsp-linux.c: Re-generated.
2035 * features/mips-linux.c: Re-generated.
2036 * features/nds32.c: Re-generated.
2037 * features/nios2.c: Re-generated.
2038 * features/nios2-linux.c: Re-generated.
2039 * features/rs6000/powerpc-32.c: Re-generated.
2040 * features/rs6000/powerpc-32l.c: Re-generated.
2041 * features/rs6000/powerpc-403.c: Re-generated.
2042 * features/rs6000/powerpc-403gc.c : Re-generated.
2043 * features/rs6000/powerpc-405.c: Re-generated.
2044 * features/rs6000/powerpc-505.c: Re-generated.
2045 * features/rs6000/powerpc-601.c: Re-generated.
2046 * features/rs6000/powerpc-602.c: Re-generated.
2047 * features/rs6000/powerpc-603.c: Re-generated.
2048 * features/rs6000/powerpc-604.c: Re-generated.
2049 * features/rs6000/powerpc-64.c: Re-generated.
2050 * features/rs6000/powerpc-64l.c: Re-generated.
2051 * features/rs6000/powerpc-7400.c: Re-generated.
2052 * features/rs6000/powerpc-750.c: Re-generated.
2053 * features/rs6000/powerpc-860.c: Re-generated.
2054 * features/rs6000/powerpc-altivec32.c: Re-generated.
2055 * features/rs6000/powerpc-altivec32l.c: Re-generated.
2056 * features/rs6000/powerpc-altivec64.c: Re-generated.
2057 * features/rs6000/powerpc-altivec64l.c: Re-generated.
2058 * features/rs6000/powerpc-cell32l.c: Re-generated.
2059 * features/rs6000/powerpc-cell64l.c: Re-generated.
2060 * features/rs6000/powerpc-e500.c: Re-generated.
2061 * features/rs6000/powerpc-e500l.c: Re-generated.
2062 * features/rs6000/powerpc-isa205-32l.c: Re-generated.
2063 * features/rs6000/powerpc-isa205-64l.c: Re-generated.
2064 * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
2065 * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
2066 * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
2067 * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
2068 * features/rs6000/powerpc-vsx32.c: Re-generated.
2069 * features/rs6000/powerpc-vsx32l.c: Re-generated.
2070 * features/rs6000/powerpc-vsx64.c: Re-generated.
2071 * features/rs6000/powerpc-vsx64l.c: Re-generated.
2072 * features/rs6000/rs6000.c: Re-generated.
2073 * features/s390-linux32.c: Re-generated.
2074 * features/s390-linux32v1.c: Re-generated.
2075 * features/s390-linux32v2.c: Re-generated.
2076 * features/s390-linux64.c: Re-generated.
2077 * features/s390-linux64v1.c: Re-generated.
2078 * features/s390-linux64v2.c: Re-generated.
2079 * features/s390-te-linux64.c: Re-generated.
2080 * features/s390-tevx-linux64.c: Re-generated.
2081 * features/s390-vx-linux64.c: Re-generated.
2082 * features/s390x-linux64.c: Re-generated.
2083 * features/s390x-linux64v1.c: Re-generated.
2084 * features/s390x-linux64v2.c: Re-generated.
2085 * features/s390x-te-linux64.c: Re-generated.
2086 * features/s390x-tevx-linux64.c: Re-generated.
2087 * features/s390x-vx-linux64.c: Re-generated.
2088 * features/sparc/sparc32-solaris.c: Re-generated.
2089 * features/sparc/sparc64-solaris.c: Re-generated.
2090 * features/tic6x-c62x.c: Re-generated.
2091 * features/tic6x-c62x-linux.c: Re-generated.
2092 * features/tic6x-c64x.c: Re-generated.
2093 * features/tic6x-c64x-linux.c: Re-generated.
2094 * features/tic6x-c64xp.c: Re-generated.
2095 * features/tic6x-c64xp-linux.c: Re-generated.
2096
2097 2017-07-26 Yao Qi <yao.qi@linaro.org>
2098
2099 * i386-linux-tdep.c (i386_linux_read_description): New function.
2100 (i386_linux_core_read_description): Call
2101 i386_linux_read_description.
2102 * i386-linux-tdep.h (i386_linux_read_description): Declare.
2103 (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
2104 (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
2105 (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
2106 (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
2107 * x86-linux-nat.c (x86_linux_read_description): Call
2108 i386_linux_read_description.
2109
2110 2017-07-26 Yao Qi <yao.qi@linaro.org>
2111
2112 * NEWS: Mention it.
2113 * features/Makefile (%.c: %.xml): Pass the xml file name to
2114 command "maint print c-tdesc".
2115 * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
2116 name from 'arg'.
2117
2118 2017-07-26 Yao Qi <yao.qi@linaro.org>
2119
2120 * target-descriptions.c (target_desc): Add ctor and dtor. Do
2121 in-class initialization.
2122 (tdesc_create_feature): Call new instead of XCNEW.
2123 (free_target_description): Ue delete.
2124
2125 2017-07-25 John Baldwin <jhb@FreeBSD.org>
2126
2127 * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
2128
2129 2017-07-25 Yao Qi <yao.qi@linaro.org>
2130
2131 * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
2132 constant.
2133 (amd64_x32_init_abi): Likewise.
2134 * amd64-tdep.h (amd64_init_abi): Update declaration.
2135 (amd64_x32_init_abi): Likewise.
2136
2137 2017-07-25 Yao Qi <yao.qi@linaro.org>
2138
2139 PR tdep/21717
2140 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
2141 condition for FPSCR.
2142 (arm_linux_store_inferior_registers): Likewise.
2143
2144 2017-07-22 Tom Tromey <tom@tromey.com>
2145
2146 * break-catch-syscall.c (struct catch_syscall_inferior_data)
2147 <syscalls_counts>: Now a std::vector.
2148 (get_catch_syscall_inferior_data): Use "new".
2149 (catch_syscall_inferior_data_cleanup): Use "delete".
2150 (insert_catch_syscall, remove_catch_syscall)
2151 (clear_syscall_counts): Update.
2152
2153 2017-07-22 Tom Tromey <tom@tromey.com>
2154
2155 * break-catch-syscall.c (syscall_catchpoint)
2156 <syscalls_to_be_caught>: Now a std::vector<int>
2157 (~syscall_catchpoint): Remove.
2158 (insert_catch_syscall, remove_catch_syscall)
2159 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
2160 (print_mention_catch_syscall, print_recreate_catch_syscall):
2161 Update.
2162 (create_syscall_event_catchpoint): Change type of "filter"
2163 parameter.
2164 (catch_syscall_split_args): Return a std::vector.
2165 (catch_syscall_command_1, catching_syscall_number_1): Update.
2166
2167 2017-07-22 Tom Tromey <tom@tromey.com>
2168
2169 * break-catch-throw.c (struct exception_catchpoint)
2170 <exception_rx>: Now a std::string.
2171 (~exception_catchpoint): Remove.
2172 (print_one_detail_exception_catchpoint): Update.
2173 (handle_gnu_v3_exceptions): Change type of except_rx.
2174 (extract_exception_regexp): Return a std::string.
2175 (catch_exception_command_1): Update.
2176
2177 2017-07-22 Tom Tromey <tom@tromey.com>
2178
2179 * break-catch-sig.c (gdb_signal_type): Remove typedef.
2180 (struct signal_catchpoint) <signals_to_be_caught>: Now a
2181 std::vector.
2182 <catch_all>: Now a bool.
2183 (~signal_catchpoint): Remove.
2184 (signal_catchpoint_insert_location)
2185 (signal_catchpoint_remove_location)
2186 (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
2187 (signal_catchpoint_print_mention)
2188 (signal_catchpoint_print_recreate)
2189 (signal_catchpoint_explains_signal): Update.
2190 (create_signal_catchpoint): Change type of "filter" and
2191 "catch_all".
2192 (catch_signal_split_args): Return a std::vector. Change type of
2193 "catch_all".
2194 (catch_signal_command): Update.
2195
2196 2017-07-20 Pedro Alves <palves@redhat.com>
2197
2198 * ada-lang.c (ada_language_defn): Make extern.
2199 (_initialize_ada_language): Remove add_language call.
2200 * c-lang.c (c_language_defn, cplus_language_defn)
2201 (asm_language_defn, minimal_language_defn): Make extern.
2202 (_initialize_c_language): Delete.
2203 * completer.c (compare_cstrings): Delete, moved to utils.h.
2204 * d-lang.c (d_language_defn): Make extern.
2205 (_initialize_d_language): Remove add_language calls.
2206 * defs.h (enum language): Add comment.
2207 * f-lang.c (f_language_defn): Make extern.
2208 (_initialize_f_language): Remove add_language call.
2209 * go-lang.c (go_language_defn): Make extern.
2210 (_initialize_go_language): Remove add_language call.
2211 * language.c: Include <algorithm>.
2212 (languages): Redefine as const array.
2213 (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
2214 (set_language_command): Handle "local". Use for-range loop.
2215 (set_language): Remove loop.
2216 (language_enum): Rewrite.
2217 (language_def, language_str): Remove loops.
2218 (add_language): Delete.
2219 (add_set_language_command): New, based on add_languages.
2220 (skip_language_trampoline): Adjust.
2221 (local_language_defn): Delete.
2222 (language_gdbarch_post_init): Adjust.
2223 (_initialize_language): Remove add_language calls. Call
2224 add_set_language_command.
2225 * language.h (add_language): Delete.
2226 (auto_language_defn)
2227 (unknown_language_defn, minimal_language_defn, ada_language_defn)
2228 (asm_language_defn, c_language_defn, cplus_language_defn)
2229 (d_language_defn, f_language_defn, go_language_defn)
2230 (m2_language_defn, objc_language_defn, opencl_language_defn)
2231 (pascal_language_defn, rust_language_defn): Declare.
2232 * m2-lang.c (m2_language_defn): Make extern.
2233 (_initialize_m2_language): Remove add_language call.
2234 * objc-lang.c (objc_language_defn): Make extern.
2235 (_initialize_objc_language): Remove add_language call.
2236 * opencl-lang.c (opencl_language_defn): Make extern.
2237 (_initialize_opencl_language): Remove add_language call.
2238 * p-lang.c (pascal_language_defn): Make extern.
2239 (_initialize_pascal_language): Delete.
2240 * rust-lang.c (rust_language_defn): Make extern.
2241 (_initialize_rust_language): Delete.
2242 * utils.h (compare_cstrings): New static inline function.
2243
2244 2017-07-20 Pedro Alves <palves@redhat.com>
2245
2246 * ada-lang.c (ada_to_fixed_type_1): Adjust.
2247 (get_var_value): Constify parameters.
2248 (get_int_var_value): Change prototype.
2249 (to_fixed_range_type): Adjust.
2250 * ada-lang.h (get_int_var_value): Change prototype.
2251
2252 2017-07-20 Pedro Alves <palves@redhat.com>
2253
2254 * dwarf2read.c (dw2_lookup_symbol): Use
2255 SYMBOL_MATCHES_SEARCH_NAME.
2256 * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
2257
2258 2017-07-20 Pedro Alves <palves@redhat.com>
2259
2260 * block.c (block_iter_name_step, block_iter_name_first)
2261 (block_iter_name_next): Delete.
2262 (block_lookup_symbol_primary): Adjust to use
2263 dict_iter_match_first/dict_iter_match_next.
2264 * block.h (block_iter_name_first, block_iter_name_next): Delete
2265 declarations.
2266 (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
2267 dict_iter_match_first/dict_iter_match_next.
2268
2269 2017-07-20 Pedro Alves <palves@redhat.com>
2270
2271 * cp-support.c (cp_find_first_component_aux): Add missing case for
2272 end of string.
2273
2274 2017-07-18 David Blaikie <dblaikie@gmail.com>
2275
2276 * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
2277 of dwo_cu's dwo_file.
2278
2279 2017-07-18 Yao Qi <yao.qi@linaro.org>
2280
2281 * remote.c (store_registers_using_G): Remove one line comment.
2282
2283 2017-07-18 Yao Qi <yao.qi@linaro.org>
2284
2285 * regcache.c (regcache_cpy): Simplify it.
2286 (regcache::cpy_no_passthrough): Remove it.
2287 * regcache.h (cpy_no_passthrough): Remove it.
2288 (regcache_dup, regcache_cpy): Update comments.
2289
2290 2017-07-18 Pedro Alves <palves@redhat.com>
2291
2292 * remote-sim.c (sim_command_completer): Adjust to work with a
2293 completion_tracker instead of a VEC.
2294
2295 2017-07-17 Pedro Alves <palves@redhat.com>
2296
2297 * completer.c (complete_source_filenames): New function.
2298 (complete_address_and_linespec_locations): New function.
2299 (location_completer): Use complete_address_and_linespec_locations.
2300 (completion_tracker::build_completion_result): Honor the tracker's
2301 request to suppress append.
2302 * completer.h (completion_tracker::suppress_append_ws)
2303 (completion_tracker::set_suppress_append_ws): New methods.
2304 (completion_tracker::m_suppress_append_ws): New field.
2305 (complete_source_filenames): New declaration.
2306 * linespec.c (linespec_complete_what): New.
2307 (struct ls_parser) <complete_what, completion_word,
2308 completion_quote_char, completion_quote_end, completion_tracker>:
2309 New fields.
2310 (string_find_incomplete_keyword_at_end): New.
2311 (linespec_lexer_lex_string): Record quote char. If in completion
2312 mode, don't throw.
2313 (linespec_lexer_consume_token): Advance the completion word point.
2314 (linespec_lexer_peek_token): Save/restore completion info.
2315 (save_stream_and_consume_token): New.
2316 (set_completion_after_number): New.
2317 (linespec_parse_basic): Set what to complete next depending on
2318 token. Handle function and label completions specially.
2319 (parse_linespec): Disable objc shortcut in completion mode. Set
2320 what to complete next depending on token type. Skip keyword if in
2321 completion mode.
2322 (complete_linespec_component, linespec_complete): New.
2323 * linespec.h (linespec_complete): Declare.
2324
2325 2017-07-17 Pedro Alves <palves@redhat.com>
2326
2327 * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
2328 Handle 'operator<' / 'operator<<'.
2329
2330 2017-07-17 Pedro Alves <palves@redhat.com>
2331
2332 * completer.c (collect_explicit_location_matches): Handle
2333 MATCH_LABEL.
2334 (convert_explicit_location_to_linespec): New, factored out from
2335 ...
2336 (convert_explicit_location_to_sals): ... this.
2337 (complete_label): New.
2338 (linespec_complete_label, find_label_symbols_in_block): New.
2339 (find_label_symbols): Add completion_mode parameter and adjust to
2340 call find_label_symbols_in_block.
2341 * linespec.h (linespec_complete_label): Declare.
2342
2343 2017-07-17 Pedro Alves <palves@redhat.com>
2344
2345 * ada-lang.c (ada_collect_symbol_completion_matches): Add
2346 complete_symbol_mode parameter.
2347 * cli/cli-cmds.c (complete_command): Get the completion result out
2348 of the handle_brkchars tracker if used a custom word point.
2349 * completer.c: Include "linespec.h".
2350 (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
2351 (advance_to_expression_complete_word_point): New.
2352 (completion_tracker::completes_to_completion_word): New.
2353 (complete_files_symbols): Pass down
2354 complete_symbol_mode::EXPRESSION.
2355 (explicit_options, probe_options): New.
2356 (collect_explicit_location_matches): Complete on the
2357 explictit_loc->foo instead of word. Use
2358 linespec_complete_function. Handle MATCH_LINE. Handle offering
2359 keyword and options completions.
2360 (backup_text_ptr): Delete.
2361 (skip_keyword): New.
2362 (complete_explicit_location): Remove 'word' parameter. Add
2363 language, quoted_arg_start and quoted_arg_end parameters.
2364 Rewrite, parsing left to right.
2365 (location_completer): Rewrite.
2366 (location_completer_handle_brkchars): New function.
2367 (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
2368 (enum complete_line_internal_reason): Adjust comments.
2369 (completion_tracker::discard_completions): New.
2370 (completer_handle_brkchars_func_for_completer): Handle
2371 location_completer.
2372 (gdb_custom_word_point_brkchars)
2373 (gdb_org_rl_basic_quote_characters): New.
2374 (gdb_completion_word_break_characters_throw)
2375 (completion_find_completion_word): Handle trackers that use a
2376 custom word point.
2377 (completion_tracker::advance_custom_word_point_by): New.
2378 (completion_tracker::build_completion_result): Don't rely on
2379 readline appending the quote char.
2380 (gdb_rl_attempted_completion_function_throw): Handle trackers that
2381 use a custom word point.
2382 (gdb_rl_attempted_completion_function): Restore
2383 rl_basic_quote_characters.
2384 * completer.h (class completion_tracker): Extend intro comment.
2385 (completion_tracker::set_quote_char)
2386 (completion_tracker::quote_char)
2387 (completion_tracker::set_use_custom_word_point)
2388 (completion_tracker::use_custom_word_point)
2389 (completion_tracker::custom_word_point)
2390 (completion_tracker::set_custom_word_point)
2391 (completion_tracker::advance_custom_word_point_by)
2392 (completion_tracker::completes_to_completion_word)
2393 (completion_tracker::discard_completions): New methods.
2394 (completion_tracker::m_quote_char)
2395 (completion_tracker::m_use_custom_word_point)
2396 (completion_tracker::m_custom_word_point): New fields.
2397 (advance_to_expression_complete_word_point): Declare.
2398 * f-lang.c (f_collect_symbol_completion_matches): Add
2399 complete_symbol_mode parameter.
2400 * language.h (struct language_defn)
2401 <la_collect_symbol_completion_matches>: Add complete_symbol_mode
2402 parameter.
2403 * linespec.c (linespec_keywords): Add NULL terminator. Make extern.
2404 (linespec_complete_function): New function.
2405 (linespec_lexer_lex_keyword): Adjust.
2406 * linespec.h (linespec_keywords, linespec_complete_function): New
2407 declarations.
2408 * location.c (find_end_quote): New function.
2409 (explicit_location_lex_one): Add explicit_completion_info
2410 parameter. Save quoting info. Don't throw if being called for
2411 completion. Don't handle Ada operators here.
2412 (is_cp_operator, skip_op_false_positives, first_of)
2413 (explicit_location_lex_one_function): New function.
2414 (string_to_explicit_location): Replace 'dont_throw' parameter with
2415 an explicit_completion_info pointer parameter. Handle it. Don't
2416 use explicit_location_lex_one to lex function names. Use
2417 explicit_location_lex_one_function instead.
2418 * location.h (struct explicit_completion_info): New.
2419 (string_to_explicit_location): Replace 'dont_throw' parameter with
2420 an explicit_completion_info pointer parameter.
2421 * symtab.c (default_collect_symbol_completion_matches_break_on):
2422 Add complete_symbol_mode parameter. Handle LINESPEC mode.
2423 (default_collect_symbol_completion_matches)
2424 (collect_symbol_completion_matches): Add complete_symbol_mode
2425 parameter.
2426 (collect_symbol_completion_matches_type): Pass down
2427 complete_symbol_mode::EXPRESSION.
2428 (collect_file_symbol_completion_matches): Add complete_symbol_mode
2429 parameter. Handle LINESPEC mode.
2430 * symtab.h (complete_symbol_mode): New.
2431 (default_collect_symbol_completion_matches_break_on)
2432 (default_collect_symbol_completion_matches)
2433 (collect_symbol_completion_matches)
2434 (collect_file_symbol_completion_matches): Add complete_symbol_mode
2435 parameter.
2436
2437 2017-07-17 Pedro Alves <palves@redhat.com>
2438
2439 * utils.c (enum class strncmp_iw_mode): New.
2440 (strcmp_iw): Rename to ...
2441 (strncmp_iw_with_mode): ... this. Add string2_len and mode
2442 parameters. Handle them.
2443 (strncmp_iw): New.
2444 (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
2445 * utils.h (strncmp_iw): Declare.
2446 (strcmp_iw): Move describing comments here.
2447
2448 2017-07-17 Pedro Alves <palves@redhat.com>
2449
2450 * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
2451 CP_OPERATOR_STR.
2452 * c-typeprint.c (is_type_conversion_operator): Use
2453 CP_OPERATOR_STR.
2454 * cp-support.c (LENGTH_OF_OPERATOR): Delete.
2455 (cp_find_first_component_aux): Use CP_OPERATOR_STR and
2456 CP_OPERATOR_LEN.
2457 * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
2458 * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
2459 * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
2460 * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
2461 CP_OPERATOR_STR.
2462 * location.c: Include "cp-support.h".
2463 (explicit_location_lex_one): Use CP_OPERATOR_LEN and
2464 CP_OPERATOR_STR.
2465 * symtab.c (operator_chars): Use CP_OPERATOR_STR and
2466 CP_OPERATOR_LEN.
2467
2468 2017-07-17 Pedro Alves <palves@redhat.com>
2469
2470 * cli/cli-cmds.c (complete_command): Use a completion tracker
2471 along with completion_find_completion_word for handle_brkchars
2472 phase.
2473 * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
2474 (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
2475 (struct gdb_rl_completion_word_info): New.
2476 (gdb_rl_find_completion_word): New.
2477 (completion_find_completion_word): New.
2478 * completer.h (completion_find_completion_word): Declare.
2479
2480 2017-07-17 Pedro Alves <palves@redhat.com>
2481
2482 * ada-lang.c (symbol_completion_match): Adjust comments.
2483 (symbol_completion_add): Replace vector parameter with
2484 completion_tracker parameter. Use it.
2485 (ada_make_symbol_completion_list): Rename to...
2486 (ada_collect_symbol_completion_matches): ... this. Add
2487 completion_tracker parameter and use it.
2488 (ada_language_defn): Adjust.
2489 * break-catch-syscall.c (catch_syscall_completer): Adjust
2490 prototype and work with completion_tracker instead of VEC.
2491 * breakpoint.c (condition_completer): Adjust prototype and work
2492 with completion_tracker instead of VEC.
2493 * c-lang.c (c_language_defn, cplus_language_defn)
2494 (asm_language_defn, minimal_language_defn): Adjust to renames.
2495 * cli/cli-cmds.c (complete_command): Rework using
2496 completion_tracker. Catch exceptions when completing.
2497 * cli/cli-decode.c (integer_unlimited_completer)
2498 (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
2499 with completion_tracker instead of VEC.
2500 * command.h (struct completion_tracker): Forward declare.
2501 (completer_ftype, completer_handle_brkchars_ftype): Change
2502 types.
2503 (complete_on_cmdlist, complete_on_enum): Adjust.
2504 * completer.c: Include <algorithm>.
2505 (struct gdb_completer_state): New.
2506 (current_completion): New global.
2507 (readline_line_completion_function): Delete.
2508 (noop_completer, filename_completer)
2509 (filename_completer_handle_brkchars, complete_files_symbols)
2510 (linespec_location_completer): Adjust to work with a
2511 completion_tracker instead of a VEC.
2512 (string_or_empty): New.
2513 (collect_explicit_location_matches): Adjust to work with a
2514 completion_tracker instead of a VEC.
2515 (explicit_location_completer): Rename to ...
2516 (complete_explicit_location): ... this and adjust to work with a
2517 completion_tracker instead of a VEC.
2518 (location_completer): Adjust to work with a completion_tracker
2519 instead of a VEC.
2520 (add_struct_fields): Adjust to work with a completion_list instead
2521 of VEC.
2522 (expression_completer): Rename to ...
2523 (complete_expression): ... this and adjust to work with a
2524 completion_tracker instead of a VEC. Use complete_files_symbols.
2525 (expression_completer): Reimplement on top of complete_expression.
2526 (symbol_completer): Adjust to work with a completion_tracker
2527 instead of a VEC.
2528 (enum complete_line_internal_reason): Add describing comments.
2529 (complete_line_internal_normal_command): Adjust to work with a
2530 completion_tracker instead of a VEC.
2531 (complete_line_internal): Rename to ...
2532 (complete_line_internal_1): ... this and adjust to work with a
2533 completion_tracker instead of a VEC. Assert TEXT is NULL in the
2534 handle_brkchars phase.
2535 (new_completion_tracker): Delete.
2536 (complete_line_internal): Reimplement as TRY/CATCH wrapper around
2537 complete_line_internal_1.
2538 (free_completion_tracker): Delete.
2539 (INITIAL_COMPLETION_HTAB_SIZE): New.
2540 (completion_tracker::completion_tracker)
2541 (completion_tracker::~completion_tracker): New.
2542 (maybe_add_completion): Delete.
2543 (completion_tracker::maybe_add_completion)
2544 (completion_tracker::add_completion)
2545 (completion_tracker::add_completions): New.
2546 (throw_max_completions_reached_error): Delete.
2547 (complete_line): Adjust to work with a completion_tracker instead
2548 of a VEC. Don't create a completion_tracker_t or check for max
2549 completions here.
2550 (command_completer, command_completer_handle_brkchars)
2551 (signal_completer, reg_or_group_completer_1)
2552 (reg_or_group_completer, default_completer_handle_brkchars):
2553 Adjust to work with a completion_tracker.
2554 (gdb_completion_word_break_characters_throw): New.
2555 (gdb_completion_word_break_characters): Reimplement.
2556 (line_completion_function): Delete.
2557 (completion_tracker::recompute_lowest_common_denominator)
2558 (expand_preserving_ws)
2559 (completion_tracker::build_completion_result)
2560 (completion_result::completion_result)
2561 (completion_result::completion_result)
2562 (completion_result::~completion_result)
2563 (completion_result::completion_result)
2564 (completion_result::release_match_list, compare_cstrings)
2565 (completion_result::sort_match_list)
2566 (completion_result::reset_match_list)
2567 (gdb_rl_attempted_completion_function_throw)
2568 (gdb_rl_attempted_completion_function): New.
2569 * completer.h (completion_list, struct completion_result)
2570 (class completion_tracker): New.
2571 (complete_line): Add completion_tracker parameter.
2572 (readline_line_completion_function): Delete.
2573 (gdb_rl_attempted_completion_function): New.
2574 (noop_completer, filename_completer, expression_completer)
2575 (location_completer, symbol_completer, command_completer)
2576 (signal_completer, reg_or_group_completer): Update prototypes.
2577 (completion_tracker_t, new_completion_tracker)
2578 (make_cleanup_free_completion_tracker): Delete.
2579 (enum maybe_add_completion_enum): Delete.
2580 (maybe_add_completion): Delete.
2581 (throw_max_completions_reached_error): Delete.
2582 * corefile.c (complete_set_gnutarget): Adjust to work with a
2583 completion_tracker instead of a VEC.
2584 * cp-abi.c (cp_abi_completer): Adjust to work with a
2585 completion_tracker instead of a VEC.
2586 * d-lang.c (d_language_defn): Adjust.
2587 * disasm.c (disassembler_options_completer): Adjust to work with a
2588 completion_tracker instead of a VEC.
2589 * f-lang.c (f_make_symbol_completion_list): Rename to ...
2590 (f_collect_symbol_completion_matches): ... this. Adjust to work
2591 with a completion_tracker instead of a VEC.
2592 (f_language_defn): Adjust.
2593 * go-lang.c (go_language_defn): Adjust.
2594 * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
2595 Adjust to work with a completion_tracker instead of a VEC.
2596 * infrun.c (handle_completer): Likewise.
2597 * interps.c (interpreter_completer): Likewise.
2598 * interps.h (interpreter_completer): Likewise.
2599 * language.c (unknown_language_defn, auto_language_defn)
2600 (local_language_defn): Adjust.
2601 * language.h (language_defn::la_make_symbol_completion_list):
2602 Rename to ...
2603 (language_defn::la_collect_symbol_completion_matches): ... this
2604 and adjust to work with a completion_tracker instead of a VEC.
2605 * m2-lang.c (m2_language_defn): Adjust.
2606 * objc-lang.c (objc_language_defn): Adjust.
2607 * opencl-lang.c (opencl_language_defn): Adjust.
2608 * p-lang.c (pascal_language_defn): Adjust.
2609 * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
2610 (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
2611 with a completion_tracker.
2612 * rust-lang.c (rust_language_defn): Adjust.
2613 * symtab.c (free_completion_list, do_free_completion_list)
2614 (return_val, completion_tracker): Delete.
2615 (completion_list_add_name, completion_list_add_symbol)
2616 (completion_list_add_msymbol, completion_list_objc_symbol)
2617 (completion_list_add_fields, add_symtab_completions): Add
2618 completion_tracker parameter and use it.
2619 (default_make_symbol_completion_list_break_on_1): Rename to...
2620 (default_collect_symbol_completion_matches_break_on): ... this.
2621 Add completion_tracker parameter and use it instead of allocating
2622 a completion tracker here.
2623 (default_make_symbol_completion_list_break_on): Delete old
2624 implementation.
2625 (default_make_symbol_completion_list): Delete.
2626 (default_collect_symbol_completion_matches): New.
2627 (make_symbol_completion_list): Delete.
2628 (collect_symbol_completion_matches): New.
2629 (make_symbol_completion_type): Rename to ...
2630 (collect_symbol_completion_matches_type): ... this. Add
2631 completion_tracker parameter and use it instead of VEC.
2632 (make_file_symbol_completion_list_1): Rename to...
2633 (collect_file_symbol_completion_matches): ... this. Add
2634 completion_tracker parameter and use it instead of VEC.
2635 (make_file_symbol_completion_list): Delete.
2636 (add_filename_to_list): Use completion_list instead of a VEC.
2637 (add_partial_filename_data::list): Now a completion_list.
2638 (make_source_files_completion_list): Work with a completion_list
2639 instead of a VEC.
2640 * symtab.h: Include "completer.h".
2641 (default_make_symbol_completion_list_break_on)
2642 (default_make_symbol_completion_list, make_symbol_completion_list)
2643 (make_symbol_completion_type, make_file_symbol_completion_list)
2644 (make_source_files_completion_list): Delete.
2645 (default_collect_symbol_completion_matches_break_on)
2646 (default_collect_symbol_completion_matches)
2647 (collect_symbol_completion_matches)
2648 (collect_symbol_completion_matches_type)
2649 (collect_file_symbol_completion_matches)
2650 (make_source_files_completion_list): New.
2651 * top.c (init_main): Don't install a rl_completion_entry_function
2652 hook. Install a rl_attempted_completion_function hook instead.
2653 * tui/tui-layout.c (layout_completer): Adjust to work with a
2654 completion_tracker.
2655 * tui/tui-regs.c (tui_reggroup_completer):
2656 * tui/tui-win.c (window_name_completer, focus_completer)
2657 (winheight_completer): Adjust to work with a completion_tracker.
2658 * value.c: Include "completer.h".
2659 (complete_internalvar): Adjust to work with a completion_tracker.
2660 * value.h (complete_internalvar): Likewise.
2661
2662 2017-07-17 Pedro Alves <palves@redhat.com>
2663
2664 * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
2665 renames.
2666 * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
2667 comments to completer_ftype's declaration.
2668 <completer_handle_brkchars>: Change type to
2669 completer_handle_brkchars_ftype.
2670 * command.h (completer_ftype): Add describing comment and give
2671 names to parameters.
2672 (completer_ftype_void): Rename to ...
2673 (completer_handle_brkchars_ftype) ... this. Add describing comment.
2674 (set_cmd_completer_handle_brkchars): Adjust.
2675 * completer.c (filename_completer_handle_brkchars): New function.
2676 (complete_line_internal_normal_command): New function, factored
2677 out from ...
2678 (complete_line_internal): ... here.
2679 (command_completer_handle_brkchars)
2680 (default_completer_handle_brkchars)
2681 (completer_handle_brkchars_func_for_completer): New functions.
2682 * completer.h (set_gdb_completion_word_break_characters): Delete
2683 declaration.
2684 (completer_handle_brkchars_func_for_completer): New declaration.
2685 * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
2686 completer_handle_brkchars_func_for_completer.
2687
2688 2017-07-17 Pedro Alves <palves@redhat.com>
2689
2690 * completer.c (symbol_completer): New function, based on
2691 make_symbol_completion_list_fn.
2692 * completer.h (symbol_completer): New declaration.
2693 * guile/scm-cmd.c (cmdscm_completers): Adjust.
2694 * python/py-cmd.c (completers): Adjust.
2695 * symtab.c (make_symbol_completion_list_fn): Delete.
2696 * symtab.h (make_symbol_completion_list_fn): Delete.
2697 * cli/cli-decode.c (add_cmd): Adjust.
2698
2699 2017-07-17 Pedro Alves <palves@redhat.com>
2700
2701 * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
2702 * dwarf2read.c: Include "filename-seen-cache.h".
2703 * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
2704 (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
2705 * filename-seen-cache.c: New file.
2706 * filename-seen-cache.h: New file.
2707 * symtab.c: Include "filename-seen-cache.h".
2708 (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
2709 (create_filename_seen_cache, clear_filename_seen_cache)
2710 (delete_filename_seen_cache, filename_seen): Delete, parts moved
2711 to filename-seen-cache.h/filename-seen-cache.c.
2712 (output_source_filename, sources_info)
2713 (maybe_add_partial_symtab_filename)
2714 (make_source_files_completion_list): Adjust to use
2715 filename_seen_cache.
2716
2717 2017-07-17 Pedro Alves <palves@redhat.com>
2718
2719 * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
2720 fields.
2721 (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
2722 dwarf2_debug_sections*)): New.
2723 (dwarf2_per_objfile::dwarf2_per_objfile(const
2724 dwarf2_per_objfile&)): Declare as deleted.
2725 (dwarf2_per_objfile::operator=): Declare as deleted.
2726 (dwarf2_per_objfile::dwarf2_per_objfile)
2727 (dwarf2_per_objfile::~dwarf2_per_objfile)
2728 (dwarf2_per_objfile::free_cached_comp_units): New.
2729 (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
2730 ctor. Call dwarf2_per_objfile's ctor manually.
2731 (dwarf2_locate_sections): Deleted/refactored as ...
2732 (dwarf2_per_objfile::locate_sections): ... this new method.
2733 (free_cached_comp_units): Defer to
2734 dwarf2_per_objfile::free_cached_comp_units.
2735 (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
2736
2737 2017-07-14 Tom Tromey <tom@tromey.com>
2738
2739 PR rust/21764:
2740 * rust-exp.y (convert_ast_to_expression): Add "want_type"
2741 parameter.
2742 <UNOP_SIZEOF>: Split into separate case.
2743 <UNOP_VAR_VALUE>: Handle want_type. Add error case.
2744
2745 2017-07-14 Tom Tromey <tom@tromey.com>
2746
2747 PR rust/21763:
2748 * symtab.c (symbol_matches_domain): Add language_rust to special
2749 case.
2750 * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
2751 treat LOC_TYPEDEF symbols as variables.
2752
2753 2017-07-14 Pedro Alves <palves@redhat.com>
2754
2755 * symtab.c (make_file_symbol_completion_list_1): Iterate over
2756 symtabs matching all symtabs with SRCFILE as file name instead of
2757 only considering the first hit, with lookup_symtab.
2758
2759 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
2760
2761 * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
2762 operator_name parameters.
2763 (gen_expr): Update function call.
2764
2765 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
2766
2767 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
2768 parameter.
2769 * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
2770 Likewise.
2771 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
2772 parameter, use agent_expr::gdbarch instead, update function
2773 calls.
2774 (locexpr_tracepoint_var_ref): Likewise.
2775 (loclist_tracepoint_var_ref): Likewise.
2776 * ax-gdb.c (gen_trace_static_fields): Likewise.
2777 (gen_traced_pop): Likewise.
2778 (gen_frame_args_address): Likewise.
2779 (gen_frame_locals_address): Likewise.
2780 (gen_var_ref): Likewise.
2781 (gen_struct_ref_recursive): Likewise.
2782 (gen_static_field): Likewise.
2783 (gen_maybe_namespace_elt): Likewise.
2784 (gen_expr): Likewise.
2785 (gen_trace_for_var): Likewise.
2786 (gen_trace_for_expr): Likewise.
2787 (gen_trace_for_return_address): Likewise.
2788
2789 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
2790
2791 * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
2792 parameter.
2793 (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
2794
2795 2017-07-14 Simon Marchi <simon.marchi@ericsson.com>
2796
2797 * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
2798 from ax, update calls.
2799 (gen_usual_arithmetic): Likewise.
2800 (gen_integral_promotions): Likewise.
2801 (gen_bitfield_ref): Likewise.
2802 (gen_primitive_field): Likewise.
2803 (gen_struct_ref_recursive): Likewise.
2804 (gen_struct_ref): Likewise.
2805 (gen_maybe_namespace_elt): Likewise.
2806 (gen_struct_elt_for_reference): Likewise.
2807 (gen_namespace_elt): Likewise.
2808 (gen_aggregate_elt_ref): Likewise.
2809 (gen_expr): Get gdbarch from ax, update calls.
2810 (gen_expr_binop_rest): Likewise.
2811
2812 2017-07-13 Pedro Alves <palves@redhat.com>
2813
2814 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
2815 as default tdesc.
2816 * amd64-dicos-tdep.c (amd64_dicos_init_abi):
2817 * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
2818 * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
2819 tdesc_amd64_linux as default tdesc. Get final tdesc from the
2820 tdep.
2821 (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
2822 Get final tdesc from the tdep.
2823 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
2824 default tdesc.
2825 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
2826 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
2827 * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
2828 Use it as default tdesc.
2829 (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
2830 down to amd_init_abi. No longer handle fallback tdesc here.
2831 * amd64-tdep.h (tdesc_x32): Declare.
2832 (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
2833 parameter.
2834 * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
2835 as default tdesc.
2836
2837 2017-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
2838
2839 * s390-linux-tdep.c (s390_process_record): Add support for
2840 instructions new in arch12.
2841
2842 2017-07-11 John Baldwin <jhb@FreeBSD.org>
2843
2844 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
2845 PT_GETFSBASE and PT_GETGSBASE.
2846 (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
2847 PT_SETGSBASE.
2848
2849 2017-07-11 John Baldwin <jhb@FreeBSD.org>
2850
2851 * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
2852 (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
2853 (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
2854 those rules.
2855 * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
2856 * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
2857 * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
2858 * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
2859 * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
2860 * features/i386/amd64.xml: Add 64bit-segments.xml.
2861 * features/i386/amd64-avx-avx512.c: Regenerated.
2862 * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
2863 * features/i386/amd64-avx-mpx.c: Regenerated.
2864 * features/i386/amd64-avx.c: Regenerated.
2865 * features/i386/amd64-mpx.c: Regenerated.
2866 * features/i386/amd64.c: Regenerated.
2867 * regformats/i386/amd64-avx-avx512.dat: Regenerated.
2868 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
2869 * regformats/i386/amd64-avx-mpx.dat: Regenerated.
2870 * regformats/i386/amd64-avx.dat: Regenerated.
2871 * regformats/i386/amd64-mpx.dat: Regenerated.
2872 * regformats/i386/amd64.dat: Regenerated.
2873
2874 2017-07-10 Yao Qi <yao.qi@linaro.org>
2875
2876 * features/i386/amd64-avx-avx512-linux.c: Re-generated.
2877 * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
2878
2879 2017-07-10 Anton Kolesov <Anton.Kolesov@synopsys.com>
2880
2881 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
2882 unsetenv.
2883 * gnulib/aclocal.m4: Regenerate.
2884 * gnulib/config.in: Regenerate.
2885 * gnulib/configure: Regenerate.
2886 * gnulib/import/Makefile.am: Regenerate.
2887 * gnulib/import/Makefile.in: Regenerate.
2888 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
2889 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
2890 * gnulib/import/m4/environ.m4: New file.
2891 * gnulib/import/m4/setenv.m4: New file.
2892 * gnulib/import/setenv.c: New file.
2893 * gnulib/import/unsetenv.c: New file.
2894
2895 2017-07-09 Simon Marchi <simon.marchi@ericsson.com>
2896
2897 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
2898 address when op is DW_OP_addr.
2899
2900 2017-07-09 Tom Tromey <tom@tromey.com>
2901
2902 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
2903 check and apply to outer type.
2904
2905 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2906
2907 * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
2908 (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
2909 (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
2910 (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
2911
2912 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2913
2914 * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
2915
2916 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2917
2918 * corelow.c (get_core_siginfo): Remove.
2919 (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
2920 instead of get_core_siginfo.
2921 * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
2922 * gdbarch.h: Re-generate.
2923 * gdbarch.c: Re-generate.
2924 * linux-tdep.c (linux_core_xfer_siginfo): New.
2925 (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
2926
2927 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2928
2929 * corelow.c (thread_section_name): Move to ...
2930 * gdbcore.h (thread_section_name): ... here.
2931
2932 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2933
2934 * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
2935 (struct siginfo32): New.
2936 [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
2937 (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
2938 via ptrace(PT_LWPINFO).
2939
2940 2017-07-07 John Baldwin <jhb@FreeBSD.org>
2941
2942 * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
2943 (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
2944 (fbsd_get_siginfo_type): New.
2945 (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
2946 (_initialize_fbsd_tdep): New.
2947
2948 2017-07-06 David Blaikie <dblaikie@gmail.com>
2949
2950 * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
2951 a singular dwo_unit*) to support multiple CUs in the same way that
2952 multiple TUs are supported.
2953 (create_cus_hash_table): Replace create_dwo_cu with a function for
2954 parsing multiple CUs from a DWO file.
2955 (open_and_init_dwo_file): Use create_cus_hash_table rather than
2956 create_dwo_cu.
2957 (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
2958 htab_find, rather than comparing the signature to a singleton CU in
2959 the dwo_file.
2960
2961 2017-07-06 Pedro Alves <palves@redhat.com>
2962
2963 * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
2964
2965 2017-07-04 Pedro Alves <palves@redhat.com>
2966
2967 * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
2968 * gdbtypes.h (TYPE_STATIC): Delete.
2969 (struct fn_field) <is_public, is_abstract, is_static, is_final,
2970 is_synchronized, is_native>: Delete.
2971 <dummy>: Bump.
2972 (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
2973 (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
2974 (TYPE_FN_FIELD_ABSTRACT): Delete.
2975
2976 2017-07-03 Simon Marchi <simon.marchi@ericsson.com>
2977
2978 * buffer.h (buffer_finish): Fix spelling mistakes.
2979
2980 2017-07-01 Eli Zaretskii <eliz@gnu.org>
2981
2982 * .dir-locals.el: Automatically switch to C-style comments in
2983 versions of Emacs that support the feature.
2984
2985 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
2986 Pedro Alves <palves@redhat.com>
2987
2988 PR cli/21688
2989 * cli/cli-script.c (command_name_equals_not_inline): Remove function.
2990 (process_next_line): New variable 'inline_cmd'.
2991 Adjust 'if' clauses for "python", "compile" and "guile" to use
2992 'command_name_equals' and check for '!inline_cmd'.
2993
2994 2017-06-30 Sergio Durigan Junior <sergiodj@redhat.com>
2995
2996 PR cli/21688
2997 * cli/cli-script.c (command_name_equals_not_inline): New function.
2998 (process_next_line): Adjust 'if' clauses for "python", "compile"
2999 and "guile" to use command_name_equals_not_inline.
3000
3001 2017-06-29 Pedro Alves <palves@redhat.com>
3002
3003 * completer.c (expression_completer): Call
3004 linespec_location_completer instead of location_completer.
3005
3006 2017-06-29 Pedro Alves <palves@redhat.com>
3007
3008 * completer.c (expression_completer): Remove code that recomputes
3009 'text' from 'word'.
3010
3011 2017-06-29 Yao Qi <yao.qi@linaro.org>
3012
3013 * regformats/regdat.sh: Generate code with
3014 "ifndef IN_PROCESS_AGENT".
3015
3016 2017-06-28 Pedro Alves <palves@redhat.com>
3017
3018 * command.h: Include "common/scoped_restore.h".
3019
3020 2017-06-28 Yao Qi <yao.qi@linaro.org>
3021
3022 * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
3023 instead of obstack_grow.
3024
3025 2017-06-28 Doug Gilmore <Doug.Gilmore@imgtec.com>
3026
3027 PR gdb/21337
3028 * symfile.c (reread_symbols): Call objfiles_changed just before
3029 read_symbols.
3030
3031 2017-06-27 Pedro Alves <palves@redhat.com>
3032
3033 * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
3034 (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
3035 (completion_list_add_symbol, completion_list_add_msymbol):
3036 ... these new functions.
3037 (add_symtab_completions)
3038 (default_make_symbol_completion_list_break_on_1): Adjust.
3039
3040 2017-06-27 Pedro Alves <palves@redhat.com>
3041
3042 * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
3043 bfd_zalloc. Call objfile_per_bfd_storage's ctor.
3044 (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
3045 dtor.
3046 * objfiles.h (objfile_per_bfd_storage): Add ctor. Make
3047 'storage_obstack' field an auto_obstack. In-class initialize all
3048 non-bitfield fields. Make minsyms_read bool.
3049 * symfile.c (read_symbols): Adjust.
3050
3051 2017-06-27 Alan Hayward <alan.hayward@arm.com>
3052
3053 * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
3054 (gdbsim_store_register): Likewise.
3055
3056 2017-06-27 Pedro Alves <palves@redhat.com>
3057
3058 * c-exp.y (name_obstack): Now an auto_obstack.
3059 (yylex): Use auto_obstack::clear.
3060 (c_parse): Use auto_obstack::clear instead of reinitializing and
3061 freeing the obstack.
3062 * c-lang.c (evaluate_subexp_c): Use auto_obstack.
3063 * d-exp.y (name_obstack): Now an auto_obstack.
3064 (yylex): Use auto_obstack::clear.
3065 (d_parse): Use auto_obstack::clear instead of reinitializing and
3066 freeing the obstack.
3067 * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
3068 auto_obstack.
3069 * dwarf2read.c (create_addrmap_from_index)
3070 (dwarf2_build_psymtabs_hard)
3071 (update_enumeration_type_from_children): Likewise.
3072 * gdb_obstack.h (auto_obstack): New type.
3073 * go-exp.y (name_obstack): Now an auto_obstack.
3074 (build_packaged_name): Use auto_obstack::clear.
3075 (go_parse): Use auto_obstack::clear instead of reinitializing and
3076 freeing the obstack.
3077 * linux-tdep.c (linux_make_mappings_corefile_notes): Use
3078 auto_obstack.
3079 * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
3080 * rust-exp.y (work_obstack): Now an auto_obstack.
3081 (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
3082 reinitializing and freeing the obstack.
3083 * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
3084 (host_char_to_target): Use auto_obstack.
3085 * utils.h (make_cleanup_obstack_free): Delete declaration.
3086 * valprint.c (generic_emit_char, generic_printstr): Use
3087 auto_obstack.
3088
3089 2017-06-27 Simon Marchi <simon.marchi@ericsson.com>
3090
3091 * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
3092 thread.
3093 (darwin_init_thread_list): Don't update dummy thread.
3094 (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
3095
3096 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
3097
3098 * record-full.c (netorder16): Remove.
3099
3100 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
3101
3102 * common/diagnostics.h: Define macros for GCC.
3103 (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
3104 * common/vec.h: Include diagnostics.h.
3105 (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
3106 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
3107 warning.
3108
3109 2017-06-26 Simon Marchi <simon.marchi@ericsson.com>
3110
3111 * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
3112 New macro.
3113 * ada-lex.l: Ignore deprecated register warnings.
3114
3115 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
3116
3117 * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
3118 datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
3119
3120 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
3121
3122 * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
3123 its own line.
3124
3125 2017-06-25 Simon Marchi <simon.marchi@ericsson.com>
3126
3127 * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
3128
3129 2017-06-23 Alan Hayward <alan.hayward@arm.com>
3130
3131 * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
3132 (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
3133 (xtensa_register_read_masked): Likewise.
3134
3135 2017-06-22 Sergio Durigan Junior <sergiodj@redhat.com>
3136
3137 * common/environ.c (gdb_environ::unset): Update comment.
3138
3139 2017-06-22 Alan Hayward <alan.hayward@arm.com>
3140
3141 * python/py-unwind.c (pyuw_sniffer): Allocate space for
3142 registers.
3143
3144 2017-06-22 Alan Hayward <alan.hayward@arm.com>
3145
3146 * record-full.c (record_full_exec_insn): Use byte_vector.
3147
3148 2017-06-22 Yao Qi <yao.qi@linaro.org>
3149
3150 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
3151 * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
3152
3153 2017-06-22 Alan Hayward <alan.hayward@arm.com>
3154
3155 * remote.c (cached_reg): Move from here...
3156 * regcache.h (cached_reg): ...to here.
3157 * python/py-unwind.c (struct reg_info): Remove.
3158 (cached_frame_info): Use cached_reg_t.
3159 (pyuw_prev_register): Likewise.
3160 (pyuw_sniffer): Use cached_reg_t and allocate registers.
3161 (pyuw_dealloc_cache): Free all registers.
3162
3163 2017-06-22 Pedro Alves <palves@redhat.com>
3164 Simon Marchi <simon.marchi@ericsson.com>
3165
3166 * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
3167 warning.
3168 * common/diagnostics.h: New file.
3169
3170 2017-06-22 Pedro Alves <palves@redhat.com>
3171
3172 * common/agent.h: Add include guards.
3173
3174 2017-06-21 Simon Marchi <simon.marchi@ericsson.com>
3175
3176 * target.h (struct target_ops) <to_xfer_partial>: Update doc to
3177 talk about addressable units instead of bytes.
3178
3179 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
3180
3181 * common/environ.c (gdb_environ::unset): Use '::iterator' instead
3182 of '::const_iterator'.
3183
3184 2017-06-20 Sergio Durigan Junior <sergiodj@redhat.com>
3185
3186 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3187 'unittests/environ-selftests.c'.
3188 (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
3189 * charset.c (find_charset_names): Declare object 'iconv_env'.
3190 Update code to use 'iconv_env' object. Remove call to
3191 'free_environ'.
3192 * common/environ.c: Include <utility>.
3193 (make_environ): Delete function.
3194 (free_environ): Delete function.
3195 (gdb_environ::clear): New function.
3196 (gdb_environ::operator=): New function.
3197 (gdb_environ::get): Likewise.
3198 (environ_vector): Delete function.
3199 (set_in_environ): Delete function.
3200 (gdb_environ::set): New function.
3201 (unset_in_environ): Delete function.
3202 (gdb_environ::unset): New function.
3203 (gdb_environ::envp): Likewise.
3204 * common/environ.h: Include <vector>.
3205 (struct gdb_environ): Delete; transform into...
3206 (class gdb_environ): ... this class.
3207 (free_environ): Delete prototype.
3208 (init_environ, get_in_environ, set_in_environ, unset_in_environ,
3209 environ_vector): Likewise.
3210 * infcmd.c (run_command_1): Update code to call
3211 'envp' from 'gdb_environ' class.
3212 (environment_info): Update code to call methods from 'gdb_environ'
3213 class.
3214 (unset_environment_command): Likewise.
3215 (path_info): Likewise.
3216 (path_command): Likewise.
3217 * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
3218 (inferior::inferior): Initialize 'environment' using the host's
3219 information.
3220 * inferior.h: Remove forward declaration of 'struct gdb_environ'.
3221 Include "environ.h".
3222 (class inferior) <environment>: Change type from 'struct
3223 gdb_environ' to 'gdb_environ'.
3224 * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
3225 methods from 'gdb_environ' class.
3226 * solib.c (solib_find_1): Likewise
3227 * unittests/environ-selftests.c: New file.
3228
3229 2017-06-20 Yao Qi <yao.qi@linaro.org>
3230
3231 * features/i386/i386-linux.xml: Exchange the order of including
3232 32bit-linux.xml and 32bit-sse.xml.
3233 * features/i386/i386-linux.c: Regenerated.
3234
3235 2017-06-20 Yao Qi <yao.qi@linaro.org>
3236
3237 * target-descriptions.c (tdesc_reg): Add ctor, dtor.
3238 Delete copy ctor and assignment operator.
3239 (tdesc_type): Likewise.
3240 (tdesc_feature): Likewise.
3241 (tdesc_free_reg): Remove.
3242 (tdesc_create_reg): Use new.
3243 (tdesc_free_type): Remove.
3244 (tdesc_create_vector): Use new.
3245 (tdesc_create_union): Likewise.
3246 (tdesc_create_flags): Likewise.
3247 (tdesc_create_enum): Likewise.
3248 (tdesc_free_feature): Delete.
3249 (free_target_description): Use delete.
3250
3251 2017-06-19 John Baldwin <jhb@FreeBSD.org>
3252
3253 * mips-tdep.c (print_gp_register_row): Don't error for unavailable
3254 registers.
3255
3256 2017-06-19 Pedro Alves <palves@redhat.com>
3257
3258 * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
3259 after gdb::unlinker.
3260
3261 2017-06-19 Sergio Durigan Junior <sergiodj@redhat.com>
3262
3263 * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
3264 gdb_environ to access an environment variable.
3265
3266 2017-06-18 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3267
3268 * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
3269 gdb_byte*.
3270
3271 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
3272
3273 * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
3274
3275 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
3276
3277 * configure: Re-generate.
3278 * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
3279
3280 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
3281
3282 * configure: Re-generate.
3283 * warning.m4: Pass -Werror to compiler when checking for
3284 supported warning flags.
3285
3286 2017-06-17 Simon Marchi <simon.marchi@ericsson.com>
3287
3288 * Makefile.in (COMPILE.pre): Add "-x c++".
3289
3290 2017-06-16 Alan Hayward <alan.hayward@arm.com>
3291 Pedro Alves <palves@redhat.com>
3292 Yao Qi <yao.qi@linaro.org>
3293
3294 * defs.h (RequireLongest): New.
3295 (extract_integer): Declare function template.
3296 (extract_signed_integer): Remove the declaration, but define it
3297 static inline.
3298 (extract_unsigned_integer): Likewise.
3299 (store_integer): Declare function template.
3300 (store_signed_integer): Remove the declaration, but define it
3301 static inline.
3302 (store_unsigned_integer): Likewise.
3303 * findvar.c (extract_integer): New function template.
3304 (extract_signed_integer): Remove.
3305 (extract_unsigned_integer): Remove.
3306 (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
3307 instantiations.
3308 (store_integer): New function template.
3309 (store_signed_integer): Remove.
3310 (store_unsigned_integer): Remove.
3311 (store_integer): Explicit instantiations.
3312 * regcache.c (regcache_raw_read_signed): Update.
3313 (regcache::raw_read): New function.
3314 (regcache::raw_read_signed): Remove.
3315 (regcache::raw_read_unsigned): Remove.
3316 (regcache_raw_read_unsigned): Update.
3317 (regcache_raw_write_unsigned): Update.
3318 (regcache::raw_write_signed): Remove.
3319 (regcache::raw_write): New function.
3320 (regcache_cooked_read_signed): Update.
3321 (regcache::raw_write_unsigned): Remove.
3322 (regcache::cooked_read_signed): Remove.
3323 (regcache_cooked_read_unsigned): Update.
3324 (regcache::cooked_read_unsigned): Remove.
3325 (regcache_cooked_write_signed): Update.
3326 (regcache_cooked_write_unsigned): Update.
3327 * regcache.h (regcache) <raw_read_signed>: Remove.
3328 <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
3329 <raw_read, raw_write>: New.
3330 <cooked_read_signed, cooked_write_signed>: Remove.
3331 <cooked_write_unsigned, cooked_read_unsigned>: Remove.
3332 <cooked_read, cooked_write>: New.
3333 * sh64-tdep.c (sh64_pseudo_register_read): Update.
3334 (sh64_pseudo_register_write): Update.
3335
3336 2017-06-16 Anton Kolesov <anton.kolesov@synopsys.com>
3337
3338 * arc-tdep.c (arc_disassembler_options): New variable.
3339 (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
3340 of default_print_insn.
3341 (arc_delayed_print_insn): Set info->section when needed,
3342 use default_print_insn to retrieve a disassembler.
3343
3344 2017-06-14 Sergio Durigan Junior <sergiodj@redhat.com>
3345
3346 PR gdb/21574
3347 * infcmd.c (_initialize_infcmd): Expand "help run" documentation
3348 to mention $SHELL and startup-with-shell.
3349
3350 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
3351
3352 * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
3353
3354 2017-06-14 Yao Qi <yao.qi@linaro.org>
3355
3356 * aarch64-tdep.c (aarch64_gdb_print_insn): Call
3357 default_print_insn instead of print_insn_aarch64.
3358 * arm-tdep.c (gdb_print_insn_arm): Call
3359 default_print_insn instead of print_insn_big_arm
3360 and print_insn_little_arm.
3361 * i386-tdep.c (i386_print_insn): Call default_print_insn
3362 instead of print_insn_i386.
3363 * ia64-tdep.c (ia64_print_insn): Call
3364 default_print_insn instead of print_insn_ia64.
3365 * mips-tdep.c (gdb_print_insn_mips): Call
3366 default_print_insn instead of print_insn_big_mips
3367 and print_insn_little_mips.
3368 * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
3369 instead of print_insn_spu.
3370
3371 2017-06-14 Pedro Alves <palves@redhat.com>
3372
3373 * ada-lang.c: Include "common/byte-vector.h".
3374 (ada_value_primitive_packed_val): Use gdb::byte_vector.
3375 * charset.c (wchar_iterator::iterate): Resize the vector instead
3376 of reserving it.
3377 * common/byte-vector.h: Include "common/def-vector.h".
3378 (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
3379 * cli/cli-dump.c: Include "common/byte-vector.h".
3380 (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
3381 * common/byte-vector.h: New file.
3382 * common/def-vector.h: New file.
3383 * common/default-init-alloc.h: New file.
3384 * dwarf2loc.c: Include "common/byte-vector.h".
3385 (rw_pieced_value): Use gdb::byte_vector, and resize the vector
3386 instead of reserving it.
3387 * dwarf2read.c: Include "common/byte-vector.h".
3388 (data_buf::m_vec): Now a gdb::byte_vector.
3389 * gdb_regex.c: Include "common/def-vector.h".
3390 (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
3391 * mi/mi-main.c: Include "common/byte-vector.h".
3392 (mi_cmd_data_read_memory): Use gdb::byte_vector.
3393 * printcmd.c: Include "common/byte-vector.h".
3394 (print_scalar_formatted): Use gdb::byte_vector.
3395 * valprint.c: Include "common/byte-vector.h".
3396 (maybe_negate_by_bytes, print_decimal_chars): Use
3397 gdb::byte_vector.
3398
3399 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
3400
3401 * darwin-nat.c: Include "nat/fork-inferior.h".
3402
3403 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
3404
3405 * configure.nat: Factor out Darwin bits that are not
3406 architecture-specific. Add fork-inferior.o.
3407
3408 2017-06-13 Simon Marchi <simon.marchi@ericsson.com>
3409
3410 * configure.nat: Factor out AIX bits that are not
3411 architecture-specific. Add fork-inferior.o.
3412
3413 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3414
3415 * dwarf2loc.c (rw_pieced_value): New. Merge logic from...
3416 (read_pieced_value, write_pieced_value): ...here. Reduce to
3417 wrappers that just call rw_pieced_value.
3418
3419 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3420
3421 * dwarf2loc.c (write_pieced_value): When writing the data for a
3422 memory piece, use write_memory_with_notification instead of
3423 write_memory.
3424
3425 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3426
3427 * valops.c (read_value_memory): Change embedded_offset to
3428 represent a bit offset instead of a byte offset.
3429 * value.h (read_value_memory): Adjust comment.
3430
3431 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3432
3433 * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
3434 dest_offset_bits and source_offset_bits.
3435 (write_pieced_value): Likewise.
3436
3437 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3438
3439 * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
3440 given by DW_OP_bit_piece.
3441 (write_pieced_value): Likewise.
3442
3443 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3444
3445 * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
3446 some other preparations to the places where sufficient information
3447 is available.
3448 (write_pieced_value): Likewise.
3449
3450 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3451
3452 * dwarf2loc.c (bits_to_bytes): New function.
3453 (read_pieced_value): Fix offset calculations for register pieces
3454 on big-endian targets.
3455 (write_pieced_value): Likewise.
3456
3457 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3458
3459 * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
3460 (write_pieced_value): Likewise.
3461
3462 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3463
3464 * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
3465 transfer the source value's least significant bits, instead of its
3466 lowest-addressed ones. Rename type_len to max_offset.
3467 (read_pieced_value): Mirror above changes to write_pieced_value as
3468 applicable.
3469
3470 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3471
3472 * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
3473 truncate full bytes from dest_offset_bits before using it as an
3474 offset into the buffer.
3475
3476 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3477
3478 * dwarf2loc.c (write_pieced_value): Include transfer size in
3479 byte-wise check.
3480
3481 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3482
3483 * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
3484 calculation of this_size.
3485
3486 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3487
3488 * dwarf2loc.c (read_pieced_value): Respect parent value's offset
3489 when targeting a bit-field.
3490 (write_pieced_value): Likewise.
3491
3492 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3493
3494 * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
3495 (allocate_piece_closure): Drop addr_size parameter.
3496 (dwarf2_evaluate_loc_desc_full): Adjust call to
3497 allocate_piece_closure.
3498
3499 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3500
3501 PR gdb/21226
3502 * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
3503 the LSB end, independent of endianness.
3504
3505 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3506
3507 * dwarf2loc.c (write_pieced_value): Fix order of calculations for
3508 size capping.
3509
3510 2017-06-13 Yao Qi <yao.qi@linaro.org>
3511
3512 * mips-linux-nat.c: Move include features/mips*-linux.c to
3513 mips-linux-tdep.c.
3514 (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
3515 to mips-linux-tdep.c.
3516 * mips-linux-tdep.c: Include features/mips*-linux.c
3517 (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
3518 functions.
3519 * mips-linux-tdep.h (tdesc_mips_linux): Declare.
3520 (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
3521 (tdesc_mips64_dsp_linux): Declare.
3522
3523 2017-06-12 Tom Tromey <tom@tromey.com>
3524
3525 * valprint.h (val_print_type_code_int): Remove.
3526 * valprint.c (generic_val_print_int): Always call
3527 val_print_scalar_formatted.
3528 (val_print_type_code_int): Remove.
3529 * printcmd.c (print_scalar_formatted): Handle options->format==0.
3530 * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
3531 * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
3532 * ada-valprint.c (ada_val_print_num): Use
3533 val_print_scalar_formatted.
3534
3535 2017-06-12 Tom Tromey <tom@tromey.com>
3536
3537 * printcmd.c (print_scalar_formatted): Unify the two switches.
3538 Don't convert scalars to LONGEST.
3539
3540 2017-06-12 Tom Tromey <tom@tromey.com>
3541
3542 PR exp/16225:
3543 * valprint.h (print_decimal_chars): Update.
3544 * valprint.c (maybe_negate_by_bytes): New function.
3545 (print_decimal_chars): Add "is_signed" argument.
3546 * printcmd.c (print_scalar_formatted): Update.
3547
3548 2017-06-12 Tom Tromey <tom@tromey.com>
3549
3550 PR exp/16225:
3551 * valprint.h (print_binary_chars, print_hex_chars): Update.
3552 * valprint.c (val_print_type_code_int): Update.
3553 (print_binary_chars): Add "zero_pad" argument.
3554 (emit_octal_digit): New function.
3555 (print_octal_chars): Don't zero-pad.
3556 (print_decimal_chars): Likewise.
3557 (print_hex_chars): Add "zero_pad" argument.
3558 * sh64-tdep.c (sh64_do_fp_register): Update.
3559 * regcache.c (regcache::dump): Update.
3560 * printcmd.c (print_scalar_formatted): Update.
3561 * infcmd.c (default_print_one_register_info): Update.
3562
3563 2017-06-12 Pedro Alves <palves@redhat.com>
3564 Alan Hayward <alan.hayward@arm.com>
3565
3566 * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
3567 (mips_eabi_push_dummy_call): Rename local 'regsize' to
3568 'abi_regsize'. Rename local array 'valbuf' to 'ref_valbuf', and
3569 use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
3570 Assert that abi_regsize bytes fit in 'ref_valbuf'.
3571
3572 2017-06-12 Pedro Alves <palves@redhat.com>
3573
3574 * dwarf2read.c (mapped_symtab::data): Now a vector of
3575 symtab_index_entry instead of vector of
3576 std::unique_ptr<symtab_index_entry>. All users adjusted to check
3577 whether an element's name is NULL instead of checking whether the
3578 element itself is NULL.
3579 (find_slot): Change return type. Adjust.
3580 (hash_expand, , add_index_entry, uniquify_cu_indices)
3581 (write_hash_table): Adjust.
3582
3583 2017-06-12 Pedro Alves <palves@redhat.com>
3584
3585 * dwarf2read.c (recursively_count_psymbols): New function.
3586 (write_psymtabs_to_index): Call it to compute number of psyms and
3587 pass estimate size of psyms_seen to unordered_set's ctor.
3588
3589 2017-06-12 Pedro Alves <palves@redhat.com>
3590
3591 * dwarf2read.c (write_hash_table): Check if key already exists
3592 before emplacing.
3593
3594 2017-06-12 Pedro Alves <palves@redhat.com>
3595
3596 * dwarf2read.c (data_buf::append_space): Rename to...
3597 (data_buf::grow): ... this, and make private. Adjust all callers.
3598 (data_buf::append_uint): New method.
3599 (add_address_entry, write_one_signatured_type)
3600 (write_psymtabs_to_index): Use it.
3601
3602 2017-06-12 Pedro Alves <palves@redhat.com>
3603
3604 * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
3605 (file_write (FILE *, const std::vector<Elem>&)): Delete.
3606 (data_buf::file_write): Call ::fwrite directly.
3607
3608 2017-06-12 Pedro Alves <palves@redhat.com>
3609
3610 * dwarf2read.c (uniquify_cu_indices): Use std::unique and
3611 std::vector::erase.
3612
3613 2017-06-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3614
3615 Code cleanup: C++ify .gdb_index producer.
3616 * dwarf2read.c: Include <unordered_set> and <unordered_map>.
3617 (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
3618 (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
3619 (create_strtab, add_string): Remove.
3620 (file_write, data_buf): New.
3621 (struct symtab_index_entry): Use std::vector for cu_indices.
3622 (struct mapped_symtab): Use std::vector for data.
3623 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
3624 (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
3625 Remove.
3626 (find_slot): Change return type. Update it to the new data structures.
3627 (hash_expand, add_index_entry): Update it to the new data structures.
3628 (offset_type_compare): Remove.
3629 (uniquify_cu_indices): Update it to the new data structures.
3630 (c_str_view, c_str_view_hasher, vector_hasher): New.
3631 (add_indices_to_cpool): Remove.
3632 (write_hash_table): Update it to the new data structures.
3633 (struct psymtab_cu_index_map, hash_psymtab_cu_index)
3634 (eq_psymtab_cu_index): Remove.
3635 (psym_index_map): New typedef.
3636 (struct addrmap_index_data): Change addr_obstack pointer to data_buf
3637 reference and std::unordered_map for cu_index_htab.
3638 (add_address_entry, add_address_entry_worker, write_address_map)
3639 (write_psymbols): Update it to the new data structures.
3640 (write_obstack): Remove.
3641 (struct signatured_type_index_data): Change types_list to a data_buf
3642 reference and psyms_seen to a std::unordered_set reference.
3643 (write_one_signatured_type, recursively_write_psymbols)
3644 (write_psymtabs_to_index): Update it to the new data structures.
3645
3646 2017-06-11 Simon Marchi <simon.marchi@ericsson.com>
3647
3648 * NEWS (Changes since GDB 8.0): Announce {set,show} debug
3649 separate-debug-file commands.
3650 * symfile.h (separate_debug_file_debug): New global.
3651 * symfile.c (separate_debug_file_debug): New global.
3652 (separate_debug_file_exists, find_separate_debug_file): Add
3653 debug output.
3654 (_initialize_symfile): Add "set debug separate-debug-file"
3655 command.
3656 * build-id.c (build_id_to_debug_bfd,
3657 find_separate_debug_file_by_buildid): Add debug output.
3658
3659 2017-06-10 Simon Marchi <simon.marchi@polymtl.ca>
3660
3661 * gdbarch.sh (displaced_step_free_closure): Remove.
3662 * gdbarch.h, gdbarch.c: Re-generate.
3663 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
3664 displaced_step_free_closure.
3665 * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
3666 * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
3667 * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
3668 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
3669 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
3670 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
3671 * arch-utils.h (simple_displaced_step_free_closure): Remove.
3672 * arch-utils.c (simple_displaced_step_free_closure): Remove.
3673 * infrun.c (displaced_step_clear): Call xfree instead of
3674 gdbarch_displaced_step_free_closure.
3675
3676 2017-06-08 Sergio Durigan Junior <sergiodj@redhat.com>
3677
3678 * common/common-utils.c (stringify_argv): Check for "arg[0] !=
3679 NULL".
3680
3681 2017-06-08 Alan Hayward <alan.hayward@arm.com>
3682
3683 * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
3684 (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
3685 (mn10300_push_dummy_call): Likewise.
3686
3687 2017-06-08 Alan Hayward <alan.hayward@arm.com>
3688
3689 * mi/mi-main.c (register_changed_p): Use value_contents_eq.
3690
3691 2017-06-08 Alan Hayward <alan.hayward@arm.com>
3692
3693 * mi/mi-main.c (register_changed_p): Use cooked_read_value.
3694
3695 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
3696
3697 * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
3698 able to start inferiors using a shell.
3699 (New remote packets): Announce new packet "QStartupWithShell".
3700 * remote.c: Add PACKET_QStartupWithShell.
3701 (extended_remote_create_inferior): Handle new
3702 PACKET_QStartupWithShell.
3703 (remote_protocol_features) <QStartupWithShell>: New entry for
3704 PACKET_QStartupWithShell.
3705 (_initialize_remote): Call "add_packet_config_cmd" for
3706 QStartupShell.
3707
3708 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
3709 Pedro Alves <palves@redhat.com>
3710
3711 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
3712 and "nat/fork-inferior.h".
3713 * common/common-inferior.h: New file, with contents from
3714 "gdb/inferior.h".
3715 * commom/common-utils.c: Include "common-utils.h".
3716 (stringify_argv): New function.
3717 * common/common-utils.h (stringify_argv): New prototype.
3718 * configure.nat: Add "fork-inferior.o" as a dependency for
3719 "*linux*", "fbsd*" and "nbsd*" hosts.
3720 * corefile.c (get_exec_file): Update comment.
3721 * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
3722 instead of "startup_inferior".
3723 (darwin_create_inferior): Call "add_thread_silent" after
3724 "fork_inferior".
3725 * fork-child.c: Cleanup unnecessary includes.
3726 (SHELL_FILE): Move to "common/common-fork-child.c".
3727 (environ): Likewise.
3728 (exec_wrapper): Initialize.
3729 (get_exec_wrapper): New function.
3730 (breakup_args): Move to "common/common-fork-child.c"; rename to
3731 "breakup_args_for_exec".
3732 (escape_bang_in_quoted_argument): Move to
3733 "common/common-fork-child.c".
3734 (saved_ui): New variable.
3735 (prefork_hook): New function.
3736 (postfork_hook): Likewise.
3737 (postfork_child_hook): Likewise.
3738 (gdb_startup_inferior): Likewise.
3739 (fork_inferior): Move to "common/common-fork-child.c". Update
3740 function to support gdbserver.
3741 (startup_inferior): Likewise.
3742 * gdbcore.h (get_exec_file): Remove declaration.
3743 * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
3744 instead of "startup_inferior". Call "add_thread_silent" after
3745 "fork_inferior".
3746 * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
3747 (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
3748 instead of "startup_inferior". Call "add_thread_silent" after
3749 "fork_inferior".
3750 * inferior.h: Include "common-inferior.h".
3751 (trace_start_error): Move to "common/common-utils.h".
3752 (trace_start_error_with_name): Likewise.
3753 (fork_inferior): Move prototype to "nat/fork-inferior.h".
3754 (startup_inferior): Likewise.
3755 (gdb_startup_inferior): New prototype.
3756 * nat/fork-inferior.c: New file, with contents from "fork-child.c".
3757 * nat/fork-inferior.h: New file.
3758 * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
3759 instead of "startup_inferior". Call "add_thread_silent" after
3760 "fork_inferior".
3761 * target.h (target_terminal_init): Move prototype to
3762 "target/target.h".
3763 (target_terminal_inferior): Likewise.
3764 (target_terminal_ours): Likewise.
3765 * target/target.h (target_terminal_init): New prototype, moved
3766 from "target.h".
3767 (target_terminal_inferior): Likewise.
3768 (target_terminal_ours): Likewise.
3769 * utils.c (gdb_flush_out_err): New function.
3770
3771 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
3772
3773 * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
3774 * common/common-gdbthread.h: New file, with parts from
3775 "gdb/gdbthread.h".
3776 * gdbthread.h: Include "common-gdbthread.h".
3777 (switch_to_thread): Moved to "common/common-gdbthread.h".
3778
3779 2017-06-07 Sergio Durigan Junior <sergiodj@redhat.com>
3780
3781 * Makefile.in (SFILES): Add "common/job-control.c".
3782 (HFILES_NO_SRCDIR): Add "common/job-control.h".
3783 (COMMON_OBS): Add "job-control.o".
3784 * common/job-control.c: New file, with contents from
3785 "gdb/inflow.c".
3786 * common/job-control.h: New file, with contents from "terminal.h".
3787 * fork-child.c: Include "job-control.h".
3788 * inflow.c: Include "job-control.h".
3789 (gdb_setpgid): Move to "common/common-inflow.c".
3790 (_initialize_inflow): Move setting of "job_control" to
3791 "handle_job_control".
3792 * terminal.h (job_control): Moved to "common/common-terminal.h".
3793 (gdb_setpgid): Likewise.
3794 * top.c: Include "job_control.h".
3795 * utils.c: Likewise.
3796 (job_control): Moved to "job-control.c".
3797
3798 2017-06-07 Pedro Alves <palves@redhat.com>
3799
3800 * Makefile.in (SFILES): Add gdb_regex.c.
3801 (COMMON_OBS): Add gdb_regex.o.
3802 * ada-lang.c (ada_add_standard_exceptions)
3803 (ada_add_exceptions_from_frame, name_matches_regex)
3804 (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
3805 parameter type to compiled_regex. Adjust.
3806 (ada_exceptions_list): Use compiled_regex.
3807 * break-catch-throw.c (exception_catchpoint::pattern): Now a
3808 std::unique_ptr<compiled_regex>.
3809 (exception_catchpoint::~exception_catchpoint): Remove regfree
3810 call.
3811 (check_status_exception_catchpoint): Adjust to use compiled_regex.
3812 (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
3813 * breakpoint.c (solib_catchpoint::compiled): Now a
3814 std::unique_ptr<compiled_regex>.
3815 (solib_catchpoint::~solib_catchpoint): Remove regfree call.
3816 (check_status_catch_solib): Adjust to use compiled_regex.
3817 (add_solib_catchpoint): Adjust to use compiled_regex.
3818 * cli/cli-cmds.c (apropos_command): Use compiled_regex.
3819 * cli/cli-decode.c (apropos_cmd): Change regex parameter to
3820 compiled_regex reference. Adjust to use it.
3821 * cli/cli-decode.h: Remove struct re_pattern_buffer forward
3822 declaration. Include "gdb_regex.h".
3823 (apropos_cmd): Change regex parameter to compiled_regex reference.
3824 * gdb_regex.c: New file.
3825 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
3826 declarations.
3827 (class compiled_regex): New.
3828 * linux-tdep.c: Include "common/gdb_optional.h".
3829 (struct mapping_regexes): New, factored out from
3830 mapping_is_anonymous_p, and adjusted to use compiled_regex.
3831 (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
3832 gdb::optional and remove cleanups. Adjust to compiled_regex.
3833 * probe.c: Include "common/gdb_optional.h".
3834 (collect_probes): Use compiled_regex and gdb::optional and remove
3835 cleanups.
3836 * skip.c: Include "common/gdb_optional.h".
3837 (skiplist_entry::compiled_function_regexp): Now a
3838 gdb::optional<compiled_regex>.
3839 (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
3840 (free_skiplist_entry): Remove regfree call.
3841 (compile_skip_regexp, skip_rfunction_p): Adjust to use
3842 compiled_regex and gdb::optional.
3843 * symtab.c: Include "common/gdb_optional.h".
3844 (search_symbols): Use compiled_regex and gdb::optional.
3845 * utils.c (do_regfree_cleanup, make_regfree_cleanup)
3846 (get_regcomp_error, compile_rx_or_error): Delete. Some bits moved
3847 to gdb_regex.c.
3848
3849 2017-06-07 Alan Hayward <alan.hayward@arm.com>
3850
3851 * regcache.c (regcache::save): Avoid buffer use.
3852 (regcache::dump): Likewise.
3853
3854 2017-06-07 Alan Hayward <alan.hayward@arm.com>
3855
3856 * sh-tdep.c (sh_pseudo_register_read): Remove
3857 MAX_REGISTER_SIZE.
3858 (sh_pseudo_register_write): Likewise.
3859 * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
3860 (sh64_pseudo_register_write): Likewise
3861
3862 2017-06-07 Alan Hayward <alan.hayward@arm.com>
3863
3864 * aarch64-tdep.c (aarch64_store_return_value): Use
3865 V_REGISTER_SIZE.
3866 (aarch64_pseudo_read_value): Likewise.
3867 (aarch64_pseudo_write): Likewise.
3868
3869 2017-06-06 Yao Qi <yao.qi@linaro.org>
3870
3871 * regformats/regdef.h (set_register_cache): Remove the
3872 declaration.
3873
3874 2017-06-06 Alan Hayward <alan.hayward@arm.com>
3875
3876 * frame.c (frame_unwind_register_signed): Use
3877 frame_unwind_register_value.
3878
3879 2017-06-06 Pedro Alves <palves@redhat.com>
3880
3881 PR breakpoints/21553
3882 * breakpoint.c (create_breakpoints_sal_default)
3883 (init_breakpoint_sal, create_breakpoint_sal): Use
3884 gdb::unique_xmalloc_ptr for string parameters.
3885 (create_breakpoint): Constify 'extra_string' and 'cond_string'
3886 parameters. Replace cleanups with gdb::unique_xmalloc_ptr.
3887 (base_breakpoint_create_breakpoints_sal)
3888 (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
3889 (strace_marker_create_breakpoints_sal)
3890 (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
3891 string parameters.
3892 * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
3893 gdb::unique_xmalloc_ptr for string parameters.
3894 (create_breakpoint): Constify 'extra_string' and 'cond_string'
3895 parameters.
3896
3897 2017-06-06 Alan Hayward <alan.hayward@arm.com>
3898
3899 * alpha-tdep.c (alpha_register_to_value): Use
3900 get_frame_register_value.
3901 (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
3902
3903 2017-06-06 Alan Hayward <alan.hayward@arm.com>
3904
3905 * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
3906 (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
3907 (ia64_value_to_register): Likewise.
3908 (ia64_extract_return_value): Likewise.
3909 (ia64_store_return_value): Likewise.
3910 (ia64_push_dummy_call): Likewise.
3911
3912 2017-06-04 Joel Brobecker <brobecker@adacore.com>
3913
3914 GDB 8.0 released.
3915
3916 2017-06-03 Simon Marchi <simon.marchi@ericsson.com>
3917
3918 * x86-linux-nat.c (struct arch_lwp_info): Remove.
3919
3920 2017-06-03 Simon Marchi <simon.marchi@polymtl.ca>
3921
3922 * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
3923 parameter.
3924 (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
3925
3926 2017-06-02 Simon Marchi <simon.marchi@ericsson.com>
3927
3928 * event-loop.c (poll_timers): Unallocate timer using delete
3929 instead of xfree.
3930
3931 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
3932
3933 * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
3934 (struct breakpoint) <~breakpoint>: New.
3935 (struct watchpoint): Inherit from breakpoint.
3936 <~watchpoint>: New.
3937 <base>: Remove.
3938 (struct tracepoint): Inherit from breakpoint.
3939 <base>: Remove.
3940 * breakpoint.c (longjmp_breakpoint_ops): Remove.
3941 (struct longjmp_breakpoint): Inherit from breakpoint.
3942 <~longjmp_breakpoint>: New.
3943 <base>: Remove.
3944 (new_breakpoint_from_type): Remove casts.
3945 (watchpoint_in_thread_scope): Remove reference to base field.
3946 (watchpoint_del_at_next_stop): Likewise.
3947 (update_watchpoint): Likewise.
3948 (watchpoint_check): Likewise.
3949 (bpstat_check_watchpoint): Likewise.
3950 (set_longjmp_breakpoint): Likewise.
3951 (struct fork_catchpoint): Inherit from breakpoint.
3952 <base>: Remove.
3953 (struct solib_catchpoint): Inherit from breakpoint.
3954 <~solib_catchpoint>: New.
3955 <base>: Remove.
3956 (dtor_catch_solib): Change to ...
3957 (solib_catchpoint::~solib_catchpoint): ... this.
3958 (breakpoint_hit_catch_solib): Remove reference to base field.
3959 (add_solib_catchpoint): Likewise.
3960 (create_fork_vfork_event_catchpoint): Likewise.
3961 (struct exec_catchpoint): Inherit from breakpoint.
3962 <~exec_catchpoint>: New.
3963 <base>: Remove.
3964 (dtor_catch_exec): Change to ...
3965 (exec_catchpoint::~exec_catchpoint): ... this.
3966 (dtor_watchpoint): Change to ...
3967 (watchpoint::~watchpoint): ... this.
3968 (watch_command_1): Remove reference to base field.
3969 (catch_exec_command_1): Likewise.
3970 (base_breakpoint_dtor): Change to ...
3971 (breakpoint::~breakpoint): ... this.
3972 (base_breakpoint_ops): Remove dtor field value.
3973 (longjmp_bkpt_dtor): Change to ...
3974 (longjmp_breakpoint::~longjmp_breakpoint): ... this.
3975 (strace_marker_create_breakpoints_sal): Remove reference to base
3976 field.
3977 (delete_breakpoint): Don't manually call breakpoint destructor.
3978 (create_tracepoint_from_upload): Remove reference to base field.
3979 (trace_pass_set_count): Likewise.
3980 (initialize_breakpoint_ops): Don't initialize
3981 momentary_breakpoint_ops, don't set dtors.
3982 * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
3983 <~ada_catchpoint>: New.
3984 <base>: Remove.
3985 (create_excep_cond_exprs): Remove reference to base field.
3986 (dtor_exception): Change to ...
3987 (ada_catchpoint::~ada_catchpoint): ... this.
3988 (dtor_catch_exception): Remove.
3989 (dtor_catch_exception_unhandled): Remove.
3990 (dtor_catch_assert): Remove.
3991 (create_ada_exception_catchpoint): Remove reference to base
3992 field.
3993 (initialize_ada_catchpoint_ops): Don't set dtors.
3994 * break-catch-sig.c (struct signal_catchpoint): Inherit from
3995 breakpoint.
3996 <~signal_catchpoint>: New.
3997 <base>: Remove.
3998 (signal_catchpoint_dtor): Change to ...
3999 (signal_catchpoint::~signal_catchpoint): ... this.
4000 (create_signal_catchpoint): Remove reference to base field.
4001 (initialize_signal_catchpoint_ops): Don't set dtor.
4002 * break-catch-syscall.c (struct syscall_catchpoint): Inherit
4003 from breakpoint.
4004 <~syscall_catchpoint>: New.
4005 <base>: Remove.
4006 (dtor_catch_syscall): Change to ...
4007 (syscall_catchpoint::~syscall_catchpoint): ... this.
4008 (create_syscall_event_catchpoint): Remove reference to base
4009 field.
4010 (initialize_syscall_catchpoint_ops): Don't set dtor.
4011 * break-catch-throw.c (struct exception_catchpoint): Inherit
4012 from breakpoint.
4013 <~exception_catchpoint>: New.
4014 <base>: Remove.
4015 (dtor_exception_catchpoint): Change to ...
4016 (exception_catchpoint::~exception_catchpoint): ... this.
4017 (handle_gnu_v3_exceptions): Remove reference to base field.
4018 (initialize_throw_catchpoint_ops): Don't set dtor.
4019 * ctf.c (ctf_get_traceframe_address): Remove reference to base
4020 field.
4021 * remote.c (remote_get_tracepoint_status): Likewise.
4022 * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
4023 * tracefile.c (tracefile_fetch_registers): Likewise.
4024 * tracepoint.c (actions_command): Likewise.
4025 (validate_actionline): Likewise.
4026 (tfind_1): Likewise.
4027 (get_traceframe_location): Likewise.
4028 (find_matching_tracepoint_location): Likewise.
4029 (parse_tracepoint_status): Likewise.
4030 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
4031
4032 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
4033
4034 * breakpoint.c (struct longjmp_breakpoint): New struct.
4035 (is_tracepoint_type): Change return type to bool.
4036 (is_longjmp_type): New function.
4037 (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
4038 (set_raw_breakpoint_without_location): Use
4039 new_breakpoint_from_type.
4040 (set_raw_breakpoint): Likewise.
4041
4042 2017-06-02 Simon Marchi <simon.marchi@polymtl.ca>
4043
4044 * breakpoint.c (new_breakpoint_from_type): New function.
4045 (create_breakpoint_sal): Use new_breakpoint_from_type and
4046 unique_ptr.
4047 (create_breakpoint): Likewise.
4048
4049 2017-05-31 Simon Marchi <simon.marchi@ericsson.com>
4050
4051 * memattr.c (mem_info_command): Rename to ...
4052 (info_mem_command): ... this.
4053 (mem_enable_command): Rename to ...
4054 (enable_mem_command): ... this.
4055 (mem_disable_command): Rename to ...
4056 (disable_mem_command): ... this.
4057 (mem_delete_command): Rename to ...
4058 (delete_mem_command): ... this.
4059 (_initialize_mem): Adjust function names.
4060
4061 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
4062
4063 * btrace.c (handle_pt_insn_events): New.
4064 (ftrace_add_pt): Call handle_pt_insn_events. Rename ERRCODE into
4065 STATUS. Split into this and ...
4066 (handle_pt_insn_event_flags): ... this.
4067
4068 2017-05-31 Markus Metzger <markus.t.metzger@intel.com>
4069
4070 * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
4071 and struct pt_insn.resynced.
4072 * configure: Regenerated.
4073 * config.in: Regenerated.
4074
4075 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4076
4077 * btrace.c (ftrace_find_call_by_number): New function.
4078 (ftrace_new_function): Store objects, not pointers.
4079 (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
4080 ftrace_new_gap, ftrace_update_function,
4081 ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
4082 btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
4083 btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
4084 btrace_ends_with_single_insn, btrace_call_get): Account for
4085 btrace_thread_info::functions now storing objects.
4086 * btrace.h (struct btrace_thread_info): Add constructor.
4087 (struct btrace_thread_info) <functions>: Make std::vector.
4088 (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
4089 Initialize with default values.
4090 * record-btrace.c (record_btrace_frame_sniffer): Account for
4091 btrace_thread_info::functions now storing objects.
4092
4093 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4094
4095 * btrace.c: Remove typedef bfun_s.
4096 (ftrace_new_gap): Directly add gaps to the list of gaps.
4097 (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
4098 ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
4099 btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
4100 instead of gdb VEC.
4101
4102 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4103
4104 * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
4105 ftrace_bridge_gap): Replace references to btrace_thread_info::segment
4106 with btrace_thread_info::next_segment and
4107 btrace_thread_info::prev_segment.
4108 * btrace.h: Remove struct btrace_func_link.
4109 (struct btrace_function): Replace pair of function segment pointers
4110 with pair of indices.
4111 * python/py-record-btrace.c (btpy_call_prev_sibling,
4112 btpy_call_next_sibling): Replace references to
4113 btrace_thread_info::segment with btrace_thread_info::next_segment and
4114 btrace_thread_info::prev_segment.
4115 * record-btrace.c (record_btrace_frame_this_id): Use
4116 btrace_find_call_by_number.
4117
4118 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4119
4120 * btrace.c (ftrace_new_function, ftrace_fixup_level,
4121 ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
4122 btrace_insn_next, btrace_insn_prev): Remove references to
4123 btrace_thread_info::flow.
4124 * btrace.h (struct btrace_function): Remove FLOW.
4125
4126 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4127
4128 * btrace.c (ftrace_find_call_by_number): New function.
4129 (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
4130 ftrace_get_caller, ftrace_find_call, ftrace_new_return,
4131 ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
4132 ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
4133 index.
4134 * btrace.h (struct btrace_function): Turn UP into an index.
4135 * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
4136 as an index.
4137 * record-btrace.c (record_btrace_frame_unwind_stop_reason,
4138 record_btrace_frame_prev_register, record_btrace_frame_sniffer,
4139 record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
4140
4141 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4142
4143 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
4144 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
4145 ftrace_update_function, ftrace_compute_global_level_offset,
4146 btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
4147 btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
4148 btrace_insn_end, btrace_is_empty): Remove references to
4149 btrace_thread_info::begin and btrace_thread_info::end.
4150 * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
4151 (struct btrace_thread_info) <functions>: Adjust comment.
4152 * record-btrace.c (record_btrace_start_replaying): Remove reference to
4153 btrace_thread_info::begin.
4154
4155 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4156
4157 * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
4158 ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
4159 ftrace_update_function): Remove arguments that implicitly were always
4160 BTINFO->END.
4161 (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
4162 Don't pass BTINFO->END.
4163
4164 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4165
4166 * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
4167 btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
4168 btrace_find_insn_by_number): Replace function segment pointer with
4169 index.
4170 (btrace_insn_cmp): Simplify.
4171 * btrace.h: (struct btrace_insn_iterator) Rename index to
4172 insn_index. Replace function segment pointer with index into function
4173 segment vector.
4174 * record-btrace.c (record_btrace_call_history): Replace function
4175 segment pointer use with index.
4176 (record_btrace_frame_sniffer): Retrieve function call segment through
4177 vector.
4178 (record_btrace_set_replay): Remove defunc't safety check.
4179
4180 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4181
4182 * btrace.c (btrace_ends_with_single_insn): New function.
4183 (btrace_call_get, btrace_call_number, btrace_call_begin,
4184 btrace_call_end, btrace_call_next, btrace_call_prev,
4185 btrace_find_call_by_number): Use index into call segment vector
4186 instead of pointer.
4187 (btrace_call_cmp): Simplify.
4188 * btrace.h (struct btrace_call_iterator): Replace function call segment
4189 pointer with index into vector.
4190 * record-btrace.c (record_btrace_call_history): Use index instead of
4191 pointer.
4192
4193 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4194
4195 * btrace.c (btrace_insn_begin, btrace_insn_end,
4196 btrace_find_insn_by_number): Add btinfo to iterator.
4197 * btrace.h (struct btrace_insn_iterator): Add btinfo.
4198
4199 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4200
4201 * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
4202 and save pointers directly.
4203 (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
4204 ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
4205 ftrace_add_pt): Add btrace_thread_info to arguments. Adjust for
4206 changed signature of functions.
4207 (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
4208 (btrace_fetch): Remove code that adds btrace_function pointers to
4209 vector of btrace_functions.
4210 (btrace_clear): Simplify freeing vector of btrace_functions.
4211
4212 2017-05-30 Tim Wiederhake <tim.wiederhake@intel.com>
4213
4214 * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
4215 Replace VEC_* with std::vector functions.
4216 * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
4217 (struct btrace_thread_info)<functions>: Change type to std::vector.
4218
4219 2017-05-30 Simon Marchi <simon.marchi@ericsson.com>
4220
4221 * NEWS (Changes in GDB 8.0): Remove extra empty line. Move
4222 "Removed targets and native configurations" up. Merge duplicate
4223 "New commands" sub-sections. Add "New options" sub-sections.
4224
4225 2017-05-26 Alan Hayward <alan.hayward@arm.com>
4226
4227 * defs.h (copy_integer_to_size): New declaration.
4228 * findvar.c (copy_integer_to_size): New function.
4229 (do_cint_test): New selftest function.
4230 (copy_integer_to_size_test): Likewise.
4231 (_initialize_findvar): Likewise.
4232 * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
4233 (mips_fbsd_collect_reg): Use raw_collect_integer.
4234 * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
4235 (mips64_fill_gregset): Use raw_collect_integer
4236 (mips64_fill_fpregset): Use raw_supply_integer.
4237 * regcache.c (regcache::raw_supply_integer): New function.
4238 (regcache::raw_collect_integer): Likewise.
4239 * regcache.h: (regcache::raw_supply_integer): New declaration.
4240 (regcache::raw_collect_integer): Likewise.
4241
4242 2017-05-24 Yao Qi <yao.qi@linaro.org>
4243
4244 * Makefile.in (SFILES): Add gdbarch-selftests.c.
4245 (COMMON_OBS): Add gdbarch-selftests.o.
4246 * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
4247 * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
4248 * gdbarch-selftests.c: New file.
4249 * regcache.h (regcache) <~regcache>: Mark it virtual if
4250 GDB_SELF_TEST.
4251 <raw_write>: Likewise.
4252
4253 2017-05-24 Yao Qi <yao.qi@linaro.org>
4254
4255 * regcache.c (current_regcache): Change it to
4256 regcache::current_regcache.
4257 (regcache_observer_target_changed): Update.
4258 (regcache_thread_ptid_changed): Make it a regcache static
4259 method.
4260 (regcache_thread_ptid_changed): Update.
4261 (class regcache_access): New.
4262 (current_regcache_test): Update.
4263 (_initialize_regcache): Update.
4264 * regcache.h: Include forward_list.
4265 (regcache): Declare regcache_thread_ptid_changed and declare
4266 registers_changed_ptid as friend.
4267
4268 2017-05-24 Yao Qi <yao.qi@linaro.org>
4269
4270 * i387-tdep.c (i387_register_to_value): Use register_size
4271 instead of TYPE_LENGTH.
4272 * m68k-tdep.c (m68k_register_to_value): Likewise.
4273
4274 2017-05-24 Yao Qi <yao.qi@linaro.org>
4275
4276 * i387-tdep.c (i387_convert_register_p): Return false if type
4277 code isn't TYPE_CODE_FLT.
4278
4279 2017-05-24 Yao Qi <yao.qi@linaro.org>
4280
4281 * alpha-tdep.c (alpha_convert_register_p): Return true if type
4282 length is 4.
4283 (alpha_register_to_value): Remove type length check.
4284 (alpha_value_to_register): Likewise.
4285
4286 2017-05-24 Yao Qi <yao.qi@linaro.org>
4287
4288 * ia64-tdep.c (ia64_convert_register_p): Check type's code is
4289 TYPE_CODE_FLT.
4290
4291 2017-05-24 Yao Qi <yao.qi@linaro.org>
4292
4293 * m68k-tdep.c (m68k_convert_register_p): Check type's code is
4294 TYPE_CODE_FLT or not.
4295
4296 2017-05-24 Yao Qi <yao.qi@linaro.org>
4297
4298 * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
4299 * avr-tdep.c (avr_gdbarch_init): Likewise.
4300 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
4301 * cris-tdep.c (cris_gdbarch_init): Likewise.
4302 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
4303 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
4304 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
4305 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
4306 * mep-tdep.c (mep_gdbarch_init): Likewise.
4307 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
4308 * mips-tdep.c (mips_gdbarch_init): Likewise.
4309 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
4310 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
4311 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
4312 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
4313 * v850-tdep.c (v850_gdbarch_init): Likewise.
4314
4315 2017-05-24 Yao Qi <yao.qi@linaro.org>
4316
4317 * selftest-arch.c (tests_with_arch): Call registers_changed
4318 and reinit_frame_cache.
4319 * selftest.c (run_self_tests): Likewise.
4320
4321 2017-05-24 Yao Qi <yao.qi@linaro.org>
4322
4323 * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
4324 (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
4325
4326 2017-05-24 Yao Qi <yao.qi@linaro.org>
4327
4328 * rl78-tdep.c (rl78_gdbarch_init): Don't call
4329 set_gdbarch_print_insn.
4330
4331 2017-05-24 Yao Qi <yao.qi@linaro.org>
4332
4333 * h8300-tdep.c (h8300_gdbarch_init): Don't call
4334 set_gdbarch_print_insn.
4335
4336 2017-05-24 Yao Qi <yao.qi@linaro.org>
4337
4338 * alpha-tdep.c (alpha_gdbarch_init): Don't call
4339 set_gdbarch_print_insn.
4340 * arc-tdep.c (arc_gdbarch_init): Likewise.
4341 * arch-utils.c: include dis-asm.h.
4342 (default_print_insn): New function.
4343 * arch-utils.h (default_print_insn): Declare.
4344 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
4345 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
4346 * cris-tdep.c (cris_delayed_get_disassembler): Remove.
4347 (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
4348 * frv-tdep.c (frv_gdbarch_init): Likewise.
4349 * ft32-tdep.c (ft32_gdbarch_init): Likewise.
4350 * gdbarch.sh (print_insn): Use default_print_insn.
4351 * gdbarch.c: Regenerated.
4352 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
4353 * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
4354 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
4355 * m32c-tdep.c (m32c_gdbarch_init): Likewise.
4356 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
4357 * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
4358 (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
4359 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
4360 * m88k-tdep.c (m88k_gdbarch_init): Likewise.
4361 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
4362 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
4363 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
4364 * msp430-tdep.c (msp430_gdbarch_init): Likewise.
4365 * mt-tdep.c (mt_gdbarch_init): Likewise.
4366 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
4367 * nios2-tdep.c (nios2_print_insn): Remove.
4368 (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
4369 * rx-tdep.c (rx_gdbarch_init): Likewise.
4370 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
4371 * score-tdep.c (score_print_insn): Remove.
4372 (score_gdbarch_init): Don't call set_gdbarch_print_insn.
4373 * sh-tdep.c (sh_gdbarch_init): Likewise.
4374 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
4375 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
4376 * tic6x-tdep.c (tic6x_print_insn): Remove.
4377 (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
4378 * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
4379 * v850-tdep.c (v850_gdbarch_init): Likewise.
4380 * vax-tdep.c (vax_gdbarch_init): Likewise.
4381 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
4382 * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
4383
4384 2017-05-23 John Baldwin <jhb@FreeBSD.org>
4385
4386 * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
4387 (MIPS_FP0_REGNUM): Remove.
4388 (MIPS_FSR_REGNUM): Remove.
4389 (mips_fbsd_supply_fpregs): Use mips_regnum.
4390 (mips_fbsd_supply_gregs): Likewise.
4391 (mips_fbsd_collect_fpregs): Likewise.
4392 (mips_fbsd_collect_gregs): Likewise.
4393
4394 2017-05-23 John Baldwin <jhb@FreeBSD.org>
4395
4396 * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
4397 (getpfpregs_supplies): New function.
4398 (mips_fbsd_fetch_inferior_registers): Remove early exit and use
4399 getfpregs_supplies.
4400 (mips_fbsd_store_inferior_registers): Likewise.
4401
4402 2017-05-22 Pedro Alves <palves@redhat.com>
4403
4404 * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
4405 maintainer.
4406
4407 2017-05-22 Alan Hayward <alan.hayward@arm.com>
4408
4409 * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
4410 (store_register): Likewise.
4411 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
4412 (get_decimal_float_return_value): Likewise.
4413 (do_ppc_sysv_return_value): Likewise.
4414 (ppc64_sysv_abi_push_integer): Likewise.
4415 (ppc64_sysv_abi_push_freg): Likewise.
4416 (ppc64_sysv_abi_return_value_base): Likewise.
4417 (ppc64_sysv_abi_return_value): Likewise.
4418 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
4419 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
4420 * rs6000-nat.c: Likewise.
4421 * rs6000-tdep.c (rs6000_register_to_value): Likewise.
4422 (rs6000_value_to_register): Likewise.
4423 * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
4424
4425 2017-05-21 Tom Tromey <tom@tromey.com>
4426
4427 PR rust/21466:
4428 * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
4429 arrays as "[T]", not "[T; ]".
4430
4431 2017-05-19 Tom Tromey <tom@tromey.com>
4432
4433 PR rust/21484:
4434 * rust-lang.c (exp_descriptor_rust): New function.
4435 (rust_language_defn): Use it.
4436 * p-lang.c (pascal_language_defn): Update.
4437 * opencl-lang.c (opencl_language_defn): Update.
4438 * objc-lang.c (objc_language_defn): Update.
4439 * m2-lang.c (m2_language_defn): Update.
4440 * language.h (struct language_defn)
4441 <la_watch_location_expression>: New member.
4442 * language.c (unknown_language_defn, auto_language_defn)
4443 (local_language_defn): Update.
4444 * go-lang.c (go_language_defn): Update.
4445 * f-lang.c (f_language_defn): Update.
4446 * d-lang.c (d_language_defn): Update.
4447 * c-lang.h (c_watch_location_expression): Declare.
4448 * c-lang.c (c_watch_location_expression): New function.
4449 (c_language_defn, cplus_language_defn, asm_language_defn)
4450 (minimal_language_defn): Use it.
4451 * breakpoint.c (watch_command_1): Call
4452 la_watch_location_expression.
4453 * ada-lang.c (ada_language_defn): Update.
4454
4455 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4456
4457 PR tui/21482
4458 * gdb_curses.h (NOMACROS): Define.
4459 (NCURSES_NOMACROS): Define.
4460
4461 2017-05-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4462
4463 PR tui/21482
4464 * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
4465 arg to char *.
4466 * tui/tui-wingeneral.c (box_win): Likewise.
4467 * tui/tui-winsource.c (tui_erase_source_content): Likewise.
4468 (tui_show_source_line): Likewise.
4469 (tui_show_exec_info_content): Likewise.
4470
4471 2017-05-19 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>
4472
4473 * sparc-tdep.c (sparc_structure_return_p)
4474 (sparc_arg_on_registers_p): New functions.
4475 (sparc32_store_arguments): Use them.
4476 * sparc64-tdep.c (sparc64_16_byte_align_p)
4477 (sparc64_store_floating_fields, sparc64_extract_floating_fields):
4478 Handle TYPE_CODE_ARRAY.
4479
4480 2017-05-17 Yao Qi <yao.qi@linaro.org>
4481
4482 * cli/cli-decode.c (add_alias_cmd): New function.
4483 * command.h (add_alias_cmd): Declare.
4484 * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
4485 instead call add_alias_cmd.
4486
4487 2017-05-17 Pedro Alves <palves@redhat.com>
4488
4489 * Makefile.in (nat_extra_makefile_frag): Rename to ...
4490 (nat_makefile_frag): ... this. All references updated.
4491 * configure.ac: Likewise.
4492 * configure.nat: Likewise. Enhance comments.
4493 * configure: Regenerate.
4494
4495 2017-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4496
4497 * procfs.c (procfs_create_inferior): Change prototype to match
4498 definition.
4499
4500 2017-05-13 Eli Zaretskii <eliz@gnu.org>
4501
4502 * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
4503 C++ compiler warning.
4504
4505 2017-05-12 Tom Tromey <tom@tromey.com>
4506
4507 PR rust/21483:
4508 * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
4509 recurse, just call value_struct_elt directly.
4510
4511 2017-05-12 Tom Tromey <tom@tromey.com>
4512
4513 * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
4514 OP_RUST_ARRAY>: Fix.
4515
4516 2017-05-12 Tom Tromey <tom@tromey.com>
4517
4518 * rust-lang.c (rust_print_subexp): Replace "return" with "break".
4519
4520 2017-05-09 Yao Qi <yao.qi@linaro.org>
4521
4522 * regcache.c: Include <forward_list>.
4523 (struct regcache_list): Remove.
4524 (current_regcache): Update.
4525 (get_thread_arch_aspace_regcache): Update for std::forward_list.
4526 (regcache_thread_ptid_changed): Likewise.
4527 (registers_changed_ptid): Likewise.
4528 (current_regcache_size): Likewise.
4529
4530 2017-05-09 Yao Qi <yao.qi@linaro.org>
4531
4532 * regcache.c [GDB_SELF_TEST]: Include selftest.h.
4533 (current_regcache_size): New function.
4534 (current_regcache_test): New function.
4535 (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
4536
4537 2017-05-08 Alan Hayward <alan.hayward@arm.com>
4538
4539 * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
4540 (print_gp_register_row): Use get_frame_register_value.
4541
4542 2017-05-08 Alan Hayward <alan.hayward@arm.com>
4543
4544 * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
4545 (mips_supply_fpregset): Likewise.
4546 (mips64_supply_gregset): Likewise.
4547
4548 2017-05-08 Alan Hayward <alan.hayward@arm.com>
4549
4550 * mn10300-linux-tdep.c (am33_supply_gregset_method): Use
4551 regcache->raw_supply_zeroed.
4552
4553 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
4554
4555 * configure.nat: Rearrange 'case' statements to match
4556 host before cpu.
4557
4558 2017-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
4559
4560 * Makefile.in: Remove "@host_makefile_frag@". Add variables
4561 NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
4562 NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST. Add
4563 "@nat_extra_makefile_frag@".
4564 (Makefile): Remove dependency on "@frags@".
4565 ($(GNULIB_BUILDDIR)/Makefile): Likewise.
4566 (data-directory/Makefile): Likewise.
4567 * config/aarch64/linux.mh: Deleted; moved contents to
4568 "gdb/configure.nat".
4569 * config/alpha/alpha-linux.mh: Likewise.
4570 * config/alpha/nbsd.mh: Likewise.
4571 * config/arm/linux.mh: Likewise.
4572 * config/arm/nbsdelf.mh: Likewise.
4573 * config/i386/cygwin.mh: Likewise.
4574 * config/i386/cygwin64.mh: Likewise.
4575 * config/i386/darwin.mh: Likewise.
4576 * config/i386/fbsd.mh: Likewise.
4577 * config/i386/fbsd64.mh: Likewise.
4578 * config/i386/go32.mh: Likewise.
4579 * config/i386/i386gnu.mh: Likewise.
4580 * config/i386/i386sol2.mh: Likewise.
4581 * config/i386/linux.mh: Likewise.
4582 * config/i386/linux64.mh: Likewise.
4583 * config/i386/mingw.mh: Likewise.
4584 * config/i386/mingw64.mh: Likewise.
4585 * config/i386/nbsd64.mh: Likewise.
4586 * config/i386/nbsdelf.mh: Likewise.
4587 * config/i386/nto.mh: Likewise.
4588 * config/i386/obsd.mh: Likewise.
4589 * config/i386/obsd64.mh: Likewise.
4590 * config/i386/sol2-64.mh: Likewise.
4591 * config/ia64/linux.mh: Likewise.
4592 * config/m32r/linux.mh: Likewise.
4593 * config/m68k/linux.mh: Likewise.
4594 * config/m68k/nbsdelf.mh: Likewise.
4595 * config/m68k/obsd.mh: Likewise.
4596 * config/m88k/obsd.mh: Likewise.
4597 * config/mips/fbsd.mh: Likewise.
4598 * config/mips/linux.mh: Likewise.
4599 * config/mips/nbsd.mh: Likewise.
4600 * config/mips/obsd64.mh: Likewise.
4601 * config/pa/linux.mh: Likewise.
4602 * config/pa/nbsd.mh: Likewise.
4603 * config/pa/obsd.mh: Likewise.
4604 * config/powerpc/aix.mh: Likewise.
4605 * config/powerpc/fbsd.mh: Likewise.
4606 * config/powerpc/linux.mh: Likewise.
4607 * config/powerpc/nbsd.mh: Likewise.
4608 * config/powerpc/obsd.mh: Likewise.
4609 * config/powerpc/ppc64-linux.mh: Likewise.
4610 * config/powerpc/spu-linux.mh: Likewise.
4611 * config/s390/linux.mh: Likewise.
4612 * config/sh/nbsd.mh: Likewise.
4613 * config/sparc/fbsd.mh: Likewise.
4614 * config/sparc/linux.mh: Likewise.
4615 * config/sparc/linux64.mh: Likewise.
4616 * config/sparc/nbsd64.mh: Likewise.
4617 * config/sparc/nbsdelf.mh: Likewise.
4618 * config/sparc/obsd64.mh: Likewise.
4619 * config/sparc/sol2.mh: Likewise.
4620 * config/tilegx/linux.mh: Likewise.
4621 * config/vax/nbsdelf.mh: Likewise.
4622 * config/vax/obsd.mh: Likewise.
4623 * config/xtensa/linux.mh: Likewise.
4624 * config/i386/i386gnu.mn: New file, with excerpts from
4625 "config/i386/i386gnu.mh".
4626 * configure: Regenerate.
4627 * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
4628 *.mh files under "gdb/config".
4629 * configure.nat: New file, with contents from the
4630 "gdb/config/*/*.mh" files.
4631
4632 2017-05-05 Tim Wiederhake <tim.wiederhake@intel.com>
4633
4634 * btrace.c (btrace_clear): Free insn vector.
4635
4636 2017-05-05 Pedro Alves <palves@redhat.com>
4637
4638 * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
4639 * configure: Regenerate.
4640
4641 2017-05-04 Pedro Alves <palves@redhat.com>
4642
4643 * Makefile.in (SFILES): Add progspace-and-thread.c.
4644 (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
4645 (COMMON_OBS): Add progspace-and-thread.o.
4646 * breakpoint.c: Include "progspace-and-thread.h".
4647 (update_inserted_breakpoint_locations)
4648 (insert_breakpoint_locations, create_longjmp_master_breakpoint):
4649 Use scoped_restore_current_pspace_and_thread.
4650 (create_std_terminate_master_breakpoint): Use
4651 scoped_restore_current_program_space.
4652 (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
4653 (print_breakpoint_location): Use
4654 scoped_restore_current_program_space.
4655 (bp_loc_is_permanent): Use
4656 scoped_restore_current_pspace_and_thread.
4657 (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
4658 (download_tracepoint_locations): Use
4659 scoped_restore_current_pspace_and_thread.
4660 (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
4661 * exec.c (exec_close_1): Use scoped_restore_current_program_space.
4662 (enum step_over_calls_kind): Moved from inferior.h.
4663 (class scoped_restore_current_thread): New class.
4664 * gdbthread.h (make_cleanup_restore_current_thread): Delete
4665 declaration.
4666 (scoped_restore_current_thread): New class.
4667 * infcmd.c: Include "common/gdb_optional.h".
4668 (continue_1, proceed_after_attach): Use
4669 scoped_restore_current_thread.
4670 (notice_new_inferior): Use scoped_restore_current_thread.
4671 * inferior.c: Include "progspace-and-thread.h".
4672 (restore_inferior, save_current_inferior): Delete.
4673 (add_inferior_command, clone_inferior_command): Use
4674 scoped_restore_current_pspace_and_thread.
4675 * inferior.h (scoped_restore_current_inferior): New class.
4676 * infrun.c: Include "progspace-and-thread.h" and
4677 "common/gdb_optional.h".
4678 (follow_fork_inferior): Use
4679 scoped_restore_current_pspace_and_thread.
4680 (scoped_restore_exited_inferior): New class.
4681 (handle_vfork_child_exec_or_exit): Use
4682 scoped_restore_exited_inferior,
4683 scoped_restore_current_pspace_and_thread,
4684 scoped_restore_current_thread and scoped_restore.
4685 (fetch_inferior_event): Use scoped_restore_current_thread.
4686 * linespec.c (decode_line_full, decode_line_1): Use
4687 scoped_restore_current_program_space.
4688 * mi/mi-main.c: Include "progspace-and-thread.h".
4689 (exec_continue): Use scoped_restore_current_thread.
4690 (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
4691 (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
4692 * proc-service.c (ps_pglobal_lookup): Use
4693 scoped_restore_current_program_space.
4694 * progspace-and-thread.c: New file.
4695 * progspace-and-thread.h: New file.
4696 * progspace.c (release_program_space, clone_program_space): Use
4697 scoped_restore_current_program_space.
4698 (restore_program_space, save_current_program_space)
4699 (save_current_space_and_thread): Delete.
4700 (switch_to_program_space_and_thread): Moved to
4701 progspace-and-thread.c.
4702 * progspace.h (save_current_program_space)
4703 (save_current_space_and_thread): Delete declarations.
4704 (scoped_restore_current_program_space): New class.
4705 * remote.c (remote_btrace_maybe_reopen): Use
4706 scoped_restore_current_thread.
4707 * symtab.c: Include "progspace-and-thread.h".
4708 (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
4709 * thread.c (print_thread_info_1): Use
4710 scoped_restore_current_thread.
4711 (struct current_thread_cleanup): Delete.
4712 (do_restore_current_thread_cleanup)
4713 (restore_current_thread_cleanup_dtor): Rename/convert both to ...
4714 (scoped_restore_current_thread::~scoped_restore_current_thread):
4715 ... this new dtor.
4716 (make_cleanup_restore_current_thread): Rename/convert to ...
4717 (scoped_restore_current_thread::scoped_restore_current_thread):
4718 ... this new ctor.
4719 (thread_apply_all_command): Use scoped_restore_current_thread.
4720 (thread_apply_command): Use scoped_restore_current_thread.
4721 * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
4722 * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
4723
4724 2017-05-04 Pedro Alves <palves@redhat.com>
4725
4726 * thread.c (make_cleanup_restore_current_thread): Move
4727 find_thread_ptid call before the is_stopped call. Assert that the
4728 thread is found. Replace is_stopped call by checking the thread's
4729 state directly. Remove unnecessary NULL-thread check.
4730
4731 2017-05-04 Pedro Alves <palves@redhat.com>
4732
4733 * corelow.c (thread_section_name): New class.
4734 (get_core_register_section, get_core_siginfo): Use it.
4735
4736 2017-05-04 Andreas Arnez <arnez@linux.vnet.ibm.com>
4737
4738 * corelow.c (sniff_core_bfd): Remove extra semicolon.
4739 (get_core_register_section): Remove xfree of NULL pointer.
4740
4741 2017-05-03 Alan Hayward <alan.hayward@arm.com>
4742
4743 * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
4744 * regcache.c (regcache::raw_supply_zeroed): New function.
4745 * regcache.h (regcache::raw_supply_zeroed): New declaration.
4746
4747 2017-05-03 Simon Marchi <simon.marchi@ericsson.com>
4748
4749 * gdbarch.sh: Remove commented out definition of
4750 TARGET_CHAR_BIT.
4751 * gdbarch.h: Re-generate.
4752
4753 2017-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
4754
4755 * configure: Regenerate.
4756
4757 2017-05-02 Simon Marchi <simon.marchi@ericsson.com>
4758
4759 * solib-target.c (solib_target_relocate_section_addresses):
4760 Remove num_section_bases, num_bases, segment_bases variables.
4761
4762 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
4763
4764 * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
4765
4766 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
4767
4768 * solib-target.c: Include <vector>
4769 (struct lm_info_target) <~lm_info_target>: Remove.
4770 <segment_bases, section_bases>: Change type to
4771 std::vector<CORE_ADDR>.
4772 (library_list_start_segment, library_list_start_section,
4773 library_list_end_library,
4774 solib_target_relocate_section_addresses): Adjust.
4775
4776 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
4777
4778 * gdbarch.sh (software_single_step): Change return type to
4779 std::vector<CORE_ADDR>.
4780 * gdbarch.c, gdbarch.h: Re-generate.
4781 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
4782 Adjust.
4783 (arm_deal_with_atomic_sequence_raw): Adjust.
4784 (thumb_get_next_pcs_raw): Adjust.
4785 (arm_get_next_pcs_raw): Adjust.
4786 (arm_get_next_pcs): Adjust.
4787 * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
4788 * aarch64-tdep.c (aarch64_software_single_step): Adjust.
4789 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
4790 (alpha_software_single_step): Adjust.
4791 * alpha-tdep.h (alpha_software_single_step): Adjust.
4792 * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
4793 * arm-tdep.c (arm_software_single_step): Adjust.
4794 (arm_breakpoint_kind_from_current_state): Adjust.
4795 * arm-tdep.h (arm_software_single_step): Adjust.
4796 * breakpoint.c (insert_single_step_breakpoint): Adjust.
4797 * cris-tdep.c (cris_software_single_step): Adjust.
4798 * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
4799 (micromips_deal_with_atomic_sequence): Adjust.
4800 (deal_with_atomic_sequence): Adjust.
4801 (mips_software_single_step): Adjust.
4802 * mips-tdep.h (mips_software_single_step): Adjust.
4803 * moxie-tdep.c (moxie_software_single_step): Adjust.
4804 * nios2-tdep.c (nios2_software_single_step): Adjust.
4805 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
4806 * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
4807 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
4808 * s390-linux-tdep.c (s390_software_single_step): Adjust.
4809 * sparc-tdep.c (sparc_software_single_step): Adjust.
4810 * spu-tdep.c (spu_software_single_step): Adjust.
4811 * tic6x-tdep.c (tic6x_software_single_step): Adjust.
4812
4813 2017-05-02 Simon Marchi <simon.marchi@polymtl.ca>
4814
4815 * gdbarch.sh: Use semi-colon as field separator instead of colon.
4816 * gdbarch.h: Re-generate.
4817
4818 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4819
4820 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
4821 (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
4822 * python/py-instruction.c, python/py-instruction.h: New file.
4823 * python/py-record.c: Add py-instruction.h include.
4824 (gdbpy_initialize_record): Make gdb.Instruction a super class of
4825 gdb.RecordInstruction.
4826 * python/python-internal.h: Add gdbpy_initialize_instruction
4827 declaration.
4828 * python/python.c (do_start_initialization): Add
4829 gdbpy_initialize_instruction.
4830
4831 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4832
4833 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
4834 Remove.
4835 (btrace_func_from_recpy_func): New function.
4836 (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
4837 (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
4838 btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
4839 (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
4840 recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
4841 Also, use new helper functions.
4842 (btpy_list_item): Use new helper functions.
4843 (recpy_bt_function_call_history): Use new type name.
4844 (btpy_call_getset): Remove.
4845 (gdbpy_initialize_btrace): Remove code to initialize
4846 gdb.BtraceFunctionCall.
4847 * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
4848 recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
4849 recpy_bt_func_prev, recpy_bt_func_next): New export.
4850 * python/py-record.c (recpy_func_type): New static object.
4851 (recpy_func_new, recpy_func_level, recpy_func_symbol,
4852 recpy_func_instructions, recpy_func_up, recpy_func_prev,
4853 recpy_func_next): New function.
4854 (recpy_element_hash, recpy_element_richcompare): Updated comment.
4855 (recpy_func_getset): New static object.
4856 (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
4857 * python/py-record.h (recpy_func_type, recpy_func_new): New export.
4858
4859 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4860
4861 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
4862 (btpy_object, btpy_insn_type, btpy_new): Remove.
4863 (btpy_list_object): Use gdb.RecordInstruction type instead of
4864 gdb.BtraceInstruction type.
4865 (btrace_insn_from_recpy_insn): New function.
4866 (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
4867 btpy_new.
4868 (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
4869 (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
4870 btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
4871 btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
4872 instead of btpy_object.
4873 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
4874 btpy_insn_data, btpy_insn_decode): Rename to ...
4875 (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
4876 recpy_bt_insn_is_speculative, recpy_bt_insn_data,
4877 recpy_bt_insn_decode): This. Also, use new helper functions.
4878 (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
4879 recpy_insn_type.
4880 (btpy_insn_getset): Remove.
4881 (gdbpy_initialize_btrace): Remove code to initialize
4882 gdb.BtraceInstruction. Use recpy_element_object.
4883 * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
4884 recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
4885 recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
4886 * python/py-record.c (recpy_insn_type): New static object.
4887 (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
4888 recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
4889 recpy_element_number, recpy_element_hash, recpy_element_richcompare):
4890 New function.
4891 (recpy_insn_getset): New static object.
4892 (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
4893 * python/py-record.h (recpy_element_object): New typedef.
4894 (recpy_insn_type, recpy_insn_new): New export.
4895
4896 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4897
4898 * py-record-btrace.c (btpy_insn_new): Removed.
4899 (btpy_insn_or_gap_new): New function.
4900 (btpy_insn_error): Removed.
4901 (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
4902 btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
4903 (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
4904 btpy_insn_or_gap_new instead of btpy_insn_new.
4905 (btpy_insn_getset): Remove btpy_insn_error.
4906 * py-record.c (recpy_gap_type): New static object.
4907 (recpy_gap_object): New typedef.
4908 (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
4909 recpy_gap_reason_string): New function.
4910 (recpy_gap_getset): New static object.
4911 (gdbpy_initialize_record): Initialize gdb.RecordGap type.
4912 * py-record.h (recpy_gap_new): New export.
4913
4914 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4915
4916 * python/py-record.c (recpy_ptid): Remove.
4917 (recpy_record_getset): Remove recpy_ptid.
4918
4919 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4920
4921 * btrace.c (btrace_fetch): Set inferior_ptid.
4922 * python/py-record-btrace.c: Add "py-record.h" include.
4923 (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
4924 recpy_bt_end, recpy_bt_instruction_history,
4925 recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
4926 in gdb.Record object instead of current ptid.
4927 * python/py-record.c: Include new "py-record.h" file.
4928 (recpy_record_object): Moved to py-record.h.
4929 * python/py-record.h: New file.
4930
4931 2017-05-01 Tim Wiederhake <tim.wiederhake@intel.com>
4932
4933 * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
4934 BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
4935 indentation.
4936
4937 2017-05-01 Joel Brobecker <brobecker@adacore.com>
4938
4939 * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
4940 the past maintainers section.
4941
4942 2017-04-28 Yao Qi <yao.qi@linaro.org>
4943
4944 * infcmd.c (get_return_value): Use regcache ctor, and remove
4945 cleanup.
4946
4947 2017-04-28 Yao Qi <yao.qi@linaro.org>
4948 Pedro Alves <palves@redhat.com>
4949
4950 * regcache.c (regcache::regcache): New tag dispatch ctor.
4951 (do_cooked_read): Moved above.
4952 (regcache_dup): Use the tag dispatch ctor..
4953 * regcache.h (regcache): Declare ctor, delete copy ctor and
4954 assignment operator, remove friend regcache_dup.
4955
4956 2017-04-28 Yao Qi <yao.qi@linaro.org>
4957
4958 * regcache.c (regcache_dup): Assert !src->m_readonly_p and
4959 call method save instead of regcache_cpy.
4960 * regcache.h (struct regcache): Make regcache_dup a friend.
4961
4962 2017-04-28 Yao Qi <yao.qi@linaro.org>
4963
4964 * regcache.c (struct regcache): Move to regcache.h
4965 (regcache::arch): New method.
4966 (regcache_get_ptid): Update.
4967 (get_regcache_arch): Call arch method.
4968 (get_regcache_aspace): Call method aspace.
4969 (register_buffer): Change it to method.
4970 (regcache_save): Change it to regcache::save.
4971 (regcache_restore): Likewise.
4972 (regcache_cpy_no_passthrough): Remove the declaration.
4973 (regcache_cpy): Call methods restore and cpy_no_passthrough.
4974 (regcache_cpy_no_passthrough): Change it to method
4975 cpy_no_passthrough.
4976 (regcache_register_status): Change it to method
4977 get_register_status.
4978 (regcache_invalidate): Change it to method invalidate.
4979 (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
4980 (regcache_raw_update): Change it to method raw_update.
4981 (regcache_raw_read): Likewise.
4982 (regcache_raw_read_signed): Likewise.
4983 (regcache_raw_read_unsigned): Likewise.
4984 (regcache_raw_write_signed): Likewise.
4985 (regcache_raw_write_unsigned): Likewise.
4986 (regcache_cooked_read): Likewise.
4987 (regcache_cooked_read_value): Likewise.
4988 (regcache_cooked_read_signed): Likewise.
4989 (regcache_cooked_read_unsigned): Likewise.
4990 (regcache_cooked_write_signed): Likewise.
4991 (regcache_cooked_write_unsigned): Likewise.
4992 (regcache_raw_set_cached_value): Likewise.
4993 (regcache_raw_write): Likewise.
4994 (regcache_cooked_write): Likewise.
4995 (regcache_xfer_part): Likewise.
4996 (regcache_raw_read_part): Likewise.
4997 (regcache_raw_write_part): Likewise.
4998 (regcache_cooked_read_part): Likewise.
4999 (regcache_cooked_write_part): Likewise.
5000 (regcache_raw_supply): Likewise.
5001 (regcache_raw_collect): Likewise.
5002 (regcache_transfer_regset): Likewise.
5003 (regcache_supply_regset): Likewise.
5004 (regcache_collect_regset): Likewise.
5005 (regcache_debug_print_register): Likewise.
5006 (enum regcache_dump_what): Move it to regcache.h.
5007 (regcache_dump): Change it to method dump.
5008 * regcache.h (enum regcache_dump_what): New.
5009 (class regcache): New.
5010 * target.c (target_fetch_registers): Call method
5011 debug_print_register.
5012 (target_store_registers): Likewise.
5013
5014 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5015
5016 * windows-nat.c (struct lm_info_windows): Initialize field.
5017 (windows_make_so): Allocate lm_info_windows with new.
5018 (windows_free_so): Free lm_info_windows with delete.
5019
5020 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5021
5022 * solib-darwin.c (struct lm_info_darwin): Initialize field.
5023 (darwin_current_sos): Allocate lm_info_darwin with new, remove
5024 cleanup.
5025 (darwin_free_so): Free lm_info_darwin with delete.
5026
5027 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5028
5029 * solib-svr4.h (struct lm_info_svr4): Initialize fields.
5030 <l_addr_p>: Change type to bool.
5031 * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
5032 (svr4_free_so): Free lm_info_svr4 with delete.
5033 (svr4_copy_library_list): Replace memcpy with call to copy
5034 constructor.
5035 (library_list_start_library, svr4_default_sos): Allocate
5036 lm_info_svr4 with new.
5037
5038 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5039
5040 * solib-target.c (struct lm_info_target): Add destructor,
5041 initialize fields.
5042 <name>: Change type to std::string.
5043 (library_list_start_library): Allocate lm_info_target with new.
5044 (solib_target_free_library_list): Free lm_info_target with
5045 delete.
5046 (solib_target_current_sos): Adapt to std::string.
5047 (solib_target_free_so): Free lm_info_target with delete.
5048
5049 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5050
5051 * solib-frv.c (struct lm_info_frv): Add destructor, initialize
5052 fields.
5053 (frv_current_sos): Allocate lm_info_frv with new.
5054 (frv_relocate_main_executable): Free lm_info_frv with delete,
5055 allocate with new.
5056 (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
5057
5058 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5059
5060 * solib-frv.c (struct lm_info_frv): Fix indentation.
5061
5062 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5063
5064 * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
5065 map field.
5066 (dsbt_current_sos): Allocate lm_info_dsbt with new.
5067 (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
5068 and allocate with new.
5069 (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
5070
5071 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5072
5073 * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
5074 <filename, member_name>: Change type to std::string.
5075 (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
5076 (library_list_start_library): Allocate lm_info_aix with new.
5077 (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
5078 (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
5079 with copy constructor.
5080
5081 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5082
5083 * solist.h (struct lm_info): Remove.
5084 (struct lm_info_base): New class.
5085 (struct so_list) <lm_info>: Change type to lm_info_base *.
5086 * nto-tdep.c (struct lm_info): Remove.
5087 (lm_addr): Adjust.
5088 * solib-aix.c (struct lm_info): Rename to ...
5089 (struct lm_info_aix): ... this. Extend lm_info_base.
5090 (lm_info_p): Rename to ...
5091 (lm_info_aix_p): ... this, and adjust.
5092 (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
5093 solib_aix_parse_libraries, library_list_start_library,
5094 solib_aix_free_library_list, solib_aix_parse_libraries,
5095 solib_aix_get_library_list,
5096 solib_aix_relocate_section_addresses, solib_aix_free_so,
5097 solib_aix_get_section_offsets,
5098 solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
5099 Adjust.
5100 (struct solib_aix_inferior_data) <library_list>: Adjust.
5101 * solib-darwin.c (struct lm_info): Rename to ...
5102 (struct lm_info_darwin): ... this. Extend lm_info_base.
5103 (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
5104 * solib-dsbt.c (struct lm_info): Rename to ...
5105 (struct lm_info_dsbt): ... this. Extend lm_info_base.
5106 (struct dsbt_info) <main_executable_lm_info): Adjust.
5107 (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
5108 dsbt_relocate_section_addresses): Adjust.
5109 * solib-frv.c (struct lm_info): Rename to ...
5110 (struct lm_info_frv): ... this. Extend lm_info_base.
5111 (main_executable_lm_info): Adjust.
5112 (frv_current_sos, frv_relocate_main_executable, frv_free_so,
5113 frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
5114 find_canonical_descriptor_in_load_object,
5115 frv_fdpic_find_canonical_descriptor): Adjust.
5116 * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
5117 to lm_info_svr4.
5118 (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
5119 svr4_clear_so, svr4_copy_library_list,
5120 library_list_start_library, svr4_default_sos, svr4_read_so_list,
5121 svr4_current_sos, svr4_fetch_objfile_link_map,
5122 solist_update_incremental): Adjust.
5123 * solib-svr4.h (struct lm_info_svr4): Move here from
5124 solib-svr4.c.
5125 * solib-target.c (struct lm_info): Rename to ...
5126 (struct lm_info_target): ... this. Extend lm_info_base.
5127 (lm_info_p): Rename to ...
5128 (lm_info_target_p): ... this.
5129 (solib_target_parse_libraries, library_list_start_segment,
5130 library_list_start_section, library_list_start_library,
5131 library_list_end_library, solib_target_free_library_list,
5132 solib_target_current_sos, solib_target_free_so,
5133 solib_target_relocate_section_addresses): Adjust.
5134 * windows-nat.c (struct lm_info): Rename to ...
5135 (struct lm_info_windows): ... this. Extend lm_info_base.
5136 (windows_make_so, handle_load_dll, handle_unload_dll,
5137 windows_xfer_shared_libraries): Adjust.
5138
5139 2017-04-28 Simon Marchi <simon.marchi@ericsson.com>
5140
5141 * solib-darwin.c (struct darwin_so_list): Remove.
5142 (darwin_current_sos): Allocate an so_list object instead of a
5143 darwin_so_list, separately allocate an lm_info object.
5144 (darwin_free_so): Free lm_info.
5145
5146 2017-04-28 John Baldwin <jhb@FreeBSD.org>
5147
5148 * mips-tdep.c (print_gp_register_row): Replace printf_filtered
5149 with fprintf_filtered.
5150
5151 2017-04-28 Yao Qi <yao.qi@linaro.org>
5152
5153 * regcache.c (regcache::regcache): New function.
5154 (regcache::~regcache): New function.
5155 (regcache_xmalloc_1): Remove.
5156 (regcache_xmalloc): Call new regcache.
5157 (regcache_xfree): Call delete regcache.
5158 (get_thread_arch_aspace_regcache): Call new regcache.
5159
5160 2017-04-28 Yao Qi <yao.qi@linaro.org>
5161
5162 * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
5163 lwp instead of ptid_get_lwp.
5164
5165 2017-04-28 Yao Qi <yao.qi@linaro.org>
5166
5167 * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
5168 lwp_info instead of getting from inferior_ptid.
5169
5170 2017-04-27 Keith Seitz <keiths@redhat.com>
5171
5172 * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
5173 DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
5174 (CV_CONVERSION_BADNESS): Define.
5175 (rank_one_type): Remove overly restrictive rvalue reference
5176 rank checks.
5177 Add cv-qualifier checks and subranks for type equality.
5178 * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
5179 REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
5180 CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
5181
5182 2017-04-27 Simon Marchi <simon.marchi@ericsson.com>
5183
5184 * python/py-inferior.c (inferior_to_inferior_object): Increment reference
5185 count when creating the object.
5186
5187 2017-04-27 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
5188 Ulrich Weigand <uweigand@de.ibm.com>
5189
5190 * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
5191 entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
5192 is used in AIX.
5193 (read_xcoff_symtab): Handle C_WEAKEXT storage class.
5194 (process_xcoff_symbol): Likewise.
5195 (scan_xcoff_symtab): Likewise.
5196
5197 2017-04-26 Alan Hayward <alan.hayward@arm.com>
5198
5199 * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
5200 (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
5201 (ia64_access_reg): Use get_frame_register_unsigned.
5202 (ia64_access_rse_reg): Likewise.
5203 (ia64_libunwind_frame_prev_register): Likewise.
5204
5205 2017-04-26 Jiong Wang <jiong.wang@arm.com>
5206
5207 * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
5208 * gdbarch.c: Regenerated.
5209 * gdbarch.h: Regenerated.
5210 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
5211 visibility external.
5212 (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
5213 between DW_CFA_lo_user and DW_CFA_high_user inclusive.
5214 (enum cfa_how_kind): Move to ...
5215 (struct dwarf2_frame_state_reg_info): Likewise.
5216 (struct dwarf2_frame_state): Likewise.
5217 * dwarf2-frame.h: ... here.
5218 (dwarf2_frame_state_alloc_regs): New declaration.
5219 * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
5220 (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
5221
5222 2017-04-26 Alan Hayward <alan.hayward@arm.com>
5223
5224 * xtensa-tdep.c (xtensa_pseudo_register_read): Use
5225 regcache_raw_read_unsigned.
5226 (xtensa_pseudo_register_write): Likewise.
5227
5228 2017-04-26 Alan Hayward <alan.hayward@arm.com>
5229
5230 * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
5231 (nds32_pseudo_register_write): Likewise.
5232
5233 2017-04-25 Yao Qi <yao.qi@linaro.org>
5234
5235 * regcache.c (struct regcache) <readonly_p>: Change its type
5236 to bool.
5237 (regcache_xmalloc_1): Update parameter type and callers update.
5238
5239 2017-04-25 Yao Qi <yao.qi@linaro.org>
5240
5241 * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
5242 set_gdbarch_wchar_bit.
5243 * arm-tdep.c (arm_gdbarch_init): Likewise.
5244
5245 2017-04-25 Pedro Alves <palves@redhat.com>
5246
5247 * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
5248 (BothAreRelocatable, memcopy, memmove): Don't define.
5249 * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
5250 macros.
5251
5252 2017-04-25 Pedro Alves <palves@redhat.com>
5253
5254 * common/common-defs.h: Include "common/poison.h".
5255 * common/function-view.h: (Not, Or, Requires): Move to traits.h
5256 and adjust.
5257 * common/poison.h: New file.
5258 * common/traits.h: Include <type_traits>.
5259 (Not, Or, Requires): New, moved from common/function-view.h.
5260
5261 2017-04-25 Pedro Alves <palves@redhat.com>
5262
5263 * breakpoint.h (struct breakpoint): In-class initialize all
5264 fields. Make boolean fields "bool".
5265 * breakpoint.c (init_raw_breakpoint_without_location): Remove
5266 memset call and initializations no longer necessary.
5267
5268 2017-04-25 Pedro Alves <palves@redhat.com>
5269
5270 * btrace.c (pt_btrace_insn_flags): Change parameter type to
5271 reference.
5272 (pt_btrace_insn): New function.
5273 (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
5274
5275 2017-04-25 Pedro Alves <palves@redhat.com>
5276
5277 * ada-lang.c (ada_catchpoint_location): Now a "class". Remove
5278 "base" field and inherit from "bp_location" instead. Add
5279 non-default ctor.
5280 (allocate_location_exception): Use new non-default ctor.
5281 * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
5282 (init_bp_location): Convert to ...
5283 (bp_location::bp_location): ... this new ctor, and remove memset
5284 call.
5285 (base_breakpoint_allocate_location): Use the new non-default ctor.
5286 * breakpoint.h (bp_location): Now a class. Declare default and
5287 non-default ctors. In-class initialize all members.
5288 (init_bp_location): Remove declaration.
5289
5290 2017-04-25 Pedro Alves <palves@redhat.com>
5291
5292 * common/enum-flags.h (enum_flags): Don't implement copy ctor and
5293 assignment operator.
5294
5295 2017-04-24 Yao Qi <yao.qi@linaro.org>
5296
5297 * doublest.c (convert_doublest_to_floatformat): Call
5298 floatformat_totalsize_bytes.
5299
5300 2017-04-22 Tom Tromey <tom@tromey.com>
5301
5302 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
5303 ui_out_emit_list.
5304 * stack.c (print_frame): Use ui_out_emit_list.
5305 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
5306 ui_out_emit_list.
5307 * mi/mi-main.c (print_one_inferior)
5308 (mi_cmd_data_list_register_names)
5309 (mi_cmd_data_list_register_values, mi_cmd_list_features)
5310 (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
5311 ui_out_emit_list.
5312 * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
5313 (mi_output_solib_attribs): Use ui_out_emit_list,
5314 ui_out_emit_tuple.
5315 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
5316 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
5317 (mi_cmd_stack_list_args, list_args_or_locals): Use
5318 ui_out_emit_list.
5319 * disasm.c (do_assembly_only): Use ui_out_emit_list.
5320 * breakpoint.c (print_solib_event, output_thread_groups): Use
5321 ui_out_emit_list.
5322
5323 2017-04-22 Tom Tromey <tom@tromey.com>
5324
5325 * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
5326 * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
5327 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
5328
5329 2017-04-22 Tom Tromey <tom@tromey.com>
5330
5331 * tracepoint.c (tvariables_info_1)
5332 (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
5333
5334 2017-04-22 Tom Tromey <tom@tromey.com>
5335
5336 * stack.c (print_frame_arg): Use ui_out_emit_tuple,
5337 annotate_arg_emitter.
5338 * breakpoint.c (print_mention_watchpoint)
5339 (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
5340 * annotate.h (struct annotate_arg_emitter): New.
5341
5342 2017-04-22 Tom Tromey <tom@tromey.com>
5343
5344 * record-btrace.c (record_btrace_insn_history)
5345 (record_btrace_insn_history_range, record_btrace_call_history)
5346 (record_btrace_call_history_range): Use ui_out_emit_tuple.
5347 * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
5348 ui_out_emit_tuple.
5349 * stack.c (print_frame_info): Use ui_out_emit_tuple.
5350 * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
5351 * skip.c (skip_info): Use ui_out_emit_tuple.
5352 * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
5353 * progspace.c (print_program_space): Use ui_out_emit_tuple.
5354 * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
5355 * osdata.c (info_osdata): Use ui_out_emit_tuple.
5356 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
5357 ui_out_emit_tuple.
5358 * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
5359 (output_register, mi_cmd_data_read_memory)
5360 (mi_cmd_data_read_memory_bytes, mi_load_progress)
5361 (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
5362 * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
5363 Use ui_out_emit_tuple.
5364 * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
5365 ui_out_emit_tuple.
5366 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
5367 (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
5368 * linux-thread-db.c (info_auto_load_libthread_db): Use
5369 ui_out_emit_tuple.
5370 * inferior.c (print_inferior): Use ui_out_emit_tuple.
5371 * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
5372 * disasm.c (do_mixed_source_and_assembly_deprecated)
5373 (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
5374 * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
5375 * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
5376 * breakpoint.c (print_one_breakpoint_location)
5377 (print_one_breakpoint): Use ui_out_emit_tuple.
5378 * auto-load.c (print_script, info_auto_load_cmd): Use
5379 ui_out_emit_tuple.
5380 * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
5381
5382 2017-04-21 Simon Marchi <simon.marchi@ericsson.com>
5383
5384 * thread.c (print_thread_info_1): Remove dead code.
5385
5386 2017-04-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5387
5388 * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
5389 GDB_SELF_TEST.
5390 * arm-tdep.c (selftests::arm_record_test): Likewise.
5391
5392 2017-04-21 Yao Qi <yao.qi@linaro.org>
5393
5394 * regcache.c (regcache_restore): Remove argument 2. Replace
5395 argument 3 with regcache. Get register status from
5396 src->register_status and get register contents from
5397 register_buffer (src, regnum).
5398 (regcache_cpy): Update.
5399
5400 2017-04-19 Pedro Alves <palves@redhat.com>
5401
5402 * gdbthread.h (thread): Add missing closing parenthesis in
5403 comment.
5404
5405 2017-04-19 Pedro Alves <palves@redhat.com>
5406
5407 * common/refcounted-object.h: New file.
5408 * gdbthread.h: Include "common/refcounted-object.h".
5409 (thread_info): Inherit from refcounted_object and add comments.
5410 (thread_info::incref, thread_info::decref)
5411 (thread_info::m_refcount): Delete.
5412 (thread_info::deletable): Use the refcounted_object::refcount()
5413 method.
5414 * inferior.c (current_inferior_): Add comment.
5415 (set_current_inferior): Increment/decrement refcounts.
5416 (prune_inferiors, remove_inferior_command): Skip inferiors marked
5417 not-deletable instead of comparing with the current inferior.
5418 (initialize_inferiors): Increment the initial inferior's refcount.
5419 * inferior.h (struct inferior): Forward declare.
5420 Include "common/refcounted-object.h".
5421 (current_inferior, set_current_inferior): Move declaration to
5422 before struct inferior's definition, and fix comment.
5423 (inferior): Inherit from refcounted_object. Add comments.
5424 * thread.c (switch_to_thread_no_regs): Reference the thread's
5425 inferior pointer directly instead of doing a ptid lookup.
5426 (switch_to_no_thread): New function.
5427 (switch_to_thread(thread_info *)): New function, factored out
5428 from ...
5429 (switch_to_thread(ptid_t)): ... this.
5430 (restore_current_thread): Delete.
5431 (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
5432 fields, and add 'inf' field.
5433 (do_restore_current_thread_cleanup): Check whether old->inf is
5434 alive instead of looking up an inferior by ptid. Use
5435 switch_to_thread and switch_to_no_thread.
5436 (restore_current_thread_cleanup_dtor): Use old->inf directly
5437 instead of lookup up an inferior by id. Decref the inferior.
5438 Don't restore 'removable'.
5439 (make_cleanup_restore_current_thread): Same the inferior pointer
5440 in old, instead of the inferior number. Incref the inferior.
5441 Don't save/clear 'removable'.
5442
5443 2017-04-19 Pedro Alves <palves@redhat.com>
5444
5445 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
5446 unittests/scoped_restore-selftests.c.
5447 (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
5448 * common/scoped_restore.h (scoped_restore_base): Make "class".
5449 (scoped_restore_base::release): New public method.
5450 (scoped_restore_base::scoped_restore_base): New protected ctor.
5451 (scoped_restore_base::m_saved_var): New protected field.
5452 (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
5453 scoped_restore_base base class instead of m_saved_var directly.
5454 (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
5455 (scoped_restore_tmpl::scoped_restore_tmpl(const
5456 scoped_restore_tmpl<T>&)): Likewise.
5457 (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
5458 method.
5459 (scoped_restore_tmpl::saved_var): New method.
5460 (scoped_restore_tmpl::m_saved_var): Delete.
5461 * inferior.h (inferior::detaching): Now a bool.
5462 * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
5463 cleanup.
5464 * unittests/scoped_restore-selftests.c: New file.
5465
5466 2017-04-19 Pedro Alves <palves@redhat.com>
5467
5468 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
5469 Re-sort in alphabetic order.
5470
5471 2017-04-18 Pedro Alves <palves@redhat.com>
5472
5473 * xml-support.c (obstack_xml_printf): Delete.
5474 * xml-support.h (obstack_xml_printf): Delete.
5475
5476 2017-04-18 Pedro Alves <palves@redhat.com>
5477
5478 * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
5479 vdebug, verror, body_text, start_element, end_element, name,
5480 user_data, set_is_xinclude, set_error, expat_parser>: New methods.
5481 <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
5482 is_xinclude>: Make private and add m_ prefix.
5483 (gdb_xml_parser::body_text): New method, based on ...
5484 (gdb_xml_body_text): ... this. Adjust.
5485 (gdb_xml_parser::vdebug): New method, based on ...
5486 (gdb_xml_debug): ... this. Adjust.
5487 (gdb_xml_parser::verror): New method, based on ...
5488 (gdb_xml_error): ... this. Adjust.
5489 (gdb_xml_parser::start_element): New method, based on ...
5490 (gdb_xml_start_element): ... this. Adjust.
5491 (gdb_xml_start_element_wrapper): Defer to
5492 gdb_xml_parser::start_element and gdb_xml_parser::set_error.
5493 (gdb_xml_parser::end_element): New method, based on ...
5494 (gdb_xml_end_element_wrapper): ... this. Adjust.
5495 (gdb_xml_parser::~gdb_xml_parser): Adjust.
5496 (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
5497 (gdb_xml_parser::use_dtd): New method, based on ...
5498 (gdb_xml_use_dtd): ... this. Adjust.
5499 (gdb_xml_parser::parse): New method, based on ...
5500 (gdb_xml_parse): ... this. Adjust.
5501 (gdb_xml_parse_quick): Adjust to call the parser's parse method.
5502 (xinclude_start_include): Adjust to call the parser's name method.
5503 (xml_xinclude_default, xml_xinclude_start_doctype)
5504 (xml_xinclude_end_doctype): Adjust to call the parser's user_data
5505 method.
5506 (xml_process_xincludes): Adjust to call parser methods.
5507 * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
5508 declarations.
5509
5510 2017-04-18 Pedro Alves <palves@redhat.com>
5511
5512 * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
5513 gdb::optional<std::string>.
5514 * xml-support.c: Include <string>.
5515 (scope_level::scope_level(scope_level &&))
5516 (scope_level::~scope_level): Delete.
5517 (scope_level::body): Now a std::string.
5518 (gdb_xml_body_text, gdb_xml_end_element): Adjust.
5519 (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
5520 parameter.
5521 (xinclude_parsing_data::~xinclude_parsing_data): Delete.
5522 (xinclude_parsing_data::output): Now a std::string reference.
5523 (xinclude_start_include): Adjust.
5524 (xml_xinclude_default): Adjust.
5525 (xml_process_xincludes): Add 'output' parameter, and return bool.
5526 * xml-support.h (xml_process_xincludes): Add 'output' parameter,
5527 and return bool.
5528 * xml-tdesc.c: Include <unordered_map> and <string>.
5529 (tdesc_xml_cache): Delete.
5530 (tdesc_xml_cache_s): Delete.
5531 (xml_cache): Now an std::unordered_map.
5532 (tdesc_parse_xml): Adjust to use std::string and unordered_map.
5533 (target_fetch_description_xml): Change return type to
5534 gdb::optional<std::string>, and adjust.
5535 * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
5536 (target_fetch_description_xml): Change return type to
5537 gdb::optional<std::string>.
5538
5539 2017-04-18 Pedro Alves <palves@redhat.com>
5540
5541 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
5542 unittests/optional-selftests.c.
5543 (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
5544 * unittests/optional-selftests.c: New file.
5545 * unittests/optional/assignment/1.cc: New file.
5546 * unittests/optional/assignment/2.cc: New file.
5547 * unittests/optional/assignment/3.cc: New file.
5548 * unittests/optional/assignment/4.cc: New file.
5549 * unittests/optional/assignment/5.cc: New file.
5550 * unittests/optional/assignment/6.cc: New file.
5551 * unittests/optional/assignment/7.cc: New file.
5552 * unittests/optional/cons/copy.cc: New file.
5553 * unittests/optional/cons/default.cc: New file.
5554 * unittests/optional/cons/move.cc: New file.
5555 * unittests/optional/cons/value.cc: New file.
5556 * unittests/optional/in_place.cc: New file.
5557 * unittests/optional/observers/1.cc: New file.
5558 * unittests/optional/observers/2.cc: New file.
5559
5560 2017-04-18 Pedro Alves <palves@redhat.com>
5561
5562 * common/gdb_optional.h: Include common/traits.h.
5563 (in_place_t): New type.
5564 (in_place): New constexpr variable.
5565 (optional::optional): Remove member initialization of
5566 m_instantiated.
5567 (optional::optional(in_place_t...)): New constructor.
5568 (optional::~optional): Use reset.
5569 (optional::optional(const optional&)): New.
5570 (optional::optional(const optional&&)): New.
5571 (optional::optional(T &)): New.
5572 (optional::optional(T &&)): New.
5573 (operator::operator=(const optional &)): New.
5574 (operator::operator=(optional &&)): New.
5575 (operator::operator= (const T &))
5576 (operator::operator= (T &&))
5577 (operator::emplace (Args &&... args)): Return a T&. Use reset.
5578 (operator::reset): New.
5579 (operator::m_instantiated):: Add in-class initializer.
5580 * common/traits.h: Include <type_traits>.
5581 (struct And): New types.
5582
5583 2017-04-18 Pedro Alves <palves@redhat.com>
5584
5585 * xml-support.c: Include <vector>.
5586 (scope_level::scope_level(const gdb_xml_element *))
5587 (scope_level::scope_level(scope_level&&)): New.
5588 (scope_level::~scope_level): New.
5589 (scope_level_s): Delete.
5590 (gdb_xml_parser::scopes): Now a std::vector.
5591 (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
5592 Use std::vector.
5593 (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
5594 scope cleanup code.
5595 (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
5596 of the scopes member. Use std::vector::emplace_back.
5597
5598 2017-04-18 Pedro Alves <palves@redhat.com>
5599
5600 * xml-support.c (gdb_xml_parser): Add ctor/dtor. Make is_xinclude
5601 a bool.
5602 (gdb_xml_end_element): Change type of first parameter.
5603 (gdb_xml_cleanup): Rename to ...
5604 (gdb_xml_parser::~gdb_xml_parser): ... this.
5605 (gdb_xml_create_parser_and_cleanup): Delete with ...
5606 (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
5607 to this new ctor.
5608 (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
5609 using gdb_xml_create_parser_and_cleanup.
5610 (xinclude_parsing_data): Add ctor/dtor.
5611 (xml_xinclude_cleanup): Delete.
5612 (xml_process_xincludes): Create a local xinclude_parsing_data
5613 instead of heap-allocating one. Create a local gdb_xml_parser
5614 instead of heap-allocating one with
5615 gdb_xml_create_parser_and_cleanup.
5616
5617 2017-04-18 John Baldwin <jhb@FreeBSD.org>
5618
5619 PR threads/20743
5620 * fbsd-nat.c (resume_one_thread_cb): Remove.
5621 (resume_all_threads_cb): Remove.
5622 (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
5623 iterate_over_threads.
5624
5625 2017-04-17 Joel Brobecker <brobecker@adacore.com>
5626
5627 * NEWS: Create a new section for the next release branch.
5628 Rename the section of the current branch, now that it has
5629 been cut.
5630
5631 2017-04-17 Joel Brobecker <brobecker@adacore.com>
5632
5633 GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
5634 * version.in: Bump version to 8.0.50.DATE-git.
5635
5636 2017-04-13 Sergio Durigan Junior <sergiodj@redhat.com>
5637
5638 PR gdb/21385
5639 * windows-nat.c (windows_create_inferior): Declare 'allargs'
5640 independently of the host, and fix build breakage on Cygwin.
5641
5642 2017-04-13 Pedro Alves <palves@redhat.com>
5643
5644 * inferior.c (free_inferior): Convert to ...
5645 (inferior::~inferior): ... this dtor.
5646 (inferior::inferior): New ctor, factored out from ...
5647 (add_inferior_silent): ... here. Allocate the inferior with a new
5648 expression.
5649 (delete_inferior): Call delete instead of free_inferior.
5650 * inferior.h (gdb_environ, continuation): Forward declare.
5651 (inferior): Now a class. Add in-class initialization to all
5652 members. Make boolean fields bool, except 'detaching'.
5653 (inferior::inferior): New explicit ctor.
5654 (inferior::~inferior): New.
5655
5656 2017-04-13 Pedro Alves <palves@redhat.com>
5657
5658 * inferior.c (init_inferior_list): Delete.
5659 * inferior.h (init_inferior_list): Delete.
5660
5661 2017-04-13 Pedro Alves <palves@redhat.com>
5662
5663 PR threads/13217
5664 * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
5665 (top level): Call it twice, with different thread sets.
5666
5667 2017-04-13 Pedro Alves <palves@redhat.com>
5668
5669 * thread.c: Include <algorithm>.
5670 (thread_array_cleanup): Delete.
5671 (scoped_inc_dec_ref): New class.
5672 (live_threads_count): New function.
5673 (set_thread_refcount): Delete.
5674 (tp_array_compar_ascending): Now a bool.
5675 (tp_array_compar): Convert to a std::sort comparison function.
5676 (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
5677 and live_threads_count.
5678
5679 2017-04-13 Pedro Alves <palves@redhat.com>
5680
5681 * infrun.c (follow_fork_inferior): Also switch the current
5682 inferior.
5683
5684 2017-04-13 Pedro Alves <palves@redhat.com>
5685
5686 * breakpoint.c (watch_command_1): Save watchpoint-frame info
5687 before calling create_internal_breakpoint.
5688
5689 2017-04-13 Pedro Alves <palves@redhat.com>
5690
5691 * fork-child.c (execv_argv): New class.
5692 (breakup_args): Refactored as ...
5693 (execv_argv::init_for_no_shell): .. this method of execv_argv.
5694 Copy arguments to storage and replace separators with NULL
5695 terminators in place.
5696 (escape_bang_in_quoted_argument): Adjust to return bool.
5697 (execv_argv::execv_argv): New ctor.
5698 (execv_argv::init_for_shell): New method, factored out from
5699 fork_inferior. Don't strdup strings into the vector.
5700 (fork_inferior): Eliminate "shell" local and use execv_argv. Use
5701 Remove free_vector_argv call.
5702
5703 2017-04-13 Yao Qi <yao.qi@linaro.org>
5704
5705 * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
5706 tdep->rx_psw_type.
5707
5708 2017-04-13 Yao Qi <yao.qi@linaro.org>
5709
5710 * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
5711 * rx-tdep.c (rx_gdbarch_init): Likewise.
5712
5713 2017-04-13 Pedro Alves <palves@redhat.com>
5714
5715 * breakpoint.h (struct breakpoint): Reindent.
5716
5717 2017-04-13 Pedro Alves <palves@redhat.com>
5718
5719 * breakpoint.c (bp_location): Rename to ...
5720 (bp_locations): ... this. All references updated.
5721 (bp_location_count): Rename to ...
5722 (bp_locations_count): ... this. All references updated.
5723 (bp_location_placed_address_before_address_max): Rename to ...
5724 (bp_locations_placed_address_before_address_max): ... this. All
5725 references updated.
5726 (bp_location_shadow_len_after_address_max): Rename to ...
5727 (bp_locations_shadow_len_after_address_max): ... this. All
5728 references updated.
5729 (bp_location_compare_addrs): Rename to ...
5730 (bp_locations_compare_addrs): ... this. All references updated.
5731 (bp_location_compare):Rename to ...
5732 (bp_locations_compare): ... this. All references updated.
5733 (bp_location_target_extensions_update): Rename to ...
5734 (bp_locations_target_extensions_update): ... this. All references
5735 updated.
5736
5737 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
5738
5739 * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
5740 * common/common.m4: Check headers 'termios.h', 'termio.h' and
5741 'sgtty.h'.
5742 * common/gdb_termios.h: New file, with parts of "terminal.h".
5743 * inflow.c: Include "gdb_termios.h".
5744 * ser-unix.c: Include "gdb_termios.h".
5745 * terminal.h: Move terminal-related defines to
5746 "common/gdb_termios.h".
5747
5748 2017-04-12 Tom Tromey <tom@tromey.com>
5749
5750 * probe.c (parse_probes): Update.
5751 * location.h (delete_event_location): Don't declare.
5752 (event_location_deleter::operator()): Update.
5753 * location.c (event_location_deleter::operator()): Rename from
5754 delete_event_location.
5755 * linespec.h (linespec_result) <location>: Change type to
5756 event_location_up.
5757 * linespec.c (canonicalize_linespec, event_location_to_sals)
5758 (decode_objc): Update.
5759 (linespec_result): Don't call delete_event_location.
5760 * breakpoint.c (create_breakpoints_sal)
5761 (bkpt_probe_create_sals_from_location)
5762 (strace_marker_create_sals_from_location): Update.
5763
5764 2017-04-12 Tom Tromey <tom@tromey.com>
5765
5766 * linespec.h (struct linespec_result): Add constructor and
5767 destructor.
5768 (init_linespec_result, destroy_linespec_result)
5769 (make_cleanup_destroy_linespec_result): Don't declare.
5770 * linespec.c (init_linespec_result): Remove.
5771 (linespec_result::~linespec_result): Rename from
5772 destroy_linespec_result. Update.
5773 (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
5774 Remove.
5775 * breakpoint.c (create_breakpoint, break_range_command)
5776 (decode_location_default): Update.
5777 * ax-gdb.c (agent_command_1): Update.
5778
5779 2017-04-12 Tom Tromey <tom@tromey.com>
5780
5781 * remote.c (remote_download_tracepoint): Update.
5782 * python/py-breakpoint.c (bppy_get_location): Update.
5783 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
5784 (gdbscm_breakpoint_location): Update.
5785 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
5786 * breakpoint.h (struct breakpoint) <location, location_range_end>:
5787 Change type to event_location_up.
5788 * breakpoint.c (create_overlay_event_breakpoint)
5789 (create_longjmp_master_breakpoint)
5790 (create_std_terminate_master_breakpoint)
5791 (create_exception_master_breakpoint)
5792 (breakpoint_event_location_empty_p, print_breakpoint_location)
5793 (print_one_breakpoint_location, create_thread_event_breakpoint)
5794 (init_breakpoint_sal, create_breakpoint)
5795 (print_recreate_ranged_breakpoint, break_range_command)
5796 (init_ada_exception_breakpoint, say_where): Update.
5797 (base_breakpoint_dtor): Don't call delete_event_location.
5798 (bkpt_print_recreate, tracepoint_print_recreate)
5799 (dprintf_print_recreate, update_static_tracepoint)
5800 (breakpoint_re_set_default): Update.
5801
5802 2017-04-12 Tom Tromey <tom@tromey.com>
5803
5804 * compile/compile-loc2c.c (compute_stack_depth_worker): Change
5805 type of "to_do". Update.
5806 (compute_stack_depth): Use std::vector.
5807
5808 2017-04-12 Tom Tromey <tom@tromey.com>
5809
5810 * printcmd.c (find_instruction_backward): Use std::vector.
5811
5812 2017-04-12 Tom Tromey <tom@tromey.com>
5813
5814 * symfile.c (objfilep): Remove typedef.
5815 (reread_symbols): Use a std::vector.
5816
5817 2017-04-12 Tom Tromey <tom@tromey.com>
5818
5819 * mi/mi-main.c (exec_direction_forward): Remove.
5820 (exec_reverse_continue, mi_execute_command): Use scoped_restore.
5821 * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
5822 scoped_restore.
5823 * guile/guile.c (guile_repl_command, guile_command)
5824 (gdbscm_execute_gdb_command): Use scoped_restore.
5825 * go-exp.y (go_parse): Use scoped_restore.
5826 * d-exp.y (d_parse): Use scoped_restore.
5827 * cli/cli-decode.c (cmd_func): Use scoped_restore.
5828 * c-exp.y (c_parse): Use scoped_restore.
5829
5830 2017-04-12 Tom Tromey <tom@tromey.com>
5831
5832 * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
5833 (mi_parse): Update return type.
5834 (mi_parse_free): Remove.
5835 * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
5836 (mi_parse::~mi_parse): Rename from mi_parse_free.
5837 (mi_parse_cleanup): Remove.
5838 (mi_parse): Return a unique_ptr. Use new.
5839 * mi/mi-main.c (mi_execute_command): Update.
5840
5841 2017-04-12 Tom Tromey <tom@tromey.com>
5842
5843 * location.c (explicit_location_lex_one): Return a
5844 unique_xmalloc_ptr.
5845 (string_to_explicit_location): Update. Remove cleanups.
5846
5847 2017-04-12 Tom Tromey <tom@tromey.com>
5848
5849 * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
5850 (compare_value_and_voffset): Change type. Update.
5851 (compute_vtable_size): Change type of "offset_vec".
5852 (gnuv3_print_vtable): Use std::vector. Remove cleanups.
5853 (gnuv3_get_typeid): Remove extraneous declaration.
5854
5855 2017-04-12 Tom Tromey <tom@tromey.com>
5856
5857 * charset.h (wchar_iterator): Fix comment.
5858
5859 2017-04-12 Tom Tromey <tom@tromey.com>
5860
5861 * charset.c (iconv_wrapper): New class.
5862 (cleanup_iconv): Remove.
5863 (convert_between_encodings): Use it.
5864
5865 2017-04-12 Tom Tromey <tom@tromey.com>
5866
5867 * symfile.h (increment_reading_symtab): Update type.
5868 * symfile.c (decrement_reading_symtab): Remove.
5869 (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
5870 * psymtab.c (psymtab_to_symtab): Update.
5871 * dwarf2read.c (dw2_instantiate_symtab): Update.
5872
5873 2017-04-12 Tom Tromey <tom@tromey.com>
5874
5875 * jit.c (struct jit_reader): Declare separately. Add constructor
5876 and destructor. Change type of "handle".
5877 (loaded_jit_reader): Define separately.
5878 (jit_reader_load): Update. New "new".
5879 (jit_reader_unload_command): Use "delete".
5880 * gdb-dlfcn.h (struct dlclose_deleter): New.
5881 (gdb_dlhandle_up): New typedef.
5882 (gdb_dlopen, gdb_dlsym): Update types.
5883 (gdb_dlclose): Remove.
5884 * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
5885 (gdb_dlsym): Change type of "handle".
5886 (make_cleanup_dlclose): Remove.
5887 (dlclose_deleter::operator()): Rename from gdb_dlclose.
5888 * compile/compile-c-support.c (load_libcc): Update.
5889
5890 2017-04-12 Tom Tromey <tom@tromey.com>
5891
5892 * symtab.h (find_pcs_for_symtab_line): Change return type.
5893 * symtab.c (find_pcs_for_symtab_line): Change return type.
5894 * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
5895 type of "vec". Update.
5896 (ltpy_get_pcs_for_line): Update.
5897 * linespec.c (decode_digits_ordinary): Update.
5898
5899 2017-04-12 Tom Tromey <tom@tromey.com>
5900
5901 * tracepoint.c (actions_command): Update.
5902 * python/python.c (python_command, python_interactive_command):
5903 Update.
5904 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
5905 * guile/guile.c (guile_command): Update.
5906 * defs.h (read_command_lines, read_command_lines_1): Return
5907 command_line_up.
5908 (command_lines_deleter): New struct.
5909 (command_line_up): New typedef.
5910 * compile/compile.c (compile_code_command)
5911 (compile_print_command): Update.
5912 * cli/cli-script.h (get_command_line, copy_command_lines): Return
5913 command_line_up.
5914 (make_cleanup_free_command_lines): Remove.
5915 * cli/cli-script.c (get_command_line, read_command_lines_1)
5916 (copy_command_lines): Return command_line_up.
5917 (while_command, if_command, read_command_lines, define_command)
5918 (document_command): Update.
5919 (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
5920 Remove.
5921 * breakpoint.h (breakpoint_set_commands): Change type of
5922 "commands".
5923 * breakpoint.c (breakpoint_set_commands): Change type of
5924 "commands". Update.
5925 (do_map_commands_command, update_dprintf_command_list)
5926 (create_tracepoint_from_upload): Update.
5927
5928 2017-04-12 Tom Tromey <tom@tromey.com>
5929
5930 * tracepoint.c (scope_info): Update.
5931 * spu-tdep.c (spu_catch_start): Update.
5932 * python/python.c (gdbpy_decode_line): Update.
5933 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
5934 * python/py-breakpoint.c (bppy_init): Update.
5935 * probe.c (parse_probes): Update.
5936 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
5937 * location.h (event_location_deleter): New struct.
5938 (event_location_up): New typedef.
5939 (new_linespec_location, new_address_location, new_probe_location)
5940 (new_explicit_location, copy_event_location)
5941 (string_to_event_location, string_to_event_location_basic)
5942 (string_to_explicit_location): Update return type.
5943 (make_cleanup_delete_event_location): Remove.
5944 * location.c (new_linespec_location, new_address_location)
5945 (new_probe_location, new_explicit_location, copy_event_location):
5946 Return event_location_up.
5947 (delete_event_location_cleanup)
5948 (make_cleanup_delete_event_location): Remove.
5949 (string_to_explicit_location, string_to_event_location_basic)
5950 (string_to_event_location): Return event_location_up.
5951 * linespec.c (canonicalize_linespec, event_location_to_sals)
5952 (decode_line_with_current_source)
5953 (decode_line_with_last_displayed, decode_objc): Update.
5954 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
5955 * completer.c (location_completer): Update.
5956 * cli/cli-cmds.c (edit_command, list_command): Update.
5957 * breakpoint.c (create_overlay_event_breakpoint)
5958 (create_longjmp_master_breakpoint)
5959 (create_std_terminate_master_breakpoint)
5960 (create_exception_master_breakpoint)
5961 (create_thread_event_breakpoint): Update.
5962 (init_breakpoint_sal): Update. Remove some dead code.
5963 (create_breakpoint_sal): Change type of "location". Update.
5964 (create_breakpoints_sal, create_breakpoint, break_command_1)
5965 (dprintf_command, break_range_command, until_break_command)
5966 (init_ada_exception_breakpoint)
5967 (strace_marker_create_sals_from_location)
5968 (update_static_tracepoint, trace_command, ftrace_command)
5969 (strace_command, create_tracepoint_from_upload): Update.
5970 * break-catch-throw.c (re_set_exception_catchpoint): Update.
5971 * ax-gdb.c (agent_command_1): Update.
5972
5973 2017-04-12 Pedro Alves <palves@redhat.com>
5974
5975 * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
5976 * configure.tgt: Handle i[34567]86-*-go32* and
5977 i[34567]86-*-msdosdjgpp*.
5978 * i386-tdep.c (i386_svr4_reg_to_regnum):
5979 Make extern.
5980 (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
5981 i386-go32-tdep.c.
5982 (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
5983 * i386-go32-tdep.c: New file.
5984 * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
5985 declarations.
5986
5987 2017-04-12 Simon Marchi <simon.marchi@ericsson.com>
5988
5989 * aix-thread.c (pd_status2str): Change return type to const char *.
5990
5991 2017-04-12 Pedro Alves <palves@redhat.com>
5992
5993 * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
5994 calls to set_gdbarch_gnu_triplet_regexp.
5995
5996 2017-04-12 Pedro Alves <palves@redhat.com>
5997
5998 PR gdb/21323
5999 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
6000 New enum value.
6001 (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
6002 * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
6003 * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
6004 * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
6005 * gdbarch.h, gdbarch.c: Regenerate.
6006 * aarch64-tdep.c (aarch64_gdbarch_init): Override
6007 gdbarch_wchar_bit and gdbarch_wchar_signed.
6008 * alpha-tdep.c (alpha_gdbarch_init): Likewise.
6009 * arm-tdep.c (arm_gdbarch_init): Likewise.
6010 * avr-tdep.c (avr_gdbarch_init): Likewise.
6011 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
6012 * i386-nto-tdep.c (i386nto_init_abi): Likewise.
6013 * i386-tdep.c (i386_go32_init_abi): Likewise.
6014 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
6015 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
6016 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
6017 * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
6018 * sh-tdep.c (sh_gdbarch_init): Likewise.
6019 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
6020 * sparc64-tdep.c (sparc64_init_abi): Likewise.
6021 * windows-tdep.c (windows_init_abi): Likewise.
6022 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
6023
6024 2017-04-12 Pedro Alves <palves@redhat.com>
6025
6026 PR c++/21323
6027 * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
6028 cplus_primitive_type_char32_t>: New enum values.
6029 (cplus_language_arch_info): Register cplus_primitive_type_char16_t
6030 and cplus_primitive_type_char32_t.
6031 * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
6032 32, use the archtecture's built-in type for char16_t and char32_t,
6033 respectively. Otherwise, fallback to init_integer_type as before,
6034 but make the type unsigned, and issue a complaint.
6035 * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
6036
6037 2017-04-12 Alan Hayward <alan.hayward@arm.com>
6038
6039 * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
6040 (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
6041
6042 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
6043
6044 * windows-nat.c (windows_create_inferior): Declare 'toexec' as
6045 'const char *'.
6046
6047 2017-04-12 Sergio Durigan Junior <sergiodj@redhat.com>
6048
6049 * common/common-utils.c (free_vector_argv): New function.
6050 * common/common-utils.h: Include <vector>.
6051 (free_vector_argv): New prototype.
6052 * darwin-nat.c (darwin_create_inferior): Rewrite function
6053 prototype in order to constify "exec_file" and accept a
6054 "std::string" for "allargs".
6055 * fork-child.c: Include <vector>.
6056 (breakup_args): Rewrite function, using C++.
6057 (fork_inferior): Rewrite function header, constify "exec_file_arg"
6058 and accept "std::string" for "allargs". Update the code to
6059 calculate "argv" based on "allargs". Update calls to "exec_fun"
6060 and "execvp".
6061 * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
6062 order to constify "exec_file" and accept a "std::string" for
6063 "allargs".
6064 * go32-nat.c (go32_create_inferior): Likewise.
6065 * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
6066 * infcmd.c (run_command_1): Constify "exec_file". Use
6067 "std::string" for inferior arguments.
6068 * inferior.h (fork_inferior): Update prototype.
6069 * linux-nat.c (linux_nat_create_inferior): Rewrite function
6070 prototype in order to constify "exec_file" and accept a
6071 "std::string" for "allargs".
6072 * nto-procfs.c (procfs_create_inferior): Likewise.
6073 * procfs.c (procfs_create_inferior): Likewise.
6074 * remote-sim.c (gdbsim_create_inferior): Likewise.
6075 * remote.c (extended_remote_run): Update code to accept
6076 "std::string" as argument.
6077 (extended_remote_create_inferior): Rewrite function prototype in
6078 order to constify "exec_file" and accept a "std::string" for
6079 "allargs".
6080 * rs6000-nat.c (super_create_inferior): Likewise.
6081 (rs6000_create_inferior): Likewise.
6082 * target.h (struct target_ops) <to_create_inferior>: Likewise.
6083 * windows-nat.c (windows_create_inferior): Likewise.
6084
6085 2017-04-11 Pedro Alves <palves@redhat.com>
6086
6087 * thread.c: Fix whitespace throughout.
6088
6089 2017-04-11 Philipp Rudo <prudo@linux.vnet.ibm.com>
6090
6091 * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
6092
6093 2017-04-11 Alan Hayward <alan.hayward@arm.com>
6094
6095 * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
6096
6097 2017-04-10 Sergio Durigan Junior <sergiodj@redhat.com>
6098
6099 PR gdb/21364
6100 * osdata.c (info_osdata): Check if 'type' is an empty string
6101 instead of NULL.
6102
6103 2017-04-10 Pedro Alves <palves@redhat.com>
6104
6105 * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
6106 (ptid_to_global_thread_id, in_thread_list)
6107 (do_captured_list_thread_ids, set_resumed, set_running)
6108 (set_executing, set_stop_requested, finish_thread_state)
6109 (validate_registers_access, can_access_registers_ptid)
6110 (print_thread_info_1, switch_to_thread)
6111 (do_restore_current_thread_cleanup)
6112 (make_cleanup_restore_current_thread, thread_command)
6113 (thread_name_command): Use operator== instead of ptid_equal.
6114
6115 2017-04-10 Pedro Alves <palves@redhat.com>
6116
6117 * thread.c (struct current_thread_cleanup) <next>: Delete field.
6118 (current_thread_cleanup_chain): Delete.
6119 (restore_current_thread_cleanup_dtor)
6120 (make_cleanup_restore_current_thread): Remove references to
6121 current_thread_cleanup_chain.
6122
6123 2017-04-10 Alan Hayward <alan.hayward@arm.com>
6124
6125 * msp430-tdep.c (msp430_pseudo_register_read): Never return
6126 REG_UNKNOWN.
6127
6128 2017-04-10 Yao Qi <yao.qi@linaro.org>
6129
6130 PR gdb/19942
6131 * gdbthread.h (thread_info::deletable): New method.
6132 (thread_info::incref): New method.
6133 (thread_info::decref): New method.
6134 (thread_info::refcount): Move it to private.
6135 * infrun.c (save_stop_context): Call inc_refcount.
6136 (release_stop_context_cleanup): Likewise.
6137 * thread.c (set_thread_exited): New function.
6138 (init_thread_list): Delete "tp" only it is deletable, otherwise
6139 call set_thread_exited.
6140 (delete_thread_1): Call set_thread_exited.
6141 (current_thread_cleanup) <inferior_pid>: Remove.
6142 <thread>: New field.
6143 (restore_current_thread_ptid_changed): Removed.
6144 (do_restore_current_thread_cleanup): Adjust.
6145 (restore_current_thread_cleanup_dtor): Don't call
6146 find_thread_ptid.
6147 (set_thread_refcount): Use dec_refcount.
6148 (make_cleanup_restore_current_thread): Adjust.
6149 (thread_apply_all_command): Call inc_refcount.
6150 (_initialize_thread): Don't call
6151 observer_attach_thread_ptid_changed.
6152
6153 2017-04-10 Yao Qi <yao.qi@linaro.org>
6154
6155 * thread.c (delete_thread_1): Hoist code on marking thread as
6156 exited.
6157
6158 2017-04-09 Simon Marchi <simon.marchi@polymtl.ca>
6159
6160 * windows-nat.c (windows_detach): Initialize ptid with
6161 minus_one_ptid.
6162
6163 2017-04-07 Simon Marchi <simon.marchi@ericsson.com>
6164
6165 * unittests/ptid-selftests.c: Fix erroneous assert messages.
6166
6167 2017-04-07 Alan Hayward <alan.hayward@arm.com>
6168
6169 * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
6170 (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
6171 (bfin_pseudo_register_write): Likewise
6172
6173 2017-04-06 Simon Marchi <simon.marchi@ericsson.com>
6174
6175 * common/ptid.h (struct ptid): Change to...
6176 (class ptid_t): ... this.
6177 <ptid_t>: New constructors.
6178 <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
6179 matches>: New methods.
6180 <make_null, make_minus_one>: New static methods.
6181 <pid>: Rename to...
6182 <m_pid>: ...this.
6183 <lwp>: Rename to...
6184 <m_lwp>: ...this.
6185 <tid>: Rename to...
6186 <m_tid>: ...this.
6187 (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
6188 ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
6189 as references, move comment to class ptid_t.
6190 * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
6191 ptid_t static methods.
6192 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
6193 ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
6194 Take ptid arguments as references, implement using ptid_t methods.
6195 * unittests/ptid-selftests.c: New file.
6196 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6197 unittests/ptid-selftests.c.
6198 (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
6199
6200 2017-04-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
6201
6202 * python/python.c (python_run_simple_file): Cast mode literal to
6203 non-const char pointer as expected by PyFile_FromString.
6204
6205 2017-04-05 Simon Marchi <simon.marchi@ericsson.com>
6206
6207 * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
6208 minus_one_ptid and null_ptid.
6209
6210 2017-04-05 Pedro Alves <palves@redhat.com>
6211
6212 * warning.m4 (build_warnings): Remove -Wno-write-strings.
6213 * configure: Regenerate.
6214
6215 2017-04-05 Pedro Alves <palves@redhat.com>
6216
6217 * ada-exp.y (yyerror): Constify.
6218 * ada-lang.c (bound_name, get_selections)
6219 (ada_variant_discrim_type)
6220 (ada_variant_discrim_name, ada_value_struct_elt)
6221 (ada_lookup_struct_elt_type, is_unchecked_variant)
6222 (ada_which_variant_applies, standard_exc, ada_get_next_arg)
6223 (catch_ada_exception_command_split)
6224 (catch_ada_assert_command_split, catch_assert_command)
6225 (ada_op_name): Constify.
6226 * ada-lang.h (ada_yyerror, get_selections)
6227 (ada_variant_discrim_name, ada_value_struct_elt): Constify.
6228 * arc-tdep.c (arc_print_frame_cache): Constify.
6229 * arm-tdep.c (arm_skip_stub): Constify.
6230 * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
6231 (gen_aggregate_elt_ref): Constify.
6232 * bcache.c (print_bcache_statistics): Constify.
6233 * bcache.h (print_bcache_statistics): Constify.
6234 * break-catch-throw.c (catch_exception_command_1):
6235 * breakpoint.c (struct ep_type_description::description):
6236 Constify.
6237 (add_solib_catchpoint): Constify.
6238 (catch_fork_command_1): Add cast.
6239 (add_catch_command): Constify.
6240 * breakpoint.h (add_catch_command, add_solib_catchpoint):
6241 Constify.
6242 * bsd-uthread.c (bsd_uthread_state): Constify.
6243 * buildsym.c (patch_subfile_names): Constify.
6244 * buildsym.h (next_symbol_text_func, patch_subfile_names):
6245 Constify.
6246 * c-exp.y (yyerror): Constify.
6247 (token::oper): Constify.
6248 * c-lang.h (c_yyerror, cp_print_class_member): Constify.
6249 * c-varobj.c (cplus_describe_child): Constify.
6250 * charset.c (find_charset_names): Add cast.
6251 (find_charset_names): Constify array and add const_cast.
6252 * cli/cli-cmds.c (complete_command, cd_command): Constify.
6253 (edit_command): Constify.
6254 * cli/cli-decode.c (lookup_cmd): Constify.
6255 * cli/cli-dump.c (dump_memory_command, dump_value_command):
6256 Constify.
6257 (struct dump_context): Constify.
6258 (add_dump_command, restore_command): Constify.
6259 * cli/cli-script.c (get_command_line): Constify.
6260 * cli/cli-script.h (get_command_line): Constify.
6261 * cli/cli-utils.c (check_for_argument): Constify.
6262 * cli/cli-utils.h (check_for_argument): Constify.
6263 * coff-pe-read.c (struct read_pe_section_data): Constify.
6264 * command.h (lookup_cmd): Constify.
6265 * common/print-utils.c (decimal2str): Constify.
6266 * completer.c (gdb_print_filename): Constify.
6267 * corefile.c (set_gnutarget): Constify.
6268 * cp-name-parser.y (yyerror): Constify.
6269 * cp-valprint.c (cp_print_class_member): Constify.
6270 * cris-tdep.c (cris_register_name, crisv32_register_name):
6271 Constify.
6272 * d-exp.y (yyerror): Constify.
6273 (struct token::oper): Constify.
6274 * d-lang.h (d_yyerror): Constify.
6275 * dbxread.c (struct header_file_location::name): Constify.
6276 (add_old_header_file, add_new_header_file, last_function_name)
6277 (dbx_next_symbol_text, add_bincl_to_list)
6278 (find_corresponding_bincl_psymtab, set_namestring)
6279 (find_stab_function_addr, read_dbx_symtab, start_psymtab)
6280 (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
6281 * defs.h (command_line_input, print_address_symbolic)
6282 (deprecated_readline_begin_hook): Constify.
6283 * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
6284 Constify.
6285 * event-top.c (handle_line_of_input): Constify and add cast.
6286 * exceptions.c (catch_errors): Constify.
6287 * exceptions.h (catch_errors): Constify.
6288 * expprint.c (print_subexp_standard, op_string, op_name)
6289 (op_name_standard, dump_raw_expression, dump_raw_expression):
6290 * expression.h (op_name, op_string, dump_raw_expression):
6291 Constify.
6292 * f-exp.y (yyerror): Constify.
6293 (struct token::oper): Constify.
6294 (struct f77_boolean_val::name): Constify.
6295 * f-lang.c (f_word_break_characters): Constify.
6296 * f-lang.h (f_yyerror): Constify.
6297 * fork-child.c (fork_inferior): Add cast.
6298 * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
6299 (new_variant): Constify.
6300 * gdbarch.sh (pstring_ptr, pstring_list): Constify.
6301 * gdbarch.c: Regenerate.
6302 * gdbcore.h (set_gnutarget): Constify.
6303 * go-exp.y (yyerror): Constify.
6304 (token::oper): Constify.
6305 * go-lang.h (go_yyerror): Constify.
6306 * go32-nat.c (go32_sysinfo): Constify.
6307 * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
6308 * guile/scm-cmd.c (cmdscm_function): Constify.
6309 * guile/scm-param.c (pascm_param_value): Constify.
6310 * h8300-tdep.c (h8300_register_name, h8300s_register_name)
6311 (h8300sx_register_name): Constify.
6312 * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
6313 Constify.
6314 * ia64-tdep.c (ia64_register_names): Constify.
6315 * infcmd.c (construct_inferior_arguments): Constify.
6316 (path_command, attach_post_wait): Constify.
6317 * language.c (show_range_command, show_case_command)
6318 (unk_lang_error): Constify.
6319 * language.h (language_defn::la_error)
6320 (language_defn::la_name_of_this): Constify.
6321 * linespec.c (decode_line_2): Constify.
6322 * linux-thread-db.c (thread_db_err_str): Constify.
6323 * lm32-tdep.c (lm32_register_name): Constify.
6324 * m2-exp.y (yyerror): Constify.
6325 * m2-lang.h (m2_yyerror): Constify.
6326 * m32r-tdep.c (m32r_register_names): Constify and make static.
6327 * m68hc11-tdep.c (m68hc11_register_names): Constify.
6328 * m88k-tdep.c (m88k_register_name): Constify.
6329 * macroexp.c (appendmem): Constify.
6330 * mdebugread.c (fdr_name, add_data_symbol, parse_type)
6331 (upgrade_type, parse_external, parse_partial_symbols)
6332 (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
6333 (new_symbol): Constify.
6334 * memattr.c (mem_info_command): Constify.
6335 * mep-tdep.c (register_name_from_keyword): Constify.
6336 * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
6337 Constify.
6338 * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
6339 * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
6340 * mi/mi-main.c (captured_mi_execute_command): Constify and add
6341 cast.
6342 (mi_execute_async_cli_command): Constify.
6343 * mips-tdep.c (mips_register_name): Constify.
6344 * mn10300-tdep.c (register_name, mn10300_generic_register_name)
6345 (am33_register_name, am33_2_register_name)
6346 * moxie-tdep.c (moxie_register_names): Constify.
6347 * nat/linux-osdata.c (osdata_type): Constify fields.
6348 * nto-tdep.c (nto_parse_redirection): Constify.
6349 * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
6350 (lookup_child_selector): Constify.
6351 (objc_methcall::name): Constify.
6352 * objc-lang.h (lookup_objc_class, lookup_child_selector)
6353 (lookup_struct_typedef): Constify.
6354 * objfiles.c (pc_in_section): Constify.
6355 * objfiles.h (pc_in_section): Constify.
6356 * p-exp.y (struct token::oper): Constify.
6357 (yyerror): Constify.
6358 * p-lang.h (pascal_yyerror): Constify.
6359 * parser-defs.h (op_name_standard): Constify.
6360 (op_print::string): Constify.
6361 (exp_descriptor::op_name): Constify.
6362 * printcmd.c (print_address_symbolic): Constify.
6363 * psymtab.c (print_partial_symbols): Constify.
6364 * python/py-breakpoint.c (stop_func): Constify.
6365 (bppy_get_expression): Constify.
6366 * python/py-cmd.c (cmdpy_completer::name): Constify.
6367 (cmdpy_function): Constify.
6368 * python/py-event.c (evpy_add_attribute)
6369 (gdbpy_initialize_event_generic): Constify.
6370 * python/py-event.h (evpy_add_attribute)
6371 (gdbpy_initialize_event_generic): Constify.
6372 * python/py-evts.c (add_new_registry): Constify.
6373 * python/py-finishbreakpoint.c (outofscope_func): Constify.
6374 * python/py-framefilter.c (get_py_iter_from_func): Constify.
6375 * python/py-inferior.c (get_buffer): Add cast.
6376 * python/py-param.c (parm_constant::name): Constify.
6377 * python/py-unwind.c (fprint_frame_id): Constify.
6378 * python/python.c (gdbpy_parameter_value): Constify.
6379 * remote-fileio.c (remote_fio_func_map): Make 'name' const.
6380 * remote.c (memory_packet_config::name): Constify.
6381 (show_packet_config_cmd, remote_write_bytes)
6382 (remote_buffer_add_string):
6383 * reverse.c (exec_reverse_once): Constify.
6384 * rs6000-tdep.c (variant::name, variant::description): Constify.
6385 * rust-exp.y (rustyyerror): Constify.
6386 * rust-lang.c (rust_op_name): Constify.
6387 * rust-lang.h (rustyyerror): Constify.
6388 * serial.h (serial_ops::name): Constify.
6389 * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
6390 (sh_sh3e_register_name, sh_sh2e_register_name)
6391 (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
6392 (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
6393 (sh_sh4_register_name, sh_sh4_nofpu_register_name)
6394 (sh_sh4al_dsp_register_name): Constify.
6395 * sh64-tdep.c (sh64_register_name): Constify.
6396 * solib-darwin.c (lookup_symbol_from_bfd): Constify.
6397 * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
6398 * stabsread.c (patch_block_stabs, read_type_number)
6399 (ref_map::stabs, ref_add, process_reference)
6400 (symbol_reference_defined, define_symbol, define_symbol)
6401 (error_type, read_type, read_member_functions, read_cpp_abbrev)
6402 (read_one_struct_field, read_struct_fields, read_baseclasses)
6403 (read_tilde_fields, read_struct_type, read_array_type)
6404 (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
6405 (read_huge_number, read_range_type, read_args, common_block_start)
6406 (find_name_end): Constify.
6407 * stabsread.h (common_block_start, define_symbol)
6408 (process_one_symbol, symbol_reference_defined, ref_add):
6409 * symfile.c (get_section_index, add_symbol_file_command):
6410 * symfile.h (get_section_index): Constify.
6411 * target-descriptions.c (tdesc_type::name): Constify.
6412 (tdesc_free_type): Add cast.
6413 * target.c (find_default_run_target):
6414 (add_deprecated_target_alias, find_default_run_target)
6415 (target_announce_detach): Constify.
6416 (do_option): Constify.
6417 * target.h (add_deprecated_target_alias): Constify.
6418 * thread.c (print_thread_info_1): Constify.
6419 * top.c (deprecated_readline_begin_hook, command_line_input):
6420 Constify.
6421 (init_main): Add casts.
6422 * top.h (handle_line_of_input): Constify.
6423 * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
6424 * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
6425 (tfind_command): Rename to ...
6426 (tfind_command_1): ... this and constify.
6427 (tfind_command): New function.
6428 (tfind_end_command, tfind_start_command): Adjust.
6429 (encode_source_string): Constify.
6430 * tracepoint.h (encode_source_string): Constify.
6431 * tui/tui-data.c (tui_partial_win_by_name): Constify.
6432 * tui/tui-data.h (tui_partial_win_by_name): Constify.
6433 * tui/tui-source.c (tui_set_source_content_nil): Constify.
6434 * tui/tui-source.h (tui_set_source_content_nil): Constify.
6435 * tui/tui-win.c (parse_scrolling_args): Constify.
6436 * tui/tui-windata.c (tui_erase_data_content): Constify.
6437 * tui/tui-windata.h (tui_erase_data_content): Constify.
6438 * tui/tui-winsource.c (tui_erase_source_content): Constify.
6439 * tui/tui.c (tui_enable): Add cast.
6440 * utils.c (defaulted_query): Constify.
6441 (init_page_info): Add cast.
6442 (puts_debug, subset_compare): Constify.
6443 * utils.h (subset_compare): Constify.
6444 * varobj.c (varobj_format_string): Constify.
6445 * varobj.h (varobj_format_string): Constify.
6446 * vax-tdep.c (vax_register_name): Constify.
6447 * windows-nat.c (windows_detach): Constify.
6448 * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
6449 * xml-support.c (gdb_xml_end_element): Constify.
6450 * xml-tdesc.c (tdesc_start_reg): Constify.
6451 * xstormy16-tdep.c (xstormy16_register_name): Constify.
6452 * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
6453 * xtensa-tdep.h (xtensa_register_t::name): Constify.
6454
6455 2017-04-05 Pedro Alves <palves@redhat.com>
6456
6457 * proc-api.c (struct trans): Constify.
6458 (procfs_note): Constify.
6459 * proc-events.c (struct trans, syscall_table):
6460 * proc-flags.c (struct trans): Constify.
6461 * proc-utils.h (procfs_note): Constify.
6462 * proc-why.c (struct trans): Constify.
6463 * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
6464 (procfs_detach): Constify.
6465 * sol-thread.c (struct string_map): Constify.
6466 (td_err_string, td_state_string): Constify.
6467
6468 2017-04-05 Pedro Alves <palves@redhat.com>
6469
6470 * proc-api.c (procfs_filename): Don't initialize
6471 procfs_filename.
6472 (prepare_to_trace): Assume procfs_filename is non-NULL.
6473 (_initialize_proc_api): Give procfs_filename a default value here.
6474
6475 2017-04-05 Pedro Alves <palves@redhat.com>
6476
6477 * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
6478 'cond_string' parameter.
6479 (extract_exception_regexp): Constify 'string' parameter.
6480 (catch_exception_command_1): Constify.
6481 * breakpoint.c (init_catchpoint)
6482 (create_fork_vfork_event_catchpoint): Constify 'cond_string'
6483 parameter.
6484 (ep_parse_optional_if_clause, catch_fork_command_1)
6485 (catch_exec_command_1): Constify.
6486 * breakpoint.h (init_catchpoint): Constify 'cond_string'
6487 parameter.
6488 (ep_parse_optional_if_clause): Constify.
6489 * cli/cli-utils.c (remove_trailing_whitespace)
6490 (check_for_argument): Constify.
6491 * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
6492 non-const overload.
6493 (check_for_argument): Likewise.
6494
6495 2017-04-05 Pedro Alves <palves@redhat.com>
6496
6497 * event-top.c (command_line_handler): Add cast to execute_command
6498 call.
6499 * record-btrace.c (cmd_record_btrace_bts_start)
6500 (cmd_record_btrace_pt_start, cmd_record_btrace_start)
6501 (cmd_record_btrace_start): Add cast to execute_command call.
6502 * record-full.c (record_full_goto_insn):
6503 * record.c (record_start, record_stop): Add cast to
6504 execute_command_to_string calls.
6505 (cmd_record_start): Add cast to execute_command calls.
6506
6507 2017-04-05 Pedro Alves <palves@redhat.com>
6508
6509 * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
6510 static inline function.
6511 * python/py-arch.c (archpy_disassemble): Constify 'keywords'
6512 array and use gdb_PyArg_ParseTupleAndKeywords.
6513 * python/py-cmd.c (cmdpy_init): Likewise.
6514 * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
6515 * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
6516 (infpy_search_memory): Likewise.
6517 * python/py-objfile.c (objfpy_add_separate_debug_file)
6518 (gdbpy_lookup_objfile): Likewise.
6519 * python/py-symbol.c (gdbpy_lookup_symbol)
6520 (gdbpy_lookup_global_symbol): Likewise.
6521 * python/py-type.c (gdbpy_lookup_type): Likewise.
6522 * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
6523 * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
6524 Likewise.
6525
6526 2017-04-05 Pedro Alves <palves@redhat.com>
6527
6528 * python/python-internal.h (gdb_PyGetSetDef): New type.
6529 * python/py-block.c (block_object_getset)
6530 (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
6531 * python/py-event.c (event_object_getset)
6532 (finish_breakpoint_object_getset): Likewise.
6533 * python/py-inferior.c (inferior_object_getset): Likewise.
6534 * python/py-infthread.c (thread_object_getset): Likewise.
6535 * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
6536 * python/py-linetable.c (linetable_entry_object_getset): Likewise.
6537 * python/py-objfile.c (objfile_getset): Likewise.
6538 * python/py-progspace.c (pspace_getset): Likewise.
6539 * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
6540 Likewise.
6541 * python/py-record.c (recpy_record_getset): Likewise.
6542 * python/py-symbol.c (symbol_object_getset): Likewise.
6543 * python/py-symtab.c (symtab_object_getset, sal_object_getset):
6544 Likewise.
6545 * python/py-type.c (type_object_getset, field_object_getset):
6546 Likewise.
6547 * python/py-value.c (value_object_getset): Likewise.
6548
6549 2017-04-05 Pedro Alves <palves@redhat.com>
6550
6551 * python/python-internal.h (gdb_PyObject_CallMethod)
6552 (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
6553 New functions.
6554 (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
6555 (PySys_GetObject, PySys_SetPath): New macros.
6556
6557 2017-04-05 Pedro Alves <palves@redhat.com>
6558
6559 * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
6560 info_osdata_command.
6561 * osdata.c (info_osdata_command): Rename to ...
6562 (info_osdata): ... this. Constify 'type' parameter, and remove
6563 the 'from_tty' parameter. Accept NULL TYPE.
6564 (info_osdata_command): New function.
6565 * osdata.h (info_osdata_command): Remove declaration.
6566 (info_osdata): New declaration.
6567
6568 2017-04-05 Pedro Alves <palves@redhat.com>
6569
6570 * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
6571 (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
6572 (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
6573 parameter.
6574 * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
6575 (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
6576 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
6577 parameter.
6578 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
6579 (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
6580 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
6581 (mi_cmd_file_list_exec_source_files)
6582 (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
6583 * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
6584 (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
6585 parameter.
6586 * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
6587 (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
6588 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
6589 (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
6590 (mi_cmd_stack_info_frame): Constify 'command' parameter.
6591 * mi/mi-cmd-target.c (mi_cmd_target_file_get)
6592 (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
6593 'command' parameter.
6594 * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
6595 (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
6596 (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
6597 (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
6598 (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
6599 (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
6600 (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
6601 (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
6602 (mi_cmd_var_set_update_range): Constify 'command' parameter.
6603 * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
6604 * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
6605 parameter.
6606 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
6607 (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
6608 (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
6609 (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
6610 (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
6611 (mi_cmd_target_flash_erase, mi_cmd_thread_select)
6612 (mi_cmd_thread_list_ids, mi_cmd_thread_info)
6613 (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
6614 (mi_cmd_data_list_changed_registers)
6615 (mi_cmd_data_write_register_values)
6616 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
6617 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
6618 (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
6619 (mi_cmd_list_features, mi_cmd_list_target_features)
6620 (mi_cmd_add_inferior, mi_cmd_remove_inferior)
6621 (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
6622 (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
6623 (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
6624 (mi_cmd_trace_frame_collected): Constify 'command'
6625 parameter.
6626 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
6627 'command' parameter.
6628
6629 2017-04-05 Pedro Alves <palves@redhat.com>
6630
6631 * ada-lang.c (ada_completer_word_break_characters): Now a const
6632 array.
6633 (ada_get_gdb_completer_word_break_characters): Constify.
6634 * completer.c (gdb_completer_command_word_break_characters)
6635 (gdb_completer_file_name_break_characters)
6636 (gdb_completer_quote_characters): Now const arrays.
6637 (get_gdb_completer_quote_characters): Constify.
6638 (set_rl_completer_word_break_characters): New function.
6639 (set_gdb_completion_word_break_characters)
6640 (complete_line_internal): Use it.
6641 * completer.h (get_gdb_completer_quote_characters): Constify.
6642 (set_rl_completer_word_break_characters): Declare.
6643 * f-lang.c (f_word_break_characters): Constify.
6644 * language.c (default_word_break_characters): Constify.
6645 * language.h (language_defn::la_word_break_characters): Constify.
6646 (default_word_break_characters): Constify.
6647 * top.c (init_main): Use set_rl_completer_word_break_characters.
6648
6649 2017-04-05 Pedro Alves <palves@redhat.com>
6650
6651 * aix-thread.c (aix_thread_pid_to_str)
6652 (aix_thread_extra_thread_info): Constify.
6653 * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
6654 * bsd-uthread.c (bsd_uthread_extra_thread_info)
6655 (bsd_uthread_pid_to_str): Constify.
6656 * corelow.c (core_pid_to_str): Constify.
6657 * darwin-nat.c (darwin_pid_to_str): Constify.
6658 * fbsd-nat.c (fbsd_pid_to_str): Constify.
6659 * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
6660 Constify.
6661 * gnu-nat.c (gnu_pid_to_str): Constify.
6662 * go32-nat.c (go32_pid_to_str): Constify.
6663 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
6664 * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
6665 * inferior.c (inferior_pid_to_str): Constify.
6666 * linux-nat.c (linux_nat_pid_to_str): Constify.
6667 * linux-tdep.c (linux_core_pid_to_str): Constify.
6668 * linux-thread-db.c (thread_db_pid_to_str)
6669 (thread_db_extra_thread_info): Constify.
6670 * nto-tdep.c (nto_extra_thread_info): Constify.
6671 * nto-tdep.h (nto_extra_thread_info): Constify.
6672 * obsd-nat.c (obsd_pid_to_str): Constify.
6673 * procfs.c (procfs_pid_to_str): Constify.
6674 * ravenscar-thread.c (ravenscar_extra_thread_info)
6675 (ravenscar_pid_to_str): Constify.
6676 * remote-sim.c (gdbsim_pid_to_str): Constify.
6677 * remote.c (remote_threads_extra_info, remote_pid_to_str):
6678 Constify.
6679 * sol-thread.c (solaris_pid_to_str): Constify.
6680 * sol2-tdep.c (sol2_core_pid_to_str): Constify.
6681 * sol2-tdep.h (sol2_core_pid_to_str): Constify.
6682 * target.c (default_pid_to_str, target_pid_to_str)
6683 (normal_pid_to_str, default_pid_to_str): Constify.
6684 * target.h (target_ops::to_pid_to_str)
6685 (target_ops::to_extra_thread_info): Constify.
6686 (target_pid_to_str, normal_pid_to_str): Constify.
6687 * windows-nat.c (windows_pid_to_str): Constify.
6688 * gdbarch.sh (core_pid_to_str): Constify.
6689 * target-delegates.c: Regenerate.
6690 * gdbarch.h, gdbarch.c: Regenerate.
6691
6692 2017-04-05 Pedro Alves <palves@redhat.com>
6693
6694 * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
6695 the memory of the temporary warning_pre_print override.
6696 * utils.c (warning_pre_print): Constify.
6697 * utils.h (warning_pre_print): Constify.
6698
6699 2017-04-05 Pedro Alves <palves@redhat.com>
6700
6701 * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
6702 (shell_command): New function.
6703 (make_command): Use std::string.
6704 (init_cli_cmds): Register shell_command instead of shell_escape.
6705
6706 2017-04-05 Pedro Alves <palves@redhat.com>
6707
6708 * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
6709 * tracepoint.c (default_collect): Don't initialize.
6710
6711 2017-04-05 Pedro Alves <palves@redhat.com>
6712
6713 * macroexp.c (macro_buffer::shared): Now a bool.
6714 (init_buffer): Update.
6715 (init_shared_buffer): Constify 'addr' parameter.
6716 (substitute_args, expand, macro_expand, macro_expand_next): Remove
6717 casts.
6718
6719 2017-04-05 Pedro Alves <palves@redhat.com>
6720
6721 * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
6722 * disasm.c (set_disassembler_options): Constify local.
6723 * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
6724
6725 2017-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
6726
6727 PR gdb/21352
6728 * tracefile.c (tsave_command): Fix argument parsing for '-r'
6729 option.
6730
6731 2017-04-05 Yao Qi <yao.qi@linaro.org>
6732
6733 * frame.c (frame_unwind_register_unsigned): Call
6734 frame_unwind_register_value.
6735
6736 2017-04-05 Yao Qi <yao.qi@linaro.org>
6737
6738 * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
6739 Use gdb_test_multiple, and don't match anchor.
6740
6741 2017-04-05 Pedro Alves <palves@redhat.com>
6742
6743 * MAINTAINERS (Global Maintainers): Add Simon Marchi.
6744 (Write After Approval): Remove Simon Marchi.
6745
6746 2017-04-05 Pedro Alves <palves@redhat.com>
6747
6748 * common/gdb_optional.h (optional::optional): Make constexpr and
6749 initialize m_dummy.
6750
6751 2017-04-04 John Baldwin <jhb@FreeBSD.org>
6752
6753 * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
6754 (amd64fbsd_jmp_buf_reg_offset): Remove.
6755 (amd64fbsd_supply_uthread): Remove function.
6756 (amd64fbsd_collect_uthread): Remove function.
6757 (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
6758 * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
6759 (x86_64-*-freebsd*): Remove bsd-uthread.o.
6760 (fbsd-nat.c): Update comment.
6761 * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
6762 (i386fbsd_jmp_buf_reg_offset): Remove.
6763 (i386fbsd_supply_uthread): Remove function.
6764 (i386fbsd_collect_uthread): Remove function.
6765 (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
6766
6767 2017-04-04 John Baldwin <jhb@FreeBSD.org>
6768
6769 * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
6770 (ALLDEPFILES): Remove alpha-fbsd-tdep.c
6771 * NEWS: Mention that support for FreeBSD/alpha was removed.
6772 * alpha-fbsd-tdep.c: Delete file.
6773 * config/alpha/fbsd.mh: Delete file.
6774 * configure.host: Delete alpha*-*-freebsd* and
6775 alpha*-*-kfreebsd*-gnu.
6776 * configure.tgt: Delete alpha*-*-freebsd* and
6777 alpha*-*-kfreebsd*-gnu.
6778
6779 2017-04-04 John Baldwin <jhb@FreeBSD.org>
6780
6781 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
6782 amd64bsd_store_inferior_registers): Use ptid from regcache.
6783
6784 2017-04-04 Pedro Alves <palves@redhat.com>
6785
6786 * dwarf2read.c (lnp_state_machine): Now a class. Initialize all
6787 data fields, make them private and add "m_" prefixes.
6788 (lnp_state_machine::lnp_state_machine): New ctor.
6789 (record_line, check_line_address, handle_set_discriminator)
6790 (handle_set_address, handle_advance_pc, handle_special_opcode)
6791 (handle_advance_line, handle_set_file, handle_negate_stmt)
6792 (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
6793 (end_sequence, advance_line): New methods.
6794 (m_gdbarch, m_record_lines_p): New fields.
6795 (lnp_reader_state): Delete.
6796 (dwarf_record_line): Rename to ...
6797 (lnp_state_machine::record_line): ... adjust.
6798 (init_lnp_state_machine): Delete.
6799 (lnp_state_machine::lnp_state_machine): New.
6800 (check_line_address): Rename to ...
6801 (lnp_state_machine::check_line_address): This.
6802 (dwarf_decode_lines_1): Remove reference to "reader_state".
6803 Adjust lnp_state_machine having a non-default ctor. Use bool.
6804 State machine internal state manipulation moved to
6805 lnp_state_machine methods.
6806
6807 2017-04-04 Pedro Alves <palves@redhat.com>
6808
6809 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6810 unittests/offset-type-selftests.c.
6811 (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
6812 * common/offset-type.h: New file.
6813 * common/preprocessor.h: New file.
6814 * common/traits.h: New file.
6815 * common/valid-expr.h: New file.
6816 * dwarf2expr.c: Include "common/underlying.h". Adjust to use
6817 sect_offset and cu_offset strong typedefs throughout.
6818 * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
6819 typedefs throughout.
6820 * dwarf2loc.c: Include "common/underlying.h". Adjust to use
6821 sect_offset and cu_offset strong typedefs throughout.
6822 * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
6823 typedefs throughout.
6824 * gdbtypes.h: Include "common/offset-type.h".
6825 (cu_offset): Now an offset type (strong typedef) instead of a
6826 struct.
6827 (sect_offset): Likewise.
6828 (union call_site_parameter_u): Rename "param_offset" field to
6829 "param_cu_off".
6830 * unittests/offset-type-selftests.c: New file.
6831
6832 2017-04-04 Pedro Alves <palves@redhat.com>
6833
6834 * common/underlying.h: New file.
6835 * dwarf2read.c: Include "common/gdb_optional.h" and
6836 "common/underlying.h".
6837 (dir_index, file_name_index): New types.
6838 (file_entry): Use them.
6839 (file_entry::include): Use to_underlying.
6840 (line_header::add_file_name): Use dir_index.
6841 (read_formatted_entries): Use gdb::optional. Read form before
6842 writting to file_entry.
6843 (dwarf_decode_line_header): Use dir_index.
6844 (lnp_state_machine::current_file): Use to_underlying.
6845 (lnp_state_machine::file): Change type to file_name_index.
6846 (dwarf_record_line): Use to_underlying.
6847 (init_lnp_state_machine): Use file_name_index.
6848 (dwarf_decode_lines_1): Use dir_index and file_name_index.
6849
6850 2017-04-04 Pedro Alves <palves@redhat.com>
6851
6852 * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
6853 operator bool, has_value and get methods.
6854
6855 2017-04-04 Pedro Alves <palves@redhat.com>
6856
6857 * dwarf2read.c (struct file_entry): Add ctors, and initialize all
6858 fields.
6859 (line_header): Initialize all data fields. Change type of
6860 standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
6861 Change type of include_dirs to std::vector<const char *>. Remove
6862 num_include_dirs, include_dirs_size. Change type of file_names to
6863 std::vector<file_entry>. Remove num_file_names, file_names_size.
6864 (line_header::line_header): New.
6865 (line_header::add_include_dir, line_header::add_file_name): New
6866 methods.
6867 (line_header::include_dir_at): Remove NULL check.
6868 (line_header::file_name_at): Add const overload.
6869 (line_header_up): New unique_ptr typedef.
6870 (dw2_get_file_names_reader): Use line_header_up. Adjust to use
6871 std::vector. Remove free_line_header call.
6872 (dwarf2_build_include_psymtabs): Use line_header_up. Remove
6873 free_line_header call.
6874 (free_cu_line_header): Delete.
6875 (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
6876 (setup_type_unit_groups): Use line_header_up instead of cleanups.
6877 Adjust to use std::vector.
6878 (free_line_header): Delete.
6879 (free_line_header_voidp): Use delete.
6880 (add_include_dir): Replace with ...
6881 (line_header::add_include_dir): ... this method. Use std::vector.
6882 (add_file_name): Replace with ...
6883 (line_header::add_file_name): ... this method. Use std::vector.
6884 (add_include_dir_stub): Delete.
6885 (read_formatted_entries): Remove memset.
6886 (dwarf_decode_line_header): Return a line_header_up instead of a
6887 raw pointer. Remove cleanup handling. Pass lambdas to
6888 read_formatted_entries. Adjust to use line_header methods.
6889 (dwarf_decode_lines_1): Adjust to use line_header methods.
6890 (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
6891 use std::vector.
6892
6893 2017-04-04 Simon Marchi <simon.marchi@polymtl.ca>
6894
6895 * remote.c (set_general_thread, set_continue_thread): Use ptid_t
6896 instead of struct ptid.
6897
6898 2017-05-04 Alan Hayward <alan.hayward@arm.com>
6899
6900 * frame.c (get_frame_register_bytes): Unwind using value.
6901 (put_frame_register_bytes): Likewise.
6902
6903 2017-03-30 Iain Buclaw <ibuclaw@gdcproject.org>
6904
6905 * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
6906 aggregate-like.
6907
6908 2017-03-29 Jan Kratochvil <jan.kratochvil@redhat.com>
6909
6910 * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
6911
6912 2017-03-29 Yao Qi <yao.qi@linaro.org>
6913
6914 * gdbthread.h (struct thread_info): Declare constructor and
6915 destructor. Add some in-class member initializers.
6916 * thread.c (free_thread): Remove.
6917 (init_thread_list): Call delete instead of free_thread.
6918 (new_thread): Call thread_info constructor.
6919 (thread_info::thread_info): New function.
6920 (thread_info::~thread_info): New function.
6921 (delete_thread_1): Call delete instead of free_thread.
6922 (make_cleanup_restore_current_thread): Move tp and frame to
6923 inner block.
6924
6925 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
6926
6927 * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
6928 (arc_skip_prologue): Likewise.
6929 (arc_make_frame_cache): Likewise.
6930 (arc_pv_get_operand): New function.
6931 (arc_is_in_prologue): Likewise.
6932 (arc_analyze_prologue): Likewise.
6933 (arc_print_frame_cache): Likewise.
6934 (MAX_PROLOGUE_LENGTH): New constant.
6935
6936 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
6937
6938 * configure.tgt: Add arc-insn.o.
6939 * arc-tdep.c (arc_delayed_print_insn): Make non-static.
6940 (dump_arc_instruction_command): New function.
6941 (arc_fprintf_disasm): Likewise.
6942 (arc_disassemble_info): Likewise.
6943 (arc_insn_get_operand_value): Likewise.
6944 (arc_insn_get_operand_value_signed): Likewise.
6945 (arc_insn_get_memory_base_reg): Likewise.
6946 (arc_insn_get_memory_offset): Likewise.
6947 (arc_insn_get_branch_target): Likewise.
6948 (arc_insn_dump): Likewise.
6949 (arc_insn_get_linear_next_pc): Likewise.
6950 * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
6951 (arc_disassemble_info): Likewise.
6952 (arc_insn_get_branch_target): Likewise.
6953 (arc_insn_get_linear_next_pc): Likewise.
6954 * NEWS: Mention new "maint print arc arc-instruction".
6955
6956 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
6957
6958 * arc-tdep (maintenance_print_arc_list): New variable.
6959 (maintenance_print_arc_command): New function.
6960
6961 2017-03-28 Anton Kolesov <anton.kolesov@synopsys.com>
6962
6963 * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
6964 Add "limm" and "reserved".
6965 (arc_cannot_fetch_register, arc_cannot_store_register): Add
6966 ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
6967 * arc-tdep.h (arc_regnum): Likewise.
6968
6969 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
6970
6971 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
6972 for THREADPTR register.
6973 (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
6974 register.
6975 * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
6976 (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
6977 * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
6978
6979 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
6980
6981 * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
6982 registers above gdbarch_num_regs (gdbarch) as privileged in
6983 call0 ABI.
6984
6985 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
6986
6987 * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
6988 for a single specified register or for all registers in
6989 a0_base..a0_base + C0_NREGS range.
6990 (supply_gregset_reg): Call regcache_raw_supply for a single
6991 specified register or for all registers in a0_base..a0_base +
6992 C0_NREGS range.
6993
6994 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
6995
6996 * arch/xtensa.h (C0_NREGS): Add definition.
6997 * xtensa-tdep.c (C0_NREGS): Remove definition.
6998
6999 2017-03-27 Max Filippov <jcmvbkbc@gmail.com>
7000
7001 * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
7002 Drop xtensa_default_isa initialization.
7003 (xtensa_gdbarch_init): Initialize xtensa_default_isa.
7004
7005 2017-03-27 Pedro Alves <palves@redhat.com>
7006
7007 * dwarf2read.c (file_entry) <dir_index>: Add comment.
7008 (file_entry::include_dir): New method.
7009 (line_header::include_dir_at, line_header::file_name_at): New
7010 methods.
7011 (setup_type_unit_groups, setup_type_unit_groups)
7012 (psymtab_include_file_name): Simplify using the new methods.
7013 (lnp_state_machine) <the_line_header>: New field.
7014 <file>: Add comment.
7015 (lnp_state_machine::current_file): New method.
7016 (dwarf_record_line): Simplify using the new methods.
7017 (init_lnp_state_machine): Initialize the "the_line_header" field.
7018 (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
7019 Simplify using the new methods.
7020
7021 2017-03-27 Pedro Alves <palves@redhat.com>
7022
7023 * cp-name-parser.y (make_empty): Delete.
7024 (demangler_special, nested_name, ptr_operator, array_indicator)
7025 (direct_declarator, declarator_1): Use fill_comp instead of
7026 make_empty.
7027
7028 2017-03-27 Pedro Alves <palves@redhat.com>
7029
7030 * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
7031 to ATTRIBUTE_PRINTF.
7032 * solib-target.c (library_list_start_list): Print "string" not
7033 "version".
7034 * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
7035 gdb_xml_error call.
7036
7037 2017-03-27 Pedro Alves <palves@redhat.com>
7038
7039 * dwarf2read.c (struct file_and_directory): New.
7040 (dwarf2_get_dwz_file): Adjust to use std::string.
7041 (dw2_get_file_names_reader): Adjust to use file_and_directory.
7042 (find_file_and_directory): Adjust to return a file_and_directory
7043 object.
7044 (read_file_scope): Adjust to use file_and_directory. Remove
7045 make_cleanup/do_cleanups calls.
7046 (open_and_init_dwp_file): Adjust to use std::string. Remove
7047 make_cleanup/do_cleanups calls.
7048 * python/python.c (do_start_initialization): Adjust to ldirname
7049 returning a std::string.
7050 * utils.c (ldirname): Now returns a std::string.
7051 * utils.h (ldirname): Change return type to std::string.
7052 * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
7053 returning a std::string.
7054 * xml-tdesc.c (file_read_description_xml): Likewise.
7055
7056 2017-03-24 Alan Hayward <alan.hayward@arm.com>
7057
7058 * regcache.c (regcache_debug_print_register): New function.
7059 * regcache.h (regcache_debug_print_register): New declaration.
7060 * target.c (debug_print_register): Remove.
7061 (target_fetch_registers): Call regcache_debug_print_register.
7062 (target_store_registers): Likewise.
7063
7064 2017-03-24 Pádraig Brady <pbrady@fb.com>
7065
7066 * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
7067 reference beyond the 'lh->include_dirs' array before accessing to
7068 it.
7069 (psymtab_include_file_name): Likewise.
7070 (dwarf_decode_lines_1): Likewise.
7071 (dwarf_decode_lines): Likewise.
7072 (file_file_name): Likewise.
7073
7074 2017-03-23 Simon Marchi <simon.marchi@ericsson.com>
7075
7076 * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
7077 inferior_ptid.
7078 * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
7079 ps_lsetfpregs): Likewise.
7080 * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
7081 * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
7082 ps_lsetfpregs): Likewise.
7083 * target.c (target_fetch_registers, target_store_registers):
7084 Remove asserts.
7085
7086 2017-03-23 Alan Hayward <alan.hayward@arm.com>
7087
7088 * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
7089
7090 2017-03-23 Yao Qi <yao.qi@linaro.org>
7091
7092 * aarch64-tdep.c (aarch64_process_record_test): Declare.
7093 (_initialize_aarch64_tdep): Register it.
7094 (aarch64_record_load_store): Handle PRFM instruction.
7095 (aarch64_process_record_test): New function.
7096
7097 2017-03-23 Yao Qi <yao.qi@linaro.org>
7098
7099 * aarch64-tdep.c (aarch64_record_load_store): Fix code
7100 indentation.
7101
7102 2017-03-23 Yao Qi <yao.qi@linaro.org>
7103
7104 * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
7105
7106 2017-03-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
7107
7108 python/python.c (do_start_initialization): Fix memory leak.
7109
7110 2017-03-22 Simon Marchi <simon.marchi@polymtl.ca>
7111
7112 * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
7113 using get_ptrace_pid.
7114 * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
7115 inferior_ptid.
7116 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
7117 inferior_ptid instead of pid.
7118
7119 2017-03-22 Yao Qi <yao.qi@linaro.org>
7120
7121 * aarch64-tdep.c: Wrap locally used classes in anonymous
7122 namespace.
7123 * arm-tdep.c: Likewise.
7124 * linespec.c: Likewise.
7125 * ui-out.c: Likewise.
7126
7127 2017-03-22 Jonah Graham <jonah@kichwacoders.com>
7128
7129 PR gdb/19637
7130 * python/lib/gdb/printer/bound_registers.py: Import sys.
7131
7132 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
7133
7134 * windows-nat.c (do_windows_fetch_inferior_registers): Add
7135 windows_thread_info parameter and use it instead of
7136 current_thread.
7137 (windows_fetch_inferior_registers): Don't set current_thread,
7138 pass the thread to do_windows_fetch_inferior_registers. Use
7139 ptid from regcache instead of inferior_ptid.
7140 (do_windows_store_inferior_registers): Add windows_thread_info
7141 parameter and use it instead of current_thread.
7142 (windows_store_inferior_registers): Don't set current_thread,
7143 pass the thread to do_windows_store_inferior_registers. Use
7144 ptid from regcache instead of inferior_ptid.
7145
7146 2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
7147
7148 * ser-mingw.c (ser_windows_raw): Remove reference to
7149 struct serial::current_timeout.
7150
7151 2017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
7152
7153 PR tdep/20928
7154 * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
7155 * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
7156 (sparc64_fsr_type): Fix %fsr decoding.
7157
7158 2017-03-21 Tim Wiederhake <tim.wiederhake@intel.com>
7159
7160 * python/py-record-btrace.c (btpy_insn_data): Change return type
7161 for Python 2.
7162
7163 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
7164
7165 * spu-linux-nat.c (spu_fetch_inferior_registers,
7166 spu_store_inferior_registers): Use ptid from regcache, set and
7167 restore inferior_ptid.
7168 * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
7169 Likewise.
7170
7171 2017-03-20 Simon Marchi <simon.marchi@polymtl.ca>
7172
7173 * i386-linux-nat.c (fetch_register, store_register,
7174 i386_linux_fetch_inferior_registers,
7175 i386_linux_store_inferior_registers): Use ptid from regcache.
7176 * ia64-linux-nat.c (ia64_linux_fetch_register,
7177 ia64_linux_store_register): Likewise.
7178 * inf-ptrace.c (inf_ptrace_fetch_register,
7179 inf_ptrace_store_register): Likewise.
7180 * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
7181 m32r_linux_store_inferior_registers): Likewise.
7182 * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
7183 m68kbsd_store_inferior_registers): Likewise.
7184 * m68k-linux-nat.c (fetch_register, store_register,
7185 m68k_linux_fetch_inferior_registers,
7186 m68k_linux_store_inferior_registers): Likewise.
7187 * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
7188 m88kbsd_store_inferior_registers): Likewise.
7189 * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
7190 mips_fbsd_store_inferior_registers): Likewise.
7191 * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
7192 mips64_linux_regsets_store_registers): Likewise.
7193 * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
7194 mipsnbsd_store_inferior_registers): Likewise.
7195 * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
7196 mips64obsd_store_inferior_registers): Likewise.
7197 * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
7198 Likewise.
7199 * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
7200 ppcfbsd_store_inferior_registers): Likewise.
7201 * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
7202 ppc_linux_store_inferior_registers): Likewise.
7203 * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
7204 ppcnbsd_store_inferior_registers): Likewise.
7205 * ppc-obsd-nat.c (ppcobsd_fetch_registers,
7206 ppcobsd_store_registers): Likewise.
7207 * procfs.c (procfs_fetch_registers, procfs_store_registers):
7208 Likewise.
7209 * ravenscar-thread.c (ravenscar_fetch_registers,
7210 ravenscar_store_registers, ravenscar_prepare_to_store):
7211 Likewise.
7212 * record-btrace.c (record_btrace_fetch_registers,
7213 record_btrace_store_registers, record_btrace_prepare_to_store):
7214 Likewise.
7215 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
7216 Lookup inferior using ptid from regcache, instead of
7217 current_inferior.
7218 * remote.c (remote_fetch_registers, remote_store_registers): Use
7219 ptid from regcache.
7220 * rs6000-nat.c (fetch_register, store_register): Likewise.
7221 * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
7222 s390_linux_store_inferior_registers): Likewise.
7223 * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
7224 shnbsd_store_inferior_registers): Likewise.
7225 * sol-thread.c (sol_thread_fetch_registers,
7226 sol_thread_store_registers): Likewise.
7227 * sparc-nat.c (sparc_fetch_inferior_registers,
7228 sparc_store_inferior_registers): Likewise.
7229 * tilegx-linux-nat.c (fetch_inferior_registers,
7230 store_inferior_registers): Likewise.
7231 * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
7232 vaxbsd_store_inferior_registers): Likewise.
7233 * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
7234 store_xtregs): Likewise.
7235
7236 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7237
7238 PR gdb/14441
7239 * NEWS: Mention support for rvalue references in GDB and python.
7240 * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
7241 supports both lvalue and rvalue references.
7242
7243 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7244
7245 PR gdb/14441
7246 * gdbtypes.c (rank_one_type): Implement overloading
7247 resolution rules regarding rvalue references.
7248
7249 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7250
7251 PR gdb/14441
7252 * aarch64-tdep.c (aarch64_type_align)
7253 (aarch64_extract_return_value, aarch64_store_return_value): Change
7254 lvalue reference type checks to general reference type checks.
7255 * amd64-tdep.c (amd64_classify): Likewise.
7256 * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
7257 Likewise.
7258 * arm-tdep.c (arm_type_align, arm_extract_return_value)
7259 (arm_store_return_value): Likewise.
7260 * ax-gdb.c (gen_fetch, gen_cast): Likewise.
7261 * c-typeprint.c (c_print_type): Likewise.
7262 * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
7263 (cplus_number_of_children, cplus_describe_child): Likewise.
7264 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
7265 * completer.c (expression_completer): Likewise.
7266 * cp-support.c (make_symbol_overload_list_adl_namespace):
7267 Likewise.
7268 * darwin-nat-info.c (info_mach_region_command): Likewise.
7269 * dwarf2loc.c (entry_data_value_coerce_ref)
7270 (value_of_dwarf_reg_entry): Likewise.
7271 * eval.c (ptrmath_type_p, evaluate_subexp_standard)
7272 (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
7273 Likewise.
7274 * findvar.c (extract_typed_address, store_typed_address):
7275 Likewise.
7276 * gdbtypes.c (rank_one_type): Likewise.
7277 * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
7278 * infcall.c (value_arg_coerce): Likewise.
7279 * language.c (pointer_type): Likewise.
7280 * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
7281 Likewise.
7282 * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
7283 * mn10300-tdep.c (mn10300_type_align): Likewise.
7284 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
7285 * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
7286 (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
7287 Likewise.
7288 * printcmd.c (print_formatted, x_command): Likewise.
7289 * python/py-type.c (typy_get_composite, typy_template_argument):
7290 Likewise.
7291 * python/py-value.c (valpy_referenced_value)
7292 (valpy_get_dynamic_type, value_has_field): Likewise.
7293 * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
7294 * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
7295 * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
7296 * spu-tdep.c (spu_scalar_value_p): Likewise.
7297 * symtab.c (lookup_symbol_aux): Likewise.
7298 * typeprint.c (whatis_exp, print_type_scalar): Likewise.
7299 * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
7300 Likewise.
7301 * valops.c (value_cast_pointers, value_cast)
7302 (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
7303 (value_struct_elt, value_struct_elt_bitpos)
7304 (value_find_oload_method_list, find_overload_match)
7305 (value_rtti_indirect_type): Likewise.
7306 * valprint.c (val_print_scalar_type_p, generic_val_print):
7307 Likewise.
7308 * value.c (value_actual_type, value_as_address, unpack_long)
7309 (pack_long, pack_unsigned_long, coerce_ref_if_computed)
7310 (coerce_ref): Likewise.
7311 * varobj.c (varobj_get_value_type): Likewise.
7312
7313 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7314
7315 PR gdb/14441
7316 * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
7317 table of constants.
7318 * python/lib/gdb/command/explore.py: Support exploring values
7319 of rvalue reference types.
7320 * python/lib/gdb/types.py: Implement get_basic_type() for
7321 rvalue reference types.
7322 * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
7323 constant.
7324 * python/py-value.c (valpy_getitem): Add an rvalue reference
7325 check.
7326 (valpy_reference_value): Add new parameter "refcode".
7327 (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
7328 New wrappers for valpy_reference_value().
7329 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
7330 (gdbpy_invoke_xmethod): Likewise.
7331
7332 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7333
7334 PR gdb/14441
7335 * dwarf2read.c (process_die, read_type_die_1): Handle the
7336 DW_TAG_rvalue_reference_type DIE.
7337 (read_tag_reference_type): Add new parameter "refcode".
7338
7339 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7340
7341 PR gdb/14441
7342 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
7343 (c_type_print_modifier, c_type_print_varspec_suffix)
7344 (c_type_print_base): Support printing rvalue reference types.
7345 * c-valprint.c (c_val_print, c_value_print): Support printing
7346 rvalue reference values.
7347
7348 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7349
7350 PR gdb/14441
7351 * cp-name-parser.y (ptr_operator): Handle the '&&' token in
7352 typename.
7353 * cp-support.c (replace_typedefs): Handle
7354 DEMANGLE_COMPONENT_RVALUE_REFERENCE.
7355 * python/py-type.c (typy_lookup_type): Likewise.
7356
7357 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7358
7359 PR gdb/14441
7360 * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
7361 * parse.c (insert_type): Change assert statement.
7362 (follow_types): Handle rvalue reference types.
7363 * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
7364 constant.
7365
7366 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7367
7368 PR gdb/14441
7369 * ada-lang.c (ada_evaluate_subexp): Adhere to the new
7370 value_ref() interface.
7371 * c-valprint.c (c_value_print): Likewise.
7372 * infcall.c (value_arg_coerce): Likewise.
7373 * python/py-value.c (valpy_reference_value): Likewise.
7374 * valops.c (value_cast, value_reinterpret_cast)
7375 (value_dynamic_cast, typecmp): Likewise.
7376 (value_ref): Parameterize by kind of return value reference type.
7377 * value.h (value_ref): Add new parameter "refcode".
7378
7379 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7380
7381 PR gdb/14441
7382 * dwarf2read.c (read_tag_reference_type): Use
7383 lookup_lvalue_reference_type() instead of lookup_reference_type().
7384 * eval.c (evaluate_subexp_standard): Likewise.
7385 * f-exp.y: Likewise.
7386 * gdbtypes.c (make_reference_type, lookup_reference_type):
7387 Generalize with rvalue reference types.
7388 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
7389 convenience wrappers for lookup_reference_type().
7390 * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
7391 reference kind parameter.
7392 (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
7393 wrappers for lookup_reference_type().
7394 * guile/scm-type.c (gdbscm_type_reference): Use
7395 lookup_lvalue_reference_type() instead of lookup_reference_type().
7396 * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
7397 * parse.c (follow_types): Likewise.
7398 * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
7399 * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
7400 Likewise.
7401 * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
7402 (gdbpy_invoke_xmethod): Likewise.
7403 * stabsread.c: Provide extra argument to make_reference_type()
7404 call.
7405 * valops.c (value_ref, value_rtti_indirect_type): Use
7406 lookup_lvalue_reference_type() instead of lookup_reference_type().
7407
7408 2017-03-20 Artemiy Volkov <artemiyv@acm.org>
7409
7410 PR gdb/14441
7411 * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
7412 (TYPE_IS_REFERENCE): New macro.
7413 (struct type): Add rvalue_reference_type field.
7414 (TYPE_RVALUE_REFERENCE_TYPE): New macro.
7415
7416 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
7417
7418 * NEWS: Add an entry about new '-file-list-shared-libraries' command.
7419 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
7420 New function definition.
7421 * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
7422 * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
7423 New function declaration.
7424 * mi/mi-interp.c (mi_output_solib_attribs): New Function.
7425 * mi/mi-interp.h: New file.
7426 * solib.c (info_sharedlibrary_command): Replace for loop with
7427 ALL_SO_LIBS macro
7428 * solib.h (update_solib_list): New function declaration.
7429 (so_list_head): Move macro.
7430 * solist.h (ALL_SO_LIBS): New macro.
7431
7432 2017-03-20 Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
7433
7434 * infcmd.c (post_create_inferior): Remove unused argument in
7435 call to solib_add.
7436 * remote.c (remote_start_remote): Likewise.
7437 * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
7438 * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
7439 (enable_break): Likewise.
7440 * solib.c (update_solib_list): Remove unused target argument
7441 and its documentation.
7442 (solib_add): Remove unused target argument. Remove unused
7443 argument in call to update_solib_list.
7444 (info_sharedlibrary_command): Remove unused argument in call
7445 to update_solib_list.
7446 (sharedlibrary_command): Remove unused argument in call to
7447 solib_add.
7448 (handle_solib_event): Likewise.
7449 (reload_shared_libraries): Likewise.
7450 * solib.h (solib_add): Remove unused target argument.
7451
7452 2017-03-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
7453
7454 * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
7455 (s390_displaced_step_fixup): Cover relative branches with the
7456 default fixup handling. This fixes lack of support for some
7457 relative branch instructions.
7458
7459 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7460
7461 * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
7462 ptid from regcache.
7463
7464 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7465
7466 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
7467 i386_darwin_store_inferior_registers): Use ptid from regcache.
7468
7469 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7470
7471 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
7472 i386bsd_store_inferior_registers): Use ptid from regcache.
7473
7474 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7475
7476 * hppa-obsd-nat.c (hppaobsd_fetch_registers,
7477 hppaobsd_store_registers): Use ptid from regcache.
7478
7479 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7480
7481 * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
7482 hppanbsd_store_registers): Use ptid from regcache.
7483
7484 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7485
7486 * hppa-linux-nat.c (fetch_register, store_register): Use ptid
7487 from regcache. Use get_ptrace_pid.
7488
7489 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7490
7491 * corelow.c (get_core_register_section): Use ptid from regcache,
7492 update doc.
7493
7494 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7495
7496 * bsd-uthread.c (bsd_uthread_fetch_registers,
7497 bsd_uthread_store_registers): Use ptid from regcache, set and
7498 restore inferior_ptid.
7499
7500 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7501
7502 * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
7503 fetch_fp_regs, store_register, store_regs, store_fp_register,
7504 store_fp_regs): Use ptid from regcache.
7505
7506 2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
7507
7508 * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
7509 store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
7510 store_vfp_regs): Use ptid from regcache.
7511
7512 2017-03-17 Pedro Alves <palves@redhat.com>
7513
7514 PR remote/21188
7515 * ser-base.c (ser_base_wait_for): Add comment.
7516 (do_ser_base_readchar): Improve comment based on the ser-unix.c's
7517 version.
7518 * ser-unix.c (hardwire_raw): Remove reference to
7519 scb->current_timeout.
7520 (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
7521 (hardwire_ops): Install ser_base_readchar instead of
7522 hardwire_readchar.
7523 * serial.h (struct serial) <current_timeout, timeout_remaining>:
7524 Remove fields.
7525
7526 2017-03-17 Jonah Graham <jonah@kichwacoders.com>
7527
7528 PR gdb/19637
7529 * python/lib/gdb/printer/bound_registers.py: Add support for
7530 Python 3.
7531
7532 2017-03-16 Andreas Arnez <arnez@linux.vnet.ibm.com>
7533
7534 * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
7535 pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
7536 (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
7537 byte_offset to subobj_byte_offset. Fix the handling of
7538 DWARF_VALUE_STACK on big-endian targets when coming via an
7539 implicit pointer.
7540 (dwarf2_evaluate_loc_desc): Adjust call to
7541 dwarf2_evaluate_loc_desc_full.
7542 * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
7543 * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
7544
7545 2017-03-16 Yao Qi <yao.qi@linaro.org>
7546
7547 * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
7548 and REVSH instructions.
7549
7550 2017-03-16 Yao Qi <yao.qi@linaro.org>
7551
7552 * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
7553 (arm_record_test): Declare.
7554 (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
7555 (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
7556 align with the manual.
7557 (thumb_record_misc): Adjust the code order to align with the
7558 manual.
7559 (thumb2_record_decode_insn_handler): Fix instruction matching.
7560 (instruction_reader_thumb): New class.
7561 (arm_record_test): New function.
7562
7563 2017-03-16 Yao Qi <yao.qi@linaro.org>
7564
7565 * arm-tdep.c (abstract_memory_reader): New class.
7566 (instruction_reader): New class.
7567 (extract_arm_insn): Add argument 'reader'. Callers updated.
7568 (decode_insn): Likewise.
7569
7570 2017-03-16 Doug Evans <dje@google.com>
7571
7572 * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
7573 member. Change type of TYPE member to SCM. All uses updated.
7574 (lsscm_make_lazy_string_smob): Add assert.
7575 (lsscm_make_lazy_string): Flag bad length values.
7576 (lsscm_elt_type): New function.
7577 (gdbscm_lazy_string_to_value): Rewrite to use
7578 lsscm_safe_lazy_string_to_value.
7579 (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
7580 * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
7581 values. Fix TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle typedefs
7582 in incoming type.
7583 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
7584 * guile/scm-type.c (tyscm_scm_to_type): New function.
7585
7586 2017-03-15 Doug Evans <dje@google.com>
7587
7588 PR python/17728, python/18439, python/18779
7589 * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
7590 member. Change type of TYPE member to PyObject *. All uses updated.
7591 (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
7592 (gdbpy_create_lazy_string_object): Flag bad length values.
7593 Handle TYPE_CODE_ARRAY with possibly different user-provided length.
7594 Handle typedefs in incoming type.
7595 (stpy_lazy_string_elt_type): New function.
7596 (gdbpy_extract_lazy_string): Call it.
7597 * python/py-value.c (valpy_lazy_string): Flag bad length values.
7598 Fix handling of TYPE_CODE_PTR. Handle TYPE_CODE_ARRAY. Handle
7599 typedefs in incoming type.
7600
7601 2017-03-16 Doug Evans <dje@google.com>
7602
7603 * guile/guile-internal.h (tyscm_scm_to_type): Declare.
7604 * guile/scm-type.c (tyscm_scm_to_type): New function.
7605
7606 2017-03-16 Jiong Wang <jiong.wang@arm.com>
7607
7608 * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
7609 "ULONGEST" for "skip".
7610
7611 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
7612
7613 PR gdb/21220
7614 * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
7615 TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
7616 (inf_ptrace_peek_poke): ...here. New function. Now also loop
7617 over ptrace peek/poke until end of buffer or error.
7618
7619 2017-03-14 Simon Marchi <simon.marchi@ericsson.com>
7620
7621 * parse.c (length_of_subexp): Make static.
7622 * parser-defs.h (length_of_subexp): Remove.
7623
7624 2017-03-14 Andreas Arnez <arnez@linux.vnet.ibm.com>
7625
7626 * linux-nat.c (linux_proc_xfer_partial): Handle write operations
7627 as well.
7628
7629 2017-03-14 Pedro Alves <palves@redhat.com>
7630
7631 * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
7632 (main): Use std::unique_ptr. Remove calls to
7633 cp_demangled_name_parse_free.
7634
7635 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7636
7637 * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
7638 alphabsd_store_inferior_registers): Use regcache->ptid instead
7639 of inferior_ptid.
7640
7641 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7642
7643 * aix-thread.c (aix_thread_fetch_registers,
7644 aix_thread_store_registers): Use regcache->ptid instead of
7645 inferior_ptid.
7646
7647 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7648
7649 * aarch64-linux-nat.c (fetch_gregs_from_thread,
7650 store_gregs_to_thread, fetch_fpregs_from_thread,
7651 store_fpregs_to_thread): Use regcache->ptid instead of
7652 inferior_ptid.
7653
7654 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7655
7656 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
7657 amd64_linux_fetch_inferior_registers): Use regcache->ptid
7658 instead of inferior_ptid.
7659
7660 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7661
7662 * target.c (target_fetch_registers, target_store_registers): Add
7663 assert.
7664
7665 2017-03-13 Simon Marchi <simon.marchi@polymtl.ca>
7666
7667 * regcache.h (regcache_get_ptid): New function.
7668 * regcache.c (regcache_get_ptid): New function.
7669
7670 2017-03-13 Mark Wielaard <mark@klomp.org>
7671
7672 * cp-name-parser.y (make_empty): Initialize d_printing to zero.
7673
7674 2017-03-10 Keith Seitz <keiths@redhat.com>
7675
7676 PR c++/8218
7677 * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
7678
7679 2017-03-08 Pedro Alves <palves@redhat.com>
7680
7681 PR gdb/18360
7682 * infrun.c (start_step_over, do_target_resume, resume)
7683 (restart_threads): Assert we're not resuming a thread that is
7684 meant to be stopped.
7685 (infrun_thread_stop_requested_callback): Delete.
7686 (infrun_thread_stop_requested): If the thread is internally
7687 stopped, queue a pending stop event and clear the thread's
7688 inline-frame state.
7689 (handle_stop_requested): New function.
7690 (handle_syscall_event, handle_inferior_event_1): Use
7691 handle_stop_requested.
7692 (handle_stop_requested): New function.
7693 (handle_signal_stop): Set the thread's stop_signal here instead of
7694 at caller.
7695 (finish_step_over): Clear step over info unconditionally.
7696 (handle_signal_stop): If the user had interrupted the event
7697 thread, consider the stop a random signal.
7698 (handle_signal_stop) <signal arrived while stepping over
7699 breakpoint>: Don't restart threads here.
7700 (stop_waiting): Don't clear step-over info here.
7701
7702 2017-03-08 Pedro Alves <palves@redhat.com>
7703
7704 PR 21206
7705 * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
7706 goes to argument 2, not 1.
7707
7708 2017-03-08 Pedro Alves <palves@redhat.com>
7709
7710 PR cli/21218
7711 * top.c (gdb_readline_wrapper): Avoid passing NULL to
7712 display_gdb_prompt.
7713 (command_line_input): Add comment.
7714
7715 2017-03-08 Pedro Alves <palves@redhat.com>
7716
7717 PR tui/21216
7718 * tui/tui-file.c (tui_file::write): New.
7719 * tui/tui-file.h (tui_file): Override "write".
7720 * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
7721 factored out from ...
7722 (tui_puts): ... here.
7723 (tui_putc): Use them.
7724 (tui_write): New function.
7725 * tui/tui-io.h (tui_write): Declare.
7726
7727 2017-03-07 Sergio Durigan Junior <sergiodj@redhat.com>
7728
7729 * Makefile.in (SFILES): Replace "environ.c" with
7730 "common/environ.c".
7731 (HFILES_NO_SRCDIR): Likewise, for "environ.h".
7732 * environ.c: Include "common-defs.h" instead of "defs.h. Moved
7733 to...
7734 * common/environ.c: ... here.
7735 * environ.h: Moved to...
7736 * common/environ.h: ... here.
7737
7738 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
7739
7740 * gdbarch.sh (pstring_ptr): New static function.
7741 (gdbarch_disassembler_options): Use it.
7742 (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
7743 not valid_disassembler_option->name.
7744 * gdbarch.c: Regenerate.
7745
7746 2017-03-07 Peter Bergner <bergner@vnet.ibm.com>
7747
7748 * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
7749
7750 2017-03-07 Pedro Alves <palves@redhat.com>
7751
7752 * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
7753
7754 2017-03-07 Walfred Tedeschi <walfred.tedeschi@intel.com>
7755
7756 * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
7757 * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
7758 * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
7759 * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
7760
7761 2017-03-06 Simon Marchi <simon.marchi@ericsson.com>
7762
7763 * xtensa-linux-nat.c (fetch_gregs): Remove const.
7764
7765 2017-03-03 Simon Marchi <simon.marchi@ericsson.com>
7766
7767 * remote.c (remote_add_target_side_commands): Use range-based
7768 for loop.
7769
7770 2017-03-03 Yao Qi <yao.qi@linaro.org>
7771
7772 PR gdb/21165
7773 * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
7774 value is lazy.
7775 * valprint.c (common_val_print): Likewise.
7776
7777 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
7778
7779 * NEWS: Mention new set/show disassembler-options commands.
7780 * doc/gdb.texinfo: Document new set/show disassembler-options commands.
7781 * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
7782 (prospective_options): New static variable.
7783 (gdb_disassembler::gdb_disassembler): Initialize
7784 m_di.disassembler_options.
7785 (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
7786 (get_disassembler_options): New function.
7787 (set_disassembler_options): Likewise.
7788 (set_disassembler_options_sfunc): Likewise.
7789 (show_disassembler_options_sfunc): Likewise.
7790 (disassembler_options_completer): Likewise.
7791 (_initialize_disasm): Likewise.
7792 * disasm.h (get_disassembler_options): New prototype.
7793 (set_disassembler_options): Likewise.
7794 * gdbarch.sh (gdbarch_disassembler_options): New variable.
7795 (gdbarch_verify_disassembler_options): Likewise.
7796 * gdbarch.c: Regenerate.
7797 * gdbarch.h: Likewise.
7798 * arm-tdep.c (num_disassembly_options): Delete.
7799 (set_disassembly_style): Likewise.
7800 (arm_disassembler_options): New static variable.
7801 (set_disassembly_style_sfunc): Convert short style name into long
7802 option name. Call set_disassembler_options.
7803 (show_disassembly_style_sfunc): New function.
7804 (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
7805 set_gdbarch_verify_disassembler_options.
7806 (_initialize_arm_tdep): Delete regnames variable and update callers.
7807 (arm_disassembler_options): Initialize.
7808 (disasm_options): New variable.
7809 (num_disassembly_options): Rename from this...
7810 (num_disassembly_styles): ...to this. Compute by scanning through
7811 disasm_options.
7812 (valid_disassembly_styles): Initialize using disasm_options.
7813 Remove calls to parse_arm_disassembler_option, get_arm_regnames and
7814 set_arm_regname_option.
7815 Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
7816 * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
7817 (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
7818 set_gdbarch_verify_disassembler_options.
7819 * s390-tdep.c (s390_disassembler_options): New static variable.
7820 (s390_gdbarch_init):all set_gdbarch_disassembler_options and
7821 set_gdbarch_verify_disassembler_options.
7822
7823 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
7824
7825 * remote.c (remote_add_target_side_condition): Remove "struct"
7826 keyword from range-based for loop.
7827
7828 2017-02-27 Simon Marchi <simon.marchi@ericsson.com>
7829
7830 * remote.c (remote_add_target_side_condition): Use range-based
7831 for loop. Update comment.
7832
7833 2017-02-27 Yao Qi <yao.qi@linaro.org>
7834
7835 * f-typeprint.c (f_print_type): Check "varstring" is empty first.
7836
7837 2017-02-26 Alan Hayward <alan.hayward@arm.com>
7838
7839 * regcache.c (regcache_raw_update): New function.
7840 (regcache_raw_read): Move code to regcache_raw_update.
7841 * regcache.h (regcache_raw_update): New declaration.
7842 * remote.c (remote_prepare_to_store): Call regcache_raw_update.
7843
7844 2017-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
7845
7846 * dwarf2read.c (create_debug_type_hash_table): Initialize
7847 header.signature and header.type_offset_in_tu.
7848
7849 2017-02-24 Pedro Alves <palves@redhat.com>
7850
7851 * symtab.c (make_file_symbol_completion_list_1): Use
7852 add_symtab_completions.
7853
7854 2017-02-24 Alan Hayward <alan.hayward@arm.com>
7855
7856 * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
7857
7858 2017-02-24 Alan Hayward <alan.hayward@arm.com>
7859
7860 * i386-tdep.c (i386_pseudo_register_read_into_value): Use
7861 I386_MAX_REGISTER_SIZE.
7862 (i386_pseudo_register_write): Likewise.
7863 (i386_process_record): Likewise.
7864 * i387-tdep.c (i387_supply_xsave): Likewise.
7865 * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
7866 (store_register): Likewise.
7867
7868 2017-02-23 Pedro Alves <palves@redhat.com>
7869
7870 * ada-lang.c: Include "common/function-view.h".
7871 (ada_iterate_over_symbols): Adjust to use function_view as
7872 callback type.
7873 (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
7874 (ada_make_symbol_completion_list): Use a lambda.
7875 (ada_exc_search_name_matches): Delete.
7876 (name_matches_regex): New.
7877 (ada_add_global_exceptions): Use a lambda and name_matches_regex.
7878 * compile/compile-c-support.c: Include "common/function-view.h".
7879 (print_one_macro): Change prototype to accept a ui_file pointer.
7880 (write_macro_definitions): Use a lambda.
7881 * dwarf2read.c: Include "common/function-view.h".
7882 (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
7883 (dw2_expand_symtabs_matching): Adjust to use function_view as
7884 callback type.
7885 * language.h: Include "common/function-view.h".
7886 (struct language_defn) <la_iterate_over_symbols>: Adjust to use
7887 function_view as callback type.
7888 (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
7889 * linespec.c: Include "common/function-view.h".
7890 (collect_info::add_symbol): New method.
7891 (struct symbol_and_data_callback, iterate_inline_only, struct
7892 symbol_matcher_data, iterate_name_matcher): Delete.
7893 (iterate_over_all_matching_symtabs): Adjust to use function_view
7894 as callback type and lambdas.
7895 (iterate_over_file_blocks): Adjust to use function_view as
7896 callback type.
7897 (decode_compound_collector): Now a class with private fields.
7898 (decode_compound_collector::release_symbols): New method.
7899 (collect_one_symbol): Rename to...
7900 (decode_compound_collector::operator()): ... this and adjust.
7901 (lookup_prefix_sym): decode_compound_collector construction bits
7902 move to decode_compound_collector ctor. Pass the
7903 decode_compound_collector object directly as callback. Remove
7904 cleanups and use decode_compound_collector::release_symbols
7905 instead.
7906 (symtab_collector): Now a class with private fields.
7907 (symtab_collector::release_symtabs): New method.
7908 (add_symtabs_to_list): Rename to...
7909 (symtab_collector::operator()): ... this and adjust.
7910 (collect_symtabs_from_filename): symtab_collector construction
7911 bits move to symtab_collector ctor. Pass the symtab_collector
7912 object directly as callback. Remove cleanups and use
7913 symtab_collector::release_symtabs instead.
7914 (collect_symbols): Delete.
7915 (add_matching_symbols_to_info): Use lambdas.
7916 * macrocmd.c (print_macro_callback): Delete.
7917 (info_macro_command): Use a lambda.
7918 (info_macros_command): Pass print_macro_definition as callable
7919 directly.
7920 (print_one_macro): Remove 'ignore' parameter.
7921 (macro_list_command): Adjust.
7922 * macrotab.c (macro_for_each_data::fn): Now a function_view.
7923 (macro_for_each_data::user_data): Delete field.
7924 (foreach_macro): Adjust to call the function_view.
7925 (macro_for_each): Adjust to use function_view as callback type.
7926 (foreach_macro_in_scope): Adjust to call the function_view.
7927 (macro_for_each_in_scope): Adjust to use function_view as callback
7928 type.
7929 * macrotab.h: Include "common/function-view.h".
7930 (macro_callback_fn): Declare a prototype instead of a pointer.
7931 Remove "user_data" parameter.
7932 (macro_for_each, macro_for_each_in_scope): Adjust to use
7933 function_view as callback type.
7934 * psymtab.c (partial_map_expand_apply)
7935 (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
7936 Adjust to use function_view as callback type and to return bool.
7937 (psym_expand_symtabs_matching): Adjust to use function_view as
7938 callback types.
7939 * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
7940 to use function_view as callback type and to return bool.
7941 (debug_qf_expand_symtabs_matching): Adjust to use function_view as
7942 callback types.
7943 * symfile.c (expand_symtabs_matching): Adjust to use function_view
7944 as callback types.
7945 * symfile.h: Include "common/function-view.h".
7946 (expand_symtabs_file_matcher_ftype)
7947 (expand_symtabs_symbol_matcher_ftype)
7948 (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
7949 return bool.
7950 (quick_symbol_functions::map_symtabs_matching_filename)
7951 (quick_symbol_functions::expand_symtabs_matching): Adjust to use
7952 function_view as callback type and return bool.
7953 (expand_symtabs_matching): Adjust to use function_view as callback
7954 type.
7955 (maintenance_expand_name_matcher)
7956 (maintenance_expand_file_matcher): Delete.
7957 (maintenance_expand_symtabs): Use lambdas.
7958 * symtab.c (iterate_over_some_symtabs): Adjust to use
7959 function_view as callback types and return bool.
7960 (iterate_over_symtabs): Likewise. Use unique_xmalloc_ptr instead
7961 of a cleanup.
7962 (lookup_symtab_callback): Delete.
7963 (lookup_symtab): Use a lambda.
7964 (iterate_over_symbols): Adjust to use function_view as callback
7965 type.
7966 (struct search_symbols_data, search_symbols_file_matches)
7967 (search_symbols_name_matches): Delete.
7968 (search_symbols): Use a pair of lambdas.
7969 (struct add_name_data, add_macro_name, symbol_completion_matcher)
7970 (symtab_expansion_callback): Delete.
7971 (default_make_symbol_completion_list_break_on_1): Use lambdas.
7972 * symtab.h: Include "common/function-view.h".
7973 (iterate_over_some_symtabs): Adjust to use function_view as
7974 callback type and return bool.
7975 (iterate_over_symtabs): Adjust to use function_view as callback
7976 type.
7977 (symbol_found_callback_ftype): Remove 'data' parameter and return
7978 bool.
7979 (iterate_over_symbols): Adjust to use function_view as callback
7980 type.
7981
7982 2017-02-23 Pedro Alves <palves@redhat.com>
7983
7984 * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
7985 (%.o) <unittests/%.c>: New pattern.
7986 * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
7987 CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
7988 * common/function-view.h: New file.
7989 * unittests/function-view-selftests.c: New file.
7990 * configure: Regenerate.
7991
7992 2017-02-23 Simon Marchi <simon.marchi@ericsson.com>
7993
7994 * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
7995 inferior_ptid.
7996 * go32-nat.c (go32_thread_alive): Likewise.
7997
7998 2017-02-23 Yao Qi <yao.qi@linaro.org>
7999
8000 * varobj-iter.h (varobj_iter_delete): Call xfree instead of
8001 delete.
8002
8003 2017-02-23 Yao Qi <yao.qi@linaro.org>
8004
8005 * varobj.c (varobj_clear_saved_item): Use delete instead of
8006 xfree.
8007 (update_dynamic_varobj_children): Likewise.
8008
8009 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8010
8011 * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
8012
8013 2017-02-21 Simon Marchi <simon.marchi@ericsson.com>
8014
8015 * common/enum-flags.h (enum_flags::enum_flags): Initialize
8016 m_enum_value to 0 in default constructor.
8017
8018 2017-02-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
8019
8020 * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
8021 (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
8022 (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
8023 STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
8024 (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
8025 (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
8026 (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
8027 IS_STORE_CONDITIONAL_INSN.
8028
8029 2017-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
8030
8031 * dwarf2_rnglists_process: Initialize range_beginning and range_end.
8032
8033 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8034
8035 * NEWS (Changes since GDB 7.12): Add DWARF-5.
8036
8037 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8038
8039 * dwarf2read.c (skip_one_die, read_attribute_value)
8040 (dwarf2_const_value_attr, dump_die_shallow)
8041 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
8042 (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
8043
8044 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8045
8046 * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
8047 (dwarf_parse_macro_header): Accept DWARF version 5.
8048 (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
8049
8050 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8051
8052 * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
8053 DW_AT_GNU_*.
8054 * common/common-exceptions.h (enum errors): Likewise.
8055 * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
8056 * dwarf2expr.c (dwarf_block_to_dwarf_reg)
8057 (dwarf_expr_context::execute_stack_op): Likewise.
8058 * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
8059 Likewise.
8060 * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
8061 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
8062 (show_entry_values_debug, call_site_to_target_addr)
8063 (func_addr_to_tail_call_list, func_verify_no_selftailcall)
8064 (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
8065 (entry_data_value_free_closure, value_of_dwarf_reg_entry)
8066 (value_of_dwarf_block_entry, indirect_pieced_value)
8067 (symbol_needs_eval_context::push_dwarf_reg_entry_value):
8068 (disassemble_dwarf_expression): Likewise.
8069 * dwarf2read.c (process_die, inherit_abstract_dies)
8070 (read_call_site_scope): Likewise.
8071 * gdbtypes.h (struct func_type, struct call_site_parameter)
8072 (struct call_site): Likewise.
8073 * stack.c (read_frame_arg): Likewise.
8074 * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
8075
8076 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8077
8078 * defs.h (read_unsigned_leb128): New declaration.
8079 * dwarf2loc.c (decode_debug_loclists_addresses): New function.
8080 (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
8081 (dwarf2_find_location_expression): Call also
8082 decode_debug_loclists_addresses. Handle DWARF-5 ULEB128 length.
8083 * dwarf2loc.h (dwarf2_version): New declaration.
8084 * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
8085 rnglists.
8086 (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
8087 .debug_rnglists.
8088 (struct dwop_section_names): Add loclists_dwo.
8089 (dwop_section_names): Add .debug_loclists.dwo.
8090 (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
8091 (struct dwarf2_per_cu_data): Add dwarf_version.
8092 (struct dwo_sections): Add loclists.
8093 (struct attr_abbrev): Add implicit_const.
8094 (read_indirect_line_string): New declaration.
8095 (read_unsigned_leb128): Delete declaration.
8096 (rcuh_kind): New definition.
8097 (read_and_check_comp_unit_head): Change parameter
8098 is_debug_types_section to section_kind.
8099 (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
8100 (read_comp_unit_head): Change parameter abfd to section, add parameter
8101 section_kind. Handle DWARF-5.
8102 (error_check_comp_unit_head): Accept also DWARF version 5.
8103 (read_and_check_comp_unit_head): Change parameter
8104 is_debug_types_section to section_kind.
8105 (read_and_check_type_unit_head): Delete function.
8106 (read_abbrev_offset): Handle DWARF-5.
8107 (create_debug_type_hash_table): Add parameter section_kind. Process
8108 only DW_UT_type. Use signature and type_offset_in_tu from struct
8109 comp_unit_head.
8110 (create_debug_types_hash_table): Update create_debug_type_hash_table
8111 caller.
8112 (create_all_type_units): Call create_debug_type_hash_table.
8113 (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
8114 read_and_check_type_unit_head caller to read_and_check_comp_unit_head
8115 caller.
8116 (skip_one_die): Handle DW_FORM_implicit_const.
8117 (dwarf2_rnglists_process): New function.
8118 (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
8119 (abbrev_table_read_table): Handle DW_FORM_implicit_const.
8120 (read_attribute_value): Handle DW_FORM_implicit_const,
8121 DW_FORM_line_strp.
8122 (read_attribute): Handle DW_FORM_implicit_const.
8123 (read_indirect_string_at_offset_from): New function from
8124 read_indirect_string_at_offset.
8125 (read_indirect_string_at_offset): Call
8126 read_indirect_string_at_offset_from.
8127 (read_indirect_line_string_at_offset): New function.
8128 (read_indirect_string): New function comment.
8129 (read_indirect_line_string): New function.
8130 (read_unsigned_leb128): Make it global.
8131 (dwarf2_string_attr): Handle DWARF-5.
8132 (add_include_dir_stub, read_formatted_entries): New functions.
8133 (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
8134 Handle DWARF-5.
8135 (per_cu_header_read_in): Update read_comp_unit_head caller.
8136 (dwarf2_version): New function.
8137 * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
8138 rnglists.
8139 * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
8140 fields.
8141
8142 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8143
8144 * dwarf2read.c (abbrev_table_read_table): Read the data only once.
8145
8146 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8147
8148 * dwarf2read.c (dwarf2_ranges_process): New function from
8149 dwarf2_ranges_read.
8150 (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
8151 dwarf2_ranges_process.
8152
8153 2017-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8154
8155 * dwarf2read.c (create_debug_type_hash_table): New function from
8156 create_debug_types_hash_table.
8157 (create_debug_types_hash_table): Call create_debug_type_hash_table.
8158 (create_all_type_units, open_and_init_dwo_file): Update
8159 create_debug_types_hash_table callers.
8160
8161 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
8162
8163 PR gdb/16188
8164 * fork-child.c (trace_start_error): Fix thinko. va_end should
8165 refer to 'ap', not 'args'.
8166
8167 2017-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
8168 Pedro Alves <palves@redhat.com>
8169
8170 PR gdb/16188
8171 * darwin-nat.c (darwin_ptrace_me): Check if calls to system
8172 calls succeeded.
8173 * fork-child.c (trace_start_error): New function.
8174 (trace_start_error_with_name): Likewise.
8175 * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
8176 * inf-ptrace.c (inf_ptrace_me): Likewise.
8177 * inferior.h (trace_start_error): New prototype.
8178 (trace_start_error_with_name): Likewise.
8179
8180 2017-02-15 Sergio Durigan Junior <sergiodj@redhat.com>
8181
8182 PR gdb/21164
8183 * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
8184 NULL before using it.
8185 * symmisc.c (maintenance_print_symbols): Likewise.
8186 (maintenance_print_msymbols): Likewise.
8187
8188 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8189
8190 * NEWS: Add record Python bindings entry.
8191
8192 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8193
8194 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
8195 py-record-full.o.
8196 (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
8197 * python/py-record-btrace.c, python/py-record-btrace.h,
8198 python/py-record-full.c, python/py-record-full.h: New file.
8199 * python/py-record.c: Add include for py-record-btrace.h and
8200 py-record-full.h.
8201 (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
8202 recpy_instruction_history, recpy_function_call_history, recpy_begin,
8203 recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
8204 * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
8205 New definition.
8206 (gdbpy_initialize_btrace): New export.
8207 * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
8208
8209 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8210
8211 * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
8212 (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
8213 * python/py-record.c: New file.
8214 * python/python-internal.h (gdbpy_start_recording,
8215 gdbpy_current_recording, gdpy_stop_recording,
8216 gdbpy_initialize_record): New export.
8217 * python/python.c (_initialize_python): Add gdbpy_initialize_record.
8218 (python_GdbMethods): Add gdbpy_start_recording,
8219 gdbpy_current_recording and gdbpy_stop_recording.
8220
8221 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8222
8223 * record-btrace.c (record_btrace_record_method): New function.
8224 (init_record_btrace_ops): Initialize to_record_method.
8225 * record-full.c (record_full_record_method): New function.
8226 (init_record_full_ops, init_record_full_core_ops): Add
8227 record_full_record_method.
8228 * record.h (enum record_method): New enum.
8229 * target-debug.h (target_debug_print_enum_record_method: New define.
8230 * target-delegates.c: Regenerate.
8231 * target.c (target_record_method): New function.
8232 * target.h: Include record.h.
8233 (struct target_ops) <to_record_method>: New field.
8234 (target_record_method): New export.
8235
8236 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8237
8238 * record.h (record_start, record_stop): New export.
8239 * record.c (record_start, record_stop): New function.
8240
8241 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8242
8243 * btrace.c (btrace_fetch): Copy function call segments pointer
8244 into a vector.
8245 (btrace_clear): Clear the vector.
8246 (btrace_find_insn_by_number): Use binary search to find the correct
8247 function call segment.
8248 * btrace.h (brace_fun_p): New typedef.
8249 (struct btrace_thread_info) <functions>: New field.
8250
8251 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8252
8253 * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
8254 * btrace.c (btrace_decode_error): ... here. New function.
8255 * btrace.h (btrace_decode_error): New export.
8256
8257 2017-02-14 Tim Wiederhake <tim.wiederhake@intel.com>
8258
8259 * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
8260 (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
8261 btrace_find_insn_by_number): Remove special case for gaps.
8262 * btrace.h (btrace_insn_get_error): New export.
8263 (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
8264 * record-btrace.c (btrace_insn_history): Print number for gaps.
8265 (record_btrace_info, record_btrace_goto): Handle gaps.
8266
8267 2017-02-14 Tom Tromey <tom@tromey.com>
8268
8269 PR python/13598:
8270 * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
8271 event.
8272 * python/py-evts.c (gdbpy_initialize_py_events): Add
8273 before_prompt registry.
8274 * python/py-events.h (events_object) <before_prompt>: New field.
8275
8276 2017-02-14 Markus Metzger <markus.t.metzger@intel.com>
8277
8278 * btrace.c (ftrace_new_switch): Preserve up link and flags.
8279
8280 2017-02-13 Luis Machado <lgustavo@codesourcery.com>
8281
8282 * symfile (_initialize_symfile): Add usage text to the load command's
8283 help text.
8284
8285 2017-02-10 Simon Marchi <simon.marchi@ericsson.com>
8286
8287 * utils.c (defaulted_query): Don't query on secondary UIs.
8288
8289 2017-02-10 Tom Tromey <tom@tromey.com>
8290
8291 * rust-lang.c (rust_get_disr_info): Remove unused variable.
8292
8293 2017-02-10 Tom Tromey <tom@tromey.com>
8294
8295 * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
8296 "cleanup" local.
8297 * python/py-type.c (typy_legacy_template_argument): Remove
8298 unnecessary "cleanup" local.
8299
8300 2017-02-10 Tom Tromey <tom@tromey.com>
8301
8302 * python/python.c (do_start_initialization): New function, from
8303 _initialize_python.
8304 (_initialize_python): Call do_start_initialization.
8305 * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
8306 goto.
8307
8308 2017-02-10 Tom Tromey <tom@tromey.com>
8309
8310 * python/py-prettyprint.c (pretty_print_one_value): Use
8311 gdbpy_ref.
8312
8313 2017-02-10 Tom Tromey <tom@tromey.com>
8314
8315 * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
8316 * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
8317 gdbpy_ref.
8318 * python/py-type.c (field_new): Use gdbpy_ref.
8319 * python/py-symtab.c (symtab_and_line_to_sal_object): Use
8320 gdbpy_ref.
8321 * python/py-progspace.c (pspy_new): Use gdbpy_ref.
8322 (py_free_pspace): Likewise.
8323 (pspace_to_pspace_object): Likewise.
8324 * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
8325 (py_free_objfile): Likewise.
8326 (objfile_to_objfile_object): Likewise.
8327 * python/py-inferior.c (delete_thread_object): Use
8328 gdbpy_ref.
8329 (infpy_read_memory): Likewise.
8330 (py_free_inferior): Likewise.
8331 * python/py-evtregistry.c (create_eventregistry_object): Use
8332 gdbpy_ref.
8333 * python/py-event.c (create_event_object): Use gdbpy_ref.
8334
8335 2017-02-10 Tom Tromey <tom@tromey.com>
8336
8337 * python/py-ref.h (gdbpy_ref_policy): Now a template.
8338 (gdbpy_ref): Now a template; allow subclasses of PyObject to be
8339 used.
8340 * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
8341 python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
8342 python/py-exitedevent.c, python/py-finishbreakpoint.c,
8343 python/py-framefilter.c, python/py-function.c,
8344 python/py-inferior.c, python/py-infevents.c,
8345 python/py-linetable.c, python/py-newobjfileevent.c,
8346 python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
8347 python/py-signalevent.c, python/py-stopevent.c,
8348 python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
8349 python/py-unwind.c, python/py-utils.c, python/py-value.c,
8350 python/py-varobj.c, python/py-xmethods.c, python/python.c,
8351 varobj.c: Change gdbpy_ref to gdbpy_ref<>.
8352
8353 2017-02-10 Tom Tromey <tom@tromey.com>
8354
8355 * ui-out.h (ui_out_emit_type): New class.
8356 (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
8357 * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
8358 and ui_out_emit_tuple.
8359 (enumerate_locals): Likewise.
8360 (py_mi_print_variables, py_print_locals, py_print_args): Use
8361 ui_out_emit_list.
8362 (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
8363 ui_out_emit_list.
8364 * common/gdb_optional.h: New file.
8365
8366 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
8367
8368 * MAINTAINERS (Write After Approval): Update my e-mail address.
8369
8370 2017-02-10 Martin Galvan <martingalvan@sourceware.org>
8371
8372 PR gdb/21122
8373 * breakpoint.c (_initialize_breakpoint): Update the help description
8374 of the 'commands' command to indicate that it takes a list argument.
8375
8376 2017-02-09 Simon Marchi <simon.marchi@ericsson.com>
8377
8378 * interps.c (current_interp_set_logging): Remove "return".
8379
8380 2017-02-09 Gary Benson <gbenson@redhat.com>
8381
8382 * symtab.c (add_symtab_completions): Prevent NULL pointer
8383 dereference.
8384
8385 2017-02-08 Pedro Alves <palves@redhat.com>
8386
8387 * interps.c (interp::interp): Remove reference to quiet_p.
8388 (interp_set): Make static. Remove dead "Switching to" output
8389 code.
8390 (interp_quiet_p, interp_set_quiet): Delete.
8391 (interpreter_exec_cmd): Don't set the interpreter quiet.
8392 * interps.h (interp_quiet_p): Make static.
8393 (class interp) <quiet_p>: Remove field
8394
8395 2017-02-08 Jerome Guitton <guitton@adacore.com>
8396
8397 * cli/cli-decode.c (find_command_name_length): Make it extern.
8398 * cli/cli-decode.h (find_command_name_length): Declare.
8399 * cli/cli-script.c (command_name_equals, line_first_arg):
8400 New functions.
8401 (process_next_line): Use cli-decode to parse command names.
8402 (build_command_line): Make args a constant pointer.
8403
8404 2017-02-08 Jerome Guitton <guitton@adacore.com>
8405
8406 * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
8407 Remove case-insensitive search.
8408
8409 2017-02-07 Jose E. Marchesi <jose.marchesi@oracle.com>
8410
8411 * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
8412 at the end of the line. Avoids an ARI warning.
8413
8414 2017-02-06 Luis Machado <lgustavo@codesourcery.com>
8415
8416 * NEWS: Mention support for record/replay of Intel 64 rdrand and
8417 rdseed instructions.
8418 i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
8419
8420 2017-02-06 Ivo Raisr <ivo.raisr@oracle.com>
8421
8422 PR tdep/20936
8423 Provide and use sparc32 and sparc64 target description XML files.
8424 * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
8425 features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
8426 * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
8427 features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
8428 * features/sparc/sparc32-solaris.xml: New file.
8429 * features/sparc/sparc64-solaris.xml: New file.
8430 * features/sparc/sparc32-solaris.c: Generated.
8431 * features/sparc/sparc64-solaris.c: Generated.
8432 * sparc-tdep.h: Account for differences in target descriptions.
8433 * sparc-tdep.c (sparc32_register_name): Use target provided registers.
8434 (sparc32_register_type): Use target provided registers.
8435 (validate_tdesc_registers): New function.
8436 (sparc32_gdbarch_init): Use tdesc_has_registers.
8437 Set pseudoregister functions.
8438 * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
8439 (sparc64_register_type): Use target provided registers.
8440 (sparc64_init_abi): Set pseudoregister functions.
8441
8442 2017-02-03 Tom Tromey <tom@tromey.com>
8443
8444 PR rust/21097:
8445 * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
8446 with a single member.
8447
8448 2017-02-03 Pedro Alves <palves@redhat.com>
8449
8450 * cli/cli-interp.c (cli_interp_base::cli_interp_base)
8451 (cli_interp_base::~cli_interp_base): New.
8452 (cli_interp): New struct.
8453 (as_cli_interp): Cast the interp itself to cli_interp.
8454 (cli_interpreter_pre_command_loop): Rename to ...
8455 (cli_interp_base::pre_command_loop): ... this. Remove 'self'
8456 parameter.
8457 (cli_interpreter_init): Rename to ...
8458 (cli_interp::init): ... this. Remove 'self' parameter. Use
8459 boolean. Make extern.
8460 (cli_interpreter_resume): Rename to ...
8461 (cli_interp::resume): ... this. Remove 'data' parameter. Make
8462 extern.
8463 (cli_interpreter_suspend): Rename to ...
8464 (cli_interp::suspend): ... this. Remove 'data' parameter. Make
8465 extern.
8466 (cli_interpreter_exec): Rename to ...
8467 (cli_interp::exec): ... this. Remove 'data' parameter. Make
8468 extern.
8469 (cli_interpreter_supports_command_editing): Rename to ...
8470 (cli_interp_base::supports_command_editing): ... this. Remove
8471 'interp' parameter. Make extern.
8472 (cli_ui_out): Rename to ...
8473 (cli_interp::interp_ui_out): ... this. Remove 'interp' parameter.
8474 Make extern.
8475 (cli_set_logging): Rename to ...
8476 (cli_interp_base::set_logging): ... this. Remove 'interp'
8477 parameter. Make extern.
8478 (cli_interp_procs): Delete.
8479 (cli_interp_factory): Adjust to use "new".
8480 * cli/cli-interp.h: Include "interps.h".
8481 (struct cli_interp_base): New struct.
8482 * interps.c (struct interp): Delete. Fields moved to interps.h.
8483 (interp_new): Delete.
8484 (interp::interp, interp::~interp): New.
8485 (interp_set): Use bool, and return void. Assume the interpreter
8486 has suspend, init and resume methods, and that the all return
8487 void.
8488 (set_top_level_interpreter): interp_set returns void.
8489 (interp_ui_out): Adapt.
8490 (current_interp_set_logging): Adapt.
8491 (interp_data): Delete.
8492 (interp_pre_command_loop, interp_supports_command_editing): Adapt.
8493 (interp_exec): Adapt.
8494 (top_level_interpreter_data): Delete.
8495 * interps.h (interp_init_ftype, interp_resume_ftype)
8496 (interp_suspend_ftype, interp_exec_ftype)
8497 (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
8498 (class interp): New.
8499 (interp_new): Delete.
8500 (interp_set): Now returns void. Use bool.
8501 (interp_data, top_level_interpreter_data): Delete.
8502 * mi/mi-common.h: Include interps.h.
8503 (class mi_interp): Inherit from interp. Define a ctor. Declare
8504 init, resume, suspect, exec, interp_ui_out, set_logging and
8505 pre_command_loop methods.
8506 * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
8507 (mi_interpreter_init): Rename to ...
8508 (mi_interp::init): ... this. Remove the 'interp' parameter, use
8509 bool, return void and make extern. Adjust.
8510 (mi_interpreter_resume): ... Rename to ...
8511 (mi_interp::resume): ... this. Remove the 'data' parameter,
8512 return void and make extern. Adjust.
8513 (mi_interpreter_suspend): ... Rename to ...
8514 (mi_interp::suspend): ... this. Remove the 'data' parameter,
8515 return void and make extern. Adjust.
8516 (mi_interpreter_exec): ... Rename to ...
8517 (mi_interp::exec): ... this. Remove the 'data' parameter and make
8518 extern. Adjust.
8519 (mi_interpreter_pre_command_loop): ... Rename to ...
8520 (mi_interp::pre_command_loop): ... this. Remove the 'self'
8521 parameter and make extern.
8522 (mi_on_normal_stop_1): Adjust.
8523 (mi_ui_out): Rename to ...
8524 (mi_interp::interp_ui_out): ... this. Remove the 'interp'
8525 parameter and make extern. Adjust.
8526 (mi_set_logging): Rename to ...
8527 (mi_interp::set_logging): ... this. Remove the 'interp'
8528 parameter and make extern. Adjust.
8529 (mi_interp_procs): Delete.
8530 (mi_interp_factory): Adjust to use 'new'.
8531 * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
8532 (mi_print_exception, mi_execute_command, mi_load_progress):
8533 Adjust.
8534 * tui/tui-interp.c (tui_interp): New class.
8535 (as_tui_interp): Return a tui_interp pointer.
8536 (tui_on_normal_stop, tui_on_signal_received)
8537 (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
8538 (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
8539 to use interp::interp_ui_out.
8540 (tui_init): Rename to ...
8541 (tui_interp::init): ... this. Remove the 'self' parameter, use
8542 bool, return void and make extern. Adjust.
8543 (tui_resume): Rename to ...
8544 (tui_interp::resume): ... this. Remove the 'data' parameter,
8545 return void and make extern. Adjust.
8546 (tui_suspend): Rename to ...
8547 (tui_interp::suspend): ... this. Remove the 'data' parameter,
8548 return void and make extern. Adjust.
8549 (tui_ui_out): Rename to ...
8550 (tui_interp::interp_ui_out): ... this. Remove the 'self'
8551 parameter, and make extern. Adjust.
8552 (tui_exec): Rename to ...
8553 (tui_interp::exec): ... this. Remove the 'data' parameter and
8554 make extern.
8555 (tui_interp_procs): Delete.
8556 (tui_interp_factory): Use "new".
8557
8558 2017-02-02 Tom Tromey <tom@tromey.com>
8559
8560 * rust-exp.y (ends_raw_string, space_then_number)
8561 (rust_identifier_start_p): Return bool.
8562 * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
8563 (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
8564 (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
8565 (rust_chartype_p): Return bool.
8566 (val_print_struct, rust_print_struct_def, rust_print_type):
8567 Update.
8568 * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
8569 Return bool.
8570
8571 2017-02-02 Tom Tromey <tom@tromey.com>
8572
8573 * rust-lang.c: Reindent.
8574
8575 2017-02-02 Tom Tromey <tom@tromey.com>
8576
8577 * rust-lang.h (rust_crate_for_block): Update.
8578 * rust-lang.c (rust_crate_for_block): Return std::string.
8579 (rust_get_disr_info): Use std:;string, not
8580 gdb::unique_xmalloc_ptr.
8581 * rust-exp.y (crate_name): Update.
8582
8583 2017-02-02 Pedro Alves <palves@redhat.com>
8584
8585 * disasm-selftests.c (print_one_insn_test): Move the "verbose"
8586 field out of gdb_disassembler_test and make it static.
8587
8588 2017-02-02 Pedro Alves <palves@redhat.com>
8589
8590 * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
8591 mi1_interp and mi_interp fields.
8592
8593 2017-02-02 Pedro Alves <palves@redhat.com>
8594
8595 * cli/cli-interp.c (struct saved_output_files, saved_output):
8596 Moved from cli/cli-logging.c.
8597 (cli_set_logging): New function.
8598 (cli_interp_procs): Install cli_set_logging.
8599 * cli/cli-interp.h (make_logging_output, cli_set_logging):
8600 Declare.
8601 * cli/cli-logging.c (struct saved_output_files, saved_output):
8602 Moved to cli/cli-interp.c.
8603 (pop_output_files): Don't save outputs here.
8604 (make_logging_output): New function.
8605 (handle_redirections): Don't build tee nor save previous outputs
8606 here.
8607 * interps.c (current_interp_set_logging): Change prototype.
8608 Assume there's always a set_logging_proc method installed.
8609 * interps.h (interp_set_logging_ftype): Change prototype.
8610 (current_interp_set_logging): Change prototype and adjust comment.
8611 * mi/mi-interp.c (mi_set_logging): Change protototype. Adjust to
8612 use make_logging_output.
8613 * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
8614 2017-02-02 Pedro Alves <palves@redhat.com>
8615
8616 * cli/cli-logging.c (maybe_warn_already_logging): New factored out
8617 from ...
8618 (set_logging_overwrite): ... here.
8619 (logging_no_redirect_file): Delete.
8620 (set_logging_redirect): Don't handle redirection on the fly.
8621 Instead warn that "logging off" / "logging on" is necessary.
8622 (pop_output_files): Delete references to logging_no_redirect_file.
8623 (show_logging_command): Always speak in terms of what will happen
8624 once logging is reenabled.
8625
8626 2017-02-02 Pedro Alves <palves@redhat.com>
8627
8628 * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
8629
8630 2017-02-02 Pedro Alves <palves@redhat.com>
8631
8632 * disasm.c (gdb_pretty_print_insn): Rename to ...
8633 (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
8634 Remove gdbarch parameter. Adapt to clear the object's buffers
8635 instead of allocating new buffers, and to print using the object's
8636 gdb_disassembler instead of calling gdb_print_insn.
8637 (dump_insns): Use gdb_pretty_print_disassembler.
8638 * disasm.h (gdb_pretty_print_insn): Delete declaration.
8639 (gdb_pretty_print_disassembler): New class.
8640 * record-btrace.c (btrace_insn_history): Use
8641 gdb_pretty_print_disassembler.
8642
8643 2017-02-02 Pedro Alves <palves@redhat.com>
8644
8645 * ada-lang.c (type_as_string): Use string_file.
8646 * ada-valprint.c (ada_print_floating): Use string_file.
8647 * ada-varobj.c (ada_varobj_scalar_image)
8648 (ada_varobj_get_value_image): Use string_file.
8649 * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
8650 * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
8651 * breakpoint.c (update_inserted_breakpoint_locations)
8652 (insert_breakpoint_locations, reattach_breakpoints)
8653 (print_breakpoint_location, print_one_detail_ranged_breakpoint)
8654 (print_it_watchpoint): Use string_file.
8655 (save_breakpoints): Use stdio_file.
8656 * c-exp.y (oper): Use string_file.
8657 * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
8658 tee_file.
8659 (pop_output_files): Use delete.
8660 (handle_redirections): Use stdio_file and tee_file.
8661 * cli/cli-setshow.c (do_show_command): Use string_file.
8662 * compile/compile-c-support.c (c_compute_program): Use
8663 string_file.
8664 * compile/compile-c-symbols.c (generate_vla_size): Take a
8665 'string_file &' instead of a 'ui_file *'.
8666 (generate_c_for_for_one_variable): Take a 'string_file &' instead
8667 of a 'ui_file *'. Use string_file.
8668 (generate_c_for_variable_locations): Take a 'string_file &'
8669 instead of a 'ui_file *'.
8670 * compile/compile-internal.h (generate_c_for_for_one_variable):
8671 Take a 'string_file &' instead of a 'ui_file *'.
8672 * compile/compile-loc2c.c (push, pushf, unary, binary)
8673 (print_label, pushf_register_address, pushf_register)
8674 (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
8675 'ui_file *'. Adjust.
8676 * compile/compile.c (compile_to_object): Use string_file.
8677 * compile/compile.h (compile_dwarf_expr_to_c)
8678 (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
8679 'ui_file *'.
8680 * cp-support.c (inspect_type): Use string_file and obstack_copy0.
8681 (replace_typedefs_qualified_name): Use string_file and
8682 obstack_copy0.
8683 * disasm.c (gdb_pretty_print_insn): Use string_file.
8684 (gdb_disassembly): Adjust reference the null_stream global.
8685 (do_ui_file_delete): Delete.
8686 (gdb_insn_length): Use null_stream.
8687 * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
8688 * dwarf2loc.c (dwarf2_compile_property_to_c)
8689 (locexpr_generate_c_location, loclist_generate_c_location): Take a
8690 'string_file &' instead of a 'ui_file *'.
8691 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
8692 * dwarf2read.c (do_ui_file_peek_last): Delete.
8693 (dwarf2_compute_name): Use string_file.
8694 * event-top.c (gdb_setup_readline): Use stdio_file.
8695 * gdbarch.sh (verify_gdbarch): Use string_file.
8696 * gdbtypes.c (safe_parse_type): Use null_stream.
8697 * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
8698 string_file.
8699 * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
8700 'string_file *' instead of a 'ui_file *'.
8701 (gdbscm_arch_disassemble): Use string_file.
8702 * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
8703 * guile/scm-ports.c (class ioscm_file_port): Now a class that
8704 inherits from ui_file.
8705 (ioscm_file_port_delete, ioscm_file_port_rewind)
8706 (ioscm_file_port_put): Delete.
8707 (ioscm_file_port_write): Rename to ...
8708 (ioscm_file_port::write): ... this. Remove file_port_magic
8709 checks.
8710 (ioscm_file_port_new): Delete.
8711 (ioscm_with_output_to_port_worker): Use ioscm_file_port and
8712 ui_file_up.
8713 * guile/scm-type.c (tyscm_type_name): Use string_file.
8714 * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
8715 Use string_file.
8716 * infcmd.c (print_return_value_1): Use string_file.
8717 * infrun.c (print_target_wait_results): Use string_file.
8718 * language.c (add_language): Use string_file.
8719 * location.c (explicit_to_string_internal): Use string_file.
8720 * main.c (captured_main_1): Use null_file.
8721 * maint.c (maintenance_print_architecture): Use stdio_file.
8722 * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
8723 * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
8724 event_channel>: Change type to mi_console_file pointer.
8725 * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
8726 (mi_console_file_delete): Delete.
8727 (struct mi_console_file): Delete.
8728 (mi_console_file_magic): Delete.
8729 (mi_console_file_new): Delete.
8730 (mi_console_file::mi_console_file): New.
8731 (mi_console_file_delete): Delete.
8732 (mi_console_file_fputs): Delete.
8733 (mi_console_file::write): New.
8734 (mi_console_raw_packet): Delete.
8735 (mi_console_file::flush): New.
8736 (mi_console_file_flush): Delete.
8737 (mi_console_set_raw): Rename to ...
8738 (mi_console_file::set_raw): ... this.
8739 * mi/mi-console.h (class mi_console_file): New class.
8740 (mi_console_file_new, mi_console_set_raw): Delete.
8741 * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
8742 (mi_set_logging): Use delete and tee_file. Adjust.
8743 * mi/mi-main.c (output_register): Use string_file.
8744 (mi_cmd_data_evaluate_expression): Use string_file.
8745 (mi_cmd_data_read_memory): Use string_file.
8746 (mi_cmd_execute, print_variable_or_computed): Use string_file.
8747 * mi/mi-out.c (mi_ui_out::main_stream): New.
8748 (mi_ui_out::rewind): Use main_stream and
8749 string_file.
8750 (mi_ui_out::put): Use main_stream and string_file.
8751 (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
8752 Allocate a 'string_file' instead.
8753 (mi_out_new): Don't allocate a mem_fileopen stream here.
8754 * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
8755 (mi_ui_out::main_stream): Declare method.
8756 * printcmd.c (eval_command): Use string_file.
8757 * psymtab.c (maintenance_print_psymbols): Use stdio_file.
8758 * python/py-arch.c (archpy_disassemble): Use string_file.
8759 * python/py-breakpoint.c (bppy_get_commands): Use string_file.
8760 * python/py-frame.c (frapy_str): Use string_file.
8761 * python/py-framefilter.c (py_print_type, py_print_single_arg):
8762 Use string_file.
8763 * python/py-type.c (typy_str): Use string_file.
8764 * python/py-unwind.c (unwind_infopy_str): Use string_file.
8765 * python/py-value.c (valpy_str): Use string_file.
8766 * record-btrace.c (btrace_insn_history): Use string_file.
8767 * regcache.c (regcache_print): Use stdio_file.
8768 * reggroups.c (maintenance_print_reggroups): Use stdio_file.
8769 * remote.c (escape_buffer): Use string_file.
8770 * rust-lang.c (rust_get_disr_info): Use string_file.
8771 * serial.c (serial_open_ops_1): Use stdio_file.
8772 (do_serial_close): Use delete.
8773 * stack.c (print_frame_arg): Use string_file.
8774 (print_frame_args): Remove local mem_fileopen stream, not used.
8775 (print_frame): Use string_file.
8776 * symmisc.c (maintenance_print_symbols): Use stdio_file.
8777 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
8778 Take a 'string_file *' instead of a 'ui_file *'.
8779 * top.c (new_ui): Use stdio_file and stderr_file.
8780 (free_ui): Use delete.
8781 (execute_command_to_string): Use string_file.
8782 (quit_confirm): Use string_file.
8783 * tracepoint.c (collection_list::append_exp): Use string_file.
8784 * tui/tui-disasm.c (tui_disassemble): Use string_file.
8785 * tui/tui-file.c: Don't include "ui-file.h".
8786 (enum streamtype, struct tui_stream): Delete.
8787 (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
8788 (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
8789 (tui_file::tui_file): New method.
8790 (tui_file_fputs): Delete.
8791 (tui_file_get_strbuf): Delete.
8792 (tui_file::puts): New method.
8793 (tui_file_adjust_strbuf): Delete.
8794 (tui_file_flush): Delete.
8795 (tui_file::flush): New method.
8796 * tui/tui-file.h: Tweak intro comment.
8797 Include ui-file.h.
8798 (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
8799 (tui_file_adjust_strbuf): Delete declarations.
8800 (class tui_file): New class.
8801 * tui/tui-io.c (tui_initialize_io): Use tui_file.
8802 * tui/tui-regs.c (tui_restore_gdbout): Use delete.
8803 (tui_register_format): Use string_stream.
8804 * tui/tui-stack.c (tui_make_status_line): Use string_file.
8805 (tui_get_function_from_frame): Use string_file.
8806 * typeprint.c (type_to_string): Use string_file.
8807 * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
8808 (null_stream): New global.
8809 (ui_file_delete): Delete.
8810 (ui_file::ui_file): New.
8811 (null_file_isatty): Delete.
8812 (ui_file::~ui_file): New.
8813 (null_file_rewind): Delete.
8814 (ui_file::printf): New.
8815 (null_file_put): Delete.
8816 (null_file_flush): Delete.
8817 (ui_file::putstr): New.
8818 (null_file_write): Delete.
8819 (ui_file::putstrn): New.
8820 (null_file_read): Delete.
8821 (ui_file::putc): New.
8822 (null_file_fputs): Delete.
8823 (null_file_write_async_safe): Delete.
8824 (ui_file::vprintf): New.
8825 (null_file_delete): Delete.
8826 (null_file::write): New.
8827 (null_file_fseek): Delete.
8828 (null_file::puts): New.
8829 (ui_file_data): Delete.
8830 (null_file::write_async_safe): New.
8831 (gdb_flush, ui_file_isatty): Adjust.
8832 (ui_file_put, ui_file_rewind): Delete.
8833 (ui_file_write): Adjust.
8834 (ui_file_write_for_put): Delete.
8835 (ui_file_write_async_safe, ui_file_read): Adjust.
8836 (ui_file_fseek): Delete.
8837 (fputs_unfiltered): Adjust.
8838 (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
8839 (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
8840 (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
8841 (set_ui_file_data): Delete.
8842 (string_file::~string_file, string_file::write)
8843 (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
8844 (do_ui_file_as_string, ui_file_as_string): Delete.
8845 (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
8846 (struct mem_file): Delete.
8847 (mem_file_new): Delete.
8848 (stdio_file::stdio_file): New.
8849 (mem_file_delete): Delete.
8850 (stdio_file::stdio_file): New.
8851 (mem_fileopen): Delete.
8852 (stdio_file::~stdio_file): New.
8853 (mem_file_rewind): Delete.
8854 (stdio_file::set_stream): New.
8855 (mem_file_put): Delete.
8856 (stdio_file::open): New.
8857 (mem_file_write): Delete.
8858 (stdio_file_magic, struct stdio_file): Delete.
8859 (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
8860 (stdio_file::flush): New.
8861 (stdio_file_read): Rename to ...
8862 (stdio_file::read): ... this. Adjust.
8863 (stdio_file_write): Rename to ...
8864 (stdio_file::write): ... this. Adjust.
8865 (stdio_file_write_async_safe): Rename to ...
8866 (stdio_file::write_async_safe) ... this. Adjust.
8867 (stdio_file_fputs): Rename to ...
8868 (stdio_file::puts) ... this. Adjust.
8869 (stdio_file_isatty): Delete.
8870 (stdio_file_fseek): Delete.
8871 (stdio_file::isatty): New.
8872 (stderr_file_write): Rename to ...
8873 (stderr_file::write) ... this. Adjust.
8874 (stderr_file_fputs): Rename to ...
8875 (stderr_file::puts) ... this. Adjust.
8876 (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
8877 (stderr_file::stderr_file): New.
8878 (tee_file_magic): Delete.
8879 (struct tee_file): Delete.
8880 (tee_file::tee_file): New.
8881 (tee_file_new): Delete.
8882 (tee_file::~tee_file): New.
8883 (tee_file_delete): Delete.
8884 (tee_file_flush): Rename to ...
8885 (tee_file::flush): ... this. Adjust.
8886 (tee_file_write): Rename to ...
8887 (tee_file::write): ... this. Adjust.
8888 (tee_file::write_async_safe): New.
8889 (tee_file_fputs): Rename to ...
8890 (tee_file::puts): ... this. Adjust.
8891 (tee_file_isatty): Rename to ...
8892 (tee_file::isatty): ... this. Adjust.
8893 * ui-file.h (struct obstack, struct ui_file): Don't
8894 forward-declare.
8895 (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
8896 (ui_file_write_ftype)
8897 (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
8898 (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
8899 (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
8900 (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
8901 (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
8902 (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
8903 (set_ui_file_fseek): Delete.
8904 (ui_file_data, ui_file_delete, ui_file_rewind)
8905 (struct ui_file): New.
8906 (ui_file_up): New.
8907 (class null_file): New.
8908 (null_stream): Declare.
8909 (ui_file_write_for_put, ui_file_put): Delete.
8910 (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
8911 Delete.
8912 (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
8913 (gdb_fopen, tee_file_new): Delete.
8914 (struct string_file): New.
8915 (struct stdio_file): New.
8916 (stdio_file_up): New.
8917 (struct stderr_file): New.
8918 (class tee_file): New.
8919 * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
8920 of a 'ui_file *'. Adjust.
8921 * ui-out.h (class ui_out) <field_stream>: Likewise.
8922 * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
8923 (null_stream): Delete.
8924 (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
8925 Adjust.
8926 * utils.h (struct ui_file): Delete forward declaration..
8927 (make_cleanup_ui_file_delete, null_stream): Delete declarations.
8928 (error_stream): Take a 'string_file &' instead of a
8929 'ui_file *'.
8930 * varobj.c (varobj_value_get_print_value): Use string_file.
8931 * xtensa-tdep.c (xtensa_verify_config): Use string_file.
8932 * gdbarch.c: Regenerate.
8933
8934 2017-02-02 Pedro Alves <palves@redhat.com>
8935
8936 * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
8937 (gdb_pretty_print_insn): ... this. Now a free function. Add back
8938 a 'gdbarch' parameter. Allocate a mem_fileopen stream here.
8939 Adjust to call gdb_print_insn instead of
8940 gdb_disassembler::print_insn.
8941 (dump_insns, do_mixed_source_and_assembly_deprecated)
8942 (do_mixed_source_and_assembly, do_assembly_only): Add back a
8943 'gdbarch' parameter. Remove gdb_disassembler parameter.
8944 (gdb_disassembly): Don't allocate a gdb_disassembler here.
8945 * disasm.h (gdb_disassembler::pretty_print_insn): Delete
8946 declaration.
8947 (gdb_pretty_print_insn): Re-add declaration.
8948 * record-btrace.c (btrace_insn_history): Don't allocate a
8949 gdb_disassembler here. Adjust to call gdb_pretty_print_insn.
8950
8951 2017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
8952
8953 * disasm.h (gdb_disassembly): Remove file_string parameter.
8954 * disasm.c (gdb_disassembly): Likewise.
8955 * cli/cli-cmds.c (print_disassembly): Adapt.
8956 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
8957 * stack.c (do_gdb_disassembly): Likewise.
8958
8959 2017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
8960
8961 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
8962 DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
8963 targets. And if the implicit value is longer than needed, extract
8964 the first bytes instead of the "least significant" ones.
8965
8966 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
8967
8968 * btrace.c (btrace_enable): Do not call btrace_add_pc for
8969 BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
8970 (btrace_fetch): Assert can_access_registers_ptid.
8971 * record-btrace.c (require_btrace_thread, record_btrace_info): Call
8972 validate_registers_access.
8973
8974 2017-02-01 Markus Metzger <markus.t.metzger@intel.com>
8975
8976 * gdbthread.h (can_access_registers_ptid): New.
8977 * thread.c (can_access_registers_ptid): New.
8978
8979 2017-02-01 Pedro Alves <palves@redhat.com>
8980
8981 * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
8982
8983 2017-01-31 Pedro Alves <palves@redhat.com>
8984
8985 * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
8986 Fix typos.
8987
8988 2017-01-31 Pedro Alves <palves@redhat.com>
8989
8990 * stack.c (print_frame_args): Remove local mem_fileopen stream,
8991 not used.
8992
8993 2017-01-31 Pedro Alves <palves@redhat.com>
8994
8995 * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
8996
8997 2017-01-31 Pedro Alves <palves@redhat.com>
8998
8999 * common/scoped_restore.h
9000 (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
9001 change the value's parameter type to T2.
9002 (make_scoped_restore): Likewise.
9003
9004 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
9005 Richard Henderson <rth@redhat.com>
9006
9007 * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
9008 (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
9009 GS_BASE for older kernels.
9010 (amd64_linux_store_inferior_registers): Add case to store FS_BASE
9011 GS_BASE for older kernels.
9012 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
9013 and GS_BASE to the offset table.
9014 (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
9015 system register group.
9016 * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
9017 for older kernels.
9018 * amd64-tdep.c (amd64_init_abi): Add segment registers for the
9019 amd64 ABI.
9020 * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
9021 AMD64_GSBASE_REGNUM.
9022 (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
9023 * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
9024 (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
9025 (x32-avx-linux.dat, x32-avx512-linux.dat): Add
9026 i386/64bit-segments.xml in those rules.
9027 * features/i386/64bit-segments.xml: New file.
9028 * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
9029 * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
9030 * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
9031 * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
9032 * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
9033 * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
9034 * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
9035 * features/i386/amd64-avx-linux.c: Regenerated.
9036 * features/i386/amd64-avx-mpx-linux.c: Regenerated.
9037 * features/i386/amd64-avx-mpx.c: Regenerated.
9038 * features/i386/amd64-avx512-linux.c: Regenerated.
9039 * features/i386/amd64-linux.c: Regenerated.
9040 * features/i386/amd64-mpx-linux.c: Regenerated.
9041 * features/i386/i386-avx-mpx-linux.c: Regenerated.
9042 * features/i386/i386-avx-mpx.c: Regenerated.
9043 * features/i386/x32-avx-linux.c: Regenerated.
9044 * features/i386/x32-avx512-linux.c: Regenerated.
9045 * regformats/i386/amd64-avx-linux.dat: Regenerated.
9046 * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
9047 * regformats/i386/amd64-avx512-linux.dat: Regenerated.
9048 * regformats/i386/amd64-linux.dat: Regenerated.
9049 * regformats/i386/amd64-mpx-linux.dat: Regenerated.
9050 * regformats/i386/x32-avx-linux.dat: Regenerated.
9051 * regformats/i386/x32-avx512-linux.dat: Regenerated.
9052 * regformats/i386/x32-linux.dat: Regenerated.
9053
9054 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
9055
9056 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
9057 Set to AMD64_NUM_REGS.
9058
9059 2017-01-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
9060
9061 * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
9062 that checks validity of a register number.
9063
9064 2017-01-27 Kees Cook <keescook@google.com>
9065
9066 * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
9067 fetch_fpregs if target has fpa registers.
9068 (arm_linux_store_inferior_registers): Call store_fpregs if target
9069 has fpa registers.
9070
9071 2017-01-26 Andreas Arnez <arnez@linux.vnet.ibm.com>
9072
9073 * cris-tdep.c (cris_gdbarch_init): Remove check for
9074 info.byte_order and force it to BFD_ENDIAN_LITTLE.
9075
9076 2017-01-26 Antoine Tremblay <antoine.tremblay@ericsson.com>
9077
9078 * corelow.c (get_core_register_section): Check for regset
9079 existence before checking for REGSET_VARIABLE_SIZE.
9080
9081 2017-01-26 Yao Qi <yao.qi@linaro.org>
9082 Pedro Alves <palves@redhat.com>
9083
9084 PR gdb/20939
9085 * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
9086 call memory_error, save memaddr instead.
9087 (gdb_disassembler::print_insn): If gdbarch_print_insn returns
9088 negative, cal memory_error.
9089 * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
9090
9091 2017-01-26 Yao Qi <yao.qi@linaro.org>
9092
9093 * disasm-selftests.c (memory_error_test): New function.
9094 (_initialize_disasm_selftests): Register memory_error_test.
9095
9096 2017-01-26 Yao Qi <yao.qi@linaro.org>
9097
9098 * Makefile.in (SFILES): Add disasm-selftests.c and
9099 selftest-arch.c.
9100 (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
9101 * disasm-selftests.c: New file.
9102 * selftest-arch.c: New file.
9103 * selftest-arch.h: New file.
9104
9105 2017-01-26 Yao Qi <yao.qi@linaro.org>
9106
9107 * mep-tdep.c (mep_gdb_print_insn): Set info->arch
9108 to bfd_arch_mep. Don't return 0 if section is not
9109 found. Call print_insn_mep.
9110
9111 2017-01-26 Pedro Alves <palves@redhat.com>
9112 Yao Qi <yao.qi@linaro.org>
9113
9114 * arm-tdep.c: Include "disasm.h".
9115 (gdb_print_insn_arm): Update code to get gdbarch.
9116 * disasm.c (dis_asm_read_memory): Change it to
9117 gdb_disassembler::dis_asm_read_memory.
9118 (dis_asm_memory_error): Likewise.
9119 (dis_asm_print_address): Likewise.
9120 (gdb_pretty_print_insn): Change it to
9121 gdb_disassembler::pretty_print_insn.
9122 (dump_insns): Add one argument gdb_disassemlber. All
9123 callers updated.
9124 (do_mixed_source_and_assembly_deprecated): Likewise.
9125 (do_mixed_source_and_assembly): Likewise.
9126 (do_assembly_only): Likewise.
9127 (gdb_disassembler::gdb_disassembler): New.
9128 (gdb_disassembler::print_insn): New.
9129 * disasm.h (class gdb_disassembler): New.
9130 (gdb_pretty_print_insn): Remove declaration.
9131 (gdb_disassemble_info): Likewise.
9132 * guile/scm-disasm.c (class gdbscm_disassembler): New.
9133 (gdbscm_disasm_read_memory_worker): Update.
9134 (gdbscm_disasm_read_memory): Update.
9135 (gdbscm_disasm_memory_error): Remove.
9136 (gdbscm_disasm_print_address): Remove.
9137 (gdbscm_disassembler::gdbscm_disassembler): New.
9138 (gdbscm_print_insn_from_port): Update.
9139 * mips-tdep.c: Include disasm.h.
9140 (gdb_print_insn_mips): Update code to get gdbarch.
9141 * record-btrace.c (btrace_insn_history): Update.
9142 * spu-tdep.c: Include disasm.h.
9143 (struct spu_dis_asm_data): Remove.
9144 (struct spu_dis_asm_info): New.
9145 (spu_dis_asm_print_address): Use spu_dis_asm_info to get
9146 SPU id.
9147 (gdb_print_insn_spu): Cast disassemble_info to
9148 spu_dis_asm_info.
9149
9150 2017-01-26 Yao Qi <yao.qi@linaro.org>
9151
9152 * disasm.c (do_ui_file_delete): Delete.
9153 (gdb_insn_length): Move code creating stream to ...
9154 * utils.c (null_stream): ... here. New function.
9155 * utils.h (null_stream): Declare.
9156
9157 2017-01-23 Simon Marchi <simon.marchi@polymtl.ca>
9158
9159 * python/py-inferior.c (find_thread_object): Return directly
9160 from the loop. Remove "found" variable.
9161
9162 2017-01-21 Joel Brobecker <brobecker@adacore.com>
9163
9164 GDB 7.12.1 released.
9165
9166 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
9167
9168 * python/py-function.c (fnpy_call): Reorder declarations to have
9169 the gdbpy_enter object declared first.
9170 * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
9171
9172 2017-01-20 Simon Marchi <simon.marchi@ericsson.com>
9173
9174 PR python/21068
9175 * python/python-internal.h (PyMem_RawMalloc): Define for
9176 Python < 3.4.
9177 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
9178 PyMem_RawMalloc instead of PyMem_Malloc.
9179
9180 2017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com>
9181 Luis Machado <lgustavo@codesourcery.com>
9182
9183 * NEWS (New commands): Mention flash-erase.
9184 (New MI commands): Mention target-flash-erase.
9185 * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
9186 command.
9187 * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
9188 * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
9189 * target.c (flash_erase_command): New function.
9190 (initialize_targets): Add new flash-erase command.
9191 * target.h (flash_erase_command): New declaration.
9192
9193 2017-01-20 Joel Brobecker <brobecker@adacore.com>
9194
9195 * nat/linux-ptrace.c: Only include <sys/procfs.h> if
9196 HAVE_SYS_PROCFS_H is defined.
9197
9198 2017-01-18 Alan Hayward <alan.hayward@arm.com>
9199
9200 * remote.c (struct cached_reg): Change data into a pointer.
9201 * (stop_reply_dtr): Free data pointers before deleting vector.
9202 (process_stop_reply): Likewise.
9203 (remote_parse_stop_reply): Allocate space for data
9204
9205 2017-01-18 Alan Hayward <alan.hayward@arm.com>
9206
9207 * amd64-tdep.c (amd64_pseudo_register_read_value): remove
9208 MAX_REGISTER_SIZE.
9209 (amd64_pseudo_register_read_value): Likewise.
9210 * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
9211 (store_register_using_P): Likewise.
9212 * regcache.c (regcache_xfer_part): Likewise.
9213
9214 2017-01-16 Ivo Raisr <ivo.raisr@oracle.com>
9215
9216 Split real and pseudo registers.
9217 * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
9218 (sparc32_pseudo_regnum): New enum.
9219 * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
9220 * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
9221 (SPARC32_CP0_REGISTERS): New macro.
9222 (sparc32_pseudo_register_name): New function.
9223 (sparc32_register_name): Use sparc32_pseudo_register_name.
9224 (sparc32_pseudo_register_type): New function.
9225 (sparc32_register_type): Use sparc32_pseudo_register_type.
9226 (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
9227 pseudo register numbers.
9228 * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
9229 (SPARC64_CP0_REGISTERS): New macro.
9230 (sparc64_pseudo_register_name): New function.
9231 (sparc64_register_name): Use sparc64_pseudo_register_name.
9232 (sparc64_pseudo_register_type): New function.
9233 (sparc64_register_type): Use sparc64_pseudo_register_type.
9234 (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
9235 pseudo register numbers.
9236 (sparc64_store_floating_fields, sparc64_extract_floating_fields,
9237 sparc64_store_arguments): Handle pseudo register numbers.
9238
9239 2017-01-13 Yao Qi <yao.qi@linaro.org>
9240
9241 * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
9242 (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
9243 output.
9244 (getpkt_or_notif_sane_1): Likewise.
9245
9246 2017-01-13 Yao Qi <yao.qi@linaro.org>
9247
9248 * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
9249 of CC. Pass "-x c++-header" instead of "-x c".
9250
9251 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
9252
9253 * remote.c (remote_can_async_p): Update comment.
9254
9255 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
9256
9257 * linux-nat.c (linux_nat_can_async_p): Update comment.
9258
9259 2017-01-12 Simon Marchi <simon.marchi@ericsson.com>
9260
9261 * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
9262
9263 2017-01-11 Simon Marchi <simon.marchi@ericsson.com>
9264
9265 * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
9266
9267 2017-01-10 Tom Tromey <tom@tromey.com>
9268
9269 * python/py-type.c (typy_legacy_template_argument): Update.
9270 * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
9271 ~demangle_parse_info): Declare new members.
9272 (cp_demangled_name_to_comp): Return unique_ptr.
9273 (cp_demangled_name_parse_free)
9274 (make_cleanup_cp_demangled_name_parse_free)
9275 (cp_new_demangle_parse_info): Remove.
9276 * cp-support.c (do_demangled_name_parse_free_cleanup)
9277 (make_cleanup_cp_demangled_name_parse_free): Remove.
9278 (inspect_type, cp_canonicalize_string_full)
9279 (cp_canonicalize_string): Update.
9280 (mangled_name_to_comp): Change return type.
9281 (cp_class_name_from_physname, method_name_from_physname)
9282 (cp_func_name, cp_remove_params): Update.
9283 * cp-name-parser.y (demangle_parse_info): New constructor, from
9284 cp_new_demangle_parse_info.
9285 (~demangle_parse_info): New destructor, from
9286 cp_demangled_name_parse_free.
9287 (cp_merge_demangle_parse_infos): Update.
9288 (cp_demangled_name_to_comp): Change return type.
9289
9290 2017-01-10 Tom Tromey <tom@tromey.com>
9291
9292 * top.c (prevent_dont_repeat): Change return type.
9293 * python/python.c (execute_gdb_command): Use std::string.
9294 Update.
9295 * guile/guile.c (gdbscm_execute_gdb_command): Update.
9296 * command.h (prevent_dont_repeat): Change return type.
9297 * breakpoint.c (bpstat_do_actions_1): Update.
9298
9299 2017-01-10 Tom Tromey <tom@tromey.com>
9300
9301 * value.h (scoped_value_mark::~scoped_value_mark): Call
9302 free_to_mark.
9303 (scoped_value_mark::free_to_mark): New method.
9304 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
9305 scoped_value_mark.
9306
9307 2017-01-10 Tom Tromey <tom@tromey.com>
9308
9309 * python/py-value.c (valpy_dereference, valpy_referenced_value)
9310 (valpy_reference_value, valpy_const_value, valpy_get_address)
9311 (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
9312 (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
9313 (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
9314 * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
9315 scoped_value_mark.
9316 * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
9317 * value.h (scoped_value_mark): New class.
9318
9319 2017-01-10 Tom Tromey <tom@tromey.com>
9320
9321 * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
9322 * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
9323 * psymtab.c (discard_psymtabs_upto): Remove.
9324 (make_cleanup_discard_psymtabs): Remove.
9325 (struct psymtab_state): Remove.
9326
9327 2017-01-10 Tom Tromey <tom@tromey.com>
9328
9329 * record-full.c (record_full_save_cleanups): Remove.
9330 (record_full_save): Use gdb::unlinker.
9331 * gcore.c (do_bfd_delete_cleanup): Remove.
9332 (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr. Remove
9333 cleanups.
9334 * dwarf2read.c (unlink_if_set): Remove.
9335 (write_psymtabs_to_index): Use gdb::unlinker.
9336 * common/gdb_unlinker.h: New file.
9337
9338 2017-01-10 Tom Tromey <tom@tromey.com>
9339
9340 * windows-tdep.c (windows_xfer_shared_library): Update.
9341 * windows-nat.c (windows_make_so): Update.
9342 * utils.h (make_cleanup_bfd_unref): Remove.
9343 * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
9344 * symfile.h (symfile_bfd_open)
9345 (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
9346 * symfile.c (read_symbols, symbol_file_add)
9347 (separate_debug_file_exists): Update.
9348 (symfile_bfd_open): Return gdb_bfd_ref_ptr.
9349 (generic_load, reread_symbols): Update.
9350 * symfile-mem.c (symbol_file_add_from_memory): Update.
9351 * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
9352 (spu_symbol_file_add_from_memory): Update.
9353 * solist.h (struct target_so_ops) <bfd_open>: Return
9354 gdb_bfd_ref_ptr.
9355 (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
9356 * solib.c (solib_bfd_fopen, solib_bfd_open): Return
9357 gdb_bfd_ref_ptr.
9358 (solib_map_sections, reload_shared_libraries_1): Update.
9359 * solib-svr4.c (enable_break): Update.
9360 * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
9361 * solib-frv.c (enable_break2): Update.
9362 * solib-dsbt.c (enable_break): Update.
9363 * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
9364 gdb_bfd_ref_ptr.
9365 (darwin_solib_get_all_image_info_addr_at_init): Update.
9366 (darwin_bfd_open): Return gdb_bfd_ref_ptr.
9367 * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
9368 * record-full.c (record_full_save): Update.
9369 * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
9370 * procfs.c (insert_dbx_link_bpt_in_file): Update.
9371 * minidebug.c (find_separate_debug_file_in_section): Return
9372 gdb_bfd_ref_ptr.
9373 * machoread.c (macho_add_oso_symfile): Change abfd to
9374 gdb_bfd_ref_ptr.
9375 (macho_symfile_read_all_oso): Update.
9376 (macho_check_dsym): Return gdb_bfd_ref_ptr.
9377 (macho_symfile_read): Update.
9378 * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
9379 (jit_bfd_try_read_symtab): Update.
9380 * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
9381 (gdb_bfd_openw, gdb_bfd_openr_iovec)
9382 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
9383 gdb_bfd_ref_ptr.
9384 (gdb_bfd_ref_policy): New struct.
9385 (gdb_bfd_ref_ptr): New typedef.
9386 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
9387 (gdb_bfd_openw, gdb_bfd_openr_iovec)
9388 (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
9389 gdb_bfd_ref_ptr.
9390 * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
9391 * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
9392 (gcore_command): Update.
9393 * exec.c (exec_file_attach): Update.
9394 * elfread.c (elf_symfile_read): Update.
9395 * dwarf2read.c (dwarf2_get_dwz_file): Update.
9396 (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
9397 (open_and_init_dwo_file): Update.
9398 (open_dwp_file): Return gdb_bfd_ref_ptr.
9399 (open_and_init_dwp_file): Update.
9400 * corelow.c (core_open): Update.
9401 * compile/compile-object-load.c (compile_object_load): Update.
9402 * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
9403 * coffread.c (coff_symfile_read): Update.
9404 * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
9405 gdb_bfd_ref_ptr. Rename.
9406 (dump_bfd_file, restore_command): Update.
9407 * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
9408 * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
9409 (find_separate_debug_file_by_buildid): Update.
9410
9411 2017-01-10 Tom Tromey <tom@tromey.com>
9412
9413 * common/gdb_ref_ptr.h: New file.
9414 * python/py-ref.h (struct gdbpy_ref_policy): New.
9415 (gdbpy_ref): Now a typedef.
9416
9417 2017-01-10 Tom Tromey <tom@tromey.com>
9418
9419 * utils.h (make_cleanup_htab_delete): Don't declare.
9420 * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
9421 Remove.
9422 * linespec.c (decode_compound_collector): Add constructor,
9423 destructor.
9424 (lookup_prefix_sym): Remove cleanup.
9425 (symtab_collector): Add constructor, destructor.
9426 (collect_symtabs_from_filename): Remove cleanup.
9427 * disasm.c (do_mixed_source_and_assembly): Use htab_up.
9428 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
9429 Use htab_up.
9430 * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
9431 * dwarf2read.c (dw2_expand_symtabs_matching)
9432 (dw2_map_symbol_filenames, dwarf_decode_macros)
9433 (write_psymtabs_to_index): Use htab_up.
9434 * dwarf2loc.c (func_verify_no_selftailcall)
9435 (call_site_find_chain_1, func_verify_no_selftailcall)
9436 (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
9437 std::vector, gdb::unique_xmalloc_ptr.
9438 (call_sitep): Remove typedef.
9439 (dwarf2_locexpr_baton_eval): Remove unused variable.
9440
9441 2017-01-10 Tom Tromey <tom@tromey.com>
9442
9443 * python/python-internal.h (make_cleanup_py_decref)
9444 (make_cleanup_py_xdecref): Don't declare.
9445 * python/py-utils.c (py_decref, make_cleanup_py_decref)
9446 (py_xdecref, make_cleanup_py_xdecref): Remove.
9447
9448 2017-01-10 Tom Tromey <tom@tromey.com>
9449
9450 * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
9451 (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
9452
9453 2017-01-10 Tom Tromey <tom@tromey.com>
9454
9455 * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
9456
9457 2017-01-10 Tom Tromey <tom@tromey.com>
9458
9459 * python/py-utils.c (unicode_to_encoded_string)
9460 (python_string_to_target_string)
9461 (python_string_to_target_python_string)
9462 (python_string_to_host_string, gdbpy_obj_to_string)
9463 (get_addr_from_python): Use gdbpy_ref.
9464
9465 2017-01-10 Tom Tromey <tom@tromey.com>
9466
9467 * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
9468 gdbpy_ref.
9469
9470 2017-01-10 Tom Tromey <tom@tromey.com>
9471
9472 * python/python.c (eval_python_command, gdbpy_decode_line)
9473 (gdbpy_run_events, gdbpy_start_type_printers)
9474 (gdbpy_apply_type_printers): Use gdbpy_ref.
9475
9476 2017-01-10 Tom Tromey <tom@tromey.com>
9477
9478 * python/py-param.c (get_doc_string, compute_enum_values): Use
9479 gdbpy_ref.
9480
9481 2017-01-10 Tom Tromey <tom@tromey.com>
9482
9483 * python/py-inferior.c (find_thread_object, build_inferior_list):
9484 Use gdbpy_ref.
9485
9486 2017-01-10 Tom Tromey <tom@tromey.com>
9487
9488 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
9489
9490 2017-01-10 Tom Tromey <tom@tromey.com>
9491
9492 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
9493 gdbpy_ref.
9494
9495 2017-01-10 Tom Tromey <tom@tromey.com>
9496
9497 * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref. Remove
9498 extra incref.
9499 (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
9500 Use gdbpy_ref.
9501
9502 2017-01-10 Tom Tromey <tom@tromey.com>
9503
9504 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
9505 gdbpy_ref.
9506
9507 2017-01-10 Tom Tromey <tom@tromey.com>
9508
9509 * python/py-arch.c (archpy_disassemble): Use gdbpy_ref. Don't
9510 decref results of PyArg_ParseTupleAndKeywords.
9511
9512 2017-01-10 Tom Tromey <tom@tromey.com>
9513
9514 * python/python.c (python_run_simple_file): Use
9515 unique_xmalloc_ptr, gdbpy_ref.
9516
9517 2017-01-10 Tom Tromey <tom@tromey.com>
9518
9519 * python/py-prettyprint.c (print_stack_unless_memory_error)
9520 (print_string_repr, print_children): Use gdbpy_ref.
9521 (dummy_python_frame): New class.
9522 (dummy_python_frame::dummy_python_frame): Rename from
9523 push_dummy_python_frame.
9524 (py_restore_tstate): Remove.
9525
9526 2017-01-10 Tom Tromey <tom@tromey.com>
9527
9528 * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
9529
9530 2017-01-10 Tom Tromey <tom@tromey.com>
9531
9532 * python/python.c (ensure_python_env, restore_python_env):
9533 Remove.
9534 * python/python-internal.h (ensure_python_env): Don't declare.
9535 * varobj.h (varobj_ensure_python_env): Don't declare.
9536 * varobj.c (varobj_ensure_python_env): Remove.
9537
9538 2017-01-10 Tom Tromey <tom@tromey.com>
9539
9540 * varobj.c (varobj_value_get_print_value): Use
9541 gdbpy_enter_varobj.
9542
9543 2017-01-10 Tom Tromey <tom@tromey.com>
9544
9545 * python/py-prettyprint.c (print_string_repr, print_children):
9546 Update.
9547 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
9548 of "encoding".
9549 * varobj.c (varobj_value_get_print_value): Update.
9550 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
9551
9552 2017-01-10 Tom Tromey <tom@tromey.com>
9553
9554 * varobj.c (varobj_get_display_hint)
9555 (dynamic_varobj_has_child_method, install_new_value_visualizer)
9556 (varobj_set_visualizer, free_variable): Use
9557 gdbpy_enter_varobj.
9558
9559 2017-01-10 Tom Tromey <tom@tromey.com>
9560
9561 * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
9562 (do_finish_initialization): New function. Use gdbpy_ref.
9563 (gdbpy_finish_initialization): Use gdbpy_enter. Call
9564 do_finish_initialization.
9565
9566 2017-01-10 Tom Tromey <tom@tromey.com>
9567
9568 * python/py-param.c (get_set_value, get_show_value): Use
9569 gdbpy_enter, gdbpy_ref.
9570
9571 2017-01-10 Tom Tromey <tom@tromey.com>
9572
9573 * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
9574
9575 2017-01-10 Tom Tromey <tom@tromey.com>
9576
9577 * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
9578
9579 2017-01-10 Tom Tromey <tom@tromey.com>
9580
9581 * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
9582 Use gdbpy_enter_varobj.
9583
9584 2017-01-10 Tom Tromey <tom@tromey.com>
9585
9586 * varobj.c (gdbpy_enter_varobj): New constructor.
9587 * python/python-internal.h (gdbpy_enter_varobj): New class.
9588 * python/py-varobj.c (py_varobj_get_iterator): Use
9589 gdbpy_enter_varobj.
9590
9591 2017-01-10 Tom Tromey <tom@tromey.com>
9592
9593 * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
9594 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
9595 (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
9596 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
9597 unique_xmalloc_ptr.
9598 (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
9599
9600 2017-01-10 Tom Tromey <tom@tromey.com>
9601
9602 * python/py-xmethods.c (invoke_match_method): Use
9603 gdbpy_ref.
9604
9605 2017-01-10 Tom Tromey <tom@tromey.com>
9606
9607 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
9608 gdbpy_enter, gdbpy_ref.
9609
9610 2017-01-10 Tom Tromey <tom@tromey.com>
9611
9612 * python/python.c (python_interactive_command): Use gdbpy_enter.
9613
9614 2017-01-10 Tom Tromey <tom@tromey.com>
9615
9616 * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
9617 gdbpy_ref.
9618
9619 2017-01-10 Tom Tromey <tom@tromey.com>
9620
9621 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
9622 gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
9623
9624 2017-01-10 Tom Tromey <tom@tromey.com>
9625
9626 * utils.h (htab_deleter): New struct.
9627 (htab_up): New typedef.
9628 * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
9629 gdbpy_enter, gdbpy_ref, htab_up.
9630
9631 2017-01-10 Tom Tromey <tom@tromey.com>
9632
9633 * python/py-unwind.c (pending_frame_invalidate): Remove.
9634 (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
9635
9636 2017-01-10 Tom Tromey <tom@tromey.com>
9637
9638 * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
9639 (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
9640
9641 2017-01-10 Tom Tromey <tom@tromey.com>
9642
9643 * python/py-type.c (save_objfile_types): Use gdbpy_enter.
9644
9645 2017-01-10 Tom Tromey <tom@tromey.com>
9646
9647 * python/python.c (gdbpy_eval_from_control_command)
9648 (gdbpy_source_script, gdbpy_run_events)
9649 (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
9650 (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
9651 gdbpy_enter.
9652
9653 2017-01-10 Tom Tromey <tom@tromey.com>
9654
9655 * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
9656
9657 2017-01-10 Tom Tromey <tom@tromey.com>
9658
9659 * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
9660
9661 2017-01-10 Tom Tromey <tom@tromey.com>
9662
9663 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
9664 (python_on_inferior_call_pre, python_on_inferior_call_post)
9665 (python_on_memory_change, python_on_register_change)
9666 (python_inferior_exit, python_new_objfile, add_thread_object)
9667 (delete_thread_object, py_free_inferior): Use gdbpy_enter.
9668
9669 2017-01-10 Tom Tromey <tom@tromey.com>
9670
9671 * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
9672 (bpfinishpy_handle_exit): Use gdbpy_enter.
9673
9674 2017-01-10 Tom Tromey <tom@tromey.com>
9675
9676 * python/py-cmd.c (cmdpy_destroyer)
9677 (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
9678 gdbpy_enter.
9679
9680 2017-01-10 Tom Tromey <tom@tromey.com>
9681
9682 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
9683 gdbpy_enter.
9684 (gdbpy_breakpoint_has_cond): Likewise.
9685
9686 2017-01-10 Tom Tromey <tom@tromey.com>
9687
9688 * python/python.c (gdbpy_enter): New constructor.
9689 (~gdbpy_enter): New destructor.
9690 (restore_python_env, ensure_python_env): Rewrite.
9691 * python/python-internal.h (gdbpy_enter): New class.
9692
9693 2017-01-10 Tom Tromey <tom@tromey.com>
9694
9695 * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
9696
9697 2017-01-10 Tom Tromey <tom@tromey.com>
9698
9699 * python/py-value.c (value_has_field, get_field_flag)
9700 (get_field_type, valpy_getitem, convert_value_from_python): Use
9701 gdbpy_ref.
9702
9703 2017-01-10 Tom Tromey <tom@tromey.com>
9704
9705 * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
9706 gdbpy_ref.
9707
9708 2017-01-10 Tom Tromey <tom@tromey.com>
9709
9710 * python/py-prettyprint.c (search_pp_list)
9711 (find_pretty_printer_from_objfiles)
9712 (find_pretty_printer_from_progspace)
9713 (find_pretty_printer_from_gdb, find_pretty_printer)
9714 (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
9715 gdbpy_ref.
9716
9717 2017-01-10 Tom Tromey <tom@tromey.com>
9718
9719 * python/py-param.c (call_doc_function): Use gdbpy_ref.
9720
9721 2017-01-10 Tom Tromey <tom@tromey.com>
9722
9723 * python/py-linetable.c (build_line_table_tuple_from_pcs)
9724 (ltpy_get_all_source_lines): Use gdbpy_ref.
9725
9726 2017-01-10 Tom Tromey <tom@tromey.com>
9727
9728 * python/py-framefilter.c (extract_sym, extract_value)
9729 (get_py_iter_from_func, bootstrap_python_frame_filters): Use
9730 gdbpy_ref.
9731
9732 2017-01-10 Tom Tromey <tom@tromey.com>
9733
9734 * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
9735
9736 2017-01-10 Tom Tromey <tom@tromey.com>
9737
9738 * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
9739
9740 2017-01-10 Tom Tromey <tom@tromey.com>
9741
9742 * python/py-function.c (convert_values_to_python, fnpy_init): Use
9743 gdbpy_ref.
9744
9745 2017-01-10 Tom Tromey <tom@tromey.com>
9746
9747 * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
9748
9749 2017-01-10 Tom Tromey <tom@tromey.com>
9750
9751 * python/py-type.c (convert_field, make_fielditem, typy_fields)
9752 (typy_range): Use gdbpy_ref.
9753
9754 2017-01-10 Tom Tromey <tom@tromey.com>
9755
9756 * python/py-threadevent.c (create_thread_event_object): Use
9757 gdbpy_ref.
9758 * python/py-stopevent.c (create_stop_event_object): Simplify.
9759 (emit_stop_event): Use gdbpy_ref.
9760 * python/py-signalevent.c (create_signal_event_object): Use
9761 gdbpy_ref.
9762 * python/py-newobjfileevent.c (create_new_objfile_event_object)
9763 (emit_new_objfile_event, create_clear_objfiles_event_object)
9764 (emit_clear_objfiles_event): Use gdbpy_ref.
9765 * python/py-infevents.c (create_inferior_call_event_object)
9766 (create_register_changed_event_object)
9767 (create_memory_changed_event_object, emit_inferior_call_event)
9768 (emit_memory_changed_event, emit_register_changed_event): Use
9769 gdbpy_ref.
9770 * python/py-exitedevent.c (create_exited_event_object)
9771 (emit_exited_event): Use gdbpy_ref.
9772 * python/py-event.h (evpy_emit_event): Remove
9773 CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
9774 * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
9775 * python/py-continueevent.c (emit_continue_event): Use
9776 gdbpy_ref.
9777 * python/py-breakpoint.c (gdbpy_breakpoint_created)
9778 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
9779 gdbpy_ref.
9780 * python/py-bpevent.c (create_breakpoint_event_object): Use
9781 gdbpy_ref.
9782
9783 2017-01-10 Tom Tromey <tom@tromey.com>
9784
9785 * python/py-ref.h: New file.
9786
9787 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
9788
9789 * cli-out.c (cli_ui_out::do_redirect): Change return type to
9790 void.
9791 * cli-out.h (cli_ui_out::do_redirect): Likewise.
9792 * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
9793 * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
9794 * ui-out.c (ui_out::redirect): Likewise.
9795 * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
9796 * cli/cli-logging.c (set_logging_redirect): Update call site of
9797 ui_out::redirect.
9798 (handle_redirections): Likewise.
9799 * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
9800 * top.c (execute_command_to_string): Likewise.
9801 * utils.c (do_ui_out_redirect_pop): Likewise.
9802
9803 2017-01-10 Simon Marchi <simon.marchi@ericsson.com>
9804
9805 * stack.c (_initialize_stack): Update "frame" command help message.
9806
9807 2017-01-08 Iain Buclaw <ibuclaw@gdcproject.org>
9808
9809 * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
9810
9811 2017-01-06 Yao Qi <yao.qi@linaro.org>
9812
9813 * x86-linux-nat.h: Include gdb_proc_service.h.
9814
9815 2017-01-06 Yao Qi <yao.qi@linaro.org>
9816
9817 * ser-base.h: Include serial.h.
9818
9819 2017-01-06 Yao Qi <yao.qi@linaro.org>
9820
9821 * ppc-linux-tdep.h: Include ppc-tdep.h.
9822
9823 2017-01-06 Yao Qi <yao.qi@linaro.org>
9824
9825 * nat/amd64-linux-siginfo.h: Include signal.h.
9826
9827 2017-01-06 Yao Qi <yao.qi@linaro.org>
9828
9829 * nat/aarch64-linux-hw-point.h: Include break-common.h.
9830
9831 2017-01-06 Yao Qi <yao.qi@linaro.org>
9832
9833 * mi/mi-parse.h: Include mi-cmds.h.
9834
9835 2017-01-06 Yao Qi <yao.qi@linaro.org>
9836
9837 * inf-loop.c: Don't include "target.h".
9838 * inf-loop.h: Include it here.
9839
9840 2017-01-06 Yao Qi <yao.qi@linaro.org>
9841
9842 * dfp.h: Include "dboulest.h" and "expression.h".
9843
9844 2017-01-06 Yao Qi <yao.qi@linaro.org>
9845
9846 * ax-gdb.h: Include "ax.h".
9847
9848 2017-01-06 Yao Qi <yao.qi@linaro.org>
9849
9850 * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
9851 with nat/gdb_ptrace.h.
9852
9853 2017-01-05 Yao Qi <yao.qi@linaro.org>
9854
9855 * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
9856 new line.
9857 (mips64_fbsd_sigframe_init): Likewise.
9858
9859 2017-01-04 John Baldwin <jhb@FreeBSD.org>
9860
9861 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
9862 GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
9863
9864 2017-01-04 John Baldwin <jhb@FreeBSD.org>
9865
9866 * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
9867 * NEWS: Mention new FreeBSD/mips native configuration.
9868 * config/mips/fbsd.mh: New file.
9869 * configure.host: Add mips*-*-freebsd*.
9870 * mips-fbsd-nat.c: New file.
9871
9872 2017-01-04 John Baldwin <jhb@FreeBSD.org>
9873
9874 * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
9875 (ALLDEPFILES): Add mips-fbsd-tdep.c.
9876 * NEWS: Mention new FreeBSD/mips target.
9877 * configure.tgt: Add mips*-*-freebsd*.
9878 * mips-fbsd-tdep.c: New file.
9879 * mips-fbsd-tdep.h: New file.
9880
9881 2017-01-04 Yao Qi <yao.qi@linaro.org>
9882
9883 * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
9884 use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
9885
9886 2017-01-01 Joel Brobecker <brobecker@adacore.com>
9887
9888 Update copyright year range in all GDB files.
9889
9890 2017-01-01 Joel Brobecker <brobecker@adacore.com>
9891
9892 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
9893
9894 For older changes see ChangeLog-2016.
9895 \f
9896 Local Variables:
9897 mode: change-log
9898 left-margin: 8
9899 fill-column: 74
9900 version-control: never
9901 coding: utf-8
9902 End: