Skip to content

Commit

Permalink
Further clarify treatment of bitfields in the floating-point calling …
Browse files Browse the repository at this point in the history
…convention

This patch reflects the observed behaviour from GCC, as discussed in
issue riscv-non-isa#99.
  • Loading branch information
asb committed Jul 3, 2019
1 parent 78a8a0b commit 6b1636b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions riscv-elf.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,9 @@ register if it is no more than FLEN bits wide and at least one floating-point
argument register is available. Otherwise, it is passed according to the
integer calling convention.

A struct containing just one floating-point real is passed as though it were
a standalone floating-point real.
A struct containing just one floating-point real or (as a special case) one
floating-point real and any number of zero-size bitfields is passed as though
it were a standalone floating-point real.

A struct containing two floating-point reals is passed in two floating-point
registers, if neither is more than FLEN bits wide and at least two floating-point
Expand All @@ -215,7 +216,13 @@ without extending the integer to XLEN bits, provided the floating-point real
is no more than FLEN bits wide and the integer is no more than XLEN bits wide,
and at least one floating-point argument register and at least one integer
argument register is available. Otherwise, it is passed according to the
integer calling convention.
integer calling convention. Note that the bitfield may have a type that is
larger than XLEN but can still be considered eligible for passing in this way
provided the bitfield size is no more than XLEN bits wide. e.g. `struct {
float f; int64_t i : 32; }` is eligible for being passed in an floating-point
argument register and an integer argument register. Zero-size bitfields are
not ignored, so `struct { float f; int64_t i : 32; int 0;`} would be passed
according to the integer calling convention.

Unions are never flattened and are always passed according to the integer
calling convention.
Expand Down

0 comments on commit 6b1636b

Please sign in to comment.