]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: Allow gdbarch to override alignment for method and member pointers
authorAndrew Burgess <andrew.burgess@embecosm.com>
Mon, 18 Feb 2019 18:10:09 +0000 (18:10 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Mon, 18 Feb 2019 23:24:53 +0000 (23:24 +0000)
The code in type_align (gdbtypes.c) currently hard-codes the rules for
aligning method and member pointers.  It would seem better to forward
these types through the gdbarch hook, so that an architecture could
override the alignment of these types if needed.

Only 3 architectures currently override the gdbarch alignment hook,
these are arc, i386, and nio2.

For arc and nios the alignment rules are that alignment is the minimum
of 4-bytes and the type length.  As pointers are 4-bytes on these
targets, then (assuming method and members pointers are also 4-bytes)
there should be no change to the alignment after this patch.

For i386 the gdbarch alignment hook overrides for some INT and FLOAT
types only.  For method and member pointers we align on the type size
still, so there should be no change to the alignment after this patch.

I tested this on x86-64 GNU Linux with no regressions.

gdb/ChangeLog:

* gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.

gdb/ChangeLog
gdb/gdbtypes.c

index 65d6548733956c5f4ecf07ffbfeab11e9094b4a4..1cf2f072789bcc4dbbdae617759fe5f23c3e412b 100644 (file)
@@ -1,3 +1,8 @@
+2019-02-18  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
+       and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
+
 2019-02-18  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
 
        * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
index 675878337b3287fe2237ae757790e1ae6557c465..0d293393daede5825eb9991643c5edcb71b03577 100644 (file)
@@ -3011,6 +3011,8 @@ type_align (struct type *type)
     case TYPE_CODE_CHAR:
     case TYPE_CODE_BOOL:
     case TYPE_CODE_DECFLOAT:
+    case TYPE_CODE_METHODPTR:
+    case TYPE_CODE_MEMBERPTR:
       {
        struct gdbarch *arch = get_type_arch (type);
        align = gdbarch_type_align (arch, type);
@@ -3053,11 +3055,6 @@ type_align (struct type *type)
         anyway.  */
       break;
 
-    case TYPE_CODE_METHODPTR:
-    case TYPE_CODE_MEMBERPTR:
-      align = type_length_units (type);
-      break;
-
     case TYPE_CODE_VOID:
       align = 1;
       break;