binutils-gdb/gdb/features
Andrew Burgess 51a948fdf0 gdb: Have allocate_target_description return a unique_ptr
Update allocate_target_description to return a target_desc_up, a
specialisation of unique_ptr.

This commit does not attempt to make use of the unique_ptr in the
best possible way, in almost all cases we immediately release the
pointer from within the unique_ptr and then continue as before.

There are a few places where it was easy to handle the unique_ptr, and
in these cases I've done that.

Everything under gdb/features/* is auto-regenerated.

There should be no user visible changes after this commit.

gdb/ChangeLog:

	* arch/aarch32.c (aarch32_create_target_description): Release
	unique_ptr returned from allocate_target_description.
	* arch/aarch64.c (aarch64_create_target_description): Likewise.
	* arch/amd64.c (amd64_create_target_description): Likewise.
	* arch/arc.c (arc_create_target_description): Likewise.
	* arch/arm.c (arm_create_target_description): Likewise.
	* arch/i386.c (i386_create_target_description): Likewise.
	* arch/riscv.c (riscv_create_target_description): Update return
	type.  Handle allocate_target_description returning a unique_ptr.
	(riscv_lookup_target_description): Update to handle unique_ptr.
	* arch/tic6x.c (tic6x_create_target_description): Release
	unique_ptr returned from allocate_target_description.
	* features/microblaze-with-stack-protect.c: Regenerate.
	* features/microblaze.c: Regenerate.
	* features/mips-dsp-linux.c: Regenerate.
	* features/mips-linux.c: Regenerate.
	* features/mips64-dsp-linux.c: Regenerate.
	* features/mips64-linux.c: Regenerate.
	* features/nds32.c: Regenerate.
	* features/nios2.c: Regenerate.
	* features/or1k.c: Regenerate.
	* features/rs6000/powerpc-32.c: Regenerate.
	* features/rs6000/powerpc-32l.c: Regenerate.
	* features/rs6000/powerpc-403.c: Regenerate.
	* features/rs6000/powerpc-403gc.c: Regenerate.
	* features/rs6000/powerpc-405.c: Regenerate.
	* features/rs6000/powerpc-505.c: Regenerate.
	* features/rs6000/powerpc-601.c: Regenerate.
	* features/rs6000/powerpc-602.c: Regenerate.
	* features/rs6000/powerpc-603.c: Regenerate.
	* features/rs6000/powerpc-604.c: Regenerate.
	* features/rs6000/powerpc-64.c: Regenerate.
	* features/rs6000/powerpc-64l.c: Regenerate.
	* features/rs6000/powerpc-7400.c: Regenerate.
	* features/rs6000/powerpc-750.c: Regenerate.
	* features/rs6000/powerpc-860.c: Regenerate.
	* features/rs6000/powerpc-altivec32.c: Regenerate.
	* features/rs6000/powerpc-altivec32l.c: Regenerate.
	* features/rs6000/powerpc-altivec64.c: Regenerate.
	* features/rs6000/powerpc-altivec64l.c: Regenerate.
	* features/rs6000/powerpc-e500.c: Regenerate.
	* features/rs6000/powerpc-e500l.c: Regenerate.
	* features/rs6000/powerpc-isa205-32l.c: Regenerate.
	* features/rs6000/powerpc-isa205-64l.c: Regenerate.
	* features/rs6000/powerpc-isa205-altivec32l.c: Regenerate.
	* features/rs6000/powerpc-isa205-altivec64l.c: Regenerate.
	* features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c: Regenerate.
	* features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c: Regenerate.
	* features/rs6000/powerpc-isa205-vsx32l.c: Regenerate.
	* features/rs6000/powerpc-isa205-vsx64l.c: Regenerate.
	* features/rs6000/powerpc-isa207-htm-vsx32l.c: Regenerate.
	* features/rs6000/powerpc-isa207-htm-vsx64l.c: Regenerate.
	* features/rs6000/powerpc-isa207-vsx32l.c: Regenerate.
	* features/rs6000/powerpc-isa207-vsx64l.c: Regenerate.
	* features/rs6000/powerpc-vsx32.c: Regenerate.
	* features/rs6000/powerpc-vsx32l.c: Regenerate.
	* features/rs6000/powerpc-vsx64.c: Regenerate.
	* features/rs6000/powerpc-vsx64l.c: Regenerate.
	* features/rs6000/rs6000.c: Regenerate.
	* features/rx.c: Regenerate.
	* features/s390-gs-linux64.c: Regenerate.
	* features/s390-linux32.c: Regenerate.
	* features/s390-linux32v1.c: Regenerate.
	* features/s390-linux32v2.c: Regenerate.
	* features/s390-linux64.c: Regenerate.
	* features/s390-linux64v1.c: Regenerate.
	* features/s390-linux64v2.c: Regenerate.
	* features/s390-te-linux64.c: Regenerate.
	* features/s390-tevx-linux64.c: Regenerate.
	* features/s390-vx-linux64.c: Regenerate.
	* features/s390x-gs-linux64.c: Regenerate.
	* features/s390x-linux64.c: Regenerate.
	* features/s390x-linux64v1.c: Regenerate.
	* features/s390x-linux64v2.c: Regenerate.
	* features/s390x-te-linux64.c: Regenerate.
	* features/s390x-tevx-linux64.c: Regenerate.
	* features/s390x-vx-linux64.c: Regenerate.
	* mips-tdep.c (_initialize_mips_tdep): Release unique_ptr returned
	from allocate_target_description.
	* target-descriptions.c (allocate_target_description): Update
	return type.
	(print_c_tdesc::visit_pre): Release unique_ptr returned from
	allocate_target_description.

gdbserver/ChangeLog:

	* linux-low.cc (linux_process_target::handle_extended_wait):
	Release the unique_ptr returned from allocate_target_description.
	* linux-riscv-low.cc (riscv_target::low_arch_setup): Likewise.
	* linux-x86-low.cc (tdesc_amd64_linux_no_xml): Change type.
	(tdesc_i386_linux_no_xml): Change type.
	(x86_linux_read_description): Borrow pointer from unique_ptr
	object.
	(x86_target::get_ipa_tdesc_idx): Likewise.
	(initialize_low_arch): Likewise.
	* tdesc.cc (allocate_target_description): Update return type.

gdbsupport/ChangeLog:

	* tdesc.h (allocate_target_description): Update return type.
2020-10-08 10:14:14 +01:00
..
arc arc: Add ARCv2 XML target along with refactoring 2020-08-25 17:31:26 +02:00
arm Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
i386 Add bfloat16 support for AVX512 register view. 2020-09-11 11:42:47 -07:00
riscv gdb/riscv: Remove CSR feature file 2020-06-25 18:07:30 +01:00
rs6000 gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
sparc Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
aarch64-core.c Rename common to gdbsupport 2019-07-09 07:45:38 -06:00
aarch64-core.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
aarch64-fpu.c Rename common to gdbsupport 2019-07-09 07:45:38 -06:00
aarch64-fpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
aarch64-pauth.c Regenerate aarch64-pauth.c 2019-07-10 11:47:13 +01:00
aarch64-pauth.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
aarch64-sve.c Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
btrace-conf.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
btrace.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
feature_to_c.sh Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
gdb-target.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
gdbserver-regs.xsl
library-list-aix.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
library-list-svr4.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
library-list.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
m68k-core.xml
Makefile arc: Add ARCv2 XML target along with refactoring 2020-08-25 17:31:26 +02:00
microblaze-core.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
microblaze-stack-protect.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
microblaze-with-stack-protect.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
microblaze-with-stack-protect.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
microblaze.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
microblaze.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-cp0.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-cpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-dsp-linux.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
mips64-dsp-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-dsp.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-fpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips64-linux.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
mips64-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-cp0.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-cpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-dsp-linux.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
mips-dsp-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-dsp.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-fpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
mips-linux.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
mips-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nds32-core.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nds32-fpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nds32-system.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nds32.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
nds32.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nios2-cpu.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nios2-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
nios2.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
nios2.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
number-regs.xsl
or1k-core.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
or1k.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
or1k.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
osdata.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
rx.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
rx.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-acr.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-core32.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-core64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-fpr.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-gs-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-gs-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-gs.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-gsbc.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux32.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux32.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux32v1.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux32v1.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux32v2.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux32v2.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux64v1.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux64v1.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-linux64v2.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-linux64v2.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-tdb.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-te-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-te-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-tevx-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-tevx-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-vx-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390-vx-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390-vx.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-core64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-gs-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-gs-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-linux64v1.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-linux64v1.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-linux64v2.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-linux64v2.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-te-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-te-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-tevx-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-tevx-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
s390x-vx-linux64.c gdb: Have allocate_target_description return a unique_ptr 2020-10-08 10:14:14 +01:00
s390x-vx-linux64.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
sort-regs.xsl
threads.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-c6xp.c Rename common to gdbsupport 2019-07-09 07:45:38 -06:00
tic6x-c6xp.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-c62x-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-c64x-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-c64xp-linux.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-core.c Rename common to gdbsupport 2019-07-09 07:45:38 -06:00
tic6x-core.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
tic6x-gp.c Rename common to gdbsupport 2019-07-09 07:45:38 -06:00
tic6x-gp.xml Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
traceframe-info.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00
xinclude.dtd Update copyright year range in all GDB files. 2020-01-01 10:20:53 +04:00