a8d2e5856f
While fiddling a bit with -Wunused-variable, Sergio noticed that "maint print c-tdesc" was always generating code for the "tdesc_type *field_type" variable, even when it wasn't used. This is caught by GCC when using -Wunused-variable, of course. This patch changes the print_c_tdesc class to only output the field declaration when we actually need it. It shouldn't be necessary to do the same with the other variable declarations (type_with_fields and element_type), because they are always if they are declared. The C files in features/ are regenerated, some declarations of field_type are removed, as expected, while some others move to where they are used for the first time. gdb/ChangeLog: * target-descriptions.c (print_c_tdesc) <visit>: Don't output field_type declaration, use printf_field_type_assignment instead. <printf_field_type_assignment>: New method. * features/aarch64-core.c, features/aarch64-fpu.c features/arc-arcompact.c, features/arc-v2.c, features/arm/arm-with-iwmmxt.c, features/i386/32bit-core.c, features/i386/32bit-mpx.c, features/i386/32bit-sse.c, features/i386/64bit-avx512.c, features/i386/64bit-core.c, features/i386/64bit-mpx.c, features/i386/64bit-sse.c, features/i386/x32-core.c, features/or1k.c, features/rs6000/powerpc-7400.c, features/rs6000/powerpc-altivec32.c, features/rs6000/powerpc-altivec32l.c, features/rs6000/powerpc-altivec64.c, features/rs6000/powerpc-altivec64l.c, features/rs6000/powerpc-cell32l.c, features/rs6000/powerpc-cell64l.c, features/rs6000/powerpc-isa205-altivec32l.c, features/rs6000/powerpc-isa205-altivec64l.c, features/rs6000/powerpc-isa205-vsx32l.c, features/rs6000/powerpc-isa205-vsx64l.c, features/rs6000/powerpc-vsx32.c, features/rs6000/powerpc-vsx32l.c, features/rs6000/powerpc-vsx64.c, features/rs6000/powerpc-vsx64l.c, features/s390-gs-linux64.c, features/s390-tevx-linux64.c, features/s390-vx-linux64.c, features/s390x-gs-linux64.c, features/s390x-tevx-linux64.c, features/s390x-vx-linux64.c: Re-generate.
75 lines
3.5 KiB
C
75 lines
3.5 KiB
C
/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro:
|
|
Original: arc-arcompact.xml */
|
|
|
|
#include "defs.h"
|
|
#include "osabi.h"
|
|
#include "target-descriptions.h"
|
|
|
|
struct target_desc *tdesc_arc_arcompact;
|
|
static void
|
|
initialize_tdesc_arc_arcompact (void)
|
|
{
|
|
struct target_desc *result = allocate_target_description ();
|
|
set_tdesc_architecture (result, bfd_scan_arch ("ARC700"));
|
|
|
|
struct tdesc_feature *feature;
|
|
|
|
feature = tdesc_create_feature (result, "org.gnu.gdb.arc.core.arcompact");
|
|
tdesc_create_reg (feature, "r0", 0, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r1", 1, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r2", 2, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r3", 3, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r4", 4, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r5", 5, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r6", 6, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r7", 7, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r8", 8, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r9", 9, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r10", 10, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r11", 11, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r12", 12, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r13", 13, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r14", 14, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r15", 15, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r16", 16, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r17", 17, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r18", 18, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r19", 19, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r20", 20, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r21", 21, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r22", 22, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r23", 23, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r24", 24, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "r25", 25, 1, NULL, 32, "int");
|
|
tdesc_create_reg (feature, "gp", 26, 1, NULL, 32, "data_ptr");
|
|
tdesc_create_reg (feature, "fp", 27, 1, NULL, 32, "data_ptr");
|
|
tdesc_create_reg (feature, "sp", 28, 1, NULL, 32, "data_ptr");
|
|
tdesc_create_reg (feature, "ilink1", 29, 1, NULL, 32, "code_ptr");
|
|
tdesc_create_reg (feature, "ilink2", 30, 1, NULL, 32, "code_ptr");
|
|
tdesc_create_reg (feature, "blink", 31, 1, NULL, 32, "code_ptr");
|
|
tdesc_create_reg (feature, "lp_count", 32, 1, NULL, 32, "uint32");
|
|
tdesc_create_reg (feature, "pcl", 33, 1, NULL, 32, "code_ptr");
|
|
|
|
feature = tdesc_create_feature (result, "org.gnu.gdb.arc.aux-minimal");
|
|
tdesc_type_with_fields *type_with_fields;
|
|
type_with_fields = tdesc_create_flags (feature, "status32_type", 4);
|
|
tdesc_add_flag (type_with_fields, 0, "H");
|
|
tdesc_add_bitfield (type_with_fields, "E", 1, 2);
|
|
tdesc_add_bitfield (type_with_fields, "A", 3, 4);
|
|
tdesc_add_flag (type_with_fields, 5, "AE");
|
|
tdesc_add_flag (type_with_fields, 6, "DE");
|
|
tdesc_add_flag (type_with_fields, 7, "U");
|
|
tdesc_add_flag (type_with_fields, 8, "V");
|
|
tdesc_add_flag (type_with_fields, 9, "C");
|
|
tdesc_add_flag (type_with_fields, 10, "N");
|
|
tdesc_add_flag (type_with_fields, 11, "Z");
|
|
tdesc_add_flag (type_with_fields, 12, "L");
|
|
tdesc_add_flag (type_with_fields, 13, "R");
|
|
tdesc_add_flag (type_with_fields, 14, "SE");
|
|
|
|
tdesc_create_reg (feature, "pc", 34, 1, NULL, 32, "code_ptr");
|
|
tdesc_create_reg (feature, "status32", 35, 1, NULL, 32, "status32_type");
|
|
|
|
tdesc_arc_arcompact = result;
|
|
}
|