mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
b101a7d002
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548 Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Leaf Petersen <leafp@google.com>
105 lines
2.3 KiB
Dart
105 lines
2.3 KiB
Dart
// Copyright (c) 2020, 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.
|
|
//
|
|
// This tests the non trampoline aspects of nested structs.
|
|
//
|
|
// SharedObjects=ffi_test_functions
|
|
|
|
// @dart = 2.9
|
|
|
|
import 'dart:ffi';
|
|
|
|
import "package:expect/expect.dart";
|
|
import "package:ffi/ffi.dart";
|
|
|
|
import 'dylib_utils.dart';
|
|
|
|
final ffiTestFunctions = dlopenPlatformSpecific("ffi_test_functions");
|
|
void main() {
|
|
for (int i = 0; i < 10; ++i) {
|
|
testSizeOf();
|
|
testAllocate();
|
|
testRead();
|
|
testWrite();
|
|
testCopy();
|
|
}
|
|
}
|
|
|
|
class Struct4BytesHomogeneousInt16 extends Struct {
|
|
@Int16()
|
|
int a0;
|
|
|
|
@Int16()
|
|
int a1;
|
|
|
|
String toString() => "(${a0}, ${a1})";
|
|
}
|
|
|
|
class Struct8BytesNestedInt extends Struct {
|
|
Struct4BytesHomogeneousInt16 a0;
|
|
|
|
Struct4BytesHomogeneousInt16 a1;
|
|
|
|
String toString() => "(${a0}, ${a1})";
|
|
}
|
|
|
|
void testSizeOf() {
|
|
print(sizeOf<Struct8BytesNestedInt>());
|
|
Expect.equals(8, sizeOf<Struct8BytesNestedInt>());
|
|
}
|
|
|
|
void testAllocate() {
|
|
final p = calloc<Struct8BytesNestedInt>();
|
|
Expect.type<Pointer<Struct8BytesNestedInt>>(p);
|
|
print(p);
|
|
calloc.free(p);
|
|
}
|
|
|
|
/// Test that reading does not segfault, even uninitialized.
|
|
void testRead() {
|
|
print("read");
|
|
final p = calloc<Struct8BytesNestedInt>();
|
|
print(p);
|
|
print(p.ref.runtimeType);
|
|
print(p.address);
|
|
print(p.ref.a0.runtimeType);
|
|
print(p.ref.a0.a0);
|
|
calloc.free(p);
|
|
print("read");
|
|
}
|
|
|
|
void testWrite() {
|
|
print("write");
|
|
final p = calloc<Struct8BytesNestedInt>(2);
|
|
p[0].a0.a0 = 12;
|
|
p[0].a0.a1 = 13;
|
|
p[0].a1.a0 = 14;
|
|
p[0].a1.a1 = 15;
|
|
p[1].a0.a0 = 16;
|
|
p[1].a0.a1 = 17;
|
|
p[1].a1.a0 = 18;
|
|
p[1].a1.a1 = 19;
|
|
Expect.equals(12, p[0].a0.a0);
|
|
Expect.equals(13, p[0].a0.a1);
|
|
Expect.equals(14, p[0].a1.a0);
|
|
Expect.equals(15, p[0].a1.a1);
|
|
Expect.equals(16, p[1].a0.a0);
|
|
Expect.equals(17, p[1].a0.a1);
|
|
Expect.equals(18, p[1].a1.a0);
|
|
Expect.equals(19, p[1].a1.a1);
|
|
calloc.free(p);
|
|
print("written");
|
|
}
|
|
|
|
void testCopy() {
|
|
print("copy");
|
|
final p = calloc<Struct8BytesNestedInt>();
|
|
p.ref.a0.a0 = 12;
|
|
p.ref.a0.a1 = 13;
|
|
p.ref.a1 = p.ref.a0;
|
|
Expect.equals(12, p.ref.a1.a0);
|
|
Expect.equals(13, p.ref.a1.a1);
|
|
calloc.free(p);
|
|
print("copied");
|
|
}
|