mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
40e18905f2
Closes https://github.com/dart-lang/sdk/pull/49478 TEST=Manual GitOrigin-RevId: f4c9c6869dfe73639295e86574a021523b3d374d Change-Id: I134a97caed4eec59d70e9cbca16b7e9a472cf2c1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/251902 Reviewed-by: Michael Thomsen <mit@google.com> Commit-Queue: Alexander Thomas <athom@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com> Reviewed-by: Kevin Chisholm <kevinjchisholm@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
83 lines
2.2 KiB
Dart
83 lines
2.2 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.
|
|
//
|
|
// Truncation and sign extension of small ints, tested with something else than
|
|
// equality.
|
|
//
|
|
// SharedObjects=ffi_test_functions
|
|
|
|
// @dart = 2.9
|
|
|
|
import 'dart:ffi';
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
import "dylib_utils.dart";
|
|
|
|
main() {
|
|
variant1Negative();
|
|
variant1Positive();
|
|
variant2Negative();
|
|
variant2Positive();
|
|
variant3Negative();
|
|
}
|
|
|
|
/// `return x == 249 ? 1 : 0`.
|
|
///
|
|
/// This doesn't catch the error.
|
|
final regress40537 = ffiTestFunctions
|
|
.lookupFunction<IntPtr Function(Uint8), int Function(int)>("Regress40537");
|
|
|
|
variant1Negative() {
|
|
// 0xF9 = -7 in 2s complement.
|
|
// 0xF9 = 249 in unsigned.
|
|
final result = regress40537(-7);
|
|
print(result);
|
|
Expect.equals(1, result);
|
|
}
|
|
|
|
variant1Positive() {
|
|
// 0xF9 = 249 in unsigned.
|
|
final result = regress40537(0xFFFFFFF9);
|
|
print(result);
|
|
Expect.equals(1, result);
|
|
}
|
|
|
|
/// `return x`.
|
|
///
|
|
/// This does.
|
|
final regress40537Variant2 =
|
|
ffiTestFunctions.lookupFunction<IntPtr Function(Uint8), int Function(int)>(
|
|
"Regress40537Variant2");
|
|
|
|
variant2Negative() {
|
|
// The 32 bit representation of -7 is 0xFFFFFFF9.
|
|
// Only the lowest byte, 0xF9, should be interpreted by calling convention,
|
|
// or it should be truncated and zero extended before calling.
|
|
final result = regress40537Variant2(-7);
|
|
print(result);
|
|
Expect.equals(249, result);
|
|
}
|
|
|
|
variant2Positive() {
|
|
// Only the lowest byte, 0xF9, should be interpreted by calling convention,
|
|
// or it should be truncated and zero extended before calling.
|
|
final result = regress40537Variant2(0xFFFFFFF9);
|
|
print(result);
|
|
Expect.equals(249, result);
|
|
}
|
|
|
|
/// `return x`.
|
|
final regress40537Variant3 =
|
|
ffiTestFunctions.lookupFunction<Uint8 Function(IntPtr), int Function(int)>(
|
|
"Regress40537Variant3");
|
|
|
|
variant3Negative() {
|
|
// This really passes -7 its intptr_t.
|
|
final result = regress40537Variant3(-7);
|
|
print(result);
|
|
Expect.equals(249, result);
|
|
}
|
|
|
|
final ffiTestFunctions = dlopenPlatformSpecific("ffi_test_functions");
|