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

Unified Diff: test/mjsunit/regress/regress-chromium-482998.js

Issue 1176453002: Optimize trivial regexp disjunctions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Make test faster Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-heap.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-chromium-482998.js
diff --git a/test/mjsunit/regress/regress-chromium-482998.js b/test/mjsunit/regress/regress-chromium-482998.js
new file mode 100644
index 0000000000000000000000000000000000000000..94ff5008e85688ee8cf70dc9dd010c4c41257b26
--- /dev/null
+++ b/test/mjsunit/regress/regress-chromium-482998.js
@@ -0,0 +1,22 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Should not time out. Running time 0.5s vs. 120s before the change.
+function collapse() {
+ var src = "(?:";
+ for (var i = 128; i < 0x1000; i++) {
+ src += "a" + String.fromCharCode(i) + "|";
+ }
+ src += "aa)";
+ var collapsible = new RegExp(src);
+ var subject = "zzzzzzz" + String.fromCharCode(3000);
+ for (var i = 0; i < 1000; i++) {
+ subject += "xxxxxxx";
+ }
+ for (var i = 0; i < 2000; i++) {
+ assertFalse(collapsible.test(subject));
+ }
+}
+
+collapse();
« no previous file with comments | « test/cctest/test-heap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698