This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Add another SIMD type.



This was not there, but it should be, for symmetry.
I just checked this in.

Elena

2002-05-08  Elena Zannoni  <ezannoni@redhat.com>

	* gdbtypes.c : Add new builtin type for 64 bit vectors.
        (build_gdbtypes): Build builtin_type_v2_float.
	(_initialize_gdbtypes): Register new builtin type.

Index: gdbtypes.c
===================================================================
RCS file: /cvs/uberbaum/gdb/gdbtypes.c,v
retrieving revision 1.47
diff -u -p -r1.47 gdbtypes.c
--- gdbtypes.c	6 May 2002 17:37:14 -0000	1.47
+++ gdbtypes.c	8 May 2002 22:45:02 -0000
@@ -78,6 +78,7 @@ struct type *builtin_type_v4_int32;
 struct type *builtin_type_v8_int16;
 struct type *builtin_type_v16_int8;
 /* 64 bit long vector types */
+struct type *builtin_type_v2_float;
 struct type *builtin_type_v2_int32;
 struct type *builtin_type_v4_int16;
 struct type *builtin_type_v8_int8;
@@ -3317,6 +3318,7 @@ build_gdbtypes (void)
   builtin_type_v8_int16 = init_vector_type (builtin_type_int16, 8);
   builtin_type_v16_int8 = init_vector_type (builtin_type_int8, 16);
   /* 64 bit vectors.  */
+  builtin_type_v2_float = init_vector_type (builtin_type_float, 2);
   builtin_type_v2_int32 = init_vector_type (builtin_type_int32, 2);
   builtin_type_v4_int16 = init_vector_type (builtin_type_int16, 4);
   builtin_type_v8_int8 = init_vector_type (builtin_type_int8, 8);
@@ -3415,6 +3417,7 @@ _initialize_gdbtypes (void)
   register_gdbarch_swap (&builtin_type_v4_int32, sizeof (struct type *), NULL);  
   register_gdbarch_swap (&builtin_type_v8_int16, sizeof (struct type *), NULL);  
   register_gdbarch_swap (&builtin_type_v16_int8, sizeof (struct type *), NULL); 
+  register_gdbarch_swap (&builtin_type_v2_float, sizeof (struct type *), NULL);  
   register_gdbarch_swap (&builtin_type_v2_int32, sizeof (struct type *), NULL);  
   register_gdbarch_swap (&builtin_type_v8_int8, sizeof (struct type *), NULL);
   register_gdbarch_swap (&builtin_type_v4_int16, sizeof (struct type *), NULL);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]