d1bffecec5
Bug: https://github.com/dart-lang/sdk/issues/60212 Change-Id: Icb6272b38b48b5445beaab8be528c4c5698b74fb Cq-Include-Trybots: dart/try:vm-aot-linux-debug-x64-try,vm-aot-mac-release-arm64-try,vm-reload-linux-debug-x64-try,vm-win-debug-x64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/412240 Commit-Queue: Daco Harkes <dacoharkes@google.com> Reviewed-by: Michael Goderbauer <goderbauer@google.com>
66 lines
2.1 KiB
Dart
66 lines
2.1 KiB
Dart
// Copyright (c) 2021, 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.
|
|
//
|
|
// SharedObjects=ffi_test_functions
|
|
|
|
// Formatting can break multitests, so don't format them.
|
|
// dart format off
|
|
|
|
import 'dart:ffi';
|
|
import 'dart:io';
|
|
|
|
import 'package:expect/expect.dart';
|
|
|
|
import 'callback_tests_utils.dart';
|
|
import 'dylib_utils.dart';
|
|
|
|
DynamicLibrary ffiTestFunctions = dlopenPlatformSpecific("ffi_test_functions");
|
|
|
|
testLeafCall() {
|
|
// Regular calls should transition generated -> native.
|
|
final isThreadInGenerated = ffiTestFunctions
|
|
.lookupFunction<Int8 Function(), int Function()>("IsThreadInGenerated");
|
|
Expect.equals(0, isThreadInGenerated());
|
|
// Leaf calls should remain in generated state.
|
|
final isThreadInGeneratedLeaf = ffiTestFunctions
|
|
.lookupFunction<Int8 Function(), int Function()>("IsThreadInGenerated",
|
|
isLeaf: true);
|
|
Expect.equals(1, isThreadInGeneratedLeaf());
|
|
}
|
|
|
|
testLeafCallApi() {
|
|
// Note: This will only crash as expected in debug build mode. In other modes
|
|
// it's effectively skip.
|
|
final f = ffiTestFunctions.lookupFunction<Void Function(), void Function()>(
|
|
"TestLeafCallApi",
|
|
isLeaf: true);
|
|
// Calling Dart_.. API is unsafe from leaf calls since we explicitly haven't
|
|
// made the generated -> native transition.
|
|
f();
|
|
}
|
|
|
|
void nop() {}
|
|
|
|
testCallbackLeaf() {
|
|
// This should crash with "expected: T->IsAtSafepoint()", since it's unsafe to
|
|
// do callbacks from leaf calls (otherwise they wouldn't be leaf calls).
|
|
// Note: This will only crash as expected in debug build mode. In other modes
|
|
// it's effectively skip.
|
|
CallbackTest("CallbackLeaf", Pointer.fromFunction<Void Function()>(nop),
|
|
isLeaf: true)
|
|
.run();
|
|
}
|
|
|
|
main() {
|
|
testLeafCall();
|
|
// These tests terminate the process after successful completion, so we have
|
|
// to run them separately.
|
|
//
|
|
// Since they use signal handlers they only run on Linux.
|
|
if (Platform.isLinux && !const bool.fromEnvironment("dart.vm.product")) {
|
|
testLeafCallApi();
|
|
testCallbackLeaf();
|
|
}
|
|
}
|