Files
sdk/runtime/tests/vm/dart/double_field_assignment_test.dart
T
Victor Lima da1b47cace [vm/aot] Fix FlowGraphCompiler::TryIntrinsifyHelper issue
for implicit getters and setters of unboxed fields

Issue https://github.com/dart-lang/sdk/issues/40252

Change-Id: If11545eca4a87cfded52d7586de2a628d3246b90
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/132664
Commit-Queue: Victor Agnez Lima <victoragnez@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
2020-01-21 16:38:12 +00:00

66 lines
1.5 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.
import "package:expect/expect.dart";
final bool alwaysTrue = int.parse('1') == 1;
abstract class I {
double get val;
void set val(double v);
}
class Foo implements I {
double val;
@pragma('vm:never-inline')
Foo(this.val);
}
class Bar implements I {
double val = alwaysTrue ? 1.1 : 2.2;
}
@pragma('vm:never-inline')
double identity(double x) => x;
@pragma('vm:never-inline')
void testGetter() {
final I a = alwaysTrue ? Foo(4.2) : Bar();
// Call intrinsic getter (which should make a copy if field is unboxed)
final value = a.val;
final valueAlias = identity(value);
if (a is Foo) {
// Override the mutable box via direct StoreInstanceField instruction.
a.val = 99.0;
}
// Ensure value (aka valueAlias) was not overriden with 99.0
Expect.equals(4.2, valueAlias);
}
@pragma('vm:never-inline')
void testSetter() {
final I a = alwaysTrue ? Foo(1.0) : Bar();
final value = alwaysTrue ? 4.2 : 2.1;
final valueAlias = identity(value);
// Call intrinsic setter (which should make a copy if field is unboxed)
a.val = value;
if (a is Foo) {
// Override the mutable box via direct StoreInstanceField instruction.
a.val = 99.0;
}
// Ensure value (aka valueAlias) was not overriden with 99.0
Expect.equals(4.2, valueAlias);
}
main() {
testGetter();
testSetter();
}