summaryrefslogtreecommitdiff
path: root/deps/v8/test/js-perf-test/RegExp/base_ctor.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/js-perf-test/RegExp/base_ctor.js')
-rw-r--r--deps/v8/test/js-perf-test/RegExp/base_ctor.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/deps/v8/test/js-perf-test/RegExp/base_ctor.js b/deps/v8/test/js-perf-test/RegExp/base_ctor.js
new file mode 100644
index 0000000000..add4b6b6a3
--- /dev/null
+++ b/deps/v8/test/js-perf-test/RegExp/base_ctor.js
@@ -0,0 +1,55 @@
+// Copyright 2016 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.
+
+function SimpleCtor() {
+ new RegExp("[Cz]");
+}
+
+function FlagsCtor() {
+ new RegExp("[Cz]", "guiym");
+}
+
+function SimpleCtorWithoutNew() {
+ RegExp("[Cz]");
+}
+
+function FlagsCtorWithoutNew() {
+ RegExp("[Cz]", "guiym");
+}
+
+function CtorWithRegExpPattern() {
+ new RegExp(/[Cz]/);
+}
+
+function CtorWithRegExpPatternAndFlags() {
+ new RegExp(/[Cz]/, "guiym");
+}
+
+class SubRegExp extends RegExp {
+ get source() { return "[Cz]"; }
+ get flags() { return "guiym"; }
+}
+
+function CtorWithRegExpSubclassPattern() {
+ new RegExp(new SubRegExp(/[Cz]/));
+}
+
+function CtorWithUndefinedPattern() {
+ new RegExp();
+}
+
+function CtorWithFlagsAndUndefinedPattern() {
+ new RegExp(undefined, "guiym");
+}
+
+var benchmarks = [ [SimpleCtor, undefined],
+ [FlagsCtor, undefined],
+ [SimpleCtorWithoutNew, undefined],
+ [FlagsCtorWithoutNew, undefined],
+ [CtorWithRegExpPattern, undefined],
+ [CtorWithRegExpPatternAndFlags, undefined],
+ [CtorWithRegExpSubclassPattern, undefined],
+ [CtorWithUndefinedPattern, undefined],
+ [CtorWithFlagsAndUndefinedPattern, undefined],
+ ];