|
1 // |reftest| slow |
|
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 //----------------------------------------------------------------------------- |
|
8 var BUGNUMBER = 365527; |
|
9 var summary = 'JSOP_ARGUMENTS should set obj register'; |
|
10 var actual = 'No Crash'; |
|
11 var expect = 'No Crash'; |
|
12 |
|
13 //----------------------------------------------------------------------------- |
|
14 test(); |
|
15 //----------------------------------------------------------------------------- |
|
16 |
|
17 function test() |
|
18 { |
|
19 enterFunc ('test'); |
|
20 printBugNumber(BUGNUMBER); |
|
21 printStatus (summary); |
|
22 |
|
23 |
|
24 counter = 500*1000; |
|
25 |
|
26 var obj; |
|
27 |
|
28 function getter() |
|
29 { |
|
30 obj = { get x() { |
|
31 return getter(); |
|
32 }, counter: counter}; |
|
33 return obj; |
|
34 } |
|
35 |
|
36 |
|
37 var x; |
|
38 |
|
39 function g() |
|
40 { |
|
41 x += this.counter; |
|
42 if (--counter == 0) |
|
43 throw "Done"; |
|
44 } |
|
45 |
|
46 |
|
47 function f() |
|
48 { |
|
49 arguments=g; |
|
50 try { |
|
51 for (;;) { |
|
52 arguments(); |
|
53 obj.x; |
|
54 } |
|
55 } catch (e) { |
|
56 } |
|
57 } |
|
58 |
|
59 |
|
60 getter(); |
|
61 f(); |
|
62 |
|
63 reportCompare(expect, actual, summary); |
|
64 |
|
65 exitFunc ('test'); |
|
66 } |