mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 04:27:46 +08:00
2002-01-15 Elena Zannoni <ezannoni@redhat.com>
[Based on work by Jim Blandy] * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export. (builtin_type_vec128): Export. * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD types. (builtin_type_vec128): New builtin type for 128 bit vector registers. (build_gdbtypes): Initialize builtin_type_v16qi and builtin_type_v8hi. Create the vec128 register builtin type structure. (build_builtin_type_vec128): New function. (_initialize_gdbtypes): Register builtin_type_v16qi and builtin_type_v8hi with gdbarch. Same for builtin_type_vec128. * rs6000-tdep.c (rs6000_register_virtual_type): Change type of AltiVec register to new builtin type.
This commit is contained in:
@ -946,10 +946,15 @@ extern struct type *builtin_type_uint128;
|
||||
/* SIMD types. We inherit these names from GCC. */
|
||||
extern struct type *builtin_type_v4sf;
|
||||
extern struct type *builtin_type_v4si;
|
||||
extern struct type *builtin_type_v16qi;
|
||||
extern struct type *builtin_type_v8qi;
|
||||
extern struct type *builtin_type_v8hi;
|
||||
extern struct type *builtin_type_v4hi;
|
||||
extern struct type *builtin_type_v2si;
|
||||
|
||||
/* Type for 128 bit vectors. */
|
||||
extern struct type *builtin_type_vec128;
|
||||
|
||||
/* Explicit floating-point formats. See "floatformat.h". */
|
||||
extern struct type *builtin_type_ieee_single_big;
|
||||
extern struct type *builtin_type_ieee_single_little;
|
||||
|
Reference in New Issue
Block a user