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

Side by Side Diff: test/cctest/test-regexp.cc

Issue 10534139: One Zone per CompilationInfo. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "ia32/regexp-macro-assembler-ia32.h" 65 #include "ia32/regexp-macro-assembler-ia32.h"
66 #endif 66 #endif
67 #endif // V8_INTERPRETED_REGEXP 67 #endif // V8_INTERPRETED_REGEXP
68 68
69 using namespace v8::internal; 69 using namespace v8::internal;
70 70
71 71
72 static bool CheckParse(const char* input) { 72 static bool CheckParse(const char* input) {
73 V8::Initialize(NULL); 73 V8::Initialize(NULL);
74 v8::HandleScope scope; 74 v8::HandleScope scope;
75 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 75 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
76 FlatStringReader reader(Isolate::Current(), CStrVector(input)); 76 FlatStringReader reader(Isolate::Current(), CStrVector(input));
77 RegExpCompileData result; 77 RegExpCompileData result;
78 return v8::internal::RegExpParser::ParseRegExp(&reader, false, &result); 78 return v8::internal::RegExpParser::ParseRegExp(
79 &reader, false, &result, Isolate::Current()->runtime_zone());
79 } 80 }
80 81
81 82
82 static SmartArrayPointer<const char> Parse(const char* input) { 83 static SmartArrayPointer<const char> Parse(const char* input) {
83 V8::Initialize(NULL); 84 V8::Initialize(NULL);
84 v8::HandleScope scope; 85 v8::HandleScope scope;
85 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 86 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
86 FlatStringReader reader(Isolate::Current(), CStrVector(input)); 87 FlatStringReader reader(Isolate::Current(), CStrVector(input));
87 RegExpCompileData result; 88 RegExpCompileData result;
88 CHECK(v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 89 CHECK(v8::internal::RegExpParser::ParseRegExp(
90 &reader, false, &result, Isolate::Current()->runtime_zone()));
89 CHECK(result.tree != NULL); 91 CHECK(result.tree != NULL);
90 CHECK(result.error.is_null()); 92 CHECK(result.error.is_null());
91 SmartArrayPointer<const char> output = 93 SmartArrayPointer<const char> output =
92 result.tree->ToString(Isolate::Current()->zone()); 94 result.tree->ToString(Isolate::Current()->runtime_zone());
93 return output; 95 return output;
94 } 96 }
95 97
96 static bool CheckSimple(const char* input) { 98 static bool CheckSimple(const char* input) {
97 V8::Initialize(NULL); 99 V8::Initialize(NULL);
98 v8::HandleScope scope; 100 v8::HandleScope scope;
99 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input)); 101 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input));
100 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 102 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
101 FlatStringReader reader(Isolate::Current(), CStrVector(input)); 103 FlatStringReader reader(Isolate::Current(), CStrVector(input));
102 RegExpCompileData result; 104 RegExpCompileData result;
103 CHECK(v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 105 CHECK(v8::internal::RegExpParser::ParseRegExp(
106 &reader, false, &result, Isolate::Current()->runtime_zone()));
104 CHECK(result.tree != NULL); 107 CHECK(result.tree != NULL);
105 CHECK(result.error.is_null()); 108 CHECK(result.error.is_null());
106 return result.simple; 109 return result.simple;
107 } 110 }
108 111
109 struct MinMaxPair { 112 struct MinMaxPair {
110 int min_match; 113 int min_match;
111 int max_match; 114 int max_match;
112 }; 115 };
113 116
114 static MinMaxPair CheckMinMaxMatch(const char* input) { 117 static MinMaxPair CheckMinMaxMatch(const char* input) {
115 V8::Initialize(NULL); 118 V8::Initialize(NULL);
116 v8::HandleScope scope; 119 v8::HandleScope scope;
117 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input)); 120 unibrow::Utf8InputBuffer<> buffer(input, StrLength(input));
118 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 121 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
119 FlatStringReader reader(Isolate::Current(), CStrVector(input)); 122 FlatStringReader reader(Isolate::Current(), CStrVector(input));
120 RegExpCompileData result; 123 RegExpCompileData result;
121 CHECK(v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 124 CHECK(v8::internal::RegExpParser::ParseRegExp(
125 &reader, false, &result, Isolate::Current()->runtime_zone()));
122 CHECK(result.tree != NULL); 126 CHECK(result.tree != NULL);
123 CHECK(result.error.is_null()); 127 CHECK(result.error.is_null());
124 int min_match = result.tree->min_match(); 128 int min_match = result.tree->min_match();
125 int max_match = result.tree->max_match(); 129 int max_match = result.tree->max_match();
126 MinMaxPair pair = { min_match, max_match }; 130 MinMaxPair pair = { min_match, max_match };
127 return pair; 131 return pair;
128 } 132 }
129 133
130 134
131 #define CHECK_PARSE_ERROR(input) CHECK(!CheckParse(input)) 135 #define CHECK_PARSE_ERROR(input) CHECK(!CheckParse(input))
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 CHECK_PARSE_EQ("[A-Z$-][x]", "(! [A-Z $ -] [x])"); 383 CHECK_PARSE_EQ("[A-Z$-][x]", "(! [A-Z $ -] [x])");
380 CHECK_PARSE_EQ("a{3,4*}", "(: 'a{3,' (# 0 - g '4') '}')"); 384 CHECK_PARSE_EQ("a{3,4*}", "(: 'a{3,' (# 0 - g '4') '}')");
381 CHECK_PARSE_EQ("{", "'{'"); 385 CHECK_PARSE_EQ("{", "'{'");
382 CHECK_PARSE_EQ("a|", "(| 'a' %)"); 386 CHECK_PARSE_EQ("a|", "(| 'a' %)");
383 } 387 }
384 388
385 static void ExpectError(const char* input, 389 static void ExpectError(const char* input,
386 const char* expected) { 390 const char* expected) {
387 V8::Initialize(NULL); 391 V8::Initialize(NULL);
388 v8::HandleScope scope; 392 v8::HandleScope scope;
389 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 393 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
390 FlatStringReader reader(Isolate::Current(), CStrVector(input)); 394 FlatStringReader reader(Isolate::Current(), CStrVector(input));
391 RegExpCompileData result; 395 RegExpCompileData result;
392 CHECK(!v8::internal::RegExpParser::ParseRegExp(&reader, false, &result)); 396 CHECK(!v8::internal::RegExpParser::ParseRegExp(
397 &reader, false, &result, Isolate::Current()->runtime_zone()));
393 CHECK(result.tree == NULL); 398 CHECK(result.tree == NULL);
394 CHECK(!result.error.is_null()); 399 CHECK(!result.error.is_null());
395 SmartArrayPointer<char> str = result.error->ToCString(ALLOW_NULLS); 400 SmartArrayPointer<char> str = result.error->ToCString(ALLOW_NULLS);
396 CHECK_EQ(expected, *str); 401 CHECK_EQ(expected, *str);
397 } 402 }
398 403
399 404
400 TEST(Errors) { 405 TEST(Errors) {
401 V8::Initialize(NULL); 406 V8::Initialize(NULL);
402 const char* kEndBackslash = "\\ at end of pattern"; 407 const char* kEndBackslash = "\\ at end of pattern";
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 return !IsWhiteSpace(c); 467 return !IsWhiteSpace(c);
463 } 468 }
464 469
465 470
466 static bool NotWord(uc16 c) { 471 static bool NotWord(uc16 c) {
467 return !IsRegExpWord(c); 472 return !IsRegExpWord(c);
468 } 473 }
469 474
470 475
471 static void TestCharacterClassEscapes(uc16 c, bool (pred)(uc16 c)) { 476 static void TestCharacterClassEscapes(uc16 c, bool (pred)(uc16 c)) {
472 ZoneScope scope(Isolate::Current(), DELETE_ON_EXIT); 477 ZoneScope scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
473 Zone* zone = Isolate::Current()->zone(); 478 Zone* zone = Isolate::Current()->runtime_zone();
474 ZoneList<CharacterRange>* ranges = 479 ZoneList<CharacterRange>* ranges =
475 new(zone) ZoneList<CharacterRange>(2, zone); 480 new(zone) ZoneList<CharacterRange>(2, zone);
476 CharacterRange::AddClassEscape(c, ranges, zone); 481 CharacterRange::AddClassEscape(c, ranges, zone);
477 for (unsigned i = 0; i < (1 << 16); i++) { 482 for (unsigned i = 0; i < (1 << 16); i++) {
478 bool in_class = false; 483 bool in_class = false;
479 for (int j = 0; !in_class && j < ranges->length(); j++) { 484 for (int j = 0; !in_class && j < ranges->length(); j++) {
480 CharacterRange& range = ranges->at(j); 485 CharacterRange& range = ranges->at(j);
481 in_class = (range.from() <= i && i <= range.to()); 486 in_class = (range.from() <= i && i <= range.to());
482 } 487 }
483 CHECK_EQ(pred(i), in_class); 488 CHECK_EQ(pred(i), in_class);
(...skipping 12 matching lines...) Expand all
496 TestCharacterClassEscapes('W', NotWord); 501 TestCharacterClassEscapes('W', NotWord);
497 } 502 }
498 503
499 504
500 static RegExpNode* Compile(const char* input, bool multiline, bool is_ascii) { 505 static RegExpNode* Compile(const char* input, bool multiline, bool is_ascii) {
501 V8::Initialize(NULL); 506 V8::Initialize(NULL);
502 Isolate* isolate = Isolate::Current(); 507 Isolate* isolate = Isolate::Current();
503 FlatStringReader reader(isolate, CStrVector(input)); 508 FlatStringReader reader(isolate, CStrVector(input));
504 RegExpCompileData compile_data; 509 RegExpCompileData compile_data;
505 if (!v8::internal::RegExpParser::ParseRegExp(&reader, multiline, 510 if (!v8::internal::RegExpParser::ParseRegExp(&reader, multiline,
506 &compile_data)) 511 &compile_data,
512 isolate->runtime_zone()))
507 return NULL; 513 return NULL;
508 Handle<String> pattern = isolate->factory()-> 514 Handle<String> pattern = isolate->factory()->
509 NewStringFromUtf8(CStrVector(input)); 515 NewStringFromUtf8(CStrVector(input));
510 Handle<String> sample_subject = 516 Handle<String> sample_subject =
511 isolate->factory()->NewStringFromUtf8(CStrVector("")); 517 isolate->factory()->NewStringFromUtf8(CStrVector(""));
512 RegExpEngine::Compile(&compile_data, 518 RegExpEngine::Compile(&compile_data,
513 false, 519 false,
514 false, 520 false,
515 multiline, 521 multiline,
516 pattern, 522 pattern,
517 sample_subject, 523 sample_subject,
518 is_ascii, 524 is_ascii,
519 isolate->zone()); 525 isolate->runtime_zone());
520 return compile_data.node; 526 return compile_data.node;
521 } 527 }
522 528
523 529
524 static void Execute(const char* input, 530 static void Execute(const char* input,
525 bool multiline, 531 bool multiline,
526 bool is_ascii, 532 bool is_ascii,
527 bool dot_output = false) { 533 bool dot_output = false) {
528 v8::HandleScope scope; 534 v8::HandleScope scope;
529 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 535 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
530 RegExpNode* node = Compile(input, multiline, is_ascii); 536 RegExpNode* node = Compile(input, multiline, is_ascii);
531 USE(node); 537 USE(node);
532 #ifdef DEBUG 538 #ifdef DEBUG
533 if (dot_output) { 539 if (dot_output) {
534 RegExpEngine::DotPrint(input, node, false); 540 RegExpEngine::DotPrint(input, node, false);
535 exit(0); 541 exit(0);
536 } 542 }
537 #endif // DEBUG 543 #endif // DEBUG
538 } 544 }
539 545
(...skipping 19 matching lines...) Expand all
559 565
560 566
561 static unsigned PseudoRandom(int i, int j) { 567 static unsigned PseudoRandom(int i, int j) {
562 return ~(~((i * 781) ^ (j * 329))); 568 return ~(~((i * 781) ^ (j * 329)));
563 } 569 }
564 570
565 571
566 TEST(SplayTreeSimple) { 572 TEST(SplayTreeSimple) {
567 v8::internal::V8::Initialize(NULL); 573 v8::internal::V8::Initialize(NULL);
568 static const unsigned kLimit = 1000; 574 static const unsigned kLimit = 1000;
569 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 575 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
570 ZoneSplayTree<TestConfig> tree(Isolate::Current()->zone()); 576 ZoneSplayTree<TestConfig> tree(Isolate::Current()->runtime_zone());
571 bool seen[kLimit]; 577 bool seen[kLimit];
572 for (unsigned i = 0; i < kLimit; i++) seen[i] = false; 578 for (unsigned i = 0; i < kLimit; i++) seen[i] = false;
573 #define CHECK_MAPS_EQUAL() do { \ 579 #define CHECK_MAPS_EQUAL() do { \
574 for (unsigned k = 0; k < kLimit; k++) \ 580 for (unsigned k = 0; k < kLimit; k++) \
575 CHECK_EQ(seen[k], tree.Find(k, &loc)); \ 581 CHECK_EQ(seen[k], tree.Find(k, &loc)); \
576 } while (false) 582 } while (false)
577 for (int i = 0; i < 50; i++) { 583 for (int i = 0; i < 50; i++) {
578 for (int j = 0; j < 50; j++) { 584 for (int j = 0; j < 50; j++) {
579 unsigned next = PseudoRandom(i, j) % kLimit; 585 unsigned next = PseudoRandom(i, j) % kLimit;
580 if (seen[next]) { 586 if (seen[next]) {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 Vector<uc16> range(ranges[i], 2 * kRangeSize); 633 Vector<uc16> range(ranges[i], 2 * kRangeSize);
628 for (int j = 0; j < 2 * kRangeSize; j++) { 634 for (int j = 0; j < 2 * kRangeSize; j++) {
629 range[j] = PseudoRandom(i + 25, j + 87) % kLimit; 635 range[j] = PseudoRandom(i + 25, j + 87) % kLimit;
630 } 636 }
631 range.Sort(); 637 range.Sort();
632 for (int j = 1; j < 2 * kRangeSize; j++) { 638 for (int j = 1; j < 2 * kRangeSize; j++) {
633 CHECK(range[j-1] <= range[j]); 639 CHECK(range[j-1] <= range[j]);
634 } 640 }
635 } 641 }
636 // Enter test data into dispatch table. 642 // Enter test data into dispatch table.
637 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 643 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
638 DispatchTable table(Isolate::Current()->zone()); 644 DispatchTable table(Isolate::Current()->runtime_zone());
639 for (int i = 0; i < kRangeCount; i++) { 645 for (int i = 0; i < kRangeCount; i++) {
640 uc16* range = ranges[i]; 646 uc16* range = ranges[i];
641 for (int j = 0; j < 2 * kRangeSize; j += 2) 647 for (int j = 0; j < 2 * kRangeSize; j += 2)
642 table.AddRange(CharacterRange(range[j], range[j + 1]), i, 648 table.AddRange(CharacterRange(range[j], range[j + 1]), i,
643 Isolate::Current()->zone()); 649 Isolate::Current()->runtime_zone());
644 } 650 }
645 // Check that the table looks as we would expect 651 // Check that the table looks as we would expect
646 for (int p = 0; p < kLimit; p++) { 652 for (int p = 0; p < kLimit; p++) {
647 OutSet* outs = table.Get(p); 653 OutSet* outs = table.Get(p);
648 for (int j = 0; j < kRangeCount; j++) { 654 for (int j = 0; j < kRangeCount; j++) {
649 uc16* range = ranges[j]; 655 uc16* range = ranges[j];
650 bool is_on = false; 656 bool is_on = false;
651 for (int k = 0; !is_on && (k < 2 * kRangeSize); k += 2) 657 for (int k = 0; !is_on && (k < 2 * kRangeSize); k += 2)
652 is_on = (range[k] <= p && p <= range[k + 1]); 658 is_on = (range[k] <= p && p <= range[k + 1]);
653 CHECK_EQ(is_on, outs->Get(j)); 659 CHECK_EQ(is_on, outs->Get(j));
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 typedef RegExpMacroAssemblerX64 ArchRegExpMacroAssembler; 701 typedef RegExpMacroAssemblerX64 ArchRegExpMacroAssembler;
696 #elif V8_TARGET_ARCH_ARM 702 #elif V8_TARGET_ARCH_ARM
697 typedef RegExpMacroAssemblerARM ArchRegExpMacroAssembler; 703 typedef RegExpMacroAssemblerARM ArchRegExpMacroAssembler;
698 #elif V8_TARGET_ARCH_MIPS 704 #elif V8_TARGET_ARCH_MIPS
699 typedef RegExpMacroAssemblerMIPS ArchRegExpMacroAssembler; 705 typedef RegExpMacroAssemblerMIPS ArchRegExpMacroAssembler;
700 #endif 706 #endif
701 707
702 class ContextInitializer { 708 class ContextInitializer {
703 public: 709 public:
704 ContextInitializer() 710 ContextInitializer()
705 : env_(), scope_(), zone_(Isolate::Current(), DELETE_ON_EXIT) { 711 : env_(), scope_(), zone_(Isolate::Current()->runtime_zone(),
712 DELETE_ON_EXIT) {
706 env_ = v8::Context::New(); 713 env_ = v8::Context::New();
707 env_->Enter(); 714 env_->Enter();
708 } 715 }
709 ~ContextInitializer() { 716 ~ContextInitializer() {
710 env_->Exit(); 717 env_->Exit();
711 env_.Dispose(); 718 env_.Dispose();
712 } 719 }
713 private: 720 private:
714 v8::Persistent<v8::Context> env_; 721 v8::Persistent<v8::Context> env_;
715 v8::HandleScope scope_; 722 v8::HandleScope scope_;
(...skipping 18 matching lines...) Expand all
734 Isolate::Current()); 741 Isolate::Current());
735 } 742 }
736 743
737 744
738 TEST(MacroAssemblerNativeSuccess) { 745 TEST(MacroAssemblerNativeSuccess) {
739 v8::V8::Initialize(); 746 v8::V8::Initialize();
740 ContextInitializer initializer; 747 ContextInitializer initializer;
741 Factory* factory = Isolate::Current()->factory(); 748 Factory* factory = Isolate::Current()->factory();
742 749
743 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4, 750 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4,
744 Isolate::Current()->zone()); 751 Isolate::Current()->runtime_zone());
745 752
746 m.Succeed(); 753 m.Succeed();
747 754
748 Handle<String> source = factory->NewStringFromAscii(CStrVector("")); 755 Handle<String> source = factory->NewStringFromAscii(CStrVector(""));
749 Handle<Object> code_object = m.GetCode(source); 756 Handle<Object> code_object = m.GetCode(source);
750 Handle<Code> code = Handle<Code>::cast(code_object); 757 Handle<Code> code = Handle<Code>::cast(code_object);
751 758
752 int captures[4] = {42, 37, 87, 117}; 759 int captures[4] = {42, 37, 87, 117};
753 Handle<String> input = factory->NewStringFromAscii(CStrVector("foofoo")); 760 Handle<String> input = factory->NewStringFromAscii(CStrVector("foofoo"));
754 Handle<SeqAsciiString> seq_input = Handle<SeqAsciiString>::cast(input); 761 Handle<SeqAsciiString> seq_input = Handle<SeqAsciiString>::cast(input);
(...skipping 15 matching lines...) Expand all
770 CHECK_EQ(-1, captures[3]); 777 CHECK_EQ(-1, captures[3]);
771 } 778 }
772 779
773 780
774 TEST(MacroAssemblerNativeSimple) { 781 TEST(MacroAssemblerNativeSimple) {
775 v8::V8::Initialize(); 782 v8::V8::Initialize();
776 ContextInitializer initializer; 783 ContextInitializer initializer;
777 Factory* factory = Isolate::Current()->factory(); 784 Factory* factory = Isolate::Current()->factory();
778 785
779 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4, 786 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4,
780 Isolate::Current()->zone()); 787 Isolate::Current()->runtime_zone());
781 788
782 uc16 foo_chars[3] = {'f', 'o', 'o'}; 789 uc16 foo_chars[3] = {'f', 'o', 'o'};
783 Vector<const uc16> foo(foo_chars, 3); 790 Vector<const uc16> foo(foo_chars, 3);
784 791
785 Label fail; 792 Label fail;
786 m.CheckCharacters(foo, 0, &fail, true); 793 m.CheckCharacters(foo, 0, &fail, true);
787 m.WriteCurrentPositionToRegister(0, 0); 794 m.WriteCurrentPositionToRegister(0, 0);
788 m.AdvanceCurrentPosition(3); 795 m.AdvanceCurrentPosition(3);
789 m.WriteCurrentPositionToRegister(1, 0); 796 m.WriteCurrentPositionToRegister(1, 0);
790 m.Succeed(); 797 m.Succeed();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result); 835 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result);
829 } 836 }
830 837
831 838
832 TEST(MacroAssemblerNativeSimpleUC16) { 839 TEST(MacroAssemblerNativeSimpleUC16) {
833 v8::V8::Initialize(); 840 v8::V8::Initialize();
834 ContextInitializer initializer; 841 ContextInitializer initializer;
835 Factory* factory = Isolate::Current()->factory(); 842 Factory* factory = Isolate::Current()->factory();
836 843
837 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4, 844 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4,
838 Isolate::Current()->zone()); 845 Isolate::Current()->runtime_zone());
839 846
840 uc16 foo_chars[3] = {'f', 'o', 'o'}; 847 uc16 foo_chars[3] = {'f', 'o', 'o'};
841 Vector<const uc16> foo(foo_chars, 3); 848 Vector<const uc16> foo(foo_chars, 3);
842 849
843 Label fail; 850 Label fail;
844 m.CheckCharacters(foo, 0, &fail, true); 851 m.CheckCharacters(foo, 0, &fail, true);
845 m.WriteCurrentPositionToRegister(0, 0); 852 m.WriteCurrentPositionToRegister(0, 0);
846 m.AdvanceCurrentPosition(3); 853 m.AdvanceCurrentPosition(3);
847 m.WriteCurrentPositionToRegister(1, 0); 854 m.WriteCurrentPositionToRegister(1, 0);
848 m.Succeed(); 855 m.Succeed();
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result); 898 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result);
892 } 899 }
893 900
894 901
895 TEST(MacroAssemblerNativeBacktrack) { 902 TEST(MacroAssemblerNativeBacktrack) {
896 v8::V8::Initialize(); 903 v8::V8::Initialize();
897 ContextInitializer initializer; 904 ContextInitializer initializer;
898 Factory* factory = Isolate::Current()->factory(); 905 Factory* factory = Isolate::Current()->factory();
899 906
900 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0, 907 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0,
901 Isolate::Current()->zone()); 908 Isolate::Current()->runtime_zone());
902 909
903 Label fail; 910 Label fail;
904 Label backtrack; 911 Label backtrack;
905 m.LoadCurrentCharacter(10, &fail); 912 m.LoadCurrentCharacter(10, &fail);
906 m.Succeed(); 913 m.Succeed();
907 m.Bind(&fail); 914 m.Bind(&fail);
908 m.PushBacktrack(&backtrack); 915 m.PushBacktrack(&backtrack);
909 m.LoadCurrentCharacter(10, NULL); 916 m.LoadCurrentCharacter(10, NULL);
910 m.Succeed(); 917 m.Succeed();
911 m.Bind(&backtrack); 918 m.Bind(&backtrack);
(...skipping 18 matching lines...) Expand all
930 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result); 937 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result);
931 } 938 }
932 939
933 940
934 TEST(MacroAssemblerNativeBackReferenceASCII) { 941 TEST(MacroAssemblerNativeBackReferenceASCII) {
935 v8::V8::Initialize(); 942 v8::V8::Initialize();
936 ContextInitializer initializer; 943 ContextInitializer initializer;
937 Factory* factory = Isolate::Current()->factory(); 944 Factory* factory = Isolate::Current()->factory();
938 945
939 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4, 946 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4,
940 Isolate::Current()->zone()); 947 Isolate::Current()->runtime_zone());
941 948
942 m.WriteCurrentPositionToRegister(0, 0); 949 m.WriteCurrentPositionToRegister(0, 0);
943 m.AdvanceCurrentPosition(2); 950 m.AdvanceCurrentPosition(2);
944 m.WriteCurrentPositionToRegister(1, 0); 951 m.WriteCurrentPositionToRegister(1, 0);
945 Label nomatch; 952 Label nomatch;
946 m.CheckNotBackReference(0, &nomatch); 953 m.CheckNotBackReference(0, &nomatch);
947 m.Fail(); 954 m.Fail();
948 m.Bind(&nomatch); 955 m.Bind(&nomatch);
949 m.AdvanceCurrentPosition(2); 956 m.AdvanceCurrentPosition(2);
950 Label missing_match; 957 Label missing_match;
(...skipping 27 matching lines...) Expand all
978 CHECK_EQ(-1, output[3]); 985 CHECK_EQ(-1, output[3]);
979 } 986 }
980 987
981 988
982 TEST(MacroAssemblerNativeBackReferenceUC16) { 989 TEST(MacroAssemblerNativeBackReferenceUC16) {
983 v8::V8::Initialize(); 990 v8::V8::Initialize();
984 ContextInitializer initializer; 991 ContextInitializer initializer;
985 Factory* factory = Isolate::Current()->factory(); 992 Factory* factory = Isolate::Current()->factory();
986 993
987 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4, 994 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4,
988 Isolate::Current()->zone()); 995 Isolate::Current()->runtime_zone());
989 996
990 m.WriteCurrentPositionToRegister(0, 0); 997 m.WriteCurrentPositionToRegister(0, 0);
991 m.AdvanceCurrentPosition(2); 998 m.AdvanceCurrentPosition(2);
992 m.WriteCurrentPositionToRegister(1, 0); 999 m.WriteCurrentPositionToRegister(1, 0);
993 Label nomatch; 1000 Label nomatch;
994 m.CheckNotBackReference(0, &nomatch); 1001 m.CheckNotBackReference(0, &nomatch);
995 m.Fail(); 1002 m.Fail();
996 m.Bind(&nomatch); 1003 m.Bind(&nomatch);
997 m.AdvanceCurrentPosition(2); 1004 m.AdvanceCurrentPosition(2);
998 Label missing_match; 1005 Label missing_match;
(...skipping 30 matching lines...) Expand all
1029 } 1036 }
1030 1037
1031 1038
1032 1039
1033 TEST(MacroAssemblernativeAtStart) { 1040 TEST(MacroAssemblernativeAtStart) {
1034 v8::V8::Initialize(); 1041 v8::V8::Initialize();
1035 ContextInitializer initializer; 1042 ContextInitializer initializer;
1036 Factory* factory = Isolate::Current()->factory(); 1043 Factory* factory = Isolate::Current()->factory();
1037 1044
1038 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0, 1045 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0,
1039 Isolate::Current()->zone()); 1046 Isolate::Current()->runtime_zone());
1040 1047
1041 Label not_at_start, newline, fail; 1048 Label not_at_start, newline, fail;
1042 m.CheckNotAtStart(&not_at_start); 1049 m.CheckNotAtStart(&not_at_start);
1043 // Check that prevchar = '\n' and current = 'f'. 1050 // Check that prevchar = '\n' and current = 'f'.
1044 m.CheckCharacter('\n', &newline); 1051 m.CheckCharacter('\n', &newline);
1045 m.Bind(&fail); 1052 m.Bind(&fail);
1046 m.Fail(); 1053 m.Fail();
1047 m.Bind(&newline); 1054 m.Bind(&newline);
1048 m.LoadCurrentCharacter(0, &fail); 1055 m.LoadCurrentCharacter(0, &fail);
1049 m.CheckNotCharacter('f', &fail); 1056 m.CheckNotCharacter('f', &fail);
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 CHECK_EQ(NativeRegExpMacroAssembler::SUCCESS, result); 1094 CHECK_EQ(NativeRegExpMacroAssembler::SUCCESS, result);
1088 } 1095 }
1089 1096
1090 1097
1091 TEST(MacroAssemblerNativeBackRefNoCase) { 1098 TEST(MacroAssemblerNativeBackRefNoCase) {
1092 v8::V8::Initialize(); 1099 v8::V8::Initialize();
1093 ContextInitializer initializer; 1100 ContextInitializer initializer;
1094 Factory* factory = Isolate::Current()->factory(); 1101 Factory* factory = Isolate::Current()->factory();
1095 1102
1096 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4, 1103 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4,
1097 Isolate::Current()->zone()); 1104 Isolate::Current()->runtime_zone());
1098 1105
1099 Label fail, succ; 1106 Label fail, succ;
1100 1107
1101 m.WriteCurrentPositionToRegister(0, 0); 1108 m.WriteCurrentPositionToRegister(0, 0);
1102 m.WriteCurrentPositionToRegister(2, 0); 1109 m.WriteCurrentPositionToRegister(2, 0);
1103 m.AdvanceCurrentPosition(3); 1110 m.AdvanceCurrentPosition(3);
1104 m.WriteCurrentPositionToRegister(3, 0); 1111 m.WriteCurrentPositionToRegister(3, 0);
1105 m.CheckNotBackReferenceIgnoreCase(2, &fail); // Match "AbC". 1112 m.CheckNotBackReferenceIgnoreCase(2, &fail); // Match "AbC".
1106 m.CheckNotBackReferenceIgnoreCase(2, &fail); // Match "ABC". 1113 m.CheckNotBackReferenceIgnoreCase(2, &fail); // Match "ABC".
1107 Label expected_fail; 1114 Label expected_fail;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 } 1152 }
1146 1153
1147 1154
1148 1155
1149 TEST(MacroAssemblerNativeRegisters) { 1156 TEST(MacroAssemblerNativeRegisters) {
1150 v8::V8::Initialize(); 1157 v8::V8::Initialize();
1151 ContextInitializer initializer; 1158 ContextInitializer initializer;
1152 Factory* factory = Isolate::Current()->factory(); 1159 Factory* factory = Isolate::Current()->factory();
1153 1160
1154 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 6, 1161 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 6,
1155 Isolate::Current()->zone()); 1162 Isolate::Current()->runtime_zone());
1156 1163
1157 uc16 foo_chars[3] = {'f', 'o', 'o'}; 1164 uc16 foo_chars[3] = {'f', 'o', 'o'};
1158 Vector<const uc16> foo(foo_chars, 3); 1165 Vector<const uc16> foo(foo_chars, 3);
1159 1166
1160 enum registers { out1, out2, out3, out4, out5, out6, sp, loop_cnt }; 1167 enum registers { out1, out2, out3, out4, out5, out6, sp, loop_cnt };
1161 Label fail; 1168 Label fail;
1162 Label backtrack; 1169 Label backtrack;
1163 m.WriteCurrentPositionToRegister(out1, 0); // Output: [0] 1170 m.WriteCurrentPositionToRegister(out1, 0); // Output: [0]
1164 m.PushRegister(out1, RegExpMacroAssembler::kNoStackLimitCheck); 1171 m.PushRegister(out1, RegExpMacroAssembler::kNoStackLimitCheck);
1165 m.PushBacktrack(&backtrack); 1172 m.PushBacktrack(&backtrack);
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 } 1255 }
1249 1256
1250 1257
1251 TEST(MacroAssemblerStackOverflow) { 1258 TEST(MacroAssemblerStackOverflow) {
1252 v8::V8::Initialize(); 1259 v8::V8::Initialize();
1253 ContextInitializer initializer; 1260 ContextInitializer initializer;
1254 Isolate* isolate = Isolate::Current(); 1261 Isolate* isolate = Isolate::Current();
1255 Factory* factory = isolate->factory(); 1262 Factory* factory = isolate->factory();
1256 1263
1257 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0, 1264 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 0,
1258 Isolate::Current()->zone()); 1265 Isolate::Current()->runtime_zone());
1259 1266
1260 Label loop; 1267 Label loop;
1261 m.Bind(&loop); 1268 m.Bind(&loop);
1262 m.PushBacktrack(&loop); 1269 m.PushBacktrack(&loop);
1263 m.GoTo(&loop); 1270 m.GoTo(&loop);
1264 1271
1265 Handle<String> source = 1272 Handle<String> source =
1266 factory->NewStringFromAscii(CStrVector("<stack overflow test>")); 1273 factory->NewStringFromAscii(CStrVector("<stack overflow test>"));
1267 Handle<Object> code_object = m.GetCode(source); 1274 Handle<Object> code_object = m.GetCode(source);
1268 Handle<Code> code = Handle<Code>::cast(code_object); 1275 Handle<Code> code = Handle<Code>::cast(code_object);
(...skipping 18 matching lines...) Expand all
1287 } 1294 }
1288 1295
1289 1296
1290 TEST(MacroAssemblerNativeLotsOfRegisters) { 1297 TEST(MacroAssemblerNativeLotsOfRegisters) {
1291 v8::V8::Initialize(); 1298 v8::V8::Initialize();
1292 ContextInitializer initializer; 1299 ContextInitializer initializer;
1293 Isolate* isolate = Isolate::Current(); 1300 Isolate* isolate = Isolate::Current();
1294 Factory* factory = isolate->factory(); 1301 Factory* factory = isolate->factory();
1295 1302
1296 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 2, 1303 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 2,
1297 Isolate::Current()->zone()); 1304 Isolate::Current()->runtime_zone());
1298 1305
1299 // At least 2048, to ensure the allocated space for registers 1306 // At least 2048, to ensure the allocated space for registers
1300 // span one full page. 1307 // span one full page.
1301 const int large_number = 8000; 1308 const int large_number = 8000;
1302 m.WriteCurrentPositionToRegister(large_number, 42); 1309 m.WriteCurrentPositionToRegister(large_number, 42);
1303 m.WriteCurrentPositionToRegister(0, 0); 1310 m.WriteCurrentPositionToRegister(0, 0);
1304 m.WriteCurrentPositionToRegister(1, 1); 1311 m.WriteCurrentPositionToRegister(1, 1);
1305 Label done; 1312 Label done;
1306 m.CheckNotBackReference(0, &done); // Performs a system-stack push. 1313 m.CheckNotBackReference(0, &done); // Performs a system-stack push.
1307 m.Bind(&done); 1314 m.Bind(&done);
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1404 } 1411 }
1405 1412
1406 #endif // V8_INTERPRETED_REGEXP 1413 #endif // V8_INTERPRETED_REGEXP
1407 1414
1408 1415
1409 TEST(AddInverseToTable) { 1416 TEST(AddInverseToTable) {
1410 v8::internal::V8::Initialize(NULL); 1417 v8::internal::V8::Initialize(NULL);
1411 static const int kLimit = 1000; 1418 static const int kLimit = 1000;
1412 static const int kRangeCount = 16; 1419 static const int kRangeCount = 16;
1413 for (int t = 0; t < 10; t++) { 1420 for (int t = 0; t < 10; t++) {
1414 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 1421 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1415 Zone* zone = Isolate::Current()->zone(); 1422 Zone* zone = Isolate::Current()->runtime_zone();
1416 ZoneList<CharacterRange>* ranges = 1423 ZoneList<CharacterRange>* ranges =
1417 new(zone) 1424 new(zone)
1418 ZoneList<CharacterRange>(kRangeCount, zone); 1425 ZoneList<CharacterRange>(kRangeCount, zone);
1419 for (int i = 0; i < kRangeCount; i++) { 1426 for (int i = 0; i < kRangeCount; i++) {
1420 int from = PseudoRandom(t + 87, i + 25) % kLimit; 1427 int from = PseudoRandom(t + 87, i + 25) % kLimit;
1421 int to = from + (PseudoRandom(i + 87, t + 25) % (kLimit / 20)); 1428 int to = from + (PseudoRandom(i + 87, t + 25) % (kLimit / 20));
1422 if (to > kLimit) to = kLimit; 1429 if (to > kLimit) to = kLimit;
1423 ranges->Add(CharacterRange(from, to), zone); 1430 ranges->Add(CharacterRange(from, to), zone);
1424 } 1431 }
1425 DispatchTable table(zone); 1432 DispatchTable table(zone);
1426 DispatchTableConstructor cons(&table, false, Isolate::Current()->zone()); 1433 DispatchTableConstructor cons(&table, false,
1434 Isolate::Current()->runtime_zone());
1427 cons.set_choice_index(0); 1435 cons.set_choice_index(0);
1428 cons.AddInverse(ranges); 1436 cons.AddInverse(ranges);
1429 for (int i = 0; i < kLimit; i++) { 1437 for (int i = 0; i < kLimit; i++) {
1430 bool is_on = false; 1438 bool is_on = false;
1431 for (int j = 0; !is_on && j < kRangeCount; j++) 1439 for (int j = 0; !is_on && j < kRangeCount; j++)
1432 is_on = ranges->at(j).Contains(i); 1440 is_on = ranges->at(j).Contains(i);
1433 OutSet* set = table.Get(i); 1441 OutSet* set = table.Get(i);
1434 CHECK_EQ(is_on, set->Get(0) == false); 1442 CHECK_EQ(is_on, set->Get(0) == false);
1435 } 1443 }
1436 } 1444 }
1437 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 1445 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1438 Zone* zone = Isolate::Current()->zone(); 1446 Zone* zone = Isolate::Current()->runtime_zone();
1439 ZoneList<CharacterRange>* ranges = 1447 ZoneList<CharacterRange>* ranges =
1440 new(zone) ZoneList<CharacterRange>(1, zone); 1448 new(zone) ZoneList<CharacterRange>(1, zone);
1441 ranges->Add(CharacterRange(0xFFF0, 0xFFFE), zone); 1449 ranges->Add(CharacterRange(0xFFF0, 0xFFFE), zone);
1442 DispatchTable table(zone); 1450 DispatchTable table(zone);
1443 DispatchTableConstructor cons(&table, false, Isolate::Current()->zone()); 1451 DispatchTableConstructor cons(&table, false,
1452 Isolate::Current()->runtime_zone());
1444 cons.set_choice_index(0); 1453 cons.set_choice_index(0);
1445 cons.AddInverse(ranges); 1454 cons.AddInverse(ranges);
1446 CHECK(!table.Get(0xFFFE)->Get(0)); 1455 CHECK(!table.Get(0xFFFE)->Get(0));
1447 CHECK(table.Get(0xFFFF)->Get(0)); 1456 CHECK(table.Get(0xFFFF)->Get(0));
1448 } 1457 }
1449 1458
1450 1459
1451 static uc32 canonicalize(uc32 c) { 1460 static uc32 canonicalize(uc32 c) {
1452 unibrow::uchar canon[unibrow::Ecma262Canonicalize::kMaxWidth]; 1461 unibrow::uchar canon[unibrow::Ecma262Canonicalize::kMaxWidth];
1453 int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL); 1462 int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL);
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 CHECK_EQ(length, length2); 1550 CHECK_EQ(length, length2);
1542 for (int k = 0; k < length; k++) 1551 for (int k = 0; k < length; k++)
1543 CHECK_EQ(static_cast<int>(chars[k]), static_cast<int>(chars2[k])); 1552 CHECK_EQ(static_cast<int>(chars[k]), static_cast<int>(chars2[k]));
1544 } 1553 }
1545 } 1554 }
1546 } 1555 }
1547 1556
1548 1557
1549 static void TestRangeCaseIndependence(CharacterRange input, 1558 static void TestRangeCaseIndependence(CharacterRange input,
1550 Vector<CharacterRange> expected) { 1559 Vector<CharacterRange> expected) {
1551 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 1560 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1552 Zone* zone = Isolate::Current()->zone(); 1561 Zone* zone = Isolate::Current()->runtime_zone();
1553 int count = expected.length(); 1562 int count = expected.length();
1554 ZoneList<CharacterRange>* list = 1563 ZoneList<CharacterRange>* list =
1555 new(zone) ZoneList<CharacterRange>(count, zone); 1564 new(zone) ZoneList<CharacterRange>(count, zone);
1556 input.AddCaseEquivalents(list, false, zone); 1565 input.AddCaseEquivalents(list, false, zone);
1557 CHECK_EQ(count, list->length()); 1566 CHECK_EQ(count, list->length());
1558 for (int i = 0; i < list->length(); i++) { 1567 for (int i = 0; i < list->length(); i++) {
1559 CHECK_EQ(expected[i].from(), list->at(i).from()); 1568 CHECK_EQ(expected[i].from(), list->at(i).from());
1560 CHECK_EQ(expected[i].to(), list->at(i).to()); 1569 CHECK_EQ(expected[i].to(), list->at(i).to());
1561 } 1570 }
1562 } 1571 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1607 CharacterRange range = ranges->at(i); 1616 CharacterRange range = ranges->at(i);
1608 if (range.from() <= c && c <= range.to()) 1617 if (range.from() <= c && c <= range.to())
1609 return true; 1618 return true;
1610 } 1619 }
1611 return false; 1620 return false;
1612 } 1621 }
1613 1622
1614 1623
1615 TEST(CharClassDifference) { 1624 TEST(CharClassDifference) {
1616 v8::internal::V8::Initialize(NULL); 1625 v8::internal::V8::Initialize(NULL);
1617 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 1626 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1618 Zone* zone = Isolate::Current()->zone(); 1627 Zone* zone = Isolate::Current()->runtime_zone();
1619 ZoneList<CharacterRange>* base = 1628 ZoneList<CharacterRange>* base =
1620 new(zone) ZoneList<CharacterRange>(1, zone); 1629 new(zone) ZoneList<CharacterRange>(1, zone);
1621 base->Add(CharacterRange::Everything(), zone); 1630 base->Add(CharacterRange::Everything(), zone);
1622 Vector<const int> overlay = CharacterRange::GetWordBounds(); 1631 Vector<const int> overlay = CharacterRange::GetWordBounds();
1623 ZoneList<CharacterRange>* included = NULL; 1632 ZoneList<CharacterRange>* included = NULL;
1624 ZoneList<CharacterRange>* excluded = NULL; 1633 ZoneList<CharacterRange>* excluded = NULL;
1625 CharacterRange::Split(base, overlay, &included, &excluded, 1634 CharacterRange::Split(base, overlay, &included, &excluded,
1626 Isolate::Current()->zone()); 1635 Isolate::Current()->runtime_zone());
1627 for (int i = 0; i < (1 << 16); i++) { 1636 for (int i = 0; i < (1 << 16); i++) {
1628 bool in_base = InClass(i, base); 1637 bool in_base = InClass(i, base);
1629 if (in_base) { 1638 if (in_base) {
1630 bool in_overlay = false; 1639 bool in_overlay = false;
1631 for (int j = 0; !in_overlay && j < overlay.length(); j += 2) { 1640 for (int j = 0; !in_overlay && j < overlay.length(); j += 2) {
1632 if (overlay[j] <= i && i < overlay[j+1]) 1641 if (overlay[j] <= i && i < overlay[j+1])
1633 in_overlay = true; 1642 in_overlay = true;
1634 } 1643 }
1635 CHECK_EQ(in_overlay, InClass(i, included)); 1644 CHECK_EQ(in_overlay, InClass(i, included));
1636 CHECK_EQ(!in_overlay, InClass(i, excluded)); 1645 CHECK_EQ(!in_overlay, InClass(i, excluded));
1637 } else { 1646 } else {
1638 CHECK(!InClass(i, included)); 1647 CHECK(!InClass(i, included));
1639 CHECK(!InClass(i, excluded)); 1648 CHECK(!InClass(i, excluded));
1640 } 1649 }
1641 } 1650 }
1642 } 1651 }
1643 1652
1644 1653
1645 TEST(CanonicalizeCharacterSets) { 1654 TEST(CanonicalizeCharacterSets) {
1646 v8::internal::V8::Initialize(NULL); 1655 v8::internal::V8::Initialize(NULL);
1647 ZoneScope scope(Isolate::Current(), DELETE_ON_EXIT); 1656 ZoneScope scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1648 Zone* zone = Isolate::Current()->zone(); 1657 Zone* zone = Isolate::Current()->runtime_zone();
1649 ZoneList<CharacterRange>* list = 1658 ZoneList<CharacterRange>* list =
1650 new(zone) ZoneList<CharacterRange>(4, zone); 1659 new(zone) ZoneList<CharacterRange>(4, zone);
1651 CharacterSet set(list); 1660 CharacterSet set(list);
1652 1661
1653 list->Add(CharacterRange(10, 20), zone); 1662 list->Add(CharacterRange(10, 20), zone);
1654 list->Add(CharacterRange(30, 40), zone); 1663 list->Add(CharacterRange(30, 40), zone);
1655 list->Add(CharacterRange(50, 60), zone); 1664 list->Add(CharacterRange(50, 60), zone);
1656 set.Canonicalize(); 1665 set.Canonicalize();
1657 ASSERT_EQ(3, list->length()); 1666 ASSERT_EQ(3, list->length());
1658 ASSERT_EQ(10, list->at(0).from()); 1667 ASSERT_EQ(10, list->at(0).from());
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 list->Add(CharacterRange(20, 20), zone); 1709 list->Add(CharacterRange(20, 20), zone);
1701 set.Canonicalize(); 1710 set.Canonicalize();
1702 ASSERT_EQ(1, list->length()); 1711 ASSERT_EQ(1, list->length());
1703 ASSERT_EQ(10, list->at(0).from()); 1712 ASSERT_EQ(10, list->at(0).from());
1704 ASSERT_EQ(30, list->at(0).to()); 1713 ASSERT_EQ(30, list->at(0).to());
1705 } 1714 }
1706 1715
1707 1716
1708 TEST(CharacterRangeMerge) { 1717 TEST(CharacterRangeMerge) {
1709 v8::internal::V8::Initialize(NULL); 1718 v8::internal::V8::Initialize(NULL);
1710 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT); 1719 ZoneScope zone_scope(Isolate::Current()->runtime_zone(), DELETE_ON_EXIT);
1711 ZoneList<CharacterRange> l1(4, Isolate::Current()->zone()); 1720 ZoneList<CharacterRange> l1(4, Isolate::Current()->runtime_zone());
1712 ZoneList<CharacterRange> l2(4, Isolate::Current()->zone()); 1721 ZoneList<CharacterRange> l2(4, Isolate::Current()->runtime_zone());
1713 Zone* zone = Isolate::Current()->zone(); 1722 Zone* zone = Isolate::Current()->runtime_zone();
1714 // Create all combinations of intersections of ranges, both singletons and 1723 // Create all combinations of intersections of ranges, both singletons and
1715 // longer. 1724 // longer.
1716 1725
1717 int offset = 0; 1726 int offset = 0;
1718 1727
1719 // The five kinds of singleton intersections: 1728 // The five kinds of singleton intersections:
1720 // X 1729 // X
1721 // Y - outside before 1730 // Y - outside before
1722 // Y - outside touching start 1731 // Y - outside touching start
1723 // Y - overlap 1732 // Y - overlap
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1781 l1.Add(CharacterRange::Range(offset + 31, offset + 52), zone); 1790 l1.Add(CharacterRange::Range(offset + 31, offset + 52), zone);
1782 for (int i = 0; i < 6; i++) { 1791 for (int i = 0; i < 6; i++) {
1783 l2.Add(CharacterRange::Range(offset + 2, offset + 5), zone); 1792 l2.Add(CharacterRange::Range(offset + 2, offset + 5), zone);
1784 l2.Add(CharacterRange::Singleton(offset + 8), zone); 1793 l2.Add(CharacterRange::Singleton(offset + 8), zone);
1785 offset += 9; 1794 offset += 9;
1786 } 1795 }
1787 1796
1788 ASSERT(CharacterRange::IsCanonical(&l1)); 1797 ASSERT(CharacterRange::IsCanonical(&l1));
1789 ASSERT(CharacterRange::IsCanonical(&l2)); 1798 ASSERT(CharacterRange::IsCanonical(&l2));
1790 1799
1791 ZoneList<CharacterRange> first_only(4, Isolate::Current()->zone()); 1800 ZoneList<CharacterRange> first_only(4, Isolate::Current()->runtime_zone());
1792 ZoneList<CharacterRange> second_only(4, Isolate::Current()->zone()); 1801 ZoneList<CharacterRange> second_only(4, Isolate::Current()->runtime_zone());
1793 ZoneList<CharacterRange> both(4, Isolate::Current()->zone()); 1802 ZoneList<CharacterRange> both(4, Isolate::Current()->runtime_zone());
1794 } 1803 }
1795 1804
1796 1805
1797 TEST(Graph) { 1806 TEST(Graph) {
1798 V8::Initialize(NULL); 1807 V8::Initialize(NULL);
1799 Execute("\\b\\w+\\b", false, true, true); 1808 Execute("\\b\\w+\\b", false, true, true);
1800 } 1809 }
OLDNEW
« src/zone.cc ('K') | « test/cctest/test-parsing.cc ('k') | test/cctest/test-strings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698