From: Xavier Roirand Date: Mon, 10 Sep 2018 15:32:00 +0000 (-0500) Subject: (Ada) New function ada_is_access_to_unconstrained_array X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=736ade86ea3dd3df31120b6c617d64c88bcc86c1;p=binutils-gdb.git (Ada) New function ada_is_access_to_unconstrained_array Add a new function to check if a given type is an access to an unconstrained array. This function contains code that is present only once in the current sources but will be used in a future patch. gdb/ChangeLog: * ada-lang.c (ada_is_access_to_unconstrained_array): New function. (ada_check_typedef): Use it. Tested on x86_64-linux. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca678dd1d97..5401864c21a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-09-10 Xavier Roirand + + * ada-lang.c (ada_is_access_to_unconstrained_array): New function. + (ada_check_typedef): Use it. + 2018-09-10 Xavier Roirand * ada-varobj.c (ada_varobj_describe_struct_child) diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index b8a11cdff2a..83421ac24e5 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -2832,6 +2832,15 @@ value_assign_to_component (struct value *container, struct value *component, value_contents (val), 0, bits, 0); } +/* Determine if TYPE is an access to an unconstrained array. */ + +static bool +ada_is_access_to_unconstrained_array (struct type *type) +{ + return (TYPE_CODE (type) == TYPE_CODE_TYPEDEF + && is_thick_pntr (ada_typedef_target_type (type))); +} + /* The value of the element of array ARR at the ARITY indices given in IND. ARR may be either a simple array, GNAT array descriptor, or pointer thereto. */ @@ -9245,13 +9254,13 @@ ada_check_typedef (struct type *type) if (type == NULL) return NULL; - /* If our type is a typedef type of a fat pointer, then we're done. + /* If our type is an access to an unconstrained array, which is encoded + as a TYPE_CODE_TYPEDEF of a fat pointer, then we're done. We don't want to strip the TYPE_CODE_TYPDEF layer, because this is what allows us to distinguish between fat pointers that represent array types, and fat pointers that represent array access types (in both cases, the compiler implements them as fat pointers). */ - if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF - && is_thick_pntr (ada_typedef_target_type (type))) + if (ada_is_access_to_unconstrained_array (type)) return type; type = check_typedef (type);