Move arch/tdesc.h to common/tdesc.h

gdb/
	* arch/amd64.h: Use common/tdesc.h.
	* arch/i386.c: Likewise.
	* arch/i386.h: Likewise.
	* arch/tic6x.c: Likewise.
	* arch/tdesc.h: Move file from here...
	* common/tdesc.h: ...to here.
	* features/aarch64-core.c: Regenerate.
	* features/aarch64-fpu.c: Regenerate.
	* features/i386/32bit-avx.c: Regenerate.
	* features/i386/32bit-avx512.c: Regenerate.
	* features/i386/32bit-core.c: Regenerate.
	* features/i386/32bit-linux.c: Regenerate.
	* features/i386/32bit-mpx.c: Regenerate.
	* features/i386/32bit-pkeys.c: Regenerate.
	* features/i386/32bit-sse.c: Regenerate.
	* features/i386/64bit-avx.c: Regenerate.
	* features/i386/64bit-avx512.c: Regenerate.
	* features/i386/64bit-core.c: Regenerate.
	* features/i386/64bit-linux.c: Regenerate.
	* features/i386/64bit-mpx.c: Regenerate.
	* features/i386/64bit-pkeys.c: Regenerate.
	* features/i386/64bit-segments.c: Regenerate.
	* features/i386/64bit-sse.c: Regenerate.
	* features/i386/x32-core.c: Regenerate.
	* features/tic6x-c6xp.c: Regenerate.
	* features/tic6x-core.c: Regenerate.
	* features/tic6x-gp.c: Regenerate.
	* target-descriptions.c: Use common/tdesc.h.
	* target-descriptions.h: Likewise.

gdbserver/
	* tdesc.c: Use common/tdesc.h.
	* tdesc.h: Likewise.
This commit is contained in:
Alan Hayward
2018-02-26 10:51:36 +00:00
parent 46c685acda
commit f46cd62a69
32 changed files with 90 additions and 53 deletions

View File

@ -1,3 +1,35 @@
2018-02-26 Alan Hayward <alan.hayward@arm.com>
* arch/amd64.h: Use common/tdesc.h.
* arch/i386.c: Likewise.
* arch/i386.h: Likewise.
* arch/tic6x.c: Likewise.
* arch/tdesc.h: Move file from here...
* common/tdesc.h: ...to here.
* features/aarch64-core.c: Regenerate.
* features/aarch64-fpu.c: Regenerate.
* features/i386/32bit-avx.c: Regenerate.
* features/i386/32bit-avx512.c: Regenerate.
* features/i386/32bit-core.c: Regenerate.
* features/i386/32bit-linux.c: Regenerate.
* features/i386/32bit-mpx.c: Regenerate.
* features/i386/32bit-pkeys.c: Regenerate.
* features/i386/32bit-sse.c: Regenerate.
* features/i386/64bit-avx.c: Regenerate.
* features/i386/64bit-avx512.c: Regenerate.
* features/i386/64bit-core.c: Regenerate.
* features/i386/64bit-linux.c: Regenerate.
* features/i386/64bit-mpx.c: Regenerate.
* features/i386/64bit-pkeys.c: Regenerate.
* features/i386/64bit-segments.c: Regenerate.
* features/i386/64bit-sse.c: Regenerate.
* features/i386/x32-core.c: Regenerate.
* features/tic6x-c6xp.c: Regenerate.
* features/tic6x-core.c: Regenerate.
* features/tic6x-gp.c: Regenerate.
* target-descriptions.c: Use common/tdesc.h.
* target-descriptions.h: Likewise.
2018-02-24 Tom Tromey <tom@tromey.com>
* linux-thread-db.c (try_thread_db_load_from_pdir_1)

View File

