Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: tests/lib/typed_data/float64x2_functional_test.dart

Issue 2947783002: Avoid unaligned access fault in Int32x4/Float32x4::value() on ARM. (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/lib/typed_data/float32x4_test.dart ('k') | tests/lib/typed_data/int32x4_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // VMOptions=--max_deoptimization_counter_threshold=1000 --optimization-counter- threshold=10 --no-background-compilation 4 // VMOptions=--max_deoptimization_counter_threshold=1000 --optimization-counter- threshold=10 --no-background-compilation
5 // VMOptions=--no-intrinsify
5 6
6 library float64x2_functional_test; 7 library float64x2_functional_test;
7 8
8 import 'dart:typed_data'; 9 import 'dart:typed_data';
9 import "package:expect/expect.dart"; 10 import "package:expect/expect.dart";
10 11
11 testConstructor() { 12 testConstructor() {
12 var a = new Float64x2(1.0, 2.0); 13 var a = new Float64x2(1.0, 2.0);
13 Expect.equals(1.0, a.x); 14 Expect.equals(1.0, a.x);
14 Expect.equals(2.0, a.y); 15 Expect.equals(2.0, a.y);
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 testSqrt(); 286 testSqrt();
286 testTypedList(); 287 testTypedList();
287 testTypedListFromList(); 288 testTypedListFromList();
288 testTypedListFromTypedList(); 289 testTypedListFromTypedList();
289 testTypedListView(); 290 testTypedListView();
290 testTypedListFullView(); 291 testTypedListFullView();
291 testSubList(); 292 testSubList();
292 testSubView(); 293 testSubView();
293 } 294 }
294 } 295 }
OLDNEW
« no previous file with comments | « tests/lib/typed_data/float32x4_test.dart ('k') | tests/lib/typed_data/int32x4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698