Bug 2648 – Unnecessary struct ABI inconsistency

Status
RESOLVED
Resolution
DUPLICATE
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D1 (retired)
Platform
x86
OS
All
Creation time
2009-02-06T04:40:00Z
Last change time
2014-02-15T13:13:29Z
Keywords
spec
Assigned to
nobody
Creator
clugdbug
Blocks
2385, 3105

Comments

Comment #0 by clugdbug — 2009-02-06T04:40:34Z
There is a horrible ABI difference between Linux and Windows which seems to be completely unjustified. Although extern(C) needs to be different between the systems, there's no reason for extern(D) to. Linux and Windows should use the same return algorithm for 1,2,4, and 8-byte structs. This is the only point at which the ABI differs (except for the fact that real.sizeof is different, but that's something dictacted by the OS). --- # For Windows, 1, 2 and 4 byte structs are returned in EAX. # For Windows, 8 byte structs are returned in EDX,EAX, where EDX gets the most significant half. # For other struct sizes, the return value is stored through a hidden pointer passed as an argument to the function. ---
Comment #1 by dhasenan — 2009-04-25T15:25:05Z
The ABI as implemented in DMD with regards to returning structs appears to be as the spec describes for Windows, as confirmed by mucking about with obj2asm. (Note that, to create a 3-byte struct, you need to use align(1).) I ascertained this using dmd2.029; other versions might have different behavior.
Comment #2 by bugzilla — 2010-11-08T01:03:29Z
*** This issue has been marked as a duplicate of issue 2385 ***