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

Side by Side Diff: test/mjsunit/arguments-escape.js

Issue 7247001: Merge r8390 from bleeding edge (fix missing write barrier in arguments IC). (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « src/x64/ic-x64.cc ('k') | test/mjsunit/regress/regress-arguments-gc.js » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 22 matching lines...) Expand all
33 }; 33 };
34 bar(1); 34 bar(1);
35 bar(2); 35 bar(2);
36 bar(3); 36 bar(3);
37 return bar; 37 return bar;
38 } 38 }
39 var baz = foo(0); 39 var baz = foo(0);
40 baz(4); 40 baz(4);
41 baz(5); 41 baz(5);
42 baz(6); 42 baz(6);
43
44 // Test writing a non-smi.
45 function foo2(x) {
46 var a = arguments;
47 function bar2(i) {
48 assertEquals(i, ++a[0]);
49 assertEquals(i, x);
50 };
51 bar2(1.5);
52 bar2(2.5);
53 bar2(3.5);
54 return bar2;
55 }
56 var baz2 = foo2(0.5);
57 baz2(4.5);
58 baz2(5.5);
59 baz2(6.5);
OLDNEW
« no previous file with comments | « src/x64/ic-x64.cc ('k') | test/mjsunit/regress/regress-arguments-gc.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698