diff options
author | Jan Beulich <jbeulich@suse.com> | 2021-08-11 08:31:03 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2021-08-11 08:31:03 +0200 |
commit | e74e2b4c336fad993b0dd31b859af919ad52ec9e (patch) | |
tree | d2da95940234a9ed70a44738a018f4ee2919bd53 /gas/config | |
parent | e2295dade838ad296e1e1cd1096177058139b6b3 (diff) | |
download | gdb-e74e2b4c336fad993b0dd31b859af919ad52ec9e.zip gdb-e74e2b4c336fad993b0dd31b859af919ad52ec9e.tar.gz gdb-e74e2b4c336fad993b0dd31b859af919ad52ec9e.tar.bz2 |
x86/ELF: fix .ds.x output
The ELF psABI-s are quite clear here: On 32-bit the underlying data type
is 12 bytes long (with 2 bytes of trailing padding), while on 64-bit it
is 16 bytes long (with 6 bytes of padding). Make s_space() capable of
handling 'x' (and 'p') type floating point being other than 12 bytes
wide (also adjusting documentation). This requires duplicating the
definition of X_PRECISION in the target speciifc header; the compiler
would complain if this was out of sync with config/atof-ieee.c.
Note that for now padding space doesn't get separated from actual
storage, which means that things will work correctly only for little-
endian cases, and which also means that by specifying large enough
numbers padding space can be set to non-zero. Since the logic is needed
for a single little-endian architecture only for now, I'm hoping that
this might be acceptable for the time being; otherwise the change will
become more intrusive.
Note also that this brings the emitted data size of .ds.x vs .tfloat in
line for non-ELF targets as well; the issue will be even more obvious
when further taking into account a subsequent patch fixing .dc.x/.dcb.x
(where output sizes currently differ depending on input format).
Extend existing x86 testcases.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index f94226e..2dc6312 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -134,6 +134,7 @@ extern bfd_reloc_code_real_type x86_cons (expressionS *, int); extern void x86_cons_fix_new (fragS *, unsigned int, unsigned int, expressionS *, bfd_reloc_code_real_type); +#define X_PRECISION 5 #define X_PRECISION_PAD x86_tfloat_pad () extern int x86_tfloat_pad (void); |