9d5846b86e
This Splits the NativeCompoundType into NativeStructType and NativeUnionType. The calling conventions themselves did not have to be updated at all, they rely on the 'queries' on NativeTypes. Some interesting corner cases in the native calling conventions are: 1. Arm64 and arm hardfp still regard unions as homogeneous floats, even if the union members are different sizes. 2. Unions can be larger than their members if their largest member has a smaller alignment than a smaller member. 3. When a specific range in a struct contains floating points in one member, but integers in another, the integers take precedence. Bug: https://github.com/dart-lang/sdk/issues/38491 tools/build.py run_ffi_unit_tests && tools/test.py ffi_unit TEST=runtime/vm/compiler/ffi/native_calling_convention_test.cc TEST=runtime/vm/compiler/ffi/native_type_test.cc These tests are exercised on vm-precomp-ffi-qemu-linux-release-arm-try. Change-Id: Ib97769457d1ad0fce47601e9e4a3008bd837167f Cq-Include-Trybots: luci.dart.try:vm-precomp-ffi-qemu-linux-release-arm-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/194422 Commit-Queue: Daco Harkes <dacoharkes@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com>
14 lines
400 B
Plaintext
14 lines
400 B
Plaintext
M(xmm0 double, rdi int64) Struct(size: 16)
|
|
M(xmm1 double, rsi int64) Struct(size: 16)
|
|
M(xmm2 double, rdx int64) Struct(size: 16)
|
|
M(xmm3 double, rcx int64) Struct(size: 16)
|
|
M(xmm4 double, r8 int64) Struct(size: 16)
|
|
M(xmm5 double, r9 int64) Struct(size: 16)
|
|
S+0 Struct(size: 16)
|
|
S+16 Struct(size: 16)
|
|
S+32 Struct(size: 16)
|
|
S+48 Struct(size: 16)
|
|
xmm6 float
|
|
=>
|
|
M(xmm0 double, rax int64) Struct(size: 16)
|