diff options
Diffstat (limited to 'gdb/arch')
-rw-r--r-- | gdb/arch/aarch32.c | 2 | ||||
-rw-r--r-- | gdb/arch/aarch64.c | 2 | ||||
-rw-r--r-- | gdb/arch/amd64.c | 2 | ||||
-rw-r--r-- | gdb/arch/arc.c | 2 | ||||
-rw-r--r-- | gdb/arch/arm.c | 4 | ||||
-rw-r--r-- | gdb/arch/i386.c | 2 | ||||
-rw-r--r-- | gdb/arch/riscv.c | 27 | ||||
-rw-r--r-- | gdb/arch/tic6x.c | 2 |
8 files changed, 22 insertions, 21 deletions
diff --git a/gdb/arch/aarch32.c b/gdb/arch/aarch32.c index 5bc24a3..bf7a332 100644 --- a/gdb/arch/aarch32.c +++ b/gdb/arch/aarch32.c @@ -26,7 +26,7 @@ target_desc * aarch32_create_target_description () { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT set_tdesc_architecture (tdesc, "arm"); diff --git a/gdb/arch/aarch64.c b/gdb/arch/aarch64.c index f611543..c0af7b0 100644 --- a/gdb/arch/aarch64.c +++ b/gdb/arch/aarch64.c @@ -29,7 +29,7 @@ target_desc * aarch64_create_target_description (uint64_t vq, bool pauth_p) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT set_tdesc_architecture (tdesc, "aarch64"); diff --git a/gdb/arch/amd64.c b/gdb/arch/amd64.c index a388c7e..b11a4fd 100644 --- a/gdb/arch/amd64.c +++ b/gdb/arch/amd64.c @@ -40,7 +40,7 @@ target_desc * amd64_create_target_description (uint64_t xcr0, bool is_x32, bool is_linux, bool segments) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT set_tdesc_architecture (tdesc, is_x32 ? "i386:x64-32" : "i386:x86-64"); diff --git a/gdb/arch/arc.c b/gdb/arch/arc.c index 3808f9f..dff4575 100644 --- a/gdb/arch/arc.c +++ b/gdb/arch/arc.c @@ -38,7 +38,7 @@ STATIC_IN_GDB target_desc * arc_create_target_description (const struct arc_arch_features &features) { /* Create a new target description. */ - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT std::string arch_name; diff --git a/gdb/arch/arm.c b/gdb/arch/arm.c index faa2b4f..dc67e40 100644 --- a/gdb/arch/arm.c +++ b/gdb/arch/arm.c @@ -374,7 +374,7 @@ shifted_reg_val (struct regcache *regcache, unsigned long inst, target_desc * arm_create_target_description (arm_fp_type fp_type) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT if (fp_type == ARM_FP_TYPE_IWMMXT) @@ -416,7 +416,7 @@ arm_create_target_description (arm_fp_type fp_type) target_desc * arm_create_mprofile_target_description (arm_m_profile_type m_type) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT set_tdesc_architecture (tdesc, "arm"); diff --git a/gdb/arch/i386.c b/gdb/arch/i386.c index 099a20b..13201db 100644 --- a/gdb/arch/i386.c +++ b/gdb/arch/i386.c @@ -35,7 +35,7 @@ target_desc * i386_create_target_description (uint64_t xcr0, bool is_linux, bool segments) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); #ifndef IN_PROCESS_AGENT set_tdesc_architecture (tdesc, "i386"); diff --git a/gdb/arch/riscv.c b/gdb/arch/riscv.c index 8f57090..a6538de 100644 --- a/gdb/arch/riscv.c +++ b/gdb/arch/riscv.c @@ -33,11 +33,11 @@ /* See arch/riscv.h. */ -STATIC_IN_GDB target_desc * +STATIC_IN_GDB target_desc_up riscv_create_target_description (const struct riscv_gdbarch_features features) { /* Now we should create a new target description. */ - target_desc *tdesc = allocate_target_description (); + target_desc_up tdesc = allocate_target_description (); #ifndef IN_PROCESS_AGENT std::string arch_name = "riscv"; @@ -56,22 +56,22 @@ riscv_create_target_description (const struct riscv_gdbarch_features features) else if (features.flen == 16) arch_name.append ("q"); - set_tdesc_architecture (tdesc, arch_name.c_str ()); + set_tdesc_architecture (tdesc.get (), arch_name.c_str ()); #endif long regnum = 0; /* For now we only support creating 32-bit or 64-bit x-registers. */ if (features.xlen == 4) - regnum = create_feature_riscv_32bit_cpu (tdesc, regnum); + regnum = create_feature_riscv_32bit_cpu (tdesc.get (), regnum); else if (features.xlen == 8) - regnum = create_feature_riscv_64bit_cpu (tdesc, regnum); + regnum = create_feature_riscv_64bit_cpu (tdesc.get (), regnum); /* For now we only support creating 32-bit or 64-bit f-registers. */ if (features.flen == 4) - regnum = create_feature_riscv_32bit_fpu (tdesc, regnum); + regnum = create_feature_riscv_32bit_fpu (tdesc.get (), regnum); else if (features.flen == 8) - regnum = create_feature_riscv_64bit_fpu (tdesc, regnum); + regnum = create_feature_riscv_64bit_fpu (tdesc.get (), regnum); return tdesc; } @@ -106,13 +106,14 @@ riscv_lookup_target_description (const struct riscv_gdbarch_features features) if (it != riscv_tdesc_cache.end ()) return it->second.get (); - target_desc *tdesc = riscv_create_target_description (features); + target_desc_up tdesc (riscv_create_target_description (features)); - /* Add to the cache. Work around a problem with g++ 4.8 (PR96537): - Call the target_desc_up constructor explictly instead of implicitly. */ - riscv_tdesc_cache.emplace (features, target_desc_up (tdesc)); - - return tdesc; + /* Add to the cache, and return a pointer borrowed from the + target_desc_up. This is safe as the cache (and the pointers + contained within it) are not deleted until GDB exits. */ + target_desc *ptr = tdesc.get (); + riscv_tdesc_cache.emplace (features, std::move (tdesc)); + return ptr; } #endif /* !GDBSERVER */ diff --git a/gdb/arch/tic6x.c b/gdb/arch/tic6x.c index 5f14d34..dad4dd8 100644 --- a/gdb/arch/tic6x.c +++ b/gdb/arch/tic6x.c @@ -28,7 +28,7 @@ target_desc * tic6x_create_target_description (enum c6x_feature feature) { - target_desc *tdesc = allocate_target_description (); + target_desc *tdesc = allocate_target_description ().release (); set_tdesc_architecture (tdesc, "tic6x"); set_tdesc_osabi (tdesc, "GNU/Linux"); |