51f4574e50
Fixes alignment checks on GCC <= 7 and Clang <= 7. Fixes: https://github.com/dart-lang/sdk/issues/37559 Fixes: https://github.com/dart-lang/sdk/issues/36334 Original CL is in patchset 1. Tested GCC 7 and Clang 7 behavior of alignof and offsetof manually (our CQ uses newer tooling). Change-Id: I828b00ad3d36be68a0d28b0a710fea938ca17784 Cq-Include-Trybots: luci.dart.try:vm-ffi-android-debug-arm-try, app-kernel-linux-debug-x64-try, vm-kernel-linux-debug-simdbc64-try,vm-kernel-linux-debug-ia32-try,vm-dartkb-linux-debug-simarm64-try,vm-kernel-win-debug-x64-try,vm-kernel-win-debug-ia32-try,vm-dartkb-linux-debug-x64-try,vm-kernel-precomp-linux-debug-x64-try,vm-ffi-android-product-arm-try,vm-dartkb-linux-release-x64-abi-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/112254 Reviewed-by: Martin Kustermann <kustermann@google.com> Commit-Queue: Daco Harkes <dacoharkes@google.com>
134 lines
4.1 KiB
Dart
134 lines
4.1 KiB
Dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
//
|
|
// Dart test program for testing dart:ffi struct pointers.
|
|
//
|
|
// VMOptions=--deterministic --optimization-counter-threshold=50 --enable-inlining-annotations
|
|
|
|
library FfiTest;
|
|
|
|
import 'dart:ffi';
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
import 'coordinate_bare.dart' as bare;
|
|
import 'coordinate.dart';
|
|
import 'utf8.dart';
|
|
|
|
void main() {
|
|
for (int i = 0; i < 100; i++) {
|
|
testStructAllocate();
|
|
testStructFromAddress();
|
|
testStructWithNulls();
|
|
testBareStruct();
|
|
testTypeTest();
|
|
testUtf8();
|
|
}
|
|
}
|
|
|
|
/// allocates each coordinate separately in c memory
|
|
void testStructAllocate() {
|
|
Pointer<Coordinate> c1 =
|
|
Coordinate.allocate(10.0, 10.0, nullptr.cast()).addressOf;
|
|
Pointer<Coordinate> c2 = Coordinate.allocate(20.0, 20.0, c1).addressOf;
|
|
Pointer<Coordinate> c3 = Coordinate.allocate(30.0, 30.0, c2).addressOf;
|
|
c1.load<Coordinate>().next = c3;
|
|
|
|
Coordinate currentCoordinate = c1.load();
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(30.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(20.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
|
|
c1.free();
|
|
c2.free();
|
|
c3.free();
|
|
}
|
|
|
|
/// allocates coordinates consecutively in c memory
|
|
void testStructFromAddress() {
|
|
Pointer<Coordinate> c1 = Pointer.allocate(count: 3);
|
|
Pointer<Coordinate> c2 = c1.elementAt(1);
|
|
Pointer<Coordinate> c3 = c1.elementAt(2);
|
|
c1.load<Coordinate>().x = 10.0;
|
|
c1.load<Coordinate>().y = 10.0;
|
|
c1.load<Coordinate>().next = c3;
|
|
c2.load<Coordinate>().x = 20.0;
|
|
c2.load<Coordinate>().y = 20.0;
|
|
c2.load<Coordinate>().next = c1;
|
|
c3.load<Coordinate>().x = 30.0;
|
|
c3.load<Coordinate>().y = 30.0;
|
|
c3.load<Coordinate>().next = c2;
|
|
|
|
Coordinate currentCoordinate = c1.load();
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(30.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(20.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
|
|
c1.free();
|
|
}
|
|
|
|
void testStructWithNulls() {
|
|
Pointer<Coordinate> coordinate =
|
|
Coordinate.allocate(10.0, 10.0, nullptr.cast<Coordinate>()).addressOf;
|
|
Expect.equals(coordinate.load<Coordinate>().next, nullptr);
|
|
coordinate.load<Coordinate>().next = coordinate;
|
|
Expect.notEquals(coordinate.load<Coordinate>().next, nullptr);
|
|
coordinate.load<Coordinate>().next = nullptr.cast();
|
|
Expect.equals(coordinate.load<Coordinate>().next, nullptr);
|
|
coordinate.free();
|
|
}
|
|
|
|
void testBareStruct() {
|
|
int structSize = sizeOf<Double>() * 2 + sizeOf<IntPtr>();
|
|
bare.Coordinate c1 = Pointer<Uint8>.allocate(count: structSize * 3)
|
|
.cast<bare.Coordinate>()
|
|
.load();
|
|
bare.Coordinate c2 =
|
|
c1.addressOf.offsetBy(structSize).cast<bare.Coordinate>().load();
|
|
bare.Coordinate c3 =
|
|
c1.addressOf.offsetBy(structSize * 2).cast<bare.Coordinate>().load();
|
|
c1.x = 10.0;
|
|
c1.y = 10.0;
|
|
c1.next = c3.addressOf;
|
|
c2.x = 20.0;
|
|
c2.y = 20.0;
|
|
c2.next = c1.addressOf;
|
|
c3.x = 30.0;
|
|
c3.y = 30.0;
|
|
c3.next = c2.addressOf;
|
|
|
|
bare.Coordinate currentCoordinate = c1;
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(30.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(20.0, currentCoordinate.x);
|
|
currentCoordinate = currentCoordinate.next.load();
|
|
Expect.equals(10.0, currentCoordinate.x);
|
|
|
|
c1.addressOf.free();
|
|
}
|
|
|
|
void testTypeTest() {
|
|
Coordinate c = Coordinate.allocate(10, 10, nullptr.cast<Coordinate>());
|
|
Expect.isTrue(c is Struct);
|
|
Expect.isTrue(c is Struct<Coordinate>);
|
|
c.addressOf.free();
|
|
}
|
|
|
|
void testUtf8() {
|
|
final String test = 'Hasta Mañana';
|
|
final Pointer<Utf8> medium = Utf8.toUtf8(test);
|
|
Expect.equals(test, Utf8.fromUtf8(medium));
|
|
medium.free();
|
|
}
|