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

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

Issue 269273003: Fix index register assignment in LoadFieldByIndex for arm, arm64, and mips. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix whitespace in test Created 6 years, 7 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
« no previous file with comments | « src/mips/lithium-mips.cc ('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
1 // Copyright 2014 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --allow-natives-syntax 5 // Flags: --allow-natives-syntax
6 6
7 function f() {}; 7 function foo(a, c){
8 int_array = [1]; 8 for(var f in c) {
9 if ("object" === typeof c[f]) {
10 a[f] = c[f];
11 foo(a[f], c[f]);
12 }
13 }
14 };
9 15
10 function foo() { 16 c = {
11 var x; 17 "one" : { x : 1},
12 for (var i = -1; i < 0; i++) { 18 "two" : { x : 2},
13 x = int_array[i + 1]; 19 "thr" : { x : 3, z : 4},
14 f(function() { x = i; }); 20 };
15 }
16 }
17 21
18 foo(); 22 foo({}, c);
23 foo({}, c);
19 %OptimizeFunctionOnNextCall(foo); 24 %OptimizeFunctionOnNextCall(foo);
20 foo(); 25 foo({}, c);
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698