fcc72ad83f
Move generation of Function objects for native trampolines to the Precompiler, so they can be generated during AOT and tree-shaken if possible. Issue dartbug.com/35765 Change-Id: I0e69b7e0b22db73e3a40f2fe445660e57ddb6fa9 Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-bare-linux-release-simarm64-try, vm-kernel-precomp-bare-linux-release-x64-try, vm-kernel-precomp-linux-debug-x64-try, vm-dartkb-linux-debug-x64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/107407 Commit-Queue: Samir Jindel <sjindel@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
84 lines
2.5 KiB
Dart
84 lines
2.5 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 error handling with dart:ffi functions.
|
|
//
|
|
// SharedObjects=ffi_test_functions
|
|
|
|
import 'dart:ffi' as ffi;
|
|
import 'dylib_utils.dart';
|
|
import "package:expect/expect.dart";
|
|
|
|
main() {
|
|
testWrongArity();
|
|
testWrongTypes();
|
|
testDynamicAsFunction();
|
|
testDynamicLookupFunction();
|
|
}
|
|
|
|
ffi.DynamicLibrary ffiTestFunctions =
|
|
dlopenPlatformSpecific("ffi_test_functions");
|
|
|
|
typedef NativeBinaryOp = ffi.Int32 Function(ffi.Int32, ffi.Int32);
|
|
typedef BinaryOp = int Function(int, int);
|
|
|
|
typedef NativeUnaryOp = ffi.Int64 Function(ffi.Pointer<ffi.Int64>);
|
|
typedef UnaryOp = int Function(ffi.Pointer<ffi.Int64>);
|
|
|
|
void testWrongArity() {
|
|
{
|
|
dynamic sumPlus42 =
|
|
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10));
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12));
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12, y: 13));
|
|
}
|
|
|
|
{
|
|
Function sumPlus42 =
|
|
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10));
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12));
|
|
Expect.throwsNoSuchMethodError(() => sumPlus42(10, 11, 12, y: 13));
|
|
}
|
|
}
|
|
|
|
void testWrongTypes() {
|
|
{
|
|
dynamic sumPlus42 =
|
|
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
|
|
Expect.throwsTypeError(() => sumPlus42("abc", "def"));
|
|
}
|
|
|
|
{
|
|
Function sumPlus42 =
|
|
ffiTestFunctions.lookupFunction<NativeBinaryOp, BinaryOp>("SumPlus42");
|
|
Expect.throwsTypeError(() => sumPlus42("abc", "def"));
|
|
}
|
|
|
|
{
|
|
dynamic pointerOp = ffiTestFunctions
|
|
.lookupFunction<NativeUnaryOp, UnaryOp>("Assign1337Index1");
|
|
Expect.throwsTypeError(() => pointerOp(0));
|
|
}
|
|
}
|
|
|
|
// Test that invoking 'Pointer.asFunction' with a dynamic receiver type throws
|
|
// an exception.
|
|
void testDynamicAsFunction() {
|
|
dynamic x = ffi.nullptr.cast<ffi.NativeFunction<ffi.Void Function()>>();
|
|
Expect.throwsUnsupportedError(() {
|
|
x.asFunction<void Function()>();
|
|
});
|
|
}
|
|
|
|
// Test that invoking 'DynamicLibrary.lookupFunction' with a dynamic receiver
|
|
// type throws an exception.
|
|
void testDynamicLookupFunction() {
|
|
dynamic lib = ffiTestFunctions;
|
|
Expect.throwsUnsupportedError(() {
|
|
lib.lookupFunction<ffi.Void Function(), void Function()>("_");
|
|
});
|
|
}
|