2017-12-11 Tim Horton Stop using deprecated target conditional for simulator builds https://bugs.webkit.org/show_bug.cgi?id=180662 Reviewed by Simon Fraser. * StitchMarker/wtf/Platform.h: * StitchMarker/wtf/dependencies/bmalloc/BPlatform.h: 2017-12-11 Antti Koivisto StyleBench improvements https://bugs.webkit.org/show_bug.cgi?id=180646 Reviewed by Geoffrey Garen. - Remove :empty rule from global stylesheet. It caused all tests to hit positional pseudo-class code paths. - Instead use min-width to create easy flexible layout. Use it for ::before/::after too. - Add :empty to positional pseudo-class test. - Include some id attributes and id selectors - Chance to have more than 1 classes per compound selector - Change distribution of elements and classes to be non-uniform - Other bug fixes * StyleBench/resources/style-bench.js: (Random.prototype.numberSquareWeightedToLow): (Random): (defaultConfiguration): (prototype.randomElementName): (prototype.randomId): (prototype.makeCompoundSelector): (prototype.makeSelector): (prototype.makeElement): 2017-12-08 Konstantin Tokarev [python] Replace print operator with print() function for python3 compatibility https://bugs.webkit.org/show_bug.cgi?id=180592 Reviewed by Michael Catanzaro. * JSBench/harness.py: 2017-12-01 Filip Pizlo GC constraint solving should be parallel https://bugs.webkit.org/show_bug.cgi?id=179934 Reviewed by JF Bastien. Added a version of splay that measures latency in a way that run-jsc-benchmarks groks. * Octane/splay.js: Added. (this.Setup.setup.setup): (this.TearDown.tearDown.tearDown): (Benchmark): (BenchmarkResult): (BenchmarkResult.prototype.valueOf): (BenchmarkSuite): (alert): (Math.random): (BenchmarkSuite.ResetRNG): (RunStep): (BenchmarkSuite.RunSuites): (BenchmarkSuite.CountBenchmarks): (BenchmarkSuite.GeometricMean): (BenchmarkSuite.GeometricMeanTime): (BenchmarkSuite.AverageAbovePercentile): (BenchmarkSuite.GeometricMeanLatency): (BenchmarkSuite.FormatScore): (BenchmarkSuite.prototype.NotifyStep): (BenchmarkSuite.prototype.NotifyResult): (BenchmarkSuite.prototype.NotifyError): (BenchmarkSuite.prototype.RunSingleBenchmark): (RunNextSetup): (RunNextBenchmark): (RunNextTearDown): (BenchmarkSuite.prototype.RunStep): (GeneratePayloadTree): (GenerateKey): (SplayUpdateStats): (InsertNewNode): (SplaySetup): (SplayTearDown): (SplayRun): (SplayTree): (SplayTree.prototype.isEmpty): (SplayTree.prototype.insert): (SplayTree.prototype.remove): (SplayTree.prototype.find): (SplayTree.prototype.findMax): (SplayTree.prototype.findGreatestLessThan): (SplayTree.prototype.exportKeys): (SplayTree.prototype.splay_): (SplayTree.Node): (SplayTree.Node.prototype.traverse_): (report): (start): 2017-12-04 Antti Koivisto Fix StyleBench/InteractiveRunner.html https://bugs.webkit.org/show_bug.cgi?id=180355 * StyleBench/InteractiveRunner.html: 2017-12-01 Antti Koivisto Add StyleBench https://bugs.webkit.org/show_bug.cgi?id=180140 * Skipped: Skip InteractiveRunner.html 2017-11-30 Antti Koivisto Add StyleBench https://bugs.webkit.org/show_bug.cgi?id=180140 Reviewed by Simon Fraser and Joseph Pecoraro. StyleBench tests performance of the CSS style resolution and style invalidation. Each test run creates a large document and a large stylesheet using varying settings. It then applies a series of mutations to the document and measures the time to update the style and rendering. The resulting layout is simple, most of the pressure is on selector matching. StyleBench uses Speedometer framework for UI and measurements. For profiling purposes, it can also be run locally by opening style-bench.html directly. There are currently four subtests: - child and descendant combinators only (all other tests have these too). - sibling combinators: '~' and '+' - positional pseudo classes: :nth-child and similar - ::before and ::after pseudo elements The measured DOM mutations are: - add classes - remove classes - add leaf elements - remove leaf elements * StyleBench: Added. * StyleBench/InteractiveRunner.html: Added. Copied and customized from Speedometer. * StyleBench/index.html: Added. Copied and customized from Speedometer. * StyleBench/resources: Added. * StyleBench/resources/style-bench.html: Added. * StyleBench/resources/style-bench.js: Added. The test class. (Random): (Random.prototype.get next): (Random.prototype.chance): (Random.prototype.number): (nextAnimationFrame): (defaultConfiguration): (descendantCombinatorConfiguration): (siblingCombinatorConfiguration): (pseudoClassConfiguration): (beforeAndAfterConfiguration): (predefinedConfigurations): Four predefined configurations. (prototype.randomElementName): (prototype.randomCombinator): (prototype.randomPseudoClass): (prototype.makeSimpleSelector): (prototype.makeSelector): (prototype.get randomColorComponent): (prototype.makeDeclaration): (prototype.makeRule): (prototype.makeStylesheet): (prototype.makeStyle): (prototype.makeElement): (prototype.makeTreeWithDepth): (prototype.makeTree): (prototype.updateCachedTestElements): (prototype.randomTreeElement): (prototype.addClasses): (prototype.removeClasses): (prototype.addLeafElements): (prototype.removeLeafElements): (prototype.async.runForever): * StyleBench/resources/tests.js: Added. (makeSteps): (makeSuite): Generates Speedometer Suites. 2017-11-29 Robin Morisset The recursive tail call optimisation is wrong on closures https://bugs.webkit.org/show_bug.cgi?id=179835 Reviewed by Saam Barati. This new benchmark is a very close variant of the merge-sort benchmark, that writes mergeSorted in a kinda CPS style, to stress the use of closures, and of polymorphic calls. * TailBench9000/merge-sort-cps.js: Added. (createRNG): (mergeSorted): (checkSorted.check): (add): (build): (compare): (checkSpectrum): (buildArray): (test): 2017-11-22 Antti Koivisto Add performance test for inlines and inline-blocks without text https://bugs.webkit.org/show_bug.cgi?id=179955 Reviewed by Darin Adler. Test for https://bugs.webkit.org/show_bug.cgi?id=179950 * Layout/inline-layout-no-text.html: Added. 2017-11-12 Jon Lee Add isolated text tests for MotionMark https://bugs.webkit.org/show_bug.cgi?id=179226 Reviewed by Darin Adler. Add a private suite that simplifies the design test. * MotionMark/resources/debug-runner/tests.js: * MotionMark/resources/runner/tests.js: * MotionMark/tests/master/design.html: Copied from PerformanceTests/MotionMark/tests/master/text.html. Rename the html file to the title of the test. * MotionMark/tests/master/resources/design.js: Renamed from PerformanceTests/MotionMark/tests/master/resources/text.js. * MotionMark/tests/text/design-6.html: Copied from PerformanceTests/MotionMark/tests/master/text.html. Six active cells * MotionMark/tests/text/design-6.js: Added. * MotionMark/tests/text/design.html: Renamed from PerformanceTests/MotionMark/tests/master/text.html. Replace the text with empty table cells that are populated with desired text. * MotionMark/tests/text/design.js: Added. 2017-11-06 Robin Morisset Add a third benchmark to TailBench https://bugs.webkit.org/show_bug.cgi?id=178815 Reviewed by Saam Barati. Add a new benchmark to TailBench: a BF interpreter written in a weird kinda functional style * TailBench9000/bf-interpreter.js: Added. (lookForMatchingBracket): (evalRec): (infiniteTape): (evalShort): 2017-11-06 Robin Morisset PerformanceTests/TailBench9000/merge-sort.js does not actually sort any of the large arrays it allocates https://bugs.webkit.org/show_bug.cgi?id=178817 Reviewed by Saam Barati. * TailBench9000/merge-sort.js: (TEST_mergeSort): 2017-11-02 Jon Lee Add license for MotionMark https://bugs.webkit.org/show_bug.cgi?id=179222 Reviewed by Ryosuke Niwa. * MotionMark/about.html: * MotionMark/developer.html: * MotionMark/index.html: * MotionMark/resources/debug-runner/graph.js: * MotionMark/resources/debug-runner/motionmark.css: * MotionMark/resources/debug-runner/motionmark.js: * MotionMark/resources/debug-runner/tests.js: * MotionMark/resources/extensions.js: * MotionMark/resources/statistics.js: * MotionMark/resources/strings.js: * MotionMark/tests/3d/resources/webgl.js: * MotionMark/tests/3d/webgl.html: * MotionMark/tests/bouncing-particles/bouncing-canvas-images.html: * MotionMark/tests/bouncing-particles/bouncing-canvas-shapes.html: * MotionMark/tests/bouncing-particles/bouncing-css-images.html: * MotionMark/tests/bouncing-particles/bouncing-css-shapes.html: * MotionMark/tests/bouncing-particles/bouncing-svg-images.html: * MotionMark/tests/bouncing-particles/bouncing-svg-shapes.html: * MotionMark/tests/bouncing-particles/bouncing-tagged-images.html: * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-images.js: * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-particles.js: * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * MotionMark/tests/bouncing-particles/resources/bouncing-css-images.js: * MotionMark/tests/bouncing-particles/resources/bouncing-css-shapes.js: * MotionMark/tests/bouncing-particles/resources/bouncing-particles.js: * MotionMark/tests/bouncing-particles/resources/bouncing-svg-images.js: * MotionMark/tests/bouncing-particles/resources/bouncing-svg-particles.js: * MotionMark/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * MotionMark/tests/bouncing-particles/resources/bouncing-tagged-images.js: * MotionMark/tests/dom/compositing-transforms.html: * MotionMark/tests/dom/focus.html: * MotionMark/tests/dom/leaves.html: * MotionMark/tests/dom/particles.html: * MotionMark/tests/dom/resources/compositing-transforms.js: * MotionMark/tests/dom/resources/dom-particles.js: * MotionMark/tests/dom/resources/focus.js: * MotionMark/tests/dom/resources/leaves.js: * MotionMark/tests/master/canvas-stage.html: * MotionMark/tests/master/focus.html: * MotionMark/tests/master/image-data.html: * MotionMark/tests/master/leaves.html: * MotionMark/tests/master/multiply.html: * MotionMark/tests/master/resources/canvas-stage.js: * MotionMark/tests/master/resources/canvas-tests.js: * MotionMark/tests/master/resources/focus.js: * MotionMark/tests/master/resources/image-data.js: * MotionMark/tests/master/resources/leaves.js: * MotionMark/tests/master/resources/multiply.js: * MotionMark/tests/master/resources/particles.js: * MotionMark/tests/master/resources/svg-particles.js: * MotionMark/tests/master/resources/text.js: * MotionMark/tests/master/svg-particles.html: * MotionMark/tests/master/text.html: * MotionMark/tests/resources/main.js: * MotionMark/tests/resources/math.js: * MotionMark/tests/resources/stage.css: * MotionMark/tests/simple/resources/simple-canvas-paths.js: * MotionMark/tests/simple/resources/simple-canvas.js: * MotionMark/tests/simple/resources/tiled-canvas-image.js: * MotionMark/tests/simple/simple-canvas-paths.html: * MotionMark/tests/simple/tiled-canvas-image.html: * MotionMark/tests/template/resources/template-canvas.js: * MotionMark/tests/template/resources/template-css.js: * MotionMark/tests/template/resources/template-svg.js: * MotionMark/tests/template/template-canvas.html: * MotionMark/tests/template/template-css.html: * MotionMark/tests/template/template-svg.html: 2017-11-01 Jon Lee Add about page for MotionMark https://bugs.webkit.org/show_bug.cgi?id=179152 Reviewed by Ryosuke Niwa. * MotionMark/about.html: Added. * MotionMark/index.html: * MotionMark/resources/runner/motionmark.css: 2017-10-30 Michael Saboff Eliminate Basic compiler test from RexBench https://bugs.webkit.org/show_bug.cgi?id=179025 Reviewed by Saam Barati. * RexBench/Basic: Removed. * RexBench/Basic/ast.js: Removed. * RexBench/Basic/basic.js: Removed. * RexBench/Basic/benchmark.js: Removed. * RexBench/Basic/caseless_map.js: Removed. * RexBench/Basic/lexer.js: Removed. * RexBench/Basic/number.js: Removed. * RexBench/Basic/parser.js: Removed. * RexBench/Basic/random.js: Removed. * RexBench/Basic/state.js: Removed. * RexBench/Basic/stress-test.js: Removed. * RexBench/Basic/util.js: Removed. * RexBench/basic_benchmark.js: Removed. * RexBench/about.html: * RexBench/cli.js: * RexBench/glue.js: * RexBench/index.html: 2017-10-25 Robin Morisset Support the TailBench9000 benchmark in run-jsc-benchmarks https://bugs.webkit.org/show_bug.cgi?id=178451 Reviewed by Saam Barati. The separation between the definition of the benchmarks (in merge-sort.js and n-body.js) and their loops (in *-run.js) was causing trouble since the load of the js files only succeeded from the same directory. So I chose to merge them, following the example of the other benchmarks. * TailBench9000/merge-sort-run.js: Removed. * TailBench9000/merge-sort.js: * TailBench9000/n-body-run.js: Removed. * TailBench9000/n-body.js: 2017-10-19 Michael Catanzaro -Wsign-compare triggered by MallocBench https://bugs.webkit.org/show_bug.cgi?id=178544 Reviewed by Ryosuke Niwa. * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::Interpreter): 2017-10-07 Yusuke Suzuki Unreviewed, build fix for MallocBench in Linux 32bit https://bugs.webkit.org/show_bug.cgi?id=177856 * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::Interpreter): (Interpreter::readOps): Suppress warnings in some GCC versions. * MallocBench/MallocBench/big.cpp: (benchmark_big): * MallocBench/MallocBench/medium.cpp: (benchmark_medium): Build fix for Linux 32bit. * MallocBench/MallocBench/message.cpp: (benchmark_message_many): Use more efficient WorkQueue allocation. 2017-10-05 Yusuke Suzuki Unreviewed, use std::vector instead of variable length array https://bugs.webkit.org/show_bug.cgi?id=177856 This is OK because originally this code uses dispatch queue, which should have allocation inside it too. * MallocBench/MallocBench/message.cpp: (benchmark_message_many): 2017-10-05 Yusuke Suzuki [Linux] Port MallocBench https://bugs.webkit.org/show_bug.cgi?id=177856 Reviewed by Filip Pizlo. We would like to optimize locking in bmalloc in Linux by using futex APIs. So we should have the way to ensure this actually improves / does not regress the performance. This patch ports MallocBench to Linux to measure/ensure the effect of bmalloc patch in Linux. While we replace the dispatch serial queue in message.cpp, we still use libdispatch in Benchmark.cpp since we do not have priority mechanism in C++11 threading implementation. We also extend run-malloc-benchmarks to accept cmake style layout of build product directory. And we also support building MallocBench in CMake environment including CMake Mac ports. Currently, we do not support Windows yet. Based on the measurement, we can say the following observation. glibc's malloc performance is not so bad. While bmalloc shows 3.8x (in geomean) performance improvement, bmalloc in Linux shows 2.0x improvement. Since both numbers in bmalloc are similar, we can think that bmalloc's optimization is actually working in Linux too. And even though glibc's malloc perofmrnace is not so bad, bmalloc still offers performance improvement. * CMakeLists.txt: Added. * MallocBench/CMakeLists.txt: Added. * MallocBench/MallocBench.xcodeproj/project.pbxproj: * MallocBench/MallocBench/Benchmark.cpp: (Benchmark::Benchmark): (Benchmark::runOnce): (Benchmark::currentMemoryBytes): Deleted. * MallocBench/MallocBench/Benchmark.h: (Benchmark::Memory::Memory): Deleted. (Benchmark::Memory::operator-): Deleted. * MallocBench/MallocBench/CMakeLists.txt: Added. * MallocBench/MallocBench/CPUCount.cpp: (cpuCount): * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::doMallocOp): * MallocBench/MallocBench/Memory.cpp: Added. (currentMemoryBytes): * MallocBench/MallocBench/Memory.h: Copied from PerformanceTests/MallocBench/MallocBench/CPUCount.cpp. (Memory::Memory): (Memory::operator-): * MallocBench/MallocBench/balloon.cpp: (benchmark_balloon): * MallocBench/MallocBench/mbmalloc.cpp: * MallocBench/MallocBench/message.cpp: (WorkQueue::WorkQueue): (WorkQueue::~WorkQueue): (WorkQueue::dispatchAsync): (WorkQueue::dispatchSync): (benchmark_message_one): (benchmark_message_many): * MallocBench/MallocBench/nimlang.cpp: (benchmark_nimlang): * MallocBench/MallocBench/stress.cpp: (SizeStream::next): * MallocBench/MallocBench/stress_aligned.cpp: * MallocBench/run-malloc-benchmarks: 2017-09-26 Mathias Bynens Speedometer: ensure all TodoMVC tests use the complete latest CSS https://bugs.webkit.org/show_bug.cgi?id=177358 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/angular/dist/*: Updated per build instructions. * Speedometer/resources/todomvc/architecture-examples/angular/src/assets/css/todomvc-app.css: Updated to latest version. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/*: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/angularjs/package-lock.json: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/angularjs/todomvc-index.html: Updated to match new CSS classnames. * Speedometer/resources/todomvc/architecture-examples/emberjs-debug/assets/vendor.css: Manually updated to latest TodoMVC CSS, except with IDs instead of classes. (Build steps unknown.) * Speedometer/resources/todomvc/architecture-examples/emberjs/app/components/todo-list.js: Updated to match new CSS classnames. * Speedometer/resources/todomvc/architecture-examples/emberjs/app/templates/application.hbs: Updated to match new CSS classnames. * Speedometer/resources/todomvc/architecture-examples/emberjs/app/templates/components/todo-list.hbs: Updated to match new CSS classnames. * Speedometer/resources/todomvc/architecture-examples/emberjs/dist/*: Updated per build instructions. * Speedometer/resources/todomvc/architecture-examples/emberjs/vendor/index.css: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/*: Updated TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/inferno/package.json: Updated TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/jquery/index.html: Updated to match new CSS classnames. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/*: Updated TodoMVC CSS. * Speedometer/resources/todomvc/architecture-examples/jquery/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/templates/stats.html: Updated to match new CSS classnames. * Speedometer/resources/todomvc/dependency-examples/flight/flight/index.html: Updated to match new CSS classnames. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-app-css/index.css: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-app-css/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-common/*: Updated to latest version. * Speedometer/resources/todomvc/dependency-examples/flight/flight/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/functional-prog-examples/elm/node_modules/todomvc-app-css/index.css: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/functional-prog-examples/elm/node_modules/todomvc-common/base.js: Updated to latest version. * Speedometer/resources/todomvc/functional-prog-examples/elm/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/*: Updated per build instructions. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/package-lock.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/index.css: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/readme.md: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-common/*: Updated to latest version. * Speedometer/resources/todomvc/vanilla-examples/es2015/package.json: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/node_modules/todomvc-app-css/index.css: Updated to latest TodoMVC CSS. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/node_modules/todomvc-common/*: Updated to latest version. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/package.json: Updated to latest TodoMVC CSS. 2017-09-25 Mathias Bynens Speedometer: Add missing build scripts for Vue.js example https://bugs.webkit.org/show_bug.cgi?id=177359 Reviewed by Ryosuke Niwa. This directory contains the build scripts needed to update `dist/*`. It had not been checked in because previously, all `build` directories were ignored by `.gitignore`. This directory is generated as part of `npm install -g vue-cli && vue init webpack some-project-name`. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/build.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/check-versions.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/dev-client.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/dev-server.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/utils.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/vue-loader.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/webpack.base.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/webpack.dev.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/webpack.prod.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/build/webpack.test.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/*: Updated per build instructions. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/package-lock.json: Added build dependencies per vue-cli. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/package.json: Added build dependencies per vue-cli. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/components/todo.css: Updated CSS to the latest version for #177358. 2017-09-25 Mathias Bynens Speedometer: Fix typo https://bugs.webkit.org/show_bug.cgi?id=177425 Reviewed by Ryosuke Niwa. * Speedometer/InteractiveRunner.html: Fix typo: “Arithemtic Mean” → “Arithmetic Mean”. 2017-09-10 Mathias Bynens Speedometer: Reduce duplication in react-redux test https://bugs.webkit.org/show_bug.cgi?id=176227 Reviewed by Ryosuke Niwa. Updating react-scripts to a modern version avoids an issue where the generated bundle included the same `Object.assign` polyfill multiple times. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/*: Update dist per build instructions. * Speedometer/resources/todomvc/architecture-examples/react-redux/package-lock.json: Update dependencies. * Speedometer/resources/todomvc/architecture-examples/react-redux/package.json: Update dependencies. 2017-09-07 Said Abou-Hallawa Optimize the call to browserPrefix() in MotionMark https://bugs.webkit.org/show_bug.cgi?id=176489 Reviewed by Jon Lee. This function is expensive and it does not change for the browser. No need to recalculate it every time it is called; just cache the returned value. * MotionMark/resources/extensions.js: (Utilities.browserPrefix): 2017-08-19 Filip Pizlo We should have more tests of tail calls https://bugs.webkit.org/show_bug.cgi?id=175754 Reviewed by Sam Weinig. This introduces a new test suite called TailBench9000, which will have benchmarks written in JavaScript that avoid all looping except by tail call. As a warmup, I wrote a mergesort benchmark and I proted n-body to use tail calls instead of for loops. * TailBench9000: Added. * TailBench9000/merge-sort-run.js: Added. * TailBench9000/merge-sort.js: Added. (TEST_mergeSort.createRNG): (TEST_mergeSort.): (TEST_mergeSort.merge): (TEST_mergeSort.mergeSorted): (TEST_mergeSort.checkSorted.check): (TEST_mergeSort.checkSorted): (TEST_mergeSort.add): (TEST_mergeSort.build): (TEST_mergeSort.compare): (TEST_mergeSort.checkSpectrum): (TEST_mergeSort.buildArray): (TEST_mergeSort): * TailBench9000/n-body-run.js: Added. * TailBench9000/n-body.js: Added. (TEST_nBody.Body): (TEST_nBody.Body.prototype.offsetMomentum): (TEST_nBody.Jupiter): (TEST_nBody.Saturn): (TEST_nBody.Uranus): (TEST_nBody.Neptune): (TEST_nBody.Sun): (TEST_nBody.NBodySystem): (TEST_nBody.NBodySystem.prototype.advance): (TEST_nBody.NBodySystem.prototype.energy): (TEST_nBody): 2017-09-05 Ryosuke Niwa Compute the final score using geometric mean in Speedometer 2.0 https://bugs.webkit.org/show_bug.cgi?id=172968 Reviewed by Saam Barati. Make Speedometer 2.0 use the geometric mean of the subtotal of each test suite instead of the total.. In Speedometer 1.0, we used the total time to compute the final score because we wanted to make the slowest framework and library faster. The fastest suite (FlightJS) still accounted for ~6% and the slowest case (React) accounted for ~25% so we felt the total time, or the arithmetic mean with a constant factor, was a good metric to track. In the latest version of Speedometer 2.0, however, the fastest suite (Preact) runs in ~55ms whereas the slowest suite (Inferno) takes 1.5s on Safari. Since the total time is 6.5s, Preact's suite only accounts for ~0.8% of the total score while Inferno's suite accounts for ~23% of the total score. Since the goal of Speedometer is to approximate different kinds of DOM API use patterns on the Web, we want each framework & library to have some measurement impact on the overall benchmark score. Furthermore, after r221205, we're testing both debug build of Ember.js as well as release build. Since debug build is 4x slower, using the total time or the arithmetic mean thereof will effectively give 4x as much weight to debug build of Ember.js relative to release build of Ember.js. Given only ~5% of websites that deploy Ember.js use debug build, this weighting is clearly not right. This patch, therefore, replaces the arithmetic mean by the geometric mean to compute the final score. It also moves the code to compute the final score to BenchmarkRunner to be shared between main.js and InteractiveRunner.html. * Speedometer/InteractiveRunner.html: (.didRunSuites): Show geometric mean, arithmetic mean, total, as well as the score for completeness since this is a debugging page for developers. * Speedometer/resources/benchmark-runner.js: (BenchmarkRunner.prototype.step): Added mean, geomean, and score as measuredValues' properties. (BenchmarkRunner.prototype._runTestAndRecordResults): Removed the dead code. (BenchmarkRunner.prototype._finalize): Compute and add total, arithmetic mean (just mean in the code), and geometric mean (geomean) to measuredValues. * Speedometer/resources/main.js: (window.benchmarkClient): Replaced testsCount by stepsCount and _timeValues by _measuredValuesList. (window.benchmarkClient.willRunTest): (window.benchmarkClient.didRunTest): (window.benchmarkClient.didRunSuites): Store measuredValues object instead of just the total time. (window.benchmarkClient.didFinishLastIteration): (window.benchmarkClient._computeResults): (window.benchmarkClient._computeResults.valueForUnit): Renamed from totalTimeInDisplayUnit. Now simply retrieves the values computed by BenchmarkRunner's_finalize. (startBenchmark): (computeScore): Deleted. 2017-09-05 JF Bastien StitchMarker build fix Unreviewed * StitchMarker/ck.sh: was missing `cd ck` 2017-09-05 Shiyu Zhang Speedometer 2.0: Add dummy node to notify app is ready for Backbone suite https://bugs.webkit.org/show_bug.cgi?id=176142 Reviewed by Ryosuke Niwa. Create a dummy node to notify that app is ready for Backbone suite. It prevents Speedometer injecting items before app.js is loaded. * Speedometer/resources/tests.js: (Suites.push.prepare): * Speedometer/resources/todomvc/architecture-examples/backbone/js/app.js: 2017-08-30 Shiyu Zhang Speedometer 2.0: jQuery test fails occasionally https://bugs.webkit.org/show_bug.cgi?id=176017 Reviewed by Ryosuke Niwa. Create a dummy node to notify that app is ready for jQuery suite. It prevents Speedometer injecting items before app.js is loaded. * Speedometer/resources/tests.js: (Suites.push.prepare): * Speedometer/resources/todomvc/architecture-examples/jquery/js/app.js: (jQuery.App.init): 2017-08-25 Mathias Bynens Speedometer: Restructure Ember example https://bugs.webkit.org/show_bug.cgi?id=175926 Reviewed by Ryosuke Niwa. This patch removes an unused stylesheet from the output, and gets rid of the unneeded intermediate `source` folder. * Speedometer/resources/tests.js: Update path to Ember benchmark. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/*: Moved to `../`. * Speedometer/resources/todomvc/architecture-examples/emberjs/app/index.html: Removed stylesheet reference. * Speedometer/resources/todomvc/architecture-examples/emberjs/app/styles/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/dist/*: Regenerated per build instructions. 2017-08-24 Ryosuke Niwa Speedometer 2.0: Duplicate the current EmberJS test as EmberJS-Debug test https://bugs.webkit.org/show_bug.cgi?id=175956 Reviewed by Saam Barati. Made the copy of Ember.js directory at r216946 as emberjs-debug, and added a new test suite "EmberJS-Debug-TodoMVC". * Speedometer/resources/tests.js: (Suites.push.prepare): * Speedometer/resources/todomvc/architecture-examples/emberjs-debug: Copied from emberjs@r216946. 2017-08-23 Ryosuke Niwa Speedometer: Add missing stylesheet to Angular example ​https://bugs.webkit.org/show_bug.cgi?id=175820 Fix r221042. It was supposed to add an empty file but git-svn failed to do so. * Speedometer/resources/todomvc/architecture-examples/angular/dist/styles.d41d8cd98f00b204e980.bundle.css: Added. 2017-08-23 Mathias Bynens Speedometer: Update to modern Preact version https://bugs.webkit.org/show_bug.cgi?id=175763 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/preact/README.md: Documented build steps. * Speedometer/resources/todomvc/architecture-examples/preact/dist/*: Renamed from build to dist so it can be checked in, and updated per build steps. * Speedometer/resources/todomvc/architecture-examples/preact/package-lock.json: Locked dependencies to ensure builds are deterministic. * Speedometer/resources/todomvc/architecture-examples/preact/package.json: Updated build commands and dependencies. * Speedometer/resources/todomvc/architecture-examples/preact/rollup.config.js: Updated configuration. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/footer.js: Updated to modern Preact version. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/index.js: Updated to modern Preact version. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js: Updated to modern Preact version. * Speedometer/resources/todomvc/architecture-examples/preact/src/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/preact/webpack.config.babel.js: Updated configuration. 2017-08-23 Ryosuke Niwa Speedometer 2.0: Add the capability to run a specific suite https://bugs.webkit.org/show_bug.cgi?id=175908 Address Joe's review comments. * Speedometer/resources/main.js: (startBenchmark): 2017-08-23 Ryosuke Niwa Speedometer 2.0: Add the capability to run a specific suite https://bugs.webkit.org/show_bug.cgi?id=175908 Reviewed by Saam Barati. Added ?suite=X query parameter to specify a specific suite (e.g. React-TodoMVC) to run. * Speedometer/resources/main.js: (enableOneSuite): Added. (startBenchmark): Return true if the benchmark actually had started running. (startTest): Don't transition to the "running" state if the benchmark failed to start (e.g. no tests to run). 2017-08-23 Ryosuke Niwa Speedometer 2.0: Async time is not always capturing layout time https://bugs.webkit.org/show_bug.cgi?id=175871 Reviewed by Simon Fraser. Speedometer harness was designed to capture the time browser engine spends relayouting and repainting the content after DOM mutations this in its async time measurement, which is the time between each test case's code had finished running and when a newly scheduled 0s timer is fired immediately afterwards. It turns out that modern web browsers defer this reflow and repaint work until the next animation frame is requested. This results in Speedometer harness measuring reflow and repaint cost only sometimes depending on when each test case had finished running relative to the next frame request. While such a behavior makes sense and might be desirable for a modern browser engine, we would like to capture it in the async time for the purpose of Speedometer. Unfortunately, there isn't an interoperable API for browsers to report the total layout and repaint time, and relying on 16ms-granularity requestAnimationFrame is too coarse for Speedometer. This patch works around these limitations by manually forcing the layout in async time measurement by calling getBoundingClientRect() in iframe's document. Since the height of the document depends on the number of todo items, this should cause browser engines to do most if not all of the work needed to reflow the document at least for now. Note that even new async time doesn't always capture painting time but there isn't a good cross-browser mechanism to measure paint time in the granurality we need for Speedometer at the moment anyway. (Should such a mechanism exist, that could be a huge timing attack surface so it's probably best that we don't have one.) * Speedometer/resources/benchmark-runner.js: (BenchmarkRunner.prototype._runTest): 2017-08-23 Ryosuke Niwa Speedometer: Make React/Redux item order consistent https://bugs.webkit.org/show_bug.cgi?id=175818 Reviewed by Joseph Pecoraro. Based on the patch made by Mathias Bynens. Re-generated project files. Also tweaked the instruction in package.json so that newly generated files in build/* replace dist/* instead of being moved under dist/build/ by rm -rf'ing dist directory first. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/index.html: * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js: Removed. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.43a0948c.js.map: Removed. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.69cd9655.js.map: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/package.json: * Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/todos.js: Forced new items to be appended rather than prepended. * Speedometer/resources/todomvc/architecture-examples/react-redux/yarn.lock: Removed unnecessary file. 2017-08-23 Mathias Bynens Speedometer: Update to modern React version https://bugs.webkit.org/show_bug.cgi?id=175715 Reviewed by Ryosuke Niwa. This patch pins React and react-dom to v15.5.4 (released in May 2017). * Speedometer/resources/todomvc/architecture-examples/react/README.md: Documented build steps. * Speedometer/resources/todomvc/architecture-examples/react/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/*: Remove unneeded files and update per build instructions. * Speedometer/resources/todomvc/architecture-examples/react/npm-shrinkwrap.json: Removed in favor of package-lock.json. * Speedometer/resources/todomvc/architecture-examples/react/package-lock.json: Pinned dependencies to make build deterministic. * Speedometer/resources/todomvc/architecture-examples/react/package.json: Update dependencies. * Speedometer/resources/todomvc/architecture-examples/react/yarn.lock: Removed in favor of package-lock.json. 2017-08-22 Ryosuke Niwa REGRESSION(R220043): Speedometer 2.0: Fix vanilla JS examples https://bugs.webkit.org/show_bug.cgi?id=175815 Reviewed by Saam Barati. Both vanilla ES2015 and Babel + WebPack test cases were failing to mark Todo items as completed since they were relying on `new Date().getTime()` to generate an unique ID. That's not going to work if mulitple todo items are added within 1ms. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.71bb1f671e4e65604d05.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.71bb1f671e4e65604d05.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.9debb1b0a94f14d0ebe9.js: Removed. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.9debb1b0a94f14d0ebe9.js.map: Removed. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.manifest.2102040c9a6e04cc046e.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.manifest.2102040c9a6e04cc046e.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.vendor.b16cc08e016d07886f5f.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.vendor.b16cc08e016d07886f5f.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/index.html: * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.app.71bb1f671e4e65604d05.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.app.71bb1f671e4e65604d05.css.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.vendor.b16cc08e016d07886f5f.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.vendor.b16cc08e016d07886f5f.css.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/store.js: * Speedometer/resources/todomvc/vanilla-examples/es2015/src/store.js: 2017-08-22 JF Bastien StitchMarker: threading, locking, and atomics benchmark https://bugs.webkit.org/show_bug.cgi?id=175847 Rubber-stamped by Filip Pizlo. This patch imports concurrency and parallelism benchmarks from four independent projects: Facebook's folly, Olivier Giroux's locking benchmark aimed at C++20 standardization, Samy Al Bahra's ck concurrency primitives, and WebKit's WTF lock benchmarks. There's a fifth benchmark in the waiting, Cristian Mattarei's FMJS litmus tests, which currently only targets JavaScript but will eventually work on straight C code. The benchmark currently execute on native platforms only, but could be compiled to WebAssembly when the toolchains mature. They should stress interesting aspects of atomics, locking, and threading. The build works through simple shell scripts, and there currently is no "runner" because each benchmark is a standalone executable. This setup is especially well suited for WebAssembly. * StitchMarker/README.md: Added. See this for more details. * StitchMarker/ck.sh: Added. Build script. * StitchMarker/ck/LICENSE: Added. * StitchMarker/ck/Makefile: Added. * StitchMarker/ck/Makefile.in: Added. * StitchMarker/ck/README: Added. * StitchMarker/ck/configure: Added. * StitchMarker/ck/doc/Makefile: Added. * StitchMarker/ck/include/ck_array.h: Added. (ck_array_length): (ck_array_buffer): (ck_array_initialized): * StitchMarker/ck/include/ck_backoff.h: Added. (ck_backoff_eb): * StitchMarker/ck/include/ck_barrier.h: Added. * StitchMarker/ck/include/ck_bitmap.h: Added. (ck_bitmap_base): (ck_bitmap_size): (ck_bitmap_bits): (ck_bitmap_buffer): (ck_bitmap_set): (ck_bitmap_bts): (ck_bitmap_reset): (ck_bitmap_test): (ck_bitmap_union): (ck_bitmap_intersection): (ck_bitmap_intersection_negate): (ck_bitmap_clear): (ck_bitmap_empty): (ck_bitmap_full): (ck_bitmap_count): (ck_bitmap_count_intersect): (ck_bitmap_init): (ck_bitmap_iterator_init): (ck_bitmap_next): * StitchMarker/ck/include/ck_brlock.h: Added. (ck_brlock_init): (ck_brlock_write_lock): (ck_brlock_write_unlock): (ck_brlock_write_trylock): (ck_brlock_read_register): (ck_brlock_read_unregister): (ck_brlock_read_lock): (ck_brlock_read_trylock): (ck_brlock_read_unlock): * StitchMarker/ck/include/ck_bytelock.h: Added. (ck_bytelock_init): (ck_bytelock_write_lock): (ck_bytelock_write_unlock): (ck_bytelock_read_lock): (ck_bytelock_read_unlock): * StitchMarker/ck/include/ck_cc.h: Added. (ck_cc_ffs): (ck_cc_clz): (ck_cc_ctz): (ck_cc_popcount): * StitchMarker/ck/include/ck_cohort.h: Added. * StitchMarker/ck/include/ck_elide.h: Added. (ck_elide_stat_init): (_ck_elide_fallback): * StitchMarker/ck/include/ck_epoch.h: Added. (ck_epoch_record_ct): (ck_epoch_begin): (ck_epoch_end): (ck_epoch_call): (ck_epoch_call_strict): (ck_epoch_value): * StitchMarker/ck/include/ck_fifo.h: Added. (ck_fifo_spsc_enqueue_trylock): (ck_fifo_spsc_enqueue_lock): (ck_fifo_spsc_enqueue_unlock): (ck_fifo_spsc_dequeue_trylock): (ck_fifo_spsc_dequeue_lock): (ck_fifo_spsc_dequeue_unlock): (ck_fifo_spsc_init): (ck_fifo_spsc_deinit): (ck_fifo_spsc_enqueue): (ck_fifo_spsc_dequeue): (ck_fifo_spsc_recycle): (ck_fifo_spsc_isempty): (ck_fifo_mpmc_init): (ck_fifo_mpmc_deinit): (ck_fifo_mpmc_enqueue): (ck_fifo_mpmc_tryenqueue): (ck_fifo_mpmc_dequeue): (ck_fifo_mpmc_trydequeue): * StitchMarker/ck/include/ck_hp.h: Added. (ck_hp_set): (ck_hp_set_fence): (ck_hp_clear): * StitchMarker/ck/include/ck_hp_fifo.h: Added. (ck_hp_fifo_init): (ck_hp_fifo_deinit): (ck_hp_fifo_enqueue_mpmc): (ck_hp_fifo_tryenqueue_mpmc): (ck_hp_fifo_dequeue_mpmc): (ck_hp_fifo_trydequeue_mpmc): * StitchMarker/ck/include/ck_hp_stack.h: Added. (ck_hp_stack_push_mpmc): (ck_hp_stack_trypush_mpmc): (ck_hp_stack_pop_mpmc): (ck_hp_stack_trypop_mpmc): * StitchMarker/ck/include/ck_hs.h: Added. * StitchMarker/ck/include/ck_ht.h: Added. * StitchMarker/ck/include/ck_limits.h: Added. * StitchMarker/ck/include/ck_malloc.h: Added. * StitchMarker/ck/include/ck_md.h: Added. * StitchMarker/ck/include/ck_md.h.in: Added. * StitchMarker/ck/include/ck_pflock.h: Added. (ck_pflock_init): (ck_pflock_write_unlock): (ck_pflock_write_lock): (ck_pflock_read_unlock): (ck_pflock_read_lock): * StitchMarker/ck/include/ck_pr.h: Added. (ck_pr_rfo): * StitchMarker/ck/include/ck_queue.h: Added. * StitchMarker/ck/include/ck_rhs.h: Added. * StitchMarker/ck/include/ck_ring.h: Added. (ck_ring_size): (ck_ring_capacity): (ck_ring_init): (_ck_ring_enqueue_sp): (_ck_ring_enqueue_sp_size): (_ck_ring_dequeue_sc): (_ck_ring_enqueue_mp): (_ck_ring_enqueue_mp_size): (_ck_ring_trydequeue_mc): (_ck_ring_dequeue_mc): (ck_ring_enqueue_spsc_size): (ck_ring_enqueue_spsc): (ck_ring_dequeue_spsc): (ck_ring_enqueue_mpmc): (ck_ring_enqueue_mpmc_size): (ck_ring_trydequeue_mpmc): (ck_ring_dequeue_mpmc): (ck_ring_enqueue_spmc_size): (ck_ring_enqueue_spmc): (ck_ring_trydequeue_spmc): (ck_ring_dequeue_spmc): (ck_ring_enqueue_mpsc): (ck_ring_enqueue_mpsc_size): (ck_ring_dequeue_mpsc): * StitchMarker/ck/include/ck_rwcohort.h: Added. * StitchMarker/ck/include/ck_rwlock.h: Added. (ck_rwlock_init): (ck_rwlock_write_unlock): (ck_rwlock_locked_writer): (ck_rwlock_write_downgrade): (ck_rwlock_locked): (ck_rwlock_write_trylock): (ck_rwlock_write_lock): (ck_rwlock_read_trylock): (ck_rwlock_read_lock): (ck_rwlock_locked_reader): (ck_rwlock_read_unlock): (ck_rwlock_recursive_write_lock): (ck_rwlock_recursive_write_trylock): (ck_rwlock_recursive_write_unlock): (ck_rwlock_recursive_read_lock): (ck_rwlock_recursive_read_trylock): (ck_rwlock_recursive_read_unlock): * StitchMarker/ck/include/ck_sequence.h: Added. (ck_sequence_init): (ck_sequence_read_begin): (ck_sequence_read_retry): (ck_sequence_write_begin): (ck_sequence_write_end): * StitchMarker/ck/include/ck_spinlock.h: Added. * StitchMarker/ck/include/ck_stack.h: Added. (ck_stack_push_upmc): (ck_stack_trypush_upmc): (ck_stack_pop_upmc): (ck_stack_trypop_upmc): (ck_stack_batch_pop_upmc): (ck_stack_push_mpmc): (ck_stack_trypush_mpmc): (ck_stack_pop_mpmc): (ck_stack_trypop_mpmc): (ck_stack_batch_pop_mpmc): (ck_stack_push_mpnc): (ck_stack_push_spnc): (ck_stack_pop_npsc): (ck_stack_batch_pop_npsc): (ck_stack_init): * StitchMarker/ck/include/ck_stdbool.h: Added. * StitchMarker/ck/include/ck_stddef.h: Added. * StitchMarker/ck/include/ck_stdint.h: Added. * StitchMarker/ck/include/ck_stdlib.h: Added. * StitchMarker/ck/include/ck_string.h: Added. * StitchMarker/ck/include/ck_swlock.h: Added. (ck_swlock_init): (ck_swlock_write_unlock): (ck_swlock_locked_writer): (ck_swlock_write_downgrade): (ck_swlock_locked): (ck_swlock_write_trylock): (ck_swlock_write_lock): (ck_swlock_write_latch): (ck_swlock_write_unlatch): (ck_swlock_read_trylock): (ck_swlock_read_lock): (ck_swlock_locked_reader): (ck_swlock_read_unlock): * StitchMarker/ck/include/ck_tflock.h: Added. (ck_tflock_ticket_fca_32): (ck_tflock_ticket_init): (ck_tflock_ticket_write_lock): (ck_tflock_ticket_write_unlock): (ck_tflock_ticket_read_lock): (ck_tflock_ticket_read_unlock): * StitchMarker/ck/include/gcc/aarch64/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/aarch64/ck_pr.h: Added. (ck_pr_stall): * StitchMarker/ck/include/gcc/aarch64/ck_pr_llsc.h: Added. (ck_pr_cas_64_2_value): (ck_pr_cas_ptr_2_value): (ck_pr_cas_64_2): (ck_pr_cas_ptr_2): (ck_pr_faa_ptr): (ck_pr_faa_64): * StitchMarker/ck/include/gcc/aarch64/ck_pr_lse.h: Added. (ck_pr_cas_64_2_value): (ck_pr_cas_ptr_2_value): (ck_pr_cas_64_2): (ck_pr_cas_ptr_2): (ck_pr_faa_ptr): (ck_pr_faa_64): * StitchMarker/ck/include/gcc/arm/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/arm/ck_pr.h: Added. (ck_pr_stall): (ck_pr_cas_ptr_2_value): (ck_pr_cas_ptr_2): (ck_pr_cas_ptr_value): (ck_pr_cas_ptr): (ck_pr_faa_ptr): * StitchMarker/ck/include/gcc/ck_cc.h: Added. (ck_cc_ffs): (ck_cc_clz): (ck_cc_ctz): (ck_cc_popcount): * StitchMarker/ck/include/gcc/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/ck_pr.h: Added. (ck_pr_barrier): (ck_pr_md_load_ptr): (ck_pr_md_store_ptr): (ck_pr_stall): (ck_pr_cas_ptr_value): * StitchMarker/ck/include/gcc/ppc/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/ppc/ck_pr.h: Added. (ck_pr_stall): (ck_pr_faa_ptr): * StitchMarker/ck/include/gcc/ppc64/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/ppc64/ck_pr.h: Added. (ck_pr_stall): (ck_pr_cas_64_value): (ck_pr_cas_ptr_value): (ck_pr_cas_64): (ck_pr_cas_ptr): (ck_pr_faa_ptr): * StitchMarker/ck/include/gcc/s390x/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/s390x/ck_pr.h: Added. (ck_pr_stall): (ck_pr_md_load_double): (ck_pr_md_store_double): (ck_pr_cas_64_value): (ck_pr_cas_ptr_value): (ck_pr_cas_64): (ck_pr_cas_ptr): (ck_pr_fas_ptr): (ck_pr_fas_double): (ck_pr_faa_ptr): * StitchMarker/ck/include/gcc/sparcv9/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/sparcv9/ck_pr.h: Added. (ck_pr_stall): (ck_pr_cas_64_value): (ck_pr_cas_64): (ck_pr_cas_ptr): (ck_pr_cas_ptr_value): * StitchMarker/ck/include/gcc/x86/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/x86/ck_pr.h: Added. (ck_pr_stall): * StitchMarker/ck/include/gcc/x86_64/ck_f_pr.h: Added. * StitchMarker/ck/include/gcc/x86_64/ck_pr.h: Added. (ck_pr_stall): (ck_pr_rfo): (ck_pr_load_64_2): (ck_pr_load_ptr_2): (ck_pr_cas_64_2): (ck_pr_cas_ptr_2): (ck_pr_cas_64_2_value): (ck_pr_cas_ptr_2_value): * StitchMarker/ck/include/gcc/x86_64/ck_pr_rtm.h: Added. (ck_pr_rtm_begin): (ck_pr_rtm_end): (ck_pr_rtm_abort): (ck_pr_rtm_test): * StitchMarker/ck/include/spinlock/anderson.h: Added. (ck_spinlock_anderson_init): (ck_spinlock_anderson_locked): (ck_spinlock_anderson_lock): (ck_spinlock_anderson_unlock): * StitchMarker/ck/include/spinlock/cas.h: Added. (ck_spinlock_cas_init): (ck_spinlock_cas_trylock): (ck_spinlock_cas_locked): (ck_spinlock_cas_lock): (ck_spinlock_cas_lock_eb): (ck_spinlock_cas_unlock): * StitchMarker/ck/include/spinlock/clh.h: Added. (ck_spinlock_clh_init): (ck_spinlock_clh_locked): (ck_spinlock_clh_lock): (ck_spinlock_clh_unlock): * StitchMarker/ck/include/spinlock/dec.h: Added. (ck_spinlock_dec_init): (ck_spinlock_dec_trylock): (ck_spinlock_dec_locked): (ck_spinlock_dec_lock): (ck_spinlock_dec_lock_eb): (ck_spinlock_dec_unlock): * StitchMarker/ck/include/spinlock/fas.h: Added. (ck_spinlock_fas_init): (ck_spinlock_fas_trylock): (ck_spinlock_fas_locked): (ck_spinlock_fas_lock): (ck_spinlock_fas_lock_eb): (ck_spinlock_fas_unlock): * StitchMarker/ck/include/spinlock/hclh.h: Added. (ck_spinlock_hclh_init): (ck_spinlock_hclh_locked): (ck_spinlock_hclh_lock): (ck_spinlock_hclh_unlock): * StitchMarker/ck/include/spinlock/mcs.h: Added. (ck_spinlock_mcs_init): (ck_spinlock_mcs_trylock): (ck_spinlock_mcs_locked): (ck_spinlock_mcs_lock): (ck_spinlock_mcs_unlock): * StitchMarker/ck/include/spinlock/ticket.h: Added. (ck_spinlock_ticket_init): (ck_spinlock_ticket_locked): (ck_spinlock_ticket_lock): (ck_spinlock_ticket_lock_pb): (ck_spinlock_ticket_trylock): (ck_spinlock_ticket_unlock): * StitchMarker/ck/regressions/Makefile: Added. * StitchMarker/ck/regressions/Makefile.unsupported: Added. * StitchMarker/ck/regressions/ck_array/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_array/validate/serial.c: Added. (my_free): (my_malloc): (my_realloc): (main): * StitchMarker/ck/regressions/ck_array/validate/serial.dSYM/Contents/Info.plist: Added. * StitchMarker/ck/regressions/ck_array/validate/serial.dSYM/Contents/Resources/DWARF/serial: Added. * StitchMarker/ck/regressions/ck_backoff/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_backoff/validate/validate.c: Added. (main): * StitchMarker/ck/regressions/ck_barrier/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_barrier/benchmark/throughput.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_barrier/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_barrier/validate/barrier_centralized.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_barrier/validate/barrier_combining.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_barrier/validate/barrier_dissemination.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_barrier/validate/barrier_mcs.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_barrier/validate/barrier_tournament.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_bitmap/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_bitmap/validate/serial.c: Added. (check_iteration): (test): (test_init): (random_init): (copy): (test_counts): (random_test): (main): * StitchMarker/ck/regressions/ck_brlock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_brlock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_brlock/benchmark/throughput.c: Added. (thread_brlock): (main): * StitchMarker/ck/regressions/ck_brlock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_brlock/validate/validate.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_bytelock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_bytelock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_bytelock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_bytelock/validate/validate.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_cohort/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_cohort/benchmark/ck_cohort.c: Added. * StitchMarker/ck/regressions/ck_cohort/benchmark/throughput.c: Added. (ck_spinlock_fas_lock_with_context): (ck_spinlock_fas_unlock_with_context): (ck_spinlock_fas_locked_with_context): (fairness): (main): * StitchMarker/ck/regressions/ck_cohort/ck_cohort.h: Added. * StitchMarker/ck/regressions/ck_cohort/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_cohort/validate/validate.c: Added. (ck_spinlock_fas_lock_with_context): (ck_spinlock_fas_unlock_with_context): (ck_spinlock_fas_locked_with_context): (ck_spinlock_fas_trylock_with_context): (thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_epoch/validate/ck_epoch_call.c: Added. (cb): (main): * StitchMarker/ck/regressions/ck_epoch/validate/ck_epoch_poll.c: Added. (destructor): (read_thread): (write_thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/ck_epoch_section.c: Added. (setup_test): (teardown_test): (cleanup): (test_simple_read_section): (test_nested_read_section): (barrier_work): (reader_work): (obj_destroy): (test_single_reader_with_barrier_thread): (test_multiple_readers_with_barrier_thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/ck_epoch_section_2.c: Added. (read_thread): (write_thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/ck_epoch_synchronize.c: Added. (destructor): (read_thread): (write_thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/ck_stack.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_epoch/validate/torture.c: Added. (read_thread): (write_thread): (main): * StitchMarker/ck/regressions/ck_fifo/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_fifo/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_fifo/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_fifo/validate/ck_fifo_mpmc.c: Added. (test): (main): * StitchMarker/ck/regressions/ck_fifo/validate/ck_fifo_mpmc_iterator.c: Added. (main): * StitchMarker/ck/regressions/ck_fifo/validate/ck_fifo_spsc.c: Added. (test): (main): * StitchMarker/ck/regressions/ck_fifo/validate/ck_fifo_spsc_iterator.c: Added. (main): * StitchMarker/ck/regressions/ck_hp/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_hp/benchmark/fifo_latency.c: Added. (main): * StitchMarker/ck/regressions/ck_hp/benchmark/stack_latency.c: Added. (main): * StitchMarker/ck/regressions/ck_hp/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_hp/validate/ck_hp_fifo.c: Added. (test): (destructor): (main): * StitchMarker/ck/regressions/ck_hp/validate/ck_hp_fifo_donner.c: Added. (destructor): (queue_50_50): (main): * StitchMarker/ck/regressions/ck_hp/validate/ck_hp_stack.c: Added. (destructor): (main): * StitchMarker/ck/regressions/ck_hp/validate/nbds_haz_test.c: Added. (stack_pop_mpmc): (thread): (destructor): (main): * StitchMarker/ck/regressions/ck_hp/validate/serial.c: Added. (destructor): (main): * StitchMarker/ck/regressions/ck_hs/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_hs/benchmark/apply.c: Added. (hs_malloc): (hs_free): (hs_compare): (set_destroy): (set_init): (set_count): (set_reset): (test_apply): (run_test): (main): * StitchMarker/ck/regressions/ck_hs/benchmark/parallel_bytestring.c: Added. (alarm_handler): (hs_hash): (hs_compare): (hs_destroy): (hs_malloc): (hs_free): (set_remove): (set_replace): (set_swap): (set_get): (set_insert): (set_count): (set_reset): (reader): (acc): (main): * StitchMarker/ck/regressions/ck_hs/benchmark/serial.c: Added. (hs_malloc): (hs_free): (hs_compare): (set_destroy): (set_init): (set_remove): (set_swap): (set_replace): (set_get): (set_insert): (set_insert_unique): (set_count): (set_reset): (set_gc): (set_rebuild): (keys_shuffle): (run_test): (main): * StitchMarker/ck/regressions/ck_hs/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_hs/validate/serial.c: Added. (hs_malloc): (hs_free): (hs_compare): (test_ip): (test_negative): (test_unique): (test_remove): (run_test): (main): * StitchMarker/ck/regressions/ck_ht/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_ht/benchmark/parallel_bytestring.c: Added. (alarm_handler): (ht_destroy): (ht_malloc): (ht_free): (table_remove): (table_replace): (table_get): (table_insert): (table_count): (table_reset): (reader): (main): * StitchMarker/ck/regressions/ck_ht/benchmark/parallel_direct.c: Added. (alarm_handler): (ht_destroy): (ht_malloc): (ht_free): (table_init): (table_remove): (table_replace): (table_get): (table_insert): (table_count): (table_reset): (ht_reader): (main): * StitchMarker/ck/regressions/ck_ht/benchmark/serial.c: Added. (ht_malloc): (ht_free): (table_remove): (table_replace): (table_get): (table_insert): (table_count): (table_gc): (table_reset): (keys_shuffle): (main): * StitchMarker/ck/regressions/ck_ht/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_ht/validate/serial.c: Added. (ht_malloc): (ht_free): (ht_hash_wrapper): * StitchMarker/ck/regressions/ck_pflock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_pflock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_pflock/benchmark/throughput.c: Added. (thread_pflock): (main): * StitchMarker/ck/regressions/ck_pflock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_pflock/validate/validate.c: Added. (thread): (main): * StitchMarker/ck/regressions/ck_pr/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_pr/benchmark/benchmark.h: Added. (fairness): (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_add_64.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_cas_64.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_cas_64_2.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_faa_64.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_fas_64.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/ck_pr_neg_64.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/benchmark/fp.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_add.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_and.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_bin.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_btc.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_btr.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_bts.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_btx.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_cas.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_dec.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_faa.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_fas.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_fax.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_inc.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_load.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_n.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_or.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_store.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_sub.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_unary.c: Added. (main): * StitchMarker/ck/regressions/ck_pr/validate/ck_pr_xor.c: Added. (rg_width): (main): * StitchMarker/ck/regressions/ck_queue/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_queue/validate/ck_list.c: Added. (test_foreach): (execute): (main): * StitchMarker/ck/regressions/ck_queue/validate/ck_slist.c: Added. (test_foreach): (execute): (main): * StitchMarker/ck/regressions/ck_queue/validate/ck_stailq.c: Added. (test_foreach): (execute): (main): * StitchMarker/ck/regressions/ck_rhs/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_rhs/benchmark/parallel_bytestring.c: Added. (alarm_handler): (hs_hash): (hs_compare): (hs_destroy): (hs_malloc): (hs_free): (set_remove): (set_replace): (set_swap): (set_get): (set_insert): (set_count): (set_reset): (reader): (acc): (main): * StitchMarker/ck/regressions/ck_rhs/benchmark/serial.c: Added. (hs_malloc): (hs_free): (hs_compare): (set_destroy): (set_init): (set_remove): (set_swap): (set_replace): (set_get): (set_insert): (set_insert_unique): (set_count): (set_reset): (set_gc): (set_rebuild): (keys_shuffle): (run_test): (main): * StitchMarker/ck/regressions/ck_rhs/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_rhs/validate/serial.c: Added. (hs_malloc): (hs_free): (hs_compare): (test_ip): (test_negative): (test_unique): (test_remove): (run_test): (main): * StitchMarker/ck/regressions/ck_ring/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_ring/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_ring/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_ring/validate/ck_ring_mpmc.c: Added. (test_mpmc): (test_spmc): (test): (main): * StitchMarker/ck/regressions/ck_ring/validate/ck_ring_mpmc_template.c: Added. (test_spmc): (test): (main): * StitchMarker/ck/regressions/ck_ring/validate/ck_ring_spmc.c: Added. (test_spmc): (test): (main): * StitchMarker/ck/regressions/ck_ring/validate/ck_ring_spmc_template.c: Added. (test_spmc): (test): (main): * StitchMarker/ck/regressions/ck_ring/validate/ck_ring_spsc.c: Added. (test): (main): * StitchMarker/ck/regressions/ck_rwcohort/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_rwcohort/benchmark/ck_neutral.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/benchmark/ck_rp.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/benchmark/ck_wp.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/benchmark/latency.h: Added. (ck_spinlock_fas_lock_with_context): (ck_spinlock_fas_unlock_with_context): (ck_spinlock_fas_locked_with_context): (main): * StitchMarker/ck/regressions/ck_rwcohort/benchmark/throughput.h: Added. (ck_spinlock_fas_lock_with_context): (ck_spinlock_fas_unlock_with_context): (ck_spinlock_fas_locked_with_context): (thread_rwlock): (main): * StitchMarker/ck/regressions/ck_rwcohort/ck_neutral.h: Added. * StitchMarker/ck/regressions/ck_rwcohort/ck_rp.h: Added. * StitchMarker/ck/regressions/ck_rwcohort/ck_wp.h: Added. * StitchMarker/ck/regressions/ck_rwcohort/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_rwcohort/validate/ck_neutral.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/validate/ck_rp.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/validate/ck_wp.c: Added. * StitchMarker/ck/regressions/ck_rwcohort/validate/validate.h: Added. (ck_spinlock_fas_lock_with_context): (ck_spinlock_fas_unlock_with_context): (ck_spinlock_fas_locked_with_context): (thread): (main): * StitchMarker/ck/regressions/ck_rwlock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_rwlock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_rwlock/benchmark/throughput.c: Added. (thread_lock): (rwlock_test): (main): * StitchMarker/ck/regressions/ck_rwlock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_rwlock/validate/validate.c: Added. (thread_recursive): (thread_rtm_adaptive): (thread_rtm_mix): (thread_rtm): (thread): (rwlock_test): (main): * StitchMarker/ck/regressions/ck_sequence/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_sequence/benchmark/ck_sequence.c: Added. (main): * StitchMarker/ck/regressions/ck_sequence/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_sequence/validate/ck_sequence.c: Added. (validate): (consumer): (main): * StitchMarker/ck/regressions/ck_spinlock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_anderson.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_cas.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_clh.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_dec.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_fas.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_hclh.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_mcs.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_spinlock.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_ticket.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/ck_ticket_pb.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/latency.h: Added. (main): * StitchMarker/ck/regressions/ck_spinlock/benchmark/linux_spinlock.c: Added. * StitchMarker/ck/regressions/ck_spinlock/benchmark/throughput.h: Added. (gen_lock): (gen_unlock): (fairness): (main): * StitchMarker/ck/regressions/ck_spinlock/ck_anderson.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_cas.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_clh.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_dec.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_fas.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_hclh.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_mcs.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_spinlock.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_ticket.h: Added. * StitchMarker/ck/regressions/ck_spinlock/ck_ticket_pb.h: Added. * StitchMarker/ck/regressions/ck_spinlock/linux_spinlock.h: Added. (spin_lock): (spin_unlock): * StitchMarker/ck/regressions/ck_spinlock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_anderson.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_cas.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_clh.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_dec.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_fas.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_hclh.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_mcs.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_spinlock.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_ticket.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/ck_ticket_pb.c: Added. * StitchMarker/ck/regressions/ck_spinlock/validate/linux_spinlock.c: Added. (main): * StitchMarker/ck/regressions/ck_spinlock/validate/validate.h: Added. (thread): (main): * StitchMarker/ck/regressions/ck_stack/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_stack/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_stack/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_stack/validate/pair.c: Added. (stack_thread): (stack_assert): (main): * StitchMarker/ck/regressions/ck_stack/validate/pop.c: Added. (stack_thread): (stack_assert): (push_stack): (main): * StitchMarker/ck/regressions/ck_stack/validate/push.c: Added. (stack_thread): (stack_assert): (main): * StitchMarker/ck/regressions/ck_stack/validate/serial.c: Added. (serial): (main): * StitchMarker/ck/regressions/ck_swlock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_swlock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_swlock/benchmark/throughput.c: Added. (swlock_test): (main): * StitchMarker/ck/regressions/ck_swlock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_swlock/validate/validate.c: Added. (thread_rtm_adaptive): (thread_rtm_mix): (thread_rtm): (thread_latch): (thread): (swlock_test): (main): * StitchMarker/ck/regressions/ck_tflock/benchmark/Makefile: Added. * StitchMarker/ck/regressions/ck_tflock/benchmark/latency.c: Added. (main): * StitchMarker/ck/regressions/ck_tflock/benchmark/throughput.c: Added. (tflock_test): (main): * StitchMarker/ck/regressions/ck_tflock/validate/Makefile: Added. * StitchMarker/ck/regressions/ck_tflock/validate/validate.c: Added. (thread): (tflock_ticket_test): (main): * StitchMarker/ck/regressions/common.h: Added. (common_srand): (common_rand): (common_rand_r): (common_srand48): (common_lrand48): (common_drand48): (common_sleep): (common_gettimeofday): (common_alarm): (gettid): (aff_iterate): (aff_iterate_core): (rdtsc): (ck_error): * StitchMarker/ck/src/Makefile: Added. * StitchMarker/ck/src/Makefile.in: Added. * StitchMarker/ck/src/ck_array.c: Added. (ck_array_create): (ck_array_init): (ck_array_put): (ck_array_put_unique): (ck_array_remove): (ck_array_commit): (ck_array_deinit): * StitchMarker/ck/src/ck_barrier_centralized.c: Added. (ck_barrier_centralized): * StitchMarker/ck/src/ck_barrier_combining.c: Added. (ck_barrier_combining_queue_dequeue): (ck_barrier_combining_insert): (ck_barrier_combining_queue_enqueue): (ck_barrier_combining_group_init): (ck_barrier_combining_init): (ck_barrier_combining_aux): (ck_barrier_combining): * StitchMarker/ck/src/ck_barrier_dissemination.c: Added. (ck_barrier_dissemination_init): (ck_barrier_dissemination_subscribe): (ck_barrier_dissemination_size): (ck_barrier_dissemination): * StitchMarker/ck/src/ck_barrier_mcs.c: Added. (ck_barrier_mcs_init): (ck_barrier_mcs_subscribe): (ck_barrier_mcs_check_children): (ck_barrier_mcs_reinitialize_children): (ck_barrier_mcs): * StitchMarker/ck/src/ck_barrier_tournament.c: Added. (ck_barrier_tournament_subscribe): (ck_barrier_tournament_init): (ck_barrier_tournament_size): (ck_barrier_tournament): * StitchMarker/ck/src/ck_epoch.c: Added. (_ck_epoch_delref): (_ck_epoch_addref): (ck_epoch_init): (ck_epoch_recycle): (ck_epoch_register): (ck_epoch_unregister): (ck_epoch_scan): (ck_epoch_dispatch): (ck_epoch_reclaim): (epoch_block): (ck_epoch_synchronize_wait): (ck_epoch_synchronize): (ck_epoch_barrier): (ck_epoch_barrier_wait): (ck_epoch_poll): * StitchMarker/ck/src/ck_hp.c: Added. (ck_hp_init): (ck_hp_set_threshold): (ck_hp_recycle): (ck_hp_unregister): (ck_hp_register): (hazard_compare): (ck_hp_member_scan): (ck_hp_member_cache): (ck_hp_reclaim): (ck_hp_retire): (ck_hp_free): (ck_hp_purge): * StitchMarker/ck/src/ck_hs.c: Added. (ck_hs_map_signal): (_ck_hs_next): (ck_hs_iterator_init): (ck_hs_next): (ck_hs_next_spmc): (ck_hs_stat): (ck_hs_count): (ck_hs_map_destroy): (ck_hs_destroy): (ck_hs_map_create): (ck_hs_reset_size): (ck_hs_reset): (ck_hs_map_probe_next): (ck_hs_map_bound_set): (ck_hs_map_bound_get): (ck_hs_grow): (ck_hs_map_postinsert): (ck_hs_rebuild): (ck_hs_map_probe): (ck_hs_marshal): (ck_hs_gc): (ck_hs_fas): (ck_hs_apply): (ck_hs_set): (ck_hs_put_internal): (ck_hs_put): (ck_hs_put_unique): (ck_hs_get): (ck_hs_remove): (ck_hs_move): (ck_hs_init): * StitchMarker/ck/src/ck_ht.c: Added. (ck_ht_stat): (ck_ht_hash): (ck_ht_hash_direct): (ck_ht_hash_wrapper): (ck_ht_map_create): (ck_ht_map_bound_set): (ck_ht_map_bound_get): (ck_ht_map_destroy): (ck_ht_map_probe_next): (ck_ht_init): (ck_ht_map_probe_wr): (ck_ht_gc): (ck_ht_map_probe_rd): (ck_ht_count): (ck_ht_next): (ck_ht_reset_size_spmc): (ck_ht_reset_spmc): (ck_ht_grow_spmc): (ck_ht_remove_spmc): (ck_ht_get_spmc): (ck_ht_set_spmc): (ck_ht_put_spmc): (ck_ht_destroy): * StitchMarker/ck/src/ck_ht_hash.h: Added. (rotl32): (rotl64): (getblock): (fmix): (MurmurHash3_x86_32): (MurmurHash64A): (MurmurHash64B): * StitchMarker/ck/src/ck_internal.h: Added. (ck_internal_log): (ck_internal_power_2): (ck_internal_max): (ck_internal_max_64): (ck_internal_max_32): (ck_internal_bsf): (ck_internal_bsf_64): * StitchMarker/ck/src/ck_rhs.c: Added. (ck_rhs_entry): (ck_rhs_entry_addr): (ck_rhs_desc): (ck_rhs_wanted_inc): (ck_rhs_probes): (ck_rhs_set_probes): (ck_rhs_probe_bound): (ck_rhs_probe_bound_addr): (ck_rhs_in_rh): (ck_rhs_set_rh): (ck_rhs_unset_rh): (ck_rhs_set_load_factor): (ck_rhs_iterator_init): (ck_rhs_next): (ck_rhs_stat): (ck_rhs_count): (ck_rhs_map_destroy): (ck_rhs_destroy): (ck_rhs_map_create): (ck_rhs_reset_size): (ck_rhs_reset): (ck_rhs_map_probe_next): (ck_rhs_map_probe_prev): (ck_rhs_map_bound_set): (ck_rhs_map_bound_get): (ck_rhs_grow): (ck_rhs_rebuild): (ck_rhs_map_probe_rm): (ck_rhs_map_probe): (ck_rhs_marshal): (ck_rhs_gc): (ck_rhs_add_wanted): (ck_rhs_remove_wanted): (ck_rhs_get_first_offset): (ck_rhs_put_robin_hood): (ck_rhs_do_backward_shift_delete): (ck_rhs_fas): (ck_rhs_apply): (ck_rhs_set): (ck_rhs_put_internal): (ck_rhs_put): (ck_rhs_put_unique): (ck_rhs_get): (ck_rhs_remove): (ck_rhs_move): (ck_rhs_init): * StitchMarker/folly.sh: Added. Build script. * StitchMarker/folly/LICENSE: Added. * StitchMarker/folly/README.md: Added. * StitchMarker/folly/boost/LICENSE_1_0.txt: Added. * StitchMarker/folly/boost/assert.hpp: Added. * StitchMarker/folly/boost/blank.hpp: Added. * StitchMarker/folly/boost/blank_fwd.hpp: Added. * StitchMarker/folly/boost/concept/assert.hpp: Added. * StitchMarker/folly/boost/concept/detail/backward_compatibility.hpp: Added. * StitchMarker/folly/boost/concept/detail/concept_def.hpp: Added. * StitchMarker/folly/boost/concept/detail/concept_undef.hpp: Added. * StitchMarker/folly/boost/concept/detail/general.hpp: Added. * StitchMarker/folly/boost/concept/detail/has_constraints.hpp: Added. * StitchMarker/folly/boost/concept/usage.hpp: Added. * StitchMarker/folly/boost/concept_check.hpp: Added. * StitchMarker/folly/boost/config.hpp: Added. * StitchMarker/folly/boost/config/compiler/clang.hpp: Added. * StitchMarker/folly/boost/config/no_tr1/cmath.hpp: Added. * StitchMarker/folly/boost/config/no_tr1/complex.hpp: Added. * StitchMarker/folly/boost/config/platform/macos.hpp: Added. * StitchMarker/folly/boost/config/posix_features.hpp: Added. * StitchMarker/folly/boost/config/select_compiler_config.hpp: Added. * StitchMarker/folly/boost/config/select_platform_config.hpp: Added. * StitchMarker/folly/boost/config/select_stdlib_config.hpp: Added. * StitchMarker/folly/boost/config/stdlib/libcpp.hpp: Added. * StitchMarker/folly/boost/config/suffix.hpp: Added. * StitchMarker/folly/boost/config/user.hpp: Added. * StitchMarker/folly/boost/core/addressof.hpp: Added. * StitchMarker/folly/boost/core/checked_delete.hpp: Added. * StitchMarker/folly/boost/core/enable_if.hpp: Added. * StitchMarker/folly/boost/core/no_exceptions_support.hpp: Added. * StitchMarker/folly/boost/core/noncopyable.hpp: Added. * StitchMarker/folly/boost/cstdint.hpp: Added. * StitchMarker/folly/boost/current_function.hpp: Added. * StitchMarker/folly/boost/detail/endian.hpp: Added. * StitchMarker/folly/boost/detail/indirect_traits.hpp: Added. * StitchMarker/folly/boost/detail/iterator.hpp: Added. * StitchMarker/folly/boost/detail/templated_streams.hpp: Added. * StitchMarker/folly/boost/detail/workaround.hpp: Added. * StitchMarker/folly/boost/exception/exception.hpp: Added. * StitchMarker/folly/boost/function_types/components.hpp: Added. * StitchMarker/folly/boost/function_types/config/cc_names.hpp: Added. * StitchMarker/folly/boost/function_types/config/compiler.hpp: Added. * StitchMarker/folly/boost/function_types/config/config.hpp: Added. * StitchMarker/folly/boost/function_types/detail/class_transform.hpp: Added. * StitchMarker/folly/boost/function_types/detail/components_as_mpl_sequence.hpp: Added. * StitchMarker/folly/boost/function_types/detail/components_impl/arity10_0.hpp: Added. * StitchMarker/folly/boost/function_types/detail/components_impl/arity10_1.hpp: Added. * StitchMarker/folly/boost/function_types/detail/components_impl/arity20_0.hpp: Added. * StitchMarker/folly/boost/function_types/detail/components_impl/arity20_1.hpp: Added. * StitchMarker/folly/boost/function_types/detail/encoding/aliases_def.hpp: Added. * StitchMarker/folly/boost/function_types/detail/encoding/aliases_undef.hpp: Added. * StitchMarker/folly/boost/function_types/detail/encoding/def.hpp: Added. * StitchMarker/folly/boost/function_types/detail/encoding/undef.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_arity_loop.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_cc_loop/preprocessed.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_loop.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_retag_default_cc/preprocessed.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_tags/cc_tag.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_tags/preprocessed.hpp: Added. * StitchMarker/folly/boost/function_types/detail/pp_variate_loop/preprocessed.hpp: Added. * StitchMarker/folly/boost/function_types/detail/retag_default_cc.hpp: Added. * StitchMarker/folly/boost/function_types/function_arity.hpp: Added. * StitchMarker/folly/boost/function_types/is_callable_builtin.hpp: Added. * StitchMarker/folly/boost/function_types/property_tags.hpp: Added. * StitchMarker/folly/boost/implicit_cast.hpp: Added. * StitchMarker/folly/boost/integer.hpp: Added. * StitchMarker/folly/boost/integer/integer_log2.hpp: Added. * StitchMarker/folly/boost/integer/integer_mask.hpp: Added. * StitchMarker/folly/boost/integer/static_log2.hpp: Added. * StitchMarker/folly/boost/integer_fwd.hpp: Added. * StitchMarker/folly/boost/integer_traits.hpp: Added. * StitchMarker/folly/boost/intrusive/circular_list_algorithms.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/algo_type.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/algorithm.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/array_initializer.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/assert.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/config_begin.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/config_end.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/default_header_holder.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/ebo_functor_holder.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/equal_to_value.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/exception_disposer.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/function_detector.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/generic_hook.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/get_value_traits.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/hook_traits.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/iiterator.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/is_stateful_value_traits.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/iterator.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/key_nodeptr_comp.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/list_iterator.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/list_node.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/minimal_less_equal_header.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/mpl.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/node_holder.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/parent_from_member.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/pointer_element.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/reverse_iterator.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/simple_disposers.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/size_holder.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/std_fwd.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/to_raw_pointer.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/tree_value_compare.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/uncast.hpp: Added. * StitchMarker/folly/boost/intrusive/detail/workaround.hpp: Added. * StitchMarker/folly/boost/intrusive/intrusive_fwd.hpp: Added. * StitchMarker/folly/boost/intrusive/link_mode.hpp: Added. * StitchMarker/folly/boost/intrusive/list.hpp: Added. * StitchMarker/folly/boost/intrusive/list_hook.hpp: Added. * StitchMarker/folly/boost/intrusive/options.hpp: Added. * StitchMarker/folly/boost/intrusive/pack_options.hpp: Added. * StitchMarker/folly/boost/intrusive/pointer_rebind.hpp: Added. * StitchMarker/folly/boost/intrusive/pointer_traits.hpp: Added. * StitchMarker/folly/boost/iterator.hpp: Added. * StitchMarker/folly/boost/iterator/detail/config_def.hpp: Added. * StitchMarker/folly/boost/iterator/detail/config_undef.hpp: Added. * StitchMarker/folly/boost/iterator/detail/enable_if.hpp: Added. * StitchMarker/folly/boost/iterator/detail/facade_iterator_category.hpp: Added. * StitchMarker/folly/boost/iterator/interoperable.hpp: Added. * StitchMarker/folly/boost/iterator/iterator_adaptor.hpp: Added. * StitchMarker/folly/boost/iterator/iterator_categories.hpp: Added. * StitchMarker/folly/boost/iterator/iterator_concepts.hpp: Added. * StitchMarker/folly/boost/iterator/iterator_facade.hpp: Added. * StitchMarker/folly/boost/iterator/iterator_traits.hpp: Added. * StitchMarker/folly/boost/limits.hpp: Added. * StitchMarker/folly/boost/math/policies/policy.hpp: Added. * StitchMarker/folly/boost/math/special_functions/detail/fp_traits.hpp: Added. * StitchMarker/folly/boost/math/special_functions/detail/round_fwd.hpp: Added. * StitchMarker/folly/boost/math/special_functions/fpclassify.hpp: Added. * StitchMarker/folly/boost/math/special_functions/math_fwd.hpp: Added. * StitchMarker/folly/boost/math/tools/config.hpp: Added. * StitchMarker/folly/boost/math/tools/promotion.hpp: Added. * StitchMarker/folly/boost/math/tools/real_cast.hpp: Added. * StitchMarker/folly/boost/math/tools/user.hpp: Added. * StitchMarker/folly/boost/move/core.hpp: Added. * StitchMarker/folly/boost/move/detail/config_begin.hpp: Added. * StitchMarker/folly/boost/move/detail/config_end.hpp: Added. * StitchMarker/folly/boost/move/detail/iterator_traits.hpp: Added. * StitchMarker/folly/boost/move/detail/meta_utils.hpp: Added. * StitchMarker/folly/boost/move/detail/meta_utils_core.hpp: Added. * StitchMarker/folly/boost/move/detail/std_ns_begin.hpp: Added. * StitchMarker/folly/boost/move/detail/std_ns_end.hpp: Added. * StitchMarker/folly/boost/move/detail/type_traits.hpp: Added. * StitchMarker/folly/boost/move/detail/workaround.hpp: Added. * StitchMarker/folly/boost/move/utility_core.hpp: Added. * StitchMarker/folly/boost/mpl/O1_size.hpp: Added. * StitchMarker/folly/boost/mpl/O1_size_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/advance.hpp: Added. * StitchMarker/folly/boost/mpl/advance_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/always.hpp: Added. * StitchMarker/folly/boost/mpl/and.hpp: Added. * StitchMarker/folly/boost/mpl/apply.hpp: Added. * StitchMarker/folly/boost/mpl/apply_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/apply_wrap.hpp: Added. * StitchMarker/folly/boost/mpl/arg.hpp: Added. * StitchMarker/folly/boost/mpl/arg_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/assert.hpp: Added. * StitchMarker/folly/boost/mpl/at.hpp: Added. * StitchMarker/folly/boost/mpl/at_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/O1_size_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/adl_barrier.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/advance_backward.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/advance_forward.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/arg_typedef.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/arithmetic_op.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/arity.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/arity_spec.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/at_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/begin_end_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/clear_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/common_name_wknd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/comparison_op.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/adl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/arrays.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/bcc.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/bind.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/compiler.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/ctps.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/dtp.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/eti.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/forwarding.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/gcc.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/gpu.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/has_apply.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/has_xxx.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/integral.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/intel.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/lambda.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/msvc.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/msvc_typename.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/nttp.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/overload_resolution.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/pp_counter.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/preprocessor.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/static_constant.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/ttp.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/typeof.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/use_preprocessed.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/config/workaround.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/contains_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/find_if_pred.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/full_lambda.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/has_apply.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/has_begin.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/has_size.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/has_tag.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/has_type.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/include_preprocessed.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/inserter_algorithm.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/integral_wrapper.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/is_msvc_eti_arg.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/iter_apply.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/iter_fold_if_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/iter_fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/lambda_arity_param.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/lambda_spec.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/lambda_support.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/largest_int.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/msvc_eti_base.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/msvc_never_true.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/msvc_type.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/na.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/na_assert.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/na_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/na_spec.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/nested_type_wknd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/nttp_decl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/numeric_cast_utils.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/numeric_op.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/and.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/apply.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/arg.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/bind.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/bitand.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/greater.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/less.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/list.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/minus.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/or.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/plus.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/quote.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessed/gcc/vector.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessor/def_params_tail.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessor/default_params.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessor/enum.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/preprocessor/params.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/push_back_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/push_front_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/reverse_fold_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/size_impl.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/static_cast.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/template_arity.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/template_arity_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/traits_lambda_spec.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/type_wrapper.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/value_wknd.hpp: Added. * StitchMarker/folly/boost/mpl/aux_/yes_no.hpp: Added. * StitchMarker/folly/boost/mpl/back_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/back_inserter.hpp: Added. * StitchMarker/folly/boost/mpl/begin_end.hpp: Added. * StitchMarker/folly/boost/mpl/begin_end_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/bind.hpp: Added. * StitchMarker/folly/boost/mpl/bind_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/bitand.hpp: Added. * StitchMarker/folly/boost/mpl/bitxor.hpp: Added. * StitchMarker/folly/boost/mpl/bool.hpp: Added. * StitchMarker/folly/boost/mpl/bool_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/clear.hpp: Added. * StitchMarker/folly/boost/mpl/clear_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/comparison.hpp: Added. * StitchMarker/folly/boost/mpl/contains.hpp: Added. * StitchMarker/folly/boost/mpl/contains_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/deref.hpp: Added. * StitchMarker/folly/boost/mpl/distance.hpp: Added. * StitchMarker/folly/boost/mpl/distance_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/empty_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/equal_to.hpp: Added. * StitchMarker/folly/boost/mpl/eval_if.hpp: Added. * StitchMarker/folly/boost/mpl/find.hpp: Added. * StitchMarker/folly/boost/mpl/find_if.hpp: Added. * StitchMarker/folly/boost/mpl/fold.hpp: Added. * StitchMarker/folly/boost/mpl/front_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/front_inserter.hpp: Added. * StitchMarker/folly/boost/mpl/greater.hpp: Added. * StitchMarker/folly/boost/mpl/greater_equal.hpp: Added. * StitchMarker/folly/boost/mpl/has_xxx.hpp: Added. * StitchMarker/folly/boost/mpl/identity.hpp: Added. * StitchMarker/folly/boost/mpl/if.hpp: Added. * StitchMarker/folly/boost/mpl/inserter.hpp: Added. * StitchMarker/folly/boost/mpl/int.hpp: Added. * StitchMarker/folly/boost/mpl/int_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/integral_c.hpp: Added. * StitchMarker/folly/boost/mpl/integral_c_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/integral_c_tag.hpp: Added. * StitchMarker/folly/boost/mpl/iter_fold.hpp: Added. * StitchMarker/folly/boost/mpl/iter_fold_if.hpp: Added. * StitchMarker/folly/boost/mpl/iterator_range.hpp: Added. * StitchMarker/folly/boost/mpl/iterator_tags.hpp: Added. * StitchMarker/folly/boost/mpl/lambda.hpp: Added. * StitchMarker/folly/boost/mpl/lambda_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/less.hpp: Added. * StitchMarker/folly/boost/mpl/less_equal.hpp: Added. * StitchMarker/folly/boost/mpl/limits/arity.hpp: Added. * StitchMarker/folly/boost/mpl/limits/list.hpp: Added. * StitchMarker/folly/boost/mpl/limits/vector.hpp: Added. * StitchMarker/folly/boost/mpl/list.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/O1_size.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/begin_end.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/clear.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/empty.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/front.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/include_preprocessed.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/item.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/iterator.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/pop_front.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/preprocessed/plain/list10.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/preprocessed/plain/list20.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/push_back.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/push_front.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/size.hpp: Added. * StitchMarker/folly/boost/mpl/list/aux_/tag.hpp: Added. * StitchMarker/folly/boost/mpl/list/list0.hpp: Added. * StitchMarker/folly/boost/mpl/list/list10.hpp: Added. * StitchMarker/folly/boost/mpl/list/list20.hpp: Added. * StitchMarker/folly/boost/mpl/logical.hpp: Added. * StitchMarker/folly/boost/mpl/long.hpp: Added. * StitchMarker/folly/boost/mpl/long_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/minus.hpp: Added. * StitchMarker/folly/boost/mpl/negate.hpp: Added. * StitchMarker/folly/boost/mpl/next.hpp: Added. * StitchMarker/folly/boost/mpl/next_prior.hpp: Added. * StitchMarker/folly/boost/mpl/not.hpp: Added. * StitchMarker/folly/boost/mpl/not_equal_to.hpp: Added. * StitchMarker/folly/boost/mpl/numeric_cast.hpp: Added. * StitchMarker/folly/boost/mpl/or.hpp: Added. * StitchMarker/folly/boost/mpl/pair.hpp: Added. * StitchMarker/folly/boost/mpl/placeholders.hpp: Added. * StitchMarker/folly/boost/mpl/plus.hpp: Added. * StitchMarker/folly/boost/mpl/pop_back_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/pop_front_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/prior.hpp: Added. * StitchMarker/folly/boost/mpl/protect.hpp: Added. * StitchMarker/folly/boost/mpl/push_back.hpp: Added. * StitchMarker/folly/boost/mpl/push_back_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/push_front.hpp: Added. * StitchMarker/folly/boost/mpl/push_front_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/quote.hpp: Added. * StitchMarker/folly/boost/mpl/remove.hpp: Added. * StitchMarker/folly/boost/mpl/remove_if.hpp: Added. * StitchMarker/folly/boost/mpl/reverse_fold.hpp: Added. * StitchMarker/folly/boost/mpl/same_as.hpp: Added. * StitchMarker/folly/boost/mpl/sequence_tag.hpp: Added. * StitchMarker/folly/boost/mpl/sequence_tag_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/size.hpp: Added. * StitchMarker/folly/boost/mpl/size_fwd.hpp: Added. * StitchMarker/folly/boost/mpl/tag.hpp: Added. * StitchMarker/folly/boost/mpl/vector.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/O1_size.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/at.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/back.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/begin_end.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/clear.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/empty.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/front.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/include_preprocessed.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/item.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/iterator.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/pop_back.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/pop_front.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/push_back.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/push_front.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/size.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/tag.hpp: Added. * StitchMarker/folly/boost/mpl/vector/aux_/vector0.hpp: Added. * StitchMarker/folly/boost/mpl/vector/vector0.hpp: Added. * StitchMarker/folly/boost/mpl/vector/vector10.hpp: Added. * StitchMarker/folly/boost/mpl/vector/vector20.hpp: Added. * StitchMarker/folly/boost/mpl/vector/vector30.hpp: Added. * StitchMarker/folly/boost/mpl/void.hpp: Added. * StitchMarker/folly/boost/mpl/void_fwd.hpp: Added. * StitchMarker/folly/boost/next_prior.hpp: Added. * StitchMarker/folly/boost/noncopyable.hpp: Added. * StitchMarker/folly/boost/operators.hpp: Added. * StitchMarker/folly/boost/pending/integer_log2.hpp: Added. * StitchMarker/folly/boost/predef.h: Added. * StitchMarker/folly/boost/predef/architecture.h: Added. * StitchMarker/folly/boost/predef/architecture/alpha.h: Added. * StitchMarker/folly/boost/predef/architecture/arm.h: Added. * StitchMarker/folly/boost/predef/architecture/blackfin.h: Added. * StitchMarker/folly/boost/predef/architecture/convex.h: Added. * StitchMarker/folly/boost/predef/architecture/ia64.h: Added. * StitchMarker/folly/boost/predef/architecture/m68k.h: Added. * StitchMarker/folly/boost/predef/architecture/mips.h: Added. * StitchMarker/folly/boost/predef/architecture/parisc.h: Added. * StitchMarker/folly/boost/predef/architecture/ppc.h: Added. * StitchMarker/folly/boost/predef/architecture/pyramid.h: Added. * StitchMarker/folly/boost/predef/architecture/rs6k.h: Added. * StitchMarker/folly/boost/predef/architecture/sparc.h: Added. * StitchMarker/folly/boost/predef/architecture/superh.h: Added. * StitchMarker/folly/boost/predef/architecture/sys370.h: Added. * StitchMarker/folly/boost/predef/architecture/sys390.h: Added. * StitchMarker/folly/boost/predef/architecture/x86.h: Added. * StitchMarker/folly/boost/predef/architecture/x86/32.h: Added. * StitchMarker/folly/boost/predef/architecture/x86/64.h: Added. * StitchMarker/folly/boost/predef/architecture/z.h: Added. * StitchMarker/folly/boost/predef/compiler.h: Added. * StitchMarker/folly/boost/predef/compiler/borland.h: Added. * StitchMarker/folly/boost/predef/compiler/clang.h: Added. * StitchMarker/folly/boost/predef/compiler/comeau.h: Added. * StitchMarker/folly/boost/predef/compiler/compaq.h: Added. * StitchMarker/folly/boost/predef/compiler/diab.h: Added. * StitchMarker/folly/boost/predef/compiler/digitalmars.h: Added. * StitchMarker/folly/boost/predef/compiler/dignus.h: Added. * StitchMarker/folly/boost/predef/compiler/edg.h: Added. * StitchMarker/folly/boost/predef/compiler/ekopath.h: Added. * StitchMarker/folly/boost/predef/compiler/gcc.h: Added. * StitchMarker/folly/boost/predef/compiler/gcc_xml.h: Added. * StitchMarker/folly/boost/predef/compiler/greenhills.h: Added. * StitchMarker/folly/boost/predef/compiler/hp_acc.h: Added. * StitchMarker/folly/boost/predef/compiler/iar.h: Added. * StitchMarker/folly/boost/predef/compiler/ibm.h: Added. * StitchMarker/folly/boost/predef/compiler/intel.h: Added. * StitchMarker/folly/boost/predef/compiler/kai.h: Added. * StitchMarker/folly/boost/predef/compiler/llvm.h: Added. * StitchMarker/folly/boost/predef/compiler/metaware.h: Added. * StitchMarker/folly/boost/predef/compiler/metrowerks.h: Added. * StitchMarker/folly/boost/predef/compiler/microtec.h: Added. * StitchMarker/folly/boost/predef/compiler/mpw.h: Added. * StitchMarker/folly/boost/predef/compiler/palm.h: Added. * StitchMarker/folly/boost/predef/compiler/pgi.h: Added. * StitchMarker/folly/boost/predef/compiler/sgi_mipspro.h: Added. * StitchMarker/folly/boost/predef/compiler/sunpro.h: Added. * StitchMarker/folly/boost/predef/compiler/tendra.h: Added. * StitchMarker/folly/boost/predef/compiler/visualc.h: Added. * StitchMarker/folly/boost/predef/compiler/watcom.h: Added. * StitchMarker/folly/boost/predef/detail/_cassert.h: Added. * StitchMarker/folly/boost/predef/detail/_exception.h: Added. * StitchMarker/folly/boost/predef/detail/comp_detected.h: Added. * StitchMarker/folly/boost/predef/detail/endian_compat.h: Added. * StitchMarker/folly/boost/predef/detail/os_detected.h: Added. * StitchMarker/folly/boost/predef/detail/test.h: Added. * StitchMarker/folly/boost/predef/hardware.h: Added. * StitchMarker/folly/boost/predef/hardware/simd.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/arm.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/arm/versions.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/ppc.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/ppc/versions.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/x86.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/x86/versions.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/x86_amd.h: Added. * StitchMarker/folly/boost/predef/hardware/simd/x86_amd/versions.h: Added. * StitchMarker/folly/boost/predef/language.h: Added. * StitchMarker/folly/boost/predef/language/objc.h: Added. * StitchMarker/folly/boost/predef/language/stdc.h: Added. * StitchMarker/folly/boost/predef/language/stdcpp.h: Added. * StitchMarker/folly/boost/predef/library.h: Added. * StitchMarker/folly/boost/predef/library/c.h: Added. * StitchMarker/folly/boost/predef/library/c/_prefix.h: Added. * StitchMarker/folly/boost/predef/library/c/gnu.h: Added. * StitchMarker/folly/boost/predef/library/c/uc.h: Added. * StitchMarker/folly/boost/predef/library/c/vms.h: Added. * StitchMarker/folly/boost/predef/library/c/zos.h: Added. * StitchMarker/folly/boost/predef/library/std.h: Added. * StitchMarker/folly/boost/predef/library/std/_prefix.h: Added. * StitchMarker/folly/boost/predef/library/std/cxx.h: Added. * StitchMarker/folly/boost/predef/library/std/dinkumware.h: Added. * StitchMarker/folly/boost/predef/library/std/libcomo.h: Added. * StitchMarker/folly/boost/predef/library/std/modena.h: Added. * StitchMarker/folly/boost/predef/library/std/msl.h: Added. * StitchMarker/folly/boost/predef/library/std/roguewave.h: Added. * StitchMarker/folly/boost/predef/library/std/sgi.h: Added. * StitchMarker/folly/boost/predef/library/std/stdcpp3.h: Added. * StitchMarker/folly/boost/predef/library/std/stlport.h: Added. * StitchMarker/folly/boost/predef/library/std/vacpp.h: Added. * StitchMarker/folly/boost/predef/make.h: Added. * StitchMarker/folly/boost/predef/os.h: Added. * StitchMarker/folly/boost/predef/os/aix.h: Added. * StitchMarker/folly/boost/predef/os/amigaos.h: Added. * StitchMarker/folly/boost/predef/os/android.h: Added. * StitchMarker/folly/boost/predef/os/beos.h: Added. * StitchMarker/folly/boost/predef/os/bsd.h: Added. * StitchMarker/folly/boost/predef/os/bsd/bsdi.h: Added. * StitchMarker/folly/boost/predef/os/bsd/dragonfly.h: Added. * StitchMarker/folly/boost/predef/os/bsd/free.h: Added. * StitchMarker/folly/boost/predef/os/bsd/net.h: Added. * StitchMarker/folly/boost/predef/os/bsd/open.h: Added. * StitchMarker/folly/boost/predef/os/cygwin.h: Added. * StitchMarker/folly/boost/predef/os/haiku.h: Added. * StitchMarker/folly/boost/predef/os/hpux.h: Added. * StitchMarker/folly/boost/predef/os/ios.h: Added. * StitchMarker/folly/boost/predef/os/irix.h: Added. * StitchMarker/folly/boost/predef/os/linux.h: Added. * StitchMarker/folly/boost/predef/os/macos.h: Added. * StitchMarker/folly/boost/predef/os/os400.h: Added. * StitchMarker/folly/boost/predef/os/qnxnto.h: Added. * StitchMarker/folly/boost/predef/os/solaris.h: Added. * StitchMarker/folly/boost/predef/os/unix.h: Added. * StitchMarker/folly/boost/predef/os/vms.h: Added. * StitchMarker/folly/boost/predef/os/windows.h: Added. * StitchMarker/folly/boost/predef/other.h: Added. * StitchMarker/folly/boost/predef/other/endian.h: Added. * StitchMarker/folly/boost/predef/platform.h: Added. * StitchMarker/folly/boost/predef/platform/mingw.h: Added. * StitchMarker/folly/boost/predef/platform/windows_desktop.h: Added. * StitchMarker/folly/boost/predef/platform/windows_phone.h: Added. * StitchMarker/folly/boost/predef/platform/windows_runtime.h: Added. * StitchMarker/folly/boost/predef/platform/windows_store.h: Added. * StitchMarker/folly/boost/predef/version.h: Added. * StitchMarker/folly/boost/predef/version_number.h: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/add.hpp: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/dec.hpp: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/detail/div_base.hpp: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/inc.hpp: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/mod.hpp: Added. * StitchMarker/folly/boost/preprocessor/arithmetic/sub.hpp: Added. * StitchMarker/folly/boost/preprocessor/array/data.hpp: Added. * StitchMarker/folly/boost/preprocessor/array/elem.hpp: Added. * StitchMarker/folly/boost/preprocessor/array/size.hpp: Added. * StitchMarker/folly/boost/preprocessor/cat.hpp: Added. * StitchMarker/folly/boost/preprocessor/comma_if.hpp: Added. * StitchMarker/folly/boost/preprocessor/comparison/less_equal.hpp: Added. * StitchMarker/folly/boost/preprocessor/config/config.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/deduce_d.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/detail/while.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/expr_iif.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/if.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/iif.hpp: Added. * StitchMarker/folly/boost/preprocessor/control/while.hpp: Added. * StitchMarker/folly/boost/preprocessor/debug/error.hpp: Added. * StitchMarker/folly/boost/preprocessor/detail/auto_rec.hpp: Added. * StitchMarker/folly/boost/preprocessor/detail/check.hpp: Added. * StitchMarker/folly/boost/preprocessor/detail/is_binary.hpp: Added. * StitchMarker/folly/boost/preprocessor/empty.hpp: Added. * StitchMarker/folly/boost/preprocessor/facilities/empty.hpp: Added. * StitchMarker/folly/boost/preprocessor/facilities/expand.hpp: Added. * StitchMarker/folly/boost/preprocessor/facilities/identity.hpp: Added. * StitchMarker/folly/boost/preprocessor/facilities/overload.hpp: Added. * StitchMarker/folly/boost/preprocessor/identity.hpp: Added. * StitchMarker/folly/boost/preprocessor/inc.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/adt.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/detail/fold_left.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/detail/fold_right.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/fold_left.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/fold_right.hpp: Added. * StitchMarker/folly/boost/preprocessor/list/reverse.hpp: Added. * StitchMarker/folly/boost/preprocessor/logical/and.hpp: Added. * StitchMarker/folly/boost/preprocessor/logical/bitand.hpp: Added. * StitchMarker/folly/boost/preprocessor/logical/bool.hpp: Added. * StitchMarker/folly/boost/preprocessor/logical/compl.hpp: Added. * StitchMarker/folly/boost/preprocessor/logical/not.hpp: Added. * StitchMarker/folly/boost/preprocessor/punctuation/comma.hpp: Added. * StitchMarker/folly/boost/preprocessor/punctuation/comma_if.hpp: Added. * StitchMarker/folly/boost/preprocessor/punctuation/paren.hpp: Added. * StitchMarker/folly/boost/preprocessor/repeat.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/detail/for.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/enum_binary_params.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/enum_params.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/enum_trailing_params.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/for.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/repeat.hpp: Added. * StitchMarker/folly/boost/preprocessor/repetition/repeat_from_to.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/cat.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/detail/is_empty.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/elem.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/enum.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/fold_left.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/for_each_i.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/seq.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/size.hpp: Added. * StitchMarker/folly/boost/preprocessor/seq/transform.hpp: Added. * StitchMarker/folly/boost/preprocessor/stringize.hpp: Added. * StitchMarker/folly/boost/preprocessor/tuple/detail/is_single_return.hpp: Added. * StitchMarker/folly/boost/preprocessor/tuple/eat.hpp: Added. * StitchMarker/folly/boost/preprocessor/tuple/elem.hpp: Added. * StitchMarker/folly/boost/preprocessor/tuple/rem.hpp: Added. * StitchMarker/folly/boost/preprocessor/variadic/elem.hpp: Added. * StitchMarker/folly/boost/preprocessor/variadic/size.hpp: Added. * StitchMarker/folly/boost/random.hpp: Added. * StitchMarker/folly/boost/random/additive_combine.hpp: Added. * StitchMarker/folly/boost/random/bernoulli_distribution.hpp: Added. * StitchMarker/folly/boost/random/beta_distribution.hpp: Added. * StitchMarker/folly/boost/random/binomial_distribution.hpp: Added. * StitchMarker/folly/boost/random/cauchy_distribution.hpp: Added. * StitchMarker/folly/boost/random/chi_squared_distribution.hpp: Added. * StitchMarker/folly/boost/random/detail/config.hpp: Added. * StitchMarker/folly/boost/random/detail/const_mod.hpp: Added. * StitchMarker/folly/boost/random/detail/disable_warnings.hpp: Added. * StitchMarker/folly/boost/random/detail/enable_warnings.hpp: Added. * StitchMarker/folly/boost/random/detail/generator_bits.hpp: Added. * StitchMarker/folly/boost/random/detail/generator_seed_seq.hpp: Added. * StitchMarker/folly/boost/random/detail/int_float_pair.hpp: Added. * StitchMarker/folly/boost/random/detail/integer_log2.hpp: Added. * StitchMarker/folly/boost/random/detail/large_arithmetic.hpp: Added. * StitchMarker/folly/boost/random/detail/operators.hpp: Added. * StitchMarker/folly/boost/random/detail/polynomial.hpp: Added. * StitchMarker/folly/boost/random/detail/ptr_helper.hpp: Added. * StitchMarker/folly/boost/random/detail/seed.hpp: Added. * StitchMarker/folly/boost/random/detail/seed_impl.hpp: Added. * StitchMarker/folly/boost/random/detail/signed_unsigned_tools.hpp: Added. * StitchMarker/folly/boost/random/detail/uniform_int_float.hpp: Added. * StitchMarker/folly/boost/random/detail/vector_io.hpp: Added. * StitchMarker/folly/boost/random/discard_block.hpp: Added. * StitchMarker/folly/boost/random/discrete_distribution.hpp: Added. * StitchMarker/folly/boost/random/exponential_distribution.hpp: Added. * StitchMarker/folly/boost/random/extreme_value_distribution.hpp: Added. * StitchMarker/folly/boost/random/fisher_f_distribution.hpp: Added. * StitchMarker/folly/boost/random/gamma_distribution.hpp: Added. * StitchMarker/folly/boost/random/generate_canonical.hpp: Added. * StitchMarker/folly/boost/random/geometric_distribution.hpp: Added. * StitchMarker/folly/boost/random/hyperexponential_distribution.hpp: Added. * StitchMarker/folly/boost/random/independent_bits.hpp: Added. * StitchMarker/folly/boost/random/inversive_congruential.hpp: Added. * StitchMarker/folly/boost/random/lagged_fibonacci.hpp: Added. * StitchMarker/folly/boost/random/laplace_distribution.hpp: Added. * StitchMarker/folly/boost/random/linear_congruential.hpp: Added. * StitchMarker/folly/boost/random/linear_feedback_shift.hpp: Added. * StitchMarker/folly/boost/random/lognormal_distribution.hpp: Added. * StitchMarker/folly/boost/random/mersenne_twister.hpp: Added. * StitchMarker/folly/boost/random/negative_binomial_distribution.hpp: Added. * StitchMarker/folly/boost/random/non_central_chi_squared_distribution.hpp: Added. * StitchMarker/folly/boost/random/normal_distribution.hpp: Added. * StitchMarker/folly/boost/random/piecewise_constant_distribution.hpp: Added. * StitchMarker/folly/boost/random/piecewise_linear_distribution.hpp: Added. * StitchMarker/folly/boost/random/poisson_distribution.hpp: Added. * StitchMarker/folly/boost/random/random_number_generator.hpp: Added. * StitchMarker/folly/boost/random/ranlux.hpp: Added. * StitchMarker/folly/boost/random/seed_seq.hpp: Added. * StitchMarker/folly/boost/random/shuffle_order.hpp: Added. * StitchMarker/folly/boost/random/shuffle_output.hpp: Added. * StitchMarker/folly/boost/random/student_t_distribution.hpp: Added. * StitchMarker/folly/boost/random/subtract_with_carry.hpp: Added. * StitchMarker/folly/boost/random/taus88.hpp: Added. * StitchMarker/folly/boost/random/traits.hpp: Added. * StitchMarker/folly/boost/random/triangle_distribution.hpp: Added. * StitchMarker/folly/boost/random/uniform_01.hpp: Added. * StitchMarker/folly/boost/random/uniform_int.hpp: Added. * StitchMarker/folly/boost/random/uniform_int_distribution.hpp: Added. * StitchMarker/folly/boost/random/uniform_on_sphere.hpp: Added. * StitchMarker/folly/boost/random/uniform_real.hpp: Added. * StitchMarker/folly/boost/random/uniform_real_distribution.hpp: Added. * StitchMarker/folly/boost/random/uniform_smallint.hpp: Added. * StitchMarker/folly/boost/random/variate_generator.hpp: Added. * StitchMarker/folly/boost/random/weibull_distribution.hpp: Added. * StitchMarker/folly/boost/random/xor_combine.hpp: Added. * StitchMarker/folly/boost/range/begin.hpp: Added. * StitchMarker/folly/boost/range/concepts.hpp: Added. * StitchMarker/folly/boost/range/config.hpp: Added. * StitchMarker/folly/boost/range/const_iterator.hpp: Added. * StitchMarker/folly/boost/range/detail/common.hpp: Added. * StitchMarker/folly/boost/range/detail/extract_optional_type.hpp: Added. * StitchMarker/folly/boost/range/detail/has_member_size.hpp: Added. * StitchMarker/folly/boost/range/detail/implementation_help.hpp: Added. * StitchMarker/folly/boost/range/detail/misc_concept.hpp: Added. * StitchMarker/folly/boost/range/detail/msvc_has_iterator_workaround.hpp: Added. * StitchMarker/folly/boost/range/detail/sfinae.hpp: Added. * StitchMarker/folly/boost/range/difference_type.hpp: Added. * StitchMarker/folly/boost/range/end.hpp: Added. * StitchMarker/folly/boost/range/has_range_iterator.hpp: Added. * StitchMarker/folly/boost/range/iterator.hpp: Added. * StitchMarker/folly/boost/range/mutable_iterator.hpp: Added. * StitchMarker/folly/boost/range/range_fwd.hpp: Added. * StitchMarker/folly/boost/range/size.hpp: Added. * StitchMarker/folly/boost/range/size_type.hpp: Added. * StitchMarker/folly/boost/range/value_type.hpp: Added. * StitchMarker/folly/boost/regex/pending/unicode_iterator.hpp: Added. * StitchMarker/folly/boost/static_assert.hpp: Added. * StitchMarker/folly/boost/throw_exception.hpp: Added. * StitchMarker/folly/boost/type_traits.hpp: Added. * StitchMarker/folly/boost/type_traits/add_const.hpp: Added. * StitchMarker/folly/boost/type_traits/add_cv.hpp: Added. * StitchMarker/folly/boost/type_traits/add_lvalue_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/add_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/add_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/add_rvalue_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/add_volatile.hpp: Added. * StitchMarker/folly/boost/type_traits/aligned_storage.hpp: Added. * StitchMarker/folly/boost/type_traits/alignment_of.hpp: Added. * StitchMarker/folly/boost/type_traits/common_type.hpp: Added. * StitchMarker/folly/boost/type_traits/conditional.hpp: Added. * StitchMarker/folly/boost/type_traits/conversion_traits.hpp: Added. * StitchMarker/folly/boost/type_traits/copy_cv.hpp: Added. * StitchMarker/folly/boost/type_traits/decay.hpp: Added. * StitchMarker/folly/boost/type_traits/declval.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/config.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/has_binary_operator.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/has_postfix_operator.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/has_prefix_operator.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/is_function_ptr_helper.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/mp_defer.hpp: Added. * StitchMarker/folly/boost/type_traits/detail/yes_no_type.hpp: Added. * StitchMarker/folly/boost/type_traits/extent.hpp: Added. * StitchMarker/folly/boost/type_traits/floating_point_promotion.hpp: Added. * StitchMarker/folly/boost/type_traits/function_traits.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_and.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_and_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_or.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_or_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_xor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_bit_xor_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_complement.hpp: Added. * StitchMarker/folly/boost/type_traits/has_dereference.hpp: Added. * StitchMarker/folly/boost/type_traits/has_divides.hpp: Added. * StitchMarker/folly/boost/type_traits/has_divides_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_equal_to.hpp: Added. * StitchMarker/folly/boost/type_traits/has_greater.hpp: Added. * StitchMarker/folly/boost/type_traits/has_greater_equal.hpp: Added. * StitchMarker/folly/boost/type_traits/has_left_shift.hpp: Added. * StitchMarker/folly/boost/type_traits/has_left_shift_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_less.hpp: Added. * StitchMarker/folly/boost/type_traits/has_less_equal.hpp: Added. * StitchMarker/folly/boost/type_traits/has_logical_and.hpp: Added. * StitchMarker/folly/boost/type_traits/has_logical_not.hpp: Added. * StitchMarker/folly/boost/type_traits/has_logical_or.hpp: Added. * StitchMarker/folly/boost/type_traits/has_minus.hpp: Added. * StitchMarker/folly/boost/type_traits/has_minus_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_modulus.hpp: Added. * StitchMarker/folly/boost/type_traits/has_modulus_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_multiplies.hpp: Added. * StitchMarker/folly/boost/type_traits/has_multiplies_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_negate.hpp: Added. * StitchMarker/folly/boost/type_traits/has_new_operator.hpp: Added. * StitchMarker/folly/boost/type_traits/has_not_equal_to.hpp: Added. * StitchMarker/folly/boost/type_traits/has_nothrow_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_nothrow_constructor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_nothrow_copy.hpp: Added. * StitchMarker/folly/boost/type_traits/has_nothrow_destructor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_plus.hpp: Added. * StitchMarker/folly/boost/type_traits/has_plus_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_post_decrement.hpp: Added. * StitchMarker/folly/boost/type_traits/has_post_increment.hpp: Added. * StitchMarker/folly/boost/type_traits/has_pre_decrement.hpp: Added. * StitchMarker/folly/boost/type_traits/has_pre_increment.hpp: Added. * StitchMarker/folly/boost/type_traits/has_right_shift.hpp: Added. * StitchMarker/folly/boost/type_traits/has_right_shift_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_constructor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_copy.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_destructor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_move_assign.hpp: Added. * StitchMarker/folly/boost/type_traits/has_trivial_move_constructor.hpp: Added. * StitchMarker/folly/boost/type_traits/has_unary_minus.hpp: Added. * StitchMarker/folly/boost/type_traits/has_unary_plus.hpp: Added. * StitchMarker/folly/boost/type_traits/has_virtual_destructor.hpp: Added. * StitchMarker/folly/boost/type_traits/integral_constant.hpp: Added. * StitchMarker/folly/boost/type_traits/integral_promotion.hpp: Added. * StitchMarker/folly/boost/type_traits/intrinsics.hpp: Added. * StitchMarker/folly/boost/type_traits/is_abstract.hpp: Added. * StitchMarker/folly/boost/type_traits/is_arithmetic.hpp: Added. * StitchMarker/folly/boost/type_traits/is_array.hpp: Added. * StitchMarker/folly/boost/type_traits/is_assignable.hpp: Added. * StitchMarker/folly/boost/type_traits/is_base_and_derived.hpp: Added. * StitchMarker/folly/boost/type_traits/is_base_of.hpp: Added. * StitchMarker/folly/boost/type_traits/is_class.hpp: Added. * StitchMarker/folly/boost/type_traits/is_complex.hpp: Added. * StitchMarker/folly/boost/type_traits/is_compound.hpp: Added. * StitchMarker/folly/boost/type_traits/is_const.hpp: Added. * StitchMarker/folly/boost/type_traits/is_constructible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_convertible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_copy_assignable.hpp: Added. * StitchMarker/folly/boost/type_traits/is_copy_constructible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_default_constructible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_destructible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_empty.hpp: Added. * StitchMarker/folly/boost/type_traits/is_enum.hpp: Added. * StitchMarker/folly/boost/type_traits/is_final.hpp: Added. * StitchMarker/folly/boost/type_traits/is_float.hpp: Added. * StitchMarker/folly/boost/type_traits/is_floating_point.hpp: Added. * StitchMarker/folly/boost/type_traits/is_function.hpp: Added. * StitchMarker/folly/boost/type_traits/is_fundamental.hpp: Added. * StitchMarker/folly/boost/type_traits/is_integral.hpp: Added. * StitchMarker/folly/boost/type_traits/is_lvalue_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/is_member_function_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/is_member_object_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/is_member_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/is_nothrow_move_assignable.hpp: Added. * StitchMarker/folly/boost/type_traits/is_nothrow_move_constructible.hpp: Added. * StitchMarker/folly/boost/type_traits/is_object.hpp: Added. * StitchMarker/folly/boost/type_traits/is_pod.hpp: Added. * StitchMarker/folly/boost/type_traits/is_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/is_polymorphic.hpp: Added. * StitchMarker/folly/boost/type_traits/is_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/is_rvalue_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/is_same.hpp: Added. * StitchMarker/folly/boost/type_traits/is_scalar.hpp: Added. * StitchMarker/folly/boost/type_traits/is_signed.hpp: Added. * StitchMarker/folly/boost/type_traits/is_stateless.hpp: Added. * StitchMarker/folly/boost/type_traits/is_union.hpp: Added. * StitchMarker/folly/boost/type_traits/is_unsigned.hpp: Added. * StitchMarker/folly/boost/type_traits/is_virtual_base_of.hpp: Added. * StitchMarker/folly/boost/type_traits/is_void.hpp: Added. * StitchMarker/folly/boost/type_traits/is_volatile.hpp: Added. * StitchMarker/folly/boost/type_traits/make_signed.hpp: Added. * StitchMarker/folly/boost/type_traits/make_unsigned.hpp: Added. * StitchMarker/folly/boost/type_traits/make_void.hpp: Added. * StitchMarker/folly/boost/type_traits/promote.hpp: Added. * StitchMarker/folly/boost/type_traits/rank.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_all_extents.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_bounds.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_const.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_cv.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_extent.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_pointer.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_reference.hpp: Added. * StitchMarker/folly/boost/type_traits/remove_volatile.hpp: Added. * StitchMarker/folly/boost/type_traits/type_identity.hpp: Added. * StitchMarker/folly/boost/type_traits/type_with_alignment.hpp: Added. * StitchMarker/folly/boost/utility.hpp: Added. * StitchMarker/folly/boost/utility/addressof.hpp: Added. * StitchMarker/folly/boost/utility/base_from_member.hpp: Added. * StitchMarker/folly/boost/utility/binary.hpp: Added. * StitchMarker/folly/boost/utility/enable_if.hpp: Added. * StitchMarker/folly/boost/utility/identity_type.hpp: Added. * StitchMarker/folly/boost/version.hpp: Added. * StitchMarker/folly/double-conversion/LICENSE: Added. * StitchMarker/folly/double-conversion/README.md: Added. * StitchMarker/folly/double-conversion/double-conversion/bignum-dtoa.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/bignum-dtoa.h: Added. * StitchMarker/folly/double-conversion/double-conversion/bignum.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/bignum.h: Added. (double_conversion::Bignum::Times10): (double_conversion::Bignum::Equal): (double_conversion::Bignum::LessEqual): (double_conversion::Bignum::Less): (double_conversion::Bignum::PlusEqual): (double_conversion::Bignum::PlusLessEqual): (double_conversion::Bignum::PlusLess): (double_conversion::Bignum::EnsureCapacity): (double_conversion::Bignum::BigitLength const): * StitchMarker/folly/double-conversion/double-conversion/cached-powers.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/cached-powers.h: Added. * StitchMarker/folly/double-conversion/double-conversion/diy-fp.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/diy-fp.h: Added. (double_conversion::DiyFp::DiyFp): (double_conversion::DiyFp::Subtract): (double_conversion::DiyFp::Minus): (double_conversion::DiyFp::Times): (double_conversion::DiyFp::Normalize): (double_conversion::DiyFp::f const): (double_conversion::DiyFp::e const): (double_conversion::DiyFp::set_f): (double_conversion::DiyFp::set_e): * StitchMarker/folly/double-conversion/double-conversion/double-conversion.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/double-conversion.h: Added. (double_conversion::DoubleToStringConverter::DoubleToStringConverter): (double_conversion::DoubleToStringConverter::ToShortest const): (double_conversion::DoubleToStringConverter::ToShortestSingle const): (double_conversion::StringToDoubleConverter::StringToDoubleConverter): * StitchMarker/folly/double-conversion/double-conversion/fast-dtoa.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/fast-dtoa.h: Added. * StitchMarker/folly/double-conversion/double-conversion/fixed-dtoa.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/fixed-dtoa.h: Added. * StitchMarker/folly/double-conversion/double-conversion/ieee.h: Added. (double_conversion::double_to_uint64): (double_conversion::uint64_to_double): (double_conversion::float_to_uint32): (double_conversion::uint32_to_float): (double_conversion::Double::Double): (double_conversion::Double::AsDiyFp const): (double_conversion::Double::AsNormalizedDiyFp const): (double_conversion::Double::AsUint64 const): (double_conversion::Double::NextDouble const): (double_conversion::Double::PreviousDouble const): (double_conversion::Double::Exponent const): (double_conversion::Double::Significand const): (double_conversion::Double::IsDenormal const): (double_conversion::Double::IsSpecial const): (double_conversion::Double::IsNan const): (double_conversion::Double::IsInfinite const): (double_conversion::Double::Sign const): (double_conversion::Double::UpperBoundary const): (double_conversion::Double::NormalizedBoundaries const): (double_conversion::Double::LowerBoundaryIsCloser const): (double_conversion::Double::value const): (double_conversion::Double::SignificandSizeForOrderOfMagnitude): (double_conversion::Double::Infinity): (double_conversion::Double::NaN): (double_conversion::Double::DiyFpToUint64): (double_conversion::Single::Single): (double_conversion::Single::AsDiyFp const): (double_conversion::Single::AsUint32 const): (double_conversion::Single::Exponent const): (double_conversion::Single::Significand const): (double_conversion::Single::IsDenormal const): (double_conversion::Single::IsSpecial const): (double_conversion::Single::IsNan const): (double_conversion::Single::IsInfinite const): (double_conversion::Single::Sign const): (double_conversion::Single::NormalizedBoundaries const): (double_conversion::Single::UpperBoundary const): (double_conversion::Single::LowerBoundaryIsCloser const): (double_conversion::Single::value const): (double_conversion::Single::Infinity): (double_conversion::Single::NaN): * StitchMarker/folly/double-conversion/double-conversion/strtod.cc: Added. * StitchMarker/folly/double-conversion/double-conversion/strtod.h: Added. * StitchMarker/folly/double-conversion/double-conversion/utils.h: Added. (abort_noreturn): (double_conversion::Max): (double_conversion::Min): (double_conversion::StrLength): (double_conversion::Vector::Vector): (double_conversion::Vector::SubVector): (double_conversion::Vector::length const): (double_conversion::Vector::is_empty const): (double_conversion::Vector::start const): (double_conversion::Vector::operator[] const): (double_conversion::Vector::first): (double_conversion::Vector::last): (double_conversion::StringBuilder::StringBuilder): (double_conversion::StringBuilder::~StringBuilder): (double_conversion::StringBuilder::size const): (double_conversion::StringBuilder::position const): (double_conversion::StringBuilder::Reset): (double_conversion::StringBuilder::AddCharacter): (double_conversion::StringBuilder::AddString): (double_conversion::StringBuilder::AddSubstring): (double_conversion::StringBuilder::AddPadding): (double_conversion::StringBuilder::Finalize): (double_conversion::StringBuilder::is_finalized const): (double_conversion::BitCast): * StitchMarker/folly/folly/ApplyTuple.h: Added. (folly::detail::apply_tuple::sum): (folly::detail::apply_tuple::makeCallable): (folly::detail::apply_tuple::call): (folly::detail::apply_tuple::forwardTuple): (folly::applyTuple): (folly::detail::apply_tuple::Uncurry::Uncurry): (folly::detail::apply_tuple::Uncurry::operator() const): (folly::uncurry): * StitchMarker/folly/folly/Assume.cpp: Added. (folly::detail::assume_check): * StitchMarker/folly/folly/Assume.h: Added. (folly::assume): (folly::assume_unreachable): * StitchMarker/folly/folly/AtomicStruct.h: Added. * StitchMarker/folly/folly/Baton.h: Added. (folly::Baton::Baton): (folly::Baton::~Baton): (folly::Baton::reset): (folly::Baton::post): (folly::Baton::wait): (folly::Baton::timed_wait): (folly::Baton::try_wait const): (folly::Baton::spinWaitForEarlyDelivery): * StitchMarker/folly/folly/Benchmark.cpp: Added. (folly::benchmarks): (folly::BENCHMARK): (folly::getGlobalBenchmarkBaselineIndex): (folly::detail::addBenchmarkImpl): (folly::estimateTime): (folly::runBenchmarkGetNSPerIteration): (folly::humanReadable): (folly::readableTime): (folly::metricReadable): (folly::printBenchmarkResultsAsTable): (folly::printBenchmarkResults): (folly::runBenchmarks): * StitchMarker/folly/folly/Benchmark.h: Added. (folly::runBenchmarksOnFlag): (folly::BenchmarkSuspender::BenchmarkSuspender): (folly::BenchmarkSuspender::operator=): (folly::BenchmarkSuspender::~BenchmarkSuspender): (folly::BenchmarkSuspender::dismiss): (folly::BenchmarkSuspender::rehire): (folly::BenchmarkSuspender::dismissing): (folly::BenchmarkSuspender::operator bool const): (folly::BenchmarkSuspender::tally): (folly::addBenchmark): (folly::doNotOptimizeDependencySink): (folly::doNotOptimizeAway): (folly::makeUnpredictable): * StitchMarker/folly/folly/Bits.h: Added. (folly::findFirstSet): (folly::findLastSet): (folly::nextPowTwo): (folly::prevPowTwo): (folly::isPowTwo): (folly::popcount): (folly::detail::EndianInt::swap): (folly::detail::EndianInt::big): (folly::detail::EndianInt::little): (folly::Endian::swap): (folly::Endian::big): (folly::Endian::little): (folly::BitIterator::bitsPerBlock): (folly::BitIterator::BitIterator): (folly::BitIterator::bitOffset const): (folly::BitIterator::advanceToNextBlock): (folly::BitIterator::operator=): (folly::BitIterator::advanceInBlock): (folly::BitIterator::dereference const): (folly::BitIterator::advance): (folly::BitIterator::increment): (folly::BitIterator::decrement): (folly::BitIterator::equal const): (folly::BitIterator::distance_to const): (folly::makeBitIterator): (folly::loadUnaligned): (folly::storeUnaligned): * StitchMarker/folly/folly/CPortability.h: Added. * StitchMarker/folly/folly/CallOnce.h: Added. (folly::call_once): (folly::call_once_impl_no_inline): * StitchMarker/folly/folly/ConcurrentSkipList-inl.h: Added. (folly::detail::SkipListNode::create): (folly::detail::SkipListNode::destroy): (folly::detail::SkipListNode::copyHead): (folly::detail::SkipListNode::skip const): (folly::detail::SkipListNode::next): (folly::detail::SkipListNode::setSkip): (folly::detail::SkipListNode::data): (folly::detail::SkipListNode::data const): (folly::detail::SkipListNode::maxLayer const): (folly::detail::SkipListNode::height const): (folly::detail::SkipListNode::acquireGuard): (folly::detail::SkipListNode::fullyLinked const): (folly::detail::SkipListNode::markedForRemoval const): (folly::detail::SkipListNode::isHeadNode const): (folly::detail::SkipListNode::setIsHeadNode): (folly::detail::SkipListNode::setFullyLinked): (folly::detail::SkipListNode::setMarkedForRemoval): (folly::detail::SkipListNode::SkipListNode): (folly::detail::SkipListNode::~SkipListNode): (folly::detail::SkipListNode::getFlags const): (folly::detail::SkipListNode::setFlags): (folly::detail::SkipListRandomHeight::instance): (folly::detail::SkipListRandomHeight::getHeight const): (folly::detail::SkipListRandomHeight::getSizeLimit const): (folly::detail::SkipListRandomHeight::SkipListRandomHeight): (folly::detail::SkipListRandomHeight::initLookupTable): (folly::detail::SkipListRandomHeight::randomProb): * StitchMarker/folly/folly/ConcurrentSkipList.h: Added. (folly::ConcurrentSkipList::ConcurrentSkipList): (folly::ConcurrentSkipList::create): (folly::ConcurrentSkipList::createInstance): (folly::ConcurrentSkipList::~ConcurrentSkipList): (folly::ConcurrentSkipList::greater): (folly::ConcurrentSkipList::less): (folly::ConcurrentSkipList::findInsertionPoint): (folly::ConcurrentSkipList::size const): (folly::ConcurrentSkipList::height const): (folly::ConcurrentSkipList::maxLayer const): (folly::ConcurrentSkipList::incrementSize): (folly::ConcurrentSkipList::find): (folly::ConcurrentSkipList::lockNodesForChange): (folly::ConcurrentSkipList::addOrGetData): (folly::ConcurrentSkipList::remove): (folly::ConcurrentSkipList::first const): (folly::ConcurrentSkipList::last const): (folly::ConcurrentSkipList::okToDelete): (folly::ConcurrentSkipList::findInsertionPointGetMaxLayer const): (folly::ConcurrentSkipList::findNode const): (folly::ConcurrentSkipList::findNodeDownRight const): (folly::ConcurrentSkipList::findNodeRightDown const): (folly::ConcurrentSkipList::lower_bound const): (folly::ConcurrentSkipList::growHeight): (folly::ConcurrentSkipList::recycle): (folly::detail::csl_iterator::csl_iterator): (folly::detail::csl_iterator::nodeSize const): (folly::detail::csl_iterator::good const): (folly::detail::csl_iterator::increment): (folly::detail::csl_iterator::equal const): (folly::detail::csl_iterator::dereference const): * StitchMarker/folly/folly/Conv.cpp: Added. (folly::makeConversionError): * StitchMarker/folly/folly/Conv.h: Added. (folly::ConversionError::ConversionError): (folly::ConversionError::errorCode const): (folly::detail::enforceWhitespaceErr): (folly::detail::enforceWhitespace): (folly::tryTo): (folly::to): (folly::detail::getLastElement): (folly::detail::LastElementImpl::call): (folly::detail::digitsEnough): (folly::detail::unsafeTelescope128): (folly::digits10): (folly::uint64ToBufferUnsafe): (folly::toAppend): (folly::estimateSpaceNeeded): (folly::sizeof): (folly::detail::estimateSpaceToReserve): (folly::detail::reserveInTarget): (folly::detail::reserveInTargetDelim): (folly::detail::toAppendStrImpl): (folly::detail::sizeof): (folly::detail::toAppendDelimStrImpl): (folly::toAppendFit): (folly::toAppendDelim): (folly::toAppendDelimFit): (folly::toDelim): (folly::parseTo): (folly::detail::checkConversion): (folly::detail::errorValue): (folly::detail::decltype): (folly::detail::CheckTrailingSpace::operator() const): (folly::detail::ReturnUnit::operator() const): (folly::detail::parseToWrap): (folly::detail::ExpectedErrorType::copy_): (folly::exception_wrapper::InPlace::move_): (folly::exception_wrapper::InPlace::delete_): (folly::exception_wrapper::InPlace::throw_): (folly::exception_wrapper::InPlace::type_): (folly::exception_wrapper::InPlace::get_exception_): (folly::exception_wrapper::InPlace::get_exception_ptr_): (folly::exception_wrapper::SharedPtr::Impl::throw_ const): (folly::exception_wrapper::SharedPtr::copy_): (folly::exception_wrapper::SharedPtr::move_): (folly::exception_wrapper::SharedPtr::delete_): (folly::exception_wrapper::SharedPtr::throw_): (folly::exception_wrapper::SharedPtr::type_): (folly::exception_wrapper::SharedPtr::get_exception_): (folly::exception_wrapper::SharedPtr::get_exception_ptr_): (folly::exception_wrapper::exception_wrapper): (folly::vptr_): (folly::exception_wrapper::operator=): (folly::exception_wrapper::~exception_wrapper): (folly::exception_wrapper_detail::dont_slice): (folly::FOLLY_REQUIRES_DEF): (folly::exception_wrapper::reset): (folly::exception_wrapper::what const): (folly::exception_wrapper::class_name const): (folly::exception_wrapper::throw_exception const): (folly::exception_wrapper::HandleReduce::FOLLY_REQUIRES const): (folly::exception_wrapper::HandleStdExceptReduce::FOLLY_REQUIRES const): (folly::exception_wrapper::handle_): (folly::exception_wrapper_detail::catch_fn::operator()): (folly::exception_wrapper_detail::catch_): (folly::exception_wrapper::with_exception_): (folly::exception_wrapper::with_exception): (folly::exception_wrapper::with_exception const): (folly::exception_wrapper::handle): (folly::exception_wrapper::handle const): * StitchMarker/folly/folly/ExceptionWrapper.h: Added. (folly::exception_wrapper_detail::fold): (folly::make_exception_wrapper): (folly::operator<<): (folly::detail::try_and_catch_): (folly::try_and_catch): * StitchMarker/folly/folly/Executor.h: Added. (folly::Executor::getNumPriorities const): (folly::Executor::addPtr): (folly::Executor::KeepAlive::KeepAlive): (folly::Executor::KeepAlive::reset): (folly::Executor::KeepAlive::operator bool const): (folly::Executor::KeepAlive::Deleter::operator()): (folly::Executor::getKeepAliveToken): (folly::Executor::makeKeepAlive): * StitchMarker/folly/folly/Expected.h: Added. (folly::expected_detail::doEmplaceAssign): (folly::expected_detail::getStorageType): (folly::expected_detail::Error>): (folly::expected_detail::ExpectedUnion::noexcept): (folly::expected_detail::ExpectedUnion::ExpectedUnion): (folly::expected_detail::ExpectedUnion::operator=): (folly::expected_detail::ExpectedUnion::~ExpectedUnion): (folly::expected_detail::ExpectedUnion::value): (folly::expected_detail::ExpectedUnion::value const): (folly::expected_detail::ExpectedUnion::error): (folly::expected_detail::ExpectedUnion::error const): (folly::expected_detail::CopyConstructible::noexcept): (folly::expected_detail::MoveConstructible::noexcept): (folly::expected_detail::CopyAssignable::noexcept): (folly::expected_detail::MoveAssignable::noexcept): (folly::expected_detail::expected_detail_ExpectedHelper::ExpectedHelper::return_): (folly::expected_detail::expected_detail_ExpectedHelper::ExpectedHelper::FOLLY_REQUIRES_TRAILING): (folly::expected_detail::expected_detail_ExpectedHelper::ExpectedHelper::then_): (folly::unexpected): (folly::BadExpectedAccess::BadExpectedAccess): (folly::FOLLY_REQUIRES_TRAILING): (folly::makeUnexpected): (folly::operator==): (folly::operator<): (folly::noexcept): (folly::makeExpected): * StitchMarker/folly/folly/FBString.h: Added. (fbstring_detail::copy_n): (fbstring_detail::podFill): (fbstring_detail::podCopy): (fbstring_detail::podMove): (fbstring_detail::assume_unreachable): (fbstring_core::fbstring_core): (fbstring_core::swap): (fbstring_core::data const): (fbstring_core::mutableData): (fbstring_core::c_str const): (fbstring_core::shrink): (fbstring_core::reserve): (fbstring_core::push_back): (fbstring_core::size const): (fbstring_core::capacity const): (fbstring_core::isShared const): (fbstring_core::reset): (fbstring_core::RefCounted::getDataOffset): (fbstring_core::RefCounted::fromData): (fbstring_core::RefCounted::refs): (fbstring_core::RefCounted::incrementRefs): (fbstring_core::RefCounted::decrementRefs): (fbstring_core::RefCounted::create): (fbstring_core::RefCounted::reallocate): (fbstring_core::category const): (fbstring_core::MediumLarge::capacity const): (fbstring_core::MediumLarge::setCapacity): (fbstring_core::smallSize const): (fbstring_core::setSmallSize): (fbstring_core::copySmall): (fbstring_core::copyMedium): (fbstring_core::copyLarge): (fbstring_core::initSmall): (fbstring_core::initMedium): (fbstring_core::initLarge): (fbstring_core::unshare): (fbstring_core::mutableDataLarge): (fbstring_core::reserveLarge): (fbstring_core::reserveMedium): (fbstring_core::reserveSmall): (fbstring_core::expandNoinit): (fbstring_core::shrinkSmall): (fbstring_core::shrinkMedium): (fbstring_core::shrinkLarge): (dummy_fbstring_core::dummy_fbstring_core): (dummy_fbstring_core::swap): (dummy_fbstring_core::data const): (dummy_fbstring_core::mutableData): (dummy_fbstring_core::shrink): (dummy_fbstring_core::expandNoinit): (dummy_fbstring_core::push_back): (dummy_fbstring_core::size const): (dummy_fbstring_core::capacity const): (dummy_fbstring_core::isShared const): (dummy_fbstring_core::reserve): (S>::traitsLength): (=): (S>::resize): (S>::append): (S>::assign): (S>::getlineImpl): (S>::find const): (S>::insertImplDiscr): (S>::insertImpl): (S>::replaceImplDiscr): (S>::replaceAliased): (S>::replaceImpl): (S>::rfind const): (S>::find_first_of const): (S>::find_last_of const): (S>::find_first_not_of const): (S>::find_last_not_of const): (operator+): (operator==): (operator!=): (operator<): (operator>): (operator<=): (operator>=): (swap): (operator>>): (operator<<): * StitchMarker/folly/folly/FBVector.h: Added. (folly::fbvector::Impl::Impl): (folly::fbvector::Impl::~Impl): (folly::fbvector::Impl::D_allocate): (folly::fbvector::Impl::swapData): (folly::fbvector::Impl::init): (folly::fbvector::Impl::set): (folly::fbvector::Impl::reset): (folly::fbvector::swap): (folly::fbvector::M_allocate): (folly::fbvector::M_construct): (folly::fbvector::S_construct): (folly::fbvector::S_construct_a): (folly::fbvector::M_uninitialized_fill_n_e): (folly::fbvector::D_uninitialized_fill_n_a): (folly::fbvector::S_uninitialized_fill_n_a): (folly::fbvector::S_uninitialized_fill_n): (folly::fbvector::M_uninitialized_copy_e): (folly::fbvector::M_uninitialized_move_e): (folly::fbvector::D_uninitialized_copy_a): (folly::fbvector::D_uninitialized_move_a): (folly::fbvector::S_uninitialized_copy_a): (folly::fbvector::S_uninitialized_copy): (folly::fbvector::S_uninitialized_copy_bits): (folly::fbvector::S_copy_n): (folly::fbvector::M_relocate): (folly::fbvector::relocate_move): (folly::fbvector::relocate_move_or_memcpy): (folly::fbvector::relocate_move_or_copy): (folly::fbvector::fbvector): (folly::fbvector::operator=): (folly::fbvector::assign): (folly::fbvector::moveFrom): (folly::fbvector::dataIsInternalAndNotVT): (folly::fbvector::dataIsInternal): (folly::fbvector::resize): (folly::fbvector::reserve): (folly::fbvector::reserve_in_place): (folly::fbvector::operator[]): (folly::fbvector::operator[] const): (folly::fbvector::at const): (folly::fbvector::at): (folly::fbvector::front): (folly::fbvector::front const): (folly::fbvector::back): (folly::fbvector::back const): (folly::fbvector::emplace_back): (folly::fbvector::push_back): (folly::fbvector::pop_back): (folly::fbvector::computePushBackCapacity const): (folly::fbvector::erase): (folly::fbvector::isValid): (folly::fbvector::computeInsertCapacity): (folly::fbvector::make_window): (folly::fbvector::wrap_frame): (folly::fbvector::insert_use_fresh): (folly::fbvector::do_real_insert): (folly::fbvector::emplace): (folly::fbvector::insert): (folly::fbvector::operator== const): (folly::fbvector::operator!= const): (folly::fbvector::operator< const): (folly::fbvector::operator> const): (folly::fbvector::operator<= const): (folly::fbvector::operator>= const): (folly::Allocator>::emplace_back_aux): (folly::compactResize): (folly::relinquish): (folly::attach): * StitchMarker/folly/folly/File.h: Added. (folly::File::fd const): (folly::File::operator bool const): * StitchMarker/folly/folly/FileUtil.h: Added. (folly::readFile): (folly::writeFile): * StitchMarker/folly/folly/Foreach.h: Added. (folly::detail::notThereYet): (folly::detail::downTo): * StitchMarker/folly/folly/Format-inl.h: Added. (folly::detail::uintToHex): (folly::detail::uintToHexLower): (folly::detail::uintToHexUpper): (folly::detail::uintToOctal): (folly::detail::uintToBinary): (folly::>::BaseFormatter): (folly::>::operator const): (folly::writeTo): (folly::format_value::formatString): (folly::format_value::formatNumber): (folly::format_value::formatFormatter): (folly::FormatValue::FormatValue): (folly::FormatValue::format const): (folly::FormatValue::FormatValue): (folly::FormatValue::format const): (folly::FormatValue::FormatValue): (folly::FormatValue::format const): (folly::FormatValue::FormatValue): (folly::FormatValue::format const): (folly::TryFormatValue::formatOrFail): (folly::detail::KeyFromStringPiece::convert): (folly::detail::KeyFromStringPiece::convert): (folly::detail::KeyFromStringPiece::convert): (folly::detail::KeyableTraitsAssoc::at): (folly::toAppend): * StitchMarker/folly/folly/Format.cpp: Added. (folly::FormatValue::formatHelper const): (folly::FormatArg::initSlow): (folly::FormatArg::validate const): (folly::detail::insertThousandsGroupingUnsafe): * StitchMarker/folly/folly/Format.h: Added. (folly::BaseFormatter::appendTo const): (folly::BaseFormatter::str const): (folly::BaseFormatter::fbstr const): (folly::BaseFormatter::asDerived const): (folly::BaseFormatter::doFormatFrom const): (folly::BaseFormatter::doFormat const): (folly::BaseFormatter::getSizeArgFrom const): (folly::BaseFormatter::getValue const): (folly::BaseFormatter::getSizeArg const): (folly::BaseFormatter::getFormatValue const): (folly::Formatter::Formatter): (folly::Formatter::doFormatArg const): (folly::operator<<): (folly::sformat): (folly::vformat): (folly::svformat): (folly::detail::DefaultValueWrapper::DefaultValueWrapper): (folly::defaulted): (folly::format): (folly::sformatChecked): (folly::vformatChecked): (folly::svformatChecked): (folly::formatChecked): * StitchMarker/folly/folly/FormatArg.h: Added. (folly::BadFormatArg::BadFormatArg): (folly::FormatArg::FormatArg): (folly::FormatArg::enforce const): (folly::FormatArg::keyEmpty const): (folly::FormatArg::setNextIntKey): (folly::FormatArg::setNextKey): (folly::FormatArg::errorStr const): (folly::FormatArg::error const): (folly::FormatArg::splitKey): (folly::FormatArg::doSplitKey): (folly::FormatArg::splitIntKey): * StitchMarker/folly/folly/FormatTables.cpp: Added. * StitchMarker/folly/folly/FormatTraits.h: Added. (folly::detail::IndexableTraitsSeq::at): (folly::detail::IndexableTraitsAssoc::at): * StitchMarker/folly/folly/Function.h: Added. (folly::detail::function::isNullPtrFn): (folly::detail::function::uninitNoop): (folly::detail::function::FunctionTraits::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::hasher::operator() const): (folly::TupleHasher::operator() const): * StitchMarker/folly/folly/Indestructible.h: Added. * StitchMarker/folly/folly/IndexedMemPool.h: Added. (folly::IndexedMemPoolTraits::eagerRecycle): (folly::IndexedMemPoolTraits::initialize): (folly::IndexedMemPoolTraits::cleanup): (folly::IndexedMemPoolTraits::onAllocate): (folly::IndexedMemPoolTraits::onRecycle): (folly::IndexedMemPool::maxIndexForCapacity): (folly::IndexedMemPool::capacityForMaxIndex): (folly::IndexedMemPool::IndexedMemPool): (folly::IndexedMemPool::~IndexedMemPool): (folly::IndexedMemPool::capacity): (folly::IndexedMemPool::maxAllocatedIndex const): (folly::IndexedMemPool::allocIndex): (folly::IndexedMemPool::allocElem): (folly::IndexedMemPool::recycleIndex): (folly::IndexedMemPool::operator[]): (folly::IndexedMemPool::operator[] const): (folly::IndexedMemPool::locateElem const): (folly::IndexedMemPool::isAllocated const): (folly::IndexedMemPool::Slot::Slot): (folly::IndexedMemPool::TaggedPtr::size const): (folly::IndexedMemPool::TaggedPtr::withSize const): (folly::IndexedMemPool::TaggedPtr::withSizeIncr const): (folly::IndexedMemPool::TaggedPtr::withSizeDecr const): (folly::IndexedMemPool::TaggedPtr::withIdx const): (folly::IndexedMemPool::TaggedPtr::withEmpty const): (folly::IndexedMemPool::slotIndex const): (folly::IndexedMemPool::slot): (folly::IndexedMemPool::slot const): (folly::IndexedMemPool::globalPush): (folly::IndexedMemPool::localPush): (folly::IndexedMemPool::globalPop): (folly::IndexedMemPool::localPop): (folly::IndexedMemPool::localHead): (folly::IndexedMemPool::markAllocated): (folly::detail::IndexedMemPoolRecycler::IndexedMemPoolRecycler): (folly::detail::IndexedMemPoolRecycler::operator() const): * StitchMarker/folly/folly/Likely.h: Added. * StitchMarker/folly/folly/LockTraits.h: Added. (folly::lock_shared_or_unique): (folly::try_lock_shared_or_unique_for): (folly::unlock_shared_or_unique): (folly::LockPolicyExclusive::lock): (folly::LockPolicyExclusive::try_lock_for): (folly::LockPolicyExclusive::unlock): (folly::LockPolicyShared::lock): (folly::LockPolicyShared::try_lock_for): (folly::LockPolicyShared::unlock): (folly::LockPolicyShareable::lock): (folly::LockPolicyShareable::try_lock_for): (folly::LockPolicyShareable::unlock): (folly::LockPolicyUpgrade::lock): (folly::LockPolicyUpgrade::try_lock_for): (folly::LockPolicyUpgrade::unlock): (folly::LockPolicyFromUpgradeToExclusive::lock): (folly::LockPolicyFromUpgradeToExclusive::try_lock_for): (folly::LockPolicyFromExclusiveToUpgrade::lock): (folly::LockPolicyFromExclusiveToUpgrade::try_lock_for): (folly::LockPolicyFromUpgradeToShared::lock): (folly::LockPolicyFromUpgradeToShared::try_lock_for): (folly::LockPolicyFromExclusiveToShared::lock): (folly::LockPolicyFromExclusiveToShared::try_lock_for): * StitchMarker/folly/folly/Malloc.h: Added. * StitchMarker/folly/folly/Memory.h: Added. (folly::make_unique): (folly::f): (folly::to_shared_ptr): (folly::to_weak_ptr): (folly::detail::SysFree): (folly::allocate_sys_buffer): (folly::SysAlloc::allocate): (folly::SysAlloc::deallocate): (folly::StlAllocator::StlAllocator): (folly::StlAllocator::allocate): (folly::StlAllocator::deallocate): (folly::StlAllocator::max_size const): (folly::StlAllocator::address const): (folly::StlAllocator::construct): (folly::StlAllocator::destroy): (folly::StlAllocator::alloc const): (folly::StlAllocator::operator!= const): (folly::StlAllocator::operator== const): (folly::rebind_allocator): (folly::allocator_delete::allocator_delete): (folly::allocator_delete::get_allocator const): (folly::allocator_delete::operator() const): (folly::make_stl_allocator): (folly::allocate_unique): (folly::allocate_shared): * StitchMarker/folly/folly/MicroSpinLock.h: Added. (folly::MicroSpinLock::init): (folly::MicroSpinLock::try_lock): (folly::MicroSpinLock::lock): (folly::MicroSpinLock::unlock): (folly::MicroSpinLock::payload): (folly::MicroSpinLock::cas): * StitchMarker/folly/folly/Portability.h: Added. * StitchMarker/folly/folly/Preprocessor.h: Added. * StitchMarker/folly/folly/ProducerConsumerQueue.h: Added. (folly::ProducerConsumerQueue::ProducerConsumerQueue): (folly::ProducerConsumerQueue::~ProducerConsumerQueue): (folly::ProducerConsumerQueue::write): (folly::ProducerConsumerQueue::read): (folly::ProducerConsumerQueue::frontPtr): (folly::ProducerConsumerQueue::popFront): (folly::ProducerConsumerQueue::isEmpty const): (folly::ProducerConsumerQueue::isFull const): (folly::ProducerConsumerQueue::sizeGuess const): * StitchMarker/folly/folly/RWSpinLock.h: Added. (folly::RWSpinLock::RWSpinLock): (folly::RWSpinLock::lock): (folly::RWSpinLock::unlock): (folly::RWSpinLock::lock_shared): (folly::RWSpinLock::unlock_shared): (folly::RWSpinLock::unlock_and_lock_shared): (folly::RWSpinLock::lock_upgrade): (folly::RWSpinLock::unlock_upgrade): (folly::RWSpinLock::unlock_upgrade_and_lock): (folly::RWSpinLock::unlock_upgrade_and_lock_shared): (folly::RWSpinLock::unlock_and_lock_upgrade): (folly::RWSpinLock::try_lock): (folly::RWSpinLock::try_lock_shared): (folly::RWSpinLock::try_unlock_upgrade_and_lock): (folly::RWSpinLock::try_lock_upgrade): (folly::RWSpinLock::bits const): (folly::RWSpinLock::ReadHolder::ReadHolder): (folly::RWSpinLock::ReadHolder::operator=): (folly::RWSpinLock::ReadHolder::~ReadHolder): (folly::RWSpinLock::ReadHolder::reset): (folly::RWSpinLock::ReadHolder::swap): (folly::RWSpinLock::UpgradedHolder::UpgradedHolder): (folly::RWSpinLock::UpgradedHolder::operator =): (folly::RWSpinLock::UpgradedHolder::~UpgradedHolder): (folly::RWSpinLock::UpgradedHolder::reset): (folly::RWSpinLock::UpgradedHolder::swap): (folly::RWSpinLock::WriteHolder::WriteHolder): (folly::RWSpinLock::WriteHolder::operator =): (folly::RWSpinLock::WriteHolder::~WriteHolder): (folly::RWSpinLock::WriteHolder::reset): (folly::RWSpinLock::WriteHolder::swap): (folly::detail::RWTicketIntTrait<64>::make128): (folly::detail::RWTicketIntTrait<64>::fromInteger): (folly::detail::RWTicketIntTrait<64>::toInteger): (folly::detail::RWTicketIntTrait<64>::addParallel): (folly::detail::RWTicketIntTrait<32>::make128): (folly::detail::RWTicketIntTrait<32>::fromInteger): (folly::detail::RWTicketIntTrait<32>::toInteger): (folly::detail::RWTicketIntTrait<32>::addParallel): (folly::RWTicketSpinLockT::load_acquire): (folly::RWTicketSpinLockT::store_release): (folly::RWTicketSpinLockT::RWTicketSpinLockT): (folly::RWTicketSpinLockT::lock): (folly::RWTicketSpinLockT::try_lock): (folly::RWTicketSpinLockT::writeLockAggressive): (folly::RWTicketSpinLockT::writeLockNice): (folly::RWTicketSpinLockT::unlock_and_lock_shared): (folly::RWTicketSpinLockT::unlock): (folly::RWTicketSpinLockT::lock_shared): (folly::RWTicketSpinLockT::try_lock_shared): (folly::RWTicketSpinLockT::unlock_shared): (folly::RWTicketSpinLockT::ReadHolder::ReadHolder): (folly::RWTicketSpinLockT::ReadHolder::~ReadHolder): (folly::RWTicketSpinLockT::ReadHolder::reset): (folly::RWTicketSpinLockT::ReadHolder::swap): (folly::RWTicketSpinLockT::WriteHolder::WriteHolder): (folly::RWTicketSpinLockT::WriteHolder::~WriteHolder): (folly::RWTicketSpinLockT::WriteHolder::reset): (folly::RWTicketSpinLockT::WriteHolder::swap): * StitchMarker/folly/folly/Random-inl.h: Added. (folly::detail::SeedData::SeedData): * StitchMarker/folly/folly/Random.cpp: Added. (folly::Random::secureRandom): (folly::ThreadLocalPRNG::LocalInstancePRNG::LocalInstancePRNG): (folly::ThreadLocalPRNG::ThreadLocalPRNG): (folly::ThreadLocalPRNG::getImpl): * StitchMarker/folly/folly/Random.h: Added. (folly::ThreadLocalPRNG::operator()): (folly::ThreadLocalPRNG::min): (folly::ThreadLocalPRNG::max): (folly::Random::secureRandom): (folly::Random::rand32): (folly::Random::rand64): (folly::Random::oneIn): (folly::Random::randDouble01): (folly::Random::randDouble): (folly::randomNumberSeed): * StitchMarker/folly/folly/Range.h: Added. (folly::detail::value_before): (folly::Range::Range): (folly::Range::clear): (folly::Range::assign): (folly::Range::reset): (folly::Range::size const): (folly::Range::walk_size const): (folly::Range::empty const): (folly::Range::data const): (folly::Range::start const): (folly::Range::begin const): (folly::Range::end const): (folly::Range::cbegin const): (folly::Range::cend const): (folly::Range::front): (folly::Range::back): (folly::Range::front const): (folly::Range::back const): (folly::Range::str const): (folly::Range::toString const): (folly::Range::fbstr const): (folly::Range::toFbstring const): (folly::Range::castToConst const): (folly::Range::compare const): (folly::Range::operator[]): (folly::Range::operator[] const): (folly::Range::at): (folly::Range::at const): (folly::Range::hash const): (folly::Range::advance): (folly::Range::subtract): (folly::Range::subpiece const): (folly::Range::uncheckedAdvance): (folly::Range::uncheckedSubtract): (folly::Range::uncheckedSubpiece const): (folly::Range::pop_front): (folly::Range::pop_back): (folly::Range::find const): (folly::Range::rfind const): (folly::Range::find_first_of const): (folly::Range::contains const): (folly::Range::swap): (folly::Range::startsWith const): (folly::Range::endsWith const): (folly::Range::equals const): (folly::Range::erase): (folly::Range::removePrefix): (folly::Range::removeSuffix): (folly::Range::replaceAt): (folly::Range::replaceAll): (folly::Range::split_step): (folly::swap): (folly::range): (folly::operator<<): (folly::operator==): (folly::operator<): (folly::operator>): (folly::operator<=): (folly::operator>=): (folly::qfind): (folly::detail::qfind_first_byte_of): (folly::qfind_first_of): (folly::AsciiCaseSensitive::operator() const): (folly::AsciiCaseInsensitive::operator() const): (folly::rfind): (folly::hasher::singleton): (folly::detail::SingletonHolder::registerSingleton): (folly::detail::SingletonHolder::registerSingletonMock): (folly::detail::SingletonHolder::get): (folly::detail::SingletonHolder::get_weak): (folly::detail::SingletonHolder::try_get): (folly::detail::SingletonHolder::try_get_fast): (folly::detail::SingletonHolder::hasLiveInstance): (folly::detail::SingletonHolder::preDestroyInstance): (folly::detail::SingletonHolder::destroyInstance): (folly::detail::SingletonHolder::SingletonHolder): (folly::detail::SingletonHolder::creationStarted): (folly::detail::SingletonHolder::createInstance): * StitchMarker/folly/folly/Singleton.h: Added. (folly::detail::TypeDescriptor::TypeDescriptor): (folly::detail::TypeDescriptor::operator=): (folly::detail::TypeDescriptor::name const): (folly::detail::TypeDescriptor::operator== const): (folly::detail::TypeDescriptorHasher::operator() const): (folly::detail::SingletonHolderBase::SingletonHolderBase): (folly::detail::SingletonHolderBase::type const): (folly::SingletonVault::ScopedExpunger::ScopedExpunger): (folly::SingletonVault::ScopedExpunger::~ScopedExpunger): (folly::SingletonVault::ScopedExpunger::expunge): (folly::SingletonVault::SingletonVault): (folly::SingletonVault::registeredSingletonCount const): (folly::SingletonVault::livingSingletonCount const): (folly::SingletonVault::singleton): (folly::SingletonVault::stackTraceGetter): (folly::SingletonVault::setType): (folly::SingletonVault::stateCheck): (folly::LeakySingleton::LeakySingleton): (folly::LeakySingleton::get): (folly::LeakySingleton::make_mock): (folly::LeakySingleton::Entry::Entry): (folly::LeakySingleton::entryInstance): (folly::LeakySingleton::instance): (folly::LeakySingleton::createInstance): * StitchMarker/folly/folly/SingletonThreadLocal.h: Added. (folly::SingletonThreadLocal::SingletonThreadLocal): (folly::SingletonThreadLocal::get): (folly::SingletonThreadLocal::localPtr): (folly::SingletonThreadLocal::Wrapper::Wrapper): (folly::SingletonThreadLocal::Wrapper::~Wrapper): (folly::SingletonThreadLocal::Wrapper::operator*): * StitchMarker/folly/folly/String-inl.h: Added. (folly::cEscape): (folly::cUnescape): (folly::uriEscape): (folly::uriUnescape): (folly::detail::delimSize): (folly::detail::atDelim): (folly::detail::delimFront): (folly::detail::internalSplit): (folly::detail::prepareDelim): (folly::detail::splitFixed): (folly::split): (folly::splitTo): (folly::sizeof): (folly::detail::internalJoinAppend): (folly::detail::internalJoin): (folly::join): (folly::backslashify): (folly::humanify): (folly::hexlify): (folly::unhexlify): (folly::hexDump): * StitchMarker/folly/folly/String.cpp: Added. (folly::is_oddspace): (folly::ltrimWhitespace): (folly::rtrimWhitespace): (folly::stringPrintf): (folly::stringVPrintf): (folly::stringAppendf): (folly::stringVAppendf): (folly::prettyPrint): (folly::prettyToDouble): (folly::hexDump): (folly::errnoStr): (folly::toLowerAscii): (folly::detail::hexDumpLine): (folly::stripLeftMargin): * StitchMarker/folly/folly/String.h: Added. (folly::toStdString): (folly::cEscape): (folly::cUnescape): (folly::uriEscape): (folly::uriUnescape): (folly::backslashify): (folly::humanify): (folly::hexlify): (folly::unhexlify): (folly::decltype): (folly::join): (folly::trimWhitespace): (folly::skipWhitespace): (folly::toLowerAscii): (folly::UTF8Range::UTF8Range): * StitchMarker/folly/folly/Synchronized.h: Added. (folly::Synchronized::Synchronized): (folly::Synchronized::noexcept): (folly::Synchronized::operator=): (folly::Synchronized::contextualLock): (folly::Synchronized::contextualLock const): (folly::Synchronized::contextualRLock const): (folly::Synchronized::operator->): (folly::Synchronized::operator-> const): (folly::Synchronized::timedAcquire): (folly::Synchronized::timedAcquire const): (folly::Synchronized::asConst const): (folly::Synchronized::swap): (folly::Synchronized::copy const): (folly::LockedPtrBase::~LockedPtrBase): (folly::LockedPtrBase::unlock): (folly::LockedPtrBase::LockedPtrBase): (folly::LockedPtrBase::getSynchronized): (folly::LockedPtrBase::releaseLock): (folly::LockedPtrBase::reacquireLock): (folly::ScopedUnlocker::ScopedUnlocker): (folly::ScopedUnlocker::~ScopedUnlocker): (folly::ScopedUnlocker::getSynchronized const): (folly::LockedPtr::LockedPtr): (folly::LockedPtr::~LockedPtr): (folly::LockedPtr::isNull const): (folly::LockedPtr::operator bool const): (folly::LockedPtr::operator-> const): (folly::LockedPtr::operator* const): (folly::LockedPtr::scopedUnlock): (folly::LockedPtr::moveFromUpgradeToWrite): (folly::LockedPtr::moveFromWriteToUpgrade): (folly::LockedPtr::moveFromUpgradeToRead): (folly::LockedPtr::moveFromWriteToRead): (folly::LockedGuardPtr::LockedGuardPtr): (folly::LockedGuardPtr::~LockedGuardPtr): (folly::LockedGuardPtr::operator-> const): (folly::LockedGuardPtr::operator* const): (folly::acquireLocked): (folly::acquireLockedPair): (folly::swap): * StitchMarker/folly/folly/ThreadId.h: Added. (folly::getCurrentThreadID): (folly::getOSThreadID): * StitchMarker/folly/folly/ThreadLocal.h: Added. (folly::ThreadLocal::ThreadLocal): (folly::ThreadLocal::get const): (folly::ThreadLocal::operator-> const): (folly::ThreadLocal::operator* const): (folly::ThreadLocal::reset): (folly::ThreadLocal::accessAllThreads const): (folly::ThreadLocal::makeTlp const): (folly::ThreadLocalPtr::ThreadLocalPtr): (folly::ThreadLocalPtr::operator=): (folly::ThreadLocalPtr::~ThreadLocalPtr): (folly::ThreadLocalPtr::get const): (folly::ThreadLocalPtr::operator-> const): (folly::ThreadLocalPtr::operator* const): (folly::ThreadLocalPtr::release): (folly::ThreadLocalPtr::reset): (folly::ThreadLocalPtr::operator bool const): (folly::ThreadLocalPtr::Accessor::Iterator::increment): (folly::ThreadLocalPtr::Accessor::Iterator::decrement): (folly::ThreadLocalPtr::Accessor::Iterator::dereference const): (folly::ThreadLocalPtr::Accessor::Iterator::equal const): (folly::ThreadLocalPtr::Accessor::Iterator::Iterator): (folly::ThreadLocalPtr::Accessor::Iterator::valid const): (folly::ThreadLocalPtr::Accessor::Iterator::incrementToValid): (folly::ThreadLocalPtr::Accessor::Iterator::decrementToValid): (folly::ThreadLocalPtr::Accessor::~Accessor): (folly::ThreadLocalPtr::Accessor::begin const): (folly::ThreadLocalPtr::Accessor::end const): (folly::ThreadLocalPtr::Accessor::Accessor): (folly::ThreadLocalPtr::Accessor::release): (folly::ThreadLocalPtr::accessAllThreads const): (folly::ThreadLocalPtr::destroy): * StitchMarker/folly/folly/Traits.h: Added. (folly::Ignore::Ignore): (folly::Ignore::operator= const): (folly::Bools::size): (folly::detail::is_negative_impl::check): (folly::detail::less_than_impl): (folly::detail::greater_than_impl): (folly::is_negative): (folly::is_non_positive): (folly::is_positive): (folly::is_non_negative): (folly::less_than): (folly::greater_than): * StitchMarker/folly/folly/UncaughtExceptions.h: Added. * StitchMarker/folly/folly/Unit.h: Added. (folly::Unit::operator== const): (folly::Unit::operator!= const): * StitchMarker/folly/folly/Utility.h: Added. (folly::noexcept): (folly::in_place): (folly::in_place_type): (folly::in_place_index): * StitchMarker/folly/folly/concurrency/CacheLocality.cpp: Added. (folly::getSystemLocalityInfo): (folly::CacheLocality::system): (folly::parseLeadingNumber): (folly::CacheLocality::readFromSysfsTree): (folly::CacheLocality::readFromSysfs): (folly::CacheLocality::uniform): (folly::Getcpu::resolveVdsoFunc): (folly::SimpleAllocator::SimpleAllocator): (folly::sz_): (folly::SimpleAllocator::~SimpleAllocator): (folly::SimpleAllocator::allocateHard): * StitchMarker/folly/folly/concurrency/CacheLocality.h: Added. (folly::SequentialThreadId::get): (folly::HashingThreadId::get): (folly::FallbackGetcpu::getcpu): (folly::AccessSpreader::current): (folly::AccessSpreader::pickGetcpuFunc): (folly::AccessSpreader::degenerateGetcpu): (folly::AccessSpreader::initialize): (folly::SimpleAllocator::allocate): (folly::SimpleAllocator::deallocate): (folly::CoreAllocator::Allocator::sizeClass): (folly::CoreAllocator::Allocator::allocate): (folly::CoreAllocator::Allocator::deallocate): (folly::CoreAllocator::get): (folly::getCoreAllocator): (folly::getCoreAllocatorStl): * StitchMarker/folly/folly/concurrency/test/CacheLocalityBenchmark.cpp: Added. (BENCHMARK): (contentionAtWidth): (atomicIncrBaseline): (contentionAtWidthGetcpu): (contentionAtWidthThreadLocal): (contentionAtWidthPthreadSelf): (main): * StitchMarker/folly/folly/detail/AtomicUtils.h: Added. (folly::detail::default_failure_memory_order): * StitchMarker/folly/folly/detail/BitIteratorDetail.h: Added. (folly::bititerator_detail::BitReference::BitReference): (folly::bititerator_detail::BitReference::operator bool const): (folly::bititerator_detail::BitReference::operator=): (folly::bititerator_detail::BitReference::set): (folly::bititerator_detail::BitReference::clear): (folly::bititerator_detail::BitReference::flip): * StitchMarker/folly/folly/detail/FileUtilDetail.h: Added. (folly::fileutil_detail::wrapNoInt): (folly::fileutil_detail::incr): (folly::fileutil_detail::wrapFull): (folly::fileutil_detail::wrapvFull): * StitchMarker/folly/folly/detail/Futex.cpp: Added. (folly::detail::Futex::futexWake): (folly::detail::Futex::futexWake): (folly::detail::Futex::futexWaitImpl): (folly::detail::Futex::futexWaitImpl): * StitchMarker/folly/folly/detail/Futex.h: Added. (folly::detail::Futex::Futex): (folly::detail::Futex::futexWait): (folly::detail::Futex::futexWaitUntil): * StitchMarker/folly/folly/detail/MallocImpl.cpp: Added. * StitchMarker/folly/folly/detail/MallocImpl.h: Added. * StitchMarker/folly/folly/detail/MemoryIdler.h: Added. (folly::detail::MemoryIdler::getVariationTimeout): (folly::detail::MemoryIdler::futexWait): * StitchMarker/folly/folly/detail/RangeCommon.h: Added. (folly::detail::StringPieceLite::StringPieceLite): (folly::detail::StringPieceLite::data const): (folly::detail::StringPieceLite::begin const): (folly::detail::StringPieceLite::end const): (folly::detail::StringPieceLite::size const): (folly::detail::StringPieceLite::empty const): (folly::detail::StringPieceLite::operator[] const): (folly::detail::StringPieceLite::operator Range const): (folly::detail::qfind_first_byte_of_std): (folly::detail::qfind_first_byte_of_nosse): * StitchMarker/folly/folly/detail/RangeSse42.h: Added. * StitchMarker/folly/folly/detail/Sleeper.h: Added. (folly::detail::Sleeper::Sleeper): (folly::detail::Sleeper::wait): * StitchMarker/folly/folly/detail/StaticSingletonManager.cpp: Added. (folly::detail::StaticSingletonManager::instance): * StitchMarker/folly/folly/detail/StaticSingletonManager.h: Added. (folly::detail::StaticSingletonManager::create): (folly::detail::StaticSingletonManager::StaticSingletonManager): (folly::detail::StaticSingletonManager::EntryIf::~EntryIf): (folly::detail::createGlobal): * StitchMarker/folly/folly/detail/ThreadLocalDetail.cpp: Added. (folly::threadlocal_detail::StaticMetaBase::StaticMetaBase): (folly::threadlocal_detail::StaticMetaBase::onThreadExit): (folly::threadlocal_detail::StaticMetaBase::allocate): (folly::threadlocal_detail::StaticMetaBase::destroy): (folly::threadlocal_detail::StaticMetaBase::reserve): (folly::threadlocal_detail::StaticMetaBase::initAtFork): (folly::threadlocal_detail::StaticMetaBase::registerAtFork): * StitchMarker/folly/folly/detail/ThreadLocalDetail.h: Added. (folly::threadlocal_detail::ElementWrapper::dispose): (folly::threadlocal_detail::ElementWrapper::release): (folly::threadlocal_detail::ElementWrapper::set): (folly::threadlocal_detail::ElementWrapper::cleanup): (folly::threadlocal_detail::PthreadKeyUnregister::~PthreadKeyUnregister): (folly::threadlocal_detail::PthreadKeyUnregister::registerKey): (folly::threadlocal_detail::PthreadKeyUnregister::PthreadKeyUnregister): (folly::threadlocal_detail::PthreadKeyUnregister::registerKeyImpl): (folly::threadlocal_detail::StaticMetaBase::EntryID::EntryID): (folly::threadlocal_detail::StaticMetaBase::EntryID::operator=): (folly::threadlocal_detail::StaticMetaBase::EntryID::getOrInvalid): (folly::threadlocal_detail::StaticMetaBase::EntryID::getOrAllocate): (folly::threadlocal_detail::StaticMetaBase::~StaticMetaBase): (folly::threadlocal_detail::StaticMetaBase::push_back): (folly::threadlocal_detail::StaticMetaBase::erase): (folly::threadlocal_detail::StaticMeta::StaticMeta): (folly::threadlocal_detail::StaticMeta::instance): (folly::threadlocal_detail::StaticMeta::get): (folly::threadlocal_detail::StaticMeta::getThreadEntrySlow): (folly::threadlocal_detail::StaticMeta::getThreadEntry): (folly::threadlocal_detail::StaticMeta::preFork): (folly::threadlocal_detail::StaticMeta::onForkParent): (folly::threadlocal_detail::StaticMeta::onForkChild): * StitchMarker/folly/folly/detail/UncaughtExceptionCounter.h: Added. * StitchMarker/folly/folly/experimental/AsymmetricMemoryBarrier.cpp: Added. (folly::asymmetricHeavyBarrier): * StitchMarker/folly/folly/experimental/AsymmetricMemoryBarrier.h: Added. (folly::asymmetricLightBarrier): * StitchMarker/folly/folly/experimental/ReadMostlySharedPtr.h: Added. (folly::detail::ReadMostlySharedPtrCore::get): (folly::detail::ReadMostlySharedPtrCore::getShared): (folly::detail::ReadMostlySharedPtrCore::incref): (folly::detail::ReadMostlySharedPtrCore::decref): (folly::detail::ReadMostlySharedPtrCore::increfWeak): (folly::detail::ReadMostlySharedPtrCore::decrefWeak): (folly::detail::ReadMostlySharedPtrCore::useCount const): (folly::detail::ReadMostlySharedPtrCore::ReadMostlySharedPtrCore): (folly::ReadMostlyMainPtr::ReadMostlyMainPtr): (folly::ReadMostlyMainPtr::operator== const): (folly::ReadMostlyMainPtr::reset): (folly::ReadMostlyMainPtr::get const): (folly::ReadMostlyMainPtr::getStdShared const): (folly::ReadMostlyMainPtr::operator* const): (folly::ReadMostlyMainPtr::operator-> const): (folly::ReadMostlyMainPtr::getShared const): (folly::ReadMostlyMainPtr::operator bool const): (folly::ReadMostlyWeakPtr::ReadMostlyWeakPtr): (folly::ReadMostlyWeakPtr::operator=): (folly::ReadMostlyWeakPtr::lock): (folly::ReadMostlyWeakPtr::reset): (folly::ReadMostlySharedPtr::ReadMostlySharedPtr): (folly::ReadMostlySharedPtr::operator=): (folly::ReadMostlySharedPtr::operator== const): (folly::ReadMostlySharedPtr::reset): (folly::ReadMostlySharedPtr::get const): (folly::ReadMostlySharedPtr::getStdShared const): (folly::ReadMostlySharedPtr::operator* const): (folly::ReadMostlySharedPtr::operator-> const): (folly::ReadMostlySharedPtr::use_count const): (folly::ReadMostlySharedPtr::unique const): (folly::ReadMostlySharedPtr::operator bool const): (folly::operator==): (folly::operator!=): * StitchMarker/folly/folly/experimental/TLRefCount.h: Added. (folly::TLRefCount::TLRefCount): (folly::TLRefCount::collectGuard_): (folly::TLRefCount::operator* const): (folly::TLRefCount::useGlobal): (folly::TLRefCount::LocalRefCount::LocalRefCount): (folly::TLRefCount::LocalRefCount::~LocalRefCount): (folly::TLRefCount::LocalRefCount::collect): (folly::TLRefCount::LocalRefCount::operator++): (folly::TLRefCount::LocalRefCount::operator--): (folly::TLRefCount::LocalRefCount::update): * StitchMarker/folly/folly/experimental/flat_combining/FlatCombining.h: Added. (folly::FlatCombining::Rec::Rec): (folly::FlatCombining::Rec::setValid): (folly::FlatCombining::Rec::clearValid): (folly::FlatCombining::Rec::isValid const): (folly::FlatCombining::Rec::setDone): (folly::FlatCombining::Rec::clearDone): (folly::FlatCombining::Rec::isDone const): (folly::FlatCombining::Rec::awaitDone): (folly::FlatCombining::Rec::setDisconnected): (folly::FlatCombining::Rec::clearDisconnected): (folly::FlatCombining::Rec::isDisconnected const): (folly::FlatCombining::Rec::setIndex): (folly::FlatCombining::Rec::getIndex const): (folly::FlatCombining::Rec::setNext): (folly::FlatCombining::Rec::getNext const): (folly::FlatCombining::Rec::setLast): (folly::FlatCombining::Rec::getLast const): (folly::FlatCombining::Rec::getReq): (folly::FlatCombining::Rec::setFn): (folly::FlatCombining::Rec::clearFn): (folly::FlatCombining::Rec::getFn): (folly::FlatCombining::Rec::complete): (folly::FlatCombining::FlatCombining): (folly::FlatCombining::~FlatCombining): (folly::FlatCombining::drainAll): (folly::FlatCombining::acquireExclusive): (folly::FlatCombining::tryExclusive): (folly::FlatCombining::releaseExclusive): (folly::FlatCombining::holdLock): (folly::FlatCombining::requestNoFC): (folly::FlatCombining::requestFC): (folly::FlatCombining::allocRec): (folly::FlatCombining::freeRec): (folly::FlatCombining::getNumUncombined const): (folly::FlatCombining::getNumCombined const): (folly::FlatCombining::getNumPasses const): (folly::FlatCombining::getNumSessions const): (folly::FlatCombining::requestOp): (folly::FlatCombining::pushRec): (folly::FlatCombining::getRecsHead): (folly::FlatCombining::nextIndex): (folly::FlatCombining::clearPending): (folly::FlatCombining::setPending): (folly::FlatCombining::isPending const): (folly::FlatCombining::awaitPending): (folly::FlatCombining::combiningSession): (folly::FlatCombining::tryCombining): (folly::FlatCombining::dedicatedCombining): (folly::FlatCombining::awaitDone): (folly::FlatCombining::awaitDoneTryLock): (folly::FlatCombining::shutdown): (folly::FlatCombining::combinedOp): (folly::FlatCombining::processReq): (folly::FlatCombining::combiningPass): * StitchMarker/folly/folly/experimental/flat_combining/test/FlatCombiningBenchmark.cpp: Added. (BENCHMARK_RELATIVE): (benchmarkSetup): (TEST): (test): * StitchMarker/folly/folly/experimental/flat_combining/test/FlatCombiningExamples.h: Added. (folly::Data::Data): (folly::Data::getVal): (folly::Data::add): (folly::Data::fetchAdd): (folly::FcSimpleExample::FcSimpleExample): (folly::FcSimpleExample::getVal): (folly::FcSimpleExample::addNoFC): (folly::FcSimpleExample::add): (folly::FcSimpleExample::fetchAddNoFC): (folly::FcSimpleExample::fetchAdd): (folly::Req::setType): (folly::Req::getType): (folly::Req::setVal): (folly::Req::getVal): (folly::Req::setRes): (folly::Req::getRes): (folly::FcCustomExample::FcCustomExample): (folly::FcCustomExample::getVal): (folly::FcCustomExample::addNoFC): (folly::FcCustomExample::add): (folly::FcCustomExample::fetchAddNoFC): (folly::FcCustomExample::fetchAdd): (folly::FcCustomExample::combinedOp): * StitchMarker/folly/folly/experimental/flat_combining/test/FlatCombiningTestHelpers.h: Added. (folly::test::doWork): (folly::test::fc_test): (folly::test::run_test): * StitchMarker/folly/folly/experimental/hazptr/bench/HazptrBench-Amb-Tc.cpp: Added. (main): * StitchMarker/folly/folly/experimental/hazptr/bench/HazptrBench-NoAmb-NoTc.cpp: Added. (main): * StitchMarker/folly/folly/experimental/hazptr/bench/HazptrBench-NoAmb-Tc.cpp: Added. (main): * StitchMarker/folly/folly/experimental/hazptr/bench/HazptrBench-OneDomain.cpp: Added. (main): * StitchMarker/folly/folly/experimental/hazptr/bench/HazptrBench.h: Added. (folly::hazptr::run_once): (folly::hazptr::bench): (folly::hazptr::listBench): (folly::hazptr::holderBench): (folly::hazptr::retireBench): (folly::hazptr::benches): * StitchMarker/folly/folly/experimental/hazptr/debug.h: Added. * StitchMarker/folly/folly/experimental/hazptr/example/SWMRList.h: Added. (folly::hazptr::SWMRListSet::Reclaimer::operator()): (folly::hazptr::SWMRListSet::Node::Node): (folly::hazptr::SWMRListSet::Node::~Node): (folly::hazptr::SWMRListSet::locate_lower_bound const): (folly::hazptr::SWMRListSet::SWMRListSet): (folly::hazptr::SWMRListSet::~SWMRListSet): (folly::hazptr::SWMRListSet::add): (folly::hazptr::SWMRListSet::remove): (folly::hazptr::SWMRListSet::contains const): * StitchMarker/folly/folly/experimental/hazptr/hazptr-impl.h: Added. (folly::hazptr::D>::retire): (folly::hazptr::hazptr_holder::hazptr_holder): (folly::hazptr::hazptr_holder::~hazptr_holder): (folly::hazptr::default_hazptr_domain): (folly::hazptr::hazptr_obj::getObjPtr const): (folly::hazptr::hazptr_domain::~hazptr_domain): (folly::hazptr::hazptr_domain::hazptrAcquire): (folly::hazptr::hazptr_domain::pushRetired): (folly::hazptr::hazptr_domain::reachedThreshold): (folly::hazptr::hazptr_domain::objRetire): (folly::hazptr::hazptr_domain::tryBulkReclaim): (folly::hazptr::hazptr_domain::bulkReclaim): (folly::hazptr::hazptr_stats::~hazptr_stats): (folly::hazptr::hazptr_stats::light): (folly::hazptr::hazptr_stats::heavy): (folly::hazptr::hazptr_stats::seq_cst): (folly::hazptr::hazptr_stats): (folly::hazptr::hazptr_mb::light): (folly::hazptr::hazptr_mb::heavy): (folly::hazptr::hazptr_tc_entry::fill): (folly::hazptr::hazptr_tc_entry::get): (folly::hazptr::hazptr_tc_entry::evict): (folly::hazptr::hazptr_tc::hazptr_tc): (folly::hazptr::hazptr_tc::~hazptr_tc): (folly::hazptr::hazptr_tc::get): (folly::hazptr::hazptr_tc::put): (folly::hazptr::hazptr_tc): (folly::hazptr::hazptr_priv::hazptr_priv): (folly::hazptr::hazptr_priv::~hazptr_priv): (folly::hazptr::hazptr_priv::push): (folly::hazptr::hazptr_priv::pushAllToDomain): (folly::hazptr::hazptr_priv): * StitchMarker/folly/folly/experimental/hazptr/hazptr.h: Added. (folly::hazptr::hazptr_obj_base::retire): * StitchMarker/folly/folly/experimental/hazptr/memory_resource.h: Added. (folly::hazptr::default_mr_ptr): (folly::hazptr::get_default_resource): (folly::hazptr::set_default_resource): (folly::hazptr::new_delete_resource): * StitchMarker/folly/folly/experimental/logging/README.md: Added. * StitchMarker/folly/folly/experimental/test/ReadMostlySharedPtrBenchmark.cpp: Added. (benchmark): (BENCHMARK): (main): * StitchMarker/folly/folly/experimental/test/RefCountBenchmark.cpp: Added. (folly::shutdown): (folly::benchmark): (folly::BENCHMARK): (main): * StitchMarker/folly/folly/folly-config.h: Added. * StitchMarker/folly/folly/hash/SpookyHashV1.h: Added. (folly::hash::SpookyHashV1::Hash64): (folly::hash::SpookyHashV1::Hash32): (folly::hash::SpookyHashV1::Rot64): (folly::hash::SpookyHashV1::Mix): (folly::hash::SpookyHashV1::EndPartial): (folly::hash::SpookyHashV1::End): (folly::hash::SpookyHashV1::ShortMix): (folly::hash::SpookyHashV1::ShortEnd): * StitchMarker/folly/folly/hash/SpookyHashV2.h: Added. (folly::hash::SpookyHashV2::Hash64): (folly::hash::SpookyHashV2::Hash32): (folly::hash::SpookyHashV2::Rot64): (folly::hash::SpookyHashV2::Mix): (folly::hash::SpookyHashV2::EndPartial): (folly::hash::SpookyHashV2::End): (folly::hash::SpookyHashV2::ShortMix): (folly::hash::SpookyHashV2::ShortEnd): * StitchMarker/folly/folly/portability/Asm.h: Added. (folly::asm_volatile_memory): (folly::asm_volatile_pause): * StitchMarker/folly/folly/portability/BitsFunctexcept.h: Added. * StitchMarker/folly/folly/portability/Builtins.h: Added. (__builtin___clear_cache): (__builtin_clz): (__builtin_clzl): (__builtin_clzll): (__builtin_ctzll): (__builtin_ffs): (__builtin_ffsl): (__builtin_ffsll): (__builtin_popcount): (__builtin_popcountll): (__builtin_return_address): * StitchMarker/folly/folly/portability/Config.h: Added. * StitchMarker/folly/folly/portability/Constexpr.h: Added. (folly::constexpr_max): (folly::constexpr_min): (folly::constexpr_abs): (folly::detail::constexpr_strlen_internal): (folly::constexpr_strlen): * StitchMarker/folly/folly/portability/Fcntl.h: Added. * StitchMarker/folly/folly/portability/GFlags.h: Added. * StitchMarker/folly/folly/portability/GTest.h: Added. * StitchMarker/folly/folly/portability/IOVec.h: Added. * StitchMarker/folly/folly/portability/Malloc.h: Added. * StitchMarker/folly/folly/portability/Math.h: Added. (folly::nextafter): * StitchMarker/folly/folly/portability/Memory.cpp: Added. (folly::detail::aligned_malloc): (folly::detail::aligned_free): * StitchMarker/folly/folly/portability/Memory.h: Added. * StitchMarker/folly/folly/portability/PThread.h: Added. (operator==): (operator!=): (operator<): (operator!): (pthread_attr_getstack): (pthread_attr_setstack): (pthread_attr_getguardsize): (std::hash::operator() const): * StitchMarker/folly/folly/portability/README.md: Added. * StitchMarker/folly/folly/portability/Semaphore.h: Added. * StitchMarker/folly/folly/portability/String.h: Added. * StitchMarker/folly/folly/portability/SysMembarrier.h: Added. * StitchMarker/folly/folly/portability/SysMman.h: Added. * StitchMarker/folly/folly/portability/SysResource.h: Added. * StitchMarker/folly/folly/portability/SysSyscall.h: Added. * StitchMarker/folly/folly/portability/SysTime.h: Added. * StitchMarker/folly/folly/portability/SysTypes.h: Added. * StitchMarker/folly/folly/portability/SysUio.h: Added. * StitchMarker/folly/folly/portability/Time.h: Added. * StitchMarker/folly/folly/portability/Unistd.h: Added. * StitchMarker/folly/folly/portability/Windows.h: Added. * StitchMarker/folly/folly/stats/Histogram-defs.h: Added. (folly::detail::BucketT>::HistogramBuckets): (folly::detail::BucketType>::getBucketIdx const): (folly::detail::BucketType>::computeTotalCount const): (folly::detail::BucketType>::getPercentileBucketIdx const): (folly::detail::BucketType>::getPercentileEstimate const): (folly::Histogram::debugString const): (folly::Histogram::toTSV const): * StitchMarker/folly/folly/stats/Histogram.h: Added. (folly::detail::HistogramBuckets::getBucketSize const): (folly::detail::HistogramBuckets::getMin const): (folly::detail::HistogramBuckets::getMax const): (folly::detail::HistogramBuckets::getNumBuckets const): (folly::detail::HistogramBuckets::getByValue): (folly::detail::HistogramBuckets::getByValue const): (folly::detail::HistogramBuckets::getByIndex): (folly::detail::HistogramBuckets::getByIndex const): (folly::detail::HistogramBuckets::getBucketMin const): (folly::detail::HistogramBuckets::getBucketMax const): (folly::detail::HistogramBuckets::begin const): (folly::detail::HistogramBuckets::begin): (folly::detail::HistogramBuckets::end const): (folly::detail::HistogramBuckets::end): (folly::Histogram::Histogram): (folly::Histogram::FOLLY_DISABLE_UNDEFINED_BEHAVIOR_SANITIZER): (folly::Histogram::removeRepeatedValue): (folly::Histogram::clear): (folly::Histogram::subtract): (folly::Histogram::merge): (folly::Histogram::copy): (folly::Histogram::getBucketSize const): (folly::Histogram::getMin const): (folly::Histogram::getMax const): (folly::Histogram::getNumBuckets const): (folly::Histogram::getBucketByIndex const): (folly::Histogram::getBucketMin const): (folly::Histogram::getBucketMax const): (folly::Histogram::computeTotalCount const): (folly::Histogram::getPercentileBucketIdx const): (folly::Histogram::getPercentileEstimate const): (folly::Histogram::CountFromBucket::operator() const): (folly::Histogram::AvgFromBucket::operator() const): * StitchMarker/folly/folly/stats/detail/Bucket.h: Added. (folly::detail::avgHelper): (folly::detail::rateHelper): (folly::detail::Bucket::Bucket): (folly::detail::Bucket::clear): (folly::detail::Bucket::add): (folly::detail::Bucket::operator+=): (folly::detail::Bucket::operator-=): (folly::detail::Bucket::avg const): * StitchMarker/folly/folly/test/BatonBenchmark.cpp: Added. (BENCHMARK): (main): * StitchMarker/folly/folly/test/BatonTestHelpers.h: Added. (folly::test::run_basic_test): (folly::test::run_pingpong_test): (folly::test::run_basic_timed_wait_tests): (folly::test::run_timed_wait_tmo_tests): (folly::test::run_timed_wait_regular_test): (folly::test::run_try_wait_tests): (folly::test::run_multi_producer_tests): * StitchMarker/folly/folly/test/CallOnceBenchmark.cpp: Added. (bm_impl): (BENCHMARK): (main): * StitchMarker/folly/folly/test/ConcurrentSkipListBenchmark.cpp: Added. (main): * StitchMarker/folly/folly/test/DeterministicSchedule.cpp: Added. (folly::test::DeterministicSchedule::DeterministicSchedule): (folly::test::DeterministicSchedule::~DeterministicSchedule): (folly::test::std::function::futexWaitImpl): (folly::detail::Futex::futexWake): (folly::CacheLocality::system): (folly::AccessSpreader::pickGetcpuFunc): * StitchMarker/folly/folly/test/DeterministicSchedule.h: Added. (folly::test::DeterministicSchedule::thread): (folly::test::DeterministicMutex::lock): (folly::test::DeterministicMutex::try_lock): (folly::test::DeterministicMutex::unlock): * StitchMarker/folly/folly/test/ProducerConsumerQueueBenchmark.cpp: Added. (main): * StitchMarker/folly/folly/test/ThreadLocalBenchmark.cpp: Added. (PThreadGetSpecific::PThreadGetSpecific): (PThreadGetSpecific::get const): (PThreadGetSpecific::reset): (PThreadGetSpecific::OnThreadExit): (main): * StitchMarker/folly/glog/AUTHORS: Added. * StitchMarker/folly/glog/CONTRIBUTORS: Added. * StitchMarker/folly/glog/COPYING: Added. * StitchMarker/folly/glog/README: Added. * StitchMarker/folly/glog/src/base/commandlineflags.h: Added. * StitchMarker/folly/glog/src/base/googleinit.h: Added. (GoogleInitializer::GoogleInitializer): * StitchMarker/folly/glog/src/base/mutex.h: Added. (MUTEX_NAMESPACE::Mutex::WriterLock): (MUTEX_NAMESPACE::Mutex::WriterUnlock): (MUTEX_NAMESPACE::Mutex::AssertHeld): (MUTEX_NAMESPACE::Mutex::SetIsSafe): (MUTEX_NAMESPACE::Mutex::Mutex): (MUTEX_NAMESPACE::Mutex::~Mutex): (MUTEX_NAMESPACE::Mutex::Lock): (MUTEX_NAMESPACE::Mutex::Unlock): (MUTEX_NAMESPACE::Mutex::TryLock): (MUTEX_NAMESPACE::Mutex::ReaderLock): (MUTEX_NAMESPACE::Mutex::ReaderUnlock): (MUTEX_NAMESPACE::MutexLock::MutexLock): (MUTEX_NAMESPACE::MutexLock::~MutexLock): (MUTEX_NAMESPACE::ReaderMutexLock::ReaderMutexLock): (MUTEX_NAMESPACE::ReaderMutexLock::~ReaderMutexLock): (MUTEX_NAMESPACE::WriterMutexLock::WriterMutexLock): (MUTEX_NAMESPACE::WriterMutexLock::~WriterMutexLock): * StitchMarker/folly/glog/src/config.h: Added. * StitchMarker/folly/glog/src/config.h.cmake.in: Added. * StitchMarker/folly/glog/src/config.h.in: Added. * StitchMarker/folly/glog/src/glog/log_severity.h: Added. * StitchMarker/folly/glog/src/glog/logging.h: Added. (google::CheckOpString::CheckOpString): (google::CheckOpString::operator bool const): (google::GetReferenceableValue): (operator<<): (google::MakeCheckOpValueString): (google::MakeCheckOpString): (google::LogAtLevel): (google::CheckNotNull): (google::operator<<): * StitchMarker/folly/glog/src/glog/logging.h.in: Added. * StitchMarker/folly/glog/src/glog/raw_logging.h: Added. (google::RawLogStub__): * StitchMarker/folly/glog/src/glog/raw_logging.h.in: Added. * StitchMarker/folly/glog/src/glog/vlog_is_on.h: Added. * StitchMarker/folly/glog/src/glog/vlog_is_on.h.in: Added. * StitchMarker/folly/glog/src/logging.cc: Added. * StitchMarker/folly/glog/src/raw_logging.cc: Added. * StitchMarker/folly/glog/src/utilities.cc: Added. * StitchMarker/folly/glog/src/utilities.h: Added. (glog_internal_namespace_::sync_val_compare_and_swap): (glog_internal_namespace_::CrashReason::CrashReason): * StitchMarker/folly/glog/src/vlog_is_on.cc: Added. * StitchMarker/folly/gtest/README.md: Added. * StitchMarker/folly/gtest/googletest/LICENSE: Added. * StitchMarker/folly/gtest/googletest/README.md: Added. * StitchMarker/folly/gtest/googletest/include/gtest/gtest-death-test.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/gtest-message.h: Added. (testing::operator <<): (testing::internal::StreamableToString): * StitchMarker/folly/gtest/googletest/include/gtest/gtest-param-test.h: Added. (TEST_P): (testing::Range): (testing::ValuesIn): (testing::Values): (testing::Bool): (testing::Combine): * StitchMarker/folly/gtest/googletest/include/gtest/gtest-param-test.h.pump: Added. * StitchMarker/folly/gtest/googletest/include/gtest/gtest-printers.h: Added. (testing::internal2::TypeWithoutFormatter::PrintValue): (testing::internal2::operator<<): (testing_internal::DefaultPrintNonContainerTo): (testing::internal::FormatForComparison::Format): (testing::internal::FormatForComparisonFailureMessage): (testing::internal::DefaultPrintTo): (testing::internal::PrintTo): (testing::internal::PrintRawArrayTo): (testing::internal::UniversalPrinter::Print): (testing::internal::UniversalPrintArray): (testing::internal::UniversalPrinter::PrintPrefixTo): (testing::internal::TuplePrefixPrinter<0>::TersePrintPrefixToStrings): (testing::internal::PrintTupleTo): (testing::internal::UniversalTersePrintTupleFieldsToStrings): (testing::PrintToString): * StitchMarker/folly/gtest/googletest/include/gtest/gtest-spi.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/gtest-test-part.h: Added. (testing::TestPartResultReporterInterface::~TestPartResultReporterInterface): * StitchMarker/folly/gtest/googletest/include/gtest/gtest-typed-test.h: Added. (TYPED_TEST): (TYPED_TEST_P): * StitchMarker/folly/gtest/googletest/include/gtest/gtest.h: Added. (testing::TestProperty::TestProperty): (testing::TestProperty::key const): (testing::TestProperty::value const): (testing::TestProperty::SetValue): (testing::Environment::~Environment): (testing::Environment::SetUp): (testing::Environment::TearDown): (testing::Environment::Setup): (testing::TestEventListener::~TestEventListener): (testing::EmptyTestEventListener::OnTestProgramStart): (testing::EmptyTestEventListener::OnTestIterationStart): (testing::EmptyTestEventListener::OnEnvironmentsSetUpStart): (testing::EmptyTestEventListener::OnEnvironmentsSetUpEnd): (testing::EmptyTestEventListener::OnTestCaseStart): (testing::EmptyTestEventListener::OnTestStart): (testing::EmptyTestEventListener::OnTestPartResult): (testing::EmptyTestEventListener::OnTestEnd): (testing::EmptyTestEventListener::OnTestCaseEnd): (testing::EmptyTestEventListener::OnEnvironmentsTearDownStart): (testing::EmptyTestEventListener::OnEnvironmentsTearDownEnd): (testing::EmptyTestEventListener::OnTestIterationEnd): (testing::EmptyTestEventListener::OnTestProgramEnd): (testing::AddGlobalTestEnvironment): (testing::internal::CmpHelperEQFailure): (testing::internal::CmpHelperEQ): (testing::internal::EqHelper::Compare): (testing::internal::EqHelper::Compare): (testing::internal::CmpHelperOpFailure): (testing::internal::CmpHelperFloatingPointEQ): (testing::WithParamInterface::~WithParamInterface): (testing::WithParamInterface::GetParam const): (testing::WithParamInterface::SetParam): (testing::StaticAssertTypeEq): (RUN_ALL_TESTS): * StitchMarker/folly/gtest/googletest/include/gtest/gtest_pred_impl.h: Added. (AssertPred1Helper): (AssertPred2Helper): (AssertPred3Helper): (AssertPred4Helper): (AssertPred5Helper): * StitchMarker/folly/gtest/googletest/include/gtest/gtest_prod.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/custom/gtest-port.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/custom/gtest-printers.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/custom/gtest.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-filepath.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-internal.h: Added. (testing::internal::FloatingPoint::FloatingPoint): (testing::internal::FloatingPoint::ReinterpretBits): (testing::internal::FloatingPoint::Infinity): (testing::internal::FloatingPoint::bits const): (testing::internal::FloatingPoint::exponent_bits const): (testing::internal::FloatingPoint::fraction_bits const): (testing::internal::FloatingPoint::sign_bit const): (testing::internal::FloatingPoint::is_nan const): (testing::internal::FloatingPoint::AlmostEquals const): (testing::internal::FloatingPoint::SignAndMagnitudeToBiased): (testing::internal::FloatingPoint::DistanceBetweenSignAndMagnitudeNumbers): (testing::internal::FloatingPoint::Max): (testing::internal::FloatingPoint::Max): (testing::internal::GetTypeId): (testing::internal::TestFactoryBase::~TestFactoryBase): (testing::internal::TestFactoryBase::TestFactoryBase): (testing::internal::TestFactoryImpl::CreateTest): (testing::internal::CodeLocation::CodeLocation): (testing::internal::SkipComma): (testing::internal::GetPrefixUntilComma): (testing::internal::TypeParameterizedTest::Register): (testing::internal::TypeParameterizedTestCase::Register): (testing::internal::AlwaysFalse): (testing::internal::IsContainerTest): (testing::internal::ArrayEq): (testing::internal::ArrayAwareFind): (testing::internal::CopyArray): (testing::internal::NativeArray::NativeArray): (testing::internal::NativeArray::~NativeArray): (testing::internal::NativeArray::size const): (testing::internal::NativeArray::begin const): (testing::internal::NativeArray::end const): (testing::internal::NativeArray::operator== const): (testing::internal::NativeArray::InitCopy): (testing::internal::NativeArray::InitRef): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h: Added. (testing::internal::linked_ptr_internal::join_new): (testing::internal::linked_ptr_internal::GTEST_LOCK_EXCLUDED_): (testing::internal::linked_ptr::linked_ptr): (testing::internal::linked_ptr::~linked_ptr): (testing::internal::linked_ptr::operator=): (testing::internal::linked_ptr::reset): (testing::internal::linked_ptr::get const): (testing::internal::linked_ptr::operator-> const): (testing::internal::linked_ptr::operator* const): (testing::internal::linked_ptr::operator== const): (testing::internal::linked_ptr::operator!= const): (testing::internal::linked_ptr::depart): (testing::internal::linked_ptr::capture): (testing::internal::linked_ptr::copy): (testing::internal::operator==): (testing::internal::operator!=): (testing::internal::make_linked_ptr): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h: Added. (testing::internal::ValueArray1::ValueArray1): (testing::internal::ValueArray1::operator ParamGenerator const): (testing::internal::ValueArray2::ValueArray2): (testing::internal::ValueArray2::operator ParamGenerator const): (testing::internal::ValueArray3::ValueArray3): (testing::internal::ValueArray3::operator ParamGenerator const): (testing::internal::ValueArray4::ValueArray4): (testing::internal::ValueArray4::operator ParamGenerator const): (testing::internal::ValueArray5::ValueArray5): (testing::internal::ValueArray5::operator ParamGenerator const): (testing::internal::ValueArray6::ValueArray6): (testing::internal::ValueArray6::operator ParamGenerator const): (testing::internal::ValueArray7::ValueArray7): (testing::internal::ValueArray7::operator ParamGenerator const): (testing::internal::ValueArray8::ValueArray8): (testing::internal::ValueArray8::operator ParamGenerator const): (testing::internal::ValueArray9::ValueArray9): (testing::internal::ValueArray9::operator ParamGenerator const): (testing::internal::ValueArray10::ValueArray10): (testing::internal::ValueArray10::operator ParamGenerator const): (testing::internal::ValueArray11::ValueArray11): (testing::internal::ValueArray11::operator ParamGenerator const): (testing::internal::ValueArray12::ValueArray12): (testing::internal::ValueArray12::operator ParamGenerator const): (testing::internal::ValueArray13::ValueArray13): (testing::internal::ValueArray13::operator ParamGenerator const): (testing::internal::ValueArray14::ValueArray14): (testing::internal::ValueArray14::operator ParamGenerator const): (testing::internal::ValueArray15::ValueArray15): (testing::internal::ValueArray15::operator ParamGenerator const): (testing::internal::ValueArray16::ValueArray16): (testing::internal::ValueArray16::operator ParamGenerator const): (testing::internal::ValueArray17::ValueArray17): (testing::internal::ValueArray17::operator ParamGenerator const): (testing::internal::ValueArray18::ValueArray18): (testing::internal::ValueArray18::operator ParamGenerator const): (testing::internal::ValueArray19::ValueArray19): (testing::internal::ValueArray19::operator ParamGenerator const): (testing::internal::ValueArray20::ValueArray20): (testing::internal::ValueArray20::operator ParamGenerator const): (testing::internal::ValueArray21::ValueArray21): (testing::internal::ValueArray21::operator ParamGenerator const): (testing::internal::ValueArray22::ValueArray22): (testing::internal::ValueArray22::operator ParamGenerator const): (testing::internal::ValueArray23::ValueArray23): (testing::internal::ValueArray23::operator ParamGenerator const): (testing::internal::ValueArray24::ValueArray24): (testing::internal::ValueArray24::operator ParamGenerator const): (testing::internal::ValueArray25::ValueArray25): (testing::internal::ValueArray25::operator ParamGenerator const): (testing::internal::ValueArray26::ValueArray26): (testing::internal::ValueArray26::operator ParamGenerator const): (testing::internal::ValueArray27::ValueArray27): (testing::internal::ValueArray27::operator ParamGenerator const): (testing::internal::ValueArray28::ValueArray28): (testing::internal::ValueArray28::operator ParamGenerator const): (testing::internal::ValueArray29::ValueArray29): (testing::internal::ValueArray29::operator ParamGenerator const): (testing::internal::ValueArray30::ValueArray30): (testing::internal::ValueArray30::operator ParamGenerator const): (testing::internal::ValueArray31::ValueArray31): (testing::internal::ValueArray31::operator ParamGenerator const): (testing::internal::ValueArray32::ValueArray32): (testing::internal::ValueArray32::operator ParamGenerator const): (testing::internal::ValueArray33::ValueArray33): (testing::internal::ValueArray33::operator ParamGenerator const): (testing::internal::ValueArray34::ValueArray34): (testing::internal::ValueArray34::operator ParamGenerator const): (testing::internal::ValueArray35::ValueArray35): (testing::internal::ValueArray35::operator ParamGenerator const): (testing::internal::ValueArray36::ValueArray36): (testing::internal::ValueArray36::operator ParamGenerator const): (testing::internal::ValueArray37::ValueArray37): (testing::internal::ValueArray37::operator ParamGenerator const): (testing::internal::ValueArray38::ValueArray38): (testing::internal::ValueArray38::operator ParamGenerator const): (testing::internal::ValueArray39::ValueArray39): (testing::internal::ValueArray39::operator ParamGenerator const): (testing::internal::ValueArray40::ValueArray40): (testing::internal::ValueArray40::operator ParamGenerator const): (testing::internal::ValueArray41::ValueArray41): (testing::internal::ValueArray41::operator ParamGenerator const): (testing::internal::ValueArray42::ValueArray42): (testing::internal::ValueArray42::operator ParamGenerator const): (testing::internal::ValueArray43::ValueArray43): (testing::internal::ValueArray43::operator ParamGenerator const): (testing::internal::ValueArray44::ValueArray44): (testing::internal::ValueArray44::operator ParamGenerator const): (testing::internal::ValueArray45::ValueArray45): (testing::internal::ValueArray45::operator ParamGenerator const): (testing::internal::ValueArray46::ValueArray46): (testing::internal::ValueArray46::operator ParamGenerator const): (testing::internal::ValueArray47::ValueArray47): (testing::internal::ValueArray47::operator ParamGenerator const): (testing::internal::ValueArray48::ValueArray48): (testing::internal::ValueArray48::operator ParamGenerator const): (testing::internal::ValueArray49::ValueArray49): (testing::internal::ValueArray49::operator ParamGenerator const): (testing::internal::ValueArray50::ValueArray50): (testing::internal::ValueArray50::operator ParamGenerator const): (testing::internal::CartesianProductGenerator2::CartesianProductGenerator2): (testing::internal::CartesianProductGenerator2::~CartesianProductGenerator2): (testing::internal::CartesianProductGenerator2::Begin const): (testing::internal::CartesianProductGenerator2::End const): (testing::internal::CartesianProductGenerator2::Iterator::Iterator): (testing::internal::CartesianProductGenerator2::Iterator::~Iterator): (testing::internal::CartesianProductGenerator2::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator2::Iterator::Advance): (testing::internal::CartesianProductGenerator2::Iterator::Clone const): (testing::internal::CartesianProductGenerator2::Iterator::Current const): (testing::internal::CartesianProductGenerator2::Iterator::Equals const): (testing::internal::CartesianProductGenerator2::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator2::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator3::CartesianProductGenerator3): (testing::internal::CartesianProductGenerator3::~CartesianProductGenerator3): (testing::internal::CartesianProductGenerator3::Begin const): (testing::internal::CartesianProductGenerator3::End const): (testing::internal::CartesianProductGenerator3::Iterator::Iterator): (testing::internal::CartesianProductGenerator3::Iterator::~Iterator): (testing::internal::CartesianProductGenerator3::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator3::Iterator::Advance): (testing::internal::CartesianProductGenerator3::Iterator::Clone const): (testing::internal::CartesianProductGenerator3::Iterator::Current const): (testing::internal::CartesianProductGenerator3::Iterator::Equals const): (testing::internal::CartesianProductGenerator3::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator3::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator4::CartesianProductGenerator4): (testing::internal::CartesianProductGenerator4::~CartesianProductGenerator4): (testing::internal::CartesianProductGenerator4::Begin const): (testing::internal::CartesianProductGenerator4::End const): (testing::internal::CartesianProductGenerator4::Iterator::Iterator): (testing::internal::CartesianProductGenerator4::Iterator::~Iterator): (testing::internal::CartesianProductGenerator4::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator4::Iterator::Advance): (testing::internal::CartesianProductGenerator4::Iterator::Clone const): (testing::internal::CartesianProductGenerator4::Iterator::Current const): (testing::internal::CartesianProductGenerator4::Iterator::Equals const): (testing::internal::CartesianProductGenerator4::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator4::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator5::CartesianProductGenerator5): (testing::internal::CartesianProductGenerator5::~CartesianProductGenerator5): (testing::internal::CartesianProductGenerator5::Begin const): (testing::internal::CartesianProductGenerator5::End const): (testing::internal::CartesianProductGenerator5::Iterator::Iterator): (testing::internal::CartesianProductGenerator5::Iterator::~Iterator): (testing::internal::CartesianProductGenerator5::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator5::Iterator::Advance): (testing::internal::CartesianProductGenerator5::Iterator::Clone const): (testing::internal::CartesianProductGenerator5::Iterator::Current const): (testing::internal::CartesianProductGenerator5::Iterator::Equals const): (testing::internal::CartesianProductGenerator5::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator5::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator6::CartesianProductGenerator6): (testing::internal::CartesianProductGenerator6::~CartesianProductGenerator6): (testing::internal::CartesianProductGenerator6::Begin const): (testing::internal::CartesianProductGenerator6::End const): (testing::internal::CartesianProductGenerator6::Iterator::Iterator): (testing::internal::CartesianProductGenerator6::Iterator::~Iterator): (testing::internal::CartesianProductGenerator6::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator6::Iterator::Advance): (testing::internal::CartesianProductGenerator6::Iterator::Clone const): (testing::internal::CartesianProductGenerator6::Iterator::Current const): (testing::internal::CartesianProductGenerator6::Iterator::Equals const): (testing::internal::CartesianProductGenerator6::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator6::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator7::CartesianProductGenerator7): (testing::internal::CartesianProductGenerator7::~CartesianProductGenerator7): (testing::internal::CartesianProductGenerator7::Begin const): (testing::internal::CartesianProductGenerator7::End const): (testing::internal::CartesianProductGenerator7::Iterator::Iterator): (testing::internal::CartesianProductGenerator7::Iterator::~Iterator): (testing::internal::CartesianProductGenerator7::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator7::Iterator::Advance): (testing::internal::CartesianProductGenerator7::Iterator::Clone const): (testing::internal::CartesianProductGenerator7::Iterator::Current const): (testing::internal::CartesianProductGenerator7::Iterator::Equals const): (testing::internal::CartesianProductGenerator7::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator7::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator8::CartesianProductGenerator8): (testing::internal::CartesianProductGenerator8::~CartesianProductGenerator8): (testing::internal::CartesianProductGenerator8::Begin const): (testing::internal::CartesianProductGenerator8::End const): (testing::internal::CartesianProductGenerator8::Iterator::Iterator): (testing::internal::CartesianProductGenerator8::Iterator::~Iterator): (testing::internal::CartesianProductGenerator8::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator8::Iterator::Advance): (testing::internal::CartesianProductGenerator8::Iterator::Clone const): (testing::internal::CartesianProductGenerator8::Iterator::Current const): (testing::internal::CartesianProductGenerator8::Iterator::Equals const): (testing::internal::CartesianProductGenerator8::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator8::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator9::CartesianProductGenerator9): (testing::internal::CartesianProductGenerator9::~CartesianProductGenerator9): (testing::internal::CartesianProductGenerator9::Begin const): (testing::internal::CartesianProductGenerator9::End const): (testing::internal::CartesianProductGenerator9::Iterator::Iterator): (testing::internal::CartesianProductGenerator9::Iterator::~Iterator): (testing::internal::CartesianProductGenerator9::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator9::Iterator::Advance): (testing::internal::CartesianProductGenerator9::Iterator::Clone const): (testing::internal::CartesianProductGenerator9::Iterator::Current const): (testing::internal::CartesianProductGenerator9::Iterator::Equals const): (testing::internal::CartesianProductGenerator9::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator9::Iterator::AtEnd const): (testing::internal::CartesianProductGenerator10::CartesianProductGenerator10): (testing::internal::CartesianProductGenerator10::~CartesianProductGenerator10): (testing::internal::CartesianProductGenerator10::Begin const): (testing::internal::CartesianProductGenerator10::End const): (testing::internal::CartesianProductGenerator10::Iterator::Iterator): (testing::internal::CartesianProductGenerator10::Iterator::~Iterator): (testing::internal::CartesianProductGenerator10::Iterator::BaseGenerator const): (testing::internal::CartesianProductGenerator10::Iterator::Advance): (testing::internal::CartesianProductGenerator10::Iterator::Clone const): (testing::internal::CartesianProductGenerator10::Iterator::Current const): (testing::internal::CartesianProductGenerator10::Iterator::Equals const): (testing::internal::CartesianProductGenerator10::Iterator::ComputeCurrentValue): (testing::internal::CartesianProductGenerator10::Iterator::AtEnd const): (testing::internal::CartesianProductHolder2::CartesianProductHolder2): (testing::internal::CartesianProductHolder2::operator ParamGenerator< ::testing::tuple > const): (testing::internal::CartesianProductHolder3::CartesianProductHolder3): (testing::internal::CartesianProductHolder3::operator ParamGenerator< ::testing::tuple > const): (testing::internal::CartesianProductHolder4::CartesianProductHolder4): (testing::internal::CartesianProductHolder4::operator ParamGenerator< ::testing::tuple > const): (testing::internal::CartesianProductHolder5::CartesianProductHolder5): (testing::internal::CartesianProductHolder5::operator ParamGenerator< ::testing::tuple > const): (testing::internal::CartesianProductHolder6::CartesianProductHolder6): (testing::internal::CartesianProductHolder6::operator ParamGenerator< ::testing::tuple > const): (testing::internal::CartesianProductHolder7::CartesianProductHolder7): (testing::internal::CartesianProductHolder7:: const): (testing::internal::CartesianProductHolder8::CartesianProductHolder8): (testing::internal::CartesianProductHolder8:: const): (testing::internal::CartesianProductHolder9::CartesianProductHolder9): (testing::internal::CartesianProductHolder9:: const): (testing::internal::CartesianProductHolder10::CartesianProductHolder10): (testing::internal::CartesianProductHolder10:: const): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h.pump: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-param-util.h: Added. (testing::TestParamInfo::TestParamInfo): (testing::PrintToStringParamName::operator() const): (testing::internal::ParamIteratorInterface::~ParamIteratorInterface): (testing::internal::ParamIterator::ParamIterator): (testing::internal::ParamIterator::operator=): (testing::internal::ParamIterator::operator* const): (testing::internal::ParamIterator::operator-> const): (testing::internal::ParamIterator::operator++): (testing::internal::ParamIterator::operator== const): (testing::internal::ParamIterator::operator!= const): (testing::internal::ParamGeneratorInterface::~ParamGeneratorInterface): (testing::internal::ParamGenerator::ParamGenerator): (testing::internal::ParamGenerator::operator=): (testing::internal::ParamGenerator::begin const): (testing::internal::ParamGenerator::end const): (testing::internal::RangeGenerator::RangeGenerator): (testing::internal::RangeGenerator::~RangeGenerator): (testing::internal::RangeGenerator::Begin const): (testing::internal::RangeGenerator::End const): (testing::internal::RangeGenerator::Iterator::Iterator): (testing::internal::RangeGenerator::Iterator::~Iterator): (testing::internal::RangeGenerator::Iterator::BaseGenerator const): (testing::internal::RangeGenerator::Iterator::Advance): (testing::internal::RangeGenerator::Iterator::Clone const): (testing::internal::RangeGenerator::Iterator::Current const): (testing::internal::RangeGenerator::Iterator::Equals const): (testing::internal::RangeGenerator::CalculateEndIndex): (testing::internal::ValuesInIteratorRangeGenerator::ValuesInIteratorRangeGenerator): (testing::internal::ValuesInIteratorRangeGenerator::~ValuesInIteratorRangeGenerator): (testing::internal::ValuesInIteratorRangeGenerator::Begin const): (testing::internal::ValuesInIteratorRangeGenerator::End const): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::Iterator): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::~Iterator): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::BaseGenerator const): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::Advance): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::Clone const): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::Current const): (testing::internal::ValuesInIteratorRangeGenerator::Iterator::Equals const): (testing::internal::DefaultParamName): (testing::internal::GetParamNameGen): (testing::internal::ParameterizedTestFactory::ParameterizedTestFactory): (testing::internal::ParameterizedTestFactory::CreateTest): (testing::internal::TestMetaFactoryBase::~TestMetaFactoryBase): (testing::internal::TestMetaFactory::TestMetaFactory): (testing::internal::TestMetaFactory::CreateTestFactory): (testing::internal::ParameterizedTestCaseInfoBase::~ParameterizedTestCaseInfoBase): (testing::internal::ParameterizedTestCaseInfoBase::ParameterizedTestCaseInfoBase): (testing::internal::ParameterizedTestCaseInfo::ParameterizedTestCaseInfo): (testing::internal::ParameterizedTestCaseInfo::GetTestCaseName const): (testing::internal::ParameterizedTestCaseInfo::GetTestCaseTypeId const): (testing::internal::ParameterizedTestCaseInfo::AddTestPattern): (testing::internal::ParameterizedTestCaseInfo::AddTestCaseInstantiation): (testing::internal::ParameterizedTestCaseInfo::RegisterTests): (testing::internal::ParameterizedTestCaseInfo::TestInfo::TestInfo): (testing::internal::ParameterizedTestCaseInfo::InstantiationInfo::InstantiationInfo): (testing::internal::ParameterizedTestCaseInfo::IsValidParamName): (testing::internal::ParameterizedTestCaseRegistry::ParameterizedTestCaseRegistry): (testing::internal::ParameterizedTestCaseRegistry::~ParameterizedTestCaseRegistry): (testing::internal::ParameterizedTestCaseRegistry::GetTestCasePatternHolder): (testing::internal::ParameterizedTestCaseRegistry::RegisterTests): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-port-arch.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-port.h: Added. (testing::internal::scoped_ptr::scoped_ptr): (testing::internal::scoped_ptr::~scoped_ptr): (testing::internal::scoped_ptr::operator* const): (testing::internal::scoped_ptr::operator-> const): (testing::internal::scoped_ptr::get const): (testing::internal::scoped_ptr::release): (testing::internal::scoped_ptr::reset): (testing::internal::scoped_ptr::swap): (testing::internal::LogToStderr): (testing::internal::FlushInfoLog): (testing::internal::move): (testing::internal::ImplicitCast_): (testing::internal::DownCast_): (testing::internal::CheckedDowncastToActualType): (testing::internal::SleepMilliseconds): (testing::internal::Notification::Notification): (testing::internal::Notification::~Notification): (testing::internal::Notification::Notify): (testing::internal::Notification::WaitForNotification): (testing::internal::ThreadWithParamBase::~ThreadWithParamBase): (testing::internal::ThreadFuncWithCLinkage): (testing::internal::ThreadWithParam::ThreadWithParam): (testing::internal::ThreadWithParam::~ThreadWithParam): (testing::internal::ThreadWithParam::Join): (testing::internal::ThreadWithParam::Run): (testing::internal::GTestMutexLock::GTestMutexLock): (testing::internal::GTestMutexLock::~GTestMutexLock): (testing::internal::ThreadLocalValueHolderBase::~ThreadLocalValueHolderBase): (testing::internal::ThreadLocalBase::ThreadLocalBase): (testing::internal::ThreadLocalBase::~ThreadLocalBase): (testing::internal::ThreadWithParam::RunnableImpl::RunnableImpl): (testing::internal::ThreadWithParam::RunnableImpl::~RunnableImpl): (testing::internal::ThreadWithParam::RunnableImpl::Run): (testing::internal::ThreadLocal::ThreadLocal): (testing::internal::ThreadLocal::~ThreadLocal): (testing::internal::ThreadLocal::pointer): (testing::internal::ThreadLocal::pointer const): (testing::internal::ThreadLocal::get const): (testing::internal::ThreadLocal::set): (testing::internal::ThreadLocal::ValueHolder::ValueHolder): (testing::internal::ThreadLocal::ValueHolder::pointer): (testing::internal::ThreadLocal::GetOrCreateValue const): (testing::internal::ThreadLocal::NewValueForCurrentThread const): (testing::internal::ThreadLocal::ValueHolderFactory::ValueHolderFactory): (testing::internal::ThreadLocal::ValueHolderFactory::~ValueHolderFactory): (testing::internal::ThreadLocal::DefaultValueHolderFactory::DefaultValueHolderFactory): (testing::internal::ThreadLocal::DefaultValueHolderFactory::MakeNewHolder const): (testing::internal::ThreadLocal::InstanceValueHolderFactory::InstanceValueHolderFactory): (testing::internal::ThreadLocal::InstanceValueHolderFactory::MakeNewHolder const): (testing::internal::MutexBase::Lock): (testing::internal::MutexBase::Unlock): (testing::internal::MutexBase::AssertHeld const): (testing::internal::Mutex::Mutex): (testing::internal::Mutex::~Mutex): (testing::internal::DeleteThreadLocalValue): (testing::internal::ThreadLocal::CreateKey): (testing::internal::Mutex::Lock): (testing::internal::Mutex::Unlock): (testing::internal::Mutex::AssertHeld const): (testing::internal::IsAlpha): (testing::internal::IsAlNum): (testing::internal::IsDigit): (testing::internal::IsLower): (testing::internal::IsSpace): (testing::internal::IsUpper): (testing::internal::IsXDigit): (testing::internal::ToLower): (testing::internal::ToUpper): (testing::internal::StripTrailingSpaces): (testing::internal::posix::IsATTY): (testing::internal::posix::StrCaseCmp): (testing::internal::posix::StrDup): (testing::internal::posix::FileNo): (testing::internal::posix::Stat): (testing::internal::posix::RmDir): (testing::internal::posix::IsDir): (testing::internal::posix::StrNCpy): (testing::internal::posix::ChDir): (testing::internal::posix::FOpen): (testing::internal::posix::FReopen): (testing::internal::posix::FDOpen): (testing::internal::posix::FClose): (testing::internal::posix::Read): (testing::internal::posix::Write): (testing::internal::posix::Close): (testing::internal::posix::StrError): (testing::internal::posix::GetEnv): (testing::internal::posix::Abort): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-string.h: Added. * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-type-util.h: Added. (testing::internal::GetTypeName): * StitchMarker/folly/gtest/googletest/include/gtest/internal/gtest-type-util.h.pump: Added. * StitchMarker/folly/gtest/googletest/src/gtest-filepath.cc: Added. * StitchMarker/folly/gtest/googletest/src/gtest-internal-inl.h: Added. (testing::internal::GetRandomSeedFromFlag): (testing::internal::GetNextRandomSeed): (testing::internal::GTestFlagSaver::GTestFlagSaver): (testing::internal::GTestFlagSaver::~GTestFlagSaver): (testing::internal::CountIf): (testing::internal::ForEach): (testing::internal::GetElementOr): (testing::internal::ShuffleRange): (testing::internal::Shuffle): (testing::internal::Delete): (testing::internal::TestPropertyKeyIs::TestPropertyKeyIs): (testing::internal::TestPropertyKeyIs::operator() const): (testing::internal::OsStackTraceGetterInterface::OsStackTraceGetterInterface): (testing::internal::OsStackTraceGetterInterface::~OsStackTraceGetterInterface): (testing::internal::OsStackTraceGetter::OsStackTraceGetter): (testing::internal::GetUnitTestImpl): (testing::internal::TestResultAccessor::RecordProperty): (testing::internal::TestResultAccessor::ClearTestPartResults): (testing::internal::TestResultAccessor::test_part_results): * StitchMarker/folly/gtest/googletest/src/gtest-port.cc: Added. * StitchMarker/folly/gtest/googletest/src/gtest-printers.cc: Added. * StitchMarker/folly/gtest/googletest/src/gtest-test-part.cc: Added. * StitchMarker/folly/gtest/googletest/src/gtest.cc: Added. * StitchMarker/folly/gtest/googletest/src/gtest_main.cc: Added. * StitchMarker/ogiroux.sh: Added. Build script. * StitchMarker/ogiroux/include/details/config.hpp: Added. * StitchMarker/ogiroux/include/semaphore: Added. * StitchMarker/ogiroux/lib/semaphore.cpp: Added. (cuda::std::experimental::v1::details::__semaphore_fixalign): (cuda::std::experimental::v1::details::__semaphore_readint): (cuda::std::experimental::v1::details::__semaphore_wait): (cuda::std::experimental::v1::details::__semaphore_wait_timed): (cuda::std::experimental::v1::details::__semaphore_wake_one): (cuda::std::experimental::v1::details::__semaphore_wake_all): * StitchMarker/ogiroux/test.cpp: Added. (main): * StitchMarker/ogiroux/test.hpp: Added. * StitchMarker/ogiroux/test_defs.cpp: Added. (start_gpu_threads): (stop_gpu_threads): (max_gpu_threads): (get_cpu_time): (user_time_consumed): (system_time_consumed): (set_affinity): (unfair_lock::lock): (unfair_lock::unlock): (make64): (work_item_struct::do_it): (allocate_work_item): (free_work_item): (report): (run_core): (run_scenario): (allocate_heap): (free_heap): (run_scenario_singlethreaded): (run_scenario_uncontended): (run_scenario_shortest): (run_scenario_short): (run_scenario_long): (run_scenario_phaser): (run_scenarios_inner): (run_barrier_scenarios): (run_mutex_scenarios): (run_and_report_scenarios): (null_mutex::lock): (null_mutex::unlock): (run_calibration): (print_headers): * StitchMarker/wtf.sh: Added. Build script. * StitchMarker/wtf/ASCIICType.h: Added. (WTF::isASCII): (WTF::isASCIILower): (WTF::toASCIILowerUnchecked): (WTF::isASCIIAlpha): (WTF::isASCIIDigit): (WTF::isASCIIAlphanumeric): (WTF::isASCIIHexDigit): (WTF::isASCIIBinaryDigit): (WTF::isASCIIOctalDigit): (WTF::isASCIIPrintable): (WTF::isASCIISpace): (WTF::isASCIIUpper): (WTF::toASCIILower): (WTF::toASCIIUpper): (WTF::toASCIIHexValue): (WTF::lowerNibbleToASCIIHexDigit): (WTF::upperNibbleToASCIIHexDigit): (WTF::lowerNibbleToLowercaseASCIIHexDigit): (WTF::upperNibbleToLowercaseASCIIHexDigit): (WTF::isASCIIAlphaCaselessEqual): * StitchMarker/wtf/Assertions.cpp: Added. (WTFCrashWithInfo): (WTF::resetAccumulatedLogs): (WTF::getAndResetAccumulatedLogs): * StitchMarker/wtf/Assertions.h: Added. (UNREACHABLE_FOR_PLATFORM): (WTF::isIntegralType): (compilerFenceForCrash): * StitchMarker/wtf/Atomics.h: Added. (WTF::hasFence): (WTF::Atomic::load const): (WTF::Atomic::loadRelaxed const): (WTF::Atomic::loadFullyFenced const): (WTF::Atomic::store): (WTF::Atomic::storeRelaxed): (WTF::Atomic::storeFullyFenced): (WTF::Atomic::compareExchangeWeak): (WTF::Atomic::compareExchangeWeakRelaxed): (WTF::Atomic::compareExchangeStrong): (WTF::Atomic::exchangeAdd): (WTF::Atomic::exchangeAnd): (WTF::Atomic::exchangeOr): (WTF::Atomic::exchangeSub): (WTF::Atomic::exchangeXor): (WTF::Atomic::exchange): (WTF::Atomic::transaction): (WTF::Atomic::transactionRelaxed): (WTF::Atomic::Atomic): (WTF::atomicLoad): (WTF::atomicLoadFullyFenced): (WTF::atomicStore): (WTF::atomicStoreFullyFenced): (WTF::atomicCompareExchangeWeak): (WTF::atomicCompareExchangeWeakRelaxed): (WTF::atomicCompareExchangeStrong): (WTF::atomicExchangeAdd): (WTF::atomicExchangeAnd): (WTF::atomicExchangeOr): (WTF::atomicExchangeSub): (WTF::atomicExchangeXor): (WTF::atomicExchange): (WTF::compilerFence): (WTF::arm_dmb): (WTF::arm_dmb_st): (WTF::arm_isb): (WTF::loadLoadFence): (WTF::loadStoreFence): (WTF::storeLoadFence): (WTF::storeStoreFence): (WTF::memoryBarrierAfterLock): (WTF::memoryBarrierBeforeUnlock): (WTF::crossModifyingCodeFence): (WTF::x86_ortop): (WTF::x86_cpuid): (WTF::nullDependency): (WTF::dependency): (WTF::DependencyWith::DependencyWith): (WTF::dependencyWith): (WTF::consume): (WTF::ensurePointer): * StitchMarker/wtf/CheckedArithmetic.h: Added. (WTF::CrashOnOverflow::overflowed): (WTF::CrashOnOverflow::clearOverflow): (WTF::CrashOnOverflow::crash): (WTF::CrashOnOverflow::hasOverflowed const): (WTF::RecordOverflow::RecordOverflow): (WTF::RecordOverflow::overflowed): (WTF::RecordOverflow::clearOverflow): (WTF::RecordOverflow::crash): (WTF::RecordOverflow::hasOverflowed const): (WTF::isInBounds): (WTF::convertSafely): (WTF::safeAdd): (WTF::safeSub): (WTF::safeMultiply): (WTF::safeEquals): (WTF::Checked::Checked): (WTF::Checked::operator=): (WTF::Checked::operator++): (WTF::Checked::operator--): (WTF::Checked::operator! const): (WTF::Checked::operator bool const): (WTF::Checked::unsafeGet const): (WTF::Checked::operator+=): (WTF::Checked::operator-=): (WTF::Checked::operator*=): (WTF::Checked::operator==): (WTF::Checked::operator!=): (WTF::Checked::operator< const): (WTF::Checked::operator<= const): (WTF::Checked::operator> const): (WTF::Checked::operator>= const): (WTF::operator+): (WTF::operator-): (WTF::operator*): (WTF::checkedSum): (WTF::sumOverflows): (WTF::differenceOverflows): (WTF::checkedProduct): (WTF::productOverflows): * StitchMarker/wtf/ClockType.cpp: Added. (WTF::printInternal): * StitchMarker/wtf/ClockType.h: Added. * StitchMarker/wtf/CommaPrinter.h: Added. (WTF::CommaPrinter::CommaPrinter): (WTF::CommaPrinter::dump const): (WTF::CommaPrinter::didPrint const): * StitchMarker/wtf/Compiler.h: Added. * StitchMarker/wtf/Condition.h: Added. (WTF::ConditionBase::waitUntil): (WTF::ConditionBase::waitFor): (WTF::ConditionBase::wait): (WTF::ConditionBase::notifyOne): (WTF::ConditionBase::notifyAll): (WTF::Condition::Condition): * StitchMarker/wtf/CryptographicallyRandomNumber.h: Added. * StitchMarker/wtf/CurrentTime.cpp: Added. (WTF::lowResUTCTime): (WTF::highResUpTime): (WTF::qpcAvailable): (WTF::currentTime): (WTF::monotonicallyIncreasingTime): (WTF::currentCPUTime): (WTF::sleep): * StitchMarker/wtf/CurrentTime.h: Added. (WTF::currentTimeMS): (WTF::monotonicallyIncreasingTimeMS): (WTF::sleepMS): * StitchMarker/wtf/DataLog.cpp: Added. (WTF::initializeLogFileOnce): (WTF::initializeLogFile): (WTF::setDataFile): (WTF::dataFile): (WTF::dataLogFV): (WTF::dataLogF): (WTF::dataLogFString): * StitchMarker/wtf/DataLog.h: Added. (WTF::dataLog): (WTF::dataLogLn): (WTF::dataLogIf): (WTF::dataLogLnIf): * StitchMarker/wtf/DateMath.cpp: Added. (WTF::startsWithLettersIgnoringASCIICase): (WTF::getLocalTime): (WTF::isLeapYear): (WTF::daysInYear): (WTF::daysFrom1970ToYear): (WTF::msToDays): (WTF::appendTwoDigitNumber): (WTF::msToYear): (WTF::dayInYear): (WTF::msToMilliseconds): (WTF::msToMinutes): (WTF::msToHours): (WTF::monthFromDayInYear): (WTF::checkMonth): (WTF::dayInMonthFromDayInYear): (WTF::dateToDaysFrom1970): (WTF::maximumYearForDST): (WTF::minimumYearForDST): (WTF::equivalentYearForDST): (WTF::timeZoneInformationForYearFunction): (WTF::calculateUTCOffset): (WTF::UnixTimeToFileTime): (WTF::calculateDSTOffset): (WTF::calculateLocalTimeOffset): (WTF::initializeDates): (WTF::ymdhmsToSeconds): (WTF::skipSpacesAndComments): (WTF::findMonth): (WTF::parseInt): (WTF::parseLong): (WTF::parseES5DatePortion): (WTF::parseES5TimePortion): (WTF::parseES5DateFromNullTerminatedCharacters): (WTF::parseDateFromNullTerminatedCharacters): (WTF::timeClip): (WTF::makeRFC2822DateString): * StitchMarker/wtf/DateMath.h: Added. (WTF::LocalTimeOffset::LocalTimeOffset): (WTF::LocalTimeOffset::operator==): (WTF::LocalTimeOffset::operator!=): (WTF::jsCurrentTime): * StitchMarker/wtf/Deque.h: Added. (WTF::Deque::size const): (WTF::Deque::isEmpty const): (WTF::Deque::begin): (WTF::Deque::end): (WTF::Deque::begin const): (WTF::Deque::end const): (WTF::Deque::rbegin): (WTF::Deque::rend): (WTF::Deque::rbegin const): (WTF::Deque::rend const): (WTF::Deque::first): (WTF::Deque::first const): (WTF::Deque::last): (WTF::Deque::last const): (WTF::Deque::append): (WTF::DequeIteratorBase::assign): (WTF::DequeIterator::DequeIterator): (WTF::DequeIterator::operator=): (WTF::DequeIterator::operator* const): (WTF::DequeIterator::operator-> const): (WTF::DequeIterator::operator== const): (WTF::DequeIterator::operator!= const): (WTF::DequeIterator::operator++): (WTF::DequeIterator::operator--): (WTF::DequeConstIterator::DequeConstIterator): (WTF::DequeConstIterator::operator=): (WTF::DequeConstIterator::operator* const): (WTF::DequeConstIterator::operator-> const): (WTF::DequeConstIterator::operator== const): (WTF::DequeConstIterator::operator!= const): (WTF::DequeConstIterator::operator++): (WTF::DequeConstIterator::operator--): (WTF::inlineCapacity>::checkValidity const): (WTF::inlineCapacity>::checkIndexValidity const): (WTF::inlineCapacity>::invalidateIterators): (WTF::inlineCapacity>::Deque): (WTF::=): (WTF::inlineCapacity>::destroyAll): (WTF::inlineCapacity>::~Deque): (WTF::inlineCapacity>::swap): (WTF::inlineCapacity>::clear): (WTF::inlineCapacity>::findIf): (WTF::inlineCapacity>::expandCapacityIfNeeded): (WTF::inlineCapacity>::expandCapacity): (WTF::inlineCapacity>::takeFirst): (WTF::inlineCapacity>::takeLast): (WTF::inlineCapacity>::append): (WTF::inlineCapacity>::prepend): (WTF::inlineCapacity>::removeFirst): (WTF::inlineCapacity>::removeLast): (WTF::inlineCapacity>::remove): (WTF::inlineCapacity>::removeAllMatching): (WTF::inlineCapacity>::appendAndBubble): (WTF::inlineCapacity>::addToIteratorsList): (WTF::inlineCapacity>::removeFromIteratorsList): (WTF::inlineCapacity>::DequeIteratorBase): (WTF::inlineCapacity>::~DequeIteratorBase): (WTF::inlineCapacity>::isEqual const): (WTF::inlineCapacity>::increment): (WTF::inlineCapacity>::decrement): (WTF::inlineCapacity>::after const): (WTF::inlineCapacity>::before const): * StitchMarker/wtf/Expected.h: Added. (WTF::UnexpectedType::UnexpectedType): (WTF::UnexpectedType::value const): (WTF::UnexpectedType::value): (WTF::operator==): (WTF::operator!=): (WTF::operator<): (WTF::operator>): (WTF::operator<=): (WTF::operator>=): (WTF::makeUnexpected): (WTF::ExpectedDetail::Throw): (WTF::ExpectedDetail::destroy): (WTF::ExpectedDetail::std::is_trivially_destructible::value): (WTF::ExpectedDetail::ConstexprBase::ConstexprBase): (WTF::ExpectedDetail::Base::Base): (WTF::ExpectedDetail::Base::~Base): (WTF::Expected::Expected): (WTF::Expected::operator=): (WTF::Expected::swap): (WTF::Expected::operator-> const): (WTF::Expected::operator->): (WTF::Expected::operator* const): (WTF::Expected::operator*): (WTF::Expected::operator bool const): (WTF::Expected::hasValue const): (WTF::Expected::value const): (WTF::Expected::value): (WTF::Expected::error const): (WTF::Expected::error): (WTF::Expected::getUnexpected const): (WTF::Expected::valueOr const): (WTF::Expected::valueOr): (WTF::swap): (WTF::makeExpected): (WTF::makeExpectedFromError): * StitchMarker/wtf/ExportMacros.h: Added. * StitchMarker/wtf/FastMalloc.cpp: Added. (WTF::fastSetMaxSingleAllocationSize): (WTF::fastZeroedMalloc): (WTF::fastStrDup): (WTF::tryFastZeroedMalloc): (WTF::isFastMallocEnabled): (WTF::fastMallocGoodSize): (WTF::fastAlignedMalloc): (WTF::tryFastAlignedMalloc): (WTF::fastAlignedFree): (WTF::tryFastMalloc): (WTF::fastMalloc): (WTF::tryFastCalloc): (WTF::fastCalloc): (WTF::fastFree): (WTF::fastRealloc): (WTF::releaseFastMallocFreeMemory): (WTF::releaseFastMallocFreeMemoryForThisThread): (WTF::fastMallocStatistics): (WTF::fastMallocSize): * StitchMarker/wtf/FastMalloc.h: Added. (WTF::TryMallocReturnValue::TryMallocReturnValue): (WTF::TryMallocReturnValue::~TryMallocReturnValue): (WTF::TryMallocReturnValue::getValue): (WTF::FastAllocator::FastAllocator): (WTF::FastAllocator::allocate): (WTF::FastAllocator::deallocate): (WTF::operator==): (WTF::operator!=): * StitchMarker/wtf/FastTLS.h: Added. (WTF::fastTLSOffsetForKey): * StitchMarker/wtf/FeatureDefines.h: Added. * StitchMarker/wtf/FilePrintStream.cpp: Added. (WTF::FilePrintStream::FilePrintStream): (WTF::FilePrintStream::~FilePrintStream): (WTF::FilePrintStream::open): (WTF::FilePrintStream::vprintf): (WTF::FilePrintStream::flush): * StitchMarker/wtf/FilePrintStream.h: Added. (WTF::FilePrintStream::file): * StitchMarker/wtf/Forward.h: Added. * StitchMarker/wtf/Function.h: Added. (WTF::Function const): (WTF::HashTableConstKeysIterator::operator++): (WTF::HashTableConstValuesIterator::HashTableConstValuesIterator): (WTF::HashTableConstValuesIterator::get const): (WTF::HashTableConstValuesIterator::operator* const): (WTF::HashTableConstValuesIterator::operator-> const): (WTF::HashTableConstValuesIterator::operator++): (WTF::HashTableKeysIterator::HashTableKeysIterator): (WTF::HashTableKeysIterator::get const): (WTF::HashTableKeysIterator::operator* const): (WTF::HashTableKeysIterator::operator-> const): (WTF::HashTableKeysIterator::operator++): (WTF::HashTableKeysIterator::operator HashTableConstKeysIterator): (WTF::HashTableValuesIterator::HashTableValuesIterator): (WTF::HashTableValuesIterator::get const): (WTF::HashTableValuesIterator::operator* const): (WTF::HashTableValuesIterator::operator-> const): (WTF::HashTableValuesIterator::operator++): (WTF::HashTableValuesIterator::operator HashTableConstValuesIterator): (WTF::operator==): (WTF::operator!=): * StitchMarker/wtf/HashMap.h: Added. (WTF::KeyValuePairKeyExtractor::extract): (WTF::HashMapTranslator::hash): (WTF::HashMapTranslator::equal): (WTF::HashMapTranslator::translate): (WTF::HashMapEnsureTranslator::hash): (WTF::HashMapEnsureTranslator::equal): (WTF::HashMapEnsureTranslator::translate): (WTF::HashMapTranslatorAdapter::hash): (WTF::HashMapTranslatorAdapter::equal): (WTF::HashMapTranslatorAdapter::translate): (WTF::X>::swap): (WTF::X>::size const): (WTF::X>::capacity const): (WTF::X>::isEmpty const): (WTF::X>::begin): (WTF::X>::end): (WTF::X>::begin const): (WTF::X>::end const): (WTF::X>::find): (WTF::X>::find const): (WTF::X>::contains const): (WTF::X>::get const): (WTF::MappedTraitsArg>::inlineSet): (WTF::MappedTraitsArg>::inlineAdd): (WTF::MappedTraitsArg>::inlineEnsure): (WTF::MappedTraitsArg>::set): (WTF::MappedTraitsArg>::add): (WTF::MappedTraitsArg>::fastAdd): (WTF::MappedTraitsArg>::ensure): (WTF::MappedTraits>::get const): (WTF::MappedTraits>::fastGet const): (WTF::X>::remove): (WTF::X>::removeIf): (WTF::X>::clear): (WTF::MappedTraits>::take): (WTF::X>::inlineGet const): (WTF::X>::take): (WTF::X>::checkConsistency const): (WTF::X>::isValidKey): (WTF::operator==): (WTF::operator!=): (WTF::copyToVector): (WTF::copyKeysToVector): (WTF::copyValuesToVector): * StitchMarker/wtf/HashSet.h: Added. (WTF::IdentityExtractor::extract): (WTF::HashSetTranslator::hash): (WTF::HashSetTranslator::equal): (WTF::HashSetTranslator::translate): (WTF::HashSetTranslatorAdapter::hash): (WTF::HashSetTranslatorAdapter::equal): (WTF::HashSetTranslatorAdapter::translate): (WTF::V>::swap): (WTF::V>::size const): (WTF::V>::capacity const): (WTF::V>::isEmpty const): (WTF::V>::begin const): (WTF::V>::end const): (WTF::V>::find const): (WTF::V>::contains const): (WTF::Traits>::find const): (WTF::Traits>::contains const): (WTF::V>::add): (WTF::V>::addVoid): (WTF::Traits>::add): (WTF::V>::remove): (WTF::V>::removeIf): (WTF::V>::clear): (WTF::V>::take): (WTF::V>::takeAny): (WTF::Traits>::remove): (WTF::Traits>::take): (WTF::V>::isValidValue): (WTF::copyToVector): (WTF::= const): * StitchMarker/wtf/HashTable.h: Added. (WTF::addIterator): (WTF::removeIterator): (WTF::HashTableConstIterator::skipEmptyBuckets): (WTF::HashTableConstIterator::HashTableConstIterator): (WTF::HashTableConstIterator::~HashTableConstIterator): (WTF::HashTableConstIterator::operator=): (WTF::HashTableConstIterator::get const): (WTF::HashTableConstIterator::operator* const): (WTF::HashTableConstIterator::operator-> const): (WTF::HashTableConstIterator::operator++): (WTF::HashTableConstIterator::operator== const): (WTF::HashTableConstIterator::operator!= const): (WTF::HashTableConstIterator::checkValidity const): (WTF::HashTableIterator::HashTableIterator): (WTF::HashTableIterator::get const): (WTF::HashTableIterator::operator* const): (WTF::HashTableIterator::operator-> const): (WTF::HashTableIterator::operator++): (WTF::HashTableIterator::operator== const): (WTF::HashTableIterator::operator!= const): (WTF::HashTableIterator::operator const_iterator const): (WTF::IdentityHashTranslator::hash): (WTF::IdentityHashTranslator::equal): (WTF::IdentityHashTranslator::translate): (WTF::HashTableAddResult::HashTableAddResult): (WTF::HashTableAddResult::operator bool const): (WTF::HashTable::Stats::Stats): (WTF::HashTable::Stats::recordCollisionAtCount): (WTF::HashTable::Stats::dumpStats): (WTF::HashTable::~HashTable): (WTF::HashTable::begin): (WTF::HashTable::end): (WTF::HashTable::begin const): (WTF::HashTable::end const): (WTF::HashTable::size const): (WTF::HashTable::capacity const): (WTF::HashTable::isEmpty const): (WTF::HashTable::add): (WTF::HashTable::find): (WTF::HashTable::find const): (WTF::HashTable::contains const): (WTF::HashTable::isEmptyBucket): (WTF::HashTable::isDeletedBucket): (WTF::HashTable::isEmptyOrDeletedBucket): (WTF::HashTable::lookup): (WTF::HashTable::checkTableConsistency): (WTF::HashTable::internalCheckTableConsistency const): (WTF::HashTable::internalCheckTableConsistencyExceptSize const): (WTF::HashTable::internalCheckTableConsistencyExceptSize): (WTF::HashTable::internalCheckTableConsistency): (WTF::HashTable::lookupForWriting): (WTF::HashTable::shouldExpand const): (WTF::HashTable::mustRehashInPlace const): (WTF::HashTable::shouldShrink const): (WTF::HashTable::shrink): (WTF::HashTable::deleteBucket): (WTF::HashTable::makeLookupResult): (WTF::HashTable::makeIterator): (WTF::HashTable::makeConstIterator const): (WTF::HashTable::makeKnownGoodIterator): (WTF::HashTable::makeKnownGoodConstIterator const): (WTF::HashTable::checkTableConsistencyExceptSize): (WTF::HashTable::invalidateIterators): (WTF::KeyTraits>::HashTable): (WTF::doubleHash): (WTF::KeyTraits>::checkKey): (WTF::KeyTraits>::lookup): (WTF::KeyTraits>::inlineLookup): (WTF::KeyTraits>::lookupForWriting): (WTF::KeyTraits>::fullLookupForWriting): (WTF::KeyTraits>::addUniqueForInitialization): (WTF::HashTableBucketInitializer::initialize): (WTF::HashTableBucketInitializer::initialize): (WTF::KeyTraits>::initializeBucket): (WTF::KeyTraits>::add): (WTF::KeyTraits>::addPassingHashCode): (WTF::KeyTraits>::reinsert): (WTF::KeyTraits>::find): (WTF::KeyTraits>::find const): (WTF::KeyTraits>::contains const): (WTF::KeyTraits>::removeAndInvalidateWithoutEntryConsistencyCheck): (WTF::KeyTraits>::removeAndInvalidate): (WTF::KeyTraits>::remove): (WTF::KeyTraits>::removeWithoutEntryConsistencyCheck): (WTF::KeyTraits>::removeIf): (WTF::KeyTraits>::allocateTable): (WTF::KeyTraits>::deallocateTable): (WTF::KeyTraits>::expand): (WTF::KeyTraits>::rehash): (WTF::KeyTraits>::clear): (WTF::KeyTraits>::swap): (WTF::=): (WTF::KeyTraits>::checkTableConsistency const): (WTF::KeyTraits>::checkTableConsistencyExceptSize const): (WTF::KeyTraits>::invalidateIterators): (WTF::HashTableConstIteratorAdapter::HashTableConstIteratorAdapter): (WTF::HashTableConstIteratorAdapter::get const): (WTF::HashTableConstIteratorAdapter::operator* const): (WTF::HashTableConstIteratorAdapter::operator-> const): (WTF::HashTableConstIteratorAdapter::operator++): (WTF::HashTableIteratorAdapter::HashTableIteratorAdapter): (WTF::HashTableIteratorAdapter::get const): (WTF::HashTableIteratorAdapter::operator* const): (WTF::HashTableIteratorAdapter::operator-> const): (WTF::HashTableIteratorAdapter::operator++): (WTF::HashTableIteratorAdapter::operator HashTableConstIteratorAdapter): (WTF::operator==): (WTF::operator!=): * StitchMarker/wtf/HashTraits.h: Added. (WTF::GenericHashTraits::emptyValue): (WTF::GenericHashTraits::assignToEmpty): (WTF::GenericHashTraits::peek): (WTF::GenericHashTraits::take): (WTF::FloatHashTraits::emptyValue): (WTF::FloatHashTraits::constructDeletedValue): (WTF::FloatHashTraits::isDeletedValue): (WTF::UnsignedWithZeroKeyHashTraits::emptyValue): (WTF::UnsignedWithZeroKeyHashTraits::constructDeletedValue): (WTF::UnsignedWithZeroKeyHashTraits::isDeletedValue): (WTF::SignedWithZeroKeyHashTraits::emptyValue): (WTF::SignedWithZeroKeyHashTraits::constructDeletedValue): (WTF::SignedWithZeroKeyHashTraits::isDeletedValue): (WTF::StrongEnumHashTraits::emptyValue): (WTF::StrongEnumHashTraits::constructDeletedValue): (WTF::StrongEnumHashTraits::isDeletedValue): (WTF::HashTraits>::emptyValue): (WTF::HashTraits>::peek): (WTF::HashTraits>::customDeleteBucket): (WTF::HashTraits>::emptyValue): (WTF::HashTraits>::isEmptyValue): (WTF::HashTraits>::assignToEmpty): (WTF::HashTraits>::peek): (WTF::HashTraits>::take): (WTF::isHashTraitsEmptyValue): (WTF::hashTraitsDeleteBucket): (WTF::PairHashTraits::emptyValue): (WTF::PairHashTraits::constructDeletedValue): (WTF::PairHashTraits::isDeletedValue): (WTF::TupleHashTraits::allTrue): (WTF::TupleHashTraits::emptyValue): (WTF::TupleHashTraits::constructDeletedValue): (WTF::TupleHashTraits::isDeletedValue): (WTF::KeyValuePair::KeyValuePair): (WTF::KeyValuePairHashTraits::emptyValue): (WTF::KeyValuePairHashTraits::constructDeletedValue): (WTF::KeyValuePairHashTraits::isDeletedValue): (WTF::KeyValuePairHashTraits::customDeleteBucket): (WTF::NullableHashTraits::emptyValue): (WTF::CustomHashTraits::constructDeletedValue): (WTF::CustomHashTraits::isDeletedValue): (WTF::CustomHashTraits::emptyValue): (WTF::CustomHashTraits::isEmptyValue): * StitchMarker/wtf/Hasher.h: Added. (WTF::StringHasher::StringHasher): (WTF::StringHasher::addCharactersAssumingAligned): (WTF::StringHasher::addCharacter): (WTF::StringHasher::addCharacters): (WTF::StringHasher::Converter): (WTF::StringHasher::hashWithTop8BitsMasked const): (WTF::StringHasher::hash const): (WTF::StringHasher::computeHashAndMaskTop8Bits): (WTF::StringHasher::computeHash): (WTF::StringHasher::hashMemory): (WTF::StringHasher::finalize): (WTF::StringHasher::finalizeAndMaskTop8Bits): (WTF::StringHasher::computeLiteralHash): (WTF::StringHasher::computeLiteralHashAndMaskTop8Bits): (WTF::StringHasher::defaultConverter): (WTF::StringHasher::avalancheBits3): (WTF::StringHasher::avalancheBits2): (WTF::StringHasher::avalancheBits1): (WTF::StringHasher::avalancheBits0): (WTF::StringHasher::avalancheBits): (WTF::StringHasher::avoidZero): (WTF::StringHasher::processPendingCharacter const): (WTF::StringHasher::calculateWithRemainingLastCharacter1): (WTF::StringHasher::calculateWithRemainingLastCharacter0): (WTF::StringHasher::calculateWithRemainingLastCharacter): (WTF::StringHasher::calculate1): (WTF::StringHasher::calculate0): (WTF::StringHasher::calculate): (WTF::StringHasher::computeLiteralHashImpl): (WTF::IntegerHasher::add): (WTF::IntegerHasher::hash const): * StitchMarker/wtf/HexNumber.h: Added. (WTF::Internal::hexDigitsForMode): (WTF::appendByteAsHex): (WTF::placeByteAsHexCompressIfPossible): (WTF::placeByteAsHex): (WTF::appendUnsignedAsHex): (WTF::appendUnsigned64AsHex): (WTF::appendUnsignedAsHexFixedSize): * StitchMarker/wtf/IteratorRange.h: Added. (WTF::IteratorRange::IteratorRange): (WTF::IteratorRange::begin const): (WTF::IteratorRange::end const): (WTF::makeIteratorRange): * StitchMarker/wtf/ListHashSet.h: Added. (WTF::ListHashSet::begin): (WTF::ListHashSet::end): (WTF::ListHashSet::begin const): (WTF::ListHashSet::end const): (WTF::ListHashSet::rbegin): (WTF::ListHashSet::rend): (WTF::ListHashSet::rbegin const): (WTF::ListHashSet::rend const): (WTF::ListHashSetNode::ListHashSetNode): (WTF::ListHashSetNodeHashFunctions::hash): (WTF::ListHashSetNodeHashFunctions::equal): (WTF::ListHashSetIterator::ListHashSetIterator): (WTF::ListHashSetIterator::get const): (WTF::ListHashSetIterator::operator* const): (WTF::ListHashSetIterator::operator-> const): (WTF::ListHashSetIterator::operator++): (WTF::ListHashSetIterator::operator--): (WTF::ListHashSetIterator::operator== const): (WTF::ListHashSetIterator::operator!= const): (WTF::ListHashSetIterator::operator const_iterator const): (WTF::ListHashSetIterator::node): (WTF::ListHashSetConstIterator::ListHashSetConstIterator): (WTF::ListHashSetConstIterator::get const): (WTF::ListHashSetConstIterator::operator* const): (WTF::ListHashSetConstIterator::operator-> const): (WTF::ListHashSetConstIterator::operator++): (WTF::ListHashSetConstIterator::operator--): (WTF::ListHashSetConstIterator::operator== const): (WTF::ListHashSetConstIterator::operator!= const): (WTF::ListHashSetConstIterator::node): (WTF::ListHashSetTranslator::hash): (WTF::ListHashSetTranslator::equal): (WTF::ListHashSetTranslator::translate): (WTF::U>::ListHashSet): (WTF::=): (WTF::U>::swap): (WTF::U>::~ListHashSet): (WTF::U>::size const): (WTF::U>::capacity const): (WTF::U>::isEmpty const): (WTF::U>::first): (WTF::U>::removeFirst): (WTF::U>::takeFirst): (WTF::U>::first const): (WTF::U>::last): (WTF::U>::last const): (WTF::U>::removeLast): (WTF::U>::takeLast): (WTF::U>::find): (WTF::U>::find const): (WTF::ListHashSetTranslatorAdapter::hash): (WTF::ListHashSetTranslatorAdapter::equal): (WTF::U>::contains const): (WTF::U>::add): (WTF::U>::appendOrMoveToLast): (WTF::U>::prependOrMoveToFirst): (WTF::U>::insertBefore): (WTF::U>::remove): (WTF::U>::clear): (WTF::U>::unlink): (WTF::U>::unlinkAndDelete): (WTF::U>::appendNode): (WTF::U>::prependNode): (WTF::U>::insertNodeBefore): (WTF::U>::deleteAllNodes): (WTF::U>::makeIterator): (WTF::U>::makeConstIterator const): * StitchMarker/wtf/Lock.cpp: Added. (WTF::LockBase::lockSlow): (WTF::LockBase::unlockSlow): (WTF::LockBase::unlockFairlySlow): (WTF::LockBase::safepointSlow): * StitchMarker/wtf/Lock.h: Added. (WTF::LockBase::lock): (WTF::LockBase::tryLock): (WTF::LockBase::try_lock): (WTF::LockBase::unlock): (WTF::LockBase::unlockFairly): (WTF::LockBase::safepoint): (WTF::LockBase::isHeld const): (WTF::LockBase::isLocked const): (WTF::LockBase::isFullyReset const): (WTF::Lock::Lock): * StitchMarker/wtf/LockAlgorithm.h: Added. (WTF::LockAlgorithm::lockFastAssumingZero): (WTF::LockAlgorithm::lockFast): (WTF::LockAlgorithm::lock): (WTF::LockAlgorithm::tryLock): (WTF::LockAlgorithm::unlockFastAssumingZero): (WTF::LockAlgorithm::unlockFast): (WTF::LockAlgorithm::unlock): (WTF::LockAlgorithm::unlockFairly): (WTF::LockAlgorithm::safepointFast): (WTF::LockAlgorithm::safepoint): (WTF::LockAlgorithm::isLocked): (WTF::LockAlgorithm::safepointSlow): * StitchMarker/wtf/LockAlgorithmInlines.h: Added. (WTF::hasParkedBit>::lockSlow): (WTF::hasParkedBit>::unlockSlow): * StitchMarker/wtf/LockedPrintStream.cpp: Added. (WTF::LockedPrintStream::LockedPrintStream): (WTF::LockedPrintStream::~LockedPrintStream): (WTF::LockedPrintStream::vprintf): (WTF::LockedPrintStream::flush): (WTF::LockedPrintStream::begin): (WTF::LockedPrintStream::end): * StitchMarker/wtf/LockedPrintStream.h: Added. * StitchMarker/wtf/Locker.h: Added. (WTF::AbstractLocker::AbstractLocker): (WTF::Locker::Locker): (WTF::Locker::~Locker): (WTF::Locker::tryLock): (WTF::Locker::operator bool const): (WTF::Locker::unlockEarly): (WTF::Locker::operator=): (WTF::Locker::lock): (WTF::holdLock): (WTF::tryHoldLock): * StitchMarker/wtf/LoggingAccumulator.h: Added. * StitchMarker/wtf/MainThread.cpp: Added. (WTF::functionQueue): (WTF::initializeMainThread): (WTF::isMainThread): (WTF::initializeMainThreadToProcessMainThread): (WTF::initializeWebThread): (WTF::canAccessThreadLocalDataForThread): (WTF::dispatchFunctionsFromMainThread): (WTF::callOnMainThread): (WTF::setMainThreadCallbacksPaused): (WTF::initializeGCThreads): (WTF::registerGCThread): (WTF::isMainThreadOrGCThread): (WTF::mayBeGCThread): * StitchMarker/wtf/MainThread.h: Added. (WTF::isWebThread): (WTF::isUIThread): * StitchMarker/wtf/MallocPtr.h: Added. (WTF::MallocPtr::MallocPtr): (WTF::MallocPtr::~MallocPtr): (WTF::MallocPtr::get const): (WTF::MallocPtr::operator! const): (WTF::MallocPtr::operator* const): (WTF::MallocPtr::operator-> const): (WTF::MallocPtr::operator=): (WTF::MallocPtr::swap): (WTF::MallocPtr::malloc): (WTF::MallocPtr::realloc): (WTF::adoptMallocPtr): * StitchMarker/wtf/MathExtras.h: Added. (std::isfinite): (std::signbit): (std::isinf): (wtf_atan2): (deg2rad): (rad2deg): (deg2grad): (grad2deg): (turn2deg): (deg2turn): (rad2grad): (grad2rad): (defaultMinimumForClamp): (defaultMaximumForClamp): (clampTo): (clampToInteger): (clampToUnsigned): (clampToFloat): (clampToPositiveInteger): (clampToAccepting64): (isWithinIntRange): (normalizedFloat): (hasOneBitSet): (hasZeroOrOneBitsSet): (hasTwoOrMoreBitsSet): (getLSBSet): (divideRoundedUp): (timesThreePlusOneDividedByTwo): (isNotZeroAndOrdered): (isZeroOrUnordered): (isGreaterThanNonZeroPowerOfTwo): (isLessThan): (isLessThanEqual): (isGreaterThan): (isGreaterThanEqual): (wtf_pow): (decomposeDouble): (doubleToInteger): (WTF::roundUpToPowerOfTwo): (WTF::fastLog2): (WTF::safeFPDivision): (WTF::areEssentiallyEqual): (WTF::nanPropagatingMin): (WTF::nanPropagatingMax): (WTF::isIntegral): (WTF::incrementWithSaturation): (WTF::leftShiftWithSaturation): (WTF::nonEmptyRangesOverlap): (WTF::rangesOverlap): * StitchMarker/wtf/MonotonicTime.cpp: Added. (WTF::MonotonicTime::now): (WTF::MonotonicTime::approximateWallTime const): (WTF::MonotonicTime::dump const): * StitchMarker/wtf/MonotonicTime.h: Added. (WTF::MonotonicTime::MonotonicTime): (WTF::MonotonicTime::fromRawSeconds): (WTF::MonotonicTime::infinity): (WTF::MonotonicTime::nan): (WTF::MonotonicTime::secondsSinceEpoch const): (WTF::MonotonicTime::approximateMonotonicTime const): (WTF::MonotonicTime::operator bool const): (WTF::MonotonicTime::operator+ const): (WTF::MonotonicTime::operator- const): (WTF::MonotonicTime::operator% const): (WTF::MonotonicTime::operator+=): (WTF::MonotonicTime::operator-=): (WTF::MonotonicTime::operator== const): (WTF::MonotonicTime::operator!= const): (WTF::MonotonicTime::operator< const): (WTF::MonotonicTime::operator> const): (WTF::MonotonicTime::operator<= const): (WTF::MonotonicTime::operator>= const): (std::isnan): (std::isinf): (std::isfinite): * StitchMarker/wtf/NeverDestroyed.h: Added. (WTF::NeverDestroyed::NeverDestroyed): (WTF::NeverDestroyed::operator T&): (WTF::NeverDestroyed::get): (WTF::NeverDestroyed::operator const T& const): (WTF::NeverDestroyed::get const): (WTF::NeverDestroyed::storagePointer const): (WTF::NeverDestroyed::MaybeRelax::MaybeRelax): (WTF::LazyNeverDestroyed::construct): (WTF::LazyNeverDestroyed::operator T&): (WTF::LazyNeverDestroyed::get): (WTF::LazyNeverDestroyed::operator->): (WTF::LazyNeverDestroyed::operator const T& const): (WTF::LazyNeverDestroyed::get const): (WTF::LazyNeverDestroyed::operator-> const): (WTF::LazyNeverDestroyed::storagePointer const): (WTF::LazyNeverDestroyed::MaybeRelax::MaybeRelax): (WTF::makeNeverDestroyed): * StitchMarker/wtf/Noncopyable.h: Added. * StitchMarker/wtf/NotFound.h: Added. * StitchMarker/wtf/Optional.h: Added. (std::detail_::is_assignable::has_assign): (std::detail_::is_assignable::sizeof): (std::detail_::has_overloaded_addressof::has_overload): (std::detail_::has_overloaded_addressof::sizeof): (std::detail_::TR2_OPTIONAL_REQUIRES): (std::detail_::convert): (std::nullopt_t::nullopt_t): (std::bad_optional_access::bad_optional_access): (std::optional_base::optional_base): (std::optional_base::TR2_OPTIONAL_REQUIRES): (std::optional_base::~optional_base): (std::constexpr_optional_base::constexpr_optional_base): (std::constexpr_optional_base::TR2_OPTIONAL_REQUIRES): (std::optional::dataptr): (std::optional::dataptr const): (std::optional::contained_val const): (std::optional::contained_val): (std::optional::__NOEXCEPT_): (std::optional::optional): (std::optional::TR2_OPTIONAL_REQUIRES): (std::optional::operator=): (std::optional::emplace): (std::optional::operator -> const): (std::optional::operator ->): (std::optional::operator * const): (std::optional::operator *): (std::optional::value const): (std::optional::value): (std::optional::value_or const): (std::optional::value_or): (std::optional const): (std::optional): (std::operator<=): (std::operator>=): (std::__NOEXCEPT_): (std::make_optional): (WTF::valueOrCompute): (std::hash>::operator() const): * StitchMarker/wtf/ParkingLot.cpp: Added. (WTF::ParkingLot::parkConditionallyImpl): (WTF::ParkingLot::unparkOne): (WTF::ParkingLot::unparkOneImpl): (WTF::ParkingLot::unparkCount): (WTF::ParkingLot::unparkAll): (WTF::ParkingLot::forEachImpl): * StitchMarker/wtf/ParkingLot.h: Added. (WTF::ParkingLot::parkConditionally): (WTF::ParkingLot::compareAndPark): (WTF::ParkingLot::unparkOne): (WTF::ParkingLot::forEach): * StitchMarker/wtf/Platform.h: Added. * StitchMarker/wtf/PlatformRegisters.h: Added. (WTF::registersFromUContext): * StitchMarker/wtf/PrintStream.cpp: Added. (WTF::PrintStream::PrintStream): (WTF::PrintStream::~PrintStream): (WTF::PrintStream::printf): (WTF::PrintStream::printfVariableFormat): (WTF::PrintStream::flush): (WTF::PrintStream::begin): (WTF::PrintStream::end): (WTF::printInternal): (WTF::dumpCharacter): * StitchMarker/wtf/PrintStream.h: Added. (WTF::boolForPrinting): (WTF::PrintStream::atomically): (WTF::PrintStream::print): (WTF::PrintStream::println): (WTF::PrintStream::printImpl): (WTF::printInternal): (WTF::PointerDump::PointerDump): (WTF::PointerDump::dump const): (WTF::pointerDump): (WTF::ValueInContext::ValueInContext): (WTF::ValueInContext::dump const): (WTF::inContext): (WTF::PointerDumpInContext::PointerDumpInContext): (WTF::PointerDumpInContext::dump const): (WTF::pointerDumpInContext): (WTF::ValueIgnoringContext::ValueIgnoringContext): (WTF::ValueIgnoringContext::dump const): (WTF::ignoringContext): (WTF::>::unpack): (WTF::FormatImpl::FormatImpl): (WTF::FormatImpl::dump const): * StitchMarker/wtf/ProcessID.h: Added. (WTF::getCurrentProcessID): * StitchMarker/wtf/RandomNumberSeed.h: Added. (WTF::initializeRandomNumberGenerator): * StitchMarker/wtf/RawPointer.h: Added. (WTF::RawPointer::RawPointer): (WTF::RawPointer::value const): * StitchMarker/wtf/RecursiveLockAdapter.h: Added. (WTF::RecursiveLockAdapter::RecursiveLockAdapter): (WTF::RecursiveLockAdapter::lock): (WTF::RecursiveLockAdapter::unlock): (WTF::RecursiveLockAdapter::tryLock): (WTF::RecursiveLockAdapter::isLocked const): * StitchMarker/wtf/Ref.h: Added. (WTF::adopted): (WTF::Ref::~Ref): (WTF::Ref::Ref): (WTF::Ref::isHashTableDeletedValue const): (WTF::Ref::hashTableDeletedValue): (WTF::Ref::isHashTableEmptyValue const): (WTF::Ref::hashTableEmptyValue): (WTF::Ref::ptrAllowingHashTableEmptyValue const): (WTF::Ref::ptrAllowingHashTableEmptyValue): (WTF::Ref::assignToHashTableEmptyValue): (WTF::Ref::operator-> const): (WTF::Ref::get const): (WTF::Ref::operator T& const): (WTF::Ref::operator! const): (WTF::=): (WTF::Ref::swap): (WTF::swap): (WTF::Ref::replace): (WTF::static_reference_cast): (WTF::GetPtrHelper>::getPtr): (WTF::adoptRef): (WTF::makeRef): (WTF::is): * StitchMarker/wtf/RefCounted.h: Added. (WTF::RefCountedBase::ref const): (WTF::RefCountedBase::hasOneRef const): (WTF::RefCountedBase::refCount const): (WTF::RefCountedBase::relaxAdoptionRequirement): (WTF::RefCountedBase::RefCountedBase): (WTF::RefCountedBase::~RefCountedBase): (WTF::RefCountedBase::derefBase const): (WTF::RefCountedBase::deletionHasBegun const): (WTF::adopted): (WTF::RefCounted::deref const): (WTF::RefCounted::RefCounted): (WTF::RefCounted::~RefCounted): * StitchMarker/wtf/RefPtr.h: Added. (WTF::refIfNotNull): (WTF::derefIfNotNull): (WTF::RefPtr::RefPtr): (WTF::RefPtr::isHashTableDeletedValue const): (WTF::RefPtr::~RefPtr): (WTF::RefPtr::get const): (WTF::RefPtr::releaseNonNull): (WTF::RefPtr::releaseConstNonNull): (WTF::RefPtr::operator* const): (WTF::RefPtr::operator-> const): (WTF::RefPtr::operator! const): (WTF::RefPtr::operator UnspecifiedBoolType const): (WTF::RefPtr::hashTableDeletedValue): (WTF::RefPtr::RefPtr): (WTF::RefPtr::leakRef): (WTF::=): (WTF::RefPtr::swap): (WTF::swap): (WTF::operator==): (WTF::operator!=): (WTF::static_pointer_cast): (WTF::adoptRef): (WTF::makeRefPtr): * StitchMarker/wtf/RetainPtr.h: Added. (WTF::RetainPtr::RetainPtr): (WTF::RetainPtr::isHashTableDeletedValue const): (WTF::RetainPtr::get const): (WTF::RetainPtr::operator-> const): (WTF::RetainPtr::operator PtrType const): (WTF::RetainPtr::operator bool const): (WTF::RetainPtr::operator! const): (WTF::RetainPtr::operator UnspecifiedBoolType const): (WTF::RetainPtr::hashTableDeletedValue): (WTF::RetainPtr::fromStorageTypeHelper const): (WTF::RetainPtr::fromStorageType const): (WTF::RetainPtr::toStorageType const): (WTF::RetainPtr::~RetainPtr): (WTF::RetainPtr::RetainPtr): (WTF::RetainPtr::clear): (WTF::RetainPtr::leakRef): (WTF::RetainPtr::autorelease): (WTF::=): (WTF::RetainPtr::swap): (WTF::swap): (WTF::operator==): (WTF::operator!=): (WTF::adoptCF): (WTF::adoptNS): (WTF::retainPtr): (WTF::RetainPtrObjectHashTraits::emptyValue): (WTF::RetainPtrObjectHash::hash): (WTF::RetainPtrObjectHash::equal): (WTF::dynamic_objc_cast): * StitchMarker/wtf/RunLoop.cpp: Added. (WTF::RunLoop::Holder::Holder): (WTF::RunLoop::Holder::runLoop): (WTF::RunLoop::initializeMainRunLoop): (WTF::RunLoop::current): (WTF::RunLoop::main): (WTF::RunLoop::isMain): (WTF::RunLoop::performWork): (WTF::RunLoop::dispatch): * StitchMarker/wtf/RunLoop.h: Added. (WTF::RunLoop::mainContext const): (WTF::RunLoop::TimerBase::startRepeating): (WTF::RunLoop::TimerBase::startOneShot): (WTF::RunLoop::TimerBase::startInternal): (WTF::RunLoop::Timer::Timer): * StitchMarker/wtf/ScopedLambda.h: Added. (WTF::ScopedLambda const): (WTF::Seconds::operator<= const): (WTF::Seconds::operator>= const): (WTF::seconds_literals::operator _min): (WTF::seconds_literals::operator _h): (WTF::seconds_literals::operator _s): (WTF::seconds_literals::operator _ms): (WTF::seconds_literals::operator _us): (WTF::seconds_literals::operator _ns): (std::isnan): (std::isinf): (std::isfinite): * StitchMarker/wtf/StackBounds.cpp: Added. (WTF::StackBounds::newThreadStackBounds): (WTF::StackBounds::currentThreadStackBoundsInternal): * StitchMarker/wtf/StackBounds.h: Added. (WTF::StackBounds::emptyBounds): (WTF::StackBounds::currentThreadStackBounds): (WTF::StackBounds::origin const): (WTF::StackBounds::end const): (WTF::StackBounds::size const): (WTF::StackBounds::isEmpty const): (WTF::StackBounds::contains const): (WTF::StackBounds::recursionLimit const): (WTF::StackBounds::isGrowingDownward const): (WTF::StackBounds::StackBounds): (WTF::StackBounds::checkConsistency const): * StitchMarker/wtf/StackStats.h: Added. (WTF::StackStats::CheckPoint::CheckPoint): (WTF::StackStats::PerThreadStats::PerThreadStats): (WTF::StackStats::LayoutCheckPoint::LayoutCheckPoint): (WTF::StackStats::probe): * StitchMarker/wtf/StackTrace.cpp: Added. (WTFGetBacktrace): (WTF::StackTrace::instanceSize): (WTF::StackTrace::captureStackTrace): (WTF::StackTrace::demangle): (WTF::StackTrace::dump const): * StitchMarker/wtf/StackTrace.h: Added. (WTF::StackTrace::StackTrace): (WTF::StackTrace::size const): (WTF::StackTrace::stack const): (WTF::StackTrace::DemangleEntry::mangledName const): (WTF::StackTrace::DemangleEntry::demangledName const): (WTF::StackTrace::DemangleEntry::DemangleEntry): * StitchMarker/wtf/StdLibExtras.h: Added. (isPointerTypeAlignmentOkay): (reinterpret_cast_ptr): (WTF::isPointerAligned): (WTF::is8ByteAligned): (WTF::bitwise_cast): (WTF::safeCast): (WTF::bitCount): (WTF::roundUpToMultipleOfImpl0): (WTF::roundUpToMultipleOfImpl): (WTF::roundUpToMultipleOf): (WTF::binarySearchImpl): (WTF::binarySearch): (WTF::tryBinarySearch): (WTF::approximateBinarySearch): (WTF::insertIntoBoundedVector): (WTF::isStatelessLambda): (WTF::callStatelessLambda): (WTF::checkAndSet): (WTF::findBitInWord): (WTF::Visitor::Visitor): (WTF::Visitor::Visitor): (WTF::mergeDeduplicatedSorted): (operator new): (std::make_unique): (std::exchange): (std::move): * StitchMarker/wtf/StringExtras.h: Added. (strncasecmp): (strcasecmp): (strnstr): * StitchMarker/wtf/StringPrintStream.h: Added. (WTF::StringPrintStream::length const): (WTF::toCString): (WTF::toString): * StitchMarker/wtf/SystemFree.h: Added. (WTF::SystemFree::operator() const): (WTF::SystemFree::ThreadSpecific): (WTF::canBeGCThread>::get): (WTF::canBeGCThread>::set): (WTF::canBeGCThread>::~ThreadSpecific): (WTF::canBeGCThread>::destroy): (WTF::canBeGCThread>::isSet): (WTF::T): (WTF::canBeGCThread>::operator): (WTF::canBeGCThread>::replace): * StitchMarker/wtf/Threading.cpp: Added. (WTF::Thread::NewThreadContext::NewThreadContext): (WTF::Thread::normalizeThreadName): (WTF::Thread::entryPoint): (WTF::Thread::create): (WTF::Thread::currentMayBeNull): (WTF::shouldRemoveThreadFromThreadGroup): (WTF::Thread::didExit): (WTF::Thread::addToThreadGroup): (WTF::Thread::removeFromThreadGroup): (WTF::Thread::setCurrentThreadIsUserInteractive): (WTF::Thread::setCurrentThreadIsUserInitiated): (WTF::Thread::setGlobalMaxQOSClass): (WTF::Thread::adjustedQOSClass): (WTF::Thread::dump const): (WTF::initializeThreading): * StitchMarker/wtf/Threading.h: Added. (WTF::Thread::id const): (WTF::Thread::operator==): (WTF::Thread::operator!=): (WTF::Thread::stack const): (WTF::Thread::machThread): (WTF::Thread::joinableState): (WTF::Thread::didBecomeDetached): (WTF::Thread::didJoin): (WTF::Thread::hasExited): (WTF::currentThread): * StitchMarker/wtf/ThreadingPrimitives.h: Added. (WTF::Mutex::impl): * StitchMarker/wtf/ThreadingPthreads.cpp: Added. (WTF::Thread::Thread): (WTF::Thread::~Thread): (WTF::getApproximateStackPointer): (WTF::isOnAlternativeSignalStack): (WTF::Thread::signalHandlerSuspendResume): (WTF::Thread::initializePlatformThreading): (WTF::Thread::initializeCurrentThreadEvenIfNonWTFCreated): (WTF::wtfThreadEntryPoint): (WTF::Thread::establishHandle): (WTF::Thread::initializeCurrentThreadInternal): (WTF::Thread::changePriority): (WTF::Thread::waitForCompletion): (WTF::Thread::detach): (WTF::Thread::current): (WTF::Thread::currentID): (WTF::Thread::signal): (WTF::Thread::suspend): (WTF::Thread::resume): (WTF::threadStateMetadata): (WTF::Thread::getRegisters): (WTF::Thread::establishPlatformSpecificHandle): (WTF::Mutex::Mutex): (WTF::Mutex::~Mutex): (WTF::Mutex::lock): (WTF::Mutex::tryLock): (WTF::Mutex::unlock): (WTF::ThreadCondition::ThreadCondition): (WTF::ThreadCondition::~ThreadCondition): (WTF::ThreadCondition::wait): (WTF::ThreadCondition::timedWait): (WTF::ThreadCondition::signal): (WTF::ThreadCondition::broadcast): (WTF::Thread::yield): * StitchMarker/wtf/TimeWithDynamicClockType.cpp: Added. (WTF::TimeWithDynamicClockType::now): (WTF::TimeWithDynamicClockType::nowWithSameClock const): (WTF::TimeWithDynamicClockType::wallTime const): (WTF::TimeWithDynamicClockType::monotonicTime const): (WTF::TimeWithDynamicClockType::approximateWallTime const): (WTF::TimeWithDynamicClockType::approximateMonotonicTime const): (WTF::TimeWithDynamicClockType::operator- const): (WTF::TimeWithDynamicClockType::operator< const): (WTF::TimeWithDynamicClockType::operator> const): (WTF::TimeWithDynamicClockType::operator<= const): (WTF::TimeWithDynamicClockType::operator>= const): (WTF::TimeWithDynamicClockType::dump const): (WTF::sleep): (WTF::hasElapsed): * StitchMarker/wtf/TimeWithDynamicClockType.h: Added. (WTF::TimeWithDynamicClockType::TimeWithDynamicClockType): (WTF::TimeWithDynamicClockType::fromRawSeconds): (WTF::TimeWithDynamicClockType::secondsSinceEpoch const): (WTF::TimeWithDynamicClockType::clockType const): (WTF::TimeWithDynamicClockType::withSameClockAndRawSeconds const): (WTF::TimeWithDynamicClockType::operator bool const): (WTF::TimeWithDynamicClockType::operator+ const): (WTF::TimeWithDynamicClockType::operator- const): (WTF::TimeWithDynamicClockType::operator+=): (WTF::TimeWithDynamicClockType::operator-=): (WTF::TimeWithDynamicClockType::operator== const): (WTF::TimeWithDynamicClockType::operator!= const): (std::isnan): (std::isinf): (std::isfinite): * StitchMarker/wtf/TypeCasts.h: Added. (WTF::TypeCastTraits::isOfType): (WTF::is): (WTF::downcast): * StitchMarker/wtf/ValueCheck.h: Added. (WTF::ValueCheck::checkConsistency): (WTF::ValueCheck::swap): (WTF::__NOEXCEPT_): (WTF::__variant_accessor::get): (WTF::get): (WTF::get_if): (WTF::__visitor_table::__trampoline_func): (WTF::visit): (WTF::__arg_selector): (WTF::__visit_helper2::__visit): (WTF::operator==): (WTF::operator!=): (WTF::operator<): (WTF::operator>): (WTF::operator>=): (WTF::operator<=): (WTF::__hash_visitor::operator()): (WTF::switchOn): * StitchMarker/wtf/Vector.h: Added. (WTF::VectorTypeOperations::destruct): (WTF::VectorTypeOperations::initialize): (WTF::VectorTypeOperations::move): (WTF::VectorTypeOperations::moveOverlapping): (WTF::VectorTypeOperations::uninitializedCopy): (WTF::VectorTypeOperations::uninitializedFill): (WTF::VectorTypeOperations::compare): (WTF::VectorBufferBase::allocateBuffer): (WTF::VectorBufferBase::tryAllocateBuffer): (WTF::VectorBufferBase::shouldReallocateBuffer const): (WTF::VectorBufferBase::reallocateBuffer): (WTF::VectorBufferBase::deallocateBuffer): (WTF::VectorBufferBase::buffer): (WTF::VectorBufferBase::buffer const): (WTF::VectorBufferBase::bufferMemoryOffset): (WTF::VectorBufferBase::capacity const): (WTF::VectorBufferBase::releaseBuffer): (WTF::VectorBufferBase::VectorBufferBase): (WTF::VectorBufferBase::~VectorBufferBase): (WTF::VectorBuffer::VectorBuffer): (WTF::VectorBuffer::~VectorBuffer): (WTF::VectorBuffer::allocateBuffer): (WTF::VectorBuffer::tryAllocateBuffer): (WTF::VectorBuffer::deallocateBuffer): (WTF::VectorBuffer::shouldReallocateBuffer const): (WTF::VectorBuffer::reallocateBuffer): (WTF::VectorBuffer::swap): (WTF::VectorBuffer::restoreInlineBufferIfNeeded): (WTF::VectorBuffer::endOfBuffer): (WTF::VectorBuffer::releaseBuffer): (WTF::VectorBuffer::swapInlineBuffer): (WTF::VectorBuffer::swapInlineBuffers): (WTF::VectorBuffer::inlineBuffer): (WTF::VectorBuffer::inlineBuffer const): (WTF::UnsafeVectorOverflow::overflowed): (WTF::Vector::Vector): (WTF::Vector::~Vector): (WTF::Vector::size const): (WTF::Vector::sizeMemoryOffset): (WTF::Vector::capacity const): (WTF::Vector::isEmpty const): (WTF::Vector::at): (WTF::Vector::at const): (WTF::Vector::operator[]): (WTF::Vector::operator[] const): (WTF::Vector::data): (WTF::Vector::data const): (WTF::Vector::dataMemoryOffset): (WTF::Vector::begin): (WTF::Vector::end): (WTF::Vector::begin const): (WTF::Vector::end const): (WTF::Vector::rbegin): (WTF::Vector::rend): (WTF::Vector::rbegin const): (WTF::Vector::rend const): (WTF::Vector::first): (WTF::Vector::first const): (WTF::Vector::last): (WTF::Vector::last const): (WTF::Vector::takeLast): (WTF::Vector::shrinkToFit): (WTF::Vector::clear): (WTF::Vector::append): (WTF::Vector::uncheckedAppend): (WTF::Vector::removeLast): (WTF::Vector::fill): (WTF::Vector::swap): (WTF::Vector::asanSetBufferSizeToFullCapacity): (WTF::minCapacity>::Vector): (WTF::=): (WTF::typelessPointersAreEqual): (WTF::minCapacity>::contains const): (WTF::minCapacity>::findMatching const): (WTF::minCapacity>::find const): (WTF::minCapacity>::reverseFind const): (WTF::minCapacity>::appendIfNotContains): (WTF::minCapacity>::fill): (WTF::minCapacity>::appendRange): (WTF::minCapacity>::expandCapacity): (WTF::minCapacity>::tryExpandCapacity): (WTF::minCapacity>::resize): (WTF::minCapacity>::resizeToFit): (WTF::minCapacity>::shrink): (WTF::minCapacity>::grow): (WTF::minCapacity>::asanSetInitialBufferSizeTo): (WTF::minCapacity>::asanSetBufferSizeToFullCapacity): (WTF::minCapacity>::asanBufferSizeWillChangeTo): (WTF::minCapacity>::reserveCapacity): (WTF::minCapacity>::tryReserveCapacity): (WTF::minCapacity>::reserveInitialCapacity): (WTF::minCapacity>::shrinkCapacity): (WTF::minCapacity>::append): (WTF::minCapacity>::tryAppend): (WTF::minCapacity>::constructAndAppend): (WTF::minCapacity>::tryConstructAndAppend): (WTF::minCapacity>::appendSlowCase): (WTF::minCapacity>::constructAndAppendSlowCase): (WTF::minCapacity>::tryConstructAndAppendSlowCase): (WTF::minCapacity>::uncheckedAppend): (WTF::minCapacity>::appendVector): (WTF::minCapacity>::insert): (WTF::minCapacity>::insertVector): (WTF::minCapacity>::remove): (WTF::minCapacity>::removeFirst): (WTF::minCapacity>::removeFirstMatching): (WTF::minCapacity>::removeAll): (WTF::minCapacity>::removeAllMatching): (WTF::minCapacity>::reverse): (WTF::minCapacity>::map const): (WTF::minCapacity>::releaseBuffer): (WTF::minCapacity>::checkConsistency): (WTF::swap): (WTF::operator==): (WTF::operator!=): (WTF::ValueCheck>::checkConsistency): (WTF::removeRepeatedElements): * StitchMarker/wtf/VectorTraits.h: Added. * StitchMarker/wtf/WTFThreadData.cpp: Added. (WTF::WTFThreadData::WTFThreadData): (WTF::WTFThreadData::~WTFThreadData): (WTF::WTFThreadData::createAndRegisterForGetspecificDirect): * StitchMarker/wtf/WTFThreadData.h: Added. (WTF::WTFThreadData::atomicStringTable): (WTF::WTFThreadData::setCurrentAtomicStringTable): (WTF::WTFThreadData::stack): (WTF::WTFThreadData::stackStats): (WTF::WTFThreadData::savedStackPointerAtVMEntry): (WTF::WTFThreadData::setSavedStackPointerAtVMEntry): (WTF::WTFThreadData::savedLastStackTop): (WTF::WTFThreadData::setSavedLastStackTop): (WTF::wtfThreadData): * StitchMarker/wtf/WallTime.cpp: Added. (WTF::WallTime::now): (WTF::WallTime::approximateMonotonicTime const): (WTF::WallTime::dump const): * StitchMarker/wtf/WallTime.h: Added. (WTF::WallTime::WallTime): (WTF::WallTime::fromRawSeconds): (WTF::WallTime::infinity): (WTF::WallTime::secondsSinceEpoch const): (WTF::WallTime::approximateWallTime const): (WTF::WallTime::operator bool const): (WTF::WallTime::operator+ const): (WTF::WallTime::operator- const): (WTF::WallTime::operator+=): (WTF::WallTime::operator-=): (WTF::WallTime::operator== const): (WTF::WallTime::operator!= const): (WTF::WallTime::operator< const): (WTF::WallTime::operator> const): (WTF::WallTime::operator<= const): (WTF::WallTime::operator>= const): (std::isnan): (std::isinf): (std::isfinite): * StitchMarker/wtf/WeakRandom.h: Added. (WTF::WeakRandom::WeakRandom): (WTF::WeakRandom::setSeed): (WTF::WeakRandom::seed const): (WTF::WeakRandom::get): (WTF::WeakRandom::getUint32): (WTF::WeakRandom::lowOffset): (WTF::WeakRandom::highOffset): (WTF::WeakRandom::advance): * StitchMarker/wtf/WordLock.cpp: Added. (WTF::WordLockBase::lockSlow): (WTF::WordLockBase::unlockSlow): * StitchMarker/wtf/WordLock.h: Added. (WTF::WordLockBase::lock): (WTF::WordLockBase::unlock): (WTF::WordLockBase::isHeld const): (WTF::WordLockBase::isLocked const): (WTF::WordLockBase::isFullyReset const): (WTF::WordLock::WordLock): * StitchMarker/wtf/benchmarks/ConditionSpeedTest.cpp: Added. (main): * StitchMarker/wtf/benchmarks/LockFairnessTest.cpp: Added. (main): * StitchMarker/wtf/benchmarks/LockSpeedTest.cpp: Added. (main): * StitchMarker/wtf/benchmarks/ToyLocks.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Algorithm.h: Added. (bmalloc::max): (bmalloc::min): (bmalloc::mask): (bmalloc::test): (bmalloc::isPowerOfTwo): (bmalloc::roundUpToMultipleOf): (bmalloc::roundDownToMultipleOf): (bmalloc::divideRoundingUp): (bmalloc::roundUpToMultipleOfNonPowerOfTwo): (bmalloc::sizeOf): (bmalloc::bitCount): (bmalloc::clzl): (bmalloc::clzl<1>): (bmalloc::__builtin_clzl): (bmalloc::log2): * StitchMarker/wtf/dependencies/bmalloc/AllocationKind.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Allocator.cpp: Added. (bmalloc::Allocator::Allocator): (bmalloc::Allocator::~Allocator): (bmalloc::Allocator::tryAllocate): (bmalloc::Allocator::allocate): (bmalloc::Allocator::allocateImpl): (bmalloc::Allocator::reallocate): (bmalloc::Allocator::scavenge): (bmalloc::Allocator::refillAllocatorSlowCase): (bmalloc::Allocator::refillAllocator): (bmalloc::Allocator::allocateLarge): (bmalloc::Allocator::allocateLogSizeClass): (bmalloc::Allocator::allocateSlowCase): * StitchMarker/wtf/dependencies/bmalloc/Allocator.h: Added. (bmalloc::Allocator::allocateFastCase): (bmalloc::Allocator::allocate): * StitchMarker/wtf/dependencies/bmalloc/AsyncTask.h: Added. (bmalloc::AsyncTask::willRun): (bmalloc::AsyncTask::willRunSoon): (bmalloc::Function>::AsyncTask): (bmalloc::Function>::~AsyncTask): (bmalloc::Function>::run): (bmalloc::Function>::runSoon): (bmalloc::Function>::threadEntryPoint): (bmalloc::Function>::threadRunLoop): * StitchMarker/wtf/dependencies/bmalloc/AvailableMemory.h: Added. (bmalloc::MemoryStatus::MemoryStatus): (bmalloc::memoryFootprint): (bmalloc::percentAvailableMemoryInUse): (bmalloc::isUnderMemoryPressure): * StitchMarker/wtf/dependencies/bmalloc/BAssert.h: Added. * StitchMarker/wtf/dependencies/bmalloc/BExport.h: Added. * StitchMarker/wtf/dependencies/bmalloc/BPlatform.h: Added. * StitchMarker/wtf/dependencies/bmalloc/BumpAllocator.h: Added. (bmalloc::BumpAllocator::size): (bmalloc::BumpAllocator::isNull): (bmalloc::BumpAllocator::canAllocate): (bmalloc::BumpAllocator::BumpAllocator): (bmalloc::BumpAllocator::init): (bmalloc::BumpAllocator::allocate): (bmalloc::BumpAllocator::refill): (bmalloc::BumpAllocator::clear): * StitchMarker/wtf/dependencies/bmalloc/BumpRange.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Cache.cpp: Added. (bmalloc::Cache::scavenge): (bmalloc::Cache::Cache): (bmalloc::Cache::tryAllocateSlowCaseNullCache): (bmalloc::Cache::allocateSlowCaseNullCache): (bmalloc::Cache::deallocateSlowCaseNullCache): (bmalloc::Cache::reallocateSlowCaseNullCache): * StitchMarker/wtf/dependencies/bmalloc/Cache.h: Added. (bmalloc::Cache::allocator): (bmalloc::Cache::deallocator): (bmalloc::Cache::tryAllocate): (bmalloc::Cache::allocate): (bmalloc::Cache::deallocate): (bmalloc::Cache::reallocate): * StitchMarker/wtf/dependencies/bmalloc/Chunk.h: Added. (bmalloc::Chunk::ref): (bmalloc::Chunk::deref): (bmalloc::Chunk::refCount): (bmalloc::Chunk::bytes): (bmalloc::Chunk::lines): (bmalloc::Chunk::pages): (bmalloc::Chunk::freePages): (bmalloc::ChunkHash::hash): (bmalloc::forEachPage): (bmalloc::Chunk::Chunk): (bmalloc::Chunk::get): (bmalloc::Chunk::offset): (bmalloc::Chunk::address): (bmalloc::Chunk::page): (bmalloc::Chunk::line): (bmalloc::SmallLine::begin): (bmalloc::SmallLine::end): (bmalloc::SmallPage::begin): (bmalloc::Object::Object): (bmalloc::Object::address): (bmalloc::Object::line): (bmalloc::Object::page): * StitchMarker/wtf/dependencies/bmalloc/Deallocator.cpp: Added. (bmalloc::Deallocator::Deallocator): (bmalloc::Deallocator::~Deallocator): (bmalloc::Deallocator::scavenge): (bmalloc::Deallocator::processObjectLog): (bmalloc::Deallocator::deallocateSlowCase): * StitchMarker/wtf/dependencies/bmalloc/Deallocator.h: Added. (bmalloc::Deallocator::lineCache): (bmalloc::Deallocator::deallocateFastCase): (bmalloc::Deallocator::deallocate): * StitchMarker/wtf/dependencies/bmalloc/DebugHeap.cpp: Added. (bmalloc::DebugHeap::DebugHeap): (bmalloc::DebugHeap::malloc): (bmalloc::DebugHeap::memalign): (bmalloc::DebugHeap::realloc): (bmalloc::DebugHeap::free): * StitchMarker/wtf/dependencies/bmalloc/DebugHeap.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Environment.cpp: Added. (bmalloc::isMallocEnvironmentVariableSet): (bmalloc::isLibgmallocEnabled): (bmalloc::isSanitizerEnabled): (bmalloc::Environment::Environment): (bmalloc::Environment::computeIsDebugHeapEnabled): * StitchMarker/wtf/dependencies/bmalloc/Environment.h: Added. (bmalloc::Environment::isDebugHeapEnabled): * StitchMarker/wtf/dependencies/bmalloc/FixedVector.h: Added. (bmalloc::FixedVector::begin const): (bmalloc::FixedVector::end const): (bmalloc::FixedVector::size const): (bmalloc::FixedVector::capacity const): (bmalloc::FixedVector::clear): (bmalloc::FixedVector::isEmpty): (bmalloc::Capacity>::FixedVector): (bmalloc::Capacity>::operator): (bmalloc::Capacity>::push): (bmalloc::Capacity>::pop): (bmalloc::Capacity>::shrink): * StitchMarker/wtf/dependencies/bmalloc/Gigacage.cpp: Added. (Gigacage::Callback::Callback): (Gigacage::Callback::function): (Gigacage::Callbacks::Callbacks): (Gigacage::ensureGigacage): (Gigacage::disableGigacage): (Gigacage::addDisableCallback): (Gigacage::removeDisableCallback): (Gigacage::shouldBeEnabled): * StitchMarker/wtf/dependencies/bmalloc/Gigacage.h: Added. (Gigacage::caged): (Gigacage::isCaged): * StitchMarker/wtf/dependencies/bmalloc/Heap.cpp: Added. (bmalloc::Heap::Heap): (bmalloc::Heap::usingGigacage): (bmalloc::Heap::initializeLineMetadata): (bmalloc::Heap::initializePageMetadata): (bmalloc::Heap::concurrentScavenge): (bmalloc::Heap::scavenge): (bmalloc::Heap::scheduleScavengerIfUnderMemoryPressure): (bmalloc::Heap::scheduleScavenger): (bmalloc::Heap::deallocateLineCache): (bmalloc::Heap::allocateSmallChunk): (bmalloc::Heap::deallocateSmallChunk): (bmalloc::Heap::allocateSmallPage): (bmalloc::Heap::deallocateSmallLine): (bmalloc::Heap::allocateSmallBumpRangesByMetadata): (bmalloc::Heap::allocateSmallBumpRangesByObject): (bmalloc::Heap::splitAndAllocate): (bmalloc::Heap::tryAllocateLarge): (bmalloc::Heap::allocateLarge): (bmalloc::Heap::isLarge): (bmalloc::Heap::largeSize): (bmalloc::Heap::shrinkLarge): (bmalloc::Heap::deallocateLarge): * StitchMarker/wtf/dependencies/bmalloc/Heap.h: Added. (bmalloc::Heap::mutex): (bmalloc::Heap::kind const): (bmalloc::Heap::debugHeap): (bmalloc::Heap::LargeObjectHash::hash): (bmalloc::Heap::allocateSmallBumpRanges): (bmalloc::Heap::derefSmallLine): * StitchMarker/wtf/dependencies/bmalloc/HeapKind.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Inline.h: Added. * StitchMarker/wtf/dependencies/bmalloc/LargeMap.cpp: Added. (bmalloc::LargeMap::remove): (bmalloc::LargeMap::add): * StitchMarker/wtf/dependencies/bmalloc/LargeMap.h: Added. (bmalloc::LargeMap::begin): (bmalloc::LargeMap::end): (bmalloc::LargeMap::ranges): * StitchMarker/wtf/dependencies/bmalloc/LargeRange.h: Added. (bmalloc::LargeRange::LargeRange): (bmalloc::LargeRange::physicalSize const): (bmalloc::LargeRange::setPhysicalSize): (bmalloc::LargeRange::operator< const): (bmalloc::canMerge): (bmalloc::merge): (bmalloc::LargeRange::split const): * StitchMarker/wtf/dependencies/bmalloc/LineMetadata.h: Added. * StitchMarker/wtf/dependencies/bmalloc/List.h: Added. (bmalloc::ListNode::ListNode): (bmalloc::List::iterator::iterator): (bmalloc::List::iterator::operator*): (bmalloc::List::iterator::operator->): (bmalloc::List::iterator::operator!=): (bmalloc::List::iterator::operator++): (bmalloc::List::List): (bmalloc::List::isEmpty): (bmalloc::List::head): (bmalloc::List::tail): (bmalloc::List::begin): (bmalloc::List::end): (bmalloc::List::push): (bmalloc::List::pushFront): (bmalloc::List::pop): (bmalloc::List::popFront): (bmalloc::List::insertAfter): (bmalloc::List::remove): * StitchMarker/wtf/dependencies/bmalloc/Logging.cpp: Added. (bmalloc::logVMFailure): (bmalloc::reportAssertionFailureWithMessage): * StitchMarker/wtf/dependencies/bmalloc/Logging.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Map.h: Added. (bmalloc::Map::size): (bmalloc::Map::capacity): (bmalloc::Map::get): (bmalloc::Map::set): (bmalloc::Map::remove): (bmalloc::Map::shouldGrow): (bmalloc::Map::shouldShrink): (bmalloc::Map::find): (bmalloc::Hash>::rehash): * StitchMarker/wtf/dependencies/bmalloc/Mutex.h: Added. (bmalloc::Mutex::Mutex): * StitchMarker/wtf/dependencies/bmalloc/Object.h: Added. (bmalloc::Object::Object): (bmalloc::Object::chunk): (bmalloc::Object::offset): (bmalloc::Object::operator+): (bmalloc::Object::operator-): (bmalloc::Object::operator<=): * StitchMarker/wtf/dependencies/bmalloc/ObjectType.cpp: Added. (bmalloc::objectType): * StitchMarker/wtf/dependencies/bmalloc/ObjectType.h: Added. (bmalloc::mightBeLarge): * StitchMarker/wtf/dependencies/bmalloc/PerHeapKind.h: Added. (bmalloc::PerHeapKindBase::PerHeapKindBase): (bmalloc::PerHeapKindBase::size): (bmalloc::PerHeapKindBase::at): (bmalloc::PerHeapKindBase::at const): (bmalloc::PerHeapKindBase::operator[]): (bmalloc::PerHeapKindBase::operator[] const): (bmalloc::StaticPerHeapKind::StaticPerHeapKind): (bmalloc::PerHeapKind::PerHeapKind): (bmalloc::PerHeapKind::~PerHeapKind): * StitchMarker/wtf/dependencies/bmalloc/PerProcess.h: Added. (bmalloc::PerProcess::mutex): (bmalloc::PerProcess::getFastCase): (bmalloc::PerProcess::get): (bmalloc::PerProcess::getSlowCase): * StitchMarker/wtf/dependencies/bmalloc/PerThread.h: Added. (bmalloc::PerThreadStorage>::get): (bmalloc::PerThreadStorage>::init): (bmalloc::PerThreadStorage::get): (bmalloc::PerThreadStorage::init): (bmalloc::PerThread::getFastCase): (bmalloc::PerThread::get): (bmalloc::PerThread::destructor): (bmalloc::PerThread::getSlowCase): * StitchMarker/wtf/dependencies/bmalloc/Range.h: Added. (bmalloc::Range::Range): (bmalloc::Range::begin const): (bmalloc::Range::end const): (bmalloc::Range::size const): (bmalloc::Range::operator! const): (bmalloc::Range::operator bool const): (bmalloc::Range::operator< const): (bmalloc::canMerge): (bmalloc::merge): * StitchMarker/wtf/dependencies/bmalloc/Scavenger.cpp: Added. (bmalloc::Scavenger::Scavenger): (bmalloc::Scavenger::scavenge): * StitchMarker/wtf/dependencies/bmalloc/Scavenger.h: Added. (bmalloc::Scavenger::setScavengerThreadQOSClass): (bmalloc::Scavenger::requestedScavengerThreadQOSClass const): * StitchMarker/wtf/dependencies/bmalloc/ScopeExit.h: Added. (bmalloc::ScopeExit::ScopeExit): (bmalloc::ScopeExit::~ScopeExit): (bmalloc::makeScopeExit): * StitchMarker/wtf/dependencies/bmalloc/Sizes.h: Added. (bmalloc::Sizes::maskSizeClass): (bmalloc::Sizes::maskObjectSize): (bmalloc::Sizes::logSizeClass): (bmalloc::Sizes::logObjectSize): (bmalloc::Sizes::sizeClass): (bmalloc::Sizes::objectSize): (bmalloc::Sizes::pageSize): * StitchMarker/wtf/dependencies/bmalloc/SmallLine.h: Added. (bmalloc::SmallLine::refCount): (bmalloc::SmallLine::ref): (bmalloc::SmallLine::deref): * StitchMarker/wtf/dependencies/bmalloc/SmallPage.h: Added. (bmalloc::SmallPage::refCount): (bmalloc::SmallPage::sizeClass): (bmalloc::SmallPage::setSizeClass): (bmalloc::SmallPage::hasFreeLines const): (bmalloc::SmallPage::setHasFreeLines): (bmalloc::SmallPage::hasPhysicalPages): (bmalloc::SmallPage::setHasPhysicalPages): (bmalloc::SmallPage::slide const): (bmalloc::SmallPage::setSlide): (bmalloc::SmallPage::ref): (bmalloc::SmallPage::deref): * StitchMarker/wtf/dependencies/bmalloc/StaticMutex.cpp: Added. (bmalloc::StaticMutex::lockSlowCase): * StitchMarker/wtf/dependencies/bmalloc/StaticMutex.h: Added. (bmalloc::sleep): (bmalloc::waitUntilFalse): (bmalloc::StaticMutex::init): (bmalloc::StaticMutex::try_lock): (bmalloc::StaticMutex::lock): (bmalloc::StaticMutex::unlock): * StitchMarker/wtf/dependencies/bmalloc/Syscall.h: Added. * StitchMarker/wtf/dependencies/bmalloc/VMAllocate.h: Added. (bmalloc::vmPageSize): (bmalloc::vmPageShift): (bmalloc::vmSize): (bmalloc::vmValidate): (bmalloc::vmPageSizePhysical): (bmalloc::vmValidatePhysical): (bmalloc::tryVMAllocate): (bmalloc::vmAllocate): (bmalloc::vmDeallocate): (bmalloc::vmRevokePermissions): (bmalloc::vmDeallocatePhysicalPages): (bmalloc::vmAllocatePhysicalPages): (bmalloc::vmDeallocatePhysicalPagesSloppy): (bmalloc::vmAllocatePhysicalPagesSloppy): * StitchMarker/wtf/dependencies/bmalloc/VMHeap.cpp: Added. (bmalloc::VMHeap::VMHeap): (bmalloc::VMHeap::tryAllocateLargeChunk): * StitchMarker/wtf/dependencies/bmalloc/VMHeap.h: Added. * StitchMarker/wtf/dependencies/bmalloc/Vector.h: Added. (bmalloc::Vector::begin): (bmalloc::Vector::end): (bmalloc::Vector::size): (bmalloc::Vector::capacity): (bmalloc::Vector::last): (bmalloc::Vector::pop): (bmalloc::Vector::initialCapacity): (bmalloc::Vector::Vector): (bmalloc::Vector::~Vector): (bmalloc::Vector::operator): (bmalloc::Vector::push): (bmalloc::Vector::pop): (bmalloc::Vector::insert): (bmalloc::Vector::remove): (bmalloc::Vector::grow): (bmalloc::Vector::shrink): (bmalloc::Vector::resize): (bmalloc::Vector::reallocateBuffer): (bmalloc::Vector::shrinkCapacity): (bmalloc::Vector::growCapacity): (bmalloc::Vector::shrinkToFit): * StitchMarker/wtf/dependencies/bmalloc/Zone.cpp: Added. (bmalloc::remoteRead): (bmalloc::good_size): (bmalloc::check): (bmalloc::print): (bmalloc::log): (bmalloc::force_lock): (bmalloc::force_unlock): (bmalloc::statistics): (bmalloc::zoneSize): (bmalloc::enumerator): (bmalloc::Zone::Zone): * StitchMarker/wtf/dependencies/bmalloc/Zone.h: Added. (bmalloc::Zone::ranges): (bmalloc::Zone::addRange): * StitchMarker/wtf/dependencies/bmalloc/bmalloc.h: Added. (bmalloc::api::tryMalloc): (bmalloc::api::malloc): (bmalloc::api::tryMemalign): (bmalloc::api::memalign): (bmalloc::api::realloc): (bmalloc::api::tryLargeMemalignVirtual): (bmalloc::api::free): (bmalloc::api::freeLargeVirtual): (bmalloc::api::scavengeThisThread): (bmalloc::api::scavenge): (bmalloc::api::isEnabled): (bmalloc::api::availableMemory): (bmalloc::api::memoryFootprint): (bmalloc::api::percentAvailableMemoryInUse): (bmalloc::api::setScavengerThreadQOSClass): * StitchMarker/wtf/dependencies/config.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/bytestream.h: Added. (StringByteSink::StringByteSink): (StringByteSink::Append): * StitchMarker/wtf/dependencies/icu/unicode/chariter.h: Added. (ForwardCharacterIterator::operator!= const): (CharacterIterator::setToStart): (CharacterIterator::setToEnd): (CharacterIterator::startIndex const): (CharacterIterator::endIndex const): (CharacterIterator::getIndex const): (CharacterIterator::getLength const): * StitchMarker/wtf/dependencies/icu/unicode/localpointer.h: Added. (LocalPointerBase::LocalPointerBase): (LocalPointerBase::~LocalPointerBase): (LocalPointerBase::isNull const): (LocalPointerBase::isValid const): (LocalPointerBase::operator== const): (LocalPointerBase::operator!= const): (LocalPointerBase::getAlias const): (LocalPointerBase::operator* const): (LocalPointerBase::operator-> const): (LocalPointerBase::orphan): (LocalPointerBase::adoptInstead): (LocalPointer::LocalPointer): (LocalPointer::~LocalPointer): (LocalPointer::adoptInstead): (LocalPointer::adoptInsteadAndCheckErrorCode): (LocalArray::LocalArray): (LocalArray::~LocalArray): (LocalArray::adoptInstead): (LocalArray::operator[] const): * StitchMarker/wtf/dependencies/icu/unicode/parseerr.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/platform.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/ptypes.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/putil.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/rep.h: Added. (Replaceable::Replaceable): (Replaceable::length const): (Replaceable::charAt const): (Replaceable::char32At const): * StitchMarker/wtf/dependencies/icu/unicode/std_string.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/strenum.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/stringpiece.h: Added. (operator!=): * StitchMarker/wtf/dependencies/icu/unicode/ubrk.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/ucasemap.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uchar.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uconfig.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uenum.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uiter.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uloc.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/umachine.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/unistr.h: Added. (UnicodeString::pinIndex const): (UnicodeString::pinIndices const): (UnicodeString::getArrayStart): (UnicodeString::getArrayStart const): (UnicodeString::UnicodeString): (UnicodeString::hasShortLength const): (UnicodeString::getShortLength const): (UnicodeString::length const): (UnicodeString::getCapacity const): (UnicodeString::hashCode const): (UnicodeString::isBogus const): (UnicodeString::isWritable const): (UnicodeString::isBufferWritable const): (UnicodeString::getBuffer const): (UnicodeString::doCompare const): (UnicodeString::operator== const): (UnicodeString::operator!= const): (UnicodeString::operator> const): (UnicodeString::operator< const): (UnicodeString::operator>= const): (UnicodeString::operator<= const): (UnicodeString::compare const): (UnicodeString::compareBetween const): (UnicodeString::doCompareCodePointOrder const): (UnicodeString::compareCodePointOrder const): (UnicodeString::compareCodePointOrderBetween const): (UnicodeString::doCaseCompare const): (UnicodeString::caseCompare const): (UnicodeString::caseCompareBetween const): (UnicodeString::indexOf const): (UnicodeString::lastIndexOf const): (UnicodeString::startsWith const): (UnicodeString::endsWith const): (UnicodeString::replace): (UnicodeString::replaceBetween): (UnicodeString::findAndReplace): (UnicodeString::doExtract const): (UnicodeString::extract const): (UnicodeString::extractBetween const): (UnicodeString::tempSubStringBetween const): (UnicodeString::doCharAt const): (UnicodeString::charAt const): (UnicodeString::operator[] const): (UnicodeString::isEmpty const): (UnicodeString::setZeroLength): (UnicodeString::setShortLength): (UnicodeString::setLength): (UnicodeString::setToEmpty): (UnicodeString::setArray): (UnicodeString::operator= ): (UnicodeString::setTo): (UnicodeString::append): (UnicodeString::operator+= ): (UnicodeString::insert): (UnicodeString::remove): (UnicodeString::removeBetween): (UnicodeString::retainBetween): (UnicodeString::truncate): (UnicodeString::reverse): * StitchMarker/wtf/dependencies/icu/unicode/uobject.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/urename.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/ustring.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utext.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utf.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utf16.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utf8.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utf_old.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/utypes.h: Added. (operator new): (operator new[]): (operator delete): (operator delete[]): (U_SUCCESS): (U_FAILURE): * StitchMarker/wtf/dependencies/icu/unicode/uvernum.h: Added. * StitchMarker/wtf/dependencies/icu/unicode/uversion.h: Added. * StitchMarker/wtf/dependencies/unicode.cpp: Added. * StitchMarker/wtf/dtoa.cpp: Added. (WTF::storeInc): (WTF::BigInt::BigInt): (WTF::BigInt::clear): (WTF::BigInt::size const): (WTF::BigInt::resize): (WTF::BigInt::words): (WTF::BigInt::words const): (WTF::BigInt::append): (WTF::multadd): (WTF::hi0bits): (WTF::lo0bits): (WTF::i2b): (WTF::mult): (WTF::P5Node::P5Node): (WTF::pow5mult): (WTF::lshift): (WTF::cmp): (WTF::diff): (WTF::d2b): (WTF::quorem): (WTF::dtoa): * StitchMarker/wtf/dtoa.h: Added. (WTF::parseDouble): * StitchMarker/wtf/dtoa/COPYING: Added. * StitchMarker/wtf/dtoa/LICENSE: Added. * StitchMarker/wtf/dtoa/README: Added. * StitchMarker/wtf/dtoa/bignum-dtoa.cc: Added. * StitchMarker/wtf/dtoa/bignum-dtoa.h: Added. * StitchMarker/wtf/dtoa/bignum.cc: Added. * StitchMarker/wtf/dtoa/bignum.h: Added. (WTF::double_conversion::Bignum::Times10): (WTF::double_conversion::Bignum::Equal): (WTF::double_conversion::Bignum::LessEqual): (WTF::double_conversion::Bignum::Less): (WTF::double_conversion::Bignum::PlusEqual): (WTF::double_conversion::Bignum::PlusLessEqual): (WTF::double_conversion::Bignum::PlusLess): (WTF::double_conversion::Bignum::EnsureCapacity): (WTF::double_conversion::Bignum::BigitLength const): * StitchMarker/wtf/dtoa/cached-powers.cc: Added. * StitchMarker/wtf/dtoa/cached-powers.h: Added. * StitchMarker/wtf/dtoa/diy-fp.cc: Added. * StitchMarker/wtf/dtoa/diy-fp.h: Added. (WTF::double_conversion::DiyFp::DiyFp): (WTF::double_conversion::DiyFp::Subtract): (WTF::double_conversion::DiyFp::Minus): (WTF::double_conversion::DiyFp::Times): (WTF::double_conversion::DiyFp::Normalize): (WTF::double_conversion::DiyFp::f const): (WTF::double_conversion::DiyFp::e const): (WTF::double_conversion::DiyFp::set_f): (WTF::double_conversion::DiyFp::set_e): * StitchMarker/wtf/dtoa/double-conversion.cc: Added. * StitchMarker/wtf/dtoa/double-conversion.h: Added. (WTF::double_conversion::DoubleToStringConverter::DoubleToStringConverter): * StitchMarker/wtf/dtoa/double.h: Added. (WTF::double_conversion::double_to_uint64): (WTF::double_conversion::uint64_to_double): (WTF::double_conversion::Double::Double): (WTF::double_conversion::Double::AsDiyFp const): (WTF::double_conversion::Double::AsNormalizedDiyFp const): (WTF::double_conversion::Double::AsUint64 const): (WTF::double_conversion::Double::NextDouble const): (WTF::double_conversion::Double::Exponent const): (WTF::double_conversion::Double::Significand const): (WTF::double_conversion::Double::IsDenormal const): (WTF::double_conversion::Double::IsSpecial const): (WTF::double_conversion::Double::IsNan const): (WTF::double_conversion::Double::IsInfinite const): (WTF::double_conversion::Double::Sign const): (WTF::double_conversion::Double::UpperBoundary const): (WTF::double_conversion::Double::NormalizedBoundaries const): (WTF::double_conversion::Double::value const): (WTF::double_conversion::Double::SignificandSizeForOrderOfMagnitude): (WTF::double_conversion::Double::Infinity): (WTF::double_conversion::Double::NaN): (WTF::double_conversion::Double::DiyFpToUint64): * StitchMarker/wtf/dtoa/fast-dtoa.cc: Added. * StitchMarker/wtf/dtoa/fast-dtoa.h: Added. * StitchMarker/wtf/dtoa/fixed-dtoa.cc: Added. * StitchMarker/wtf/dtoa/fixed-dtoa.h: Added. * StitchMarker/wtf/dtoa/strtod.cc: Added. * StitchMarker/wtf/dtoa/strtod.h: Added. * StitchMarker/wtf/dtoa/utils.h: Added. (WTF::double_conversion::Max): (WTF::double_conversion::Min): (WTF::double_conversion::StrLength): (WTF::double_conversion::BufferReference::BufferReference): (WTF::double_conversion::BufferReference::SubBufferReference): (WTF::double_conversion::BufferReference::length const): (WTF::double_conversion::BufferReference::is_empty const): (WTF::double_conversion::BufferReference::start const): (WTF::double_conversion::BufferReference::operator[] const): (WTF::double_conversion::BufferReference::first): (WTF::double_conversion::BufferReference::last): (WTF::double_conversion::StringBuilder::StringBuilder): (WTF::double_conversion::StringBuilder::~StringBuilder): (WTF::double_conversion::StringBuilder::size const): (WTF::double_conversion::StringBuilder::position const): (WTF::double_conversion::StringBuilder::SetPosition): (WTF::double_conversion::StringBuilder::Reset): (WTF::double_conversion::StringBuilder::AddCharacter): (WTF::double_conversion::StringBuilder::AddString): (WTF::double_conversion::StringBuilder::AddSubstring): (WTF::double_conversion::StringBuilder::AddPadding): (WTF::double_conversion::StringBuilder::Finalize): (WTF::double_conversion::StringBuilder::is_finalized const): (WTF::double_conversion::BitCast): * StitchMarker/wtf/generic/MainThreadGeneric.cpp: Added. (WTF::MainThreadDispatcher::MainThreadDispatcher): (WTF::MainThreadDispatcher::schedule): (WTF::MainThreadDispatcher::fired): (WTF::initializeMainThreadPlatform): (WTF::scheduleDispatchFunctionsOnMainThread): * StitchMarker/wtf/generic/RunLoopGeneric.cpp: Added. (WTF::RunLoop::TimerBase::ScheduledTask::create): (WTF::RunLoop::TimerBase::ScheduledTask::ScheduledTask): (WTF::RunLoop::TimerBase::ScheduledTask::fired): (WTF::RunLoop::TimerBase::ScheduledTask::scheduledTimePoint const): (WTF::RunLoop::TimerBase::ScheduledTask::updateReadyTime): (WTF::RunLoop::TimerBase::ScheduledTask::EarliestSchedule::operator()): (WTF::RunLoop::TimerBase::ScheduledTask::isActive const): (WTF::RunLoop::TimerBase::ScheduledTask::deactivate): (WTF::RunLoop::RunLoop): (WTF::RunLoop::~RunLoop): (WTF::RunLoop::populateTasks): (WTF::RunLoop::runImpl): (WTF::RunLoop::run): (WTF::RunLoop::iterate): (WTF::RunLoop::stop): (WTF::RunLoop::wakeUp): (WTF::RunLoop::schedule): (WTF::RunLoop::scheduleAndWakeUp): (WTF::RunLoop::dispatchAfter): (WTF::RunLoop::TimerBase::TimerBase): (WTF::RunLoop::TimerBase::~TimerBase): (WTF::RunLoop::TimerBase::start): (WTF::RunLoop::TimerBase::stop): (WTF::RunLoop::TimerBase::isActive const): (WTF::RunLoop::TimerBase::secondsUntilFire const): * StitchMarker/wtf/text/ASCIIFastPath.h: Added. (WTF::isAlignedTo): (WTF::isAlignedToMachineWord): (WTF::alignToMachineWord): (WTF::isAllASCII): (WTF::charactersAreAllASCII): (WTF::copyLCharsFromUCharSource): * StitchMarker/wtf/text/AtomicString.cpp: Added. (WTF::AtomicString::convertASCIICase const): (WTF::AtomicString::convertToASCIILowercase const): (WTF::AtomicString::convertToASCIIUppercase const): (WTF::AtomicString::number): (WTF::AtomicString::fromUTF8Internal): (WTF::AtomicString::show const): (WTF::AtomicString::init): * StitchMarker/wtf/text/AtomicString.h: Added. (WTF::AtomicString::AtomicString): (WTF::AtomicString::operator=): (WTF::AtomicString::isHashTableDeletedValue const): (WTF::AtomicString::existingHash const): (WTF::AtomicString::operator const String& const): (WTF::AtomicString::string const): (WTF::AtomicString::impl const): (WTF::AtomicString::is8Bit const): (WTF::AtomicString::characters8 const): (WTF::AtomicString::characters16 const): (WTF::AtomicString::length const): (WTF::AtomicString::operator[] const): (WTF::AtomicString::contains const): (WTF::AtomicString::containsIgnoringASCIICase const): (WTF::AtomicString::find const): (WTF::AtomicString::findIgnoringASCIICase const): (WTF::AtomicString::startsWith const): (WTF::AtomicString::startsWithIgnoringASCIICase const): (WTF::AtomicString::endsWith const): (WTF::AtomicString::endsWithIgnoringASCIICase const): (WTF::AtomicString::toInt const): (WTF::AtomicString::toDouble const): (WTF::AtomicString::toFloat const): (WTF::AtomicString::percentage const): (WTF::AtomicString::isNull const): (WTF::AtomicString::isEmpty const): (WTF::AtomicString::operator NSString* const): (WTF::operator==): (WTF::operator!=): (WTF::nullAtom): (WTF::emptyAtom): (WTF::starAtom): (WTF::xmlAtom): (WTF::xmlnsAtom): (WTF::AtomicString::fromUTF8): (WTF::equalLettersIgnoringASCIICase): (WTF::equalIgnoringASCIICase): (WTF::IntegerToStringConversionTrait::flush): * StitchMarker/wtf/text/AtomicStringImpl.cpp: Added. (WTF::AtomicStringTableLocker::AtomicStringTableLocker): (WTF::stringTable): (WTF::addToStringTable): (WTF::CStringTranslator::hash): (WTF::CStringTranslator::equal): (WTF::CStringTranslator::translate): (WTF::AtomicStringImpl::add): (WTF::HashTranslatorCharBuffer::HashTranslatorCharBuffer): (WTF::UCharBufferTranslator::hash): (WTF::UCharBufferTranslator::equal): (WTF::UCharBufferTranslator::translate): (WTF::HashAndUTF8CharactersTranslator::hash): (WTF::HashAndUTF8CharactersTranslator::equal): (WTF::HashAndUTF8CharactersTranslator::translate): (WTF::SubstringTranslator::translate): (WTF::SubstringTranslator8::hash): (WTF::SubstringTranslator8::equal): (WTF::SubstringTranslator16::hash): (WTF::SubstringTranslator16::equal): (WTF::LCharBufferTranslator::hash): (WTF::LCharBufferTranslator::equal): (WTF::LCharBufferTranslator::translate): (WTF::BufferFromStaticDataTranslator::hash): (WTF::BufferFromStaticDataTranslator::equal): (WTF::BufferFromStaticDataTranslator::translate): (WTF::AtomicStringImpl::addLiteral): (WTF::addSymbol): (WTF::addStatic): (WTF::AtomicStringImpl::addSlowCase): (WTF::AtomicStringImpl::remove): (WTF::AtomicStringImpl::lookUpSlowCase): (WTF::AtomicStringImpl::addUTF8): (WTF::AtomicStringImpl::lookUp): (WTF::AtomicStringImpl::isInAtomicStringTable): * StitchMarker/wtf/text/AtomicStringImpl.h: Added. (WTF::AtomicStringImpl::lookUp): (WTF::AtomicStringImpl::add): (WTF::AtomicStringImpl::addWithStringTableProvider): (WTF::ValueCheck): (WTF::StringBuilder::reallocateBuffer): (WTF::StringBuilder::reserveCapacity): (WTF::StringBuilder::appendUninitialized): (WTF::StringBuilder::appendUninitializedSlow): (WTF::StringBuilder::append): (WTF::StringBuilder::appendNumber): (WTF::StringBuilder::appendECMAScriptNumber): (WTF::StringBuilder::appendFixedWidthNumber): (WTF::StringBuilder::canShrink const): (WTF::StringBuilder::shrinkToFit): (WTF::appendQuotedJSONStringInternalSlow): (WTF::appendQuotedJSONStringInternal): (WTF::StringBuilder::appendQuotedJSONString): * StitchMarker/wtf/text/StringBuilder.h: Added. (WTF::StringBuilder::StringBuilder): (WTF::StringBuilder::append): (WTF::StringBuilder::appendLiteral): (WTF::StringBuilder::toString): (WTF::StringBuilder::toStringPreserveCapacity const): (WTF::StringBuilder::toAtomicString const): (WTF::StringBuilder::length const): (WTF::StringBuilder::isEmpty const): (WTF::StringBuilder::capacity const): (WTF::StringBuilder::operator[] const): (WTF::StringBuilder::characters8 const): (WTF::StringBuilder::characters16 const): (WTF::StringBuilder::is8Bit const): (WTF::StringBuilder::clear): (WTF::StringBuilder::swap): (WTF::StringBuilder::getBufferCharacters): (WTF::StringBuilder::getBufferCharacters): (WTF::equal): (WTF::operator==): (WTF::operator!=): (WTF::IntegerToStringConversionTrait::flush): * StitchMarker/wtf/text/StringCommon.h: Added. (WTF::loadUnaligned): (WTF::equal): (WTF::equalCommon): (WTF::equalIgnoringASCIICase): (WTF::equalIgnoringASCIICaseCommon): (WTF::startsWith): (WTF::startsWithIgnoringASCIICase): (WTF::endsWith): (WTF::endsWithIgnoringASCIICase): (WTF::findIgnoringASCIICase): (WTF::findInner): (WTF::find): (WTF::findCommon): (WTF::equalLettersIgnoringASCIICase): (WTF::hasPrefixWithLettersIgnoringASCIICaseCommon): (WTF::equalLettersIgnoringASCIICaseCommonWithoutLength): (WTF::startsWithLettersIgnoringASCIICaseCommonWithoutLength): (WTF::equalLettersIgnoringASCIICaseCommon): (WTF::startsWithLettersIgnoringASCIICaseCommon): * StitchMarker/wtf/text/StringConcatenate.h: Added. (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::StringTypeAdapter::length): (WTF::StringTypeAdapter::is8Bit): (WTF::StringTypeAdapter::writeTo const): (WTF::StringTypeAdapter::toString const): (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::StringTypeAdapter::length const): (WTF::StringTypeAdapter::is8Bit const): (WTF::StringTypeAdapter::writeTo const): (WTF::StringTypeAdapter::toString const): (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::StringTypeAdapter>::StringTypeAdapter): (WTF::StringTypeAdapter>::length const): (WTF::StringTypeAdapter>::is8Bit const): (WTF::StringTypeAdapter>::writeTo const): (WTF::StringTypeAdapter>::toString const): (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::StringTypeAdapter::length const): (WTF::StringTypeAdapter::is8Bit const): (WTF::StringTypeAdapter::writeTo const): (WTF::StringTypeAdapter::toString const): (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::sumWithOverflow): (WTF::are8Bit): (WTF::makeStringAccumulator): (WTF::tryMakeStringFromAdapters): (WTF::tryMakeString): (WTF::makeString): * StitchMarker/wtf/text/StringHash.h: Added. (WTF::HashTraits::isEmptyValue): (WTF::HashTraits::customDeleteBucket): (WTF::StringHash::hash): (WTF::StringHash::equal): (WTF::ASCIICaseInsensitiveHash::foldCase): (WTF::ASCIICaseInsensitiveHash::hash): (WTF::ASCIICaseInsensitiveHash::equal): (WTF::AlreadyHashed::hash): (WTF::AlreadyHashed::avoidDeletedValue): (WTF::ASCIICaseInsensitiveStringViewHashTranslator::hash): (WTF::ASCIICaseInsensitiveStringViewHashTranslator::equal): * StitchMarker/wtf/text/StringImpl.cpp: Added. (WTF::StringStats::removeString): (WTF::StringStats::printStats): (WTF::StringImpl::~StringImpl): (WTF::StringImpl::destroy): (WTF::StringImpl::createFromLiteral): (WTF::StringImpl::createWithoutCopying): (WTF::StringImpl::createUninitializedInternal): (WTF::StringImpl::createUninitializedInternalNonEmpty): (WTF::StringImpl::createUninitialized): (WTF::StringImpl::reallocateInternal): (WTF::StringImpl::reallocate): (WTF::StringImpl::createInternal): (WTF::StringImpl::create): (WTF::StringImpl::create8BitIfPossible): (WTF::StringImpl::containsOnlyWhitespace): (WTF::StringImpl::substring): (WTF::StringImpl::characterStartingAt): (WTF::StringImpl::convertToLowercaseWithoutLocale): (WTF::StringImpl::convertToLowercaseWithoutLocaleStartingAtFailingIndex8Bit): (WTF::StringImpl::convertToUppercaseWithoutLocale): (WTF::needsTurkishCasingRules): (WTF::StringImpl::convertToLowercaseWithLocale): (WTF::StringImpl::convertToUppercaseWithLocale): (WTF::StringImpl::foldCase): (WTF::StringImpl::convertASCIICase): (WTF::StringImpl::convertToASCIILowercase): (WTF::StringImpl::convertToASCIIUppercase): (WTF::StringImpl::stripMatchedCharacters): (WTF::UCharPredicate::UCharPredicate): (WTF::UCharPredicate::operator() const): (WTF::SpaceOrNewlinePredicate::operator() const): (WTF::StringImpl::stripWhiteSpace): (WTF::StringImpl::removeCharacters): (WTF::StringImpl::simplifyMatchedCharactersToSpace): (WTF::StringImpl::simplifyWhiteSpace): (WTF::StringImpl::toIntStrict): (WTF::StringImpl::toUIntStrict): (WTF::StringImpl::toInt64Strict): (WTF::StringImpl::toUInt64Strict): (WTF::StringImpl::toIntPtrStrict): (WTF::StringImpl::toInt): (WTF::StringImpl::toUInt): (WTF::StringImpl::toInt64): (WTF::StringImpl::toUInt64): (WTF::StringImpl::toIntPtr): (WTF::StringImpl::toDouble): (WTF::StringImpl::toFloat): (WTF::equalCompatibilityCaseless): (WTF::StringImpl::find): (WTF::StringImpl::findIgnoringCase): (WTF::findIgnoringCaseInner): (WTF::StringImpl::findIgnoringASCIICase const): (WTF::StringImpl::reverseFind): (WTF::reverseFindInner): (WTF::reverseFindIgnoringCaseInner): (WTF::StringImpl::reverseFindIgnoringCase): (WTF::equalInner): (WTF::StringImpl::startsWith const): (WTF::StringImpl::startsWithIgnoringASCIICase const): (WTF::StringImpl::hasInfixStartingAt const): (WTF::StringImpl::endsWith): (WTF::StringImpl::endsWithIgnoringASCIICase const): (WTF::StringImpl::endsWith const): (WTF::StringImpl::hasInfixEndingAt const): (WTF::StringImpl::replace): (WTF::equal): (WTF::equalInternal): (WTF::equalIgnoringNullity): (WTF::equalIgnoringASCIICase): (WTF::equalIgnoringASCIICaseNonNull): (WTF::StringImpl::defaultWritingDirection): (WTF::StringImpl::adopt): (WTF::StringImpl::sizeInBytes const): (WTF::putUTF8Triple): (WTF::StringImpl::utf8Impl): (WTF::StringImpl::utf8ForCharacters): (WTF::StringImpl::utf8ForRange const): (WTF::StringImpl::utf8 const): (WTF::StringImpl::hashSlowCase const): (WTF::StringImpl::concurrentHash const): * StitchMarker/wtf/text/StringImpl.h: Added. (WTF::StringStats::add8BitString): (WTF::StringStats::add16BitString): (WTF::StringImplShape::StringImplShape): (WTF::StringImpl::StringImpl): (WTF::StringImpl::create8BitIfPossible): (WTF::StringImpl::create): (WTF::StringImpl::createSubstringSharingImpl): (WTF::StringImpl::createFromLiteral): (WTF::StringImpl::tryCreateUninitialized): (WTF::StringImpl::flagsOffset): (WTF::StringImpl::flagIs8Bit): (WTF::StringImpl::flagIsAtomic): (WTF::StringImpl::flagIsSymbol): (WTF::StringImpl::maskStringKind): (WTF::StringImpl::dataOffset): (WTF::StringImpl::adopt): (WTF::StringImpl::length const): (WTF::StringImpl::lengthMemoryOffset): (WTF::StringImpl::is8Bit const): (WTF::StringImpl::characters8 const): (WTF::StringImpl::characters16 const): (WTF::StringImpl::cost const): (WTF::StringImpl::costDuringGC): (WTF::StringImpl::stringKind const): (WTF::StringImpl::isSymbol const): (WTF::StringImpl::isAtomic const): (WTF::StringImpl::setIsAtomic): (WTF::StringImpl::isSubString const): (WTF::StringImpl::setHash const): (WTF::StringImpl::rawHash const): (WTF::StringImpl::hasHash const): (WTF::StringImpl::existingHash const): (WTF::StringImpl::hash const): (WTF::StringImpl::isStatic const): (WTF::StringImpl::refCount const): (WTF::StringImpl::hasOneRef const): (WTF::StringImpl::hasAtLeastOneRef const): (WTF::StringImpl::ref): (WTF::StringImpl::deref): (WTF::StringImpl::StaticStringImpl::StaticStringImpl): (WTF::StringImpl::StaticStringImpl::operator StringImpl&): (WTF::StringImpl::empty): (WTF::StringImpl::copyChars): (WTF::StringImpl::at const): (WTF::StringImpl::operator[] const): (WTF::StringImpl::find): (WTF::StringImpl::findIgnoringCase): (WTF::StringImpl::startsWith): (WTF::StringImpl::startsWith const): (WTF::StringImpl::endsWith const): (WTF::StringImpl::replace): (WTF::StringImpl::stringStats): (WTF::StringImpl::allocationSize): (WTF::StringImpl::tailOffset): (WTF::StringImpl::requiresCopy const): (WTF::StringImpl::tailPointer const): (WTF::StringImpl::tailPointer): (WTF::StringImpl::substringBuffer const): (WTF::StringImpl::substringBuffer): (WTF::StringImpl::bufferOwnership const): (WTF::StringImpl::assertHashIsCorrect): (WTF::ValueCheck): (WTF::StringImpl::constructInternal): (WTF::StringImpl::characters const): (WTF::StringImpl::characters const): (WTF::equal): (WTF::find): (WTF::reverseFindLineTerminator): (WTF::reverseFind): (WTF::equalIgnoringNullity): (WTF::codePointCompare): (WTF::codePointCompare8): (WTF::codePointCompare16): (WTF::codePointCompare8To16): (WTF::isSpaceOrNewline): (WTF::lengthOfNullTerminatedString): (WTF::StringImpl::isolatedCopy const): (WTF::equalIgnoringASCIICase): (WTF::startsWithLettersIgnoringASCIICase): (WTF::equalLettersIgnoringASCIICase): * StitchMarker/wtf/text/StringOperators.h: Added. (WTF::StringAppend::StringAppend): (WTF::StringAppend::operator String const): (WTF::StringAppend::operator AtomicString const): (WTF::StringAppend::is8Bit): (WTF::StringAppend::writeTo): (WTF::StringAppend::length): (WTF::operator+): * StitchMarker/wtf/text/StringView.cpp: Added. (WTF::StringView::containsIgnoringASCIICase const): (WTF::StringView::findIgnoringASCIICase const): (WTF::StringView::startsWith const): (WTF::StringView::startsWithIgnoringASCIICase const): (WTF::StringView::endsWith const): (WTF::StringView::endsWithIgnoringASCIICase const): (WTF::StringView::utf8 const): (WTF::StringView::find const): (WTF::StringView::SplitResult::Iterator::findNextSubstring): (WTF::StringView::SplitResult::Iterator::operator++): (WTF::StringView::GraphemeClusters::Iterator::Impl::Impl): (WTF::StringView::GraphemeClusters::Iterator::Impl::operator++): (WTF::StringView::GraphemeClusters::Iterator::Impl::operator* const): (WTF::StringView::GraphemeClusters::Iterator::Impl::operator== const): (WTF::StringView::GraphemeClusters::Iterator::Impl::computeIndexEnd): (WTF::StringView::GraphemeClusters::Iterator::Iterator): (WTF::StringView::GraphemeClusters::Iterator::~Iterator): (WTF::StringView::GraphemeClusters::Iterator::operator++): (WTF::StringView::GraphemeClusters::Iterator::operator* const): (WTF::StringView::GraphemeClusters::Iterator::operator== const): (WTF::StringView::GraphemeClusters::Iterator::operator!= const): (WTF::StringView::UnderlyingString::UnderlyingString): (WTF::StringView::invalidate): (WTF::StringView::underlyingStringIsValid const): (WTF::StringView::adoptUnderlyingString): (WTF::StringView::setUnderlyingString): * StitchMarker/wtf/text/StringView.h: Added. (WTF::StringView::left const): (WTF::StringView::right const): (WTF::StringView::underlyingStringIsValid const): (WTF::StringView::setUnderlyingString): (WTF::operator==): (WTF::operator!=): (WTF::StringView::StringView): (WTF::StringView::~StringView): (WTF::StringView::operator=): (WTF::StringView::initialize): (WTF::StringView::clear): (WTF::StringView::empty): (WTF::StringView::characters8 const): (WTF::StringView::characters16 const): (WTF::StringView::UpconvertedCharacters::operator const UChar* const): (WTF::StringView::UpconvertedCharacters::get const): (WTF::StringView::upconvertedCharacters const): (WTF::StringView::isNull const): (WTF::StringView::isEmpty const): (WTF::StringView::length const): (WTF::StringView::operator bool const): (WTF::StringView::is8Bit const): (WTF::StringView::substring const): (WTF::StringView::operator[] const): (WTF::StringView::contains const): (WTF::StringView::getCharactersWithUpconvert const): (WTF::StringView::UpconvertedCharacters::UpconvertedCharacters): (WTF::StringView::toString const): (WTF::StringView::toAtomicString const): (WTF::StringView::toExistingAtomicString const): (WTF::StringView::toFloat const): (WTF::StringView::toInt const): (WTF::StringView::toIntStrict const): (WTF::StringView::toStringWithoutCopying const): (WTF::StringView::find const): (WTF::StringView::reverseFind const): (WTF::StringView::invalidate): (WTF::StringTypeAdapter::StringTypeAdapter): (WTF::StringTypeAdapter::length): (WTF::StringTypeAdapter::is8Bit): (WTF::StringTypeAdapter::writeTo): (WTF::StringTypeAdapter::toString const): (WTF::append): (WTF::equal): (WTF::equalIgnoringASCIICase): (WTF::StringView::graphemeClusters const): (WTF::StringView::codePoints const): (WTF::StringView::codeUnits const): (WTF::StringView::GraphemeClusters::GraphemeClusters): (WTF::StringView::GraphemeClusters::begin const): (WTF::StringView::GraphemeClusters::end const): (WTF::StringView::CodePoints::CodePoints): (WTF::StringView::CodePoints::Iterator::Iterator): (WTF::StringView::CodePoints::Iterator::operator++): (WTF::StringView::CodePoints::Iterator::operator=): (WTF::StringView::CodePoints::Iterator::operator* const): (WTF::StringView::CodePoints::Iterator::operator== const): (WTF::StringView::CodePoints::Iterator::operator!= const): (WTF::StringView::CodePoints::begin const): (WTF::StringView::CodePoints::end const): (WTF::StringView::CodeUnits::CodeUnits): (WTF::StringView::CodeUnits::Iterator::Iterator): (WTF::StringView::CodeUnits::Iterator::operator++): (WTF::StringView::CodeUnits::Iterator::operator* const): (WTF::StringView::CodeUnits::Iterator::operator== const): (WTF::StringView::CodeUnits::Iterator::operator!= const): (WTF::StringView::CodeUnits::begin const): (WTF::StringView::CodeUnits::end const): (WTF::StringView::split const): (WTF::StringView::SplitResult::SplitResult): (WTF::StringView::SplitResult::begin const): (WTF::StringView::SplitResult::end const): (WTF::StringView::SplitResult::Iterator::Iterator): (WTF::StringView::SplitResult::Iterator::operator* const): (WTF::StringView::SplitResult::Iterator::operator== const): (WTF::StringView::SplitResult::Iterator::operator!= const): (WTF::equalLettersIgnoringASCIICase): * StitchMarker/wtf/text/SymbolImpl.cpp: Added. (WTF::SymbolImpl::nextHashForSymbol): (WTF::SymbolImpl::create): (WTF::SymbolImpl::createNullSymbol): (WTF::PrivateSymbolImpl::create): (WTF::PrivateSymbolImpl::createNullSymbol): (WTF::RegisteredSymbolImpl::create): * StitchMarker/wtf/text/SymbolImpl.h: Added. (WTF::SymbolImpl::hashForSymbol const): (WTF::SymbolImpl::isNullSymbol const): (WTF::SymbolImpl::isRegistered const): (WTF::SymbolImpl::isPrivate const): (WTF::SymbolImpl::StaticSymbolImpl::StaticSymbolImpl): (WTF::SymbolImpl::StaticSymbolImpl::operator SymbolImpl&): (WTF::SymbolImpl::SymbolImpl): (WTF::PrivateSymbolImpl::PrivateSymbolImpl): (WTF::RegisteredSymbolImpl::symbolRegistry const): (WTF::RegisteredSymbolImpl::clearSymbolRegistry): (WTF::RegisteredSymbolImpl::RegisteredSymbolImpl): (WTF::StringImpl::symbolAwareHash const): (WTF::StringImpl::existingSymbolAwareHash const): (WTF::SymbolImpl::symbolRegistry const): (WTF::SymbolImpl::asRegisteredSymbolImpl): (WTF::ValueCheck::Hash::hash): (WTF::DefaultHash::Hash::equal): (WTF::HashTraits::isEmptyValue): (WTF::SymbolRegistryKey::SymbolRegistryKey): * StitchMarker/wtf/text/TextBreakIterator.cpp: Added. (WTF::mapModeToBackingIterator): (WTF::TextBreakIterator::TextBreakIterator): (WTF::initializeIterator): (WTF::setTextForIterator): (WTF::setContextAwareTextForIterator): (WTF::wordBreakIterator): (WTF::sentenceBreakIterator): (WTF::acquireLineBreakIterator): (WTF::releaseLineBreakIterator): (WTF::openLineBreakIterator): (WTF::closeLineBreakIterator): (WTF::getNonSharedCharacterBreakIterator): (WTF::cacheNonSharedCharacterBreakIterator): (WTF::NonSharedCharacterBreakIterator::NonSharedCharacterBreakIterator): (WTF::NonSharedCharacterBreakIterator::~NonSharedCharacterBreakIterator): (WTF::isWordTextBreak): (WTF::numGraphemeClusters): (WTF::numCharactersInGraphemeClusters): * StitchMarker/wtf/text/TextBreakIterator.h: Added. (WTF::TextBreakIterator::preceding const): (WTF::TextBreakIterator::following const): (WTF::TextBreakIterator::isBoundary const): (WTF::TextBreakIterator::setText): (WTF::TextBreakIterator::mode const): (WTF::TextBreakIterator::locale const): (WTF::TextBreakIteratorCache::singleton): (WTF::TextBreakIteratorCache::take): (WTF::TextBreakIteratorCache::put): (WTF::TextBreakIteratorCache::TextBreakIteratorCache): (WTF::CachedTextBreakIterator::CachedTextBreakIterator): (WTF::CachedTextBreakIterator::~CachedTextBreakIterator): (WTF::CachedTextBreakIterator::preceding const): (WTF::CachedTextBreakIterator::following const): (WTF::CachedTextBreakIterator::isBoundary const): (WTF::LazyLineBreakIterator::LazyLineBreakIterator): (WTF::LazyLineBreakIterator::~LazyLineBreakIterator): (WTF::LazyLineBreakIterator::stringView const): (WTF::LazyLineBreakIterator::mode const): (WTF::LazyLineBreakIterator::lastCharacter const): (WTF::LazyLineBreakIterator::secondToLastCharacter const): (WTF::LazyLineBreakIterator::setPriorContext): (WTF::LazyLineBreakIterator::updatePriorContext): (WTF::LazyLineBreakIterator::resetPriorContext): (WTF::LazyLineBreakIterator::priorContextLength const): (WTF::LazyLineBreakIterator::get): (WTF::LazyLineBreakIterator::resetStringAndReleaseIterator): (WTF::NonSharedCharacterBreakIterator::operator UBreakIterator* const): * StitchMarker/wtf/text/TextBreakIteratorInternalICU.h: Added. * StitchMarker/wtf/text/UniquedStringImpl.h: Added. (WTF::UniquedStringImpl::UniquedStringImpl): (WTF::ValueCheck const): (WTF::String::characters const): (WTF::String::containsOnlyLatin1 const): (WTF::String::operator NSString * const): (WTF::nsStringNilIfEmpty): (WTF::String::containsOnlyASCII const): (WTF::codePointCompareLessThan): (WTF::appendNumber): (WTF::isAllSpecialCharacters): (WTF::isSpecialCharacter const): (WTF::ASCIILiteral::ASCIILiteral): (WTF::ASCIILiteral::operator const char*): (WTF::equalLettersIgnoringASCIICase): (WTF::equalIgnoringASCIICase): (WTF::startsWithLettersIgnoringASCIICase): (WTF::IntegerToStringConversionTrait::flush): * StitchMarker/wtf/text/icu/TextBreakIteratorICU.h: Added. (WTF::caretRules): (WTF::TextBreakIteratorICU::set8BitText): (WTF::TextBreakIteratorICU::TextBreakIteratorICU): (WTF::TextBreakIteratorICU::operator=): (WTF::TextBreakIteratorICU::~TextBreakIteratorICU): (WTF::TextBreakIteratorICU::setText): (WTF::TextBreakIteratorICU::preceding const): (WTF::TextBreakIteratorICU::following const): (WTF::TextBreakIteratorICU::isBoundary const): * StitchMarker/wtf/text/icu/UTextProvider.cpp: Added. (WTF::fixPointer): (WTF::uTextCloneImpl): * StitchMarker/wtf/text/icu/UTextProvider.h: Added. (WTF::uTextProviderContext): (WTF::initializeContextAwareUTextProvider): (WTF::uTextAccessPinIndex): (WTF::uTextAccessInChunkOrOutOfRange): * StitchMarker/wtf/text/icu/UTextProviderLatin1.cpp: Added. (WTF::uTextLatin1Clone): (WTF::uTextLatin1NativeLength): (WTF::uTextLatin1Access): (WTF::uTextLatin1Extract): (WTF::uTextLatin1MapOffsetToNative): (WTF::uTextLatin1MapNativeIndexToUTF16): (WTF::uTextLatin1Close): (WTF::openLatin1UTextProvider): (WTF::textLatin1ContextAwareGetCurrentContext): (WTF::textLatin1ContextAwareMoveInPrimaryContext): (WTF::textLatin1ContextAwareSwitchToPrimaryContext): (WTF::textLatin1ContextAwareMoveInPriorContext): (WTF::textLatin1ContextAwareSwitchToPriorContext): (WTF::uTextLatin1ContextAwareClone): (WTF::uTextLatin1ContextAwareNativeLength): (WTF::uTextLatin1ContextAwareAccess): (WTF::uTextLatin1ContextAwareExtract): (WTF::uTextLatin1ContextAwareClose): (WTF::openLatin1ContextAwareUTextProvider): * StitchMarker/wtf/text/icu/UTextProviderLatin1.h: Added. * StitchMarker/wtf/text/icu/UTextProviderUTF16.cpp: Added. (WTF::textUTF16ContextAwareGetCurrentContext): (WTF::textUTF16ContextAwareMoveInPrimaryContext): (WTF::textUTF16ContextAwareSwitchToPrimaryContext): (WTF::textUTF16ContextAwareMoveInPriorContext): (WTF::textUTF16ContextAwareSwitchToPriorContext): (WTF::uTextUTF16ContextAwareClone): (WTF::uTextUTF16ContextAwareNativeLength): (WTF::uTextUTF16ContextAwareAccess): (WTF::uTextUTF16ContextAwareExtract): (WTF::uTextUTF16ContextAwareClose): (WTF::openUTF16ContextAwareUTextProvider): * StitchMarker/wtf/text/icu/UTextProviderUTF16.h: Added. * StitchMarker/wtf/text/unix/TextBreakIteratorInternalICUUnix.cpp: Added. (WTF::currentSearchLocaleID): (WTF::currentTextBreakLocaleID): * StitchMarker/wtf/unicode/CharacterNames.h: Added. * StitchMarker/wtf/unicode/UTF8.cpp: Added. (WTF::Unicode::inlineUTF8SequenceLengthNonASCII): (WTF::Unicode::inlineUTF8SequenceLength): (WTF::Unicode::UTF8SequenceLength): (WTF::Unicode::decodeUTF8Sequence): (WTF::Unicode::convertLatin1ToUTF8): (WTF::Unicode::convertUTF16ToUTF8): (WTF::Unicode::isLegalUTF8): (WTF::Unicode::readUTF8Sequence): (WTF::Unicode::convertUTF8ToUTF16): (WTF::Unicode::calculateStringHashAndLengthFromUTF8MaskingTop8Bits): (WTF::Unicode::equalUTF16WithUTF8): (WTF::Unicode::equalLatin1WithUTF8): * StitchMarker/wtf/unicode/UTF8.h: Added. 2017-08-22 Ryosuke Niwa Commit the change meant to be included in the previous commit. * Speedometer/resources/main.js: (startBenchmark): 2017-08-22 Ryosuke Niwa Speedometer 2.0: Make it possible to change the iteration count via query string https://bugs.webkit.org/show_bug.cgi?id=175811 Reviewed by Saam Barati. Added the support for specifying the iteration count by "iterationCount" query parameter, and replaced "ms" query parameter by "unit=ms". Finally, reduced the number of iterations from 20 to 10 to reduce the time needed to run the benchmark since Speedometer 2.0 contains more than twice the number of libraries and frameworks than Speedometer 1.0. * Speedometer/resources/main.js: (window.benchmarkClient.didFinishLastIteration): (startBenchmark): 2017-08-22 Mathias Bynens Speedometer: Add missing stylesheet to Angular example https://bugs.webkit.org/show_bug.cgi?id=175820 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/angular/dist/styles.d41d8cd98f00b204e980.bundle.css: Added. 2017-08-22 Ryosuke Niwa Speedometer 2.0: Add button to select and unselect all tests to InteractiveRunner.html https://bugs.webkit.org/show_bug.cgi?id=175816 Reviewed by Saam Barati. Added buttons to select and unselect all subtests to aid debugging. * Speedometer/InteractiveRunner.html: (createUIForSuites): 2017-08-18 Ryosuke Niwa REGRESSION(r219640): Speedometer no longer runs on Safari 7 https://bugs.webkit.org/show_bug.cgi?id=175749 Reviewed by Joseph Pecoraro. Use regular string instead of template literal to make the script compatible with older versions of Safari. * Speedometer/resources/benchmark-runner.js: (BenchmarkRunner.prototype._runTest): 2017-08-17 Mathias Bynens Speedometer: Update to modern Vue.js version https://bugs.webkit.org/show_bug.cgi?id=175660 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/README.md: Documented build process. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/config/index.js: Forced relative URLs to avoid breaking the interactive runner. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/*: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/package-lock.json: Added to pin dependencies and make builds deterministic. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/package.json: Update to modern Vue.js version. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/components/Todos.vue: Fix markup error. 2017-08-17 Mathias Bynens Speedometer: Update to modern React/Redux version https://bugs.webkit.org/show_bug.cgi?id=175669 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/react-redux/README.md: Documented build steps. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/*: Updated per build instructions. * Speedometer/resources/todomvc/architecture-examples/react-redux/package-lock.json: Pinned dependencies to make builds deterministic. * Speedometer/resources/todomvc/architecture-examples/react-redux/package.json: Fixed build command. * Speedometer/resources/todomvc/architecture-examples/react-redux/public/index.html: Made title consistent. 2017-08-17 Michael Saboff Add a Unicode test to RexBench that matches non-BMP characters https://bugs.webkit.org/show_bug.cgi?id=175697 Reviewed by JF Bastien. Added a new sub test that simulates 5 card stud poker. This test uses the Unicode playing cards code points, U+1F0A1..U+1F0DE, as the card representation. The scoring of hands is done using three regular expressions, one to check for a flush, one to check for straights and one to check for pairs, three of a kind and four of a kind. * RexBench/UniPoker: Added. * RexBench/UniPoker/benchmark.js: Added. (UniPokerBenchmark): (UniPokerBenchmark.prototype.setup.): (UniPokerBenchmark.prototype.setup.Math.random): (UniPokerBenchmark.prototype.setup): (UniPokerBenchmark.prototype.runOnce): (UniPokerBenchmark.prototype.validate): * RexBench/UniPoker/expected.js: Added. (PlayerExpectation): (PlayerExpectation.prototype.validate): * RexBench/UniPoker/poker.js: Added. (CardDeck): (CardDeck.prototype.newDeck): (CardDeck.prototype.shuffle): (CardDeck.prototype.dealOneCard): (CardDeck.cardRank): (CardDeck.cardName): (Hand): (Hand.prototype.clear): (Hand.prototype.takeCard): (Hand.prototype.score): (Hand.prototype.get rank): (Hand.prototype.toString): (Player): (Player.prototype.scoreHand): (Player.prototype.wonHand): (Player.prototype.get name): (Player.prototype.get hand): (Player.prototype.get wins): (Player.prototype.get handTypeCounts): (playHands): * RexBench/about.html: * RexBench/cli.js: * RexBench/glue.js: (driver.reportResult): * RexBench/index.html: * RexBench/unipoker_benchmark.js: Added. 2017-08-16 Mathias Bynens Speedometer: Update Angular 1 TodoMVC example to v1.6.5 https://bugs.webkit.org/show_bug.cgi?id=175623 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/angularjs/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-resource/angular-resource.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-resource/angular-resource.min.js.map: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-route/angular-route.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-route/angular-route.min.js.map: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular/angular.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular/angular.min.js.map: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-app-css/package.json: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-common/package.json: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/angularjs/package-lock.json: Added to pin dependencies. * Speedometer/resources/todomvc/architecture-examples/angularjs/package.json: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/angularjs/readme.md: Document the build process. 2017-08-16 Mathias Bynens Speedometer: Document Backbone example https://bugs.webkit.org/show_bug.cgi?id=175626 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/backbone/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/backbone/backbone-min.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/backbone/backbone-min.map: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/jquery/dist/jquery.js: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/jquery/dist/jquery.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/jquery/dist/jquery.min.map: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/todomvc-app-css/index.css: Updated per build steps. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/underscore/underscore-min.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/underscore/underscore-min.map: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/package-lock.json: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/readme.md: Documented build steps. 2017-08-15 Michael Saboff Add Offline Assembler parsing test to RexBench https://bugs.webkit.org/show_bug.cgi?id=175581 Reviewed by Saam Barati. This is a port of the JavaScriptCore offline assmebler's lexer, parser, AST and supporting code from Ruby to JavaScript turned into a benchmark. The benchmark timing includes parsing through AST. The validation processing time is not part of the benchmark measurement. The input data is the current tip of tree LLInt .asm source files. Those file were converted to JavaScript using the python script, convert_asm_to_js.py. There is also a new JavaScript file, generate_expected.js, to create the expected output JavaScript file. * RexBench/OfflineAssembler: Added. * RexBench/OfflineAssembler/ast.js: Added. * RexBench/OfflineAssembler/instructions.js: Added. * RexBench/OfflineAssembler/parser.js: Added. * RexBench/OfflineAssembler/registers.js: Added. These are JavaScript translation of the Ruby Offline Assembler. Code not needed for the benchmark was not translated and therefore missing. * RexBench/OfflineAssembler/InitBytecodes.asm: Added. * RexBench/OfflineAssembler/InitBytecodes.js: Added. * RexBench/OfflineAssembler/LowLevelInterpreter.asm: Added. * RexBench/OfflineAssembler/LowLevelInterpreter.js: Added. * RexBench/OfflineAssembler/LowLevelInterpreter32_64.asm: Added. * RexBench/OfflineAssembler/LowLevelInterpreter32_64.js: Added. * RexBench/OfflineAssembler/LowLevelInterpreter64.asm: Added. * RexBench/OfflineAssembler/LowLevelInterpreter64.js: Added. Copies of the current LLInt source and conversion to JavaScript. * RexBench/OfflineAssembler/file.js: Added. (File): (File.open): (File.prototype.read): Mock File class used to simulate filesystem access. * RexBench/OfflineAssembler/expected.js: Added. Expected output of the AST dumped and split into individual lines. * RexBench/OfflineAssembler/benchmark.js: Added. (OfflineAssemblerBenchmark): (OfflineAssemblerBenchmark.prototype.runOnce): (OfflineAssemblerBenchmark.prototype.validate): Benchmark sub class for this test. * RexBench/OfflineAssembler/convert_asm_to_js.py: Added. (convertFile): Converts .asm into .js files compatible to the benchmark. * RexBench/OfflineAssembler/generate_expected.js: Added. Converts AST output into the expected file format. * RexBench/about.html: Added description of this sub-benchmark test. * RexBench/cli.js: * RexBench/glue.js: * RexBench/index.html: * RexBench/offline_assembler_benchmark.js: Added. Updates to add this sub-benchmark. 2017-08-09 Myles C. Maxfield font-fallback-font-family.html is failing on perf bots https://bugs.webkit.org/show_bug.cgi?id=174989 Unreviewed. * Layout/resources/font-fallback-font-family.html: 2017-08-09 Michael Saboff Unreviewed build fix. Added missing files. * RexBench/Octane2/benchmark.js: Added. (Octane2RegExpBenchmark): (Octane2RegExpBenchmark.prototype.setup.): (Octane2RegExpBenchmark.prototype.setup.Math.random): (Octane2RegExpBenchmark.prototype.setup): (Octane2RegExpBenchmark.prototype.runOnce): (Octane2RegExpBenchmark.prototype.tearDown): * RexBench/SunSpider/benchmark.js: Added. (RegexDNABenchmark): (RegexDNABenchmark.prototype.runOnce): (RegexDNABenchmark.prototype.validate): 2017-08-09 Michael Saboff Rex Bench doesn't work from the command line https://bugs.webkit.org/show_bug.cgi?id=175349 Reviewed by Saam Barati. Fixed cli.js to have the same set of benchmarks and .js files as the web page driver. Refactored the way benchmarks are run using a new Benchmark base class. That class will run the benchmark as well. Eliminated the various runBenchmark() functions that were used for individual tests. This refactoring was threaded into the web page driver as well. Changed the iteration counts on many of the individual benchmarks. Also changed the inner loop count for the flight planner test. Eliminated Octane2/base.js as it isn't needed to run Octane2/RegExp with the new test harness. Eliminated other dead code in Octane2/regexp.js. * RexBench/Basic/benchmark.js: (BasicBenchmark): (BasicBenchmark.prototype.runIteration): Deleted. (runBenchmark): Deleted. * RexBench/FlightPlanner/benchmark.js: (FlightPlannerBenchmark): (FlightPlannerBenchmark.prototype.runOnce): (this.performance.performance.now.currentTime): Deleted. (else.this.preciseTime.currentTime): Deleted. (else.currentTime): Deleted. (FlightPlannerBenchmark.prototype.runIteration): Deleted. (FlightPlannerBenchmark.prototype.checkResults): Deleted. (runBenchmark): Deleted. * RexBench/Octane2/base.js: Removed. * RexBench/Octane2/regexp.js: * RexBench/basic_benchmark.js: * RexBench/benchmark.js: Added. (this.performance.performance.now.currentTime): (else.this.preciseTime.currentTime): (else.currentTime): (Benchmark): (Benchmark.prototype.runIterations): (Benchmark.prototype.setup): (Benchmark.prototype.runOnce): (Benchmark.prototype.validate): (Benchmark.prototype.tearDown): * RexBench/cli.js: * RexBench/flightplan_benchmark.js: * RexBench/flightplan_unicode_benchmark.js: * RexBench/octane2_benchmark.js: * RexBench/stats.js: (Stats.prototype.toString.return.span.0.span.span): * RexBench/sunspider_benchmark.js: 2017-08-07 Michael Saboff Use more accurate Russian keywords for RexBench/FlightPlanner Unicode mode https://bugs.webkit.org/show_bug.cgi?id=175298 Reviewed by Saam Barati. With the help of Alexey Proskuryakov updated the Russian keywords. * RexBench/FlightPlanner/use_unicode.js: 2017-08-07 Mathias Bynens Speedometer: Update to modern production Ember version https://bugs.webkit.org/show_bug.cgi?id=175278 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/emberjs/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/README.md: Documented build process. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/components/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/index.html: Made title consistent. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/instance-initializers/global.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/models/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/router.js: Update to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/routes/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/services/repo.js: Update to latest version * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/styles/app.css: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/components/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/bower.json: Update to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/config/environment.js: Update to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/dist/*: Added generated files per build instructions. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/package-lock.json: Pinned dependencies. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/package.json: Update to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/.jshintrc: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/module-for-acceptance.js: Updated to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/start-app.js: Updated to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/index.html: Updated to latest version. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/integration/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/unit/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/vendor/.gitkeep: Added. 2017-08-07 Michael Saboff REGRESSION(r220307): Perf bot failure trying to run RexBench tests https://bugs.webkit.org/show_bug.cgi?id=175289 Reviewed by Filip Pizlo. Add RexBench to the list of benchmarks we skip on the perf bots. * Skipped: 2017-08-04 Michael Saboff Create a new JavaScript RegExp benchmark https://bugs.webkit.org/show_bug.cgi?id=175225 Reviewed by JF Bastien. This is a new benchmark for Regular Expressions. It borrows regex-dna from SunSpider, the regexp test from Octane2, the BASIC parser from ARES-6/Basic, and adds a new flight planner benchmark that uses RegExp's for textual parsing. There needs to be some additions and changes to some of the textual content. This includes adding more BASIC programs to the Basic test and increasing keyword usage in the Flight Planner to increase the 16-bit coverage. The intent is to grow this benchmark by adding a JavaScript implementation of the offline assembler lexer and parser as well as adding some targeted micro benchmark tests. * RexBench: Added. * RexBench/Basic: Added. * RexBench/Basic/ast.js: Added. * RexBench/Basic/basic.js: Added. * RexBench/Basic/benchmark.js: Added. * RexBench/Basic/caseless_map.js: Added. * RexBench/Basic/lexer.js: Added. * RexBench/Basic/number.js: Added. * RexBench/Basic/parser.js: Added. * RexBench/Basic/random.js: Added. * RexBench/Basic/state.js: Added. * RexBench/Basic/stress-test.js: Added. * RexBench/Basic/util.js: Added. * RexBench/FlightPlanner: Added. * RexBench/FlightPlanner/airways.js: Added. * RexBench/FlightPlanner/benchmark.js: Added. * RexBench/FlightPlanner/convert-nfdc.py: Added. * RexBench/FlightPlanner/expectations.js: Added. * RexBench/FlightPlanner/flight_planner.js: Added. * RexBench/FlightPlanner/use_unicode.js: Added. * RexBench/FlightPlanner/waypoints.js: Added. * RexBench/Octane2: Added. * RexBench/Octane2/base.js: Added. * RexBench/Octane2/regexp.js: Added. * RexBench/SunSpider: Added. * RexBench/SunSpider/regex-dna.js: Added. * RexBench/about.html: Added. * RexBench/basic_benchmark.js: Added. * RexBench/cli.js: Added. * RexBench/driver.js: Added. * RexBench/flightplan_benchmark.js: Added. * RexBench/flightplan_unicode_benchmark.js: Added. * RexBench/glue.js: Added. * RexBench/index.html: Added. * RexBench/octane2_benchmark.js: Added. * RexBench/results.js: Added. * RexBench/stats.js: Added. * RexBench/styles.css: Added. * RexBench/sunspider_benchmark.js: Added. 2017-07-31 Mathias Bynens Speedometer 2.0: Remove from Angular 4 test https://bugs.webkit.org/show_bug.cgi?id=175004 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/angular/dist/index.html: Remove . * Speedometer/resources/todomvc/architecture-examples/angular/src/index.html: Remove . 2017-07-29 Mathias Bynens Speedometer 2.0: Document vanilla/es2015 build process https://bugs.webkit.org/show_bug.cgi?id=174894 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/vanilla-examples/es2015/README.md: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/index.html: Made title consistent. 2017-07-27 Mathias Bynens Speedometer 2.0: Document Angular 4 build process https://bugs.webkit.org/show_bug.cgi?id=174896 Reviewed by Ryosuke Niwa. This patch documents the build process for the Angular 4 example, pins the dependencies (so that builds are deterministic), and updates the generated files accordingly. * Speedometer/resources/todomvc/architecture-examples/angular/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/*: Update per build instructions. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/app.e2e-spec.ts: Removed unused file. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/app.po.ts: Removed unused file. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/tsconfig.e2e.json: Removed unused file. * Speedometer/resources/todomvc/architecture-examples/angular/package.json: Remove unneeded scripts. * Speedometer/resources/todomvc/architecture-examples/angular/package-lock.json: Added to pin dependencies. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.component.ts: Updated. * Speedometer/resources/todomvc/architecture-examples/angular/src/environments/environment.ts: Updated. * Speedometer/resources/todomvc/architecture-examples/angular/src/index.html: Made title consistent. 2017-07-25 Mathias Bynens Speedometer 2.0: Document es2015-babel-webpack build process https://bugs.webkit.org/show_bug.cgi?id=174252 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/README.md: Added build docs. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/*: Update generated build files. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/package.json: Remove unused items. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/package-lock.json: Added lockfile. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/index.html: Make title consistent. 2017-07-18 Matt Kotsenas Add performance.mark()s around each test step https://bugs.webkit.org/show_bug.cgi?id=174530 Reviewed by Ryosuke Niwa. Add `performance.mark()` around each test step to make analysis simpler. Now each test step can be investigated via dev tools, ETW, etc. * Speedometer/resources/benchmark-runner.js: (BenchmarkRunner.prototype._writeMark): (BenchmarkRunner.prototype._runTest): (BenchmarkRunner.prototype._runTestAndRecordResults): 2017-07-14 Saam Barati Fix ambiguous description text in ARES-6 about the data the benchmark measures https://bugs.webkit.org/show_bug.cgi?id=174510 Rubber stamped by Filip Pizlo. * ARES-6/about.html: 2017-07-07 Mathias Bynens Speedometer 2.0: Fix vanilla JS example https://bugs.webkit.org/show_bug.cgi?id=174246 Reviewed by Ryosuke Niwa. Previously, all TODO items were assigned an ID of `null`. This patch fixes that bug. Manually deleting items now works again. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html: Made title consistent. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/store.js: Fixed bug with deleting items. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/readme.md: Added docs. 2017-07-06 Myles C. Maxfield [Cocoa] Improve performance of font lookups https://bugs.webkit.org/show_bug.cgi?id=173960 Reviewed by Darin Adler. * Layout/font-fallback-font-family.html: Added. * Layout/resources/font-fallback-font-family.html: Added. 2017-06-10 Dan Bernstein Reverted r218056 because it made the IDE reindex constantly. * MediaTime/Configurations/DebugRelease.xcconfig: 2017-06-10 Dan Bernstein [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE https://bugs.webkit.org/show_bug.cgi?id=173223 Reviewed by Sam Weinig. The rebuilds were happening due to a difference in the compiler options that the IDE and xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and specify an appropriate path in CLANG_INDEX_STORE_PATH. * MediaTime/Configurations/DebugRelease.xcconfig: 2017-06-07 Saam Barati ARES-6 incorrectly measures Worst 4 Iterations https://bugs.webkit.org/show_bug.cgi?id=172960 Reviewed by Mark Lam. Version 1.0 of ARES-6 was accidentally measuring the first 4 iterations, instead of the worst 4. This patch fixes the bug and bumps the version to 1.0.1. * ARES-6/glue.js: (driver.reportResult): * ARES-6/results.js: (Results.prototype.reportResult): 2017-06-06 Saam Barati Add a version number to ARES-6 https://bugs.webkit.org/show_bug.cgi?id=172962 Reviewed by Yusuke Suzuki. * ARES-6/glue.js: (driver.reportResult): 2017-06-01 Saam Barati Ensure a good experience for ARES-6 error reporting https://bugs.webkit.org/show_bug.cgi?id=171699 Reviewed by Filip Pizlo and Jon Davis. This patch fixes a bug where we would silently fail running ARES-6. The bug was that we were calling reportError with the wrong |this| value. I also cleaned up a bit of the code around error reporting. We now indicate which test failed, and update the status to reflect that a failure happened. This patch also modifies the CSS a bit to work better on smaller screened devices. The CSS prevents the status from having a line break both when an error is reported and when we're running the benchmark. * ARES-6/driver.js: (Driver): (Driver.prototype.reportError): * ARES-6/results.js: (Results.prototype.reportError): (Results): * ARES-6/styles.css: (.start): (#status): (.failed): (#status.failed): (.test .failed:before): (#magic): (@media only screen and (max-width: 784px)): (.test): (p): (@media only screen and (max-width: 320px)): 2017-05-19 Ryosuke Niwa REGRESSION(r217118): Speedometer 2.0: Flight.js test is broken https://bugs.webkit.org/show_bug.cgi?id=172394 Reviewed by Chris Dumez. Fixed the bug that we were never clearing window.checkLoadedTimeoutId. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js: (newContext.checkLoaded): 2017-05-19 Yusuke Suzuki Add SixSpeed benchmark to PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=172326 Reviewed by Sam Weinig. This patch imports SixSpeed benchmark into WebKit tree. It is a collection of ES6 microbenchmarks. While the scripts are very tiny, it sometimes hits our missing care for optimization. So including it is useful. The benchmark is released under MIT license. * SixSpeed/LICENSE: Added. * SixSpeed/REVISION: Added. * SixSpeed/ReadMe.md: Added. * SixSpeed/tests/.eslintrc: Added. * SixSpeed/tests/arrow-args/arrow-args.es5: Added. * SixSpeed/tests/arrow-args/arrow-args.es6: Added. * SixSpeed/tests/arrow-declare/arrow-declare.es5: Added. * SixSpeed/tests/arrow-declare/arrow-declare.es6: Added. * SixSpeed/tests/arrow/arrow.es5: Added. * SixSpeed/tests/arrow/arrow.es6: Added. * SixSpeed/tests/bindings-compound/bindings-compound.es5: Added. * SixSpeed/tests/bindings-compound/bindings-compound.es6: Added. * SixSpeed/tests/bindings/bindings.es5: Added. * SixSpeed/tests/bindings/bindings.es6: Added. * SixSpeed/tests/classes/classes.es5: Added. * SixSpeed/tests/classes/classes.es6: Added. * SixSpeed/tests/defaults/defaults.es5: Added. * SixSpeed/tests/defaults/defaults.es6: Added. * SixSpeed/tests/destructuring-simple/destructuring-simple.es5: Added. * SixSpeed/tests/destructuring-simple/destructuring-simple.es6: Added. * SixSpeed/tests/destructuring/destructuring.es5: Added. * SixSpeed/tests/destructuring/destructuring.es6: Added. * SixSpeed/tests/for-of-array/for-of-array.es5: Added. * SixSpeed/tests/for-of-array/for-of-array.es6: Added. * SixSpeed/tests/for-of-object/for-of-object.es5: Added. * SixSpeed/tests/for-of-object/for-of-object.es6: Added. * SixSpeed/tests/generator/generator.es5: Added. * SixSpeed/tests/generator/generator.es6: Added. * SixSpeed/tests/map-set-lookup/map-set-lookup.es5: Added. * SixSpeed/tests/map-set-lookup/map-set-lookup.es6: Added. * SixSpeed/tests/map-set-object/map-set-object.es5: Added. * SixSpeed/tests/map-set-object/map-set-object.es6: Added. * SixSpeed/tests/map-set/map-set.es5: Added. * SixSpeed/tests/map-set/map-set.es6: Added. * SixSpeed/tests/map-string/map-string.es5: Added. * SixSpeed/tests/map-string/map-string.es6: Added. * SixSpeed/tests/new-target/defaults.es5: Added. * SixSpeed/tests/new-target/defaults.es6: Added. * SixSpeed/tests/object-assign/object-assign.es5: Added. * SixSpeed/tests/object-assign/object-assign.es6: Added. * SixSpeed/tests/object-literal-ext/object-literal-ext.es5: Added. * SixSpeed/tests/object-literal-ext/object-literal-ext.es6: Added. * SixSpeed/tests/regex-u/regex-u.es5: Added. * SixSpeed/tests/regex-u/regex-u.es6: Added. * SixSpeed/tests/rest/rest.es5: Added. * SixSpeed/tests/rest/rest.es6: Added. * SixSpeed/tests/spread-generator/spread-generator.es5: Added. * SixSpeed/tests/spread-generator/spread-generator.es6: Added. * SixSpeed/tests/spread-literal/spread-literal.es5: Added. * SixSpeed/tests/spread-literal/spread-literal.es6: Added. * SixSpeed/tests/spread/spread.es5: Added. * SixSpeed/tests/spread/spread.es6: Added. * SixSpeed/tests/super/super.es5: Added. * SixSpeed/tests/super/super.es6: Added. * SixSpeed/tests/template_string/template_string.es5: Added. * SixSpeed/tests/template_string/template_string.es6: Added. * SixSpeed/tests/template_string_tag/template_string_tag.es5: Added. * SixSpeed/tests/template_string_tag/template_string_tag.es6: Added. * SixSpeed/wrappers/wrapper.js: (test): 2017-05-19 Ryosuke Niwa Speedometer 2.0: Angular v1 test only deletes the second item https://bugs.webkit.org/show_bug.cgi?id=172353 Reviewed by Antti Koivisto. Like jQuery and Inferno, run querySelector after removing each todo item. * Speedometer/InteractiveRunner.html: Tweaked CSS again. * Speedometer/resources/tests.js: 2017-05-19 Ryosuke Niwa Speedometer 2.0: Elem test isn't updating DOM during the measurement https://bugs.webkit.org/show_bug.cgi?id=172343 Reviewed by Antti Koivisto. Elem test wasn't doing much work because it simply enqueues items into the work queue, which doesn't get executed until the next requestAnimationFrame or setTimeout callback happens. Expose elm's work function as contentWindow.elemWork and make the first use of rAF a synchronous callback just as it would when requestAnimationFrame isn't defined, and make the second use of rAF queue up to an array of callbacks, and have the test runner manually invoke each callback. This increases the runtime of the Elm suite from 100ms to 300ms on Safari. * Speedometer/resources/tests.js: (processElmWorkQueue): Added. A helper which processes Elm's work queue and manually invokes render callbacks. * Speedometer/resources/todomvc/functional-prog-examples/elm/dist/elm.js: 2017-05-18 Ryosuke Niwa Speedometer 2.0: Flight.js test is sometime broken https://bugs.webkit.org/show_bug.cgi?id=172347 Reviewed by Antti Koivisto. The bug was caused by the test runner only waiting for #new-todo, which happens before all other states are updated in the Flight.js dependency example. As done in Speedometer v1, insert a dummy element with id set to appIsReady and wait for this element to appear in the benchmark harness. * Speedometer/resources/tests.js: Wait for #appIsReady. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/main.js: Removed the superflous call to console.log. (checkReady): Added. Insert #appIsReady if checkLoaded is no longer running at 50ms interval. Because this could happen asynchronously, we check the absense of checkLoadedTimeoutId Ωevery 10ms for 5 times for the total duration of 50ms. If checkLoadedTimeoutId was never present, we call it ready. If we ever observed the presence of checkLoadedTimeoutId, wait another 50ms and start over. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js: (.newContext.checkLoaded): Expose checkLoadedTimeoutId which is a timer ID used to check the dependency. 2017-05-19 Ryosuke Niwa Speedometer 2.0: jQuery and Inferno tests don't delete all ToDo items https://bugs.webkit.org/show_bug.cgi?id=172341 Reviewed by Antti Koivisto. The bug was caused by the fact TodoMVC examples for jQuery and Inferno JS create a new button to delete the todo item each time todo items are rendered. Fixed the bug by dynamically look for .destroy using querySelector for each item. Also moved the deletion of the iframe from the end of each test suite to the beginning of each suite. This will make debugging the issue like this easier on InteractiveRunner.html since the iframe will stick around after stepping the last item in the suite. * Speedometer/InteractiveRunner.html: Tweaked the CSS to make buttons to "Step" and "Run" always visible even if the list of suites and subtests are too long to fit in the viewport. * Speedometer/resources/benchmark-runner.js: (BenchmarkRunner.prototype.step): (BenchmarkRunner.prototype._runTestAndRecordResults): * Speedometer/resources/tests.js: Fixed the bug for jQuery and Inferno. In the case of jQuery we also have to fix the code for checking every ToDo item as completed as well. 2017-05-19 Ryosuke Niwa Speedometer 2.0: Vanilla JS test doesn't mark all todo items as completed https://bugs.webkit.org/show_bug.cgi?id=172348 Reviewed by Antti Koivisto. The bug was caused by the in-memory store class using the milisecond precision timestamp as an ID. Because we inserts 50 items all at once, this can result in multiple data items sharing a single ID. Fixed the bug by using a mononotically increasing ID instead. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/store.js: (Store.prototype.save): 2017-05-18 Ryosuke Niwa REGRESSION (r216694 - 216712): Performance test Speedometer/Full.html is failing https://bugs.webkit.org/show_bug.cgi?id=172077 Reviewed by Chris Dumez. Rename Full.html to index.html to match the convention of other benchmarks. * Speedometer/index.html: Renamed from PerformanceTests/Speedometer/Full.html. 2017-05-18 Addy Osmani Speedometer: check-in missing React TodoMVC dependency https://bugs.webkit.org/show_bug.cgi?id=172213 Reviewed by Ryosuke Niwa. * Speedometer/resources/todomvc/architecture-examples/react/index.html: fix director.min.js path. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/director/director.min.js: Added. 2017-05-17 Addy Osmani Speedometer: adjust Ember TodoMVC to use full path https://bugs.webkit.org/show_bug.cgi?id=172211 Reviewed by Ryosuke Niwa. * Speedometer/resources/tests.js: use full path to Ember TodoMVC app. 2017-05-16 Addy Osmani Update to Speedometer 2.0 w/updated frameworks + new workloads https://bugs.webkit.org/show_bug.cgi?id=170513 Reviewed by Ryosuke Niwa. Refresh test runner and fix apps to work with it. * Speedometer/InteractiveRunner.html: (parseQueryString): Adds support for startAutomatically query parameter. * Speedometer/resources/tests.js: (triggerEnter): Refactor event triggering behavior for tests. * Speedometer/resources/todomvc/architecture-examples/angular/dist/index.html: (CSS): Drop reference to extraneous stylesheet in Angular TodoMVC. * Speedometer/resources/todomvc/architecture-examples/emberjs/assets/todomvc.js: * Speedometer/resources/todomvc/architecture-examples/emberjs/index.html: (base): Enable Ember TodoMVC to be run from any directory/level. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/services/memory.js: (localStorageMemory): Correct import path and switch to window.localStorageMemory to fix Ember failures. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/services/repo.js: * Speedometer/resources/todomvc/architecture-examples/emberjs/tests/index.html: * Speedometer/resources/todomvc/architecture-examples/jquery/index.html: * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/LICENSE: Added. (LICENSE): Add missing metadata and LICENSE files as part of director.js package for jQuery TodoMVC * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/bower.json: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/dist/director.js: Add missing director.js dependency for jQuery TodoMVC implementation. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/dist/director.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/dist/ender.js: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/director/package.json: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/index.html: Fix path to built Elm TodoMVC scripts. 2017-05-12 Addy Osmani Speedometer: Add a React.js TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171444 Reviewed by Ryosuke Niwa. Adds a more recent React.js TodoMVC implemenation to Speedometer * Speedometer/resources/todomvc/architecture-examples/react/build.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/react/js/app.jsx: Added. * Speedometer/resources/todomvc/architecture-examples/react/license.md: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/LICENSE: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/bind.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/bower.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/dedupe.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/classnames/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/director/LICENSE: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/director/bower.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/director/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react-dom/LICENSE: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react-dom/dist/react-dom-server.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react-dom/dist/react-dom.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react-dom/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react/LICENSE: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react/dist/react-with-addons.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react/dist/react.min.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/react/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/react/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/react/npm-shrinkwrap.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/react/yarn.lock: Added. 2017-05-11 Addy Osmani Speedometer: Update the Ember.js TodoMVC to a more recent version https://bugs.webkit.org/show_bug.cgi?id=171342 Reviewed by Ryosuke Niwa. Update the Ember TodoMVC app in Speedometer to latest * Speedometer/resources/todomvc/architecture-examples/emberjs/assets/todomvc.css: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/assets/todomvc.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/assets/vendor.css: Renamed from PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/todomvc-common/base.css. * Speedometer/resources/todomvc/architecture-examples/emberjs/assets/vendor.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower.json: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/ember-data/ember-data.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/ember-localstorage-adapter/localstorage_adapter.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/ember/ember.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/handlebars/handlebars.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/jquery/jquery.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/todomvc-common/base.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/crossdomain.xml: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/index.html: * Speedometer/resources/todomvc/architecture-examples/emberjs/js/app.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/controllers/todo_controller.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/controllers/todos_controller.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/helpers/pluralize.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/models/todo.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/router.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/views/edit_todo_view.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/js/views/todos_view.js: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/readme.md: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/robots.txt: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.bowerrc: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.editorconfig: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.ember-cli: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.gitignore: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.jshintrc: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.travis.yml: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/.watchmanconfig: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/app.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/components/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/components/todo-item.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/components/todo-list.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/controllers/active.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/controllers/application.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/controllers/completed.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/helpers/gt.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/helpers/pluralize.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/instance-initializers/global.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/models/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/resolver.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/router.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/routes/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/routes/application.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/services/memory.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/services/repo.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/styles/app.css: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/active.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/application.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/completed.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/components/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/components/todo-item.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/components/todo-list.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/app/templates/index.hbs: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/bower.json: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/config/environment.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/ember-cli-build.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/public/crossdomain.xml: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/public/robots.txt: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/testem.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/.jshintrc: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/destroy-app.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/module-for-acceptance.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/resolver.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/helpers/start-app.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/integration/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/test-helper.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/tests/unit/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/vendor/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/vendor/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/source/vendor/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/test.html: Removed. * Speedometer/resources/todomvc/architecture-examples/emberjs/testem.js: Added. * Speedometer/resources/todomvc/architecture-examples/emberjs/tests/index.html: Added. 2017-05-11 Addy Osmani Speedometer: Add a React + Redux TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171329 Reviewed by Ryosuke Niwa. Adds React and Redux TodoMVC implementation for Speedometer * Speedometer/resources/todomvc/architecture-examples/react-redux/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/css/main.d43d2909.css: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/main.946269ff.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/public/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/actions/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/actions/index.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/Footer.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/Footer.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/Header.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/Header.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/MainSection.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/MainSection.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/TodoItem.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/TodoItem.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/TodoTextInput.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/components/TodoTextInput.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/constants/ActionTypes.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/constants/TodoFilters.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/containers/App.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/todos.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/src/reducers/todos.spec.js: Added. * Speedometer/resources/todomvc/architecture-examples/react-redux/yarn.lock: Added. 2017-05-11 Addy Osmani Speedometer: Add an ES2015 (Babel + Webpack) TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171452 Reviewed by Ryosuke Niwa. Adds ES2015 Babel + Webpack TodoMVC implem * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/.babelrc: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/.eslintignore: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.73bcc5d3c1d07180f0e3.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.app.73bcc5d3c1d07180f0e3.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.manifest.112bf70a7f3deebf1f93.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.manifest.112bf70a7f3deebf1f93.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.vendor.efaa3e0e20077c8e7471.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/bundle.vendor.efaa3e0e20077c8e7471.js.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/index.html: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.app.73bcc5d3c1d07180f0e3.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.app.73bcc5d3c1d07180f0e3.css.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.vendor.efaa3e0e20077c8e7471.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/dist/styles.vendor.efaa3e0e20077c8e7471.css.map: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/package.json: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/app.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/app.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/bootstrap.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/controller.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/controller.test.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/helpers.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/index.html: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/memory.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/model.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/store.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/template.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/todo.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/view.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/webpack.config.babel.js: Added. 2017-05-11 Addy Osmani Speedometer: Add an Inferno TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171411 Reviewed by Ryosuke Niwa. Adds a Inferno implem of TodoMVC to Speedometer * Speedometer/resources/todomvc/architecture-examples/inferno/dist/bundle.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-app-css/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-app-css/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-common/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/node_modules/todomvc-common/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/src/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/src/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/src/item.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/src/model.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/src/share.js: Added. * Speedometer/resources/todomvc/architecture-examples/inferno/webpack.config.js: Added. 2017-05-11 Addy Osmani Speedometer: Add an Angular 2 (4.x) TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171343 Reviewed by Ryosuke Niwa. Add a TodoMVC Angular 2 (4.x) implem for the benchmark * Speedometer/resources/todomvc/architecture-examples/angular/.angular-cli.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/.editorconfig: Added. * Speedometer/resources/todomvc/architecture-examples/angular/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/assets/css/todomvc-app.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/assets/css/todomvc-common.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/favicon.ico: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/inline.b342d102ba4a53bf2002.bundle.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/main.779eb2f1ddbe23ac61c7.bundle.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/polyfills.2d45a4c73c85e24fe474.bundle.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/styles.d41d8cd98f00b204e980.bundle.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/dist/vendor.b4be818cb6d8028f9192.bundle.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/app.e2e-spec.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/app.po.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/e2e/tsconfig.e2e.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/karma.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/protractor.conf.js: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.component.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.component.html: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.component.spec.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.component.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/app.module.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/todo-data.service.spec.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/todo-data.service.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/todo.spec.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/app/todo.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/assets/.gitkeep: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/assets/css/todomvc-app.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/assets/css/todomvc-common.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/environments/environment.prod.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/environments/environment.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/favicon.ico: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/main.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/polyfills.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/styles.css: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/test.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/tsconfig.app.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/tsconfig.spec.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/src/typings.d.ts: Added. * Speedometer/resources/todomvc/architecture-examples/angular/tsconfig.json: Added. * Speedometer/resources/todomvc/architecture-examples/angular/tslint.json: Added. 2017-05-11 Addy Osmani Speedometer: Add a Vue.js TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171325 Reviewed by Ryosuke Niwa. Adds a Vue.js TodoMVC implementation to Speedometer * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/.babelrc: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/.editorconfig: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/.eslintignore: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/.eslintrc.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/config/dev.env.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/config/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/config/prod.env.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/static/css/app.677b45842d9f8b96e5b23c18969233b7.css: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/static/js/app.b0e835874bc8949670d1.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/static/js/manifest.84b2b4fceb74ab1f91f3.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/dist/static/js/vendor.a52517c5aa98e7fbea2e.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/App.vue: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/components/Todos.vue: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/components/todo.css: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/src/main.js: Added. * Speedometer/resources/todomvc/architecture-examples/vuejs-cli/yarn.lock: Added. 2017-05-11 Addy Osmani Speedometer: Update the vanilla JavaScript TodoMVC implem to a more recent version https://bugs.webkit.org/show_bug.cgi?id=171306 Reviewed by Ryosuke Niwa. Update vanilla JS TodoMVC implementation to the latest. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/bower.json: Removed. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/bower_components/todomvc-common/base.css: Removed. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/bower_components/todomvc-common/base.js: Removed. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/app.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/controller.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/helpers.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/model.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/store.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/template.js: Added. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/js/view.js: * Speedometer/resources/todomvc/vanilla-examples/vanillajs/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/vanilla-examples/vanillajs/package.json: Added. 2017-05-11 Addy Osmani Speedometer: Add an ES2015 TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171448 Reviewed by Ryosuke Niwa. Adds ES2015 TodoMVC implementation for Speedometer * Speedometer/resources/todomvc/vanilla-examples/es2015/index.html: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/package.json: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-app-css/readme.md: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-common/package.json: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/node_modules/todomvc-common/readme.md: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/package.json: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/.jshintrc: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/app.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/controller.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/helpers.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/model.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/store.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/template.js: Added. * Speedometer/resources/todomvc/vanilla-examples/es2015/src/view.js: Added. 2017-05-11 Addy Osmani Speedometer: Add an Elm TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171464 Reviewed by Ryosuke Niwa. Speedometer: Add Elm TodoMVC implementation * Speedometer/resources/todomvc/functional-prog-examples/elm/Todo.elm: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/Todo/Task.elm: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/dist/elm.js: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/index.html: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/package.json: Added. * Speedometer/resources/todomvc/functional-prog-examples/elm/readme.md: Added. 2017-05-11 Addy Osmani Speedometer: Update the Backbone.js implementation to a more recent library version https://bugs.webkit.org/show_bug.cgi?id=171305 Reviewed by Ryosuke Niwa. Updates the Backbone.js TodoMVC implementation to latest * Speedometer/resources/todomvc/architecture-examples/backbone/bower.json: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/backbone.localStorage/backbone.localStorage.js: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/jquery/jquery.js: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/todomvc-common/base.css: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/todomvc-common/base.js: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/underscore/underscore.js: Removed. * Speedometer/resources/todomvc/architecture-examples/backbone/index.html: * Speedometer/resources/todomvc/architecture-examples/backbone/js/app.js: * Speedometer/resources/todomvc/architecture-examples/backbone/js/backbone.sync.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/js/collections/todos.js: * Speedometer/resources/todomvc/architecture-examples/backbone/js/models/todo.js: * Speedometer/resources/todomvc/architecture-examples/backbone/js/routers/router.js: * Speedometer/resources/todomvc/architecture-examples/backbone/js/views/app-view.js: * Speedometer/resources/todomvc/architecture-examples/backbone/js/views/todo-view.js: * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/backbone/backbone.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/architecture-examples/backbone/bower_components/backbone/backbone.js. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/jquery/dist/jquery.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/node_modules/underscore/underscore.js: Added. * Speedometer/resources/todomvc/architecture-examples/backbone/package.json: Added. 2017-05-11 Addy Osmani Speedometer: Add a Preact.js TodoMVC implementation https://bugs.webkit.org/show_bug.cgi?id=171323 Reviewed by Ryosuke Niwa. Adds Preact.js TodoMVC implementation to Speedometer * Speedometer/resources/todomvc/architecture-examples/preact/.babelrc: Added. * Speedometer/resources/todomvc/architecture-examples/preact/README.md: Added. * Speedometer/resources/todomvc/architecture-examples/preact/dist/app.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/dist/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/preact/dist/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/preact/dist/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/dist/todomvc.css: Added. * Speedometer/resources/todomvc/architecture-examples/preact/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/preact/rollup.config.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/footer.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/item.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/model.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/index.html: Added. * Speedometer/resources/todomvc/architecture-examples/preact/src/index.js: Added. * Speedometer/resources/todomvc/architecture-examples/preact/webpack.config.babel.js: Added. 2017-05-11 Addy Osmani Speedometer: Update the jQuery implementation to a more recent library version https://bugs.webkit.org/show_bug.cgi?id=171308 Reviewed by Ryosuke Niwa. Updates the jQuery implementation of TodoMVC to a more recent version * Speedometer/resources/todomvc/architecture-examples/jquery/bower.json: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/bower_components/handlebars/handlebars.js: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/bower_components/jquery/jquery.js: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/bower_components/todomvc-common/base.css: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/bower_components/todomvc-common/base.js: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/architecture-examples/jquery/index.html: * Speedometer/resources/todomvc/architecture-examples/jquery/js/app.js: * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/handlebars/dist/handlebars.js: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/jquery/dist/jquery.js: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-app-css/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-app-css/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-common/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/node_modules/todomvc-common/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/jquery/readme.md: 2017-05-11 Addy Osmani Speedometer: Update the Flight.js implementation to a more recent library version https://bugs.webkit.org/show_bug.cgi?id=171471 Reviewed by Ryosuke Niwa. Speedometer: Update FlightJS TodoMVC implementation * Speedometer/resources/todomvc/dependency-examples/flight/.gitignore: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/.jshintrc: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/app/js/main.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/app/js/store.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower.json: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/es5-shim/es5-shim.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/compose.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/index.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/logger.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/jquery/jquery.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/todomvc-common/base.css: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/data/stats.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/data/stats.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/data/todos.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/data/todos.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/main.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/page/app.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/app.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/store.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/main_selector.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/main_selector.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/new_item.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/new_item.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/stats.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/stats.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/todo_list.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/todo_list.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/toggle_all.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/toggle_all.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/ui/with_filters.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/ui/with_filters.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/js/utils.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/js/utils.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/templates/stats.html: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/templates/stats.html. * Speedometer/resources/todomvc/dependency-examples/flight/flight/app/templates/todo.html: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/app/templates/todo.html. * Speedometer/resources/todomvc/dependency-examples/flight/flight/index.html: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/index.html. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/depot/README.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/depot/depot.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/depot/depot.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/depot/depot.min.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/depot/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/es5-shim/LICENSE: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/es5-shim/es5-sham.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/es5-shim/es5-sham.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/es5-shim/es5-sham.min.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/es5-shim/es5-shim.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/es5-shim/es5-shim.min.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/LICENSE: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/index.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/advice.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/advice.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/base.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/base.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/component.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/component.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/compose.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/debug.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/debug.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/logger.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/registry.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/registry.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/flight/lib/utils.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/flight/lib/utils.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/jquery/README.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/jquery/dist/jquery.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/jquery/dist/jquery.min.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/jquery/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/memorystorage/memorystorage.js: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs-text/LICENSE: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs-text/README.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs-text/bower.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs-text/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs-text/text.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/requirejs-text/text.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/README.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/requirejs/require.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-app-css/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-app-css/readme.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-common/base.js: Renamed from PerformanceTests/Speedometer/resources/todomvc/dependency-examples/flight/bower_components/todomvc-common/base.js. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-common/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/todomvc-common/readme.md: Added. * Speedometer/resources/todomvc/dependency-examples/flight/flight/package.json: Added. * Speedometer/resources/todomvc/dependency-examples/flight/karma.conf.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/package.json: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/readme.md: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/.jshintrc: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/fixture/footer.html: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/fixture/new_todo.html: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/fixture/toggle_all.html: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/mock/datastore.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/spec/data/stats_spec.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/spec/data/todos_spec.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/spec/ui/new_item_spec.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/spec/ui/stats_spec.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/spec/ui/toggle_all_spec.js: Removed. * Speedometer/resources/todomvc/dependency-examples/flight/test/test-main.js: Removed. 2017-05-11 Addy Osmani Speedometer: Update the AngularJS implementation to a more recent library version https://bugs.webkit.org/show_bug.cgi?id=171307 Reviewed by Ryosuke Niwa. Updates the AngularJS implementation of TodoMVC to 1.4.x * Speedometer/resources/todomvc/architecture-examples/angularjs/bower.json: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/bower_components/angular-mocks/angular-mocks.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/bower_components/angular/angular.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/bower_components/todomvc-common/base.css: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/bower_components/todomvc-common/base.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/bower_components/todomvc-common/bg.png: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/index.html: * Speedometer/resources/todomvc/architecture-examples/angularjs/js/app.js: * Speedometer/resources/todomvc/architecture-examples/angularjs/js/controllers/todoCtrl.js: * Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoBlur.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoEscape.js: * Speedometer/resources/todomvc/architecture-examples/angularjs/js/directives/todoFocus.js: * Speedometer/resources/todomvc/architecture-examples/angularjs/js/services/todoStorage.js: * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-resource/angular-resource.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular-route/angular-route.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/angular/angular.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-app-css/index.css: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-app-css/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-app-css/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-common/base.css: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-common/base.js: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-common/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/node_modules/todomvc-common/readme.md: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/package.json: Added. * Speedometer/resources/todomvc/architecture-examples/angularjs/readme.md: * Speedometer/resources/todomvc/architecture-examples/angularjs/test/config/testacular.conf.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/test/package.json: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/test/readme.md: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/test/unit/directivesSpec.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/test/unit/todoCtrlSpec.js: Removed. * Speedometer/resources/todomvc/architecture-examples/angularjs/todomvc-index.html: Added. 2017-05-09 Jon Davis [ARES6] Improved the running test indicator https://bugs.webkit.org/show_bug.cgi?id=171400 Running tests show a triangle before the test title and the titles are white. Reviewed by Joseph Pecoraro. * ARES-6/index.html: * ARES-6/styles.css: (.test .running): (.test .running:before): (.test .indicator): Deleted. (.test .indicator.running): Deleted. (@keyframes test-running): Deleted. 2017-05-04 Andy VanWagoner [INTL] Add PerformanceTests for Intl objects https://bugs.webkit.org/show_bug.cgi?id=171695 Reviewed by Benjamin Poulain. * Intl/collator-compare-all-options.html: Added. * Intl/collator-compare-default.html: Added. * Intl/collator-create-all-options.html: Added. * Intl/collator-create-default.html: Added. * Intl/datetimeformat-create-all-options.html: Added. * Intl/datetimeformat-create-default.html: Added. * Intl/datetimeformat-format-all-options.html: Added. * Intl/datetimeformat-format-default.html: Added. * Intl/numberformat-create-all-options.html: Added. * Intl/numberformat-create-default.html: Added. * Intl/numberformat-format-all-options.html: Added. * Intl/numberformat-format-default.html: Added. 2017-04-27 Michael Saboff Add back tests inadvertently deleted in r205032. Rubber stamped by Geoffrey Garen. * MallocBench/run-malloc-benchmarks: 2017-04-25 Myles C. Maxfield Add performance test for FontCache::systemFallbackForCharacters() https://bugs.webkit.org/show_bug.cgi?id=170842 Reviewed by Tim Horton. * Layout/word-joiner.html: Added. 2017-04-24 Saam Barati Add ML to ARES6 https://bugs.webkit.org/show_bug.cgi?id=171206 Rubber stamped by Filip Pizlo. This patch adds a new test to ARES6 called ML. ML is an implementation of a feedforward neural network: https://github.com/mljs/feedforward-neural-networks. It makes heavy use of classes, and does non-trivial matrix math using the ml-matrix library: https://github.com/mljs/matrix * ARES-6/about.html: * ARES-6/cli.js: * ARES-6/glue.js: * ARES-6/index.html: * ARES-6/ml: Added. * ARES-6/ml/benchmark.js: Added. * ARES-6/ml/index.js: Added. * ARES-6/ml_benchmark.js: Added. 2017-04-21 Zalan Bujtas Simple line layout: Add performance test to measure mid-word line breaking with long text. https://bugs.webkit.org/show_bug.cgi?id=171136 Reviewed by Ryosuke Niwa. * Layout/simple-line-layout-word-break-long-text.html: Added. 2017-04-17 Ryan Haddad Unreviewed, rolling out r215366. This test is failing on performance bots. Reverted changeset: "Add performance test for asking the platform for a font for U+2060 WORD JOINER" https://bugs.webkit.org/show_bug.cgi?id=170842 http://trac.webkit.org/changeset/215366 2017-04-14 Myles C. Maxfield Add performance test for asking the platform for a font for U+2060 WORD JOINER https://bugs.webkit.org/show_bug.cgi?id=170842 Reviewed by Tim Horton. * Layout/word-joiner.html: Added. 2017-04-03 Saam Barati Add a new test to ARES6 https://bugs.webkit.org/show_bug.cgi?id=170077 Rubber stamped by Filip Pizlo. This patch adds a new test to ARES6. The test is called Babylon. Babylon is the JavaScript parser that is part of the Babel transpiler. The test runs the parser on 4 different JS scripts. * ARES-6/Babylon: Added. * ARES-6/Babylon/AUTHORS: Added. * ARES-6/Babylon/air-blob.js: Added. (Reg): (Reg.fromReg): (Reg.prototype.get index): (Reg.prototype.get type): (Reg.prototype.get name): (Reg.prototype.get isCalleeSave): (Reg.prototype.get isReg): (Reg.prototype.hash): (Reg.prototype.toString): (Reg.extract): (Reg.forEachFast): (Reg.forEach): (newGPR): (Reg.gprs.Reg.fprs.Reg.calleeSaveGPRs.Reg.calleeSaveFPRs.Reg.calleeSaves): * ARES-6/Babylon/babylon-blob.js: Added. (export.default.Parser): (export.default.Parser.prototype.isReservedWord): (export.default.Parser.prototype.hasPlugin): (export.default.Parser.prototype.extend): (export.default.Parser.prototype.loadPlugins): (export.default.Parser.prototype.parse): * ARES-6/Babylon/basic-blob.js: Added. (Basic.NumberApply): (Basic.Variable): (Basic.Const): (Basic.NumberPow): (Basic.NumberMul): (Basic.NumberDiv): (Basic.NumberNeg): (Basic.NumberAdd): (Basic.NumberSub): (Basic.StringVar): (Basic.Equals): (Basic.NotEquals): (Basic.LessThan): (Basic.GreaterThan): (Basic.LessEqual): (Basic.GreaterEqual): (Basic.GoTo): (Basic.GoSub): (Basic.Def): (Basic.Let): (Basic.If): (Basic.Return): (Basic.Stop): (Basic.On): (sideState.shouldStop): (Basic.For): (Basic.Next): (Basic.Print): (Basic.Input): (Basic.Read): (Basic.Restore): (Basic.Dim): (Basic.Randomize): (Basic.End): (Basic.Program): * ARES-6/Babylon/benchmark.js: Added. (this.performance.performance.now.currentTime): (else.this.preciseTime.currentTime): (else.currentTime): (BabylonBenchmark.appendSource): (BabylonBenchmark): (BabylonBenchmark.prototype.runIteration.parse): (BabylonBenchmark.prototype.runIteration.parseExpression): (BabylonBenchmark.prototype.runIteration): (runBenchmark): * ARES-6/Babylon/index.js: Added. (isIdentifierStart): (isIdentifierChar): (isNewLine): (Position): (SourceLocation): (getLineInfo): (TokenType): (KeywordTokenType): (BinopTokenType): (TokContext): (tt.parenR.updateContext.tt.braceR.updateContext): (tt.name.updateContext): (tt.braceL.updateContext): (tt.dollarBraceL.updateContext): (tt.parenL.updateContext): (tt.incDec.updateContext): (tt._function.updateContext): (tt.backQuote.updateContext): (State.prototype.init): (State.prototype.curPosition): (State.prototype.clone): (State): (Token): (codePointToString): (Tokenizer): (Tokenizer.prototype.next): (Tokenizer.prototype.eat): (Tokenizer.prototype.match): (Tokenizer.prototype.isKeyword): (Tokenizer.prototype.lookahead): (Tokenizer.prototype.setStrict): (Tokenizer.prototype.curContext): (Tokenizer.prototype.nextToken): (Tokenizer.prototype.readToken): (Tokenizer.prototype.fullCharCodeAtPos): (Tokenizer.prototype.pushComment): (Tokenizer.prototype.skipBlockComment): (Tokenizer.prototype.skipLineComment): (Tokenizer.prototype.skipSpace): (Tokenizer.prototype.finishToken): (Tokenizer.prototype.readToken_dot): (Tokenizer.prototype.readToken_slash): (Tokenizer.prototype.readToken_mult_modulo): (Tokenizer.prototype.readToken_pipe_amp): (Tokenizer.prototype.readToken_caret): (Tokenizer.prototype.readToken_plus_min): (Tokenizer.prototype.readToken_lt_gt): (Tokenizer.prototype.readToken_eq_excl): (Tokenizer.prototype.getTokenFromCode): (Tokenizer.prototype.finishOp): (Tokenizer.prototype.readRegexp): (Tokenizer.prototype.readInt): (Tokenizer.prototype.readRadixNumber): (Tokenizer.prototype.readNumber): (Tokenizer.prototype.readCodePoint): (Tokenizer.prototype.readString): (Tokenizer.prototype.readTmplToken): (Tokenizer.prototype.readEscapedChar): (Tokenizer.prototype.readHexChar): (Tokenizer.prototype.readWord1): (Tokenizer.prototype.readWord): (Tokenizer.prototype.braceIsBlock): (Tokenizer.prototype.updateContext): (getOptions): (prototype.isReservedWord): (prototype.hasPlugin): (prototype.extend): (prototype.loadPlugins): (prototype.parse): (last): (pp.addComment): (pp.processComment): (pp.checkPropClash): (pp.getExpression): (pp.parseExpression): (pp.parseMaybeAssign): (pos.set i): * ARES-6/Babylon/inspector-blob.js: Added. (WebInspector.ScriptSyntaxTree): (WebInspector.ScriptSyntaxTree.prototype.get parsedSuccessfully): (WebInspector.ScriptSyntaxTree.prototype.forEachNode): (WebInspector.ScriptSyntaxTree.prototype.filter): (WebInspector.ScriptSyntaxTree.prototype.containersOfOffset): (WebInspector.ScriptSyntaxTree.prototype.filterByRange.filterForNodesInRange): (WebInspector.ScriptSyntaxTree.prototype.filterByRange): (WebInspector.ScriptSyntaxTree.prototype.containsNonEmptyReturnStatement.removeFunctionsFilter): (WebInspector.ScriptSyntaxTree.prototype.containsNonEmptyReturnStatement): (WebInspector.ScriptSyntaxTree.functionReturnDivot): (WebInspector.ScriptSyntaxTree.prototype.updateTypes): (WebInspector.ScriptSyntaxTree.prototype._gatherIdentifiersInDeclaration.gatherIdentifiers): (WebInspector.ScriptSyntaxTree.prototype._gatherIdentifiersInDeclaration): (WebInspector.ScriptSyntaxTree.prototype._defaultParserState): (WebInspector.ScriptSyntaxTree.prototype._recurse): (WebInspector.ScriptSyntaxTree.prototype._recurseArray): (WebInspector.ScriptSyntaxTree.prototype._createInternalSyntaxTree): * ARES-6/about.html: * ARES-6/babylon_benchmark.js: Added. * ARES-6/cli.js: * ARES-6/glue.js: * ARES-6/index.html: * ARES-6/results.js: (Results.prototype.reportResult): (Results.prototype.reportResult.averageAbovePercentile): Deleted. * ARES-6/styles.css: (.test): (@media only screen and (max-width: 784px)): 2017-03-29 Zalan Bujtas [Arabic text] Add whitespace preserve/word wrap performance test. https://bugs.webkit.org/show_bug.cgi?id=170243 Reviewed by Simon Fraser. * Layout/ArabicLineLayout-pre-and-wrap.html: Added. 2017-03-08 Yusuke Suzuki [JSC] Add helpers to run Six Speed to run-jsc-benchmarks https://bugs.webkit.org/show_bug.cgi?id=169351 Reviewed by Saam Barati. * SixSpeed/wrappers/wrapper.js: Added. (assertEqual): (test): (jscRun): 2017-03-08 Jon Davis Fixed ARES-6 animations for other browsers Rubber stamped by Saam Barati. * ARES-6/styles.css: (.swoop): (.logo): 2017-03-07 Filip Pizlo Revise the ARES-6 explainer text https://bugs.webkit.org/show_bug.cgi?id=169287 Reviewed by Saam Barati. Just did some copy-editing. * ARES-6/about.html: 2017-03-06 Jon Davis Refined the ARES-6 experience https://bugs.webkit.org/show_bug.cgi?id=169205 Reviewed by Saam Barati. * ARES-6/about.html: Copied from PerformanceTests/ARES-6/index.html. * ARES-6/driver.js: (Driver.prototype.start): (Driver.prototype._updateIterations): (Driver): * ARES-6/index.html: * ARES-6/stats.js: (Stats.prototype.toString.span.span): * ARES-6/styles.css: (body): (.swoop): (p): (.logo): (.start): (.test): (.test:nth-child(odd)): (.overall): (.about h2): (.button): (.button:hover): (.button.return:before): (@keyframes fade-in): (@keyframes scale-in): (@keyframes flicker-in): (@keyframes wipe-in): (.flip): Deleted. (.testing, .about): Deleted. (.testing): Deleted. (.about): Deleted. (#about:target): Deleted. 2017-03-06 Jeremy Jones StandardCanPlayThrough.html does not work on iOS. https://bugs.webkit.org/show_bug.cgi?id=169207 Reviewed by Jer Noble. On iOS only, add muted=true and autoplay=allowed. The loading policy on iOS requires these attributes to load enough data to trigger canPlayThrough. * Media/StandardCanPlayThrough.html: 2017-02-13 Zalan Bujtas Simple line layout: Add performance test with text-rendering: optimizeSpeed https://bugs.webkit.org/show_bug.cgi?id=168248 Reviewed by Simon Fraser. * Layout/simple-line-layout-with-varying-content-and-optimized-speed.html: Added. 2017-02-10 Zalan Bujtas Mail hangs when removing multiple rows from large table. https://bugs.webkit.org/show_bug.cgi?id=168103 Reviewed by Ryosuke Niwa. * DOM/large-table-edit.html: Added. 2017-02-05 Filip Pizlo Beef up the ARES-6 explainer text https://bugs.webkit.org/show_bug.cgi?id=167867 Reviewed by Saam Barati. Added appropriate links. Added text that explains the subscores. * ARES-6/index.html: 2017-02-06 Jer Noble Playback stalls when a SourceBuffer append causes frame eviction https://bugs.webkit.org/show_bug.cgi?id=167834 Reviewed by Eric Carlson. Add an in-page performance test measuring the amount of time required to append a large amount of media data to a SourceBuffer, and then to completely remove that data 30s at a time. Add a microbenchmark for MediaTime which measures the amount of time required to create a 1M entry std::map and traverse the map 1M times. * Media/MSERemoveCodedFrames.html: Added. * Media/media-source-loader.js: (MediaSourceLoader.prototype.get duration): * MediaTime/Configurations/Base.xcconfig: Added. * MediaTime/Configurations/DebugRelease.xcconfig: Added. * MediaTime/Makefile: Added. * MediaTime/MediaTime.xcodeproj/project.pbxproj: Added. * MediaTime/main.cpp: Added. (performTest): (test): (main): * Skipped: 2017-02-06 Saam Barati Make ARES-6 work from the CLI again https://bugs.webkit.org/show_bug.cgi?id=167895 Reviewed by Michael Saboff. * ARES-6/driver.js: (Driver.prototype.readyTrigger): (Driver.prototype.disableTrigger): * ARES-6/stats.js: (Stats.prototype.toString.span.span): (Stats.prototype.toString.return.span): (Stats.prototype.toString): 2017-02-06 Ryan Haddad Skip ARES-6 on performance bots https://bugs.webkit.org/show_bug.cgi?id=167863 Unreviewed test gardening. ES6SampleBench was renamed to ARES-6, so this should be updated in PerformanceTests/Skipped as well. * Skipped: 2017-02-05 Filip Pizlo Change ES6SampleBench into ARES-6 https://bugs.webkit.org/show_bug.cgi?id=167863 Rubber stamped by Saam Barati. This imports changes that Jonathan Davis (jond@apple.com) made to ES6SampleBench to make it look super awesome. Its now called ARES-6. * ARES-6: Copied from PerformanceTests/ES6SampleBench. * ARES-6/ARES-6.svg: Added. * ARES-6/driver.js: (Driver): (Driver.prototype.readyTrigger): (Driver.prototype.disableTrigger): (Driver.prototype.start): (Driver.prototype._updateIterations): * ARES-6/glue.js: * ARES-6/index.html: * ARES-6/results.js: (Results.prototype.reportRunning): (Results.prototype.reportDone): * ARES-6/stats.js: (Stats.prototype.toString.return.span): (Stats.prototype.toString.span.span): (Stats.prototype.toString): Deleted. * ARES-6/style.css: Removed. * ARES-6/styles.css: Added. (html): (body): (header,): (p a): (p a:hover): (.flip): (header): (h2,): (p): (.about h2): (.logo): (.start): (.start.ready): (.start.ready:hover): (.start:after): (.start.ready .testrun): (.tests): (.test): (.overall h2,): (.test .indicator): (.test .indicator.running): (@keyframes test-running): (100%): (.score): (.score label): (.score .value): (.score .units): (.score .margin): (.overall): (.overall .score): (.overall .margin): (.testing, .about): (.testing): (.about): (#about:target): (@media only screen and (max-width: 784px)): * ARES-6/swoop.svg: Added. * ES6SampleBench: Removed. * ES6SampleBench/Air: Removed. * ES6SampleBench/Air/README.md: Removed. * ES6SampleBench/Air/airjs-tests.yaml: Removed. * ES6SampleBench/Air/all.js: Removed. * ES6SampleBench/Air/allocate_stack.js: Removed. * ES6SampleBench/Air/arg.js: Removed. * ES6SampleBench/Air/basic_block.js: Removed. * ES6SampleBench/Air/benchmark.js: Removed. * ES6SampleBench/Air/code.js: Removed. * ES6SampleBench/Air/custom.js: Removed. * ES6SampleBench/Air/frequented_block.js: Removed. * ES6SampleBench/Air/insertion_set.js: Removed. * ES6SampleBench/Air/inst.js: Removed. * ES6SampleBench/Air/liveness.js: Removed. * ES6SampleBench/Air/make_dist.sh: Removed. * ES6SampleBench/Air/opcode.js: Removed. * ES6SampleBench/Air/payload-airjs-ACLj8C.js: Removed. * ES6SampleBench/Air/payload-gbemu-executeIteration.js: Removed. * ES6SampleBench/Air/payload-imaging-gaussian-blur-gaussianBlur.js: Removed. * ES6SampleBench/Air/payload-typescript-scanIdentifier.js: Removed. * ES6SampleBench/Air/reg.js: Removed. * ES6SampleBench/Air/stack_slot.js: Removed. * ES6SampleBench/Air/stress-test.js: Removed. * ES6SampleBench/Air/strip-hash.rb: Removed. * ES6SampleBench/Air/symbols.js: Removed. * ES6SampleBench/Air/test.html: Removed. * ES6SampleBench/Air/test.js: Removed. * ES6SampleBench/Air/tmp.js: Removed. * ES6SampleBench/Air/tmp_base.js: Removed. * ES6SampleBench/Air/util.js: Removed. * ES6SampleBench/Basic: Removed. * ES6SampleBench/Basic/ast.js: Removed. * ES6SampleBench/Basic/basic-tests.yaml: Removed. * ES6SampleBench/Basic/basic.js: Removed. * ES6SampleBench/Basic/benchmark.js: Removed. * ES6SampleBench/Basic/caseless_map.js: Removed. * ES6SampleBench/Basic/lexer.js: Removed. * ES6SampleBench/Basic/number.js: Removed. * ES6SampleBench/Basic/parser.js: Removed. * ES6SampleBench/Basic/random.js: Removed. * ES6SampleBench/Basic/state.js: Removed. * ES6SampleBench/Basic/stress-test.js: Removed. * ES6SampleBench/Basic/test.html: Removed. * ES6SampleBench/Basic/test.js: Removed. * ES6SampleBench/Basic/util.js: Removed. * ES6SampleBench/air_benchmark.js: Removed. * ES6SampleBench/basic_benchmark.js: Removed. * ES6SampleBench/cli.js: Removed. * ES6SampleBench/driver.js: Removed. * ES6SampleBench/glue.js: Removed. * ES6SampleBench/index.html: Removed. * ES6SampleBench/results.js: Removed. * ES6SampleBench/stats.js: Removed. * ES6SampleBench/style.css: Removed. 2017-02-05 Zalan Bujtas Simple line layout: Add performance test with varying string and font-size to minimize width-cache hit. https://bugs.webkit.org/show_bug.cgi?id=167859 Reviewed by Antti Koivisto. This is in preparation for webkit.org/b/167843. * Layout/simple-line-layout-with-varying-content.html: Added. 2017-01-16 Filip Pizlo Add framerate baselines to the splay-detail test https://bugs.webkit.org/show_bug.cgi?id=167659 Reviewed by Geoffrey Garen. * JetStream/Octane2/splay-detail.html: 2017-01-31 Carlos Alberto Lopez Perez [EFL][GTK] Skip some IndexedDB tests that time out on the Perf bots. Unreviewed performance test gardening. * Skipped: 2017-01-30 Zalan Bujtas Simple line layout: Small tweaks to improve performance. https://bugs.webkit.org/show_bug.cgi?id=167611 Reviewed by Simon Fraser. * Layout/simple-line-layout-non-repeating-text.html: Added. 2017-01-13 Said Abou-Hallawa 26 MotionMark performance tests failing https://bugs.webkit.org/show_bug.cgi?id=166854 Reviewed by Ryosuke Niwa. Skip running MotionMark on WebKit perf bots. * Skipped: 2017-01-06 Said Abou-Hallawa Rename the directory and the files of MotionMark from Animometer to MotionMark https://bugs.webkit.org/show_bug.cgi?id=166659 Reviewed by Jon Lee. Rename the directory and the files of the benchmark to its new name. * MotionMark/developer.html: Renamed from PerformanceTests/Animometer/developer.html. * MotionMark/index.html: Renamed from PerformanceTests/Animometer/index.html. * MotionMark/resources/debug-runner/d3.min.js: Renamed from PerformanceTests/Animometer/resources/debug-runner/d3.min.js. * MotionMark/resources/debug-runner/graph.js: Renamed from PerformanceTests/Animometer/resources/debug-runner/graph.js. * MotionMark/resources/debug-runner/motionmark.css: Renamed from PerformanceTests/Animometer/resources/debug-runner/animometer.css. * MotionMark/resources/debug-runner/motionmark.js: Renamed from PerformanceTests/Animometer/resources/debug-runner/animometer.js. * MotionMark/resources/debug-runner/tests.js: Renamed from PerformanceTests/Animometer/resources/debug-runner/tests.js. * MotionMark/resources/extensions.js: Renamed from PerformanceTests/Animometer/resources/extensions.js. * MotionMark/resources/runner/benchmark-runner.js: Renamed from PerformanceTests/Animometer/resources/runner/benchmark-runner.js. * MotionMark/resources/runner/crystal.svg: Renamed from PerformanceTests/Animometer/resources/runner/crystal.svg. * MotionMark/resources/runner/lines.svg: Renamed from PerformanceTests/Animometer/resources/runner/lines.svg. * MotionMark/resources/runner/logo.svg: Renamed from PerformanceTests/Animometer/resources/runner/logo.svg. * MotionMark/resources/runner/motionmark.css: Renamed from PerformanceTests/Animometer/resources/runner/animometer.css. * MotionMark/resources/runner/motionmark.js: Renamed from PerformanceTests/Animometer/resources/runner/animometer.js. * MotionMark/resources/runner/tests.js: Renamed from PerformanceTests/Animometer/resources/runner/tests.js. * MotionMark/resources/statistics.js: Renamed from PerformanceTests/Animometer/resources/statistics.js. * MotionMark/resources/strings.js: Renamed from PerformanceTests/Animometer/resources/strings.js. * MotionMark/tests/3d/resources/webgl.js: Renamed from PerformanceTests/Animometer/tests/3d/resources/webgl.js. * MotionMark/tests/3d/webgl.html: Renamed from PerformanceTests/Animometer/tests/3d/webgl.html. * MotionMark/tests/bouncing-particles/bouncing-canvas-images.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-canvas-images.html. * MotionMark/tests/bouncing-particles/bouncing-canvas-shapes.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html. * MotionMark/tests/bouncing-particles/bouncing-css-images.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-css-images.html. * MotionMark/tests/bouncing-particles/bouncing-css-shapes.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-css-shapes.html. * MotionMark/tests/bouncing-particles/bouncing-svg-images.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-svg-images.html. * MotionMark/tests/bouncing-particles/bouncing-svg-shapes.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-svg-shapes.html. * MotionMark/tests/bouncing-particles/bouncing-tagged-images.html: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/bouncing-tagged-images.html. * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-images.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js. * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-particles.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js. * MotionMark/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js. * MotionMark/tests/bouncing-particles/resources/bouncing-css-images.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-css-images.js. * MotionMark/tests/bouncing-particles/resources/bouncing-css-shapes.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js. * MotionMark/tests/bouncing-particles/resources/bouncing-svg-images.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js. * MotionMark/tests/bouncing-particles/resources/bouncing-svg-particles.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-svg-particles.js. * MotionMark/tests/bouncing-particles/resources/bouncing-svg-shapes.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js. * MotionMark/tests/bouncing-particles/resources/bouncing-tagged-images.js: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/bouncing-tagged-images.js. * MotionMark/tests/bouncing-particles/resources/image1.jpg: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/image1.jpg. * MotionMark/tests/bouncing-particles/resources/image2.jpg: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/image2.jpg. * MotionMark/tests/bouncing-particles/resources/image3.jpg: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/image3.jpg. * MotionMark/tests/bouncing-particles/resources/image4.jpg: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/image4.jpg. * MotionMark/tests/bouncing-particles/resources/image5.jpg: Renamed from PerformanceTests/Animometer/tests/bouncing-particles/resources/image5.jpg. * MotionMark/tests/dom/compositing-transforms.html: Renamed from PerformanceTests/Animometer/tests/dom/compositing-transforms.html. * MotionMark/tests/dom/focus.html: Renamed from PerformanceTests/Animometer/tests/dom/focus.html. * MotionMark/tests/dom/leaves.html: Renamed from PerformanceTests/Animometer/tests/dom/leaves.html. * MotionMark/tests/dom/particles.html: Renamed from PerformanceTests/Animometer/tests/dom/particles.html. * MotionMark/tests/dom/resources/compositing-transforms.js: Renamed from PerformanceTests/Animometer/tests/dom/resources/compositing-transforms.js. * MotionMark/tests/dom/resources/dom-particles.js: Renamed from PerformanceTests/Animometer/tests/dom/resources/dom-particles.js. * MotionMark/tests/dom/resources/focus.js: Renamed from PerformanceTests/Animometer/tests/dom/resources/focus.js. * MotionMark/tests/dom/resources/leaves.js: Renamed from PerformanceTests/Animometer/tests/dom/resources/leaves.js. * MotionMark/tests/master/canvas-stage.html: Renamed from PerformanceTests/Animometer/tests/master/canvas-stage.html. * MotionMark/tests/master/focus.html: Renamed from PerformanceTests/Animometer/tests/master/focus.html. * MotionMark/tests/master/image-data.html: Renamed from PerformanceTests/Animometer/tests/master/image-data.html. * MotionMark/tests/master/leaves.html: Renamed from PerformanceTests/Animometer/tests/master/leaves.html. * MotionMark/tests/master/multiply.html: Renamed from PerformanceTests/Animometer/tests/master/multiply.html. * MotionMark/tests/master/resources/canvas-stage.js: Renamed from PerformanceTests/Animometer/tests/master/resources/canvas-stage.js. * MotionMark/tests/master/resources/canvas-tests.js: Renamed from PerformanceTests/Animometer/tests/master/resources/canvas-tests.js. * MotionMark/tests/master/resources/compass.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/compass.svg. * MotionMark/tests/master/resources/compass100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/compass100.png. * MotionMark/tests/master/resources/console.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/console.svg. * MotionMark/tests/master/resources/console100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/console100.png. * MotionMark/tests/master/resources/contribute.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/contribute.svg. * MotionMark/tests/master/resources/contribute100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/contribute100.png. * MotionMark/tests/master/resources/debugger.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/debugger.svg. * MotionMark/tests/master/resources/debugger100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/debugger100.png. * MotionMark/tests/master/resources/focus.js: Renamed from PerformanceTests/Animometer/tests/master/resources/focus.js. * MotionMark/tests/master/resources/image-data.js: Renamed from PerformanceTests/Animometer/tests/master/resources/image-data.js. * MotionMark/tests/master/resources/inspector.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/inspector.svg. * MotionMark/tests/master/resources/inspector100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/inspector100.png. * MotionMark/tests/master/resources/layout.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/layout.svg. * MotionMark/tests/master/resources/layout100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/layout100.png. * MotionMark/tests/master/resources/leaves.js: Renamed from PerformanceTests/Animometer/tests/master/resources/leaves.js. * MotionMark/tests/master/resources/multiply.js: Renamed from PerformanceTests/Animometer/tests/master/resources/multiply.js. * MotionMark/tests/master/resources/particles.js: Renamed from PerformanceTests/Animometer/tests/master/resources/particles.js. * MotionMark/tests/master/resources/performance.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/performance.svg. * MotionMark/tests/master/resources/performance100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/performance100.png. * MotionMark/tests/master/resources/script.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/script.svg. * MotionMark/tests/master/resources/script100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/script100.png. * MotionMark/tests/master/resources/shortcuts.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/shortcuts.svg. * MotionMark/tests/master/resources/shortcuts100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/shortcuts100.png. * MotionMark/tests/master/resources/standards.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/standards.svg. * MotionMark/tests/master/resources/standards100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/standards100.png. * MotionMark/tests/master/resources/storage.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/storage.svg. * MotionMark/tests/master/resources/storage100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/storage100.png. * MotionMark/tests/master/resources/styles.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/styles.svg. * MotionMark/tests/master/resources/styles100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/styles100.png. * MotionMark/tests/master/resources/svg-particles.js: Renamed from PerformanceTests/Animometer/tests/master/resources/svg-particles.js. * MotionMark/tests/master/resources/text.js: Renamed from PerformanceTests/Animometer/tests/master/resources/text.js. * MotionMark/tests/master/resources/timeline.svg: Renamed from PerformanceTests/Animometer/tests/master/resources/timeline.svg. * MotionMark/tests/master/resources/timeline100.png: Renamed from PerformanceTests/Animometer/tests/master/resources/timeline100.png. * MotionMark/tests/master/svg-particles.html: Renamed from PerformanceTests/Animometer/tests/master/svg-particles.html. * MotionMark/tests/master/text.html: Renamed from PerformanceTests/Animometer/tests/master/text.html. * MotionMark/tests/resources/main.js: Renamed from PerformanceTests/Animometer/tests/resources/main.js. * MotionMark/tests/resources/math.js: Renamed from PerformanceTests/Animometer/tests/resources/math.js. * MotionMark/tests/resources/stage.css: Renamed from PerformanceTests/Animometer/tests/resources/stage.css. * MotionMark/tests/resources/star.svg: Renamed from PerformanceTests/Animometer/tests/resources/star.svg. * MotionMark/tests/resources/yin-yang.png: Renamed from PerformanceTests/Animometer/tests/resources/yin-yang.png. * MotionMark/tests/resources/yin-yang.svg: Renamed from PerformanceTests/Animometer/tests/resources/yin-yang.svg. * MotionMark/tests/simple/resources/simple-canvas-paths.js: Renamed from PerformanceTests/Animometer/tests/simple/resources/simple-canvas-paths.js. * MotionMark/tests/simple/resources/simple-canvas.js: Renamed from PerformanceTests/Animometer/tests/simple/resources/simple-canvas.js. * MotionMark/tests/simple/resources/tiled-canvas-image.js: Renamed from PerformanceTests/Animometer/tests/simple/resources/tiled-canvas-image.js. * MotionMark/tests/simple/simple-canvas-paths.html: Renamed from PerformanceTests/Animometer/tests/simple/simple-canvas-paths.html. * MotionMark/tests/simple/tiled-canvas-image.html: Renamed from PerformanceTests/Animometer/tests/simple/tiled-canvas-image.html. * MotionMark/tests/template/resources/template-canvas.js: Renamed from PerformanceTests/Animometer/tests/template/resources/template-canvas.js. * MotionMark/tests/template/resources/template-css.js: Renamed from PerformanceTests/Animometer/tests/template/resources/template-css.js. * MotionMark/tests/template/resources/template-svg.js: Renamed from PerformanceTests/Animometer/tests/template/resources/template-svg.js. * MotionMark/tests/template/template-canvas.html: Renamed from PerformanceTests/Animometer/tests/template/template-canvas.html. * MotionMark/tests/template/template-css.html: Renamed from PerformanceTests/Animometer/tests/template/template-css.html. * MotionMark/tests/template/template-svg.html: Renamed from PerformanceTests/Animometer/tests/template/template-svg.html. 2016-12-13 Brady Eidson Add a PerfTest targeting IDBObjectStore.get(). https://bugs.webkit.org/show_bug.cgi?id=165816 Reviewed by Alex Christensen. * IndexedDB/objectstore-get.html: Added. 2016-12-13 Brady Eidson Add a PerfTest targeting IDBIndex.get(). https://bugs.webkit.org/show_bug.cgi?id=165803 Reviewed by Alex Christensen. * IndexedDB/index-get.html: Added. 2016-12-12 Brady Eidson More IndexedDB perf tests. https://bugs.webkit.org/show_bug.cgi?id=165634 Reviewed by Sam Weinig. * IndexedDB/index-multientry.html: * IndexedDB/large-number-of-inserts-responsiveness.html: Added. * IndexedDB/large-number-of-inserts.html: Added. * IndexedDB/objectstore-cursor.html: Added. Runtime cut in 1/4th compared to r209672. * resources/runner.js: 2016-12-12 Commit Queue Unreviewed, rolling out r209672. https://bugs.webkit.org/show_bug.cgi?id=165766 IndexedDB/objectstore-cursor.html perf test always times out (Requested by ap on #webkit). Reverted changeset: "More IndexedDB perf tests." https://bugs.webkit.org/show_bug.cgi?id=165634 http://trac.webkit.org/changeset/209672 2016-12-10 Brady Eidson More IndexedDB perf tests. https://bugs.webkit.org/show_bug.cgi?id=165634 Reviewed by Sam Weinig. * IndexedDB/index-multientry.html: * IndexedDB/large-number-of-inserts-responsiveness.html: Added. * IndexedDB/large-number-of-inserts.html: Added. * IndexedDB/objectstore-cursor.html: Added. * resources/runner.js: Add "track responsiveness" functionality to PerfTestRunner. 2016-12-06 Filip Pizlo Concurrent GC should be stable enough to land enabled https://bugs.webkit.org/show_bug.cgi?id=164990 Reviewed by Geoffrey Garen. Made CDjs more configurable and refined the "large.js" configuration. I was using that one and the new "long.js" configuration to tune concurrent eden GCs. Added a new way of running Splay in browser, which using chartjs to plot the execution times of 2000 iterations. This includes the minified chartjs. * JetStream/Octane2/splay-detail.html: Added. * JetStream/cdjs/benchmark.js: (benchmarkImpl): (benchmark): * JetStream/cdjs/long.js: Added. 2016-12-07 Brady Eidson Add IDB perf tests stressing key size. https://bugs.webkit.org/show_bug.cgi?id=165567 Reviewed by Alex Christensen. * IndexedDB/large-array-keys.html: Added. * IndexedDB/large-binary-keys.html: Added. * IndexedDB/large-string-keys.html: Added. 2016-12-05 Brady Eidson Add an IndexedDB perf test to PerformanceTests. https://bugs.webkit.org/show_bug.cgi?id=165430 Reviewed by Alex Christensen. * IndexedDB/index-multientry.html: Added. 2016-12-02 Filip Pizlo ES6SampleBench should report an average for Steady State so that all of the numbers are comparable https://bugs.webkit.org/show_bug.cgi?id=165325 Reviewed by Saam Barati. This makes all of the numbers that ES6SampleBench reports comparable to each other: they all speak of the time it took to run an iteration of something. * ES6SampleBench/results.js: (Results.prototype.reportResult): 2016-11-18 Jer Noble Add some performance tests for various aspects of media loading and playback. https://bugs.webkit.org/show_bug.cgi?id=164977 Reviewed by Darin Adler. Add new tests for a few aspects of media playback; namely: how quickly media elements fire the "canplaythrough" event when all data is immediately available, how quickly HLS playback switches resolutions, and at what playback rate MSE-backed video can play without dropping frames. Skip these tests by default, as they're not runnable on all ports, and they require a webserver (run-webkit-httpd) to complete on macOS. * Media/HLSCanPlayThrough.html: Added. * Media/HLSGearChange.html: Added. * Media/MSECanPlayThrough.html: Added. * Media/MSEPlaybackRate.html: Added. * Media/StandardCanPlayThrough.html: Added. * Media/hls/1080p/iframe_index.m3u8: Added. * Media/hls/1080p/prog_index.m3u8: Added. * Media/hls/1080p/test.ts: Added. * Media/hls/480p/iframe_index.m3u8: Added. * Media/hls/480p/prog_index.m3u8: Added. * Media/hls/480p/test.ts: Added. * Media/hls/720p/iframe_index.m3u8: Added. * Media/hls/720p/prog_index.m3u8: Added. * Media/hls/720p/test.ts: Added. * Media/hls/720p/test.ts.back: Added. * Media/hls/index.m3u8: Added. * Media/media-source-loader.js: Added. (MediaSourceLoader): (MediaSourceLoader.prototype.loadManifest): (MediaSourceLoader.prototype.loadManifestSucceeded): (MediaSourceLoader.prototype.loadManifestFailed): (MediaSourceLoader.prototype.loadMediaData): (MediaSourceLoader.prototype.loadMediaDataSucceeded): (MediaSourceLoader.prototype.loadMediaDataFailed): (MediaSourceLoader.prototype.get type): (MediaSourceLoader.prototype.get duration): (MediaSourceLoader.prototype.get initSegment): (MediaSourceLoader.prototype.get mediaSegmentsLength): (MediaSourceLoader.prototype.mediaSegments): (MediaSourceLoader.prototype.get everyMediaSegment): * Media/test-fragmented-video.json: Added. * Media/test-fragmented-video.mp4: Added. * Media/test.mp4: Added. * Skipped: 2016-11-18 Filip Pizlo Concurrent GC should be able to run splay in debug mode and earley/raytrace in release mode with no perf regression https://bugs.webkit.org/show_bug.cgi?id=164282 Reviewed by Geoffrey Garen and Oliver Hunt. CDjs is a fun benchmark for stressing concurrent GCs, but to really give the GC a good workout you need to increase the amount of work that the test does. This adds a second configuration of the benchmark that has more aircraft. It uses much more memory and causes us to do more GCs and those GCs take longer. * JetStream/cdjs/benchmark.js: (benchmarkImpl): (benchmark): * JetStream/cdjs/large.js: Added. 2016-11-14 Filip Pizlo Unreviewed, revert unintended change. * ES6SampleBench/Air/benchmark.js: 2016-10-03 Saam Barati MapHash should speculate on the type of its child node https://bugs.webkit.org/show_bug.cgi?id=161922 Reviewed by Filip Pizlo. I gave the main generator a name so it's easier to see what it is when using the sampling profiler. * ES6SampleBench/Basic/ast.js: (Basic.Program): 2016-09-19 Sergio Villar Senin [css-grid] Remove the x2 computation of row sizes with indefinite heights https://bugs.webkit.org/show_bug.cgi?id=162150 Reviewed by Darin Adler. Added a new test case which checks the layout performance of grids inside other grids, i.e, grids acting both as grid container and grid item. * Layout/nested-grid.html: Added. 2016-09-09 Simon Fraser Perf test Animation/css-accelerated-animation.html failing https://bugs.webkit.org/show_bug.cgi?id=161795 Skip Animation/css-accelerated-animation.html since this only works as a MobileSafari perf test. * Skipped: 2016-09-08 Simon Fraser Add a content-animation test with accelerated CSS animations https://bugs.webkit.org/show_bug.cgi?id=161776 Reviewed by Dean Jackson. Add a test that measures the frame rate of accelerated CSS animations. This is like css-animation.html (which animates 'left' and 'top') but animates transforms instead. In order to get animation in X and Y we make two nested elements and set transformX() on one, and transformY() on the other. * Animation/css-accelerated-animation.html: Added. 2016-08-23 Saam Barati It should be easy to run ES6SampleBench from the jsc shell https://bugs.webkit.org/show_bug.cgi?id=161085 Reviewed by Yusuke Suzuki. This patch makes ES6 sample bench runnable through the `jsc` shell. To do that, you need to be in the PerformanceTests/ES6SampleBench directory and run `jsc cli.js`. To make this work, the benchmark is now aware of being run in two modes: via the browser, and via the shell. Each entry point will set a variable `isInBrowser`, and the benchmark will do different things based on if that variable is true or false. * ES6SampleBench/Air/benchmark.js: * ES6SampleBench/Air/stress-test.js: * ES6SampleBench/Basic/benchmark.js: (runBenchmark): * ES6SampleBench/Basic/stress-test.js: * ES6SampleBench/air_benchmark.js: * ES6SampleBench/basic_benchmark.js: * ES6SampleBench/cli.js: Added. (return.doRun): (makeBenchmarkRunner): * ES6SampleBench/driver.js: (Driver): (Driver.prototype._recomputeSummary): (Driver.prototype._iterate.window.setTimeout): (Driver.prototype._iterate): (Driver.prototype._updateIterations): * ES6SampleBench/glue.js: (reportResult): * ES6SampleBench/index.html: * ES6SampleBench/results.js: (Results): (Results.prototype.reportRunning): (Results.prototype.reportDone): (Results.prototype.reportError): * ES6SampleBench/stats.js: (Stats): (Stats.prototype.toString): (Stats.prototype._update): 2016-08-01 Said Abou-Hallawa Add an option to run the MotionMark tests with classic tile size (512x512) https://bugs.webkit.org/show_bug.cgi?id=160371 Reviewed by Darin Adler. Setting the body to large size (3000x3000) and overflow to scroll forces the classic tile size (512x512). This option does not affect the canvas tests because the canvas is displayed on one tile regardless of its size. * Animometer/developer.html: * Animometer/resources/debug-runner/animometer.css: (body.showing-test-container.tiles-big): (body.showing-test-container.tiles-classic): * Animometer/resources/debug-runner/animometer.js: * Animometer/resources/runner/animometer.js: (window.benchmarkController.startBenchmark): 2016-06-29 Filip Pizlo Generators violate bytecode liveness validation https://bugs.webkit.org/show_bug.cgi?id=159279 Reviewed by Yusuke Suzuki. Add Basic to our test harness. Also made some cosmetic changes to the benchmark harness. * ES6SampleBench/Basic/basic-tests.yaml: Added. * ES6SampleBench/Basic/stress-test.js: Added. (preciseTime): * ES6SampleBench/driver.js: (Driver): (Driver.prototype.start): (Driver.prototype.reportError): * ES6SampleBench/glue.js: * ES6SampleBench/index.html: 2016-06-28 Filip Pizlo ES6SampleBench should have a harness https://bugs.webkit.org/show_bug.cgi?id=159246 Reviewed by Saam Barati. This adds a simple web harness for ES6SampleBench. It runs Air and Basic 10 times for 200 iterations each and reports three metrics: First iteration: the time it takes for the first iteration to run. This is the first iteration after the benchmark is loaded into the iframe, so it's representative of what would happen if one of these workloads only ran for a short time. Worst 2%: of the last 199 iterations, the average of the worst 2% iterations. If code like any of these workloads was used in an important event handler, you'd want that code to run well in the worst case in addition to having great throughput. Steady state: the total of the last 199 iterations. This is representative of what would happen if you ran code like this for a long time. The total score is the geomean of the firstIteration/worstCase/steadyState numbers of the two benchmarks. The harness does statistics using Student's T-distribution confidence intervals. * ES6SampleBench/Basic/benchmark.js: (Benchmark): * ES6SampleBench/air_benchmark.js: Added. * ES6SampleBench/basic_benchmark.js: Added. * ES6SampleBench/driver.js: Added. (Driver): (Driver.prototype.addBenchmark): (Driver.prototype.start): (Driver.prototype.reportResult): (Driver.prototype.reportError): (Driver.prototype._recomputeSummary.Geomean): (Driver.prototype._recomputeSummary.Geomean.prototype.add): (Driver.prototype._recomputeSummary.Geomean.prototype.get result): (Driver.prototype._recomputeSummary): (Driver.prototype._iterate): (Driver.prototype._updateIterations): * ES6SampleBench/glue.js: Added. * ES6SampleBench/index.html: Added. * ES6SampleBench/results.js: Added. (Results): (Results.prototype.get benchmark): (Results.prototype.reset): (Results.prototype.reportRunning): (Results.prototype.reportDone): (Results.prototype.reportResult.averageAbovePercentile): (Results.prototype.reportResult): (Results.prototype.reportError): * ES6SampleBench/stats.js: Added. (Stats): (Stats.prototype.reset): (Stats.prototype.add): (Stats.prototype.get numIterations): (Stats.prototype.valueForIteration): (Stats.get result.tDist): (Stats.prototype.get result): (Stats.prototype.toString): (Stats.prototype._update): * ES6SampleBench/style.css: Added. (body): (body, th, tr): (h1, h2, h3, h4): (h1): (h2): (h3): (hr): (address): (img): (.underline): (ol.loweralpha): (ol.upperalpha): (ol.lowerroman): (ol.upperroman): (ol.arabic): (.banner-link:link, .banner-link:visited): (:link, :visited): (h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited): (.anchor:link, .anchor:visited): (* > .anchor:link, * > .anchor:visited): (span:hover .anchor): (a.forbidden, span.forbidden): (a.missing:hover): (a.closed:link, a.closed:visited, span.closed): (pre): (div.code): (div.code pre): (dt): (dd): (dd:last-child): (.site-logo): (.site-logo .tagline): (table): (#contents): (p): (p:last-child): (th): (td): 2016-06-28 Jon Lee Update focus test https://bugs.webkit.org/show_bug.cgi?id=159242 rdar://problem/27070007 Reviewed by Dean Jackson. Provisionally reviewed by Said Abou-Hallawa. Move previous test to dom suite, and update the test for better reporting of frame rate, although it uses a different rendering path. * Animometer/resources/debug-runner/tests.js: Add to dom suite. * Animometer/tests/dom/focus.html: Copied from PerformanceTests/Animometer/tests/master/focus.html. * Animometer/tests/dom/resources/focus.js: Copied from PerformanceTests/Animometer/tests/master/resources/focus.js. * Animometer/tests/master/focus.html: Remove center element. * Animometer/tests/master/resources/focus.js: Use narrower size range with smaller particles. Remove the container elements. Inline getBlurValue and getOpacityValue since they are only called once. 2016-06-28 Filip Pizlo Move Air.js and Basic into ES6SampleBench Rubber stamped by Geoffrey Garen. We want to group our ES6 benchmarks together, and eventually, we want to give them a common harness. * Air.js: Removed. * Air.js/README.md: Removed. * Air.js/airjs-tests.yaml: Removed. * Air.js/all.js: Removed. * Air.js/allocate_stack.js: Removed. * Air.js/arg.js: Removed. * Air.js/basic_block.js: Removed. * Air.js/benchmark.js: Removed. * Air.js/code.js: Removed. * Air.js/custom.js: Removed. * Air.js/frequented_block.js: Removed. * Air.js/insertion_set.js: Removed. * Air.js/inst.js: Removed. * Air.js/liveness.js: Removed. * Air.js/make_dist.sh: Removed. * Air.js/opcode.js: Removed. * Air.js/payload-airjs-ACLj8C.js: Removed. * Air.js/payload-gbemu-executeIteration.js: Removed. * Air.js/payload-imaging-gaussian-blur-gaussianBlur.js: Removed. * Air.js/payload-typescript-scanIdentifier.js: Removed. * Air.js/reg.js: Removed. * Air.js/stack_slot.js: Removed. * Air.js/stress-test.js: Removed. * Air.js/strip-hash.rb: Removed. * Air.js/symbols.js: Removed. * Air.js/test.html: Removed. * Air.js/test.js: Removed. * Air.js/tmp.js: Removed. * Air.js/tmp_base.js: Removed. * Air.js/util.js: Removed. * Basic: Removed. * Basic/ast.js: Removed. * Basic/basic.js: Removed. * Basic/benchmark.js: Removed. * Basic/caseless_map.js: Removed. * Basic/lexer.js: Removed. * Basic/number.js: Removed. * Basic/parser.js: Removed. * Basic/random.js: Removed. * Basic/state.js: Removed. * Basic/test.html: Removed. * Basic/test.js: Removed. * Basic/util.js: Removed. * ES6SampleBench: Added. * ES6SampleBench/Air: Copied from PerformanceTests/Air.js. * ES6SampleBench/Basic: Copied from PerformanceTests/Basic. * Skipped: 2016-06-24 Filip Pizlo Add a ES6 generator benchmark https://bugs.webkit.org/show_bug.cgi?id=159101 Rubber stamped by Keith Miller. This adds a Basic interpreter loosely based on ECMA-55: http://www.ecma-international.org/publications/files/ECMA-ST-WITHDRAWN/ECMA-55,%201st%20Edition,%20January%201978.pdf It includes a lexer that is a generator, a parser that uses regular expressions, and an AST walk interpreter where the walking functions for statements are generators that call each other with yield*. This enables the interpreter to look like an AST walk even though it can yield at INPUT and PRINT statements. This also uses for-of, classes, Map, and WeakMap. It also uses deprecated-but-awesome RegExp features like RegExp.lastMatch and RegExp.rightContext. I did it that way because this is how I've always written lexers in dynamic languages; see offlineasm's lex() method in parser.rb for example. The benchmark runs a handful of simple Basic programs. The longest-running one computes prime numbers. Includes a command-line and web harness. On my machine it runs in 2-3 seconds. * Basic: Added. * Basic/ast.js: Added. (Basic.NumberApply): (Basic.Variable): (Basic.Const): (Basic.NumberPow): (Basic.NumberMul): (Basic.NumberDiv): (Basic.NumberNeg): (Basic.NumberAdd): (Basic.NumberSub): (Basic.StringVar): (Basic.Equals): (Basic.NotEquals): (Basic.LessThan): (Basic.GreaterThan): (Basic.LessEqual): (Basic.GreaterEqual): (Basic.GoTo): (Basic.GoSub): (Basic.Def): (Basic.Let): (Basic.If): (Basic.Return): (Basic.Stop): (Basic.On): (sideState.shouldStop): (Basic.For): (Basic.Next): (Basic.Print): (Basic.Input): (Basic.Read): (Basic.Restore): (Basic.Dim): (Basic.Randomize): (Basic.End): (Basic.Program): * Basic/basic.js: Added. (prepare): (simulate): * Basic/benchmark.js: Added. (Benchmark): (Benchmark.prototype.runIteration.expect): (Benchmark.prototype.runIteration): (runBenchmark): * Basic/caseless_map.js: Added. (CaselessMap): * Basic/lexer.js: Added. (lex.consumeWhitespace): (lex.consume): (lex): * Basic/lexer_test.js: Added. * Basic/number.js: Added. (NumberValue): (NumberValue.prototype.get value): (NumberValue.prototype.apply): (NumberValue.prototype.leftApply): (NumberValue.prototype.assign): (NumberArray.): (NumberArray): (NumberArray.prototype.apply): (NumberArray.prototype.leftApply): (NumberFunction): (NumberFunction.prototype.apply): (NumberFunction.prototype.leftApply): (NativeFunction): (NativeFunction.prototype.apply): (NativeFunction.prototype.leftApply): * Basic/parser.js: Added. (parse): (parse.pushToken): (parse.peekToken): (parse.consumeKind): (parse.consumeToken): (parse.parseVariable): (parse.parseNumericExpression.parsePrimary): (parse.parseNumericExpression.parseFactor): (parse.parseNumericExpression.parseTerm): (parse.parseNumericExpression): (parse.parseConstant): (parse.parseStringExpression): (parse.isStringExpression): (parse.parseRelationalExpression): (parse.parseNonNegativeInteger): (parse.parseGoToStatement): (parse.parseGoSubStatement): (parse.parseStatement): (parse.parseStatements): * Basic/random.js: Added. (createRNG): (createRNGWithFixedSeed): (createRNGWithRandomSeed): * Basic/state.js: Added. (State): (State.prototype.getValue): (State.prototype.getSideState): (State.prototype.abort): (State.prototype.validate): * Basic/test.html: Added. * Basic/test.js: Added. * Basic/util.js: Added. (this.performance.performance.now.currentTime): (else.this.preciseTime.currentTime): (else.currentTime): * Skipped: Make sure that we don't run Basic yet. 2016-06-21 Jon Lee Update canvas size when benchmark begins https://bugs.webkit.org/show_bug.cgi?id=159010 Reviewed by Dean Jackson. Previously we would evaluate the media queries and assign the canvas size to the test on body.onload. Instead, do it once the user starts the benchmark. * Animometer/resources/debug-runner/animometer.js: Move benchmarkController.determineCanvasSize() to benchmarkController._startBenchmark. * Animometer/resources/runner/animometer.js: Ditto. 2016-06-21 Jon Lee Add new timestamp option https://bugs.webkit.org/show_bug.cgi?id=159006 Reviewed by Dean Jackson. Add a new option to take timestamps from the rAF callback. * Animometer/developer.html: Added option. * Animometer/tests/resources/main.js: (Benchmark): Fall back to using the rAF timestamp if performance.now() is not available. (Benchmark._animateLoop): Update how timestamp is set. Prefer to use local var instead of accessing private var. 2016-06-21 Jon Lee Improvements to Animometer benchmark https://bugs.webkit.org/show_bug.cgi?id=157738 Reviewed by Dean Jackson. Provisionally reviewed by Said Abou-Hallawa. Update tests. * Animometer/tests/master/text.html: Ensure only three text sizes for the three canvases. * Animometer/tests/master/focus.html: Reduce the text size to fit with smaller particle sizes. * Animometer/tests/master/resources/focus.js: Remove the quadratic distribution for particle sizes, and make it linear. Reduce the size variance. Shuffle the math to reduce some calculations per frame. Fix the placement of the particles which might otherwise be culled. * Animometer/tests/master/resources/image-data.js: Reduce the particle size to encourage larger scores. 2016-06-21 Jon Lee Improvements to Animometer benchmark https://bugs.webkit.org/show_bug.cgi?id=157738 Reviewed by Dean Jackson. Provisionally reviewed by Said Abou-Hallawa. Include confidence interval for the final score, and store the canvas size in the serialization so that it is accurately shown in results. * Animometer/developer.html: Add a "confidence" div. * Animometer/index.html: Ditto. Convert "mean" to "confidence". * Animometer/resources/debug-runner/animometer.js: Look at options, and if the configuration is included, update the body class based on it (similar to what we do when we first load the page). That way, if you drag-and-drop previous results in, that configuration is reflected in the dashboard. Show the full confidence interval. * Animometer/resources/debug-runner/animometer.css: * Animometer/resources/debug-runner/animometer.js: Style update. * Animometer/resources/runner/animometer.css: * Animometer/resources/runner/animometer.js: (_processData): Propagate the confidence interval values out and calculate the lower and upper bounds. For now, shortcut the aggregate calculation, since we only go through one iteration. (this._processData.calculateScore): Propagate the confidence interval out to be next to the score. Depending on the controller these values are calculated differently. (this._processData._getResultsProperty): Convenience function. (this._processData.get score): Refactor. (this._processData.get scoreLowerBound): Get the aggregate lower bound. (this._processData.get scoreUpperBound): Get the aggregate upper bound. (window.sectionsManager.setSectionScore): (window.benchmarkController._startBenchmark): When the benchmark starts, note the canvas size and add it to options. That way it will be automatically be serialized. (window.benchmarkController.showResults): Include the maximum deviation percentage. * Animometer/resources/runner/lines.svg: Make the background line up with the skew. * Animometer/resources/runner/tests.js: (Headers.details.text): Refactor. * Animometer/resources/statistics.js: (Statistics.largestDeviationPercentage): Convenience function to calculate the deviation percentage on either end and return the largest deviation. * Animometer/resources/strings.js: Allow specifying a regression profile to use instead of taking the one with the lowest error. Address an issue in the focus test when the regression calculated ends up overestimating the change point, causing a cascade of tougher ramps. The reason behind this is that at max complexity of an initial ramp, the frame length is very high, and it influences the second segment of the piecewise regression strongly, causing it to be very steep. As a result, the first segment, expected to be flat, ends up covering a higher range of complexity. That makes the change point much higher than it should be. To avoid this, we will add a sanity check on the maximum value of the ramp. If the regression's projected value at the maximum complexity of the current ramp is very slow (less than 20 fps), 1) reduce the maximum complexity by 20%, and 2) do not include the regression's change point in the change point estimator. That estimator is used as the midpoint of the next ramp, and including the change point from a poor regression can bake in the error. The controller already knows how to adjust for ramps that are too easy for the system. * Animometer/resources/runner/animometer.js: (this._processData.findRegression): Takes a preferred profile and gives that to Regression. (this._processData.calculateScore): With the ramp controller, take the profile of the ramp that was used the most when calculating the ramp's regression. That profile is what is used for the test's score. * Animometer/resources/statistics.js: (Regression.Utilities.createClass): Update to take an options object which can specify a profile to calculate with. Otherwise it will continue to use both and select the one with the lower error. (_calculateRegression): Fix an issue where we claim 0 error if the regression calculation fails due to divide-by-zero. Instead reject that regression calculation by giving it Number.MAX_VALUE. * Animometer/resources/strings.js: New strings for marking a regression as flat or slope. * Animometer/tests/resources/main.js: (RampController): Rename the thresholds for clarity. Add a threshold that, if exceeded, will lower the maximum complexity of the next ramp. (tune): Relax the cdf check to consider whether the interval definitely falls in the desired frame length threshold. (processSamples): Include the profile in the ramp. Update ramp controller test. Increase the length of the test to 30 seconds, and extend the interval to 120 ms during sampling. Improve the estimation of the ramp parameters. * Animometer/developer.html: Change default to 30 seconds, and don't show the progress bar by default. * Animometer/resources/runner/animometer.js: Change default to 30 seconds. * Animometer/tests/resources/main.js: A number of improvements to the ramp controller, in the order in which they appear in the patch: - With a longer test length use longer ramps with longer intervals to get more data at each complexity. Keep the 100 ms interval length during the ramp up phase since we don't need to spend more time there to find the right order of magnitude, but increase it during the ramps to 120 ms. - The ramp linearly interpolates the complexity to render based on its timestamp, but it would never sample the minimum complexity. Instead of lerping max to min complexity from time 0 to t where t is the ramp length, instead lerp from 0 to (t - intervalSampleLength) so that we can have at least one interval sample at the min complexity for that ramp. - Some regression calculations only come out with one line segment rather than the two we expect. This could be due to a noisy ramp or the ramp's range is too narrow. If that's the case, influence the minimum complexity of the next ramp towards the lowest bound of 1, so that we ensure that at least part of the ramp is covering a complexity range that the system can handle at full 60. - Remove an assignment to interpolatedFrameLength since that is never subsequently used. Update the format used to serialize the results for analysis. Each data point used to have named properties for fields like complexity and frame rate. In addition the serialized numbers had rounding errors that took up many characters. Update the format by introducing a new data container called SampleData, which contains a field map. The map maps a string to an array index. Each data point is an array, so, to get a stat, use the field map to get the array index into the data point. This allows future versions to track other data, and reduces the size of the output string by two-thirds. * Animometer/resources/extensions.js: (Utilities.toFixedNumber): Add convenience function that truncates the number to a fixed precision, and converts it back to a number. (SampleData): New class that contains sample data and a field map that maps properties to an array index. (get length): Number of data points. (addField): Add a field to the field map. (push): Add a data point. (sort): Sort the data. (slice): Return new SampleData object with sliced data. (forEach): Iterate over the data with provided function. (createDatum): (getFieldInDatum): Returns the data point associated with the field name by looking it up in the field map in the datum provided, which can be the datum object itself (an array) or an index into the data member variable. (setFieldInDatum): Sets the data point associated with the field name. (at): Returns the data point at the provided index. (toArray): Serializes the data where the field map serves as property names for each point. * Animometer/resources/debug-runner/graph.js: (updateGraphData): Remove unused _testData. Convert the data to the old array format for the graph to use, since the old format was much easier to work with when displaying the graphs. (onGraphTypeChanged): For some controllers, no alternative score or mean is provided. * Animometer/resources/runner/animometer.css: * Animometer/resources/runner/animometer.js: Refactor to use SampleData. Update JSON output to only go to 3 digits of precision for purposes of reducing the data size. * Animometer/resources/strings.js: Add new strings to put into the field maps. * Animometer/tests/resources/main.js: Refactor to use SampleData. * Animometer/developer.html: * Animometer/index.html: Restructure results table for both pages. Add charset attribute to tests.js include. * Animometer/resources/debug-runner/animometer.css: Clear out styles from release runner. * Animometer/resources/debug-runner/graph.js: (onGraphTypeChanged): Update score and mean if bootstrap results are available from the controller, since not all controllers do bootstrapping. * Animometer/resources/debug-runner/tests.js: Update header text. * Animometer/resources/runner/animometer.css: Include confidence interval in results. * Animometer/resources/runner/animometer.js: (ResultsTable._addHeader): Header contents can be HTML, so use innerHTML instead. (ResultsTable._addBody): Add tbody element. (ResultsTable._addTest): Allow a data cell to invoke a JS function to get its contents. (window.benchmarkController.showResults): Add table that includes tests' confidence intervals. * Animometer/resources/runner/tests.js: (Headers.details.text): Add new details table that includes bootstrap confidence interval. The interval can be asymmetric, but for simplicity, report the maximum deviation percentage on either side of the bootstrap median. * Animometer/resources/statistics.js: (bootstrap): Include the confidence percentage in the return object. Report canvas size in results. * Animometer/developer.html: Add markup to indicate whether a small, medium, or large canvas was used. * Animometer/index.html: Ditto. * Animometer/resources/debug-runner/animometer.js: Call determineCanvasSize(). * Animometer/resources/runner/animometer.css: Update styles to set the canvas based on the body class size. * Animometer/resources/runner/animometer.js: (window.benchmarkController.initialize): Update styles to set the canvas based on the body class size. (window.benchmarkController.determineCanvasSize): Run various media queries and set the body class based on the size of the device. * Animometer/developer.html: Refactor to include the main CSS file, and redo the layout so that it doesn't rely on flexbox. * Animometer/resources/debug-runner/animometer.css: * Animometer/resources/debug-runner/animometer.js: (updateDisplay): Since various parts of the script alter the body class, we can't replace the className directly. Instead, remove all display-based values and then add the one that was selected. * Animometer/resources/debug-runner/graph.js: (updateGraphData): To set the size of the graph, use window.innerHeight. * Animometer/resources/runner/animometer.js: (window.sectionsManager.showSection): Since various parts of the script alter the body class, we can't replace the className directly. Remove all of the section classes individually and then add the one desired. * Animometer/tests/resources/stage.css: Remove -apple-system as a font to use in the stage. 2016-06-12 Filip Pizlo Fix round-down goof in Air.js's ShuffleCustom.forEachArg https://bugs.webkit.org/show_bug.cgi?id=158674 Reviewed by Michael Saboff. x / 3 * 3 is not how you round down to multiples of 3 in JavaScript. You need to do Math.floor(x / 3) * 3 instead. This is a benign change, because having extra arguments to a Shuffle is not something we actually take advantage of yet. But I think it's best to match the original C++ code's intent. * Air.js/custom.js: (const.ShuffleCustom.forEachArg): 2016-06-11 Filip Pizlo Unreviewed, skip Air.js. It got unskipped when I renamed it from JSAir. * Skipped: 2016-06-10 Filip Pizlo Make it easy to package Air.js https://bugs.webkit.org/show_bug.cgi?id=158652 Reviewed by Benjamin Poulain. If you want to give Air.js to someone, you can now do: cd PerformanceTests/Air.js ./make_dist.sh This will create Air.js.tar.gz and a directory called Air.js. If you want to send someone the benchmark, just send either of those things and tell them to look at index.html. You may have to edit make_dist.sh for wherever you have Markdown.pl. You can get that from https://daringfireball.net/projects/markdown/ * Air.js/make_dist.sh: Added. * Air.js/test.html: 2016-06-10 Filip Pizlo Unreviewed, make the link to test.html into an actual link. * Air.js/README.md: 2016-06-10 Filip Pizlo Fix some text in Air.js/README.md https://bugs.webkit.org/show_bug.cgi?id=158650 Reviewed by Benjamin Poulain. I read the text again and found bugs: - We never actually say how to run the benchmark. This change adds a blurb about how to run it. - We both say that allocateStack is responsible for the bulk of the running time and that we haven't measured where the bulk of the time is spent. This changes the text to say that it was a goal to make allocateStack be the hottest part of the benchmark, but that we did not measure this. * Air.js/README.md: 2016-06-10 Filip Pizlo Air.js should have some documentation https://bugs.webkit.org/show_bug.cgi?id=158648 Reviewed by Keith Miller. I want to be able to point people at a document if they want to know more about this benchmark. * Air.js/README.md: Added. 2016-06-10 Filip Pizlo Rename JSAir to Air.js. Rubber stamped by Mark Lam. * Air.js: Copied from PerformanceTests/JSAir. * Air.js/airjs-tests.yaml: Copied from PerformanceTests/JSAir/jsair-tests.yaml. * Air.js/benchmark.js: Copied from PerformanceTests/JSAir/benchmark.js. (Benchmark): * Air.js/jsair-tests.yaml: Removed. * Air.js/payload-airjs-ACLj8C.js: Copied from PerformanceTests/JSAir/payload-jsair-ACLj8C.js. * Air.js/payload-jsair-ACLj8C.js: Removed. * Air.js/stress-test.js: Copied from PerformanceTests/JSAir/stress-test.js. * Air.js/test.html: Copied from PerformanceTests/JSAir/test.html. * Air.js/test.js: Copied from PerformanceTests/JSAir/test.js. * JSAir: Removed. * JSAir/all.js: Removed. * JSAir/allocate_stack.js: Removed. * JSAir/arg.js: Removed. * JSAir/basic_block.js: Removed. * JSAir/benchmark.js: Removed. * JSAir/code.js: Removed. * JSAir/custom.js: Removed. * JSAir/frequented_block.js: Removed. * JSAir/insertion_set.js: Removed. * JSAir/inst.js: Removed. * JSAir/jsair-tests.yaml: Removed. * JSAir/liveness.js: Removed. * JSAir/opcode.js: Removed. * JSAir/payload-gbemu-executeIteration.js: Removed. * JSAir/payload-imaging-gaussian-blur-gaussianBlur.js: Removed. * JSAir/payload-jsair-ACLj8C.js: Removed. * JSAir/payload-typescript-scanIdentifier.js: Removed. * JSAir/reg.js: Removed. * JSAir/stack_slot.js: Removed. * JSAir/stress-test.js: Removed. * JSAir/strip-hash.rb: Removed. * JSAir/symbols.js: Removed. * JSAir/test.html: Removed. * JSAir/test.js: Removed. * JSAir/tmp.js: Removed. * JSAir/tmp_base.js: Removed. * JSAir/util.js: Removed. 2016-06-10 Filip Pizlo JSC Stress Test failing: jsair-tests.yaml/test.js.ftl-eager-no-cjit https://bugs.webkit.org/show_bug.cgi?id=158571 Reviewed by Keith Miller. Introduce a different harness for run-jsc-stress-tests, which runs for a minimum of 10 iterations and then tries to do any number of "bonus" iterations until it's been running for two seconds. Since this is the sort of test that isn't really meant to stress anything in particular, I think it's OK if it is time-limited in this way. The worst case is that some of its failures will be flaky, but I think that they would have been flaky anyway given the complexity of the test. * JSAir/benchmark.js: (Benchmark): (Benchmark.prototype.runIteration): (benchmark): Deleted. * JSAir/jsair-tests.yaml: * JSAir/stress-test.js: Added. (preciseTime): * JSAir/test.html: * JSAir/test.js: 2016-06-09 Filip Pizlo Unreviewed, teach the perf bots not to run JSAir. * Skipped: 2016-06-08 Filip Pizlo Use more ES6 features in JSAir https://bugs.webkit.org/show_bug.cgi?id=158497 Reviewed by Keith Miller. This improves JSAir with the following ES6 features suggested by JoePeck: - String interpolation. - Destructuring inside PatchCustom. - Default arguments. All of these things are on hot paths. Note that I didn't use string interpolation everywhere that I could, only in those places where it made the code more readable. In Ruby, I used the style that if the interpolation expression has any non-trivial stuff (like a ternary operator, a chain of calls, or embedded strings) then it's better to use regular strcat. I think that's what I carried over to here. Note that the previous change (Add result validation to JSAir) also made the Proxy code not dead, though it's not necessarily on the hot path. The Proxy isn't called into frequently but it's used from a function that is otherwise hot, so if calling into the Proxy prevents that function from being optimized then it will hurt so good. I also reenabled tail calls in a few places. This change doesn't seem to change the performance of the benchmark for us. That's expected since these ES6 features are cheap. Note that this claim doesn't include Proxy, which was added in a separate change and that change did make the benchmark overall more expensive. * JSAir/allocate_stack.js: (allocateStack): * JSAir/arg.js: (Arg.createBitImm64): (Arg.createAddr): (Arg.createStack): (Arg.logScale): (Arg.createIndex): * JSAir/basic_block.js: (BasicBlock.get headerString): (BasicBlock.prototype.get if): (BasicBlock): * JSAir/benchmark.js: (benchmark): * JSAir/code.js: (Code): (Code.prototype.addBlock): (Code.prototype.addStackSlot): (Code.prototype.newTmp): (Code.prototype.get size): (Code.prototype.get blocks): (Code.prototype.get stackSlots): (Code.prototype.tmps): (Code.prototype.get callArgAreaSize): (Code.prototype.toString): * JSAir/custom.js: (const.PatchCustom.forEachArg): * JSAir/inst.js: (Inst): * JSAir/reg.js: (Reg.prototype.toString): * JSAir/util.js: (symbolName): (lowerSymbolName): 2016-06-07 Filip Pizlo Add result validation to JSAir https://bugs.webkit.org/show_bug.cgi?id=158493 Reviewed by Saam Barati. This adds the ability to hash a Code in a way that matches the C++ code's hashing of Code. This allows us to check if the Code that JSAir sees is the code that C++ saw. We use this to check the Code before and after allocateStack, and compare against hashes we got from C++. Doing this uncovered bugs. roundUpToMultipleOf wasn't doing anything. allocateStack was not allocating things correctly because I was concatting a Set to an Array, which doesn't really work. Now these bugs are fixed. The checking step adds to the running time so I reduced the number of iterations. The benchmark spends a decent amount of its time computing Code hashes; I think it's around 1/3 total. This is probably OK. It's better to verify the results even if the running time is not all in the "core" of the algorithm. Also add a run-jsc-stress-tests yaml file to allow this to run as a test. * JSAir/allocate_stack.js: * JSAir/arg.js: (Arg.createImm): (Arg.createBigImm): (Arg.createBitImm): (Arg.createBitImm64): (Arg.createWidth): (Arg.createSpecial): (Arg.prototype.get kind): (Arg.prototype.get isTmp): (Arg.prototype.get isImm): (Arg.prototype.get isSomeImm): (Arg.prototype.get isSomeBigImm): (Arg.prototype.get isCondition): (Arg.prototype.get isWidth): (Arg.prototype.get isSpecial): (Arg.prototype.get isAlive): (Arg.prototype.get tmp): (Arg.prototype.get value): (Arg.prototype.get lowValue): (Arg.prototype.get highValue): (Arg.prototype.get base): (Arg.prototype.get isGP): (Arg.prototype.get isFP): (Arg.prototype.isValidForm): (Arg.prototype.get isInvertible): (Arg.kindCode): (Arg.prototype.hash): (Arg.prototype.toString): (Arg): * JSAir/basic_block.js: (BasicBlock.get successorBlocks): * JSAir/benchmark.js: (benchmark): * JSAir/code.js: (Code.prototype.setFrameSize): (Code.prototype.hash): (Code.prototype.toString): (Code): * JSAir/inst.js: (Inst.prototype.get hasNonArgEffects): (Inst.prototype.hash): (Inst.prototype.toString): (Inst): * JSAir/jsair-tests.yaml: Added. * JSAir/opcode.js: (Inst_forEachArg): (Inst_hasNonArgEffects): (opcodeCode): * JSAir/payload-gbemu-executeIteration.js: (createPayloadGbemuExecuteIteration): * JSAir/payload-imaging-gaussian-blur-gaussianBlur.js: (createPayloadImagingGaussianBlurGaussianBlur): * JSAir/payload-jsair-ACLj8C.js: (createPayloadJSAirACLj8C): * JSAir/payload-typescript-scanIdentifier.js: (createPayloadTypescriptScanIdentifier): * JSAir/reg.js: (Reg.prototype.get isReg): (Reg.prototype.hash): (Reg.prototype.toString): * JSAir/stack_slot.js: (StackSlot.prototype.setOffsetFromFP): (StackSlot.prototype.hash): (StackSlot.prototype.toString): * JSAir/symbols.js: (relCondCode): (resCondCode): (doubleCondCode): * JSAir/test.html: * JSAir/tmp.js: (Tmp.prototype.get isReg): (Tmp.prototype.hash): (Tmp.prototype.toString): * JSAir/util.js: (roundUpToMultipleOf): (symbolName): 2016-06-07 Filip Pizlo Implement Air::allocateStack() in ES6 to see how much of a bad idea that is https://bugs.webkit.org/show_bug.cgi?id=158318 Reviewed by Saam Barati. This adds a new benchmark for us to play with called JSAir. It's a complete ES6 implementation of Air's allocateStack() phase along with all of Air needed to run that phase. This includes things like stack slots, registers, temporaries, basic blocks, instructions, and all of the code for iterating over, inspecting, and modifying those things. To make this work, JSC can now dump Air just before allocateStack() in the form of JS code that creates a Code object that matches exactly what C++ Air saw. This benchmark comprises four Air IRs: - Octane/gbemu's largest function, executeIteration. - Kraken/imaging-gaussian-blur's largest function in OSR entry mode, gaussuanBlur. - Octane/typescript's largest function that is actually hot, scanIdentifier. - JSAir's largest hot function, which is anonymous, so we call it by its hash (ACLj8C). This runs in about 2 seconds on my machine in JSC trunk. It includes both a commandline harness and a web harness. JSAir is almost exactly 100x slower in ES6 in WebKit than the C++ Air::allocateStack() phase on which it is based. JSAir uses the following ES6 features: - Symbol. - for-of. - arrow functions. - Map/Set. - let/const. - classes. All of these things are used in anger and should end up on the hot path. There is also code that uses Proxies, but it ends up being dead. We can improve this even more: I still need to add result validation: https://bugs.webkit.org/show_bug.cgi?id=158493 I want to make it use more ES6 features: https://bugs.webkit.org/show_bug.cgi?id=158497 * JSAir: Added. * JSAir/all.js: Added. * JSAir/allocate_stack.js: Added. (allocateStack.attemptAssignment): (allocateStack.assign): (allocateStack.interfere): (allocateStack.): (allocateStack): * JSAir/arg.js: Added. (Arg): (Arg.isAnyUse): (Arg.isColdUse): (Arg.isWarmUse): (Arg.cooled): (Arg.isEarlyUse): (Arg.isLateUse): (Arg.isAnyDef): (Arg.isEarlyDef): (Arg.isLateDef): (Arg.isZDef): (Arg.typeForB3Type): (Arg.widthForB3Type): (Arg.conservativeWidth): (Arg.minimumWidth): (Arg.bytes): (Arg.widthForBytes): (Arg.createTmp): (Arg.fromReg): (Arg.createImm): (Arg.createBigImm): (Arg.createBitImm): (Arg.createBitImm64): (Arg.createAddr): (Arg.createStack): (Arg.createCallArg): (Arg.createStackAddr): (Arg.isValidScale): (Arg.logScale): (Arg.createIndex): (Arg.createRelCond): (Arg.createResCond): (Arg.createDoubleCond): (Arg.createWidth): (Arg.prototype.get kind): (Arg.prototype.get isTmp): (Arg.prototype.get isImm): (Arg.prototype.get isBigImm): (Arg.prototype.get isBitImm): (Arg.prototype.get isBitImm64): (Arg.prototype.get isSomeImm): (Arg.prototype.get isAddr): (Arg.prototype.get isStack): (Arg.prototype.get isCallArg): (Arg.prototype.get isIndex): (Arg.prototype.get isMemory): (Arg.prototype.get isStackMemory): (Arg.prototype.get isRelCond): (Arg.prototype.get isResCond): (Arg.prototype.get isDoubleCond): (Arg.prototype.get isCondition): (Arg.prototype.get isWidth): (Arg.prototype.get isAlive): (Arg.prototype.get tmp): (Arg.prototype.get value): (Arg.prototype.get base): (Arg.prototype.get hasOffset): (Arg.prototype.get offset): (Arg.prototype.get stackSlot): (Arg.prototype.get index): (Arg.prototype.get scale): (Arg.prototype.get logScale): (Arg.prototype.get width): (Arg.prototype.get isGPTmp): (Arg.prototype.get isFPTmp): (Arg.prototype.get isGP): (Arg.prototype.get isFP): (Arg.prototype.get hasType): (Arg.prototype.get type): (Arg.prototype.isType): (Arg.prototype.isCompatibleType): (Arg.prototype.get isGPR): (Arg.prototype.get gpr): (Arg.prototype.get isFPR): (Arg.prototype.get fpr): (Arg.prototype.get isReg): (Arg.prototype.get reg): (Arg.isValidImmForm): (Arg.isValidBitImmForm): (Arg.isValidBitImm64Form): (Arg.isValidAddrForm): (Arg.isValidIndexForm): (Arg.prototype.isValidForm): (Arg.prototype.forEachTmpFast): (Arg.prototype.usesTmp): (Arg.prototype.forEachTmp): (Arg.prototype.is): (Arg.prototype.as): (Arg.prototype.forEachFast): (Arg.prototype.forEach): (Arg.extract): (Arg.forEachFast): (Arg.forEach): (Arg.prototype.get condition): (Arg.prototype.get isInvertible): (Arg.prototype.toString): * JSAir/basic_block.js: Added. (BasicBlock): (BasicBlock.prototype.get index): (BasicBlock.prototype.get size): (BasicBlock.prototype.Symbol.iterator): (BasicBlock.prototype.at): (BasicBlock.get last): (BasicBlock.get insts): (BasicBlock.get numSuccessors): (BasicBlock.get successors): (BasicBlock.get successorBlocks.): (BasicBlock.get successorBlocks): (BasicBlock.set get numPredecessors): (BasicBlock.get predecessors): (BasicBlock.get frequency): (BasicBlock.get headerString): (BasicBlock.get footerString): * JSAir/benchmark.js: Added. (benchmark): * JSAir/code.js: Added. (Code): (Code.prototype.addBlock): (Code.prototype.addStackSlot): (Code.prototype.newTmp): (Code.prototype.get size): (Code.prototype.at): (Code.prototype.Symbol.iterator): (Code.prototype.get blocks): (Code.prototype.get stackSlots): (Code.prototype.tmps): (Code.prototype.get callArgAreaSize): (Code.prototype.requestCallArgAreaSize): (Code.prototype.get frameSize): (Code.prototype.setFrameSize): (Code.prototype.toString): * JSAir/custom.js: Added. (const.ShuffleCustom.forEachArg): (const.ShuffleCustom.hasNonArgNonControlEffects): (const.PatchCustom.forEachArg): (const.PatchCustom.hasNonArgNonControlEffects): (const.CCallCustom.forEachArg): (const.CCallCustom.hasNonArgNonControlEffects): (const.ColdCCallCustom.forEachArg): (const.ColdCCallCustom.hasNonArgNonControlEffects): * JSAir/frequented_block.js: Added. (FrequentedBlock): (FrequentedBlock.prototype.toString): * JSAir/insertion_set.js: Added. (Insertion): (Insertion.prototype.get index): (Insertion.prototype.get element): (Insertion.prototype.lessThan): (InsertionSet): (InsertionSet.prototype.appendInsertion): (InsertionSet.prototype.append): (InsertionSet.prototype.execute): * JSAir/inst.js: Added. (Inst): (Inst.prototype.append): (Inst.prototype.clear): (Inst.prototype.get opcode): (Inst.prototype.get args): (Inst.prototype.visitArg): (Inst.prototype.forEachTmpFast): (Inst.prototype.forEachArg): (Inst.prototype.forEachTmp): (Inst.prototype.forEach): (Inst.forEachDef): (Inst.forEachDefWithExtraClobberedRegs): (Inst.prototype.get hasNonArgEffects): (Inst.prototype.toString): * JSAir/liveness.js: Added. (Liveness): (Liveness.prototype.get thing): (Liveness.prototype.get code): (Liveness.prototype.get liveAtHead): (Liveness.prototype.get liveAtTail): (Liveness.prototype.localCalc.LocalCalc): (Liveness.prototype.localCalc.LocalCalc.prototype.get liveSet): (Liveness.prototype.localCalc.LocalCalc.prototype.execute): (Liveness.prototype.localCalc): * JSAir/opcode.js: Added. (Inst_forEachArg): (Inst_hasNonArgEffects): * JSAir/payload-gbemu-executeIteration.js: Added. (createPayloadGbemuExecuteIteration): * JSAir/payload-imaging-gaussian-blur-gaussianBlur.js: Added. (createPayloadImagingGaussianBlurGaussianBlur): * JSAir/payload-jsair-ACLj8C.js: Added. (createPayloadJSAirACLj8C): * JSAir/payload-typescript-scanIdentifier.js: Added. (createPayloadTypescriptScanIdentifier): * JSAir/reg.js: Added. (Reg): (Reg.fromReg): (Reg.prototype.get index): (Reg.prototype.get type): (Reg.prototype.get name): (Reg.prototype.get isCalleeSave): (Reg.prototype.get isReg): (Reg.prototype.toString): (Reg.extract): (Reg.forEachFast): (Reg.forEach): (newGPR): (Reg.gprs.Reg.fprs.Reg.calleeSaveGPRs.Reg.calleeSaveFPRs.Reg.calleeSaves): * JSAir/stack_slot.js: Added. (StackSlot): (StackSlot.prototype.get byteSize): (StackSlot.prototype.get kind): (StackSlot.prototype.get isLocked): (StackSlot.prototype.get isSpill): (StackSlot.prototype.get index): (StackSlot.prototype.ensureSize): (StackSlot.prototype.get alignment): (StackSlot.prototype.get offsetFromFP): (StackSlot.prototype.setOffsetFromFP): (StackSlot.prototype.toString): (StackSlot.extract): (StackSlot.forEachFast): (StackSlot.forEach): * JSAir/symbols.js: Added. * JSAir/test.html: Added. * JSAir/test.js: Added. * JSAir/tmp.js: Added. (Tmp): (Tmp.fromReg): (Tmp.prototype.get index): (Tmp.prototype.get type): (Tmp.prototype.get isReg): (Tmp.prototype.toString): (Tmp.extract): (Tmp.forEachFast): (Tmp.forEach): * JSAir/tmp_base.js: Added. (TmpBase.prototype.get isGP): (TmpBase.prototype.get isFP): (TmpBase.prototype.get isGPR): (TmpBase.prototype.get isFPR): (TmpBase.prototype.get reg): (TmpBase.prototype.get gpr): (TmpBase.prototype.get fpr): (TmpBase): * JSAir/util.js: Added. (isRepresentableAsInt32): (addIndexed): (roundUpToMultipleOf): (symbolName): (mergeIntoSet): (nonEmptyRangesOverlap): (rangesOverlap): (removeAllMatching): (swap): (bubble): (bubbleSort): (currentTime): (else.currentTime): 2016-05-26 Yusuke Suzuki [JSC] Allow JSBench to use precise time https://bugs.webkit.org/show_bug.cgi?id=158050 Reviewed by Geoffrey Garen. * JSBench/amazon-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox-win/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-firefox/urm.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/amazon-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/facebook-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-firefox/uem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/google-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/harness.js: (runBenchmark.window.currentTimeInMS): (runBenchmark.else.window.currentTimeInMS): * JSBench/twitter-chrome-win/rem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/twitter-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-chrome/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox-win/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-firefox/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): * JSBench/yahoo-safari/urem.js: (else.window.performance.window.performance.now.currentTimeInMS): (else.else.typeof.preciseTime.string_appeared_here.currentTimeInMS): (else.else.currentTimeInMS): (onload.cb): (onload): 2016-05-25 Geoffrey Garen replaceable own properties seem to ignore replacement after property caching https://bugs.webkit.org/show_bug.cgi?id=158091 Reviewed by Darin Adler. * MallocBench/MallocBench.xcodeproj/project.pbxproj: * MallocBench/MallocBench/Benchmark.cpp: * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::doMallocOp): * MallocBench/MallocBench/Interpreter.h: * MallocBench/MallocBench/fastMallocLog.63316.ops: Added. * MallocBench/MallocBench/jetstream.cpp: Added. (benchmark_jetstream): * MallocBench/MallocBench/jetstream.h: Added. 2016-05-25 Keith Miller Unreviewed, add JSBench to the skipped list for now since it doesn't work currently. * Skipped: 2016-05-17 Keith Miller We should have JSBench in PerformanceTests https://bugs.webkit.org/show_bug.cgi?id=157952 Rubber-stamped by Saam Barati. There are some slight changes to the layout of the test directory to make it work nicely with run-jsc-benchmarks. Before JSBench had each of the browser specific sub-tests in a sub-directory. These have been flattened e.g. amazon/safari/ has become amazon-safari/. * JSBench/amazon-chrome-win/urem.html: Added. * JSBench/amazon-chrome-win/urem.js: Added. * JSBench/amazon-chrome/urem.html: Added. * JSBench/amazon-chrome/urem.js: Added. * JSBench/amazon-firefox-win/urm.html: Added. * JSBench/amazon-firefox-win/urm.js: Added. * JSBench/amazon-firefox/urm.html: Added. * JSBench/amazon-firefox/urm.js: Added. * JSBench/amazon-safari/urem.html: Added. * JSBench/amazon-safari/urem.js: Added. * JSBench/browsercheck.js: Added. * JSBench/facebook-chrome-win/urem.html: Added. * JSBench/facebook-chrome-win/urem.js: Added. * JSBench/facebook-chrome/urem.html: Added. * JSBench/facebook-chrome/urem.js: Added. * JSBench/facebook-firefox-win/urem.html: Added. * JSBench/facebook-firefox-win/urem.js: Added. * JSBench/facebook-firefox/urem.html: Added. * JSBench/facebook-firefox/urem.js: Added. * JSBench/facebook-safari/urem.html: Added. * JSBench/facebook-safari/urem.js: Added. * JSBench/google-chrome-win/urem.html: Added. * JSBench/google-chrome-win/urem.js: Added. * JSBench/google-chrome/urem.html: Added. * JSBench/google-chrome/urem.js: Added. * JSBench/google-firefox-win/urem.html: Added. * JSBench/google-firefox-win/urem.js: Added. * JSBench/google-firefox/uem.html: Added. * JSBench/google-firefox/uem.js: Added. * JSBench/google-safari/urem.html: Added. * JSBench/google-safari/urem.js: Added. * JSBench/harness.html: Added. * JSBench/harness.js: Added. * JSBench/harness.py: Added. * JSBench/index.html: Added. * JSBench/reload.html: Added. * JSBench/twitter-chrome-win/rem.html: Added. * JSBench/twitter-chrome-win/rem.js: Added. * JSBench/twitter-chrome/urem.html: Added. * JSBench/twitter-chrome/urem.js: Added. * JSBench/twitter-firefox-win/urem.html: Added. * JSBench/twitter-firefox-win/urem.js: Added. * JSBench/twitter-firefox/urem.html: Added. * JSBench/twitter-firefox/urem.js: Added. * JSBench/twitter-safari/urem.html: Added. * JSBench/twitter-safari/urem.js: Added. * JSBench/yahoo-chrome-win/urem.html: Added. * JSBench/yahoo-chrome-win/urem.js: Added. * JSBench/yahoo-chrome/urem.html: Added. * JSBench/yahoo-chrome/urem.js: Added. * JSBench/yahoo-firefox-win/urem.html: Added. * JSBench/yahoo-firefox-win/urem.js: Added. * JSBench/yahoo-firefox/urem.html: Added. * JSBench/yahoo-firefox/urem.js: Added. * JSBench/yahoo-safari/urem.html: Added. * JSBench/yahoo-safari/urem.js: Added. 2016-05-20 Ryosuke Niwa run-benchmark's results should contain Animometer's debug output https://bugs.webkit.org/show_bug.cgi?id=157941 Reviewed by Stephanie Lewis. Made developer.html support the JSON generated by run-benchmark which stores everything under debugOutput. * Animometer/resources/debug-runner/animometer.js: (Utilities.initialize): Unwrap debugOutput in the case run-benchmark's result JSON is used. 2016-05-18 Timothy Hatcher Make Animometer work in all browsers https://bugs.webkit.org/show_bug.cgi?id=157855 rdar://problem/26338521 Reviewed by Jon Lee. * Animometer/resources/runner/logo.svg: Use a symbol instead of putting the id on the root svg. This works in all browsers. 2016-05-07 Timothy Hatcher Update Animometer design https://bugs.webkit.org/show_bug.cgi?id=157449 Reviewed by Darin Adler. * Animometer/developer.html: Stop including runner/animometer.css. * Animometer/index.html: Udpated elements to fit new styles. * Animometer/resources/debug-runner/animometer.css: Copy the old runner/animometer.css to here so the debug runner is unaffected. * Animometer/resources/runner/animometer.css: New styles for the design. Drop flex box for broad browser support. * Animometer/resources/runner/animometer.js: (ResultsTable.clear): Use textContent. (window.sectionsManager.showSection): Add class to the body. (window.sectionsManager.setSectionScore): Use textContent, not innerHTML. * Animometer/resources/runner/crystal.svg: Added. * Animometer/resources/runner/lines.svg: Added. * Animometer/resources/runner/logo.svg: Added. * Animometer/resources/runner/tests.js: Shorten test name and title case them. 2016-05-06 Manuel Rego Casasnovas [css-grid] Unprefix CSS Grid Layout properties https://bugs.webkit.org/show_bug.cgi?id=157137 Reviewed by Simon Fraser. Remove "-webkit" prefix from all the grid layout properties, including the display value. Update the source code to remove the prefix where it was used too. * Layout/auto-grid-lots-of-data.html: * Layout/fixed-grid-lots-of-data.html: * Layout/fixed-grid-lots-of-stretched-data.html: 2016-04-25 Geoffrey Garen bmalloc: Misc improvements to MallocBench https://bugs.webkit.org/show_bug.cgi?id=157004 Reviewed by Darin Adler. * MallocBench/run-malloc-benchmarks: Added --memory and --memory_warning modes for focused memory testing. * MallocBench/MallocBench/Benchmark.cpp: (Benchmark::printReport): Clarified output. (Benchmark::currentMemoryBytes): Added compressed memory because top does the same. (It always happens to zero in the benchmarks we run. But this is good for sanity.) * MallocBench/MallocBench/CommandLine.cpp: Moved up to 8 runs to reduce variance. * MallocBench/MallocBench/alloc_free.cpp: (benchmark_alloc_free): Cycle a single allocation in order to stress the effect of merging on calls to madvise. * MallocBench/MallocBench/big.cpp: (benchmark_big): Graduated to 8kB-128kB because medium tests up to 8 and our large allocator doesn't kick in until 64kB. * MallocBench/MallocBench/medium.cpp: (benchmark_medium): Test all the way down to 1kB because our large allocator used to service 1kB allocations and 1kB is an interesting middle size where memory is unusually large but allocation throughput still matters. * MallocBench/MallocBench/stress.cpp: (benchmark_stress): Reduced the churn count to match stress_aligned because this test was taking too long to complete. * MallocBench/MallocBench/stress_aligned.cpp: (benchmark_stress_aligned): Our new large allocator can handle even more absurdly large values. 2016-04-25 Simon Fraser Add a content animation test that uses SVG animation. https://bugs.webkit.org/show_bug.cgi?id=156827 * Animation/svg-animation.html: Added. * Skipped: 2016-04-22 Simon Fraser Skip two content animation tests which are only meant for iOS testing. * Animation/css-animation.html: Added. * Animation/raf-animation.html: Added. * Skipped: 2016-04-20 Simon Fraser Add content animation tests to benchmark_runner, and allow the runner to collect device data as part of the results https://bugs.webkit.org/show_bug.cgi?id=156827 Add two files missing from the previous commit. * Animation/css-animation.html: Added. * Animation/raf-animation.html: Added. 2016-04-20 Simon Fraser Add content animation tests to benchmark_runner, and allow the runner to collect device data as part of the results https://bugs.webkit.org/show_bug.cgi?id=156827 Reviewed by Stephanie Lewis. Two new files for the content-animation suite. After patching for use in the benchmark, these tests are a little different to other benchmarks. The test content itself does not collect performance data; the tests spit out a boilerplate JSON result with a placeholder for framerate, which is collected in native code. When run as a benchmark, test completion involves a couple of bounces between the test and MobileSafari. Test completion is initiated by a setTimeout() in the test, at which point location.hash is set to "#done". MobileSafari detects that, and asynchronously dumps performance data. Once this is complete, MobileSafari changes the URL has to "#submit", which triggers the XHR to the test relay that indicates the test is complete. * Animation/css-animation.html: Added. * Animation/raf-animation.html: Added. 2016-04-15 Jon Lee Animometer test could report a NaN https://bugs.webkit.org/show_bug.cgi?id=156646 Reviewed by Darin Adler. Provisionally reviewed by Said Abou-Hallawa. * Animometer/tests/resources/main.js: (didFinishInterval): The ramp controller has a first phase where it ramps up the complexity and reacts based on how well the system handles the load. The assumption was that it would handle at least 1 particle easily. That is not always the case. As a result, an interpolation calculation could end up setting an upper bound of NaN. This occurs because we never get out of the first tier, so this._lastTierComplexity is undefined. Now that we guarantee a minimum complexity of 1, modify the conditional to check for this._lastTierComplexity before interpolating the upper bound of the first ramp. In the case where the system struggles with 1 particle, set it to currentComplexity. 2016-04-09 Jon Lee Update Animometer to accommodate different screens https://bugs.webkit.org/show_bug.cgi?id=156449 Reviewed by Darin Adler. Provisionally reviewed by Said Abou-Hallawa. * Animometer/index.html: Wrap button in a container to add padding at the bottom. * Animometer/resources/debug-runner/animometer.css: (@media screen and (min-device-width: 1800px)): Deleted. (@media screen and (min-width: 1800px)): Cannot use min-device-width since it may match incorrectly. (screen and (max-device-height: 414px) and (orientation: landscape)): Some devices swap device width and height with orientation change. * Animometer/resources/runner/animometer.css: Similar. (screen and (min-device-width: 1024px) and (orientation: landscape)): (screen and (max-device-height: 414px) and (orientation: landscape)): (.frame-container): On smaller iPhones, adding 1px prevents the navigation bars from appearing. (@media screen and (min-device-width: 768px) and (max-device-width: 1024px)): Deleted. (@media (min-device-height: 768px) and (max-device-height: 1024px)): Target iPad Airs and similar. (@media screen and (min-device-width: 1024px) and (max-device-width: 1366px)): Deleted. (@media screen and (max-device-width: 1024px) and (min-device-height: 1366px)): Target iPad Pro. (#results footer): Add padding below the button for testing again. * Animometer/tests/master/multiply.html: Remove the center text. * Animometer/tests/master/resources/text.js: Update the test so that in every frame the text moves. * Animometer/tests/master/text.html: Update the text sizing depending on the size of the device. 2016-04-08 Jon Lee Have Animometer benchmark always start with complexity of 1 https://bugs.webkit.org/show_bug.cgi?id=156432 Reviewed by Ryosuke Niwa. * Animometer/tests/resources/main.js: Update the default Controller and RampController to set its minimum complexities to 1 instead of 0. 2016-04-08 Jon Lee Fix SVG benchmark test https://bugs.webkit.org/show_bug.cgi?id=156410 Reviewed by Dean Jackson. * Animometer/resources/extensions.js: Update Point.zero to be a static Point. * Animometer/tests/simple/resources/tiled-canvas-image.js: (Stage.call._setupTiles): Refactor. * Animometer/tests/master/resources/particles.js: (Particle.prototype.reset): Use Point.center. (complexity): We are not using a gradient background anymore, so remove the +1. * Animometer/tests/master/resources/svg-particles.js: Update to use SVG transform instead of CSS transform. 2016-04-06 Jon Lee Update master benchmark with SVG test https://bugs.webkit.org/show_bug.cgi?id=156273 Reviewed by Dean Jackson. Provisionally reviewed by Said Abou-Hallawa. Switch masks tests for SVG path test. * Animometer/resources/debug-runner/tests.js: Move mask test here. * Animometer/resources/runner/tests.js: Add SVG test here. * Animometer/tests/dom/particles.html: Renamed from PerformanceTests/Animometer/tests/master/particles.html. * Animometer/tests/dom/resources/dom-particles.js: Renamed from PerformanceTests/Animometer/tests/master/resources/dom-particles.js. * Animometer/tests/master/resources/particles.js: Add minPosition for bounds checking. Prevents particle from being partially obscured. * Animometer/tests/master/resources/svg-particles.js: Added. (Particle): The particle is either a path object or a rect using a path as a clip. The same path is used either way. For each particle create a linear gradient with a random rotation. (SVGParticlesStage): Look in #shapes to see how many different kinds of paths are available. This makes the test more generic in case other shapes need to be tested. * Animometer/tests/master/svg-particles.html: Added. Have two defs, one that houses each particle's gradient, and one that holds the shape templates. 2016-03-27 Hunseop Jeong [EFL] REGRESSION(r188793): It made 200 layout tests and Bindings/event-target-wrapper.html performance test fail https://bugs.webkit.org/show_bug.cgi?id=148470 Reviewed by Darin Adler. * Skipped: Unskip the Bindings/event-target-wrapper test. 2016-03-23 Jon Lee Update focus and leaves tests https://bugs.webkit.org/show_bug.cgi?id=155825 Reviewed by Simon Fraser. Particles would improperly disappear, before they were fully off stage. Update the calculation. * Animometer/tests/dom/resources/leaves.js: * Animometer/tests/master/resources/leaves.js: * Animometer/tests/master/focus.html: Update the center element styling. * Animometer/tests/master/resources/focus.js: (FocusElement.Utilities.createClass): Give enough space in the container for each particle for the blur to spread. It should be about 3x more space than the blur radius on each side. (Stage.call.initialize): Ditto for the center element. 2016-03-23 Jon Lee Update support for other platforms https://bugs.webkit.org/show_bug.cgi?id=155824 Reviewed by Simon Fraser. * Animometer/resources/debug-runner/animometer.css: Remove extraneous media query. All of it should be handled in the release stylesheet. * Animometer/resources/debug-runner/animometer.js: Add support for browsers that return an HTMLCollection when retrieving radio elements with a name, instead of the selected value. * Animometer/resources/runner/animometer.css: Adjust the queries for devices of varying widths. (.frame-container): Move overflow:hidden to #stage. * Animometer/tests/master/resources/stage.css: Consolidate into tests/resources/stage.css. * Animometer/tests/resources/stage.css: (body): Remove overflow:hidden. (#stage): Set overflow:hidden here. (#center-text): Moved from master/resources/stage.css. Update stylesheet hrefs. * Animometer/tests/master/canvas-stage.html: * Animometer/tests/master/focus.html: * Animometer/tests/master/leaves.html: * Animometer/tests/master/multiply.html: * Animometer/tests/master/particles.html: * Animometer/tests/master/text.html: Adjust text size to fit in the device screen. 2016-03-23 Jon Lee Make the benchmark require device to be in landscape orientation https://bugs.webkit.org/show_bug.cgi?id=155822 rdar://problem/25258650 Reviewed by Ryosuke Niwa. Check that the device is in landscape orientation. If not, disable the button to start it, and show a warning message. * Animometer/developer.html: Add a message about how the browser should be set up. Include a warning message that appears if the orientation is incorrect on mobile devices. * Animometer/index.html: Ditto. * Animometer/resources/debug-runner/animometer.css: Migrate the .hidden rule into the release stylesheet. Update the style to accommodate the new UI. * Animometer/resources/runner/animometer.css: * Animometer/resources/runner/animometer.js: (window.benchmarkController.initialize): Add the orientation listener is needed. (window.benchmarkController.addOrientationListenerIfNecessary): Only mobile devices need this. Check to see for support of window.orientation. (window.benchmarkController._orientationChanged): Toggle the warning based on whether we match the landscape query. Set a state variable, which is needed for the debug harness. Call updateStartButtonState. (window.benchmarkController.updateStartButtonState): * Animometer/resources/debug-runner/animometer.js: Change _updateStartButtonState to return a boolean about whether at least one test is selected. That will be used in benchmarkController.updateStartButtonState(). Move the load event listener to the release version. (window.benchmarkController.updateStartButtonState): Override the release version, and also check that at least one test is selected. 2016-03-22 Geoffrey Garen MallocBench: consolidate regression testing for aligned allocation https://bugs.webkit.org/show_bug.cgi?id=155762 Reviewed by Michael Saboff. * MallocBench/MallocBench.xcodeproj/project.pbxproj: * MallocBench/MallocBench/Benchmark.cpp: * MallocBench/MallocBench/memalign.cpp: Removed. * MallocBench/MallocBench/memalign.h: Removed. The stress_aligned test covers this and much more. * MallocBench/MallocBench/stress_aligned.cpp: (benchmark_stress_aligned): Include specific tests for extreme sizes and alignments. 2016-03-21 Jon Lee Update benchmark tests https://bugs.webkit.org/show_bug.cgi?id=155723 Reviewed by Darin Adler. Provisionally reviewed by Said Abou-Hallawa. Add quadratic and bezier segments to the canvas path test. * Animometer/resources/runner/tests.js: Some of the query strings are unnecessary. Rename the test. * Animometer/tests/master/resources/canvas-stage.js: (tune): Update to be able to take an array of possible constructors. Choose one randomly. * Animometer/tests/master/resources/canvas-tests.js: (CanvasLinePoint.Utilities.createClass): Move the point selection out to a separate function called randomPoint() for reuse. Move X_LOOPS, Y_LOOPS, and offsets into the class definition. (randomPoint): Scale the grid down a little bit so that the lines along the edge of the canvas are not cut off when the stroke size is thick. (CanvasQuadraticSegment): Added. (CanvasBezierSegment): Added. (SimpleCanvasStage): Pass in an array of the different segment types. Since line segments are short compared to the curved ones, make it twice as likely to render a line segment. (SimpleCanvasStage.animate): Update the drawing code so that we render all line segments. Add a helper method that selects a random element from an array. * Animometer/tests/resources/main.js: (Stage.randomElementInArray): Select a random element from the provided array. * Animometer/tests/bouncing-particles/resources/bouncing-tagged-images.js: Refactor. * Animometer/tests/dom/resources/leaves.js: Ditto. * Animometer/tests/master/resources/dom-particles.js: Ditto. * Animometer/tests/master/resources/image-data.js: Ditto. * Animometer/tests/master/resources/leaves.js: Ditto. * Animometer/tests/simple/resources/simple-canvas-paths.js: Ditto. Add canvas tests that includes all stroke and fill paths. This makes it possible to avoid having to include the full simple canvas suite for perf testing. * Animometer/resources/debug-runner/tests.js: Add new tests. Move the canvas test into the Canvas suite. * Animometer/tests/simple/resources/simple-canvas-paths.js: Add a CanvasStroke and CanvasFill particle that random selects an object to render. * Animometer/resources/debug-runner/tests.js: Move 3D suite before basic canvas suite. When updating the perf bot script, we will include the suites up to this one, but exclude the basic canvas suite. Move compositing transforms test to HTML suite and remove the empty Miscellaneous suite. * Animometer/resources/debug-runner/tests.js: * Animometer/tests/dom/compositing-transforms.html: Renamed from PerformanceTests/Animometer/tests/misc/compositing-transforms.html. * Animometer/tests/dom/resources/compositing-transforms.js: Renamed from PerformanceTests/Animometer/tests/misc/resources/compositing-transforms.js. Clean up miscellaneous test suite. Add a canvas ellipse test, and remove the other canvas tests. * Animometer/resources/debug-runner/tests.js: Add ellipse tests to the simple suite. * Animometer/tests/misc/canvas-electrons.html: Removed. * Animometer/tests/misc/canvas-stars.html: Removed. * Animometer/tests/misc/resources/canvas-electrons.js: Removed. * Animometer/tests/misc/resources/canvas-stars.js: Removed. * Animometer/tests/simple/resources/simple-canvas-paths.js: Add ellipse primitives. Merge text tests together into one. * Animometer/resources/runner/tests.js: Remove international.html. * Animometer/tests/master/international.html: Removed. * Animometer/tests/master/resources/text.js: (animate): Update styling. Manually calculate gradients for the shadow particles. Reduce the step size for y direction to avoid cutting text off at the margins. Increase step for x since there will be a little more room. * Animometer/tests/master/text.html: Add more translations and lay it out in a table. 2016-03-20 Jon Lee Add a link to show debug data https://bugs.webkit.org/show_bug.cgi?id=155724 Reviewed by Simon Fraser. * Animometer/developer.html: Attach the onclick handler to the score. * Animometer/index.html: Ditto. 2016-03-18 Dean Jackson Add a basic WebGL test to Animometer https://bugs.webkit.org/show_bug.cgi?id=155475 Reviewed by Simon Fraser and Jon Lee. Add a pretty simple WebGL test to Animometer which tries to draw a number of animated triangles. The result still needs a bit of tuning. * Animometer/resources/debug-runner/tests.js: Add a new Suite for "3D" tests. * Animometer/tests/3d/resources/webgl.js: Added. * Animometer/tests/3d/webgl.html: Added. 2016-03-18 Jon Lee Add support for statically linking to a specific test https://bugs.webkit.org/show_bug.cgi?id=155631 Rubber-stamped by Darin Adler. * Animometer/developer.html: Update to call restartBenchmark instead so that it works for both the preset and the manually set test sessions. * Animometer/resources/debug-runner/animometer.css: (.tree .link): Style the "link" UI. * Animometer/resources/debug-runner/animometer.js: Move updateDisplay from suitesManager to optionsManager since this is a visual option and has nothing to do with the suites settings. Update the construction of the test UI by including a "link" after each test. Clicking on that link brings up a JS prompt with a URL and a query string with the current parameters of the controller, and selected test. Pasting this URL into the location bar will automatically start running the selected test. (suitesManager.suitesFromQueryString): Iterate through the Suites and tests and find the one that matches the provided parameters. Returns an object similar to the form in suitesManager.updateLocalStorageFromUI. (benchmarkController.initialize): After settings up the events and options, try parsing the query string and running the benchmark immediately. Otherwise, fall back to the form. (benchmarkController.startBenchmark): Store the options and suites into member variables for reuse in restartBenchmark. (benchmarkController.startBenchmarkImmediatelyIfEncoded): Convert the query string to an object. If that's successful, find the suite and test referenced in the query string. Start the benchmark if the search for the test succeeded. * Animometer/resources/extensions.js: (Utilities.stripNonASCIICharacters): Helper method to convert the name of the suite and test into a query-string-friendly version. (Utilities.convertObjectToQueryString): Helper method to convert an object to query string format. (Utilities.convertQueryStringToObject): Helper method to convert query string into an object with properties and values. 2016-03-16 Jon Lee Add a new benchmark test https://bugs.webkit.org/show_bug.cgi?id=155570 Reviewed by Simon Fraser. New Leaves test includes various image sizes and opacity. * Animometer/resources/debug-runner/tests.js: Add it to the HTML test suite. * Animometer/tests/dom/leaves.html: Added. * Animometer/tests/dom/resources/leaves.js: Added. Override the (Particle.call.reset): Uses a range of sizes, and opacity. (Particle.call.animate): Opacity goes up then down. When it hits 0, reset the particle. (Particle.call.move): Set transform and opacity. * Animometer/tests/master/resources/leaves.js: Get rid of the closure so that it can be used in this test. Update the relative path so that it works in both the master and dom test suite. 2016-03-15 Simon Fraser Add developer Animometer test that bounces P3-tagged images https://bugs.webkit.org/show_bug.cgi?id=155511 Reviewed by Tim Horton. Add a test for rendering performance of tagged images. The 5 images are tagged with the Display P3 colorspace. * Animometer/resources/debug-runner/tests.js: * Animometer/tests/bouncing-particles/bouncing-tagged-images.html: Added. * Animometer/tests/bouncing-particles/resources/bouncing-tagged-images.js: Added. * Animometer/tests/bouncing-particles/resources/image1.jpg: Added. * Animometer/tests/bouncing-particles/resources/image2.jpg: Added. * Animometer/tests/bouncing-particles/resources/image3.jpg: Added. * Animometer/tests/bouncing-particles/resources/image4.jpg: Added. * Animometer/tests/bouncing-particles/resources/image5.jpg: Added. 2016-03-09 Jon Lee Enhance existing Animometer tests https://bugs.webkit.org/show_bug.cgi?id=155261 Reviewed by Simon Fraser. * Animometer/tests/master/resources/canvas-tests.js: Add a gradient to the filled circles. To expose more of the gradient, add another circle. (SimpleCanvasStage.call.animate): For each frame, create a gradient with undulating stop points and colors. Fill the circles twice; once with the solid color, and once with the gradient. * Animometer/tests/master/resources/dom-particles.js: Refactor the emission variables into a separate stage for this test. Add a colorOffset variable to make the colors of each particle slightly different, since the ramp controller can add large numbers of particles all at once, which would otherwise get all the same color. * Animometer/tests/master/resources/particles.js: (initialize): Remove the code specific to the SVG mask test. * Animometer/tests/master/resources/image-data.js: (initialize): Remove unused local variable. * Animometer/tests/master/resources/multiply.js: (initialize): Make the test harder by adding more total particles. 2016-03-09 Jon Lee Add text tests https://bugs.webkit.org/show_bug.cgi?id=155257 Reviewed by Simon Fraser. * Animometer/resources/extensions.js: (UnitBezier.Utilities.createClass): Add a class that computes Bezier points assuming that two of the control points are at (0,0) and (1,1). Taken from WebCore/platform/graphics/UnitBezier.h * Animometer/resources/runner/tests.js: Add a test for English text and one for international text. * Animometer/tests/master/international.html: Added. * Animometer/tests/master/resources/text.js: Added. The test assumes there is #template div which it will copy. The copies are placed behind the template, and are set with different colors each frame. They are moved around with CSS transform. * Animometer/tests/master/text.html: Added. Remove the other text tests, since these ones cover the same techniques. * Animometer/tests/text/layering-text.html: Removed. * Animometer/tests/text/resources/layering-text.js: Removed. * Animometer/tests/text/resources/text-boxes.js: Removed. * Animometer/tests/text/text-boxes.html: Removed. * Animometer/resources/debug-runner/tests.js: 2016-03-09 Jon Lee Add a new image test https://bugs.webkit.org/show_bug.cgi?id=155232 Reviewed by Dean Jackson. Provisionally reviewed by Said Abou-Hallawa. The image test renders PNGs and moves them with translate and rotate transforms. Each particle has a lifetime, and when the lifetime ends or the particle goes offscreen, it resets itself somewhere on the stage. * Animometer/resources/debug-runner/tests.js: Remove the CSS bouncing PNG images test, because this one tests the same technique. * Animometer/resources/runner/tests.js: Added here as "Leaves". * Animometer/tests/master/leaves.html: Added. * Animometer/tests/master/resources/particles.js: Refactor out the parts specific to the DOM particles test. Consequently make velocity a public member. (initialize): The options parameter is never used, so remove it. (animate): Remove unused local variable. * Animometer/tests/master/resources/leaves.js: Maintains a focal point that moves back and forth across the canvas. That point affects the velocity of the particles. When the focal point is on the leftmost side, it is between [-6, -2], and set in reset(). When the focal point is on the rightmost side, it will be from [2, 6]. * Animometer/tests/master/resources/dom-particles.js: Move JS specific to this test here from particles.js. New images. * Animometer/tests/master/resources/compass100.png: Added. * Animometer/tests/master/resources/console100.png: Added. * Animometer/tests/master/resources/contribute100.png: Added. * Animometer/tests/master/resources/debugger100.png: Added. * Animometer/tests/master/resources/inspector100.png: Added. * Animometer/tests/master/resources/layout100.png: Added. * Animometer/tests/master/resources/performance100.png: Added. * Animometer/tests/master/resources/script100.png: Added. * Animometer/tests/master/resources/shortcuts100.png: Added. * Animometer/tests/master/resources/standards100.png: Added. * Animometer/tests/master/resources/storage100.png: Added. * Animometer/tests/master/resources/styles100.png: Added. * Animometer/tests/master/resources/timeline100.png: Added. 2016-03-03 Jon Lee Add ability to retrieve raw data from release harness https://bugs.webkit.org/show_bug.cgi?id=155026 Reviewed by Simon Fraser. * Animometer/developer.html: Remove the special UI in the debug harness. * Animometer/resources/runner/animometer.css: Add styles for the overlay. * Animometer/resources/runner/animometer.js: Let 'j' show the JSON results, but only if the overlay doesn't exist. Add 'esc' key to dismiss the overlay. (window.benchmarkController.selectResults): Cycle the cases around so that the first 's' press selects both the benchmark score and the individual test scores. * Animometer/resources/debug-runner/animometer.css: Remove unneeded rules. * Animometer/resources/debug-runner/animometer.js: Make the same call to handleKeyPress. 2016-03-03 Jon Lee Make sure multiply test particles have at least some opacity https://bugs.webkit.org/show_bug.cgi?id=155027 Reviewed by Simon Fraser. * Animometer/tests/master/resources/multiply.js: (initialize): Have the elements spin a little faster to make it more obvious when the system is being stressed. (_addTile): (animate): Make sure each element being animated has at least 1% opacity. 2016-03-03 Jon Lee Update image test https://bugs.webkit.org/show_bug.cgi?id=154962 Rubber-stamped by Darin Adler. * Animometer/tests/master/image-data.html: Make each canvas have a compositing layer. * Animometer/tests/master/resources/image-data.js: (initialize): Update to load multiple images serially. (_loadImage): (tune): Use display instead of visibility. When showing an element anew, move it somewhere else. (_createTestElement): Set up the element, refactor out placement of element to _refreshElement. (_refreshElement): Place element in a tile grid. (animate): (_getRandomNeighboringPixelIndex): Use a more conservative distribution to make the effect last a little longer. * Animometer/tests/master/resources/compass.svg: Added. * Animometer/tests/master/resources/console.svg: Added. * Animometer/tests/master/resources/contribute.svg: Added. * Animometer/tests/master/resources/debugger.svg: Added. * Animometer/tests/master/resources/inspector.svg: Added. * Animometer/tests/master/resources/layout.svg: Added. * Animometer/tests/master/resources/performance.svg: Added. * Animometer/tests/master/resources/script.svg: Added. * Animometer/tests/master/resources/shortcuts.svg: Added. * Animometer/tests/master/resources/standards.svg: Added. * Animometer/tests/master/resources/storage.svg: Added. * Animometer/tests/master/resources/styles.svg: Added. * Animometer/tests/master/resources/timeline.svg: Added. 2016-03-02 Jon Lee Add some new controllers, and refine tests https://bugs.webkit.org/show_bug.cgi?id=154914 Reviewed by Simon Fraser. Improve tests. * Animometer/tests/master/focus.html: Move each particle into a layer. Put the particle in a container element. Expand the container element by the max blur radius, and clip overflow. This way, when the blur is applied, it avoids causing layer resizes. * Animometer/tests/master/resources/focus.js: (FocusElement.Utilities.createClass): Create a container element, and put the particle inside. (hide): Set display:none. (show): Set display:block. (animate): Apply filters to the container element. (FocusStage.call.initialize): Instead of inserting and removing elements from the DOM, keep them in the stage, but set the display style instead. Use this._offsetIndex to keep track of which elements are displayed. (FocusStage.call.animate): Move some calculations around to avoid doing unneeded math. (FocusStage.call.getBlurValue): Make sure elements are always blurred. (FocusStage.call.getOpacityValue): Make sure elements have some opacity. * Animometer/tests/master/resources/multiply.js: Have the particles on the edge of the stage appear less black when the complexity gets large enough. (tune): Have this._distanceFactor calculate the factor. Avoid calculating square root each frame. 2016-03-02 Jon Lee Add some new controllers, and refine tests https://bugs.webkit.org/show_bug.cgi?id=154914 Reviewed by Simon Fraser. Add a controller that centers around 30 fps instead of 60 fps. * Animometer/developer.html: Add a new option. * Animometer/resources/debug-runner/animometer.js: * Animometer/resources/runner/animometer.js: (this._processData.findRegression): When calculating the complexity-frameLength regression, check the controller, and use a 30 fps baseline if needed. * Animometer/resources/statistics.js: (Regression.Utilities.createClass): Update to allow clients to specify the baseline frame length. * Animometer/tests/resources/main.js: (tune): Override some of the constants in RampController. Move those constants out for easier reading. Add a fixed controller, with no step. * Animometer/developer.html: Add a controller that takes no step. * Animometer/resources/debug-runner/animometer.js: * Animometer/tests/resources/main.js: (Rotater.Utilities.createClass): Switch to ramp controller as default. * Animometer/developer.html: Increase the test length to 20 seconds. * Animometer/resources/debug-runner/animometer.js: Rename the "adjustment" field to "controller" since that is a more accurate description. * Animometer/resources/debug-runner/graph.js: * Animometer/resources/runner/animometer.js: Update preferences for release suite. 2016-02-26 Jon Lee Address Dean's comments in 154673. * Animometer/developer.html: * Animometer/resources/debug-runner/animometer.js: * Animometer/resources/debug-runner/graph.js: 2016-02-25 Jon Lee Update animation benchmark and tests https://bugs.webkit.org/show_bug.cgi?id=154673 Reviewed by Dean Jackson. Update test visuals. * Animometer/tests/master/resources/canvas-tests.js: (CanvasLineSegment.Utilities.createClass): Line segments near the edge of the stage get clipped. Update circle position and radius to minimize impact. * Animometer/tests/master/resources/particles.js: Get rid of rotating gradient background, and have 3 locations for emitting particles. * Animometer/tests/master/resources/multiply.js: Update distance metric so that fringe tiles get more color. (initialize): Fix some of the math for laying out the tiles. (animate): When a tile isn't used, set visibility: hidden. 2016-02-24 Jon Lee Update animation benchmark and tests https://bugs.webkit.org/show_bug.cgi?id=154673 Reviewed by Dean Jackson. Update the ramp controller. The controller refines the complexity interval to test across. * Animometer/resources/statistics.js: Add functions that estimate cumulative distribution function. (Regression): For the flat regression, force the first segment to be at 60 fps. (valueAt): Add convenience function to return interpolated value based on the regression used. (_calculateRegression): Include the number of points included for both segments, and the piecewise errors. * Animometer/tests/resources/math.js: Make the Kalman estimator subclass Experiment, and allow it to be reset. * Animometer/tests/resources/main.js: Initialize the tier such that it starts at 10^0 = 1. Increase the number of ramps. Maintain three FPS thresholds-- the frame rate of interest, a limit on the lowest FPS we care to go for later interpolation, and a minimum FPS threshold we want to aim for each ramp. Also keep three estimators: a running average of the change point, a minimum boundary for each ramp, and an estimator for all the frames within an interval. The first two are used to determine the parameters of the next ramp, and the latter allows us to refine the parameters. (update): During the tier phase, it is possible that the highest complexity possible for a test won't stress the system enough to trigger stopping the tier phase and transitioning to the ramps. If the complexity doesn't change when going to the next tier, we've maxed the test out, and move on. When the tier phase completed, turn off Controller.frameLengthEstimator, which estimates the FPS at each tier. (tune): At each interval, look at the confidence distribution of being on the 60 FPS side or the slow side. If the slowest FPS we achieve at the ramp's maximum complexity is not at least _fpsRampSlowThreshold, then increase the maximum complexity. If we ever achieve 60 FPS, increase the ramp's minimum complexity to that level. If, at an even lower complexity, a glitch causes the FPS to drop, we reset the minimum complexity. Have the bootstrap calculation occur between tests. Clean up harness. * Animometer/resources/debug-runner/animometer.js: Run bootstrap after a test has completed to avoid doing all of it at the end before showing the results. Clean up parameters being passed around. * Animometer/resources/debug-runner/tests.js: (text): * Animometer/resources/runner/animometer.js: (this._processData.calculateScore): Save the results to the same object holding the data. (this._processData._processData): In the case where a file is dragged, calculate the score serially. Grab the results object and move it to the results variable and remove it from the data object. This avoids serializing the results into the JSON. (this._processData.findRegression): Include the samples used for bootstrapping. Reduce the resample size to shorten the wait. * Animometer/resources/runner/benchmark-runner.js: * Animometer/resources/statistics.js: (bootstrap): Update how bootstrapData is sorted. In some regression results the mix of floats and integers causes an alphabetical sort to occur. * Animometer/resources/strings.js: Add meta charset so that encodings between harness and test match. * Animometer/tests/bouncing-particles/bouncing-canvas-images.html: * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: * Animometer/tests/bouncing-particles/bouncing-css-images.html: * Animometer/tests/bouncing-particles/bouncing-css-shapes.html: * Animometer/tests/bouncing-particles/bouncing-svg-images.html: * Animometer/tests/bouncing-particles/bouncing-svg-shapes.html: * Animometer/tests/master/canvas-stage.html: * Animometer/tests/master/focus.html: * Animometer/tests/master/image-data.html: * Animometer/tests/master/multiply.html: * Animometer/tests/master/particles.html: * Animometer/tests/misc/canvas-electrons.html: * Animometer/tests/misc/canvas-stars.html: * Animometer/tests/misc/compositing-transforms.html: * Animometer/tests/simple/simple-canvas-paths.html: * Animometer/tests/simple/tiled-canvas-image.html: * Animometer/tests/template/template-canvas.html: * Animometer/tests/template/template-css.html: * Animometer/tests/template/template-svg.html: * Animometer/tests/text/layering-text.html: * Animometer/tests/text/text-boxes.html: Update test harness reporting. * Animometer/developer.html: Add missing meta charset. * Animometer/index.html: Remove unnecessary utf-8 declaration. * Animometer/resources/debug-runner/animometer.css: Add convenience classes for formatting the results table. * Animometer/resources/debug-runner/animometer.js: Adjust which stats are shown. * Animometer/resources/debug-runner/tests.js: Display bootstrapping statistics. * Animometer/resources/strings.js: Move strings not used by the release harness. Switch to a pseudo-random number generator. * Animometer/resources/statistics.js: Add a Pseudo class, with a simple pseudo-random number generator. (_calculateRegression): Reset the generator before running bootstrap. (bootstrap): Deleted. Replace Math.random with Pseudo.random. * Animometer/tests/master/resources/canvas-tests.js: * Animometer/tests/master/resources/focus.js: * Animometer/tests/master/resources/particles.js: * Animometer/tests/resources/main.js: Use bootstrapping to get confidence interval in the breakpoint. For the ramp controller, calculate the piecewise regression, and then use bootstrapping in order to find the 95% confidence interval. Use the raw data. * Animometer/developer.html: Default to the complexity graph. Add a legend checkbox to toggle visibility of the bootstrap score and histogram. * Animometer/resources/debug-runner/animometer.css: Make some more space to show the old raw and average scores in the legend. Add new styles for the data. * Animometer/resources/debug-runner/graph.js: (_addRegressionLine): Allow passing an array for the variance bar tied to the regression line. Now |stdev| is |range|. (createComplexityGraph): Add bootstrap median, and overlay a histogram of the bootstrap samples. Switch raw samples from circles to X's. (onComplexityGraphOptionsChanged): Allow toggling of the bootstrap data. (onGraphTypeChanged): Move the regressions for the raw and average samples to the legend. In the subtitle use the bootstrap median, and include the 95% confidence interval. * Animometer/resources/runner/animometer.js: (this._processData.findRegression): Factor out the code that determines which samples to include when calculating the piecewise regression. For series that have many samples, or a wider range of recorded complexities, throw away the 2.5% lowest and highest samples before calculating the regression. Keep all samples if the number of samples to regress is small or the range of complexities is narrow. (this._processData._calculateScore): Factor out regression calculation to findRegression(). Bootstrap the change point of the regression. The score is the median. * Animometer/resources/statistics.js: (_calculateRegression): Correct an issue in the calculation of the regression, where the denominator can be 0. (bootstrap): Template for bootstrapping. Create a bootstrap sample array, Create re-samples by random selection with replacement. Return the 95% confidence samples, the bootstrap median, mean, and the data itself. * Animometer/resources/strings.js: Add bootstrap. * Animometer/tests/resources/main.js: (processSamples): Don't prematurely cut the sample data. Fix graph drawing. * Animometer/resources/debug-runner/animometer.js: Add spacing in the JSON output. Multiple tests output a lot of JSON and can hang when selecting JSON with no whitespace. * Animometer/resources/debug-runner/animometer.css: (#complexity-graph .series.raw circle): Update the color. * Animometer/resources/debug-runner/graph.js: Use the FPS axis instead of the complexity axis, which can vary in domain. For determining the complexity domain, only use samples after samplingTimeOffset. Allow dropping results JSON. * Animometer/developer.html: Add a button. * Animometer/resources/debug-runner/animometer.css: * Animometer/resources/debug-runner/animometer.js: Read the data and go straight to the dashboard. With JSON output, write out only the options and the raw data. Teach the harness to evaluate the samples and determine the test score. This will allow us to update how the score is calculated separately from the samples recorded. This also prepares the harness to be able to accept JSON of prior runs. * Animometer/resources/strings.js: Clean up and remove unneeded strings and reduce some of the hierarchy. * Animometer/resources/debug-runner/tests.js: Update to use the new strings. * Animometer/tests/resources/main.js: Allow all controllers to show a complexity-FPS graph. (_processComplexitySamples): Factor out some of the sample processing done in the ramp controller for the benefit of the other controllers. |complexitySamples| contains a list of samples. Sort the samples by complexity. Optionally remove the top x% of samples. Group them, and calculate distribution of samples within the same complexity, and add those as new entries into |complexityAverageSamples|. (Controller.processSamples): Move the code responsible for determining the complexity and FPS scores out to ResultsDashboard. The structure of the data returned by the controller is: { controller: [time-regression, time-regression, ...], // optional, data specific to controller marks: [...], samples: { // all of the sample data controller: [...], complexity: [...], // processed from controller samples complexityAverage: [...], // processed from complexity samples } } (AdaptiveController.processSamples): Adding the target frame length is no longer necessary; we now pass the test options to the graph. (Regression): Move to statistics.js. * Animometer/resources/statistics.js: Move Regression to here. Add a check if the sampling range only contains one sample, since we cannot calculate a regression from one sample point. Teach the test harness to evaluate the data. * Animometer/resources/runner/animometer.js: (ResultsDashboard): Store the options used to run the test and the computed results/score separately from the data. The results are stored as: { score: /* geomean of iteration score */, iterationsResults: [ { score: /* geomean of tests */, testsResults: { suiteName: { testName: { controller: { average: concern: stdev: percent: }, frameLength: { ... }, complexity: { complexity: stdev: segment1: segment2: }, complexityAverage: { ... } }, testName: { ... }, }, ... next suite ... } }, { ...next iteration... } ] } * Animometer/resources/debug-runner/animometer.js: Pass options around instead of relying on what was selected in the form. This will later allow for dropping previous results, and using those runs' options when calculating scores. (ResultsTable._addGraphButton): Simplify button action by using attached test data. * Animometer/resources/debug-runner/graph.js: Refactor to use the data. Consolidate JS files, and move statistics out to a separate JS. Preparation for having the Controller only handle recording and storage of the samples, and leave the evaluation of the test score out to the harness. Move Experiment to a new statistics.js, where Regression will also eventually go. Get rid of algorithm.js and move it to utilities.js since the Heap is used only for Experiments. * Animometer/tests/resources/algorithm.js: Removed. Heap is in utilities.js. * Animometer/tests/resources/sampler.js: Removed. Experiment is in statistics.js, Sampler in main.js. * Animometer/tests/resources/main.js: Move Sampler here. * Animometer/resources/statistics.js: Added. Move Statistics and Experiment here. * Animometer/resources/extensions.js: Move Heap here. Attach static method to create a max or min heap to Heap, instead of a new Algorithm object. Update JS files. * Animometer/developer.html: * Animometer/index.html: * Animometer/tests/bouncing-particles/bouncing-canvas-images.html: * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: * Animometer/tests/bouncing-particles/bouncing-css-images.html: * Animometer/tests/bouncing-particles/bouncing-css-shapes.html: * Animometer/tests/bouncing-particles/bouncing-svg-images.html: * Animometer/tests/bouncing-particles/bouncing-svg-shapes.html: * Animometer/tests/master/canvas-stage.html: * Animometer/tests/master/focus.html: * Animometer/tests/master/image-data.html: * Animometer/tests/master/multiply.html: * Animometer/tests/master/particles.html: * Animometer/tests/misc/canvas-electrons.html: * Animometer/tests/misc/canvas-stars.html: * Animometer/tests/misc/compositing-transforms.html: * Animometer/tests/simple/simple-canvas-paths.html: * Animometer/tests/simple/tiled-canvas-image.html: * Animometer/tests/template/template-canvas.html: * Animometer/tests/template/template-css.html: * Animometer/tests/template/template-svg.html: * Animometer/tests/text/layering-text.html: * Animometer/tests/text/text-boxes.html: Fix the cursor in the graph analysis when the min complexity is not 0. * Animometer/resources/debug-runner/graph.js: (_addRegression): (createComplexityGraph): 2016-02-23 Geoffrey Garen Fix some issues in MallocBench https://bugs.webkit.org/show_bug.cgi?id=154600 Reviewed by Oliver Hunt. * MallocBench/MallocBench.xcodeproj/project.pbxproj: Make nimlang.ops a part of the build so that it copies to the right place for execution. * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::Interpreter): Don't try to open .ops files for writing because we're only going to read and we might need extra permissions to write. (Interpreter::~Interpreter): Give more context when opening a file fails to help with debugging. * MallocBench/MallocBench/stress.cpp: (benchmark_stress): Reduce iterations to complete in less than 10 seconds. 2016-02-23 Michael Saboff Unreviewed change to revert extraneous changes made part of change set 196955. * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::doMallocOp): (Interpreter::Thread::switchTo): (writeData): Deleted. 2016-02-19 Michael Saboff MallocBench: Added recording for nimlang website, new recording details and added new options https://bugs.webkit.org/show_bug.cgi?id=154485 Reviewed by Geoff Garen. Added new capabilities to MallocBench. These include: Added a recording of http://nim-lang.org/docs/lib.html. Added thread id to the recording and the ability to playback switching threads in MallocBench Added aligned allocations to recordings and the ability to playback Added --use-thread-id option to honor recorded thread ids Added --detailed-report to output remaining allocations by size after playback Added --no-warmup to not run the warm up iteration Changed the way that options are passed down to the benchmarks. Instead of passing individual boolean or numeric option values, just pass a reference the CommandLine itself. Each benchmark can access the options that are appropriate. The Benchmark class also uses the options for is parallel, run counts and warm up. Added thread id and aligned malloc to the Op by noticing that structure padding and Opcode allowed for another 32 bits of data. Breaking that unused 32 bits into a 16 bit thread id value and a 16 bit log base 2 of the alignment for aligned malloc allowed for existing recordings to playback without any incompatibilities. Threaded operation is simulated by creating threads as needed. As long as the next Op's thread id is the same as the last, operation continues as normal. When the next Op has a different thread id, we switch to that thread using the shared Op stream to continue playing back. There is a mutex to assure that only one thread is really running at a time and a condition variable used to wait that the current thread id matches each block thread's thread id. This doesn't simulate true concurrent threading, but is instead plays back Ops recorded for multiple thread faithfully. * MallocBench/MallocBench.xcodeproj/project.pbxproj: * MallocBench/MallocBench/Benchmark.cpp: (deallocateHeap): (Benchmark::Benchmark): (Benchmark::runOnce): (Benchmark::run): * MallocBench/MallocBench/Benchmark.h: (Benchmark::isValid): * MallocBench/MallocBench/CommandLine.cpp: (CommandLine::printUsage): * MallocBench/MallocBench/CommandLine.h: (CommandLine::isValid): (CommandLine::benchmarkName): (CommandLine::isParallel): (CommandLine::useThreadID): (CommandLine::detailedReport): (CommandLine::warmUp): (CommandLine::heapSize): (CommandLine::runs): * MallocBench/MallocBench/Interpreter.cpp: (Interpreter::Interpreter): (Interpreter::run): (Interpreter::readOps): (Interpreter::doOnSameThread): (Interpreter::switchToThread): (Interpreter::detailedReport): (compute2toPower): (writeData): (Interpreter::doMallocOp): (Interpreter::Thread::Thread): (Interpreter::Thread::stop): (Interpreter::Thread::~Thread): (Interpreter::Thread::runThread): (Interpreter::Thread::waitToRun): (Interpreter::Thread::switchTo): * MallocBench/MallocBench/Interpreter.h: (Interpreter::Thread::isMainThread): * MallocBench/MallocBench/alloc_free.cpp: Added. (benchmark_alloc_free): * MallocBench/MallocBench/alloc_free.h: Added. * MallocBench/MallocBench/balloon.cpp: (benchmark_balloon): * MallocBench/MallocBench/balloon.h: * MallocBench/MallocBench/big.cpp: (benchmark_big): * MallocBench/MallocBench/big.h: * MallocBench/MallocBench/churn.cpp: (benchmark_churn): * MallocBench/MallocBench/churn.h: * MallocBench/MallocBench/facebook.cpp: (benchmark_facebook): * MallocBench/MallocBench/facebook.h: * MallocBench/MallocBench/flickr.cpp: (benchmark_flickr): (benchmark_flickr_memory_warning): * MallocBench/MallocBench/flickr.h: * MallocBench/MallocBench/fragment.cpp: (validate): (benchmark_fragment): (benchmark_fragment_iterate): * MallocBench/MallocBench/fragment.h: * MallocBench/MallocBench/list.cpp: (benchmark_list_allocate): (benchmark_list_traverse): * MallocBench/MallocBench/list.h: * MallocBench/MallocBench/main.cpp: (main): * MallocBench/MallocBench/medium.cpp: (benchmark_medium): * MallocBench/MallocBench/medium.h: * MallocBench/MallocBench/memalign.cpp: (test): (benchmark_memalign): * MallocBench/MallocBench/memalign.h: * MallocBench/MallocBench/message.cpp: (benchmark_message_one): (benchmark_message_many): * MallocBench/MallocBench/message.h: * MallocBench/MallocBench/nimlang.cpp: Added. (benchmark_nimlang): * MallocBench/MallocBench/nimlang.h: Added. * MallocBench/MallocBench/nimlang.ops: Added. * MallocBench/MallocBench/realloc.cpp: (benchmark_realloc): * MallocBench/MallocBench/realloc.h: * MallocBench/MallocBench/reddit.cpp: (benchmark_reddit): (benchmark_reddit_memory_warning): * MallocBench/MallocBench/reddit.h: * MallocBench/MallocBench/stress.cpp: (deallocate): (benchmark_stress): * MallocBench/MallocBench/stress.h: * MallocBench/MallocBench/stress_aligned.cpp: (benchmark_stress_aligned): * MallocBench/MallocBench/stress_aligned.h: * MallocBench/MallocBench/theverge.cpp: (benchmark_theverge): (benchmark_theverge_memory_warning): * MallocBench/MallocBench/theverge.h: * MallocBench/MallocBench/tree.cpp: (benchmark_tree_allocate): (benchmark_tree_traverse): (benchmark_tree_churn): * MallocBench/MallocBench/tree.h: * MallocBench/run-malloc-benchmarks: 2016-02-11 Jon Lee Fix a missing refactoring. * Animometer/tests/master/resources/multiply.js: (animate): Move to Utilities.lerp. (_lerp): Deleted. 2016-02-10 Jon Lee Add new benchmark tests. https://bugs.webkit.org/show_bug.cgi?id=154063 Provisionally reviewed by Said Abou-Hallawa. Add tests for get/put image data, filters, opacity, and css transforms. * Animometer/resources/runner/benchmark-runner.js: (_runBenchmarkAndRecordResults): Update the body background color to match that of the stage. (this._runNextIteration): Clear the background color style for the results page. * Animometer/resources/runner/tests.js: * Animometer/tests/master/focus.html: Added. * Animometer/tests/master/image-data.html: Added. * Animometer/tests/master/multiply.html: Added. * Animometer/tests/master/resources/focus.js: Added. * Animometer/tests/master/resources/image-data.js: Added. * Animometer/tests/master/resources/multiply.js: Added. * Animometer/tests/master/resources/stage.css: Move common styles out. * Animometer/tests/resources/main.js: Update Stage.randomBool to use Math.random. Add Stage.randomSign for randomly setting a direction. Add the notion of the current timestamp of the test to Benchmark, since some animations cycle through colors and rely on an incremental counter like the time. 2016-02-09 Said Abou-Hallawa Add internal benchmark tests for CSS mix-blend-modes and filters https://bugs.webkit.org/show_bug.cgi?id=154058 Provisionally reviewed by Jon Lee. * Animometer/resources/debug-runner/tests.js: Include the new tests in the "HTML suite" of the debug runner. * Animometer/resources/extensions.js: (Utilities.browserPrefix): (Utilities.setElementPrefixedProperty): Utility functions to allow setting prefixed style properties. * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: Set the mix-blend-mode and the filter to some random values if the options of the test requested that. * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: (parseShapeParameters): Parse the url options "blend" and "filter" and set the corresponding flags. * Animometer/tests/resources/main.js: (randomStyleMixBlendMode): (randomStyleFilter): Return random mix-blend-mode and filter. 2016-02-08 Jon Lee Add a ramp controller https://bugs.webkit.org/show_bug.cgi?id=154028 Provisionally reviewed by Said Abou-Hallawa. Enhance the graph to include a complexity-fps graph, in addition to the time graph. * Animometer/developer.html: Add a ramp option. * Animometer/resources/debug-runner/animometer.css: Update the style. * Animometer/resources/strings.js: Flatten the Strings.text constants. * Animometer/resources/debug-runner/animometer.js: (ResultsTable.call._addGraphButton): Refactor. (ResultsTable.call._addTest): Add regression data. (benchmarkController): Add a form that allows the user to switch between the two forms, Add a form that allows the user to toggle different data. Hide certain header columns depending on the selected controller. * Animometer/resources/debug-runner/graph.js: Add the complexity regressions. * Animometer/resources/debug-runner/tests.js: Add headers for the ramp results. * Animometer/resources/runner/animometer.js: (ResultsTable): If a header is disabled don't include them in _flattenedHeaders. * Animometer/tests/resources/main.js: (Controller): Allow options to specify the capacity for sample arrays. (Regression): A piecewise regression that tries to fit a slope and a flat profile. (_calculateRegression): Options can fix the slope and bias when calculating the minimal error. Sweep across the samples in time (which could be backward depending on the controller) and calculate the intersection point. (RampController): This controller assumes that the target frame rate is below 58 FPS. It runs in two stages. The first stage quickly determines the order of magnitude of objects needed to stress the system by the setting the complexity to increasingly difficult tiers. Perform a series of ramps descending from a high-water mark of complexity. The complexity needed to reach the target frame length is done by performing a piecewise regression on each ramp, and track a running average of these values. For the next ramp, make that running average the center of the ramp. With a minimum complexity of 0, the high-water mark is twice that average. The score is based on the highest complexity that can reach 60 fps. 2016-02-08 Jon Lee Address Said's comments on the benchmark, and do some clean up. * Animometer/developer.html: * Animometer/resources/debug-runner/animometer.css: Add styles for averages. * Animometer/resources/debug-runner/animometer.js: Use the right Strings constants. * Animometer/resources/debug-runner/graph.js: (_addRegressionLine): Add missing code to draw the line and standard deviation highlight. (onGraphTypeChanged): Remove unneeded variables (onTimeGraphOptionsChanged): * Animometer/resources/runner/benchmark-runner.js: (_runBenchmarkAndRecordResults): Rename samplers to suiteResults and _suitesSamplers to _suitesResults. * Animometer/tests/resources/main.js: (results): Call processSamples(). (update): Change sampling timestamp comparison. (_animateLoop): Move shouldStop call to before the update. * Animometer/tests/resources/sampler.js: (process): Rename to processSamples(). 2016-02-07 Jon Lee Teach Controller to measure intervals, and turn off the frame length estimator. * Animometer/tests/resources/main.js: Default interval length is 100 ms. (start): Set the first interval. (_measureAndResetInterval): Reports the average frame length of the interval that just completed, and sets up the next interval. (update): If there is no length, then just use the estimator per frame, otherwise the estimator measures per interval. Add a didFinishInterval for subclasses to process prior to recording the sample. Update tune() to include whether an interval had finished. (StepController): Step controllers don't measure on an interval basis. 2016-02-07 Jon Lee Minor refactoring. Rename Controller._estimator to Controller._frameLengthEstimator and switch the parameters for start(), update(), and tune(), so that the timestamp is first and stage is second. * Animometer/tests/resources/main.js: 2016-02-07 Jon Lee Move ResultsTable functionality not needed for release tests out. Move reporting of score and mean to selection of the time-based graph. * Animometer/developer.html: Rename graph-options to time-graph-options. * Animometer/resources/debug-runner/animometer.js: (DeveloperResultsTable): Moved from runner/animometer.js. Switch from mean values to "average" objects which can hold stdev. Move graph button and calculation of noisy measurements here. Sophisticated header processing is not needed in release suite. (populateTable): Use DeveloperResultsTable. * Animometer/resources/debug-runner/graph.js: Pull time graph creation to its own function, and add a new onGraphTypeChanged handler in preparation of a complexity graph to be added later. * Animometer/resources/runner/animometer.js: (ResultsTable): Simplify to just handle test names and scores. 2016-02-07 Jon Lee Tests: reuse objects already made. Avoid thrash of object creation and removal by maintaining an index that moves along the array as the adjust values change. If the tune value requires more objects than the maximum size of the object array, then create new objects. This means that the object array size never decreases. * Animometer/tests/master/resources/canvas-stage.js: Maintain a separate offsetIndex. For these tests, we want to avoid drawing the oldest objects, so the scene will draw the object at offsetIndex to the end of the array. (tune): Reverse the logic since "removal" of objects is much simpler and involves simply changing the offsetIndex. (animate): Update the for loop to draw from offsetIndex to the end. (complexity): Update the definition. * Animometer/tests/master/resources/canvas-tests.js: Maintain a separate offsetIndex. For these tests, we want to avoid drawing the newest objects, so the scene will draw the object at index 0 to the object at offsetIndex. (SimpleCanvasStage.animate): Fly-by removal of local stage variable, which is unneeded. Update the for loop to draw from offsetIndex to the end. * Animometer/tests/simple/resources/simple-canvas-paths.js: (SimpleCanvasStage.animate): Update the for loop to draw from 0 to offsetIndex. * Animometer/tests/simple/resources/simple-canvas.js: (tune): Update logic. Here, offsetIndex represents the boundary of the last index to render. (animate): Update the for loop to draw from 0 to offsetIndex. (complexity): Update the definition. 2016-02-07 Jon Lee Tests: refactor and update styles. * Animometer/tests/resources/main.js: Add helper methods that return a color that hue rotates based on the date, and a counter value that increases based on the date. Fix randomInt() to not bias against the min and max values. * Animometer/tests/master/resources/canvas-tests.js: Use new helper methods. * Animometer/tests/master/resources/dom-particles.js: Ditto. * Animometer/tests/master/resources/particles.js: Ditto. * Animometer/tests/simple/resources/simple-canvas-paths.js: Refactor to use a rotating color instead of a random color. The fast switching of color is too vivid to watch. * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: (BouncingSvgParticlesStage.call.createGradient): Fix the gradient so that the last stop is located at the end. 2016-02-07 Jon Lee Refactor tune() to not return the complexity of the scene. We have stage.complexity() now, so returning the complexity through tune is unnecessary. * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/master/resources/canvas-stage.js: * Animometer/tests/master/resources/particles.js: * Animometer/tests/misc/resources/canvas-electrons.js: * Animometer/tests/misc/resources/canvas-stars.js: * Animometer/tests/resources/main.js: * Animometer/tests/simple/resources/simple-canvas.js: * Animometer/tests/simple/resources/tiled-canvas-image.js: * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/text/resources/layering-text.js: 2016-02-07 Jon Lee Make the fixed controller a step controller instead. Halfway through the test it will bump up the complexity 4-fold. Calculate the step timestamp using options instead of a separate parameter to the Controller constructor. * Animometer/developer.html: Change value to "step" * Animometer/resources/debug-runner/animometer.js: (window.suitesManager.updateEditsElementsState): Show number inputs when set to "step". * Animometer/tests/resources/main.js: (update): Provide a hook for subclasses to tune. (StepController): Maintain a flag determining whether we've stepped, and the time we should step. (Benchmark): Use the new StepController. 2016-02-07 Jon Lee Adjust the FPS graph scale. Instead of making the FPS graph linearly scale, scale it based on the frame length, but show the data in terms of FPS. Because it is inversely proportional, and most of the data never gets below 20, concentrate the axis from 20-60 FPS, since otherwise over half of the available graph space ends up blank. This means we should convert all of the FPS data to frame length data. * Animometer/resources/debug-runner/graph.js: Update the domain to be based on frame length in milliseconds instead of FPS. Update the cursor to consider all of the values being shown, and then pick the min and max values to represent the length of the cursor. * Animometer/resources/runner/animometer.js: * Animometer/resources/strings.js: * Animometer/tests/resources/main.js: (processSamples): Add the ability to only sample a range of the data instead of everything after an offset index. Update sampler to record the frame lengths instead of the frame rate. 2016-02-07 Jon Lee Add option to use different methods for retrieving a timestamp. * Animometer/developer.html: Add performance.now and Date.now options. * Animometer/resources/runner/animometer.js: Default to performance.now. (window.benchmarkController.startBenchmark): * Animometer/tests/resources/main.js: Tie the desired method to _getTimestamp. (run): Use _getTimestamp. (_animateLoop): Ditto. 2016-02-07 Jon Lee Allow adding any number of markers to the graph. The markers can be labeled and contain timestamp and sample index data. Make it a part of the controller rather than keeping it in the sampler. * Animometer/resources/debug-runner/animometer.css: Add styles for markers * Animometer/resources/debug-runner/graph.js: Create the markers and add text labels. * Animometer/resources/runner/animometer.js: Assume the samplingTimeOffset is just one of the marks provided. * Animometer/resources/strings.js: Add Strings.json.marks. * Animometer/tests/resources/main.js: (Controller): Keep marks here. They are keyed by the marker name, so no two markers should have the same name. (recordFirstSample): Refactor to use mark. (mark): Allows for arbitrary data if needed later. The timestamp maintained is relative to the absolute start timestamp. (containsMark): Checks whether a mark with a specific comment exists. (processSamples): Removes the _startTimestamp offset from the marks before setting it in results. * Animometer/tests/resources/sampler.js: Remove marks. 2016-02-07 Jon Lee Get rid of options member variable in Benchmark. Options are only needed when initializing the stage or benchmark, so there's no need to also keep a reference to it. * Animometer/tests/resources/main.js: Get rid of options variable in Benchmark. Pass options to Controllers and Stages. (Controller.Utilities.createClass): (Benchmark.Utilities.createClass): (get options): Deleted. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * Animometer/tests/master/resources/canvas-stage.js: * Animometer/tests/master/resources/canvas-tests.js: * Animometer/tests/master/resources/particles.js: * Animometer/tests/misc/resources/canvas-electrons.js: * Animometer/tests/misc/resources/canvas-stars.js: * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/simple/resources/simple-canvas-paths.js: * Animometer/tests/simple/resources/tiled-canvas-image.js: * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/text/resources/layering-text.js: 2016-02-07 Jon Lee Update how the benchmark is run https://bugs.webkit.org/show_bug.cgi?id=153960 Provisionally reviewed by Said Abou-Hallawa. Introduce the notion of a Controller. It is responsible for recording, updating, and processing the statistics and complexity of the benchmark. This allows plugging in different Controllers. This strips most of the functionality from Animator and BenchmarkState, so fold what's left into Benchmark. Now, Benchmarks only own a stage and a controller, but are responsible for driving the animation loop. Rewrite Animator._shouldRequestAnotherFrame into two different Controllers. One maintains a fixed complexity, and the other adapts the complexity to meet a fixed FPS. Fix the Kalman estimator to be modeled on a scalar variable with no model. * Animometer/tests/resources/main.js: Remove BenchmarkState and Animator, and replace it with a Controller. Add a FixedController and refactor the previous controller to an AdaptiveController. (Controller): Controllers own the estimator and the sampler. When a new frame is displayed, the animation loop calls update(). The estimator and sampler record stats, then tune. Samplers can track multiple series of data. The basic controller tracks timestamp, complexity, and estimated frame rate. The Kalman estimation is based on the frame length rather than the frame rate. Because FPS is inverse proportional to frame length, in the case where the measured frame length is very small, the FPS ends up being a wildly large number (in the order of 600-1000 "FPS"), and it pulls the estimator up drastically enough that it takes a while for it to settle back down. Using frame length reduces the impact of these spikes. Converging the estimation takes enough time to avoid initializing it immediately when the benchmark starts. Instead, the benchmark runs for a brief period of time (100ms) before running it in earnest. Allow controllers an opportunity to set the complexity before starting recording. When the benchmark is complete, the controller has an opportunity to process the samples. The default implementation calculates the raw FPS based on the time difference of the samples, and calculates the complexity score. This is moved from Benchmark.processSamples. (Controller): Initialize timestamps. These are at first relative to the start of the benchmark, but are offset by the absolute start time during start(). By default maintain 3 data series, but subclasses can override. (start): Calls recordFirstSample() for subclasses to override if needed. (recordFirstSample): For basic controller, start sampling at the beginning. (update): Update the frame length estimator and sample. (shouldStop): Checks that the time is before _endTimestamp. (results): Returns the processed samples. (processSamples): Iterate through the sample data and collate them. Include scores. (FixedComplexityController): Controller that tunes the stage to the desired complexity prior to starting, and keeps it at that complexity. (AdaptiveController): Have the estimator estimate the interval frame rate instead of the raw frame rate. The previous version of this controller ignored the frame that came after the adjustment. The raw FPS show that whatever noise the scene change adds is negligible compared to the noise of the system overall. Stop ignoring that frame and include all frames in the measurements. (Benchmark): Remove dependency on animator, and instantiate a runner based on what is selected. Most of the loop's functionality is in Controller, so remove here. (Benchmark.run): Remove start() since it is only called from run(), and fold it in here. (Benchmark._animateLoop): Fold in from Animator.animateLoop. Let the benchmark run for a brief period before calling Controller.start(). * Animometer/tests/resources/math.js: Fix the Kalman estimator. The filter estimates a scalar variable, and makes basic assumptions regarding the model. As a result none of the linear algebra classes are needed, so remove Matrix, Vector3, and Matrix3. (SimpleKalmanEstimator): Calculate the gain based on the provided process and measurement errors. (KalmanEstimator): Deleted. (IdentityEstimator): Deleted. (PIDController): Refactor to use the Utilities.createClass() helper. The Kalman filter algorithm is explained here http://greg.czerniak.info/guides/kalman1/. The state, represented by a scalar, is the estimated frame length. There is no user transition of the state, and the state is the same as the measurement. With this model, the estimation error converges, so calculate the gain ahead of time. * Animometer/developer.html: Remove fixed-after-warmup since it is not useful. Replace the option to toggle the estimator, and make it possible to customize the estimator's error parameters. Show raw FPS by default, and remove interval FPS, which will be shown instead of the filtered raw FPS. * Animometer/resources/debug-runner/animometer.css: Put the header behind the graph. Remove #intervalFPS rules; move the color to #filteredFPS. * Animometer/resources/debug-runner/graph.js: (updateGraphData): Update the hr style to force the layout to be calculated correctly. Change the tick format to be in terms of seconds, since the timestamps are in milliseconds. Remove interval data. * Animometer/resources/runner/animometer.js: (window.benchmarkController.startBenchmark): Set Kalman parameters. * Animometer/resources/runner/benchmark-runner.js: (_runBenchmarkAndRecordResults): When a benchmark completes, expect it to return the final data, rather than passing a sampler from the controller. This avoids needing to expose the sampler variable in the benchmark. * Animometer/tests/resources/sampler.js: (process): Move the setting of the target frame rate to AdaptiveController. 2016-02-06 Jon Lee Code clean up: Move Rotater function closer to Stage static methods. The Rotater is used together with those methods; keep them close. * Animometer/tests/resources/main.js: 2016-02-06 Jon Lee Update the JS includes due to ResultsTable move. * Animometer/developer.html: * Animometer/index.html: 2016-02-06 Jon Lee Move createElement and createSVGElement to Utilities. * Animometer/resources/extensions.js: (Utilities.createElement): Added. (Utilities.createSVGElement): Added. (DocumentExtension.createElement): Deleted. (DocumentExtension.createSvgElement): Deleted. * Animometer/resources/debug-runner/animometer.js: * Animometer/resources/runner/animometer.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: 2016-02-06 Jon Lee Add a convenience function for creating a class. The pattern for creating a class is common enough to add as a Utilities helper function. It also makes it easy to collapse class definitions when editing. * Animometer/resources/debug-runner/animometer.js: Move ProgressBar definition, since it is only used here. * Animometer/resources/runner/animometer.js: Move ResultsDashboard and ResultsTable definition, since it is only used here. * Animometer/resources/extensions.js: Move Utilities definition to the top. Convert Point, Insets, SimplePromise. (ProgressBar): Moved to animometer.js. (ResultsDashboard): Moved to animometer.js. (ResultsTable): Moved to animometer.js. * Animometer/resources/runner/benchmark-runner.js: Convert BenchmarkRunnerState, BenchmarkRunner. * Animometer/tests/resources/main.js: Convert Rotater, Stage, Animator, Benchmark. * Animometer/tests/resources/sampler.js: Convert Experiment, Sampler. Convert test primitives. * Animometer/tests/master/resources/canvas-tests.js: Convert CanvasLineSegment, CanvasArc, CanvasLinePoint. * Animometer/tests/simple/resources/simple-canvas-paths.js: Convert CanvasLineSegment, CanvasLinePoint, CanvasQuadraticSegment, CanvasQuadraticPoint, CanvasBezierSegment, CanvasBezierPoint, CanvasArcToSegment, CanvasArcToSegmentFill, CanvasArcSegment, CanvasArcSegmentFill, CanvasRect, CanvasRectFill. * Animometer/tests/simple/resources/tiled-canvas-image.js: Convert CanvasImageTile. 2016-02-06 Jon Lee Minor improvements to debug harness. * Animometer/developer.html: * Animometer/resources/debug-runner/animometer.css: (#suites): Put the complexity text boxes closer to the test names. (#options): (#rawFPS circle): Make the interval FPS appear as a separate data series, with a line. (#intervalFPS path): (#intervalFPS circle): * Animometer/resources/debug-runner/animometer.js: (window.optionsManager.updateLocalStorageFromUI): Convert number inputs from text. (window.suitesManager._onChangeTestCheckbox): Refactor to take a checkbox. (window.suitesManager._createTestElement): Enhance such that typing into the complexity input will automatically select that test for running. (window.suitesManager.updateLocalStorageFromJSON): Make the harness work for private browsing. * Animometer/resources/debug-runner/graph.js: Separate the intervalFPS data, and show more accuracy in timestamps. 2016-02-06 Jon Lee Refactor helper methods for getting random values for a stage. Instead of requiring a Stage instance, just attach it to the Stage object. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * Animometer/tests/master/resources/canvas-tests.js: * Animometer/tests/master/resources/particles.js: * Animometer/tests/misc/resources/canvas-electrons.js: * Animometer/tests/misc/resources/canvas-stars.js: * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/resources/main.js: * Animometer/tests/simple/resources/simple-canvas-paths.js: 2016-02-05 Said Abou-Hallawa Add a new graphics test for CanvasRenderingContext2D functions: getImageData and putImageData https://bugs.webkit.org/show_bug.cgi?id=151716 Reviewed by Darin Adler. The purpose of this test is to measure the performance of getImageData and putImageData functions. This test draws a background on the canvas and then gets some random tiles from this background and draw them in destinations different from their original sources. * Animometer/resources/debug-runner/tests.js: Adding the new test to the canvas simple tests suite. * Animometer/resources/extensions.js: (Array.prototype.shuffle): Shuffles the elements of an array. (Point.zero): Returns a new Point object whose x and y are equal zero. (Point.prototype.str): Used for debugging the Point object. * Animometer/tests/simple/resources/tiled-canvas-image.js: Added. (CanvasImageTile): (CanvasImageTile.prototype.getImageData): (CanvasImageTile.prototype.putImageData): (Stage.call.initialize): (Stage.call._createTiles): (Stage.call._nextTilePosition): (Stage.call.tune): (Stage.call._drawBackground): (Stage.call.animate): (Stage.call.complexity): (Stage.call): * Animometer/tests/simple/tiled-canvas-image.html: Added. 2016-01-07 Jon Lee Fix new test. * Animometer/resources/runner/tests.js: Wrong URL from an old patch. * Animometer/tests/master/particles.html: * Animometer/tests/master/resources/dom-particles.js: (Particle.call.reset): Figured out a simpler way to set up the particles. (this.move.reset): Deleted. (this.move._applyAttributes): Deleted. * Animometer/tests/master/resources/particles.js: (Particle): Call move() after reset(). 2016-01-07 Jon Lee Update benchmark test suite https://bugs.webkit.org/show_bug.cgi?id=152679 Reviewed by Simon Fraser. Add a new test. The test has a rotating background gradient, and does a better job physically simulating particles. * Animometer/resources/extensions.js: Teach Point to take constants as well as other Points. (Point.prototype.length): Added. (Point.prototype.normalize): Added. * Animometer/resources/runner/tests.js: Add the test to the master suite. * Animometer/tests/master/particles.html: Added. * Animometer/tests/master/resources/particles.js: Added. Parent class for different kinds of particles. (Particle): (Particle.prototype.reset): If the particle starts slowing down in terms of its animation, reset it. (Particle.prototype.animate): Bounce off the walls elastically, and include gravity. (Particle.prototype.move): Subclasses should override. (ParticlesStage): Stage includes a rotating gradient background. * Animometer/tests/master/resources/dom-particles.js: Added. Creates a
and adds it to the stage. * Animometer/tests/resources/star.svg: Added. 2016-01-03 Jon Lee Update benchmark test suite https://bugs.webkit.org/show_bug.cgi?id=152679 Reviewed by Simon Fraser. Move algorithm.js and sampler.js to tests/ and benchmark-runner.js to runner/. Needed by both harnesses. * Animometer/resources/runner/benchmark-runner.js: Renamed from PerformanceTests/Animometer/resources/debug-runner/benchmark-runner.js. * Animometer/developer.html: * Animometer/index.html: Needed only by the tests. Move to tests/. Statistics, in sampler.js, is used by ResultsDashboard, so move that into extensions.js. * Animometer/resources/extensions.js: * Animometer/tests/resources/algorithm.js: Renamed from PerformanceTests/Animometer/resources/algorithm.js. * Animometer/tests/resources/sampler.js: Renamed from PerformanceTests/Animometer/resources/sampler.js. * Animometer/tests/bouncing-particles/bouncing-canvas-images.html: * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: * Animometer/tests/bouncing-particles/bouncing-css-images.html: * Animometer/tests/bouncing-particles/bouncing-css-shapes.html: * Animometer/tests/bouncing-particles/bouncing-svg-images.html: * Animometer/tests/bouncing-particles/bouncing-svg-shapes.html: * Animometer/tests/master/canvas-stage.html: * Animometer/tests/misc/canvas-electrons.html: * Animometer/tests/misc/canvas-stars.html: * Animometer/tests/misc/compositing-transforms.html: * Animometer/tests/simple/simple-canvas-paths.html: * Animometer/tests/template/template-canvas.html: * Animometer/tests/template/template-css.html: * Animometer/tests/template/template-svg.html: * Animometer/tests/text/layering-text.html: * Animometer/tests/text/text-boxes.html: 2016-01-07 Jon Lee Update benchmark test suite https://bugs.webkit.org/show_bug.cgi?id=152679 Reviewed by Simon Fraser. Fix tests for other browsers. * Animometer/resources/extensions.js: (Point.elementClientSize): Some browsers return 0 for SVG clientWidth and clientHeight. Use getBoundingClientRect() instead. * Animometer/tests/misc/resources/canvas-electrons.js: (CanvasElectron.prototype._draw): Some browsers don't support ellipse. 2016-01-07 Jon Lee Add a waitUntilReady() step https://bugs.webkit.org/show_bug.cgi?id=152862 Reviewed by Simon Fraser. Add a waitUntilReady() callback that lets the benchmark complete its setup before running the benchmark. * Animometer/tests/resources/main.js: (Benchmark.prototype.run): First call waitUntilReady, which returns a promise. When the promise resolves, run everything that was in this function. (Benchmark.prototype.waitUntilReady): Default implementation returns a resolved promise. (Benchmark.prototype.resolveWhenFinished): Deleted. * Animometer/tests/template/resources/template-canvas.js: (new.TemplateCanvasStage.waitUntilReady): Example on how to override. 2016-01-03 Jon Lee Update data reporting and analysis https://bugs.webkit.org/show_bug.cgi?id=152670 Reviewed by Simon Fraser. Show new graph data. Provide controls to show different series data. Provide an interactive cursor that shows the data at a given sample. * Animometer/developer.html: Add a nav section in #results. Each part of the graph has a checkbox for visual toggling, as well as companion spans to contain the data. The numbers will always be shown even if the SVG isn't. * Animometer/resources/debug-runner/animometer.css: (#suites): Adjust spacing when doing fixed complexity. (#test-graph nav): Place the nav in the upper right corner. (#test-graph-data > svg): Fix the FPS scale from 0-60. It makes the raw FPS goes past that scale. Allow it to show. (.target-fps): Add a dotted line for where the benchmark is supposed to settle for FPS. (#cursor line): The cursor contains a line and highlight circles for the data being shown. (#cursor circle): (#complexity path): This and rules afterward are named by series type. (#complexity circle): (#filteredFPS path): (#filteredFPS circle): (#rawFPS path): (#intervalFPS circle): (.left-samples): Deleted. (.right-samples): Deleted. * Animometer/resources/debug-runner/animometer.js: (initialize): Add a "changed" listener when the checkboxes change in the nav. (onBenchmarkOptionsChanged): Renamed. (showTestGraph): All graph data is passed in as graphData instead of as arguments. * Animometer/resources/debug-runner/graph.js: Extend BenchmarkController. When showing a new graph, call updateGraphData(). It creates all of the d3 graphs. onGraphOptionsChanged() toggles the data on and off. (updateGraphData): Add the axes. Add the average lines and markers for sample time and target FPS. Add the cursor group. Use helper function addData() to add the data. On top of everything add a transparent area which will catch all of the mouse events. When the mouse moves in the graph, find the closest data point, show the data in the nav area, and highlight the data points. (addData): Adds a line and circle for each data point. Also adds a highlight cursor with a size a little larger than the circle radius for the data points. (onGraphOptionsChanged): Called when data is visually toggled. (showOrHideNodes): Helper function to toggle the .hidden class. * Animometer/resources/extensions.js: (ResultsDashboard.prototype.get data): Get rid of the arguments for _processData. (ResultsTable.prototype._addGraphButton): Shove all of the graph data into a singular object. Producing the JSON can take a while with all of the data. Make it on-demand with a button. * Animometer/resources/debug-runner/animometer.js: (showResults): When showing the results, don't serialize the JSON data. Move that to... (showJSONResults): ...here. Remove the button. * Animometer/developer.html: Add a button. The button will remove itself and populate the textarea with the JSON data. * Animometer/resources/debug-runner/animometer.css: (.hidden): Add a universal hidden class. (#results button.small-button): Promote the small-button styles to the whole results section for use in the JSON button. (#results button.small-button:active): (#results-data button.small-button): Deleted. (#results-data button.small-button:active): Deleted. Refactor how Animator does its recording. * Animometer/tests/resources/math.js: Create a new, simple estimator that just returns the same interval frame rate for adjustment. * Animometer/tests/resources/main.js: (Animator): Remove _dropFrameCount, and make variables more accurate described. (Animator.prototype.initialize): Use the identity estimator instead of using a bool. (Animator.prototype._intervalTimeDelta): Rename, only used internally. (Animator.prototype._shouldRequestAnotherFrame): Assume we drop one frame for adjustment of the scene. If we are within the number of frames to measure for the interval, just record the timestamp. Otherwise we are ready to evaluate and adjust the scene. Record the interval frame rate and the estimator's frame rate. Avoid processing the data through the Experiment while the test is running. Reconfigure the sampler to just record the raw samples. After the test is done, run the samples through the Experiment to get the score. * Animometer/resources/sampler.js: (Experiment): Fold _init() into the constructor since nobody else will call it. This is not needed until the test concludes, so remove startSampling(). Clients should just call sample(). (Sampler): Pre-allocate arrays given the number of data points being recorded, and a capacity of how many samples will be used. The processor is a called when it's time to process the data since that is the client also telling the Sampler what to record. Introduce the notion of marks as well, which allows the client to mark when an event occurs. When we mark sample start, we can attach the timestamp there, instead of storing it separately. (Sampler.prototype.startSampling): Deleted. Clients should just call record(). (Sampler.prototype.record): The data to record is passed in as variable arguments. (Sampler.prototype.mark): When adding a mark, a client needs to provide a unique string, and can provide extra data object for later retrieval. (Sampler.prototype.process): Renamed from toJSON. Trim the sampling arrays to what was used. Call the processor to process the samples. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._runBenchmarkAndRecordResults): Call process(). * Animometer/resources/strings.js: Add some new strings, remove the graph ones since they are not used. * Animometer/tests/resources/main.js: (Benchmark): Create a sampler with 4 series. The maximum number of points expected is the number of seconds multiplied by 60 fps. Benchmark, as a client of the Sampler, knows about all of the data being added to the Sampler. It is added through record(), and processed through processSamples(). (Benchmark.prototype.update): Mark when we've passed warmup and are starting to sample. Include the timestamp in the custom data for the mark. This avoids the need to store is separately in the Sampler. Fold what was in record() here, since nothing else needs this functionality. record() now just relays the information to the sampler. (Benchmark.prototype.record): Called by Animator, which provides the data to the sampler. Animator's calls to this is part of a later patch. Requires each stage to return its complexity. (Benchmark.prototype.processSamples): If the sampling mark exists, add it to the results. Go through all of the samples. All samples contain a timestamp and complexity. We calculate "raw FPS" which is the time differential from the previous sample. At regular intervals the Kalman-filtered FPS and the interval average FPS are also recorded. We also create two experiments, to get the scores for the complexity and smoothed FPS, and add those samples to the experiments. Grab those scores and add them into results also. Add complexity() to the tests for Benchmark.record(). * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/misc/resources/canvas-electrons.js: * Animometer/tests/misc/resources/canvas-stars.js: * Animometer/tests/text/resources/layering-text.js: 2015-12-27 Jon Lee Simplify the test harness https://bugs.webkit.org/show_bug.cgi?id=152562 Reviewed by Simon Fraser. Update the simple canvas tests. For the paths, start from the center instead of the top-left corner. Instead of using a coordinate limit, use a canonized factor, and use that along both the x and y axes, so that more capable tests use more of the canvas. * Animometer/tests/simple/resources/simple-canvas-paths.js: (CanvasLinePoint): Rewrite to use the coordinate maximum factor. (CanvasQuadraticPoint): Ditto. (CanvasBezierPoint): Ditto. * Animometer/tests/simple/resources/simple-canvas.js: (tune): Calculate a factor instead of a maximum coordinate. 2015-12-27 Jon Lee Simplify the test harness https://bugs.webkit.org/show_bug.cgi?id=152562 Reviewed by Simon Fraser. All of the benchmarks use the default Animator(). Don't require new tests to pass a new instance, and instead just make one in the Benchmark constructor. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * Animometer/tests/master/resources/canvas-tests.js: * Animometer/tests/misc/resources/canvas-electrons.js: * Animometer/tests/misc/resources/canvas-stars.js: * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/resources/main.js: * Animometer/tests/simple/resources/simple-canvas-paths.js: * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/text/resources/layering-text.js: * Animometer/tests/text/resources/text-boxes.js: Refactor the template. * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/template/template-canvas.html: * Animometer/tests/template/template-css.html: * Animometer/tests/template/template-svg.html: Refactor the SVG suite. * Animometer/tests/bouncing-particles/bouncing-svg-images.html: Move scripts to the end. * Animometer/tests/bouncing-particles/bouncing-svg-shapes.html: Ditto. * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: Remove extraneous includes to stage.js. * Animometer/tests/text/text-boxes.html: Ditto. BouncingCanvasParticlesBenchmark is not necessary. Use Benchmark directly when subclassing. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: Remove BouncingCanvasParticlesBenchmark. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: Use Benchmark. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: Ditto. * Animometer/tests/bouncing-particles/resources/bouncing-svg-particles.js: Require the shape in the constructor instead of having subclasses set the private variable. * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: Refactor. * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: Refactor the HTML suite. Move scripts to the end. * Animometer/tests/bouncing-particles/bouncing-css-images.html: * Animometer/tests/bouncing-particles/bouncing-css-shapes.html: * Animometer/tests/text/layering-text.html: * Animometer/tests/text/text-boxes.html: Refactor to use the new variables. * Animometer/tests/bouncing-particles/resources/bouncing-css-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/text/resources/layering-text.js: * Animometer/tests/text/resources/text-boxes.js: Refactor the bouncing canvas tests. * Animometer/tests/bouncing-particles/bouncing-canvas-images.html: Move scripts to the end. * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: Move scripts to the end. * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: Promote a few properties to "public" since they are used by subclasses. (BouncingParticlesStage): Fix the constructor, which was missing "this". Make particles "public" for subclasses. (BouncingParticlesStage.initialize): Fix the max velocity, which was accidentally changed. * Animometer/tests/misc/resources/compositing-transforms.js: Refactor. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: BouncingCanvasParticlesAnimator is no longer needed. (BouncingCanvasParticle): Change constructor to take a shape as a parameter instead of having subclasses set the variable. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: Refactor. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: Refactor. Move example/ files into misc/. * Animometer/tests/misc/canvas-electrons.html: Renamed from PerformanceTests/Animometer/tests/examples/canvas-electrons.html. * Animometer/tests/misc/canvas-stars.html: Renamed from PerformanceTests/Animometer/tests/examples/canvas-stars.html. * Animometer/tests/misc/resources/canvas-electrons.js: Renamed from PerformanceTests/Animometer/tests/examples/resources/canvas-electrons.js. * Animometer/tests/misc/resources/canvas-stars.js: Renamed from PerformanceTests/Animometer/tests/examples/resources/canvas-stars.js. * Animometer/resources/debug-runner/tests.js: Update test URLs. Refactor miscellaneous suite. * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: Remove BouncingParticlesAnimator and BouncingParticleBenchmark, which are not needed. (tune): Remove console assert. * Animometer/tests/resources/main.js: Add Rotater back in from stage.js. * Animometer/tests/examples/resources/canvas-electrons.js: Remove CanvasElectronsAnimator. * Animometer/tests/examples/resources/canvas-stars.js: Remove CanvasStarsAnimator. * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/examples/canvas-electrons.html: Move scripts to the end. * Animometer/tests/examples/canvas-stars.html: Ditto. * Animometer/tests/misc/compositing-transforms.html: Ditto. Refactor the simple suite. * Animometer/tests/master/resources/canvas-stage.js: (tune): Remove coordinateMaximum since it is not needed in any of the master tests. * Animometer/tests/simple/resources/simple-canvas.js: SimpleCanvasAnimator and SimpleCanvasBenchmark are no longer needed. (tune): Manage the objects differently, but instead of duplicating all of SimpleCanvasStage here, just replace tune(). Include coordinateMaximum, and remove items from the end of the list instead of the beginning. (StageBenchmark.call.createAnimator): Deleted. (StageBenchmark.call): Deleted. * Animometer/tests/simple/resources/simple-canvas-paths.js: * Animometer/tests/simple/simple-canvas-paths.html: Move scripts to the end. Get rid of stage.js, StageAnimator, and StageBenchmark. Don't have the progress bar update during the test. * Animometer/resources/debug-runner/animometer.js: (initialize): Move the setting of testsCount to the debug runner. (didRunTest): Nicer name. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._runBenchmarkAndRecordResults): Don't pass in the progress bar to benchmarks. * Animometer/resources/extensions.js: (ProgressBar): Refactor. Make variables "private". Resetting the progress when instantiating. (ProgressBar.prototype.incrementRange): This is called every time a benchmark completes. * Animometer/resources/runner/animometer.js: (window.benchmarkRunnerClient.initialize): Remove unneeded setting of testsCount. * Animometer/resources/strings.js: These are no longer needed. * Animometer/tests/master/canvas-stage.html: Remove script inclusion. Other tests will follow. * Animometer/tests/master/resources/canvas-tests.js: Use Benchmark instead of StageBenchmark. * Animometer/tests/resources/main.js: Messages are no longer needed (Animator.prototype._shouldRequestAnotherFrame): Rename from animate(), since this method returns a boolean indicating whether another frame should be requested. Collapse the logic from StageAnimator into animateLoop. (BenchmarkState.prototype.currentStage): Deleted. (BenchmarkState.prototype.currentMessage): Deleted. (BenchmarkState.prototype.currentProgress): Deleted. (Animator.prototype.animate): Deleted. (Animator.prototype.animateLoop): The stage is animated only when we have another frame to draw. (Benchmark.prototype.record): No need to update the progress bar. * Animometer/tests/resources/stage.js: Removed. Rotater will appear in a later patch, in main.js. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._runBenchmarkAndRecordResults): Each test is run as a benchmark. Remove the call to runBenchmark by merging the options here, and calling benchmark.run() directly. Make the class relationships more easily understandable. The benchmark owns the stage, animator, and options. Make the stage and animator no longer have their own references to the options. Make Stage a first-class citizen by promoting it to main.js. Later patches will try to get rid of stage.js altogether. * Animometer/tests/resources/main.js: (Stage): Moved from stage.js. (Animator): Don't pass in benchmark and options in its constructor. It will get initialized by benchmark-related parameters in initialize(). (Animator.prototype.initialize): Add a back-reference to benchmark and cache an option. (Animator.prototype.get benchmark): (Animator.prototype.animate): Refactor to use the cached option, to remove its dependency on the options dictionary. (Benchmark): Require all benchmarks to have a stage and animator. The instance will initialize them. (Benchmark.prototype.get options): (Benchmark.prototype.get stage): BenchmarkStates.stages will need to be renamed to avoid confusion. (Benchmark.prototype.get animator): (Benchmark.prototype.start): (Benchmark.prototype.update): Ask the stage directly to tune or clear instead of adding another level of indirection. (window.runBenchmark): Deleted. Remove the need for a benchmarkClient. Also remove the standalone path, since tests can be individually selected, and remove the need for runBenchmark since that is handled in BenchmarkRunner._runBenchmarkAndRecordResults. * Animometer/tests/resources/stage.js: (Stage): Deleted. Moved to main.js. (StageBenchmark): What's left is updating the progress bar; to be removed. (StageAnimator): What's left can be folded in Animator. Refactor master suite. * Animometer/tests/master/resources/canvas-stage.js: This now only has SimpleCanvasStage. (animate): Push the clearRect() into each stage. (complexity): (StageBenchmark.call.createAnimator): Deleted. (StageBenchmark.call): Deleted. * Animometer/tests/master/resources/canvas-tests.js: SimpleCanvasPathStrokeStage is no longer needed. (CanvasLineSegment.prototype.draw): (CanvasArc): (CanvasLinePoint): Remove the draw call because depending on its index it either needs to be moveTo or lineTo, and it is otherwise a very small draw operation that doesn't need the overhead of the function call. Do all of the drawing through the stage. Refactor the subclass pattern. Introduce Utilities.createSubclass(). * Animometer/resources/debug-runner/benchmark-runner.js: * Animometer/resources/extensions.js: (window.Utilities.createSubclass): Takes the super class, a function representing the class's constructor, and additional methods to attach to the new class's prototype object. * Animometer/tests/text/text-boxes.html: Remove unneeded reference to utilities.js. Refactor tests. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * Animometer/tests/examples/resources/canvas-electrons.js: * Animometer/tests/examples/resources/canvas-stars.js: * Animometer/tests/master/resources/canvas-stage.js: * Animometer/tests/master/resources/canvas-tests.js: * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/resources/stage.js: * Animometer/tests/simple/resources/simple-canvas-paths.js: * Animometer/tests/simple/resources/simple-canvas.js: * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/text/resources/layering-text.js: Reorder some of the methods and properties since they rely on each other. * Animometer/tests/text/resources/text-boxes.js: * Animometer/resources/debug-runner/animometer.js: Arrange calls in the order they are evoked. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunnerState.prototype.next): Get rid of return value since no caller to next() uses it. (BenchmarkRunnerState.prototype.prepareCurrentTest): Refactor the promise to resolve simply when onload() is called instead of looking for #stage. (BenchmarkRunner.prototype._runTestAndRecordResults): Suite.run simply calls runBenchmark(). Call it directly rather than through the Suite. (BenchmarkRunner.prototype.step): Remove unused parameter in resolve callback. (BenchmarkRunner.prototype.runMultipleIterations): Use this instead of self since it is outside of the closure which needed the self variable. (resolveIfReady): Deleted. (BenchmarkRunner.prototype.waitForElement): Deleted. * Animometer/resources/runner/tests.js: prepare() and run() are no longer needed. (Suite.prototype.prepare): Deleted. (Suite.prototype.run): Deleted. * Animometer/tests/master/canvas-stage.html: Move all scripts to the end of the page. 2015-12-23 Simon Fraser Add an Animometer developer test which animates text-rich boxes https://bugs.webkit.org/show_bug.cgi?id=152544 Reviewed by Zalan Bujtas. Add a test that draws lots of international text. This is a particle test, moving the boxes around with absolution positioning. * Animometer/resources/debug-runner/tests.js: * Animometer/tests/text/resources/text-boxes.js: Added. (BouncingTextBox): (BouncingTextBox.prototype._move): (BouncingTextBox.prototype.animate): (BouncingTextBoxStage): (BouncingTextBoxStage.prototype.createParticle): (BouncingTextBoxStage.prototype.particleWillBeRemoved): (BouncingTextBoxsBenchmark): (BouncingTextBoxsBenchmark.prototype.createStage): (window.benchmarkClient.create): * Animometer/tests/text/text-boxes.html: Added. 2015-12-23 Jon Lee Split benchmark into two different pages https://bugs.webkit.org/show_bug.cgi?id=152458 Reviewed by Simon Fraser. Add tests to 'animometer' suite. * Animometer/resources/runner/tests.js: * Animometer/tests/master/canvas-stage.html: Added. * Animometer/tests/master/resources/canvas-stage.js: Added. * Animometer/tests/master/resources/canvas-tests.js: Added. * Animometer/tests/master/resources/stage.css: Added. 2015-12-23 Jon Lee Split benchmark into two different pages https://bugs.webkit.org/show_bug.cgi?id=152458 Reviewed by Simon Fraser. Address comments. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._runTestAndRecordResults): When the testing is complete the frame owning the sampler goes away, and a later call to get the JSON data is no longer available. Process the data right here, instead, and just reference it when displaying the results in ResultsDashboard.prototype._processData. * Animometer/resources/extensions.js: (Array.prototype.fill.Array.prototype.fill): Add a null check. Remove braces around single-line clause. (Array.prototype.find.Array.prototype.find): Update the null check. (ResultsDashboard.prototype._processData): Use the already-processed data. * Animometer/resources/runner/animometer.css: (.frame-container > iframe): Remove calc(). Move Array functions to extensions.js since that is included by the harness. Add ES6 Array polyfills. * Animometer/resources/algorithm.js: (Array.prototype.swap): Moved to extensions.js. * Animometer/resources/extensions.js: (Array.prototype.swap): (Array.prototype.fill): Added. (Array.prototype.find): Added. Adjust styles for iPad. * Animometer/resources/runner/animometer.css: (@media screen and (min-device-width: 768px)): Apply to iPad as well. (@media screen and (max-device-width: 1024px)): Update width for iPads. Adjustment styles for iOS. * Animometer/developer.html: Different divs contain the iframe, so use a class instead and update the style rules. * Animometer/index.html: * Animometer/resources/debug-runner/animometer.css: Remove extraneous rules. (@media screen and (min-device-width: 1800px)): Move this up. * Animometer/resources/runner/animometer.css: Add rules to accomodate iOS. Get rid of prefixed flex properties for now. * Animometer/resources/debug-runner/animometer.css: * Animometer/resources/runner/animometer.css: Update the structure of the harness. Remove the JSON-per-test but keep the JSON of the whole test run. Use the full page in order to display the graph. * Animometer/developer.html: Update several of the JS file includes to UTF-8. Remove header and footer. Test results screen includes score, average, and worst 5% statistics. * Animometer/index.html: Make structure similar to developer.html. * Animometer/resources/debug-runner/animometer.css: Remove most of the button rules since they are superfluous. Move the progress bar to the top, fixed. Update the results page rules. * Animometer/resources/debug-runner/animometer.js: Remove most of the additions to sectionsManager since they are no longer needed. (setSectionHeader): Updates header of the section. (window.suitesManager._updateStartButtonState): Update selector. (showResults): Add keypress event for selecting different data for copy/paste. Update how the results are populated. Include full test JSON in a textarea, rather than requiring a button press. (showTestGraph): * Animometer/resources/debug-runner/tests.js: Update structure of Headers. Define different kinds of headers. Headers can control their title, and the text used as the cell contents, including class name. * Animometer/resources/extensions.js: (ResultsTable): Update to include a flattened version of the headers, used while populating table contents. Remove unneeded helper functions for creating the table. Rename "show" to "add". * Animometer/resources/runner/animometer.css: Update rules to accommodate the new structure. * Animometer/resources/runner/animometer.js: (window.sectionsManager.setSectionScore): Helper function to set the score and mean for a section. (window.sectionsManager.populateTable): Helper function to set the table. (window.benchmarkController.showResults): Refactor. (window.benchmarkController.selectResults): Update selectors. * Animometer/resources/runner/tests.js: Set Headers. Debug harness extends it. Update debug runner to have similar names to the basic runner. Include that page's CSS and remove extraneous CSS rules. Get rid of the statistics table #record. * Animometer/developer.html: Rename #home to #intro. Rename .spacer to hr. * Animometer/resources/debug-runner/animometer.css: Set to flexbox when selected. * Animometer/resources/debug-runner/animometer.js: Remove recordTable. (window.suitesManager._updateStartButtonState): Update selector to #intro. (setupRunningSectionStyle): Deleted. * Animometer/resources/runner/animometer.css: (#test-container.selected): Change to flex-box only when visible. Remove recordTable. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._runTestAndRecordResults): * Animometer/resources/runner/tests.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-canvas-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-images.js: * Animometer/tests/bouncing-particles/resources/bouncing-svg-shapes.js: * Animometer/tests/examples/resources/canvas-electrons.js: * Animometer/tests/examples/resources/canvas-stars.js: * Animometer/tests/misc/resources/compositing-transforms.js: * Animometer/tests/resources/main.js: * Animometer/tests/resources/stage.js: (StageBenchmark): Remove _recordTable. * Animometer/tests/simple/resources/simple-canvas-paths.js: * Animometer/tests/simple/resources/simple-canvas.js: * Animometer/tests/template/resources/template-canvas.js: * Animometer/tests/template/resources/template-css.js: * Animometer/tests/template/resources/template-svg.js: * Animometer/tests/text/resources/layering-text.js: * Animometer/resources/debug-runner/animometer.js: (willStartFirstIteration): Fix selector, since results-table is used in multiple places, so it cannot be an id. Make it possible to select the scores, or the whole table data, by cycling through different selections through key press of 's'. * Animometer/resources/runner/animometer.js: (window.benchmarkController.showResults): Attach a keypress handler if it hasn't been added already. (window.benchmarkController.selectResults): * Animometer/resources/runner/tests.js: Cycle through different ranges. Fix a few fly-by errors. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunnerState.prototype.prepareCurrentTest): Update the frame relative path since the files are now in the top directory instead of inside runner/. (BenchmarkRunner.prototype._runTestAndRecordResults): Incorrect reference to function. (BenchmarkRunner.prototype.step): Member variable is never used. A little stylistic cleanup. * Animometer/resources/debug-runner/benchmark-runner.js: * Animometer/resources/extensions.js: (window.DocumentExtension.createElement): * Animometer/tests/resources/main.js: (Benchmark.prototype.record): * Animometer/tests/resources/stage.js: (StageBenchmark.prototype.showResults): Reverse progress and message. The message appears less frequently than the progress. * Animometer/tests/simple/resources/simple-canvas.js: (SimpleCanvasBenchmark): Remove unused options. Add newer version of harness in a new page. Consolidate differences between the two pages. * Animometer/developer.html: Include runner/animometer.js. Rename the JS function to run the benchmark to startBenchmark() instead of startTest(). Rename #running to #test-container. * Animometer/index.html: Added. Similarly calls startBenchmark() and has #test-container. * Animometer/resources/debug-runner/animometer.css: Make the canvas 2:1 (1200px x 800px) instead of 4:3. Split out benchmarkRunnerClient and benchmarkController. * Animometer/resources/debug-runner/animometer.js: Move needed functions out of benchmarkRunnerClient, and leave the rest here to extend that object. Get rid of _resultsTable and move populating the results table into benchmarkController. Rename _resultsDashboard to results and make it accessible for other objects to use. (willAddTestFrame): This is unnecessary. Remove. (window.sectionsManager.showScore): Grab it from the results object instead of benchmarkRunnerClient. (window.sectionsManager.showSection): Deleted. Moved to runner/animometer.js. (window.benchmarkController._runBenchmark): Deleted. Mostly moved into _startBenchmark. (window.benchmarkController.startBenchmark): Refactor to call _startBenchmark. (window.benchmarkController.showResults): Include most of benchmarkRunnerClient.didFinishLastIteration() here. * Animometer/resources/debug-runner/benchmark-runner.js: (BenchmarkRunner.prototype._appendFrame): Remove unneeded call to willAddTestFrame. * Animometer/resources/extensions.js: (ResultsDashboard): Change the class to process the sampler data on-demand and hold onto that data for later referencing. (ResultsDashboard.prototype.toJSON): Deleted. (ResultsDashboard.prototype._processData): Rename toJSON to _processData since it's not really outputting JSON. Store the processed data into a member variable that can be referenced later. (ResultsDashboard.prototype.get data): Process the data if it hasn't already. (ResultsDashboard.prototype.get score): Process the data if it hasn't already, then return the aggregate score. (ResultsTable.prototype._showHeader): When outputting the results to a table, don't force the need for an empty children array. This was to allow for a header row in the table that spanned multiple columns. In the simpler harness, this is not needed. (ResultsTable.prototype._showEmptyCells): (ResultsTable.prototype._showTest): This hardcoded the columns. At least for the name and score, which is the bare minimum needed for the simpler harness, key off of the header name provided. * Animometer/resources/runner/animometer.css: Added. Use a similar 2:1 ratio. The score tables are split into the data and the headers, and are also displayed RTL so that a later patch allows a user to copy-paste the data easily. * Animometer/resources/runner/animometer.js: Added. Use a simpler version of benchmarkRunnerClient. The debug harness will extend these classes. (window.benchmarkController._startBenchmark): Used by both harnesses. (window.benchmarkController.startBenchmark): Set hard-coded options. (window.benchmarkController.showResults): Includes most of benchmarkRunnerClient.didFinishLastIteration() here. Get rid of utilities.js. Move it all into extensions.js. * Animometer/resources/extensions.js: * Animometer/tests/resources/utilities.js: Removed. * Animometer/tests/bouncing-particles/bouncing-canvas-images.html: Remove script link. * Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html: Ditto. * Animometer/tests/bouncing-particles/bouncing-css-images.html: Ditto. * Animometer/tests/bouncing-particles/bouncing-css-shapes.html: Ditto. * Animometer/tests/bouncing-particles/bouncing-svg-images.html: Ditto. * Animometer/tests/bouncing-particles/bouncing-svg-shapes.html: Ditto. * Animometer/tests/examples/canvas-electrons.html: Ditto. * Animometer/tests/examples/canvas-stars.html: Ditto. * Animometer/tests/misc/compositing-transforms.html: Ditto. * Animometer/tests/simple/simple-canvas-paths.html: Ditto. * Animometer/tests/template/template-canvas.html: Ditto. * Animometer/tests/template/template-css.html: Ditto. * Animometer/tests/template/template-svg.html: Ditto. * Animometer/tests/text/layering-text.html: Ditto. Split tests.js into two. Add a new suite to runner/tests.js. * Animometer/developer.html: Update the script order. Scripts from debug-runner/ will always build on those from runner/, and have the same name. * Animometer/resources/debug-runner/tests.js: Move "complex examples" suite into "miscellaneous tests". (Suite): Deleted. (Suite.prototype.prepare): Deleted. (Suite.prototype.run): Deleted. (suiteFromName): Deleted. * Animometer/resources/runner/tests.js: Added. Take definitions and functions needed by the test harness. Leave the test suites behind. (Suite): Moved from debug script. (Suite.prototype.prepare): Ditto. (Suite.prototype.run): Ditto. (suiteFromName): Ditto. (testFromName): Ditto. Move benchmark resources out into resources/debug-runner, and update URLs. * Animometer/developer.html: Renamed from PerformanceTests/Animometer/runner/animometer.html. * Animometer/resources/debug-runner/animometer.css: Renamed from PerformanceTests/Animometer/runner/resources/animometer.css. * Animometer/resources/debug-runner/animometer.js: Renamed from PerformanceTests/Animometer/runner/resources/animometer.js. * Animometer/resources/debug-runner/benchmark-runner.js: Renamed from PerformanceTests/Animometer/runner/resources/benchmark-runner.js. * Animometer/resources/debug-runner/d3.min.js: Renamed from PerformanceTests/Animometer/runner/resources/d3.min.js. * Animometer/resources/debug-runner/graph.js: Renamed from PerformanceTests/Animometer/runner/resources/graph.js. * Animometer/resources/debug-runner/tests.js: Renamed from PerformanceTests/Animometer/runner/resources/tests.js. 2015-12-11 Jon Lee Improve Animometer on iOS https://bugs.webkit.org/show_bug.cgi?id=152180 Reviewed by Simon Fraser. Improve experience on phones. Make the canvas take up the whole screen. * Animometer/runner/animometer.html: Add meta viewport. Remove the container div. * Animometer/runner/resources/animometer.css: Have buttons lay out vertically. Update detail arrow glyph. Make the suites and options section lay out vertically. Remove the top spacers since we want the canvas to take over the whole screen. Minimal display is recommended for use. 2015-12-07 Jon Lee Update suites for benchmark https://bugs.webkit.org/show_bug.cgi?id=151957 Reviewed by Simon Fraser. * Animometer/runner/animometer.html: Use spacers instead of relying on justify-content center to center the content. That allows the opening screen to grow downward when expanding the list of choices, otherwise it expands from the center, and off the top edge of the screen. * Animometer/runner/resources/animometer.css: (.tree): Don't overflow scroll. (.tree > li > label.tree-label:before): Use better glyphs. (.tree > li > :checked ~ label.tree-label:before): (main): Using flex-start for justify-content so that if the section grows too big it gets pinned to the top edge of the document instead of growing past it. (.spacer): Make the spacers have a minimum 20px and grow evenly. (section#home): Add a min-height so that the border will expand if the suite tests shown make the section grow past the height. * Animometer/runner/resources/animometer.js: Update the selectors. (window.suitesManager._treeElement): (window.suitesManager._suitesElements): (window.suitesManager._editsElements): 2015-12-07 Jon Lee Update options for benchmark https://bugs.webkit.org/show_bug.cgi?id=151956 Reviewed by Simon Fraser. Move "Fix test complexity" and "Adaptive" checkboxes into a radio group. Move "Show running results" into a radio group, and add options to remove the HUD. * Animometer/runner/animometer.html: Get rid of the preamble. Wrap the options in a form for easier referencing in JS. * Animometer/runner/resources/animometer.css: Show the surrounding border if the body's display-minimal class name is set. * Animometer/runner/resources/animometer.js: Update the way optionsManager gets and sets default values. Include support for radio groups. (window.optionsManager.valueForOption): (window.optionsManager.updateUIFromLocalStorage): (window.optionsManager.updateLocalStorageFromUI): (window.benchmarkRunnerClient.willStartFirstIteration): (window.sectionsManager.setupRunningSectionStyle): (window.suitesManager._treeElement): Fly-by whitespace fix. (window.suitesManager._suitesElements): Ditto. (window.suitesManager.updateEditsElementsState): Update options check. (window.suitesManager.updateDisplay): Add a new update function for the HUD. Attach a class to the body depending on the user's choice. (window.benchmarkController.initialize): Add an event listener when the form radio buttons update. (window.benchmarkController.onFormChanged): (window.optionsManager._optionsElements): Deleted. (window.optionsManager._adaptiveTestElement): Deleted. (window.benchmarkController.onChangeAdaptiveTestCheckbox): Deleted. * Animometer/tests/resources/main.js: (Benchmark.prototype.update): Update options checks. * Animometer/tests/resources/stage.js: Update option check. (StageBenchmark.prototype.showResults): 2015-12-01 Simon Fraser Add a basic compositing Animometer test https://bugs.webkit.org/show_bug.cgi?id=151724 Reviewed by Dean Jackson. Add a "bouncing particles" test that moves composited layers around, optionally with a filter. This is added under a new "Miscellaneous" category. Remove the test templates category from the UI. * Animometer/runner/resources/tests.js: * Animometer/tests/bouncing-particles/resources/bouncing-css-shapes.js: (BouncingCssShape.prototype.animate): * Animometer/tests/misc/compositing-transforms.html: Added. * Animometer/tests/misc/resources/compositing-transforms.js: Added. (BouncingCompositedImage): (BouncingCompositedImage.prototype._move): (BouncingCompositedImage.prototype.animate): (CompositingTransformsStage): (CompositingTransformsStage.prototype.createParticle): (CompositingTransformsStage.prototype.particleWillBeRemoved): (CompositedTransformsBenchmark): (CompositedTransformsBenchmark.prototype.createStage): (window.benchmarkClient.create): 2015-11-30 Said Abou-Hallawa Fix the graphics benchmark complexity bounds adjustment https://bugs.webkit.org/show_bug.cgi?id=151670 Reviewed by Simon Fraser. Make sure the graphics benchmark complexity bounds adjustment is applied to the absolute lower bound. * Animometer/tests/resources/math.js: (PIDController.prototype._saturate): 2015-11-30 Said Abou-Hallawa Add an option to select the results form the graphics benchmark https://bugs.webkit.org/show_bug.cgi?id=151666 Reviewed by Ryosuke Niwa. We need an easy way to select the graphics benchmark results table such that when it is copied to the clipboard, rich text format is set to the clipboard. * Animometer/runner/animometer.html: Add a new button to select the results table or JSON. * Animometer/runner/resources/animometer.js: (window.sectionsManager._sectionDataElement): Selects the container element. (window.sectionsManager._sectionDataDivElement): Replace a literal string with a string table entry. (window.sectionsManager.showTestName): Replace a literal string with a string table entry. (window.sectionsManager.selectData): Selects the container element in a selection. (window.sectionsManager.selectDataContents): Select the contents of container element in a selection. (window.benchmarkController.selectResults): Selects the results table. (window.benchmarkController.showJSON): Function rename. (window.benchmarkController.selectJSON): Selects the contents of the results JSON. (window.benchmarkController.showJson): Deleted. 2015-11-20 Simon Fraser Animometer: graphs should not do interpolation https://bugs.webkit.org/show_bug.cgi?id=151526 Reviewed by Simon Fraser. Having the graphs do interpolation is misleading, because you can't see the actual data. Also remove "shape-rendering: crispEdges;" so the lines get antialiased. * Animometer/runner/resources/animometer.css: (section#test-graph > data > svg): Deleted. * Animometer/runner/resources/graph.js: (graph): Deleted. 2015-11-19 Said Abou-Hallawa Calculate the graphics benchmark test gain adaptively https://bugs.webkit.org/show_bug.cgi?id=151208 Reviewed by Darin Adler. We need to calculate the gain of the graphics benchmark tests adaptively and get rid of the gain and limits parameters we have to choose manually for every test. We are going to use the classic Ziegler–Nichols method for calculating the gain and integral and derivative times. We are going to try moving on a cubic curve during the manual stage from y0 to reach ysp. We also going to use a saturation actuator to ensure the system does not fluctuate. * Animometer/resources/extensions.js: (ResultsTable.prototype._isNoisyMeasurement): Fix a parameter name. (ResultsTable.prototype._isNoisyTest): Since score is a member of testResults, we need to limit our search to frame rate and complexity. (ResultsTable.prototype._showTest): Pass the correct parameter to _isNoisyMeasurement(). * Animometer/resources/strings.js: Fix the indentation and name and value of a string. * Animometer/runner/resources/tests.js: Remove all the manual gains and limits parameters which had to be passed to every test. * Animometer/tests/resources/main.js: (BenchmarkState.prototype.currentStage): Fix an enum name. (Benchmark): Get rid of manual gain and limits. (Benchmark.prototype.update): Simplify the calculation by having all the times in ms. * Animometer/tests/resources/math.js: (PIDController): Get rid of the manual gain and limits and the magic numbers for Ti and Td. (PIDController.prototype._yPosition): Tells whether the test current output is moving towards the set-point or away from it. (PIDController.prototype._distanceUltimate): Calculates the ultimate distance from y0 after time t using a cubic formula. (PIDController.prototype._distance): Calculates the distance of y relative to y0. (PIDController.prototype._gainIncrement): Decides how much the proportional gain should be increased during the manual gain stage. (PIDController.prototype._updateStage): Updates the stage of the controller based on its current stage and the system output. (PIDController.prototype._tuneP): Tunes the system before calculating the PID controller gains. (PIDController.prototype._tunePID): PID tuning function. (PIDController.prototype._tune): (PIDController.prototype._saturate): (PIDController.prototype.tune): Manages calculating the controller parameters. It then returns a PID tuning value. (PIDController.prototype._sat): Deleted. We may need to return it back but the limits have to be calculated adaptively not manually. 2015-11-17 Said Abou-Hallawa Reorganize the graphics benchmark string table https://bugs.webkit.org/show_bug.cgi?id=151334 Reviewed by Simon Fraser. Make the graphics benchmark string table be an object of sub-objects. Each sub-object represents an associative array, the key is the string name and the value is the string data. * Animometer/resources/extensions.js: (ResultsDashboard.prototype.toJSON): (ResultsTable.prototype._showGraph): (ResultsTable.prototype._showJSON): (ResultsTable.prototype._isNoisyMeasurement): (ResultsTable.prototype._isNoisyTest): (ResultsTable.prototype._showTest): (ResultsTable.prototype._showSuite): (ResultsTable.prototype._showIteration): * Animometer/resources/sampler.js: (Sampler.prototype.toJSON): * Animometer/resources/strings.js: * Animometer/runner/resources/animometer.js: (window.benchmarkRunnerClient.didFinishLastIteration): (window.suitesManager.updateLocalStorageFromJSON): (window.benchmarkController.showResults): (window.benchmarkController.showJson): (window.benchmarkController.showTestGraph): (window.benchmarkController.showTestJSON): * Animometer/runner/resources/tests.js: * Animometer/tests/resources/main.js: 2015-11-17 Said Abou-Hallawa Disable flattening the stage iframe of the graphics benchmark when running on iOS https://bugs.webkit.org/show_bug.cgi?id=151361 Reviewed by Simon Fraser. Use fixed size for stage iframe of the graphics benchmark to disable flattening the iframe while animating the particles. Also ensure the bouncing particles do not go outside the iframe's boundaries. * Animometer/runner/resources/animometer.css: (section#running > #running-test > iframe): (@media screen and (min-device-width: 1800px)): * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: (BouncingParticle.prototype.animate): 2015-11-17 Said Abou-Hallawa Use the media queries to dynamically set the stage for the graphics benchmark https://bugs.webkit.org/show_bug.cgi?id=151327 Reviewed by Simon Fraser. Clean setting the benchmark css rules by using the media queries. Accessing document.stylesheets.cssRules seems to be unreliable. Fix the test harness load event listener invocation. And also remove the options for normalizing the stage resolution for retina display. * Animometer/resources/extensions.js: (window.DocumentExtension.insertCssRuleAfter): Deleted. * Animometer/runner/animometer.html: * Animometer/runner/resources/animometer.css: (@media screen and (min-device-width: 1800px)): * Animometer/runner/resources/animometer.js: (window.sectionsManager.setupRunningSectionStyle): (window.benchmarkController.initialize): (window.sectionsManager.setupSectionStyle): Deleted. * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: (BouncingParticlesStage): * Animometer/tests/text/layering-text.html: * Animometer/tests/text/resources/layering-text.js: (LayeringTextStage): (LayeringTextStage.prototype._setFontSize): Deleted. 2015-11-16 Said Abou-Hallawa Remove the option for animating using setInterval from the graphics benchmark https://bugs.webkit.org/show_bug.cgi?id=151283 Reviewed by Darin Adler. Get rid of the option to run animation using setInterval(). * Animometer/tests/resources/main.js: (Animator.prototype.animate): (Benchmark): (Benchmark.prototype.start): (Animator.prototype.start): Deleted. 2015-11-16 Said Abou-Hallawa Highlight the alarming test results in the graphics benchmark results page https://bugs.webkit.org/show_bug.cgi?id=151286 Reviewed by Simon Fraser. When showing the results of a test in the graphics benchmark the following criteria is going to be applied: 1. If the standard deviation of the test complexity or the frame rate is equal to or more than 10%, the standard deviation and the test name will be displayed in red. 2. If the average frame rate is not in the range = [(desired_frame_rate - 2) .. (desired_frame_rate + 2)], the average frame rate and the test name will be displayed in red. * Animometer/resources/extensions.js: (ResultsTable.prototype._showHeaderRow): (ResultsTable.prototype._showHeader): (ResultsTable.prototype._showEmptyCell): (ResultsTable.prototype._showText): (ResultsTable.prototype._showFixedNumber): (ResultsTable.prototype.): (ResultsTable.prototype._showGraph): (ResultsTable.prototype._showJSON): (ResultsTable.prototype._isAlarmingMeasurement): (ResultsTable.prototype._isAlarmingTestResults): (ResultsTable.prototype._showEmptyCells): (ResultsTable.prototype._showEmptyRow): (ResultsTable.prototype._showTest): (ResultsTable.prototype._showSuite): (ResultsTable.prototype._showIteration): (ResultsTable.prototype.showRecord): (ResultsTable.prototype.showIterations): (ResultsTable.prototype._showEmpty): Deleted. * Animometer/runner/resources/animometer.js: (window.benchmarkRunnerClient.didFinishLastIteration): * Animometer/tests/resources/stage.js: (StageBenchmark.prototype.showResults): 2015-11-16 Said Abou-Hallawa Clean referencing the options object in the graphics benchmark https://bugs.webkit.org/show_bug.cgi?id=151284 Reviewed by Simon Fraser. Get rid of the Benchmark.options member and rely only on the private member Benchmark._options. The animator need to have its own options member instead of accessing it from its reference to Benchmark object. * Animometer/tests/bouncing-particles/resources/bouncing-canvas-particles.js: (BouncingCanvasParticlesAnimator): (BouncingCanvasParticlesBenchmark.prototype.createAnimator): * Animometer/tests/bouncing-particles/resources/bouncing-particles.js: (BouncingParticle.prototype.animate): (BouncingParticlesAnimator): (BouncingParticlesBenchmark.prototype.createAnimator): * Animometer/tests/examples/resources/canvas-electrons.js: (CanvasElectronsStage.prototype.animate): (CanvasElectronsAnimator): (CanvasElectronsBenchmark.prototype.createAnimator): (window.benchmarkClient.create): * Animometer/tests/examples/resources/canvas-stars.js: (CanvasStarsStage.prototype.animate): (CanvasStarsAnimator): (CanvasStarsBenchmark.prototype.createAnimator): (window.benchmarkClient.create): * Animometer/tests/resources/main.js: (BenchmarkState.prototype.currentProgress): (Animator): (Animator.prototype.animate): (Benchmark): (Benchmark.prototype.update): * Animometer/tests/resources/stage.js: (Stage.prototype.clear): (StageAnimator): (StageBenchmark.prototype.createAnimator): (StageBenchmark.prototype.tune): (StageBenchmark.prototype.showResults): * Animometer/tests/simple/resources/simple-canvas.js: (SimpleCanvasStage.prototype.animate): (SimpleCanvasAnimator): (SimpleCanvasAnimator.prototype.animate): (SimpleCanvasBenchmark.prototype.createAnimator): * Animometer/tests/template/resources/template-canvas.js: (TemplateCanvasStage.prototype.animate): (TemplateCanvasBenchmark.prototype.createAnimator): (window.benchmarkClient.create): 2015-11-13 Said Abou-Hallawa Eliminate a request for layout every time an item is added to the stage of the graphics benchmark https://bugs.webkit.org/show_bug.cgi?id=151289 Reviewed by Simon Fraser. Cache the stage size when it is created instead of requesting every time an object is added via clientWidth and clientHeight. * Animometer/resources/extensions.js: (Insets.elementPadding): * Animometer/tests/resources/stage.js: (Stage): (Stage.prototype.get size): 2015-11-06 Said Abou-Hallawa Initialize the graphics benchmark's Kalman filter with estimated 60 FPS https://bugs.webkit.org/show_bug.cgi?id=150965 Reviewed by Darin Adler. This should give the benchmark more accurate reading at warmup time. And hence we can safely reduce the test running time to be 10 seconds. * Animometer/runner/animometer.html: Add "defer" back when loading resources/animometer.js since this script depends on many other scripts and we need to wait till the page is parsed. Also change the default test interval to be 10 seconds. * Animometer/runner/resources/graph.js: (graph): Make the test results curves smoother. * Animometer/tests/resources/main.js: (Animator): Initialize the Kalman filter with 60 FPS which should be true if the test page is empty. (Animator.prototype.animate): * Animometer/tests/resources/math.js: (KalmanEstimator): Fix the initial value of _vecX_est. _vecX_est[0] = current FPS (= 60FPS when the test page is empty) _vecX_est[1] = first time derivative of FPS (=0; FPS has been constant). _vecX_est[2] = second time derivative of FPS (=0; since _vecX_est[1]=0). (KalmanEstimator.prototype.estimate): Add some comments. 2015-11-04 Said Abou-Hallawa Remove "defer" from the scripts' references in the graphics benchmark home page https://bugs.webkit.org/show_bug.cgi?id=150915 Reviewed by Simon Fraser. It causes the benchmark to be very flakey. * Animometer/runner/animometer.html: 2015-11-01 Said Abou-Hallawa Add an option to make the graphics benchmark runs a specific test with fixed complexity https://bugs.webkit.org/show_bug.cgi?id=150529 Reviewed by Darin Adler. Beside each test in the suites tree, we are going to show the complexity arithmetic mean of the of the last run in an edit control. Based on a new option these edit controls will all be visible or hidden. If they are visible their values can be changed. The benchmark runner if it run in the non-adaptive mode will set the complexity of the test to the passed value and will not change it ever. The animator will animate the test and frame rate will also be measured. * Animometer/runner/animometer.html: Add a new option for the non-adaptive mode. * Animometer/runner/resources/animometer.css: (section#home input[type="number"]): Define the width of all the edit control in the section. (section#home > suites input[type="number"]): The edit controls in the box will be right aligned and hidden by default. (section#home > suites input[type="number"].selected): When the class "selected" is added, the edit controls will be visible. (section#home > options > label > input[type="number"]): Deleted. * Animometer/runner/resources/animometer.js: (window.benchmarkRunnerClient.didFinishLastIteration): Update the local storage with the results of each test. (window.optionsManager._adaptiveTestElement): Returns the checkbox for setting the adaptive test option. (window.suitesManager._editElement): Returns the edit element associated with each test element in the suites tree. (window.suitesManager._editsElements): Returns a list of all the elements in the box. (window.suitesManager._localStorageNameForTest): Change this function to take strings. (window.suitesManager._createTestElement): Adds an edit control beside each test. (window.suitesManager.updateEditsElementsState): Adds/Removes the 'selected' class to/from all the tests edit elements. (window.suitesManager.updateUIFromLocalStorage): Reads the edit control value from the local storage. (window.suitesManager.updateLocalStorageFromUI): Saves the edit control value to the local storage. (window.suitesManager.updateLocalStorageFromJSON): Saves the last run results to the local storage. (window.benchmarkController.initialize): Shows/Hides the test edit controls based on the adaptive test option. (window.benchmarkController.onChangeAdaptiveTestCheckbox): An onchange event handler for the adaptive test checkbox. * Animometer/tests/resources/main.js: (Benchmark.prototype.update): Fix the complexity of the test if the running mode is non-adaptive test and desired complexity is not zero. (window.runBenchmark): Add the test complexity as a new benchmark option. 2015-11-01 Said Abou-Hallawa Make the size of the benchmark canvas adaptive to the screen size and screen resolution https://bugs.webkit.org/show_bug.cgi?id=150530 Reviewed by Darin Adler. We want to set the size of the benchmark stage dynamically such that it depends on the screen resolution and the device scale factor. This patch does more than that because the home page css was not done properly. To use the flex box layout, the animometer.css has to be rewritten almost from scratch. The suites tree has to be rewritten also because it was not collapsing and with the flex box layout it was going outside of the window area. The options handling and the local storage handling had to be rewritten to allow more flexibility with this patch and the future patches. The code in animometer.js was reorganized into objects to allow distributing the code nicely among separate entities. * Animometer/resources/extensions.js: (Point.elementClientSize): Returns the client size of an HTMLElement as a Point object. (Insets.prototype.get width): Follow the function opening brace style guidelines. (Insets.prototype.get height): (Insets.prototype.get size): Returns the size of an Insets as a Point object. (window.DocumentExtension): Provides document helper functions. It should be assailable from the runner and the tests. (window.DocumentExtension.createElement): Creates an HTMLElement given its name, attributes and parentElement. (window.DocumentExtension.createSvgElement): Creates an SVGElement given its name, attributes and parentElement (moved from utilities.js). (window.DocumentExtension.insertCssRuleAfter): Inserts a CSS rule after an exiting rule given its text. (ResultsTable.prototype._showHeader): Use DocumentExtension functions. (ResultsTable.prototype._showGraph): Use DocumentExtension functions and create a real button for "Graph..." option. (ResultsTable.prototype._showJSON): Use DocumentExtension functions and create a real button for "JSON..." option. (Options): Deleted. * Animometer/runner/animometer.html: Restructure the page to use the flex box layout. * Animometer/runner/resources/animometer.css: (html,body): (button): (button.large-button):The large button appears in the animometer.html. (button.large-button:active): (button.large-button:disabled): (button.small-button): The small button appears in the results table. (button.small-button:active): (.tree): The tree class is used to list the suites and their tests. (.tree .expand-button): This button expands a tree element. (.tree .expand-button ~ ul): Hide the children (
    ...
) of a parent node by default. (.tree .expand-button:checked ~ ul): Show the children of a parent node only when checked. (.tree ul): Hide the list bullets. (.tree li): Indent every node in the tree relative to its parent. (.tree ul li): Indent all the non top level nodes only (the tests nodes in our case). (.tree > li:last-child): Do not indent the bottom of the last child node. (.tree-label): Style for all the labels in the tree. (label.tree-label): Style for the labels in the top level only (the suites nodes in our case). (label.tree-label:before): Style the unchecked case of the expand-button. (:checked ~ label.tree-label:before): Style the checked case of the expand-button. (table.results-table): The results table appears while running the test and at the end. (.results-table td): (.results-table th): (div.results-json): The JSON div appears per test or for the whole run. (main): This is the flex box container. (section): A section is displayed exclusively inside the
. It is hidden by default. (section.selected): When it is selected, its layout is flex layout. (section > footer): The header or the footer of a section should not take more than 15% of the container. (section#home): The home section has and parts to be laid out in the middle. (section#home > options): (section#home > suites): The should not take more than 40% of the width. (section#home > options > label): The benchmark title. (section#home > header > h2): The benchmark title. (section#home > options > label > input[type="number"]): Sets the width of the option edit control. (section#running): The running section contain the runner