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

Side by Side Diff: test/mjsunit/asm/float32array-outofbounds.js

Issue 640603003: [turbofan] Properly emit bounds checks for typed array element loads. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add another test. Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 function Module(stdlib, foreign, heap) {
6 "use asm";
7 var MEM32 = new stdlib.Float32Array(heap);
8 function load(i) {
9 i = i|0;
10 i = +MEM32[i >> 2];
11 return i;
12 }
13 function store(i, v) {
14 i = i|0;
15 v = +v;
16 MEM32[i >> 2] = v;
17 }
18 return { load: load, store: store };
19 }
20
21 var m = Module(this, {}, new ArrayBuffer(4));
22
23 m.store(0, 42.0);
24 for (var i = 1; i < 64; ++i) {
25 m.store(i * 4 * 32 * 1024, i);
26 }
27 assertEquals(42.0, m.load(0));
28 for (var i = 1; i < 64; ++i) {
29 assertEquals(NaN, m.load(i * 4 * 32 * 1024));
30 }
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-representation-change.cc ('k') | test/mjsunit/asm/float64array-outofbounds.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698