v8/test
Ng Zhi An b0209cc1ee Use array.every instead of iterating using for loop
This speeds up the check by ~10x.

This was tested by writing a simple test that compares a for-loop and
array.every():

for (var i = 0; i < kMemSize; i++) {
      assertEquals(0, array[i]);
}

assertTrue(array.every((e => e == 0)));

The for-loop takes ~180s, every() takes ~19s.

Numbers above are for arm.debug build (simulator). On x64.debug builds
we can see a similar 10x improvement, from ~6s to ~400ms.

Bug: v8:7783
Bug: v8:9396
Change-Id: I83d46c7ec4a634612032c1d79585339cadb8b641
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1793904
Commit-Queue: Zhi An Ng <zhin@chromium.org>
Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#63691}
2019-09-11 16:59:15 +00:00
..
benchmarks [test] Skip flaky test on predictable mode 2019-05-07 13:57:18 +00:00
cctest [top-level-await] Implement top-level-await in V8 2019-09-11 15:28:24 +00:00
common Replace base::make_unique by std::make_unique 2019-09-10 11:21:51 +00:00
debugger Add test for debug evaluating a previously non-whitelisted variable 2019-09-11 09:45:33 +00:00
fuzzer Replace base::make_unique by std::make_unique 2019-09-10 11:21:51 +00:00
inspector [wasm] Async-ify wasm-stepping test 2019-09-09 13:03:02 +00:00
intl Remove CHECK which fail while the locale is long. 2019-09-10 19:28:54 +00:00
js-perf-test [jsperf] Add benchmark for LoadConstantFromPrototype 2019-08-16 09:33:06 +00:00
memory [owners] Remove redundant OWNERS files in test/ 2019-06-24 12:44:32 +00:00
message Reland "[destructuring] Elide coercible check for simple keys" 2019-08-30 10:51:49 +00:00
mjsunit Use array.every instead of iterating using for loop 2019-09-11 16:59:15 +00:00
mkgrokdump [tools] Teach v8_debug_helper where heap spaces start in ptr-compr mode 2019-09-09 16:14:12 +00:00
mozilla [CSA] TNodify the rest of the member variables in interpreter assembler 2019-09-05 11:49:59 +00:00
preparser Add OWNERS files for src and test 2019-05-30 04:51:21 +00:00
test262 [class] Fix private name scope chain 2019-09-06 00:52:07 +00:00
torque [torque] Add HeapSlice location references to Torque 2019-08-30 11:51:32 +00:00
unittests Remove always-on flag --experimental_inline_promise_constructor 2019-09-11 13:17:22 +00:00
wasm-api-tests [wasm-c-api] Roll bf31edf: Fix life times of host info 2019-08-26 14:28:51 +00:00
wasm-js Reland [wasm] Stage wasm-bigint 2019-09-05 12:02:19 +00:00
wasm-spec-tests Reland [wasm] Stage wasm-bigint 2019-09-05 12:02:19 +00:00
webkit [regexp] Add missing case for EscapeRegExpPattern 2019-07-09 08:11:51 +00:00
BUILD.gn [wasm-c-api] Add tests and fixes 2019-05-28 09:57:04 +00:00
OWNERS Use relative paths to OWNERS files 2019-08-12 13:52:52 +00:00