@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "tdesc.h"
#include "common/tdesc.h"
#include <stdint.h>
target_desc *amd64_create_target_description (uint64_t xcr0, bool is_x32,

View File

@ -17,7 +17,7 @@
#include "common-defs.h"
#include "i386.h"
#include "tdesc.h"
#include "common/tdesc.h"
#include "x86-xstate.h"
#include <stdlib.h>

View File

@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "tdesc.h"
#include "common/tdesc.h"
#include <stdint.h>
target_desc *i386_create_target_description (uint64_t xcr0, bool is_linux);

View File

@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "tdesc.h"
#include "common/tdesc.h"
#include "tic6x.h"
#include "common/common-defs.h"

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: aarch64-core.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_aarch64_core (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: aarch64-fpu.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_aarch64_fpu (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-avx.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_avx (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-avx512.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_avx512 (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-core.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_core (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-linux.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_linux (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-mpx.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_mpx (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-pkeys.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_pkeys (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 32bit-sse.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_32bit_sse (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-avx.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_avx (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-avx512.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_avx512 (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-core.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_core (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-linux.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_linux (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-mpx.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_mpx (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-pkeys.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_pkeys (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-segments.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_segments (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: 64bit-sse.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_64bit_sse (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: x32-core.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_i386_x32_core (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: tic6x-c6xp.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_tic6x_c6xp (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: tic6x-core.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_tic6x_core (struct target_desc *result, long regnum)

View File

@ -1,7 +1,7 @@
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
Original: tic6x-gp.xml */
#include "arch/tdesc.h"
#include "common/tdesc.h"
static int
create_feature_tic6x_gp (struct target_desc *result, long regnum)

View File

@ -1,3 +1,8 @@
2018-02-26 Alan Hayward <alan.hayward@arm.com>
* tdesc.c: Use common/tdesc.h.
* tdesc.h: Likewise.
2018-02-20 Alan Hayward <alan.hayward@arm.com>
Simon Marchi <simon.marchi@ericsson.com>

View File

@ -66,7 +66,7 @@ current_target_desc (void)
return current_process ()->tdesc;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
set_tdesc_architecture (struct target_desc *target_desc,
@ -75,7 +75,7 @@ set_tdesc_architecture (struct target_desc *target_desc,
target_desc->arch = xstrdup (name);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
set_tdesc_osabi (struct target_desc *target_desc, const char *name)
@ -132,7 +132,7 @@ tdesc_get_features_xml (target_desc *tdesc)
struct tdesc_type
{};
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_feature *
tdesc_create_feature (struct target_desc *tdesc, const char *name,
@ -144,7 +144,7 @@ tdesc_create_feature (struct target_desc *tdesc, const char *name,
return tdesc;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_flags (struct tdesc_feature *feature, const char *name,
@ -153,14 +153,14 @@ tdesc_create_flags (struct tdesc_feature *feature, const char *name,
return NULL;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_add_flag (tdesc_type_with_fields *type, int start,
const char *flag_name)
{}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_type *
tdesc_named_type (const struct tdesc_feature *feature, const char *id)
@ -168,7 +168,7 @@ tdesc_named_type (const struct tdesc_feature *feature, const char *id)
return NULL;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_union (struct tdesc_feature *feature, const char *id)
@ -176,7 +176,7 @@ tdesc_create_union (struct tdesc_feature *feature, const char *id)
return NULL;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_struct (struct tdesc_feature *feature, const char *id)
@ -184,7 +184,7 @@ tdesc_create_struct (struct tdesc_feature *feature, const char *id)
return NULL;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_create_reg (struct tdesc_feature *feature, const char *name,
@ -212,7 +212,7 @@ tdesc_create_reg (struct tdesc_feature *feature, const char *name,
tdesc->reg_defs.push_back (reg);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_type *
tdesc_create_vector (struct tdesc_feature *feature, const char *name,
@ -226,14 +226,14 @@ tdesc_add_bitfield (tdesc_type_with_fields *type, const char *field_name,
int start, int end)
{}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_add_field (tdesc_type_with_fields *type, const char *field_name,
struct tdesc_type *field_type)
{}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_set_struct_size (tdesc_type_with_fields *type, int size)

View File

@ -19,7 +19,7 @@
#ifndef TDESC_H
#define TDESC_H
#include "arch/tdesc.h"
#include "common/tdesc.h"
#include "regdef.h"
#include <vector>

View File

@ -1025,7 +1025,7 @@ tdesc_predefined_type (enum tdesc_type_kind kind)
gdb_assert_not_reached ("bad predefined tdesc type");
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_type *
tdesc_named_type (const struct tdesc_feature *feature, const char *id)
@ -1476,7 +1476,7 @@ tdesc_use_registers (struct gdbarch *gdbarch,
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_create_reg (struct tdesc_feature *feature, const char *name,
@ -1489,7 +1489,7 @@ tdesc_create_reg (struct tdesc_feature *feature, const char *name,
feature->registers.emplace_back (reg);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_type *
tdesc_create_vector (struct tdesc_feature *feature, const char *name,
@ -1501,7 +1501,7 @@ tdesc_create_vector (struct tdesc_feature *feature, const char *name,
return type;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_struct (struct tdesc_feature *feature, const char *name)
@ -1513,7 +1513,7 @@ tdesc_create_struct (struct tdesc_feature *feature, const char *name)
return type;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_set_struct_size (tdesc_type_with_fields *type, int size)
@ -1523,7 +1523,7 @@ tdesc_set_struct_size (tdesc_type_with_fields *type, int size)
type->size = size;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_union (struct tdesc_feature *feature, const char *name)
@ -1535,7 +1535,7 @@ tdesc_create_union (struct tdesc_feature *feature, const char *name)
return type;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
tdesc_type_with_fields *
tdesc_create_flags (struct tdesc_feature *feature, const char *name,
@ -1563,7 +1563,7 @@ tdesc_create_enum (struct tdesc_feature *feature, const char *name,
return type;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_add_field (tdesc_type_with_fields *type, const char *field_name,
@ -1588,7 +1588,7 @@ tdesc_add_typed_bitfield (tdesc_type_with_fields *type, const char *field_name,
type->fields.emplace_back (field_name, field_type, start, end);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_add_bitfield (tdesc_type_with_fields *type, const char *field_name,
@ -1606,7 +1606,7 @@ tdesc_add_bitfield (tdesc_type_with_fields *type, const char *field_name,
tdesc_add_typed_bitfield (type, field_name, start, end, field_type);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
tdesc_add_flag (tdesc_type_with_fields *type, int start,
@ -1630,7 +1630,7 @@ tdesc_add_enum_value (tdesc_type_with_fields *type, int value,
value, -1);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
struct tdesc_feature *
tdesc_create_feature (struct target_desc *tdesc, const char *name,
@ -1696,7 +1696,7 @@ set_tdesc_property (struct target_desc *target_desc,
target_desc->properties.emplace_back (key, value);
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
set_tdesc_architecture (struct target_desc *target_desc,
@ -1712,7 +1712,7 @@ set_tdesc_architecture (struct target_desc *target_desc,
target_desc->arch = arch;
}
/* See arch/tdesc.h. */
/* See common/tdesc.h. */
void
set_tdesc_osabi (struct target_desc *target_desc, const char *name)
@ -2077,7 +2077,7 @@ public:
printf_unfiltered (" Original: %s */\n\n",
lbasename (m_filename_after_features.c_str ()));
printf_unfiltered ("#include \"arch/tdesc.h\"\n");
printf_unfiltered ("#include \"common/tdesc.h\"\n");
printf_unfiltered ("\n");
}

View File

@ -21,7 +21,7 @@
#ifndef TARGET_DESCRIPTIONS_H
#define TARGET_DESCRIPTIONS_H 1
#include "arch/tdesc.h"
#include "common/tdesc.h"
struct tdesc_arch_data;
struct target_ops;