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

Side by Side Diff: test/mjsunit/regress/regress-5772.js

Issue 2597013004: [ic] Always use generic ICs for growing element stores on arguments (Closed)
Patch Set: Created 3 years, 12 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 | « src/objects-inl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 // Flags: --allow-natives-syntax
6
7 (function sloppyPackedArguments() {
8 function f(a) {
9 for (var i = 0; i < 2; i++) {
10 a[i] = 0;
11 }
12 }
13 var boom;
14 function g() {
15 var a = arguments;
16 f(a);
17 boom = a[5];
18 assertEquals(undefined, boom);
19 }
20
21 f([]);
22 g(1);
23 })();
24
25 (function strictPackedArguments() {
26 "use strict";
27 function f(a) {
28 for (var i = 0; i < 2; i++) {
29 a[i] = 0;
30 }
31 }
32 var boom;
33 function g() {
34 var a = arguments;
35 f(a);
36 boom = a[5];
37 assertEquals(undefined, boom);
38 }
39
40 f([]);
41 g(1);
42 })();
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698