Commit 80256c74 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Fix crash bug in VisitChoice (bug=126272).

Review URL: https://chromiumcodereview.appspot.com/10332035

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11519 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 63263a9a
...@@ -2722,8 +2722,8 @@ RegExpNode* ChoiceNode::FilterASCII(int depth) { ...@@ -2722,8 +2722,8 @@ RegExpNode* ChoiceNode::FilterASCII(int depth) {
GuardedAlternative alternative = alternatives_->at(i); GuardedAlternative alternative = alternatives_->at(i);
RegExpNode* replacement = alternative.node()->FilterASCII(depth - 1); RegExpNode* replacement = alternative.node()->FilterASCII(depth - 1);
ASSERT(replacement != this); // No missing EMPTY_MATCH_CHECK. ASSERT(replacement != this); // No missing EMPTY_MATCH_CHECK.
alternatives_->at(i).set_node(replacement);
if (replacement != NULL) { if (replacement != NULL) {
alternatives_->at(i).set_node(replacement);
surviving++; surviving++;
survivor = replacement; survivor = replacement;
} }
...@@ -2739,9 +2739,11 @@ RegExpNode* ChoiceNode::FilterASCII(int depth) { ...@@ -2739,9 +2739,11 @@ RegExpNode* ChoiceNode::FilterASCII(int depth) {
ZoneList<GuardedAlternative>* new_alternatives = ZoneList<GuardedAlternative>* new_alternatives =
new ZoneList<GuardedAlternative>(surviving); new ZoneList<GuardedAlternative>(surviving);
for (int i = 0; i < choice_count; i++) { for (int i = 0; i < choice_count; i++) {
GuardedAlternative alternative = alternatives_->at(i); RegExpNode* replacement =
if (alternative.node() != NULL) { alternatives_->at(i).node()->FilterASCII(depth - 1);
new_alternatives->Add(alternative); if (replacement != NULL) {
alternatives_->at(i).set_node(replacement);
new_alternatives->Add(alternatives_->at(i));
} }
} }
alternatives_ = new_alternatives; alternatives_ = new_alternatives;
...@@ -5832,7 +5834,12 @@ RegExpEngine::CompilationResult RegExpEngine::Compile( ...@@ -5832,7 +5834,12 @@ RegExpEngine::CompilationResult RegExpEngine::Compile(
node = loop_node; node = loop_node;
} }
} }
if (is_ascii) node = node->FilterASCII(RegExpCompiler::kMaxRecursion); if (is_ascii) {
node = node->FilterASCII(RegExpCompiler::kMaxRecursion);
// Do it again to propagate the new nodes to places where they were not
// put because they had not been calculated yet.
if (node != NULL) node = node->FilterASCII(RegExpCompiler::kMaxRecursion);
}
if (node == NULL) node = new EndNode(EndNode::BACKTRACK); if (node == NULL) node = new EndNode(EndNode::BACKTRACK);
data->node = node; data->node = node;
......
...@@ -212,3 +212,7 @@ regex9.exec(input0); ...@@ -212,3 +212,7 @@ regex9.exec(input0);
var regex10 = new RegExp(re, "i"); var regex10 = new RegExp(re, "i");
regex10.exec(input0); regex10.exec(input0);
var regex11 = /^(?:[^\u0000-\u0080]|[0-9a-z?,.!&\s#()])+$/i;
regex11.exec(input0);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment