OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // 1. Redistributions of source code must retain the above copyright | 7 // 1. Redistributions of source code must retain the above copyright |
8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
9 // 2. Redistributions in binary form must reproduce the above copyright | 9 // 2. Redistributions in binary form must reproduce the above copyright |
10 // notice, this list of conditions and the following disclaimer in the | 10 // notice, this list of conditions and the following disclaimer in the |
11 // documentation and/or other materials provided with the distribution. | 11 // documentation and/or other materials provided with the distribution. |
12 // | 12 // |
13 // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN
Y | 13 // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN
Y |
14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
15 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 15 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
16 // DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN
Y | 16 // DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN
Y |
17 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 17 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
19 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O
N | 19 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O
N |
20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 | 23 |
24 description( | 24 description( |
25 "This tests that a patchable GetById right after a watchpoint has the appropriat
e nop padding." | 25 "This page tests the regex examples from the ECMA-262 specification." |
26 ); | 26 ); |
27 | 27 |
28 function foo(o, p) { | 28 var regex01 = /a|ab/; |
29 var a = p.f; | 29 shouldBe('regex01.exec("abc")', '["a"]'); |
30 var b = o.f; // Watchpoint. | |
31 var c = p.g; // Patchable GetById. | |
32 return b(a + c); | |
33 } | |
34 | 30 |
35 function O() { | 31 var regex02 = /((a)|(ab))((c)|(bc))/; |
36 } | 32 shouldBe('regex02.exec("abc")', '["abc", "a", "a", undefined, "bc", undefined, "
bc"]'); |
37 | 33 |
38 O.prototype.f = function(x) { return x + 1; }; | 34 var regex03 = /a[a-z]{2,4}/; |
| 35 shouldBe('regex03.exec("abcdefghi")', '["abcde"]'); |
39 | 36 |
40 var o = new O(); | 37 var regex04 = /a[a-z]{2,4}?/; |
| 38 shouldBe('regex04.exec("abcdefghi")', '["abc"]'); |
41 | 39 |
42 function P1() { | 40 var regex05 = /(aa|aabaac|ba|b|c)*/; |
43 } | 41 shouldBe('regex05.exec("aabaac")', '["aaba", "ba"]'); |
44 | 42 |
45 P1.prototype.g = 42; | 43 var regex06 = /^(a+)\1*,\1+$/; |
| 44 shouldBe('"aaaaaaaaaa,aaaaaaaaaaaaaaa".replace(regex06,"$1")', '"aaaaa"'); |
46 | 45 |
47 function P2() { | 46 var regex07 = /(z)((a+)?(b+)?(c))*/; |
48 } | 47 shouldBe('regex07.exec("zaacbbbcac")', '["zaacbbbcac", "z", "ac", "a", undefined
, "c"]'); |
49 | 48 |
50 P2.prototype.g = 24; | 49 var regex08 = /(a*)*/; |
| 50 shouldBe('regex08.exec("b")', '["", undefined]'); |
51 | 51 |
52 var p1 = new P1(); | 52 var regex09 = /(a*)b\1+/; |
53 var p2 = new P2(); | 53 shouldBe('regex09.exec("baaaac")', '["b", ""]'); |
54 | 54 |
55 p1.f = 1; | 55 var regex10 = /(?=(a+))/; |
56 p2.f = 2; | 56 shouldBe('regex10.exec("baaabac")', '["", "aaa"]'); |
57 | 57 |
58 for (var i = 0; i < 200; ++i) { | 58 var regex11 = /(?=(a+))a*b\1/; |
59 var p = (i % 2) ? p1 : p2; | 59 shouldBe('regex11.exec("baaabac")', '["aba", "a"]'); |
60 var expected = (i % 2) ? 44 : 27; | |
61 if (i == 150) { | |
62 // Cause first the watchpoint on o.f to fire, and then the GetById | |
63 // to be reset. | |
64 O.prototype.g = 57; // Fire the watchpoint. | |
65 P1.prototype.h = 58; // Reset the GetById. | |
66 P2.prototype.h = 59; // Not necessary, but what the heck - this resets t
he GetById even more. | |
67 } | |
68 shouldBe("foo(o, p)", "" + expected); | |
69 } | |
70 | 60 |
| 61 var regex12 = /(.*?)a(?!(a+)b\2c)\2(.*)/; |
| 62 shouldBe('regex12.exec("baaabaac")', '["baaabaac", "ba", undefined, "abaac"]'); |
OLD | NEW |