OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 12 matching lines...) Expand all Loading... |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 | 28 |
29 #include <stdlib.h> | 29 #include <stdlib.h> |
30 | 30 |
31 #include "v8.h" | 31 #include "v8.h" |
32 | 32 |
| 33 #include "string-stream.h" |
| 34 #include "cctest.h" |
| 35 #include "zone-inl.h" |
| 36 #include "parser.h" |
33 #include "ast.h" | 37 #include "ast.h" |
34 #include "char-predicates-inl.h" | |
35 #include "cctest.h" | |
36 #include "jsregexp.h" | 38 #include "jsregexp.h" |
37 #include "parser.h" | |
38 #include "regexp-macro-assembler.h" | 39 #include "regexp-macro-assembler.h" |
39 #include "regexp-macro-assembler-irregexp.h" | 40 #include "regexp-macro-assembler-irregexp.h" |
40 #include "string-stream.h" | |
41 #include "zone-inl.h" | |
42 #ifdef V8_INTERPRETED_REGEXP | 41 #ifdef V8_INTERPRETED_REGEXP |
43 #include "interpreter-irregexp.h" | 42 #include "interpreter-irregexp.h" |
44 #else // V8_INTERPRETED_REGEXP | 43 #else // V8_INTERPRETED_REGEXP |
45 #include "macro-assembler.h" | 44 #include "macro-assembler.h" |
46 #include "code.h" | 45 #include "code.h" |
47 #ifdef V8_TARGET_ARCH_ARM | 46 #ifdef V8_TARGET_ARCH_ARM |
48 #include "arm/assembler-arm.h" | 47 #include "arm/assembler-arm.h" |
49 #include "arm/macro-assembler-arm.h" | 48 #include "arm/macro-assembler-arm.h" |
50 #include "arm/regexp-macro-assembler-arm.h" | 49 #include "arm/regexp-macro-assembler-arm.h" |
51 #endif | 50 #endif |
(...skipping 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1824 bool in_second = CharacterInSet(&l2, i); | 1823 bool in_second = CharacterInSet(&l2, i); |
1825 CHECK((in_first || in_second) == CharacterInSet(&all, i)); | 1824 CHECK((in_first || in_second) == CharacterInSet(&all, i)); |
1826 } | 1825 } |
1827 } | 1826 } |
1828 | 1827 |
1829 | 1828 |
1830 TEST(Graph) { | 1829 TEST(Graph) { |
1831 V8::Initialize(NULL); | 1830 V8::Initialize(NULL); |
1832 Execute("\\b\\w+\\b", false, true, true); | 1831 Execute("\\b\\w+\\b", false, true, true); |
1833 } | 1832 } |
OLD | NEW |