├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitpod.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── CheckPythonModuleExists.cmake ├── GenerateBuiltinsList.cmake └── MSVC.cmake ├── patches ├── 0001-Patch-v8-third_party-inspector_protocol-code_generat.patch └── fix_gcc_build.patch ├── update_v8.json ├── update_v8.py └── v8 ├── .bazelrc ├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .flake8 ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── mistaken-pull-closer.yml ├── .gitignore ├── .gn ├── .mailmap ├── .style.yapf ├── .vpython3 ├── .ycm_extra_conf.py ├── AUTHORS ├── BUILD.bazel ├── BUILD.gn ├── CODE_OF_CONDUCT.md ├── COMMON_OWNERS ├── DEPS ├── DIR_METADATA ├── ENG_REVIEW_OWNERS ├── INFRA_OWNERS ├── INTL_OWNERS ├── LICENSE ├── LICENSE.fdlibm ├── LICENSE.strongtalk ├── LICENSE.v8 ├── LOONG_OWNERS ├── MIPS_OWNERS ├── OWNERS ├── PPC_OWNERS ├── PRESUBMIT.py ├── README.md ├── RISCV_OWNERS ├── S390_OWNERS ├── WATCHLISTS ├── WORKSPACE ├── base └── trace_event │ └── common │ └── trace_event_common.h ├── bazel ├── BUILD.icu ├── BUILD.trace_event_common ├── OWNERS ├── config │ ├── BUILD.bazel │ └── v8-target-cpu.bzl ├── defs.bzl ├── requirements.in ├── requirements.txt └── v8-non-pointer-compression.bzl ├── build_overrides ├── OWNERS ├── build.gni └── gtest.gni ├── codereview.settings ├── custom_deps ├── .gitignore ├── OWNERS └── README.md ├── docs ├── OWNERS └── README.md ├── gni ├── Info.plist ├── OWNERS ├── proto_library.gni ├── protoc.py ├── release_branch_toggle.gni ├── snapshot_toolchain.gni ├── split_static_library.gni ├── v8.cml └── v8.gni ├── include ├── APIDesign.md ├── DEPS ├── DIR_METADATA ├── OWNERS ├── cppgc │ ├── DEPS │ ├── OWNERS │ ├── README.md │ ├── allocation.h │ ├── common.h │ ├── cross-thread-persistent.h │ ├── custom-space.h │ ├── default-platform.h │ ├── ephemeron-pair.h │ ├── explicit-management.h │ ├── garbage-collected.h │ ├── heap-consistency.h │ ├── heap-handle.h │ ├── heap-state.h │ ├── heap-statistics.h │ ├── heap.h │ ├── internal │ │ ├── api-constants.h │ │ ├── atomic-entry-flag.h │ │ ├── base-page-handle.h │ │ ├── caged-heap-local-data.h │ │ ├── caged-heap.h │ │ ├── compiler-specific.h │ │ ├── finalizer-trait.h │ │ ├── gc-info.h │ │ ├── logging.h │ │ ├── member-storage.h │ │ ├── name-trait.h │ │ ├── persistent-node.h │ │ ├── pointer-policies.h │ │ └── write-barrier.h │ ├── liveness-broker.h │ ├── macros.h │ ├── member.h │ ├── name-provider.h │ ├── object-size-trait.h │ ├── persistent.h │ ├── platform.h │ ├── prefinalizer.h │ ├── process-heap-statistics.h │ ├── sentinel-pointer.h │ ├── source-location.h │ ├── testing.h │ ├── trace-trait.h │ ├── type-traits.h │ └── visitor.h ├── js_protocol-1.2.json ├── js_protocol-1.3.json ├── js_protocol.pdl ├── libplatform │ ├── DEPS │ ├── libplatform-export.h │ ├── libplatform.h │ └── v8-tracing.h ├── v8-array-buffer.h ├── v8-callbacks.h ├── v8-container.h ├── v8-context.h ├── v8-cppgc.h ├── v8-data.h ├── v8-date.h ├── v8-debug.h ├── v8-embedder-heap.h ├── v8-embedder-state-scope.h ├── v8-exception.h ├── v8-extension.h ├── v8-external.h ├── v8-fast-api-calls.h ├── v8-forward.h ├── v8-function-callback.h ├── v8-function.h ├── v8-handle-base.h ├── v8-initialization.h ├── v8-inspector-protocol.h ├── v8-inspector.h ├── v8-internal.h ├── v8-isolate.h ├── v8-json.h ├── v8-local-handle.h ├── v8-locker.h ├── v8-maybe.h ├── v8-memory-span.h ├── v8-message.h ├── v8-metrics.h ├── v8-microtask-queue.h ├── v8-microtask.h ├── v8-object.h ├── v8-persistent-handle.h ├── v8-platform.h ├── v8-primitive-object.h ├── v8-primitive.h ├── v8-profiler.h ├── v8-promise.h ├── v8-proxy.h ├── v8-regexp.h ├── v8-script.h ├── v8-snapshot.h ├── v8-source-location.h ├── v8-statistics.h ├── v8-template.h ├── v8-traced-handle.h ├── v8-typed-array.h ├── v8-unwinder-state.h ├── v8-unwinder.h ├── v8-util.h ├── v8-value-serializer-version.h ├── v8-value-serializer.h ├── v8-value.h ├── v8-version-string.h ├── v8-version.h ├── v8-wasm-trap-handler-posix.h ├── v8-wasm-trap-handler-win.h ├── v8-wasm.h ├── v8-weak-callback-info.h ├── v8.h └── v8config.h ├── infra ├── OWNERS ├── README.md ├── mb │ ├── PRESUBMIT.py │ ├── gn_isolate_map.pyl │ └── mb_config.pyl ├── playground │ ├── OWNERS │ └── README.md └── testing │ ├── PRESUBMIT.py │ ├── README.md │ └── builders.pyl ├── samples ├── OWNERS ├── count-hosts.js ├── cppgc │ ├── OWNERS │ └── hello-world.cc ├── hello-world.cc ├── process.cc └── shell.cc ├── src ├── DEPS ├── DIR_METADATA ├── OWNERS ├── api │ ├── DIR_METADATA │ ├── OWNERS │ ├── api-arguments-inl.h │ ├── api-arguments.cc │ ├── api-arguments.h │ ├── api-inl.h │ ├── api-macros-undef.h │ ├── api-macros.h │ ├── api-natives.cc │ ├── api-natives.h │ ├── api.cc │ └── api.h ├── asmjs │ ├── DIR_METADATA │ ├── OWNERS │ ├── asm-js.cc │ ├── asm-js.h │ ├── asm-names.h │ ├── asm-parser.cc │ ├── asm-parser.h │ ├── asm-scanner.cc │ ├── asm-scanner.h │ ├── asm-types.cc │ └── asm-types.h ├── ast │ ├── DIR_METADATA │ ├── OWNERS │ ├── ast-function-literal-id-reindexer.cc │ ├── ast-function-literal-id-reindexer.h │ ├── ast-source-ranges.h │ ├── ast-traversal-visitor.h │ ├── ast-value-factory.cc │ ├── ast-value-factory.h │ ├── ast.cc │ ├── ast.h │ ├── modules.cc │ ├── modules.h │ ├── prettyprinter.cc │ ├── prettyprinter.h │ ├── scopes.cc │ ├── scopes.h │ ├── source-range-ast-visitor.cc │ ├── source-range-ast-visitor.h │ ├── variables.cc │ └── variables.h ├── base │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── address-region.h │ ├── atomic-utils.h │ ├── atomicops.h │ ├── base-export.h │ ├── bit-field.h │ ├── bits-iterator.h │ ├── bits.cc │ ├── bits.h │ ├── bounded-page-allocator.cc │ ├── bounded-page-allocator.h │ ├── bounds.h │ ├── build_config.h │ ├── compiler-specific.h │ ├── container-utils.h │ ├── contextual.h │ ├── cpu.cc │ ├── cpu.h │ ├── debug │ │ ├── stack_trace.cc │ │ ├── stack_trace.h │ │ ├── stack_trace_android.cc │ │ ├── stack_trace_fuchsia.cc │ │ ├── stack_trace_posix.cc │ │ └── stack_trace_win.cc │ ├── discriminated-union.h │ ├── division-by-constant.cc │ ├── division-by-constant.h │ ├── emulated-virtual-address-subspace.cc │ ├── emulated-virtual-address-subspace.h │ ├── enum-set.h │ ├── export-template.h │ ├── file-utils.cc │ ├── file-utils.h │ ├── flags.h │ ├── free_deleter.h │ ├── functional.h │ ├── hashmap-entry.h │ ├── hashmap.h │ ├── ieee754.cc │ ├── ieee754.h │ ├── immediate-crash.h │ ├── ios-headers.h │ ├── iterator.h │ ├── lazy-instance.h │ ├── logging.cc │ ├── logging.h │ ├── macros.h │ ├── memory.h │ ├── numbers │ │ ├── bignum-dtoa.cc │ │ ├── bignum-dtoa.h │ │ ├── bignum.cc │ │ ├── bignum.h │ │ ├── cached-powers.cc │ │ ├── cached-powers.h │ │ ├── diy-fp.cc │ │ ├── diy-fp.h │ │ ├── double.h │ │ ├── dtoa.cc │ │ ├── dtoa.h │ │ ├── fast-dtoa.cc │ │ ├── fast-dtoa.h │ │ ├── fixed-dtoa.cc │ │ ├── fixed-dtoa.h │ │ ├── strtod.cc │ │ └── strtod.h │ ├── once.cc │ ├── once.h │ ├── optional.h │ ├── overflowing-math.h │ ├── page-allocator.cc │ ├── page-allocator.h │ ├── platform │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── condition-variable.cc │ │ ├── condition-variable.h │ │ ├── elapsed-timer.h │ │ ├── memory-protection-key.cc │ │ ├── memory-protection-key.h │ │ ├── memory.h │ │ ├── mutex.cc │ │ ├── mutex.h │ │ ├── platform-aix.cc │ │ ├── platform-cygwin.cc │ │ ├── platform-darwin.cc │ │ ├── platform-freebsd.cc │ │ ├── platform-fuchsia.cc │ │ ├── platform-ios.cc │ │ ├── platform-linux.cc │ │ ├── platform-linux.h │ │ ├── platform-openbsd.cc │ │ ├── platform-posix-time.cc │ │ ├── platform-posix-time.h │ │ ├── platform-posix.cc │ │ ├── platform-posix.h │ │ ├── platform-qnx.cc │ │ ├── platform-solaris.cc │ │ ├── platform-starboard.cc │ │ ├── platform-win32.cc │ │ ├── platform-win32.h │ │ ├── platform.cc │ │ ├── platform.h │ │ ├── semaphore.cc │ │ ├── semaphore.h │ │ ├── time.cc │ │ ├── time.h │ │ ├── wrappers.h │ │ └── yield-processor.h │ ├── pointer-with-payload.h │ ├── qnx-math.h │ ├── region-allocator.cc │ ├── region-allocator.h │ ├── ring-buffer.h │ ├── safe_conversions.h │ ├── safe_conversions_arm_impl.h │ ├── safe_conversions_impl.h │ ├── sanitizer │ │ ├── asan.h │ │ ├── lsan-page-allocator.cc │ │ ├── lsan-page-allocator.h │ │ ├── lsan-virtual-address-space.cc │ │ ├── lsan-virtual-address-space.h │ │ ├── lsan.h │ │ ├── msan.h │ │ └── tsan.h │ ├── small-vector.h │ ├── string-format.h │ ├── strings.cc │ ├── strings.h │ ├── sys-info.cc │ ├── sys-info.h │ ├── template-utils.h │ ├── threaded-list.h │ ├── timezone-cache.h │ ├── ubsan.cc │ ├── utils │ │ ├── random-number-generator.cc │ │ └── random-number-generator.h │ ├── v8-fallthrough.h │ ├── vector.h │ ├── virtual-address-space-page-allocator.cc │ ├── virtual-address-space-page-allocator.h │ ├── virtual-address-space.cc │ ├── virtual-address-space.h │ ├── vlq-base64.cc │ ├── vlq-base64.h │ ├── vlq.h │ └── win32-headers.h ├── baseline │ ├── DEPS │ ├── OWNERS │ ├── arm │ │ ├── baseline-assembler-arm-inl.h │ │ └── baseline-compiler-arm-inl.h │ ├── arm64 │ │ ├── baseline-assembler-arm64-inl.h │ │ └── baseline-compiler-arm64-inl.h │ ├── baseline-assembler-inl.h │ ├── baseline-assembler.h │ ├── baseline-batch-compiler.cc │ ├── baseline-batch-compiler.h │ ├── baseline-compiler.cc │ ├── baseline-compiler.h │ ├── baseline.cc │ ├── baseline.h │ ├── bytecode-offset-iterator.cc │ ├── bytecode-offset-iterator.h │ ├── ia32 │ │ ├── baseline-assembler-ia32-inl.h │ │ └── baseline-compiler-ia32-inl.h │ ├── loong64 │ │ ├── baseline-assembler-loong64-inl.h │ │ └── baseline-compiler-loong64-inl.h │ ├── mips64 │ │ ├── baseline-assembler-mips64-inl.h │ │ └── baseline-compiler-mips64-inl.h │ ├── ppc │ │ ├── baseline-assembler-ppc-inl.h │ │ └── baseline-compiler-ppc-inl.h │ ├── riscv │ │ ├── baseline-assembler-riscv-inl.h │ │ └── baseline-compiler-riscv-inl.h │ ├── s390 │ │ ├── baseline-assembler-s390-inl.h │ │ └── baseline-compiler-s390-inl.h │ └── x64 │ │ ├── baseline-assembler-x64-inl.h │ │ └── baseline-compiler-x64-inl.h ├── bigint │ ├── CPPLINT.cfg │ ├── DEPS │ ├── OWNERS │ ├── bigint-internal.cc │ ├── bigint-internal.h │ ├── bigint.h │ ├── bitwise.cc │ ├── digit-arithmetic.h │ ├── div-barrett.cc │ ├── div-burnikel.cc │ ├── div-helpers.cc │ ├── div-helpers.h │ ├── div-schoolbook.cc │ ├── fromstring.cc │ ├── mul-fft.cc │ ├── mul-karatsuba.cc │ ├── mul-schoolbook.cc │ ├── mul-toom.cc │ ├── tostring.cc │ ├── util.h │ ├── vector-arithmetic.cc │ └── vector-arithmetic.h ├── builtins │ ├── DIR_METADATA │ ├── OWNERS │ ├── accessors.cc │ ├── accessors.h │ ├── aggregate-error.tq │ ├── arm │ │ └── builtins-arm.cc │ ├── arm64 │ │ └── builtins-arm64.cc │ ├── array-at.tq │ ├── array-concat.tq │ ├── array-copywithin.tq │ ├── array-every.tq │ ├── array-filter.tq │ ├── array-find.tq │ ├── array-findindex.tq │ ├── array-findlast.tq │ ├── array-findlastindex.tq │ ├── array-foreach.tq │ ├── array-from.tq │ ├── array-isarray.tq │ ├── array-join.tq │ ├── array-lastindexof.tq │ ├── array-map.tq │ ├── array-of.tq │ ├── array-reduce-right.tq │ ├── array-reduce.tq │ ├── array-reverse.tq │ ├── array-shift.tq │ ├── array-slice.tq │ ├── array-some.tq │ ├── array-splice.tq │ ├── array-to-reversed.tq │ ├── array-to-sorted.tq │ ├── array-to-spliced.tq │ ├── array-unshift.tq │ ├── array-with.tq │ ├── array.tq │ ├── arraybuffer.tq │ ├── base.tq │ ├── boolean.tq │ ├── builtins-api.cc │ ├── builtins-array-gen.cc │ ├── builtins-array-gen.h │ ├── builtins-array.cc │ ├── builtins-arraybuffer.cc │ ├── builtins-async-function-gen.cc │ ├── builtins-async-gen.cc │ ├── builtins-async-gen.h │ ├── builtins-async-generator-gen.cc │ ├── builtins-async-iterator-gen.cc │ ├── builtins-async-module.cc │ ├── builtins-atomics-synchronization.cc │ ├── builtins-bigint-gen.cc │ ├── builtins-bigint-gen.h │ ├── builtins-bigint.cc │ ├── builtins-bigint.tq │ ├── builtins-call-gen.cc │ ├── builtins-call-gen.h │ ├── builtins-callsite.cc │ ├── builtins-collections-gen.cc │ ├── builtins-collections-gen.h │ ├── builtins-collections.cc │ ├── builtins-console.cc │ ├── builtins-constructor-gen.cc │ ├── builtins-constructor-gen.h │ ├── builtins-constructor.h │ ├── builtins-conversion-gen.cc │ ├── builtins-data-view-gen.h │ ├── builtins-dataview.cc │ ├── builtins-date-gen.cc │ ├── builtins-date.cc │ ├── builtins-definitions.h │ ├── builtins-descriptors.h │ ├── builtins-error.cc │ ├── builtins-function.cc │ ├── builtins-generator-gen.cc │ ├── builtins-global-gen.cc │ ├── builtins-global.cc │ ├── builtins-handler-gen.cc │ ├── builtins-ic-gen.cc │ ├── builtins-internal-gen.cc │ ├── builtins-internal.cc │ ├── builtins-interpreter-gen.cc │ ├── builtins-intl-gen.cc │ ├── builtins-intl.cc │ ├── builtins-iterator-gen.cc │ ├── builtins-iterator-gen.h │ ├── builtins-json.cc │ ├── builtins-lazy-gen.cc │ ├── builtins-lazy-gen.h │ ├── builtins-microtask-queue-gen.cc │ ├── builtins-number-gen.cc │ ├── builtins-number.cc │ ├── builtins-object-gen.cc │ ├── builtins-object-gen.h │ ├── builtins-object.cc │ ├── builtins-promise-gen.cc │ ├── builtins-promise-gen.h │ ├── builtins-promise.h │ ├── builtins-proxy-gen.cc │ ├── builtins-proxy-gen.h │ ├── builtins-reflect.cc │ ├── builtins-regexp-gen.cc │ ├── builtins-regexp-gen.h │ ├── builtins-regexp.cc │ ├── builtins-shadow-realm-gen.cc │ ├── builtins-shadow-realm.cc │ ├── builtins-shared-array.cc │ ├── builtins-sharedarraybuffer-gen.cc │ ├── builtins-sharedarraybuffer.cc │ ├── builtins-string-gen.cc │ ├── builtins-string-gen.h │ ├── builtins-string.cc │ ├── builtins-string.tq │ ├── builtins-struct.cc │ ├── builtins-symbol.cc │ ├── builtins-temporal-gen.cc │ ├── builtins-temporal.cc │ ├── builtins-trace.cc │ ├── builtins-typed-array-gen.cc │ ├── builtins-typed-array-gen.h │ ├── builtins-typed-array.cc │ ├── builtins-utils-gen.h │ ├── builtins-utils-inl.h │ ├── builtins-utils.h │ ├── builtins-wasm-gen.cc │ ├── builtins-wasm-gen.h │ ├── builtins-weak-refs.cc │ ├── builtins.cc │ ├── builtins.h │ ├── cast.tq │ ├── collections.tq │ ├── console.tq │ ├── constants-table-builder.cc │ ├── constants-table-builder.h │ ├── constructor.tq │ ├── conversion.tq │ ├── convert.tq │ ├── data-view.tq │ ├── finalization-registry.tq │ ├── frame-arguments.tq │ ├── frames.tq │ ├── function.tq │ ├── generate-bytecodes-builtins-list.cc │ ├── growable-fixed-array-gen.cc │ ├── growable-fixed-array-gen.h │ ├── growable-fixed-array.tq │ ├── ia32 │ │ └── builtins-ia32.cc │ ├── ic-callable.tq │ ├── ic.tq │ ├── internal-coverage.tq │ ├── internal.tq │ ├── iterator-from.tq │ ├── iterator-helpers.tq │ ├── iterator.tq │ ├── js-to-wasm.tq │ ├── loong64 │ │ └── builtins-loong64.cc │ ├── map-groupby.tq │ ├── math.tq │ ├── mips64 │ │ └── builtins-mips64.cc │ ├── number.tq │ ├── object-fromentries.tq │ ├── object-groupby.tq │ ├── object.tq │ ├── ppc │ │ └── builtins-ppc.cc │ ├── profile-data-reader.cc │ ├── profile-data-reader.h │ ├── promise-abstract-operations.tq │ ├── promise-all-element-closure.tq │ ├── promise-all.tq │ ├── promise-any.tq │ ├── promise-constructor.tq │ ├── promise-finally.tq │ ├── promise-jobs.tq │ ├── promise-misc.tq │ ├── promise-race.tq │ ├── promise-reaction-job.tq │ ├── promise-resolve.tq │ ├── promise-then.tq │ ├── proxy-constructor.tq │ ├── proxy-delete-property.tq │ ├── proxy-get-property.tq │ ├── proxy-get-prototype-of.tq │ ├── proxy-has-property.tq │ ├── proxy-is-extensible.tq │ ├── proxy-prevent-extensions.tq │ ├── proxy-revocable.tq │ ├── proxy-revoke.tq │ ├── proxy-set-property.tq │ ├── proxy-set-prototype-of.tq │ ├── proxy.tq │ ├── reflect.tq │ ├── regexp-exec.tq │ ├── regexp-match-all.tq │ ├── regexp-match.tq │ ├── regexp-replace.tq │ ├── regexp-search.tq │ ├── regexp-source.tq │ ├── regexp-split.tq │ ├── regexp-test.tq │ ├── regexp.tq │ ├── riscv │ │ └── builtins-riscv.cc │ ├── s390 │ │ └── builtins-s390.cc │ ├── set-intersection.tq │ ├── set-union.tq │ ├── setup-builtins-internal.cc │ ├── string-at.tq │ ├── string-endswith.tq │ ├── string-html.tq │ ├── string-includes.tq │ ├── string-indexof.tq │ ├── string-iswellformed.tq │ ├── string-iterator.tq │ ├── string-match-search.tq │ ├── string-pad.tq │ ├── string-repeat.tq │ ├── string-replaceall.tq │ ├── string-slice.tq │ ├── string-startswith.tq │ ├── string-substr.tq │ ├── string-substring.tq │ ├── string-towellformed.tq │ ├── string-trim.tq │ ├── symbol.tq │ ├── torque-csa-header-includes.h │ ├── torque-internal.tq │ ├── typed-array-at.tq │ ├── typed-array-createtypedarray.tq │ ├── typed-array-entries.tq │ ├── typed-array-every.tq │ ├── typed-array-filter.tq │ ├── typed-array-find.tq │ ├── typed-array-findindex.tq │ ├── typed-array-findlast.tq │ ├── typed-array-findlastindex.tq │ ├── typed-array-foreach.tq │ ├── typed-array-from.tq │ ├── typed-array-keys.tq │ ├── typed-array-of.tq │ ├── typed-array-reduce.tq │ ├── typed-array-reduceright.tq │ ├── typed-array-set.tq │ ├── typed-array-slice.tq │ ├── typed-array-some.tq │ ├── typed-array-sort.tq │ ├── typed-array-subarray.tq │ ├── typed-array-to-reversed.tq │ ├── typed-array-to-sorted.tq │ ├── typed-array-values.tq │ ├── typed-array-with.tq │ ├── typed-array.tq │ ├── wasm.tq │ ├── weak-ref.tq │ └── x64 │ │ └── builtins-x64.cc ├── codegen │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── aligned-slot-allocator.cc │ ├── aligned-slot-allocator.h │ ├── arm │ │ ├── assembler-arm-inl.h │ │ ├── assembler-arm.cc │ │ ├── assembler-arm.h │ │ ├── constants-arm.cc │ │ ├── constants-arm.h │ │ ├── cpu-arm.cc │ │ ├── interface-descriptors-arm-inl.h │ │ ├── macro-assembler-arm.cc │ │ ├── macro-assembler-arm.h │ │ ├── register-arm.h │ │ └── reglist-arm.h │ ├── arm64 │ │ ├── assembler-arm64-inl.h │ │ ├── assembler-arm64.cc │ │ ├── assembler-arm64.h │ │ ├── constants-arm64.h │ │ ├── cpu-arm64.cc │ │ ├── decoder-arm64-inl.h │ │ ├── decoder-arm64.cc │ │ ├── decoder-arm64.h │ │ ├── instructions-arm64-constants.cc │ │ ├── instructions-arm64.cc │ │ ├── instructions-arm64.h │ │ ├── interface-descriptors-arm64-inl.h │ │ ├── macro-assembler-arm64-inl.h │ │ ├── macro-assembler-arm64.cc │ │ ├── macro-assembler-arm64.h │ │ ├── register-arm64.cc │ │ ├── register-arm64.h │ │ ├── reglist-arm64.h │ │ ├── utils-arm64.cc │ │ └── utils-arm64.h │ ├── assembler-arch.h │ ├── assembler-inl.h │ ├── assembler.cc │ ├── assembler.h │ ├── atomic-memory-order.h │ ├── background-merge-task.h │ ├── bailout-reason.cc │ ├── bailout-reason.h │ ├── callable.h │ ├── code-comments.cc │ ├── code-comments.h │ ├── code-desc.cc │ ├── code-desc.h │ ├── code-factory.cc │ ├── code-factory.h │ ├── code-reference.cc │ ├── code-reference.h │ ├── code-stub-assembler.cc │ ├── code-stub-assembler.h │ ├── compilation-cache.cc │ ├── compilation-cache.h │ ├── compiler.cc │ ├── compiler.h │ ├── constant-pool.cc │ ├── constant-pool.h │ ├── constants-arch.h │ ├── cpu-features.h │ ├── external-reference-encoder.cc │ ├── external-reference-encoder.h │ ├── external-reference-table.cc │ ├── external-reference-table.h │ ├── external-reference.cc │ ├── external-reference.h │ ├── flush-instruction-cache.cc │ ├── flush-instruction-cache.h │ ├── handler-table.cc │ ├── handler-table.h │ ├── ia32 │ │ ├── assembler-ia32-inl.h │ │ ├── assembler-ia32.cc │ │ ├── assembler-ia32.h │ │ ├── constants-ia32.h │ │ ├── cpu-ia32.cc │ │ ├── fma-instr.h │ │ ├── interface-descriptors-ia32-inl.h │ │ ├── macro-assembler-ia32.cc │ │ ├── macro-assembler-ia32.h │ │ ├── register-ia32.h │ │ ├── reglist-ia32.h │ │ └── sse-instr.h │ ├── interface-descriptors-inl.h │ ├── interface-descriptors.cc │ ├── interface-descriptors.h │ ├── label.h │ ├── loong64 │ │ ├── assembler-loong64-inl.h │ │ ├── assembler-loong64.cc │ │ ├── assembler-loong64.h │ │ ├── constants-loong64.cc │ │ ├── constants-loong64.h │ │ ├── cpu-loong64.cc │ │ ├── interface-descriptors-loong64-inl.h │ │ ├── macro-assembler-loong64.cc │ │ ├── macro-assembler-loong64.h │ │ ├── register-loong64.h │ │ └── reglist-loong64.h │ ├── machine-type.cc │ ├── machine-type.h │ ├── macro-assembler-base.cc │ ├── macro-assembler-base.h │ ├── macro-assembler-inl.h │ ├── macro-assembler.h │ ├── maglev-safepoint-table.cc │ ├── maglev-safepoint-table.h │ ├── mips64 │ │ ├── assembler-mips64-inl.h │ │ ├── assembler-mips64.cc │ │ ├── assembler-mips64.h │ │ ├── constants-mips64.cc │ │ ├── constants-mips64.h │ │ ├── cpu-mips64.cc │ │ ├── interface-descriptors-mips64-inl.h │ │ ├── macro-assembler-mips64.cc │ │ ├── macro-assembler-mips64.h │ │ ├── register-mips64.h │ │ └── reglist-mips64.h │ ├── optimized-compilation-info.cc │ ├── optimized-compilation-info.h │ ├── pending-optimization-table.cc │ ├── pending-optimization-table.h │ ├── ppc │ │ ├── assembler-ppc-inl.h │ │ ├── assembler-ppc.cc │ │ ├── assembler-ppc.h │ │ ├── constants-ppc.cc │ │ ├── constants-ppc.h │ │ ├── cpu-ppc.cc │ │ ├── interface-descriptors-ppc-inl.h │ │ ├── macro-assembler-ppc.cc │ │ ├── macro-assembler-ppc.h │ │ ├── register-ppc.h │ │ └── reglist-ppc.h │ ├── register-arch.h │ ├── register-base.h │ ├── register-configuration.cc │ ├── register-configuration.h │ ├── register.h │ ├── reglist-base.h │ ├── reglist.h │ ├── reloc-info-inl.h │ ├── reloc-info.cc │ ├── reloc-info.h │ ├── riscv │ │ ├── assembler-riscv-inl.h │ │ ├── assembler-riscv.cc │ │ ├── assembler-riscv.h │ │ ├── base-assembler-riscv.cc │ │ ├── base-assembler-riscv.h │ │ ├── base-constants-riscv.cc │ │ ├── base-constants-riscv.h │ │ ├── base-riscv-i.cc │ │ ├── base-riscv-i.h │ │ ├── constant-riscv-a.h │ │ ├── constant-riscv-c.h │ │ ├── constant-riscv-d.h │ │ ├── constant-riscv-f.h │ │ ├── constant-riscv-i.h │ │ ├── constant-riscv-m.h │ │ ├── constant-riscv-v.h │ │ ├── constant-riscv-zicsr.h │ │ ├── constant-riscv-zifencei.h │ │ ├── constants-riscv.h │ │ ├── cpu-riscv.cc │ │ ├── extension-riscv-a.cc │ │ ├── extension-riscv-a.h │ │ ├── extension-riscv-c.cc │ │ ├── extension-riscv-c.h │ │ ├── extension-riscv-d.cc │ │ ├── extension-riscv-d.h │ │ ├── extension-riscv-f.cc │ │ ├── extension-riscv-f.h │ │ ├── extension-riscv-m.cc │ │ ├── extension-riscv-m.h │ │ ├── extension-riscv-v.cc │ │ ├── extension-riscv-v.h │ │ ├── extension-riscv-zicsr.cc │ │ ├── extension-riscv-zicsr.h │ │ ├── extension-riscv-zifencei.cc │ │ ├── extension-riscv-zifencei.h │ │ ├── interface-descriptors-riscv-inl.h │ │ ├── macro-assembler-riscv.cc │ │ ├── macro-assembler-riscv.h │ │ ├── register-riscv.h │ │ └── reglist-riscv.h │ ├── s390 │ │ ├── assembler-s390-inl.h │ │ ├── assembler-s390.cc │ │ ├── assembler-s390.h │ │ ├── constants-s390.cc │ │ ├── constants-s390.h │ │ ├── cpu-s390.cc │ │ ├── interface-descriptors-s390-inl.h │ │ ├── macro-assembler-s390.cc │ │ ├── macro-assembler-s390.h │ │ ├── register-s390.h │ │ └── reglist-s390.h │ ├── safepoint-table-base.h │ ├── safepoint-table.cc │ ├── safepoint-table.h │ ├── script-details.h │ ├── shared-ia32-x64 │ │ ├── macro-assembler-shared-ia32-x64.cc │ │ └── macro-assembler-shared-ia32-x64.h │ ├── signature.h │ ├── source-position-table.cc │ ├── source-position-table.h │ ├── source-position.cc │ ├── source-position.h │ ├── string-constants.cc │ ├── string-constants.h │ ├── tick-counter.cc │ ├── tick-counter.h │ ├── tnode.cc │ ├── tnode.h │ ├── unoptimized-compilation-info.cc │ ├── unoptimized-compilation-info.h │ └── x64 │ │ ├── assembler-x64-inl.h │ │ ├── assembler-x64.cc │ │ ├── assembler-x64.h │ │ ├── constants-x64.h │ │ ├── cpu-x64.cc │ │ ├── fma-instr.h │ │ ├── interface-descriptors-x64-inl.h │ │ ├── macro-assembler-x64.cc │ │ ├── macro-assembler-x64.h │ │ ├── register-x64.h │ │ ├── reglist-x64.h │ │ └── sse-instr.h ├── common │ ├── DIR_METADATA │ ├── OWNERS │ ├── assert-scope.cc │ ├── assert-scope.h │ ├── checks.h │ ├── code-memory-access-inl.h │ ├── code-memory-access.cc │ ├── code-memory-access.h │ ├── globals.h │ ├── high-allocation-throughput-scope.h │ ├── message-template.h │ ├── operation.h │ ├── ptr-compr-inl.h │ ├── ptr-compr.cc │ └── ptr-compr.h ├── compiler-dispatcher │ ├── DIR_METADATA │ ├── OWNERS │ ├── lazy-compile-dispatcher.cc │ ├── lazy-compile-dispatcher.h │ ├── optimizing-compile-dispatcher.cc │ └── optimizing-compile-dispatcher.h ├── compiler │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── access-builder.cc │ ├── access-builder.h │ ├── access-info.cc │ ├── access-info.h │ ├── add-type-assertions-reducer.cc │ ├── add-type-assertions-reducer.h │ ├── all-nodes.cc │ ├── all-nodes.h │ ├── allocation-builder-inl.h │ ├── allocation-builder.h │ ├── backend │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── arm │ │ │ ├── code-generator-arm.cc │ │ │ ├── instruction-codes-arm.h │ │ │ ├── instruction-scheduler-arm.cc │ │ │ ├── instruction-selector-arm.cc │ │ │ ├── unwinding-info-writer-arm.cc │ │ │ └── unwinding-info-writer-arm.h │ │ ├── arm64 │ │ │ ├── code-generator-arm64.cc │ │ │ ├── instruction-codes-arm64.h │ │ │ ├── instruction-scheduler-arm64.cc │ │ │ ├── instruction-selector-arm64.cc │ │ │ ├── unwinding-info-writer-arm64.cc │ │ │ └── unwinding-info-writer-arm64.h │ │ ├── bitcast-elider.cc │ │ ├── bitcast-elider.h │ │ ├── code-generator-impl.h │ │ ├── code-generator.cc │ │ ├── code-generator.h │ │ ├── frame-elider.cc │ │ ├── frame-elider.h │ │ ├── gap-resolver.cc │ │ ├── gap-resolver.h │ │ ├── ia32 │ │ │ ├── code-generator-ia32.cc │ │ │ ├── instruction-codes-ia32.h │ │ │ ├── instruction-scheduler-ia32.cc │ │ │ └── instruction-selector-ia32.cc │ │ ├── instruction-codes.h │ │ ├── instruction-scheduler.cc │ │ ├── instruction-scheduler.h │ │ ├── instruction-selector-impl.h │ │ ├── instruction-selector.cc │ │ ├── instruction-selector.h │ │ ├── instruction.cc │ │ ├── instruction.h │ │ ├── jump-threading.cc │ │ ├── jump-threading.h │ │ ├── loong64 │ │ │ ├── code-generator-loong64.cc │ │ │ ├── instruction-codes-loong64.h │ │ │ ├── instruction-scheduler-loong64.cc │ │ │ └── instruction-selector-loong64.cc │ │ ├── mid-tier-register-allocator.cc │ │ ├── mid-tier-register-allocator.h │ │ ├── mips64 │ │ │ ├── code-generator-mips64.cc │ │ │ ├── instruction-codes-mips64.h │ │ │ ├── instruction-scheduler-mips64.cc │ │ │ └── instruction-selector-mips64.cc │ │ ├── move-optimizer.cc │ │ ├── move-optimizer.h │ │ ├── ppc │ │ │ ├── code-generator-ppc.cc │ │ │ ├── instruction-codes-ppc.h │ │ │ ├── instruction-scheduler-ppc.cc │ │ │ ├── instruction-selector-ppc.cc │ │ │ ├── unwinding-info-writer-ppc.cc │ │ │ └── unwinding-info-writer-ppc.h │ │ ├── register-allocation.h │ │ ├── register-allocator-verifier.cc │ │ ├── register-allocator-verifier.h │ │ ├── register-allocator.cc │ │ ├── register-allocator.h │ │ ├── riscv │ │ │ ├── code-generator-riscv.cc │ │ │ ├── instruction-codes-riscv.h │ │ │ ├── instruction-scheduler-riscv.cc │ │ │ ├── instruction-selector-riscv.h │ │ │ ├── instruction-selector-riscv32.cc │ │ │ └── instruction-selector-riscv64.cc │ │ ├── s390 │ │ │ ├── code-generator-s390.cc │ │ │ ├── instruction-codes-s390.h │ │ │ ├── instruction-scheduler-s390.cc │ │ │ ├── instruction-selector-s390.cc │ │ │ ├── unwinding-info-writer-s390.cc │ │ │ └── unwinding-info-writer-s390.h │ │ ├── spill-placer.cc │ │ ├── spill-placer.h │ │ ├── unwinding-info-writer.h │ │ └── x64 │ │ │ ├── code-generator-x64.cc │ │ │ ├── instruction-codes-x64.h │ │ │ ├── instruction-scheduler-x64.cc │ │ │ ├── instruction-selector-x64.cc │ │ │ ├── unwinding-info-writer-x64.cc │ │ │ └── unwinding-info-writer-x64.h │ ├── basic-block-instrumentor.cc │ ├── basic-block-instrumentor.h │ ├── branch-condition-duplicator.cc │ ├── branch-condition-duplicator.h │ ├── branch-elimination.cc │ ├── branch-elimination.h │ ├── bytecode-analysis.cc │ ├── bytecode-analysis.h │ ├── bytecode-graph-builder.cc │ ├── bytecode-graph-builder.h │ ├── bytecode-liveness-map.cc │ ├── bytecode-liveness-map.h │ ├── c-linkage.cc │ ├── checkpoint-elimination.cc │ ├── checkpoint-elimination.h │ ├── code-assembler.cc │ ├── code-assembler.h │ ├── common-node-cache.cc │ ├── common-node-cache.h │ ├── common-operator-reducer.cc │ ├── common-operator-reducer.h │ ├── common-operator.cc │ ├── common-operator.h │ ├── compilation-dependencies.cc │ ├── compilation-dependencies.h │ ├── compiler-source-position-table.cc │ ├── compiler-source-position-table.h │ ├── constant-folding-reducer.cc │ ├── constant-folding-reducer.h │ ├── control-equivalence.cc │ ├── control-equivalence.h │ ├── control-flow-optimizer.cc │ ├── control-flow-optimizer.h │ ├── control-path-state.h │ ├── csa-load-elimination.cc │ ├── csa-load-elimination.h │ ├── dead-code-elimination.cc │ ├── dead-code-elimination.h │ ├── decompression-optimizer.cc │ ├── decompression-optimizer.h │ ├── diamond.h │ ├── effect-control-linearizer.cc │ ├── effect-control-linearizer.h │ ├── escape-analysis-reducer.cc │ ├── escape-analysis-reducer.h │ ├── escape-analysis.cc │ ├── escape-analysis.h │ ├── fast-api-calls.cc │ ├── fast-api-calls.h │ ├── feedback-source.cc │ ├── feedback-source.h │ ├── frame-states.cc │ ├── frame-states.h │ ├── frame.cc │ ├── frame.h │ ├── functional-list.h │ ├── globals.h │ ├── graph-assembler.cc │ ├── graph-assembler.h │ ├── graph-reducer.cc │ ├── graph-reducer.h │ ├── graph-trimmer.cc │ ├── graph-trimmer.h │ ├── graph-visualizer.cc │ ├── graph-visualizer.h │ ├── graph-zone-traits.h │ ├── graph.cc │ ├── graph.h │ ├── heap-refs.cc │ ├── heap-refs.h │ ├── int64-lowering.cc │ ├── int64-lowering.h │ ├── js-call-reducer.cc │ ├── js-call-reducer.h │ ├── js-context-specialization.cc │ ├── js-context-specialization.h │ ├── js-create-lowering.cc │ ├── js-create-lowering.h │ ├── js-generic-lowering.cc │ ├── js-generic-lowering.h │ ├── js-graph.cc │ ├── js-graph.h │ ├── js-heap-broker-inl.h │ ├── js-heap-broker.cc │ ├── js-heap-broker.h │ ├── js-inlining-heuristic.cc │ ├── js-inlining-heuristic.h │ ├── js-inlining.cc │ ├── js-inlining.h │ ├── js-intrinsic-lowering.cc │ ├── js-intrinsic-lowering.h │ ├── js-native-context-specialization.cc │ ├── js-native-context-specialization.h │ ├── js-operator.cc │ ├── js-operator.h │ ├── js-type-hint-lowering.cc │ ├── js-type-hint-lowering.h │ ├── js-typed-lowering.cc │ ├── js-typed-lowering.h │ ├── late-escape-analysis.cc │ ├── late-escape-analysis.h │ ├── linear-scheduler.cc │ ├── linear-scheduler.h │ ├── linkage.cc │ ├── linkage.h │ ├── load-elimination.cc │ ├── load-elimination.h │ ├── loop-analysis.cc │ ├── loop-analysis.h │ ├── loop-peeling.cc │ ├── loop-peeling.h │ ├── loop-unrolling.cc │ ├── loop-unrolling.h │ ├── loop-variable-optimizer.cc │ ├── loop-variable-optimizer.h │ ├── machine-graph-verifier.cc │ ├── machine-graph-verifier.h │ ├── machine-graph.cc │ ├── machine-graph.h │ ├── machine-operator-reducer.cc │ ├── machine-operator-reducer.h │ ├── machine-operator.cc │ ├── machine-operator.h │ ├── map-inference.cc │ ├── map-inference.h │ ├── memory-lowering.cc │ ├── memory-lowering.h │ ├── memory-optimizer.cc │ ├── memory-optimizer.h │ ├── node-aux-data.h │ ├── node-cache.h │ ├── node-marker.cc │ ├── node-marker.h │ ├── node-matchers.cc │ ├── node-matchers.h │ ├── node-observer.cc │ ├── node-observer.h │ ├── node-origin-table.cc │ ├── node-origin-table.h │ ├── node-properties.cc │ ├── node-properties.h │ ├── node.cc │ ├── node.h │ ├── opcodes.cc │ ├── opcodes.h │ ├── operation-typer.cc │ ├── operation-typer.h │ ├── operator-properties.cc │ ├── operator-properties.h │ ├── operator.cc │ ├── operator.h │ ├── osr.cc │ ├── osr.h │ ├── pair-load-store-reducer.cc │ ├── pair-load-store-reducer.h │ ├── per-isolate-compiler-cache.h │ ├── persistent-map.h │ ├── phase.h │ ├── pipeline-statistics.cc │ ├── pipeline-statistics.h │ ├── pipeline.cc │ ├── pipeline.h │ ├── processed-feedback.h │ ├── property-access-builder.cc │ ├── property-access-builder.h │ ├── raw-machine-assembler.cc │ ├── raw-machine-assembler.h │ ├── redundancy-elimination.cc │ ├── redundancy-elimination.h │ ├── refs-map.cc │ ├── refs-map.h │ ├── representation-change.cc │ ├── representation-change.h │ ├── revectorizer.cc │ ├── revectorizer.h │ ├── schedule.cc │ ├── schedule.h │ ├── scheduler.cc │ ├── scheduler.h │ ├── select-lowering.cc │ ├── select-lowering.h │ ├── simplified-lowering-verifier.cc │ ├── simplified-lowering-verifier.h │ ├── simplified-lowering.cc │ ├── simplified-lowering.h │ ├── simplified-operator-reducer.cc │ ├── simplified-operator-reducer.h │ ├── simplified-operator.cc │ ├── simplified-operator.h │ ├── state-values-utils.cc │ ├── state-values-utils.h │ ├── store-store-elimination.cc │ ├── store-store-elimination.h │ ├── string-builder-optimizer.cc │ ├── string-builder-optimizer.h │ ├── turbofan-disabled.cc │ ├── turbofan-enabled.cc │ ├── turbofan.h │ ├── turboshaft │ │ ├── assembler.cc │ │ ├── assembler.h │ │ ├── assert-types-reducer.h │ │ ├── branch-elimination-reducer.h │ │ ├── build-graph-phase.cc │ │ ├── build-graph-phase.h │ │ ├── builtin-call-descriptors.h │ │ ├── dead-code-elimination-phase.cc │ │ ├── dead-code-elimination-phase.h │ │ ├── dead-code-elimination-reducer.h │ │ ├── decompression-optimization-phase.cc │ │ ├── decompression-optimization-phase.h │ │ ├── decompression-optimization.cc │ │ ├── decompression-optimization.h │ │ ├── define-assembler-macros.inc │ │ ├── deopt-data.h │ │ ├── fast-api-call-reducer.h │ │ ├── fast-hash.h │ │ ├── graph-builder.cc │ │ ├── graph-builder.h │ │ ├── graph-visualizer.cc │ │ ├── graph-visualizer.h │ │ ├── graph.cc │ │ ├── graph.h │ │ ├── index.h │ │ ├── late-escape-analysis-reducer.cc │ │ ├── late-escape-analysis-reducer.h │ │ ├── layered-hash-map.h │ │ ├── machine-lowering-phase.cc │ │ ├── machine-lowering-phase.h │ │ ├── machine-lowering-reducer.h │ │ ├── machine-optimization-reducer.h │ │ ├── memory-optimization-reducer.cc │ │ ├── memory-optimization-reducer.h │ │ ├── operation-matching.h │ │ ├── operations.cc │ │ ├── operations.h │ │ ├── optimization-phase.cc │ │ ├── optimization-phase.h │ │ ├── optimize-phase.cc │ │ ├── optimize-phase.h │ │ ├── phase.cc │ │ ├── phase.h │ │ ├── pretenuring-propagation-reducer.cc │ │ ├── pretenuring-propagation-reducer.h │ │ ├── recreate-schedule-phase.cc │ │ ├── recreate-schedule-phase.h │ │ ├── recreate-schedule.cc │ │ ├── recreate-schedule.h │ │ ├── reducer-traits.h │ │ ├── representations.cc │ │ ├── representations.h │ │ ├── runtime-call-descriptors.h │ │ ├── select-lowering-reducer.h │ │ ├── sidetable.h │ │ ├── simplify-tf-loops.cc │ │ ├── simplify-tf-loops.h │ │ ├── snapshot-table.h │ │ ├── store-store-elimination-phase.cc │ │ ├── store-store-elimination-phase.h │ │ ├── store-store-elimination-reducer.h │ │ ├── structural-optimization-reducer.h │ │ ├── tracing.h │ │ ├── type-assertions-phase.cc │ │ ├── type-assertions-phase.h │ │ ├── type-inference-analysis.h │ │ ├── type-inference-reducer.h │ │ ├── type-parser.cc │ │ ├── type-parser.h │ │ ├── typed-optimizations-phase.cc │ │ ├── typed-optimizations-phase.h │ │ ├── typed-optimizations-reducer.h │ │ ├── typer.cc │ │ ├── typer.h │ │ ├── types.cc │ │ ├── types.h │ │ ├── undef-assembler-macros.inc │ │ ├── uniform-reducer-adapter.h │ │ ├── utils.cc │ │ ├── utils.h │ │ ├── value-numbering-reducer.h │ │ ├── variable-reducer.h │ │ └── wasm-js-lowering-reducer.h │ ├── type-cache.cc │ ├── type-cache.h │ ├── type-narrowing-reducer.cc │ ├── type-narrowing-reducer.h │ ├── typed-optimization.cc │ ├── typed-optimization.h │ ├── typer.cc │ ├── typer.h │ ├── types.cc │ ├── types.h │ ├── use-info.h │ ├── value-numbering-reducer.cc │ ├── value-numbering-reducer.h │ ├── verifier.cc │ ├── verifier.h │ ├── wasm-address-reassociation.cc │ ├── wasm-address-reassociation.h │ ├── wasm-call-descriptors.cc │ ├── wasm-call-descriptors.h │ ├── wasm-compiler-definitions.h │ ├── wasm-compiler.cc │ ├── wasm-compiler.h │ ├── wasm-escape-analysis.cc │ ├── wasm-escape-analysis.h │ ├── wasm-gc-lowering.cc │ ├── wasm-gc-lowering.h │ ├── wasm-gc-operator-reducer.cc │ ├── wasm-gc-operator-reducer.h │ ├── wasm-graph-assembler.cc │ ├── wasm-graph-assembler.h │ ├── wasm-inlining-into-js.cc │ ├── wasm-inlining-into-js.h │ ├── wasm-inlining.cc │ ├── wasm-inlining.h │ ├── wasm-js-lowering.cc │ ├── wasm-js-lowering.h │ ├── wasm-load-elimination.cc │ ├── wasm-load-elimination.h │ ├── wasm-loop-peeling.cc │ ├── wasm-loop-peeling.h │ ├── wasm-typer.cc │ ├── wasm-typer.h │ ├── write-barrier-kind.h │ ├── zone-stats.cc │ └── zone-stats.h ├── d8 │ ├── OWNERS │ ├── async-hooks-wrapper.cc │ ├── async-hooks-wrapper.h │ ├── cov.cc │ ├── cov.h │ ├── d8-console.cc │ ├── d8-console.h │ ├── d8-js.cc │ ├── d8-platforms.cc │ ├── d8-platforms.h │ ├── d8-posix.cc │ ├── d8-test.cc │ ├── d8-windows.cc │ ├── d8.cc │ └── d8.h ├── date │ ├── DIR_METADATA │ ├── OWNERS │ ├── date.cc │ ├── date.h │ ├── dateparser-inl.h │ ├── dateparser.cc │ └── dateparser.h ├── debug │ ├── DIR_METADATA │ ├── OWNERS │ ├── debug-coverage.cc │ ├── debug-coverage.h │ ├── debug-evaluate.cc │ ├── debug-evaluate.h │ ├── debug-frames.cc │ ├── debug-frames.h │ ├── debug-interface.cc │ ├── debug-interface.h │ ├── debug-property-iterator.cc │ ├── debug-property-iterator.h │ ├── debug-scope-iterator.cc │ ├── debug-scope-iterator.h │ ├── debug-scopes.cc │ ├── debug-scopes.h │ ├── debug-stack-trace-iterator.cc │ ├── debug-stack-trace-iterator.h │ ├── debug-wasm-objects-inl.h │ ├── debug-wasm-objects.cc │ ├── debug-wasm-objects.h │ ├── debug-wasm-objects.tq │ ├── debug.cc │ ├── debug.h │ ├── interface-types.h │ ├── liveedit-diff.cc │ ├── liveedit-diff.h │ ├── liveedit.cc │ ├── liveedit.h │ └── wasm │ │ └── gdb-server │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── gdb-remote-util.cc │ │ ├── gdb-remote-util.h │ │ ├── gdb-server-thread.cc │ │ ├── gdb-server-thread.h │ │ ├── gdb-server.cc │ │ ├── gdb-server.h │ │ ├── packet.cc │ │ ├── packet.h │ │ ├── session.cc │ │ ├── session.h │ │ ├── target.cc │ │ ├── target.h │ │ ├── transport.cc │ │ ├── transport.h │ │ ├── wasm-module-debug.cc │ │ └── wasm-module-debug.h ├── deoptimizer │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── arm │ │ └── deoptimizer-arm.cc │ ├── arm64 │ │ └── deoptimizer-arm64.cc │ ├── deoptimize-reason.cc │ ├── deoptimize-reason.h │ ├── deoptimized-frame-info.cc │ ├── deoptimized-frame-info.h │ ├── deoptimizer-cfi-builtins.cc │ ├── deoptimizer-cfi-empty.cc │ ├── deoptimizer.cc │ ├── deoptimizer.h │ ├── frame-description.h │ ├── ia32 │ │ └── deoptimizer-ia32.cc │ ├── loong64 │ │ └── deoptimizer-loong64.cc │ ├── materialized-object-store.cc │ ├── materialized-object-store.h │ ├── mips64 │ │ └── deoptimizer-mips64.cc │ ├── ppc │ │ └── deoptimizer-ppc.cc │ ├── riscv │ │ └── deoptimizer-riscv.cc │ ├── s390 │ │ └── deoptimizer-s390.cc │ ├── translated-state.cc │ ├── translated-state.h │ ├── translation-array.cc │ ├── translation-array.h │ ├── translation-opcode.h │ └── x64 │ │ └── deoptimizer-x64.cc ├── diagnostics │ ├── DEPS │ ├── OWNERS │ ├── arm │ │ ├── disasm-arm.cc │ │ ├── eh-frame-arm.cc │ │ └── unwinder-arm.cc │ ├── arm64 │ │ ├── disasm-arm64.cc │ │ ├── disasm-arm64.h │ │ ├── eh-frame-arm64.cc │ │ └── unwinder-arm64.cc │ ├── basic-block-profiler.cc │ ├── basic-block-profiler.h │ ├── code-tracer.h │ ├── compilation-statistics.cc │ ├── compilation-statistics.h │ ├── disasm.h │ ├── disassembler.cc │ ├── disassembler.h │ ├── eh-frame.cc │ ├── eh-frame.h │ ├── etw-jit-metadata-win.h │ ├── etw-jit-win.cc │ ├── etw-jit-win.h │ ├── gdb-jit.cc │ ├── gdb-jit.h │ ├── ia32 │ │ ├── disasm-ia32.cc │ │ └── unwinder-ia32.cc │ ├── loong64 │ │ ├── disasm-loong64.cc │ │ └── unwinder-loong64.cc │ ├── mips64 │ │ ├── disasm-mips64.cc │ │ └── unwinder-mips64.cc │ ├── objects-debug.cc │ ├── objects-printer.cc │ ├── perf-jit.cc │ ├── perf-jit.h │ ├── ppc │ │ ├── disasm-ppc.cc │ │ ├── eh-frame-ppc.cc │ │ └── unwinder-ppc.cc │ ├── riscv │ │ ├── disasm-riscv.cc │ │ └── unwinder-riscv.cc │ ├── s390 │ │ ├── disasm-s390.cc │ │ ├── eh-frame-s390.cc │ │ └── unwinder-s390.cc │ ├── unwinder.cc │ ├── unwinder.h │ ├── unwinding-info-win64.cc │ ├── unwinding-info-win64.h │ └── x64 │ │ ├── disasm-x64.cc │ │ ├── eh-frame-x64.cc │ │ └── unwinder-x64.cc ├── execution │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── arguments-inl.h │ ├── arguments.cc │ ├── arguments.h │ ├── arm │ │ ├── frame-constants-arm.cc │ │ ├── frame-constants-arm.h │ │ ├── simulator-arm.cc │ │ └── simulator-arm.h │ ├── arm64 │ │ ├── frame-constants-arm64.cc │ │ ├── frame-constants-arm64.h │ │ ├── pointer-auth-arm64.cc │ │ ├── pointer-authentication-arm64.h │ │ ├── simulator-arm64.cc │ │ ├── simulator-arm64.h │ │ └── simulator-logic-arm64.cc │ ├── clobber-registers.cc │ ├── clobber-registers.h │ ├── embedder-state.cc │ ├── embedder-state.h │ ├── encoded-c-signature.cc │ ├── encoded-c-signature.h │ ├── execution.cc │ ├── execution.h │ ├── frame-constants.h │ ├── frames-inl.h │ ├── frames.cc │ ├── frames.h │ ├── futex-emulation.cc │ ├── futex-emulation.h │ ├── ia32 │ │ ├── frame-constants-ia32.cc │ │ └── frame-constants-ia32.h │ ├── interrupts-scope.cc │ ├── interrupts-scope.h │ ├── isolate-data.h │ ├── isolate-inl.h │ ├── isolate-utils-inl.h │ ├── isolate-utils.h │ ├── isolate.cc │ ├── isolate.h │ ├── local-isolate-inl.h │ ├── local-isolate.cc │ ├── local-isolate.h │ ├── loong64 │ │ ├── frame-constants-loong64.cc │ │ ├── frame-constants-loong64.h │ │ ├── simulator-loong64.cc │ │ └── simulator-loong64.h │ ├── messages.cc │ ├── messages.h │ ├── microtask-queue.cc │ ├── microtask-queue.h │ ├── mips64 │ │ ├── frame-constants-mips64.cc │ │ ├── frame-constants-mips64.h │ │ ├── simulator-mips64.cc │ │ └── simulator-mips64.h │ ├── pointer-authentication-dummy.h │ ├── pointer-authentication.h │ ├── ppc │ │ ├── frame-constants-ppc.cc │ │ ├── frame-constants-ppc.h │ │ ├── simulator-ppc.cc │ │ └── simulator-ppc.h │ ├── protectors-inl.h │ ├── protectors.cc │ ├── protectors.h │ ├── riscv │ │ ├── frame-constants-riscv.cc │ │ ├── frame-constants-riscv.h │ │ ├── simulator-riscv.cc │ │ └── simulator-riscv.h │ ├── s390 │ │ ├── frame-constants-s390.cc │ │ ├── frame-constants-s390.h │ │ ├── simulator-s390.cc │ │ └── simulator-s390.h │ ├── shared-mutex-guard-if-off-thread.h │ ├── simulator-base.cc │ ├── simulator-base.h │ ├── simulator.h │ ├── stack-guard.cc │ ├── stack-guard.h │ ├── thread-id.cc │ ├── thread-id.h │ ├── thread-local-top.cc │ ├── thread-local-top.h │ ├── tiering-manager.cc │ ├── tiering-manager.h │ ├── v8threads.cc │ ├── v8threads.h │ ├── vm-state-inl.h │ ├── vm-state.h │ └── x64 │ │ ├── frame-constants-x64.cc │ │ └── frame-constants-x64.h ├── extensions │ ├── OWNERS │ ├── cputracemark-extension.cc │ ├── cputracemark-extension.h │ ├── externalize-string-extension.cc │ ├── externalize-string-extension.h │ ├── gc-extension.cc │ ├── gc-extension.h │ ├── ignition-statistics-extension.cc │ ├── ignition-statistics-extension.h │ ├── statistics-extension.cc │ ├── statistics-extension.h │ ├── trigger-failure-extension.cc │ ├── trigger-failure-extension.h │ ├── vtunedomain-support-extension.cc │ └── vtunedomain-support-extension.h ├── flags │ ├── OWNERS │ ├── flag-definitions.h │ ├── flags.cc │ └── flags.h ├── handles │ ├── DIR_METADATA │ ├── OWNERS │ ├── global-handles-inl.h │ ├── global-handles.cc │ ├── global-handles.h │ ├── handles-inl.h │ ├── handles.cc │ ├── handles.h │ ├── local-handles-inl.h │ ├── local-handles.cc │ ├── local-handles.h │ ├── maybe-handles-inl.h │ ├── maybe-handles.h │ ├── persistent-handles.cc │ ├── persistent-handles.h │ ├── shared-object-conveyor-handles.cc │ ├── shared-object-conveyor-handles.h │ ├── traced-handles.cc │ └── traced-handles.h ├── heap │ ├── DIR_METADATA │ ├── OWNERS │ ├── allocation-observer.cc │ ├── allocation-observer.h │ ├── allocation-result.h │ ├── allocation-stats.h │ ├── array-buffer-sweeper.cc │ ├── array-buffer-sweeper.h │ ├── base-space.cc │ ├── base-space.h │ ├── base │ │ ├── active-system-pages.cc │ │ ├── active-system-pages.h │ │ ├── asm │ │ │ ├── arm │ │ │ │ └── push_registers_asm.cc │ │ │ ├── arm64 │ │ │ │ ├── push_registers_asm.cc │ │ │ │ └── push_registers_masm.S │ │ │ ├── ia32 │ │ │ │ ├── push_registers_asm.cc │ │ │ │ └── push_registers_masm.asm │ │ │ ├── loong64 │ │ │ │ └── push_registers_asm.cc │ │ │ ├── mips64 │ │ │ │ └── push_registers_asm.cc │ │ │ ├── ppc │ │ │ │ └── push_registers_asm.cc │ │ │ ├── riscv │ │ │ │ └── push_registers_asm.cc │ │ │ ├── s390 │ │ │ │ └── push_registers_asm.cc │ │ │ └── x64 │ │ │ │ ├── push_registers_asm.cc │ │ │ │ └── push_registers_masm.asm │ │ ├── basic-slot-set.h │ │ ├── stack.cc │ │ ├── stack.h │ │ ├── worklist.cc │ │ └── worklist.h │ ├── basic-memory-chunk.cc │ ├── basic-memory-chunk.h │ ├── code-object-registry.cc │ ├── code-object-registry.h │ ├── code-range.cc │ ├── code-range.h │ ├── code-stats.cc │ ├── code-stats.h │ ├── collection-barrier.cc │ ├── collection-barrier.h │ ├── combined-heap.cc │ ├── combined-heap.h │ ├── concurrent-allocator-inl.h │ ├── concurrent-allocator.cc │ ├── concurrent-allocator.h │ ├── concurrent-marking.cc │ ├── concurrent-marking.h │ ├── conservative-stack-visitor.cc │ ├── conservative-stack-visitor.h │ ├── cppgc-js │ │ ├── DEPS │ │ ├── cpp-heap.cc │ │ ├── cpp-heap.h │ │ ├── cpp-marking-state-inl.h │ │ ├── cpp-marking-state.h │ │ ├── cpp-snapshot.cc │ │ ├── cpp-snapshot.h │ │ ├── cross-heap-remembered-set.cc │ │ ├── cross-heap-remembered-set.h │ │ ├── unified-heap-marking-state-inl.h │ │ ├── unified-heap-marking-state.cc │ │ ├── unified-heap-marking-state.h │ │ ├── unified-heap-marking-verifier.cc │ │ ├── unified-heap-marking-verifier.h │ │ ├── unified-heap-marking-visitor.cc │ │ ├── unified-heap-marking-visitor.h │ │ ├── wrappable-info-inl.h │ │ └── wrappable-info.h │ ├── cppgc │ │ ├── DEPS │ │ ├── allocation.cc │ │ ├── caged-heap-local-data.cc │ │ ├── caged-heap.cc │ │ ├── caged-heap.h │ │ ├── compaction-worklists.cc │ │ ├── compaction-worklists.h │ │ ├── compactor.cc │ │ ├── compactor.h │ │ ├── concurrent-marker.cc │ │ ├── concurrent-marker.h │ │ ├── explicit-management.cc │ │ ├── free-list.cc │ │ ├── free-list.h │ │ ├── garbage-collector.h │ │ ├── gc-info-table.cc │ │ ├── gc-info-table.h │ │ ├── gc-info.cc │ │ ├── gc-invoker.cc │ │ ├── gc-invoker.h │ │ ├── globals.h │ │ ├── heap-base.cc │ │ ├── heap-base.h │ │ ├── heap-config.h │ │ ├── heap-consistency.cc │ │ ├── heap-growing.cc │ │ ├── heap-growing.h │ │ ├── heap-object-header.cc │ │ ├── heap-object-header.h │ │ ├── heap-page.cc │ │ ├── heap-page.h │ │ ├── heap-space.cc │ │ ├── heap-space.h │ │ ├── heap-state.cc │ │ ├── heap-statistics-collector.cc │ │ ├── heap-statistics-collector.h │ │ ├── heap-visitor.h │ │ ├── heap.cc │ │ ├── heap.h │ │ ├── incremental-marking-schedule.cc │ │ ├── incremental-marking-schedule.h │ │ ├── liveness-broker.cc │ │ ├── liveness-broker.h │ │ ├── logging.cc │ │ ├── marker.cc │ │ ├── marker.h │ │ ├── marking-state.cc │ │ ├── marking-state.h │ │ ├── marking-verifier.cc │ │ ├── marking-verifier.h │ │ ├── marking-visitor.cc │ │ ├── marking-visitor.h │ │ ├── marking-worklists.cc │ │ ├── marking-worklists.h │ │ ├── member-storage.cc │ │ ├── member-storage.h │ │ ├── memory.cc │ │ ├── memory.h │ │ ├── metric-recorder.h │ │ ├── name-trait.cc │ │ ├── object-allocator.cc │ │ ├── object-allocator.h │ │ ├── object-poisoner.h │ │ ├── object-size-trait.cc │ │ ├── object-start-bitmap.h │ │ ├── object-view.h │ │ ├── page-memory.cc │ │ ├── page-memory.h │ │ ├── persistent-node.cc │ │ ├── platform.cc │ │ ├── platform.h │ │ ├── pointer-policies.cc │ │ ├── prefinalizer-handler.cc │ │ ├── prefinalizer-handler.h │ │ ├── process-heap-statistics.cc │ │ ├── process-heap-statistics.h │ │ ├── process-heap.cc │ │ ├── process-heap.h │ │ ├── raw-heap.cc │ │ ├── raw-heap.h │ │ ├── remembered-set.cc │ │ ├── remembered-set.h │ │ ├── stats-collector.cc │ │ ├── stats-collector.h │ │ ├── sweeper.cc │ │ ├── sweeper.h │ │ ├── task-handle.h │ │ ├── testing.cc │ │ ├── trace-event.h │ │ ├── trace-trait.cc │ │ ├── unmarker.h │ │ ├── virtual-memory.cc │ │ ├── virtual-memory.h │ │ ├── visitor.cc │ │ ├── visitor.h │ │ ├── write-barrier.cc │ │ └── write-barrier.h │ ├── ephemeron-remembered-set.cc │ ├── ephemeron-remembered-set.h │ ├── evacuation-allocator-inl.h │ ├── evacuation-allocator.h │ ├── evacuation-verifier-inl.h │ ├── evacuation-verifier.cc │ ├── evacuation-verifier.h │ ├── factory-base-inl.h │ ├── factory-base.cc │ ├── factory-base.h │ ├── factory-inl.h │ ├── factory.cc │ ├── factory.h │ ├── finalization-registry-cleanup-task.cc │ ├── finalization-registry-cleanup-task.h │ ├── free-list-inl.h │ ├── free-list.cc │ ├── free-list.h │ ├── gc-callbacks.h │ ├── gc-idle-time-handler.cc │ ├── gc-idle-time-handler.h │ ├── gc-tracer-inl.h │ ├── gc-tracer.cc │ ├── gc-tracer.h │ ├── heap-allocator-inl.h │ ├── heap-allocator.cc │ ├── heap-allocator.h │ ├── heap-controller.cc │ ├── heap-controller.h │ ├── heap-inl.h │ ├── heap-layout-tracer.cc │ ├── heap-layout-tracer.h │ ├── heap-verifier.cc │ ├── heap-verifier.h │ ├── heap-write-barrier-inl.h │ ├── heap-write-barrier.cc │ ├── heap-write-barrier.h │ ├── heap.cc │ ├── heap.h │ ├── incremental-marking-inl.h │ ├── incremental-marking-job.cc │ ├── incremental-marking-job.h │ ├── incremental-marking.cc │ ├── incremental-marking.h │ ├── index-generator.cc │ ├── index-generator.h │ ├── large-spaces.cc │ ├── large-spaces.h │ ├── linear-allocation-area.h │ ├── list.h │ ├── local-factory-inl.h │ ├── local-factory.cc │ ├── local-factory.h │ ├── local-heap-inl.h │ ├── local-heap.cc │ ├── local-heap.h │ ├── mark-compact-inl.h │ ├── mark-compact.cc │ ├── mark-compact.h │ ├── marking-barrier-inl.h │ ├── marking-barrier.cc │ ├── marking-barrier.h │ ├── marking-inl.h │ ├── marking-state-inl.h │ ├── marking-state.h │ ├── marking-visitor-inl.h │ ├── marking-visitor.h │ ├── marking-worklist-inl.h │ ├── marking-worklist.cc │ ├── marking-worklist.h │ ├── marking.cc │ ├── marking.h │ ├── memory-allocator.cc │ ├── memory-allocator.h │ ├── memory-balancer.cc │ ├── memory-balancer.h │ ├── memory-chunk-inl.h │ ├── memory-chunk-layout.cc │ ├── memory-chunk-layout.h │ ├── memory-chunk.cc │ ├── memory-chunk.h │ ├── memory-measurement-inl.h │ ├── memory-measurement.cc │ ├── memory-measurement.h │ ├── memory-reducer.cc │ ├── memory-reducer.h │ ├── minor-gc-job.cc │ ├── minor-gc-job.h │ ├── new-spaces-inl.h │ ├── new-spaces.cc │ ├── new-spaces.h │ ├── object-lock.h │ ├── object-stats.cc │ ├── object-stats.h │ ├── objects-visiting-inl.h │ ├── objects-visiting.cc │ ├── objects-visiting.h │ ├── paged-spaces-inl.h │ ├── paged-spaces.cc │ ├── paged-spaces.h │ ├── parallel-work-item.h │ ├── parked-scope-inl.h │ ├── parked-scope.h │ ├── pretenuring-handler-inl.h │ ├── pretenuring-handler.cc │ ├── pretenuring-handler.h │ ├── progress-bar.h │ ├── read-only-heap-inl.h │ ├── read-only-heap.cc │ ├── read-only-heap.h │ ├── read-only-spaces.cc │ ├── read-only-spaces.h │ ├── reference-summarizer.cc │ ├── reference-summarizer.h │ ├── remembered-set-inl.h │ ├── remembered-set.h │ ├── safepoint.cc │ ├── safepoint.h │ ├── scavenger-inl.h │ ├── scavenger.cc │ ├── scavenger.h │ ├── setup-heap-internal.cc │ ├── slot-set.cc │ ├── slot-set.h │ ├── spaces-inl.h │ ├── spaces.cc │ ├── spaces.h │ ├── stress-scavenge-observer.cc │ ├── stress-scavenge-observer.h │ ├── sweeper.cc │ ├── sweeper.h │ ├── third-party │ │ ├── heap-api-stub.cc │ │ └── heap-api.h │ ├── traced-handles-marking-visitor.cc │ ├── traced-handles-marking-visitor.h │ ├── weak-object-worklists.cc │ └── weak-object-worklists.h ├── ic │ ├── DIR_METADATA │ ├── OWNERS │ ├── accessor-assembler.cc │ ├── accessor-assembler.h │ ├── binary-op-assembler.cc │ ├── binary-op-assembler.h │ ├── call-optimization.cc │ ├── call-optimization.h │ ├── handler-configuration-inl.h │ ├── handler-configuration.cc │ ├── handler-configuration.h │ ├── handler-configuration.tq │ ├── ic-inl.h │ ├── ic-stats.cc │ ├── ic-stats.h │ ├── ic.cc │ ├── ic.h │ ├── keyed-store-generic.cc │ ├── keyed-store-generic.h │ ├── stub-cache.cc │ ├── stub-cache.h │ ├── unary-op-assembler.cc │ └── unary-op-assembler.h ├── init │ ├── DIR_METADATA │ ├── OWNERS │ ├── bootstrapper.cc │ ├── bootstrapper.h │ ├── heap-symbols.h │ ├── icu_util.cc │ ├── icu_util.h │ ├── isolate-allocator.cc │ ├── isolate-allocator.h │ ├── setup-isolate-deserialize.cc │ ├── setup-isolate-full.cc │ ├── setup-isolate.h │ ├── startup-data-util.cc │ ├── startup-data-util.h │ ├── v8.cc │ └── v8.h ├── inspector │ ├── BUILD.gn │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── crc32.cc │ ├── crc32.h │ ├── custom-preview.cc │ ├── custom-preview.h │ ├── injected-script.cc │ ├── injected-script.h │ ├── inspected-context.cc │ ├── inspected-context.h │ ├── inspector_protocol_config.json │ ├── remote-object-id.cc │ ├── remote-object-id.h │ ├── search-util.cc │ ├── search-util.h │ ├── string-16.cc │ ├── string-16.h │ ├── string-util.cc │ ├── string-util.h │ ├── test-interface.cc │ ├── test-interface.h │ ├── v8-console-agent-impl.cc │ ├── v8-console-agent-impl.h │ ├── v8-console-message.cc │ ├── v8-console-message.h │ ├── v8-console.cc │ ├── v8-console.h │ ├── v8-debugger-agent-impl.cc │ ├── v8-debugger-agent-impl.h │ ├── v8-debugger-barrier.cc │ ├── v8-debugger-barrier.h │ ├── v8-debugger-id.cc │ ├── v8-debugger-id.h │ ├── v8-debugger-script.cc │ ├── v8-debugger-script.h │ ├── v8-debugger.cc │ ├── v8-debugger.h │ ├── v8-deep-serializer.cc │ ├── v8-deep-serializer.h │ ├── v8-heap-profiler-agent-impl.cc │ ├── v8-heap-profiler-agent-impl.h │ ├── v8-inspector-impl.cc │ ├── v8-inspector-impl.h │ ├── v8-inspector-session-impl.cc │ ├── v8-inspector-session-impl.h │ ├── v8-profiler-agent-impl.cc │ ├── v8-profiler-agent-impl.h │ ├── v8-regex.cc │ ├── v8-regex.h │ ├── v8-runtime-agent-impl.cc │ ├── v8-runtime-agent-impl.h │ ├── v8-schema-agent-impl.cc │ ├── v8-schema-agent-impl.h │ ├── v8-serialization-duplicate-tracker.cc │ ├── v8-serialization-duplicate-tracker.h │ ├── v8-stack-trace-impl.cc │ ├── v8-stack-trace-impl.h │ ├── v8-string-conversions.cc │ ├── v8-string-conversions.h │ ├── v8-value-utils.cc │ ├── v8-value-utils.h │ ├── value-mirror.cc │ └── value-mirror.h ├── interpreter │ ├── DIR_METADATA │ ├── OWNERS │ ├── block-coverage-builder.h │ ├── bytecode-array-builder.cc │ ├── bytecode-array-builder.h │ ├── bytecode-array-iterator.cc │ ├── bytecode-array-iterator.h │ ├── bytecode-array-random-iterator.cc │ ├── bytecode-array-random-iterator.h │ ├── bytecode-array-writer.cc │ ├── bytecode-array-writer.h │ ├── bytecode-decoder.cc │ ├── bytecode-decoder.h │ ├── bytecode-flags.cc │ ├── bytecode-flags.h │ ├── bytecode-generator.cc │ ├── bytecode-generator.h │ ├── bytecode-jump-table.h │ ├── bytecode-label.cc │ ├── bytecode-label.h │ ├── bytecode-node.cc │ ├── bytecode-node.h │ ├── bytecode-operands.cc │ ├── bytecode-operands.h │ ├── bytecode-register-allocator.h │ ├── bytecode-register-optimizer.cc │ ├── bytecode-register-optimizer.h │ ├── bytecode-register.cc │ ├── bytecode-register.h │ ├── bytecode-source-info.cc │ ├── bytecode-source-info.h │ ├── bytecode-traits.h │ ├── bytecodes.cc │ ├── bytecodes.h │ ├── constant-array-builder.cc │ ├── constant-array-builder.h │ ├── control-flow-builders.cc │ ├── control-flow-builders.h │ ├── handler-table-builder.cc │ ├── handler-table-builder.h │ ├── interpreter-assembler.cc │ ├── interpreter-assembler.h │ ├── interpreter-generator.cc │ ├── interpreter-generator.h │ ├── interpreter-intrinsics-generator.cc │ ├── interpreter-intrinsics-generator.h │ ├── interpreter-intrinsics.cc │ ├── interpreter-intrinsics.h │ ├── interpreter.cc │ └── interpreter.h ├── json │ ├── DIR_METADATA │ ├── OWNERS │ ├── json-parser.cc │ ├── json-parser.h │ ├── json-stringifier.cc │ └── json-stringifier.h ├── libplatform │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── default-foreground-task-runner.cc │ ├── default-foreground-task-runner.h │ ├── default-job.cc │ ├── default-job.h │ ├── default-platform.cc │ ├── default-platform.h │ ├── default-thread-isolated-allocator.cc │ ├── default-thread-isolated-allocator.h │ ├── default-worker-threads-task-runner.cc │ ├── default-worker-threads-task-runner.h │ ├── delayed-task-queue.cc │ ├── delayed-task-queue.h │ ├── etw │ │ └── etw-provider-win.h │ ├── task-queue.cc │ ├── task-queue.h │ ├── tracing │ │ ├── DEPS │ │ ├── OWNERS │ │ ├── recorder-mac.cc │ │ ├── recorder-win.cc │ │ ├── recorder.h │ │ ├── trace-buffer.cc │ │ ├── trace-buffer.h │ │ ├── trace-config.cc │ │ ├── trace-event-listener.h │ │ ├── trace-object.cc │ │ ├── trace-writer.cc │ │ ├── trace-writer.h │ │ └── tracing-controller.cc │ ├── worker-thread.cc │ └── worker-thread.h ├── libsampler │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── sampler.cc │ └── sampler.h ├── logging │ ├── OWNERS │ ├── code-events.h │ ├── counters-definitions.h │ ├── counters-scopes.h │ ├── counters.cc │ ├── counters.h │ ├── local-logger.cc │ ├── local-logger.h │ ├── log-file.cc │ ├── log-file.h │ ├── log-inl.h │ ├── log.cc │ ├── log.h │ ├── metrics.cc │ ├── metrics.h │ ├── runtime-call-stats-scope.h │ ├── runtime-call-stats.cc │ ├── runtime-call-stats.h │ ├── tracing-flags.cc │ └── tracing-flags.h ├── maglev │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── arm │ │ ├── maglev-assembler-arm-inl.h │ │ ├── maglev-assembler-arm.cc │ │ └── maglev-ir-arm.cc │ ├── arm64 │ │ ├── maglev-assembler-arm64-inl.h │ │ ├── maglev-assembler-arm64.cc │ │ └── maglev-ir-arm64.cc │ ├── maglev-assembler-inl.h │ ├── maglev-assembler.cc │ ├── maglev-assembler.h │ ├── maglev-basic-block.h │ ├── maglev-code-gen-state.h │ ├── maglev-code-generator.cc │ ├── maglev-code-generator.h │ ├── maglev-compilation-info.cc │ ├── maglev-compilation-info.h │ ├── maglev-compilation-unit.cc │ ├── maglev-compilation-unit.h │ ├── maglev-compiler.cc │ ├── maglev-compiler.h │ ├── maglev-concurrent-dispatcher.cc │ ├── maglev-concurrent-dispatcher.h │ ├── maglev-graph-builder.cc │ ├── maglev-graph-builder.h │ ├── maglev-graph-labeller.h │ ├── maglev-graph-printer.cc │ ├── maglev-graph-printer.h │ ├── maglev-graph-processor.h │ ├── maglev-graph-verifier.h │ ├── maglev-graph.h │ ├── maglev-interpreter-frame-state.cc │ ├── maglev-interpreter-frame-state.h │ ├── maglev-ir-inl.h │ ├── maglev-ir.cc │ ├── maglev-ir.h │ ├── maglev-phi-representation-selector.cc │ ├── maglev-phi-representation-selector.h │ ├── maglev-regalloc-data.h │ ├── maglev-regalloc.cc │ ├── maglev-regalloc.h │ ├── maglev-register-frame-array.h │ ├── maglev.cc │ ├── maglev.h │ └── x64 │ │ ├── maglev-assembler-x64-inl.h │ │ ├── maglev-assembler-x64.cc │ │ └── maglev-ir-x64.cc ├── numbers │ ├── DIR_METADATA │ ├── OWNERS │ ├── conversions-inl.h │ ├── conversions.cc │ ├── conversions.h │ ├── hash-seed-inl.h │ ├── integer-literal-inl.h │ ├── integer-literal.h │ ├── math-random.cc │ └── math-random.h ├── objects │ ├── DIR_METADATA │ ├── OWNERS │ ├── abstract-code-inl.h │ ├── abstract-code.cc │ ├── abstract-code.h │ ├── all-objects-inl.h │ ├── allocation-site-inl.h │ ├── allocation-site-scopes-inl.h │ ├── allocation-site-scopes.h │ ├── allocation-site.h │ ├── allocation-site.tq │ ├── api-callbacks-inl.h │ ├── api-callbacks.h │ ├── api-callbacks.tq │ ├── arguments-inl.h │ ├── arguments.h │ ├── arguments.tq │ ├── backing-store.cc │ ├── backing-store.h │ ├── bigint-inl.h │ ├── bigint.cc │ ├── bigint.h │ ├── bigint.tq │ ├── bytecode-array-inl.h │ ├── bytecode-array.cc │ ├── bytecode-array.h │ ├── bytecode-array.tq │ ├── call-site-info-inl.h │ ├── call-site-info.cc │ ├── call-site-info.h │ ├── call-site-info.tq │ ├── cell-inl.h │ ├── cell.h │ ├── cell.tq │ ├── code-inl.h │ ├── code-kind.cc │ ├── code-kind.h │ ├── code.cc │ ├── code.h │ ├── compilation-cache-table-inl.h │ ├── compilation-cache-table.cc │ ├── compilation-cache-table.h │ ├── compressed-slots-inl.h │ ├── compressed-slots.h │ ├── contexts-inl.h │ ├── contexts.cc │ ├── contexts.h │ ├── contexts.tq │ ├── data-handler-inl.h │ ├── data-handler.h │ ├── data-handler.tq │ ├── debug-objects-inl.h │ ├── debug-objects.cc │ ├── debug-objects.h │ ├── debug-objects.tq │ ├── deoptimization-data-inl.h │ ├── deoptimization-data.cc │ ├── deoptimization-data.h │ ├── dependent-code-inl.h │ ├── dependent-code.cc │ ├── dependent-code.h │ ├── descriptor-array-inl.h │ ├── descriptor-array.h │ ├── descriptor-array.tq │ ├── dictionary-inl.h │ ├── dictionary.h │ ├── elements-inl.h │ ├── elements-kind.cc │ ├── elements-kind.h │ ├── elements.cc │ ├── elements.h │ ├── embedder-data-array-inl.h │ ├── embedder-data-array.cc │ ├── embedder-data-array.h │ ├── embedder-data-array.tq │ ├── embedder-data-slot-inl.h │ ├── embedder-data-slot.h │ ├── feedback-cell-inl.h │ ├── feedback-cell.h │ ├── feedback-cell.tq │ ├── feedback-vector-inl.h │ ├── feedback-vector.cc │ ├── feedback-vector.h │ ├── feedback-vector.tq │ ├── field-index-inl.h │ ├── field-index.h │ ├── field-type.cc │ ├── field-type.h │ ├── fixed-array-inl.h │ ├── fixed-array.h │ ├── fixed-array.tq │ ├── foreign-inl.h │ ├── foreign.h │ ├── foreign.tq │ ├── free-space-inl.h │ ├── free-space.h │ ├── free-space.tq │ ├── function-kind.h │ ├── function-syntax-kind.h │ ├── hash-table-inl.h │ ├── hash-table.h │ ├── heap-number-inl.h │ ├── heap-number.h │ ├── heap-number.tq │ ├── heap-object-inl.h │ ├── heap-object.h │ ├── heap-object.tq │ ├── hole-inl.h │ ├── hole.h │ ├── hole.tq │ ├── instance-type-inl.h │ ├── instance-type.h │ ├── instruction-stream-inl.h │ ├── instruction-stream.cc │ ├── instruction-stream.h │ ├── internal-index.h │ ├── intl-objects.cc │ ├── intl-objects.h │ ├── intl-objects.tq │ ├── js-array-buffer-inl.h │ ├── js-array-buffer.cc │ ├── js-array-buffer.h │ ├── js-array-buffer.tq │ ├── js-array-inl.h │ ├── js-array.h │ ├── js-array.tq │ ├── js-atomics-synchronization-inl.h │ ├── js-atomics-synchronization.cc │ ├── js-atomics-synchronization.h │ ├── js-atomics-synchronization.tq │ ├── js-break-iterator-inl.h │ ├── js-break-iterator.cc │ ├── js-break-iterator.h │ ├── js-break-iterator.tq │ ├── js-collator-inl.h │ ├── js-collator.cc │ ├── js-collator.h │ ├── js-collator.tq │ ├── js-collection-inl.h │ ├── js-collection-iterator-inl.h │ ├── js-collection-iterator.h │ ├── js-collection-iterator.tq │ ├── js-collection.h │ ├── js-collection.tq │ ├── js-date-time-format-inl.h │ ├── js-date-time-format.cc │ ├── js-date-time-format.h │ ├── js-date-time-format.tq │ ├── js-display-names-inl.h │ ├── js-display-names.cc │ ├── js-display-names.h │ ├── js-display-names.tq │ ├── js-duration-format-inl.h │ ├── js-duration-format.cc │ ├── js-duration-format.h │ ├── js-duration-format.tq │ ├── js-function-inl.h │ ├── js-function.cc │ ├── js-function.h │ ├── js-function.tq │ ├── js-generator-inl.h │ ├── js-generator.h │ ├── js-generator.tq │ ├── js-iterator-helpers-inl.h │ ├── js-iterator-helpers.h │ ├── js-iterator-helpers.tq │ ├── js-list-format-inl.h │ ├── js-list-format.cc │ ├── js-list-format.h │ ├── js-list-format.tq │ ├── js-locale-inl.h │ ├── js-locale.cc │ ├── js-locale.h │ ├── js-locale.tq │ ├── js-number-format-inl.h │ ├── js-number-format.cc │ ├── js-number-format.h │ ├── js-number-format.tq │ ├── js-objects-inl.h │ ├── js-objects.cc │ ├── js-objects.h │ ├── js-objects.tq │ ├── js-plural-rules-inl.h │ ├── js-plural-rules.cc │ ├── js-plural-rules.h │ ├── js-plural-rules.tq │ ├── js-promise-inl.h │ ├── js-promise.h │ ├── js-promise.tq │ ├── js-proxy-inl.h │ ├── js-proxy.h │ ├── js-proxy.tq │ ├── js-raw-json-inl.h │ ├── js-raw-json.cc │ ├── js-raw-json.h │ ├── js-raw-json.tq │ ├── js-regexp-inl.h │ ├── js-regexp-string-iterator-inl.h │ ├── js-regexp-string-iterator.h │ ├── js-regexp-string-iterator.tq │ ├── js-regexp.cc │ ├── js-regexp.h │ ├── js-regexp.tq │ ├── js-relative-time-format-inl.h │ ├── js-relative-time-format.cc │ ├── js-relative-time-format.h │ ├── js-relative-time-format.tq │ ├── js-segment-iterator-inl.h │ ├── js-segment-iterator.cc │ ├── js-segment-iterator.h │ ├── js-segment-iterator.tq │ ├── js-segmenter-inl.h │ ├── js-segmenter.cc │ ├── js-segmenter.h │ ├── js-segmenter.tq │ ├── js-segments-inl.h │ ├── js-segments.cc │ ├── js-segments.h │ ├── js-segments.tq │ ├── js-shadow-realm-inl.h │ ├── js-shadow-realm.h │ ├── js-shadow-realm.tq │ ├── js-shared-array-inl.h │ ├── js-shared-array.h │ ├── js-shared-array.tq │ ├── js-struct-inl.h │ ├── js-struct.cc │ ├── js-struct.h │ ├── js-struct.tq │ ├── js-temporal-objects-inl.h │ ├── js-temporal-objects.cc │ ├── js-temporal-objects.h │ ├── js-temporal-objects.tq │ ├── js-weak-refs-inl.h │ ├── js-weak-refs.h │ ├── js-weak-refs.tq │ ├── keys.cc │ ├── keys.h │ ├── literal-objects-inl.h │ ├── literal-objects.cc │ ├── literal-objects.h │ ├── literal-objects.tq │ ├── lookup-cache-inl.h │ ├── lookup-cache.cc │ ├── lookup-cache.h │ ├── lookup-inl.h │ ├── lookup.cc │ ├── lookup.h │ ├── managed-inl.h │ ├── managed.cc │ ├── managed.h │ ├── map-inl.h │ ├── map-updater.cc │ ├── map-updater.h │ ├── map.cc │ ├── map.h │ ├── map.tq │ ├── maybe-object-inl.h │ ├── maybe-object.h │ ├── megadom-handler-inl.h │ ├── megadom-handler.h │ ├── megadom-handler.tq │ ├── microtask-inl.h │ ├── microtask.h │ ├── microtask.tq │ ├── module-inl.h │ ├── module.cc │ ├── module.h │ ├── module.tq │ ├── name-inl.h │ ├── name.h │ ├── name.tq │ ├── object-list-macros.h │ ├── object-macros-undef.h │ ├── object-macros.h │ ├── object-type.cc │ ├── object-type.h │ ├── objects-body-descriptors-inl.h │ ├── objects-body-descriptors.h │ ├── objects-definitions.h │ ├── objects-inl.h │ ├── objects.cc │ ├── objects.h │ ├── oddball-inl.h │ ├── oddball.h │ ├── oddball.tq │ ├── option-utils.cc │ ├── option-utils.h │ ├── ordered-hash-table-inl.h │ ├── ordered-hash-table.cc │ ├── ordered-hash-table.h │ ├── ordered-hash-table.tq │ ├── primitive-heap-object-inl.h │ ├── primitive-heap-object.h │ ├── primitive-heap-object.tq │ ├── promise-inl.h │ ├── promise.h │ ├── promise.tq │ ├── property-array-inl.h │ ├── property-array.h │ ├── property-array.tq │ ├── property-cell-inl.h │ ├── property-cell.h │ ├── property-cell.tq │ ├── property-descriptor-object-inl.h │ ├── property-descriptor-object.h │ ├── property-descriptor-object.tq │ ├── property-descriptor.cc │ ├── property-descriptor.h │ ├── property-details.h │ ├── property.cc │ ├── property.h │ ├── prototype-info-inl.h │ ├── prototype-info.h │ ├── prototype-info.tq │ ├── prototype-inl.h │ ├── prototype.h │ ├── regexp-match-info-inl.h │ ├── regexp-match-info.h │ ├── regexp-match-info.tq │ ├── scope-info-inl.h │ ├── scope-info.cc │ ├── scope-info.h │ ├── scope-info.tq │ ├── script-inl.h │ ├── script.h │ ├── script.tq │ ├── shared-function-info-inl.h │ ├── shared-function-info.cc │ ├── shared-function-info.h │ ├── shared-function-info.tq │ ├── simd.cc │ ├── simd.h │ ├── slots-atomic-inl.h │ ├── slots-inl.h │ ├── slots.h │ ├── smi-inl.h │ ├── smi.h │ ├── source-text-module-inl.h │ ├── source-text-module.cc │ ├── source-text-module.h │ ├── source-text-module.tq │ ├── string-comparator.cc │ ├── string-comparator.h │ ├── string-forwarding-table-inl.h │ ├── string-forwarding-table.cc │ ├── string-forwarding-table.h │ ├── string-inl.h │ ├── string-set-inl.h │ ├── string-set.h │ ├── string-table-inl.h │ ├── string-table.cc │ ├── string-table.h │ ├── string.cc │ ├── string.h │ ├── string.tq │ ├── struct-inl.h │ ├── struct.h │ ├── struct.tq │ ├── swiss-hash-table-helpers.h │ ├── swiss-hash-table-helpers.tq │ ├── swiss-name-dictionary-inl.h │ ├── swiss-name-dictionary.cc │ ├── swiss-name-dictionary.h │ ├── swiss-name-dictionary.tq │ ├── symbol-table.cc │ ├── synthetic-module-inl.h │ ├── synthetic-module.cc │ ├── synthetic-module.h │ ├── synthetic-module.tq │ ├── tagged-field-inl.h │ ├── tagged-field.h │ ├── tagged-impl-inl.h │ ├── tagged-impl.cc │ ├── tagged-impl.h │ ├── tagged-index.h │ ├── tagged-value-inl.h │ ├── tagged-value.h │ ├── tagged.h │ ├── template-objects-inl.h │ ├── template-objects.cc │ ├── template-objects.h │ ├── template-objects.tq │ ├── templates-inl.h │ ├── templates.cc │ ├── templates.h │ ├── templates.tq │ ├── torque-defined-classes-inl.h │ ├── torque-defined-classes.h │ ├── torque-defined-classes.tq │ ├── transitions-inl.h │ ├── transitions.cc │ ├── transitions.h │ ├── turbofan-types-inl.h │ ├── turbofan-types.h │ ├── turbofan-types.tq │ ├── turboshaft-types-inl.h │ ├── turboshaft-types.h │ ├── turboshaft-types.tq │ ├── type-hints.cc │ ├── type-hints.h │ ├── value-serializer.cc │ ├── value-serializer.h │ ├── visitors-inl.h │ ├── visitors.cc │ └── visitors.h ├── parsing │ ├── DIR_METADATA │ ├── OWNERS │ ├── expression-scope.h │ ├── func-name-inferrer.cc │ ├── func-name-inferrer.h │ ├── import-assertions.cc │ ├── import-assertions.h │ ├── keywords-gen.h │ ├── keywords.txt │ ├── literal-buffer.cc │ ├── literal-buffer.h │ ├── parse-info.cc │ ├── parse-info.h │ ├── parser-base.h │ ├── parser.cc │ ├── parser.h │ ├── parsing.cc │ ├── parsing.h │ ├── pending-compilation-error-handler.cc │ ├── pending-compilation-error-handler.h │ ├── preparse-data-impl.h │ ├── preparse-data.cc │ ├── preparse-data.h │ ├── preparser-logger.h │ ├── preparser.cc │ ├── preparser.h │ ├── rewriter.cc │ ├── rewriter.h │ ├── scanner-character-streams.cc │ ├── scanner-character-streams.h │ ├── scanner-inl.h │ ├── scanner.cc │ ├── scanner.h │ ├── token.cc │ └── token.h ├── profiler │ ├── DIR_METADATA │ ├── OWNERS │ ├── allocation-tracker.cc │ ├── allocation-tracker.h │ ├── circular-queue-inl.h │ ├── circular-queue.h │ ├── cpu-profiler-inl.h │ ├── cpu-profiler.cc │ ├── cpu-profiler.h │ ├── heap-profiler.cc │ ├── heap-profiler.h │ ├── heap-snapshot-generator-inl.h │ ├── heap-snapshot-generator.cc │ ├── heap-snapshot-generator.h │ ├── output-stream-writer.h │ ├── profile-generator-inl.h │ ├── profile-generator.cc │ ├── profile-generator.h │ ├── profiler-listener.cc │ ├── profiler-listener.h │ ├── profiler-stats.cc │ ├── profiler-stats.h │ ├── sampling-heap-profiler.cc │ ├── sampling-heap-profiler.h │ ├── strings-storage.cc │ ├── strings-storage.h │ ├── symbolizer.cc │ ├── symbolizer.h │ ├── tick-sample.cc │ ├── tick-sample.h │ ├── tracing-cpu-profiler.cc │ ├── tracing-cpu-profiler.h │ ├── weak-code-registry.cc │ └── weak-code-registry.h ├── protobuf │ ├── DEPS │ ├── OWNERS │ └── protobuf-compiler-main.cc ├── regexp │ ├── DIR_METADATA │ ├── OWNERS │ ├── arm │ │ ├── regexp-macro-assembler-arm.cc │ │ └── regexp-macro-assembler-arm.h │ ├── arm64 │ │ ├── regexp-macro-assembler-arm64.cc │ │ └── regexp-macro-assembler-arm64.h │ ├── experimental │ │ ├── experimental-bytecode.cc │ │ ├── experimental-bytecode.h │ │ ├── experimental-compiler.cc │ │ ├── experimental-compiler.h │ │ ├── experimental-interpreter.cc │ │ ├── experimental-interpreter.h │ │ ├── experimental.cc │ │ └── experimental.h │ ├── gen-regexp-special-case.cc │ ├── ia32 │ │ ├── regexp-macro-assembler-ia32.cc │ │ └── regexp-macro-assembler-ia32.h │ ├── loong64 │ │ ├── regexp-macro-assembler-loong64.cc │ │ └── regexp-macro-assembler-loong64.h │ ├── mips64 │ │ ├── regexp-macro-assembler-mips64.cc │ │ └── regexp-macro-assembler-mips64.h │ ├── ppc │ │ ├── regexp-macro-assembler-ppc.cc │ │ └── regexp-macro-assembler-ppc.h │ ├── regexp-ast.cc │ ├── regexp-ast.h │ ├── regexp-bytecode-generator-inl.h │ ├── regexp-bytecode-generator.cc │ ├── regexp-bytecode-generator.h │ ├── regexp-bytecode-peephole.cc │ ├── regexp-bytecode-peephole.h │ ├── regexp-bytecodes.cc │ ├── regexp-bytecodes.h │ ├── regexp-compiler-tonode.cc │ ├── regexp-compiler.cc │ ├── regexp-compiler.h │ ├── regexp-dotprinter.cc │ ├── regexp-dotprinter.h │ ├── regexp-error.cc │ ├── regexp-error.h │ ├── regexp-flags.h │ ├── regexp-interpreter.cc │ ├── regexp-interpreter.h │ ├── regexp-macro-assembler-arch.h │ ├── regexp-macro-assembler-tracer.cc │ ├── regexp-macro-assembler-tracer.h │ ├── regexp-macro-assembler.cc │ ├── regexp-macro-assembler.h │ ├── regexp-nodes.h │ ├── regexp-parser.cc │ ├── regexp-parser.h │ ├── regexp-stack.cc │ ├── regexp-stack.h │ ├── regexp-utils.cc │ ├── regexp-utils.h │ ├── regexp.cc │ ├── regexp.h │ ├── riscv │ │ ├── regexp-macro-assembler-riscv.cc │ │ └── regexp-macro-assembler-riscv.h │ ├── s390 │ │ ├── regexp-macro-assembler-s390.cc │ │ └── regexp-macro-assembler-s390.h │ ├── special-case.h │ └── x64 │ │ ├── regexp-macro-assembler-x64.cc │ │ └── regexp-macro-assembler-x64.h ├── roots │ ├── DIR_METADATA │ ├── OWNERS │ ├── roots-inl.h │ ├── roots.cc │ ├── roots.h │ └── static-roots.h ├── runtime │ ├── DIR_METADATA │ ├── OWNERS │ ├── runtime-array.cc │ ├── runtime-atomics.cc │ ├── runtime-bigint.cc │ ├── runtime-classes.cc │ ├── runtime-collections.cc │ ├── runtime-compiler.cc │ ├── runtime-date.cc │ ├── runtime-debug.cc │ ├── runtime-forin.cc │ ├── runtime-function.cc │ ├── runtime-futex.cc │ ├── runtime-generator.cc │ ├── runtime-internal.cc │ ├── runtime-intl.cc │ ├── runtime-literals.cc │ ├── runtime-module.cc │ ├── runtime-numbers.cc │ ├── runtime-object.cc │ ├── runtime-operators.cc │ ├── runtime-promise.cc │ ├── runtime-proxy.cc │ ├── runtime-regexp.cc │ ├── runtime-scopes.cc │ ├── runtime-shadow-realm.cc │ ├── runtime-strings.cc │ ├── runtime-symbol.cc │ ├── runtime-temporal.cc │ ├── runtime-test-wasm.cc │ ├── runtime-test.cc │ ├── runtime-trace.cc │ ├── runtime-typedarray.cc │ ├── runtime-utils.h │ ├── runtime-wasm.cc │ ├── runtime-weak-refs.cc │ ├── runtime.cc │ └── runtime.h ├── sandbox │ ├── OWNERS │ ├── bounded-size-inl.h │ ├── bounded-size.h │ ├── code-pointer-inl.h │ ├── code-pointer-table-inl.h │ ├── code-pointer-table.cc │ ├── code-pointer-table.h │ ├── code-pointer.h │ ├── external-entity-table-inl.h │ ├── external-entity-table.h │ ├── external-pointer-inl.h │ ├── external-pointer-table-inl.h │ ├── external-pointer-table.cc │ ├── external-pointer-table.h │ ├── external-pointer.h │ ├── sandbox.cc │ ├── sandbox.h │ ├── sandboxed-pointer-inl.h │ ├── sandboxed-pointer.h │ ├── testing.cc │ └── testing.h ├── snapshot │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── code-serializer.cc │ ├── code-serializer.h │ ├── context-deserializer.cc │ ├── context-deserializer.h │ ├── context-serializer.cc │ ├── context-serializer.h │ ├── deserializer.cc │ ├── deserializer.h │ ├── embedded │ │ ├── embedded-data-inl.h │ │ ├── embedded-data.cc │ │ ├── embedded-data.h │ │ ├── embedded-empty.cc │ │ ├── embedded-file-writer-interface.h │ │ ├── embedded-file-writer.cc │ │ ├── embedded-file-writer.h │ │ ├── platform-embedded-file-writer-aix.cc │ │ ├── platform-embedded-file-writer-aix.h │ │ ├── platform-embedded-file-writer-base.cc │ │ ├── platform-embedded-file-writer-base.h │ │ ├── platform-embedded-file-writer-generic.cc │ │ ├── platform-embedded-file-writer-generic.h │ │ ├── platform-embedded-file-writer-mac.cc │ │ ├── platform-embedded-file-writer-mac.h │ │ ├── platform-embedded-file-writer-win.cc │ │ └── platform-embedded-file-writer-win.h │ ├── mksnapshot.cc │ ├── object-deserializer.cc │ ├── object-deserializer.h │ ├── read-only-deserializer.cc │ ├── read-only-deserializer.h │ ├── read-only-serializer-deserializer.h │ ├── read-only-serializer.cc │ ├── read-only-serializer.h │ ├── references.h │ ├── roots-serializer.cc │ ├── roots-serializer.h │ ├── serializer-deserializer.cc │ ├── serializer-deserializer.h │ ├── serializer-inl.h │ ├── serializer.cc │ ├── serializer.h │ ├── shared-heap-deserializer.cc │ ├── shared-heap-deserializer.h │ ├── shared-heap-serializer.cc │ ├── shared-heap-serializer.h │ ├── snapshot-compression.cc │ ├── snapshot-compression.h │ ├── snapshot-data.cc │ ├── snapshot-data.h │ ├── snapshot-empty.cc │ ├── snapshot-external.cc │ ├── snapshot-source-sink.cc │ ├── snapshot-source-sink.h │ ├── snapshot-utils.cc │ ├── snapshot-utils.h │ ├── snapshot.cc │ ├── snapshot.h │ ├── startup-deserializer.cc │ ├── startup-deserializer.h │ ├── startup-serializer.cc │ ├── startup-serializer.h │ ├── static-roots-gen.cc │ └── static-roots-gen.h ├── strings │ ├── DIR_METADATA │ ├── OWNERS │ ├── char-predicates-inl.h │ ├── char-predicates.cc │ ├── char-predicates.h │ ├── string-builder-inl.h │ ├── string-builder.cc │ ├── string-case.cc │ ├── string-case.h │ ├── string-hasher-inl.h │ ├── string-hasher.h │ ├── string-search.h │ ├── string-stream.cc │ ├── string-stream.h │ ├── unicode-decoder.cc │ ├── unicode-decoder.h │ ├── unicode-inl.h │ ├── unicode.cc │ ├── unicode.h │ ├── uri.cc │ └── uri.h ├── tasks │ ├── OWNERS │ ├── cancelable-task.cc │ ├── cancelable-task.h │ ├── operations-barrier.cc │ ├── operations-barrier.h │ ├── task-utils.cc │ └── task-utils.h ├── temporal │ ├── OWNERS │ ├── temporal-parser.cc │ └── temporal-parser.h ├── third_party │ ├── siphash │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── halfsiphash.cc │ │ └── halfsiphash.h │ ├── utf8-decoder │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.v8 │ │ ├── generalized-utf8-decoder.h │ │ └── utf8-decoder.h │ ├── valgrind │ │ ├── LICENSE │ │ ├── OWNERS │ │ └── valgrind.h │ └── vtune │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── v8-vtune.h │ │ ├── vtune-jit.cc │ │ ├── vtune-jit.h │ │ ├── vtuneapi.cc │ │ └── vtuneapi.h ├── torque │ ├── OWNERS │ ├── ast.h │ ├── cc-generator.cc │ ├── cc-generator.h │ ├── cfg.cc │ ├── cfg.h │ ├── class-debug-reader-generator.cc │ ├── constants.h │ ├── cpp-builder.cc │ ├── cpp-builder.h │ ├── csa-generator.cc │ ├── csa-generator.h │ ├── declarable.cc │ ├── declarable.h │ ├── declaration-visitor.cc │ ├── declaration-visitor.h │ ├── declarations.cc │ ├── declarations.h │ ├── earley-parser.cc │ ├── earley-parser.h │ ├── global-context.cc │ ├── global-context.h │ ├── implementation-visitor.cc │ ├── implementation-visitor.h │ ├── instance-type-generator.cc │ ├── instructions.cc │ ├── instructions.h │ ├── kythe-data.cc │ ├── kythe-data.h │ ├── ls │ │ ├── globals.h │ │ ├── json-parser.cc │ │ ├── json-parser.h │ │ ├── json.cc │ │ ├── json.h │ │ ├── message-handler.cc │ │ ├── message-handler.h │ │ ├── message-macros.h │ │ ├── message-pipe.h │ │ ├── message.h │ │ └── torque-language-server.cc │ ├── parameter-difference.h │ ├── runtime-macro-shims.h │ ├── runtime-support.h │ ├── server-data.cc │ ├── server-data.h │ ├── source-positions.cc │ ├── source-positions.h │ ├── torque-code-generator.cc │ ├── torque-code-generator.h │ ├── torque-compiler.cc │ ├── torque-compiler.h │ ├── torque-parser.cc │ ├── torque-parser.h │ ├── torque.cc │ ├── type-inference.cc │ ├── type-inference.h │ ├── type-oracle.cc │ ├── type-oracle.h │ ├── type-visitor.cc │ ├── type-visitor.h │ ├── types.cc │ ├── types.h │ ├── utils.cc │ └── utils.h ├── tracing │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── trace-categories.cc │ ├── trace-categories.h │ ├── trace-event.cc │ ├── trace-event.h │ ├── traced-value.cc │ ├── traced-value.h │ ├── tracing-category-observer.cc │ └── tracing-category-observer.h ├── trap-handler │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── handler-inside-posix.cc │ ├── handler-inside-posix.h │ ├── handler-inside-win.cc │ ├── handler-inside-win.h │ ├── handler-inside.cc │ ├── handler-outside-posix.cc │ ├── handler-outside-simulator.cc │ ├── handler-outside-win.cc │ ├── handler-outside.cc │ ├── handler-shared.cc │ ├── trap-handler-internal.h │ ├── trap-handler-simulator.h │ └── trap-handler.h ├── utils │ ├── DIR_METADATA │ ├── OWNERS │ ├── address-map.cc │ ├── address-map.h │ ├── allocation.cc │ ├── allocation.h │ ├── bit-vector.cc │ ├── bit-vector.h │ ├── boxed-float.h │ ├── detachable-vector.cc │ ├── detachable-vector.h │ ├── hex-format.cc │ ├── hex-format.h │ ├── identity-map.cc │ ├── identity-map.h │ ├── locked-queue-inl.h │ ├── locked-queue.h │ ├── memcopy.cc │ ├── memcopy.h │ ├── ostreams.cc │ ├── ostreams.h │ ├── scoped-list.h │ ├── sha-256.cc │ ├── sha-256.h │ ├── sparse-bit-vector.h │ ├── utils-inl.h │ ├── utils.cc │ ├── utils.h │ ├── v8dll-main.cc │ ├── version.cc │ └── version.h ├── wasm │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── baseline │ │ ├── DEPS │ │ ├── arm │ │ │ └── liftoff-assembler-arm.h │ │ ├── arm64 │ │ │ └── liftoff-assembler-arm64.h │ │ ├── ia32 │ │ │ └── liftoff-assembler-ia32.h │ │ ├── liftoff-assembler-defs.h │ │ ├── liftoff-assembler.cc │ │ ├── liftoff-assembler.h │ │ ├── liftoff-compiler.cc │ │ ├── liftoff-compiler.h │ │ ├── liftoff-register.h │ │ ├── loong64 │ │ │ └── liftoff-assembler-loong64.h │ │ ├── mips64 │ │ │ └── liftoff-assembler-mips64.h │ │ ├── ppc │ │ │ └── liftoff-assembler-ppc.h │ │ ├── riscv │ │ │ ├── liftoff-assembler-riscv.h │ │ │ ├── liftoff-assembler-riscv32.h │ │ │ └── liftoff-assembler-riscv64.h │ │ ├── s390 │ │ │ └── liftoff-assembler-s390.h │ │ └── x64 │ │ │ └── liftoff-assembler-x64.h │ ├── branch-hint-map.h │ ├── c-api.cc │ ├── c-api.h │ ├── canonical-types.cc │ ├── canonical-types.h │ ├── code-space-access.cc │ ├── code-space-access.h │ ├── compilation-environment.h │ ├── constant-expression-interface.cc │ ├── constant-expression-interface.h │ ├── constant-expression.cc │ ├── constant-expression.h │ ├── decoder.h │ ├── function-body-decoder-impl.h │ ├── function-body-decoder.cc │ ├── function-body-decoder.h │ ├── function-compiler.cc │ ├── function-compiler.h │ ├── graph-builder-interface.cc │ ├── graph-builder-interface.h │ ├── jump-table-assembler.cc │ ├── jump-table-assembler.h │ ├── leb-helper.h │ ├── local-decl-encoder.cc │ ├── local-decl-encoder.h │ ├── memory-tracing.cc │ ├── memory-tracing.h │ ├── module-compiler.cc │ ├── module-compiler.h │ ├── module-decoder-impl.h │ ├── module-decoder.cc │ ├── module-decoder.h │ ├── module-instantiate.cc │ ├── module-instantiate.h │ ├── names-provider.cc │ ├── names-provider.h │ ├── object-access.h │ ├── pgo.cc │ ├── pgo.h │ ├── simd-shuffle.cc │ ├── simd-shuffle.h │ ├── stacks.cc │ ├── stacks.h │ ├── streaming-decoder.cc │ ├── streaming-decoder.h │ ├── string-builder-multiline.h │ ├── string-builder.h │ ├── struct-types.h │ ├── sync-streaming-decoder.cc │ ├── value-type.cc │ ├── value-type.h │ ├── wasm-arguments.h │ ├── wasm-code-manager.cc │ ├── wasm-code-manager.h │ ├── wasm-constants.h │ ├── wasm-debug.cc │ ├── wasm-debug.h │ ├── wasm-disassembler-impl.h │ ├── wasm-disassembler.cc │ ├── wasm-disassembler.h │ ├── wasm-engine.cc │ ├── wasm-engine.h │ ├── wasm-external-refs.cc │ ├── wasm-external-refs.h │ ├── wasm-feature-flags.h │ ├── wasm-features.cc │ ├── wasm-features.h │ ├── wasm-import-wrapper-cache.cc │ ├── wasm-import-wrapper-cache.h │ ├── wasm-init-expr.h │ ├── wasm-js.cc │ ├── wasm-js.h │ ├── wasm-limits.h │ ├── wasm-linkage.h │ ├── wasm-module-builder.cc │ ├── wasm-module-builder.h │ ├── wasm-module-sourcemap.cc │ ├── wasm-module-sourcemap.h │ ├── wasm-module.cc │ ├── wasm-module.h │ ├── wasm-objects-inl.h │ ├── wasm-objects.cc │ ├── wasm-objects.h │ ├── wasm-objects.tq │ ├── wasm-opcodes-inl.h │ ├── wasm-opcodes.cc │ ├── wasm-opcodes.h │ ├── wasm-result.cc │ ├── wasm-result.h │ ├── wasm-serialization.cc │ ├── wasm-serialization.h │ ├── wasm-subtyping.cc │ ├── wasm-subtyping.h │ ├── wasm-tier.h │ ├── wasm-value.h │ ├── well-known-imports.cc │ └── well-known-imports.h └── zone │ ├── OWNERS │ ├── accounting-allocator.cc │ ├── accounting-allocator.h │ ├── compressed-zone-ptr.h │ ├── type-stats.cc │ ├── type-stats.h │ ├── zone-allocator.h │ ├── zone-chunk-list.h │ ├── zone-compact-set.h │ ├── zone-compression.h │ ├── zone-containers.h │ ├── zone-hashmap.h │ ├── zone-list-inl.h │ ├── zone-list.h │ ├── zone-segment.cc │ ├── zone-segment.h │ ├── zone-type-traits.h │ ├── zone-utils.h │ ├── zone.cc │ └── zone.h ├── test ├── BUILD.gn ├── OWNERS ├── benchmarks │ ├── BUILD.gn │ ├── benchmarks.status │ ├── cpp │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── cppgc │ │ │ ├── BUILD.gn │ │ │ ├── DEPS │ │ │ ├── allocation_perf.cc │ │ │ ├── benchmark_main.cc │ │ │ ├── benchmark_utils.cc │ │ │ ├── benchmark_utils.h │ │ │ ├── binary-trees_perf.cc │ │ │ └── trace_perf.cc │ │ ├── dtoa.cc │ │ └── empty.cc │ ├── csuite │ │ ├── README.md │ │ ├── benchmark.py │ │ ├── compare-baseline.py │ │ ├── csuite.py │ │ ├── run-kraken.js │ │ └── sunspider-standalone-driver.js │ └── testcfg.py ├── bigint │ ├── BUILD.gn │ ├── DEPS │ ├── bigint-shell.cc │ ├── bigint.status │ └── testcfg.py ├── cctest │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── assembler-helper-arm.cc │ ├── assembler-helper-arm.h │ ├── cctest-utils.h │ ├── cctest.cc │ ├── cctest.h │ ├── cctest.status │ ├── collector.h │ ├── compiler │ │ ├── codegen-tester.cc │ │ ├── codegen-tester.h │ │ ├── function-tester.cc │ │ ├── function-tester.h │ │ ├── graph-and-builders.h │ │ ├── js-heap-broker-base.h │ │ ├── serializer-tester.h │ │ ├── test-atomic-load-store-codegen.cc │ │ ├── test-basic-block-profiler.cc │ │ ├── test-branch-combine.cc │ │ ├── test-calls-with-arraylike-or-spread.cc │ │ ├── test-code-assembler.cc │ │ ├── test-code-generator.cc │ │ ├── test-concurrent-shared-function-info.cc │ │ ├── test-gap-resolver.cc │ │ ├── test-graph-visualizer.cc │ │ ├── test-instruction-scheduler.cc │ │ ├── test-instruction.cc │ │ ├── test-js-constant-cache.cc │ │ ├── test-js-context-specialization.cc │ │ ├── test-js-typed-lowering.cc │ │ ├── test-jump-threading.cc │ │ ├── test-linkage.cc │ │ ├── test-loop-analysis.cc │ │ ├── test-machine-operator-reducer.cc │ │ ├── test-multiple-return.cc │ │ ├── test-node.cc │ │ ├── test-operator.cc │ │ ├── test-representation-change.cc │ │ ├── test-run-calls-to-external-references.cc │ │ ├── test-run-load-store.cc │ │ ├── test-run-machops.cc │ │ ├── test-run-native-calls.cc │ │ ├── test-run-stackcheck.cc │ │ ├── test-run-unwinding-info.cc │ │ ├── test-run-variables.cc │ │ └── test-verify-type.cc │ ├── expression-type-collector-macros.h │ ├── feedback-vector-helper.h │ ├── heap │ │ ├── heap-tester.h │ │ ├── heap-utils.cc │ │ ├── heap-utils.h │ │ ├── test-alloc.cc │ │ ├── test-array-buffer-tracker.cc │ │ ├── test-compaction.cc │ │ ├── test-concurrent-allocation.cc │ │ ├── test-concurrent-marking.cc │ │ ├── test-external-string-tracker.cc │ │ ├── test-heap.cc │ │ ├── test-incremental-marking.cc │ │ ├── test-mark-compact.cc │ │ ├── test-memory-measurement.cc │ │ ├── test-spaces.cc │ │ ├── test-unmapper.cc │ │ ├── test-weak-references.cc │ │ └── test-write-barrier.cc │ ├── jsonstream-helper.h │ ├── manually-externalized-buffer.h │ ├── print-extension.cc │ ├── print-extension.h │ ├── profiler-extension.cc │ ├── profiler-extension.h │ ├── setup-isolate-for-tests.cc │ ├── setup-isolate-for-tests.h │ ├── test-accessor-assembler.cc │ ├── test-accessors.cc │ ├── test-allocation.cc │ ├── test-api-array-buffer.cc │ ├── test-api-interceptors.cc │ ├── test-api-stack-traces.cc │ ├── test-api-typed-array.cc │ ├── test-api.cc │ ├── test-api.h │ ├── test-assembler-arm.cc │ ├── test-assembler-arm64.cc │ ├── test-assembler-ia32.cc │ ├── test-assembler-loong64.cc │ ├── test-assembler-mips64.cc │ ├── test-assembler-ppc.cc │ ├── test-assembler-riscv32.cc │ ├── test-assembler-riscv64.cc │ ├── test-assembler-s390.cc │ ├── test-code-stub-assembler.cc │ ├── test-constantpool.cc │ ├── test-cpu-profiler.cc │ ├── test-debug-helper.cc │ ├── test-debug.cc │ ├── test-descriptor-array.cc │ ├── test-disasm-regex-helper.cc │ ├── test-disasm-regex-helper.h │ ├── test-field-type-tracking.cc │ ├── test-func-name-inference.cc │ ├── test-fuzz-arm64.cc │ ├── test-heap-profiler.cc │ ├── test-helper-riscv32.cc │ ├── test-helper-riscv32.h │ ├── test-helper-riscv64.cc │ ├── test-helper-riscv64.h │ ├── test-icache.cc │ ├── test-ignition-statistics-extension.cc │ ├── test-inobject-slack-tracking.cc │ ├── test-javascript-arm64.cc │ ├── test-js-arm64-variables.cc │ ├── test-js-to-wasm.cc │ ├── test-js-weak-refs.cc │ ├── test-liveedit.cc │ ├── test-lockers.cc │ ├── test-log-stack-tracer.cc │ ├── test-macro-assembler-arm.cc │ ├── test-macro-assembler-loong64.cc │ ├── test-macro-assembler-mips64.cc │ ├── test-macro-assembler-riscv32.cc │ ├── test-macro-assembler-riscv64.cc │ ├── test-mementos.cc │ ├── test-orderedhashtable.cc │ ├── test-profile-generator.cc │ ├── test-property-details.cc │ ├── test-ptr-compr-cage.cc │ ├── test-random-number-generator.cc │ ├── test-regexp.cc │ ├── test-sampler-api.cc │ ├── test-serialize.cc │ ├── test-shared-strings.cc │ ├── test-simple-riscv32.cc │ ├── test-simple-riscv64.cc │ ├── test-smi-lexicographic-compare.cc │ ├── test-stack-unwinding-win64.cc │ ├── test-strings.cc │ ├── test-swiss-name-dictionary-csa.cc │ ├── test-swiss-name-dictionary-infra.cc │ ├── test-swiss-name-dictionary-infra.h │ ├── test-swiss-name-dictionary-shared-tests.h │ ├── test-swiss-name-dictionary.cc │ ├── test-sync-primitives-arm.cc │ ├── test-sync-primitives-arm64.cc │ ├── test-trace-event.cc │ ├── test-transitions.cc │ ├── test-transitions.h │ ├── test-typedarrays.cc │ ├── test-unscopables-hidden-prototype.cc │ ├── test-unwinder-code-pages.cc │ ├── test-usecounters.cc │ ├── test-utils-arm64.cc │ ├── test-utils-arm64.h │ ├── test-utils.cc │ ├── test-v8windbg.cc │ ├── test-verifiers.cc │ ├── testcfg.py │ ├── torque │ │ └── test-torque.cc │ ├── trace-extension.cc │ ├── trace-extension.h │ └── wasm │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── test-backing-store.cc │ │ ├── test-c-wasm-entry.cc │ │ ├── test-compilation-cache.cc │ │ ├── test-gc.cc │ │ ├── test-grow-memory.cc │ │ ├── test-jump-table-assembler.cc │ │ ├── test-liftoff-for-fuzzing.cc │ │ ├── test-liftoff-inspection.cc │ │ ├── test-run-wasm-64.cc │ │ ├── test-run-wasm-asmjs.cc │ │ ├── test-run-wasm-atomics.cc │ │ ├── test-run-wasm-atomics64.cc │ │ ├── test-run-wasm-bulk-memory.cc │ │ ├── test-run-wasm-exceptions.cc │ │ ├── test-run-wasm-js.cc │ │ ├── test-run-wasm-memory64.cc │ │ ├── test-run-wasm-module.cc │ │ ├── test-run-wasm-relaxed-simd.cc │ │ ├── test-run-wasm-sign-extension.cc │ │ ├── test-run-wasm-simd-liftoff.cc │ │ ├── test-run-wasm-simd.cc │ │ ├── test-run-wasm-wrappers.cc │ │ ├── test-run-wasm.cc │ │ ├── test-streaming-compilation.cc │ │ ├── test-wasm-breakpoints.cc │ │ ├── test-wasm-codegen.cc │ │ ├── test-wasm-import-wrapper-cache.cc │ │ ├── test-wasm-metrics.cc │ │ ├── test-wasm-serialization.cc │ │ ├── test-wasm-shared-engine.cc │ │ ├── test-wasm-stack.cc │ │ ├── test-wasm-strings.cc │ │ ├── test-wasm-trap-position.cc │ │ ├── wasm-atomics-utils.h │ │ ├── wasm-run-utils.cc │ │ ├── wasm-run-utils.h │ │ ├── wasm-simd-utils.cc │ │ └── wasm-simd-utils.h ├── common │ ├── DEPS │ ├── assembler-tester.h │ ├── c-signature.h │ ├── call-tester.h │ ├── code-assembler-tester.h │ ├── flag-utils.h │ ├── node-observer-tester.h │ ├── streaming-helper.h │ ├── types-fuzz.h │ ├── value-helper.cc │ ├── value-helper.h │ └── wasm │ │ ├── OWNERS │ │ ├── flag-utils.h │ │ ├── test-signatures.h │ │ ├── wasm-macro-gen.h │ │ ├── wasm-module-runner.cc │ │ └── wasm-module-runner.h ├── debugger │ ├── BUILD.gn │ ├── OWNERS │ ├── bugs │ │ ├── bug-1264852.js │ │ └── harmony │ │ │ └── debug-blockscopes.js │ ├── debug │ │ ├── compiler │ │ │ ├── debug-catch-prediction.js │ │ │ └── osr-typing-debug-change.js │ │ ├── debug-allscopes-on-debugger.js │ │ ├── debug-backtrace.js │ │ ├── debug-bigint.js │ │ ├── debug-break-class-fields.js │ │ ├── debug-break-inline.js │ │ ├── debug-break-microtask.js │ │ ├── debug-break-native.js │ │ ├── debug-break-return.js │ │ ├── debug-breakpoints.js │ │ ├── debug-clearbreakpoint.js │ │ ├── debug-compile-event.js │ │ ├── debug-compile-optimized.js │ │ ├── debug-conditional-breakpoints.js │ │ ├── debug-constructor.js │ │ ├── debug-enable-disable-breakpoints.js │ │ ├── debug-eval-scope.js │ │ ├── debug-evaluate-arguments.js │ │ ├── debug-evaluate-bool-constructor.js │ │ ├── debug-evaluate-closure.js │ │ ├── debug-evaluate-dead-function-fails.js │ │ ├── debug-evaluate-declaration.js │ │ ├── debug-evaluate-function-var.js │ │ ├── debug-evaluate-local-repl-hole.js │ │ ├── debug-evaluate-locals-capturing.js │ │ ├── debug-evaluate-locals-optimized-double.js │ │ ├── debug-evaluate-locals-optimized.js │ │ ├── debug-evaluate-locals.js │ │ ├── debug-evaluate-modify-catch-block-scope.js │ │ ├── debug-evaluate-modify-this.js │ │ ├── debug-evaluate-nested-let.js │ │ ├── debug-evaluate-repl-mode-await.js │ │ ├── debug-evaluate-repl-mode-optimized.js │ │ ├── debug-evaluate-repl-mode.js │ │ ├── debug-evaluate-shadowed-context-reuse.js │ │ ├── debug-evaluate-shadowed-context.js │ │ ├── debug-evaluate-with.js │ │ ├── debug-evaluate.js │ │ ├── debug-event-listener.js │ │ ├── debug-exceptions.js │ │ ├── debug-function-scopes.js │ │ ├── debug-generator-break-on-stack.js │ │ ├── debug-generator-break.js │ │ ├── debug-liveedit-1.js │ │ ├── debug-liveedit-2.js │ │ ├── debug-liveedit-3.js │ │ ├── debug-liveedit-4.js │ │ ├── debug-liveedit-arrow-function-at-start.js │ │ ├── debug-liveedit-check-stack.js │ │ ├── debug-liveedit-compile-error.js │ │ ├── debug-liveedit-inline.js │ │ ├── debug-liveedit-literals.js │ │ ├── debug-liveedit-newsource.js │ │ ├── debug-liveedit-patch-positions-replace.js │ │ ├── debug-liveedit-recursion.js │ │ ├── debug-materialized.js │ │ ├── debug-modules-set-variable-value.mjs │ │ ├── debug-multiple-breakpoints.js │ │ ├── debug-multiple-var-decl.js │ │ ├── debug-negative-break-points.js │ │ ├── debug-optimize.js │ │ ├── debug-print.js │ │ ├── debug-receiver.js │ │ ├── debug-return-value.js │ │ ├── debug-scopes-suspended-generators.js │ │ ├── debug-scopes.js │ │ ├── debug-set-variable-value.js │ │ ├── debug-stack-check-position.js │ │ ├── debug-step-2.js │ │ ├── debug-step-3.js │ │ ├── debug-step-4.js │ │ ├── debug-step-end-of-script.js │ │ ├── debug-step-into-json.js │ │ ├── debug-step-into-valueof.js │ │ ├── debug-step-microtask.js │ │ ├── debug-step-stub-callfunction.js │ │ ├── debug-step-turbofan.js │ │ ├── debug-step.js │ │ ├── debug-stepin-accessor-ic.js │ │ ├── debug-stepin-accessor.js │ │ ├── debug-stepin-builtin-callback-opt.js │ │ ├── debug-stepin-builtin-callback.js │ │ ├── debug-stepin-builtin.js │ │ ├── debug-stepin-call-function-stub.js │ │ ├── debug-stepin-construct-call.js │ │ ├── debug-stepin-constructor.js │ │ ├── debug-stepin-foreach.js │ │ ├── debug-stepin-function-call.js │ │ ├── debug-stepin-property-function-call.js │ │ ├── debug-stepnext-do-while.js │ │ ├── debug-stepout-recursive-function.js │ │ ├── debug-stepout-scope-part1.js │ │ ├── debug-stepout-scope-part2.js │ │ ├── debug-stepout-scope-part3.js │ │ ├── debug-stepout-scope-part4.js │ │ ├── debug-stepout-scope-part5.js │ │ ├── debug-stepout-scope-part6.js │ │ ├── debug-stepout-scope-part7.js │ │ ├── debug-stepout-scope-part8.js │ │ ├── debug-stepout-to-builtin.js │ │ ├── deserialize-script-id.js │ │ ├── es6 │ │ │ ├── debug-blockscopes.js │ │ │ ├── debug-break-default-constructor.js │ │ │ ├── debug-evaluate-arrow-function-receiver.js │ │ │ ├── debug-evaluate-blockscopes.js │ │ │ ├── debug-evaluate-receiver-before-super.js │ │ │ ├── debug-exception-generators.js │ │ │ ├── debug-function-scopes.js │ │ │ ├── debug-liveedit-new-target-1.js │ │ │ ├── debug-liveedit-new-target-2.js │ │ │ ├── debug-liveedit-new-target-3.js │ │ │ ├── debug-promises │ │ │ │ ├── evaluate-across-microtasks.js │ │ │ │ ├── promise-all-caught.js │ │ │ │ ├── promise-all-uncaught.js │ │ │ │ ├── promise-any-caught.js │ │ │ │ ├── promise-any-uncaught.js │ │ │ │ ├── promise-race-caught.js │ │ │ │ ├── promise-race-uncaught.js │ │ │ │ ├── proxy-as-promise.js │ │ │ │ ├── reentry.js │ │ │ │ ├── reject-after-resolve.js │ │ │ │ ├── reject-caught-all.js │ │ │ │ ├── reject-caught-by-default-reject-handler.js │ │ │ │ ├── reject-caught-late.js │ │ │ │ ├── reject-caught-uncaught.js │ │ │ │ ├── reject-in-constructor-opt.js │ │ │ │ ├── reject-in-constructor.js │ │ │ │ ├── reject-uncaught-all.js │ │ │ │ ├── reject-uncaught-late.js │ │ │ │ ├── reject-uncaught-uncaught.js │ │ │ │ ├── reject-with-invalid-reject.js │ │ │ │ ├── reject-with-throw-in-reject.js │ │ │ │ ├── reject-with-undefined-reject.js │ │ │ │ ├── stepin-constructor.js │ │ │ │ ├── stepin-handler.js │ │ │ │ ├── throw-caught-all.js │ │ │ │ ├── throw-caught-by-default-reject-handler.js │ │ │ │ ├── throw-caught-late.js │ │ │ │ ├── throw-caught-uncaught.js │ │ │ │ ├── throw-eventually-caught.js │ │ │ │ ├── throw-finally-caught-all.js │ │ │ │ ├── throw-in-constructor.js │ │ │ │ ├── throw-uncaught-all.js │ │ │ │ ├── throw-uncaught-uncaught.js │ │ │ │ ├── throw-with-throw-in-reject.js │ │ │ │ ├── try-reject-in-constructor.js │ │ │ │ └── try-throw-reject-in-constructor.js │ │ │ ├── debug-scope-default-param-with-eval.js │ │ │ ├── debug-step-into-class-extends.js │ │ │ ├── debug-step-into-constructor.js │ │ │ ├── debug-step-into-regexp-subclass.js │ │ │ ├── debug-stepin-collections-foreach.js │ │ │ ├── debug-stepin-default-parameters.js │ │ │ ├── debug-stepin-generators.js │ │ │ ├── debug-stepin-microtasks.js │ │ │ ├── debug-stepin-proxies.js │ │ │ ├── debug-stepin-string-template.js │ │ │ ├── debug-stepnext-for.js │ │ │ ├── debug-stepnext-generators.js │ │ │ ├── default-parameters-debug.js │ │ │ ├── generators-debug-scopes.js │ │ │ ├── generators-relocation.js │ │ │ └── regress │ │ │ │ ├── regress-3280.js │ │ │ │ └── regress-468661.js │ │ ├── es8 │ │ │ ├── async-debug-basic.js │ │ │ ├── async-debug-builtin-predictions.js │ │ │ ├── async-debug-caught-exception-cases.js │ │ │ ├── async-debug-caught-exception-cases0.js │ │ │ ├── async-debug-caught-exception-cases1.js │ │ │ ├── async-debug-caught-exception-cases2.js │ │ │ ├── async-debug-caught-exception-cases3.js │ │ │ ├── async-debug-caught-exception.js │ │ │ ├── async-debug-step-abort-at-break.js │ │ │ ├── async-debug-step-continue-at-break.js │ │ │ ├── async-debug-step-in-and-out.js │ │ │ ├── async-debug-step-in-out-out.js │ │ │ ├── async-debug-step-in.js │ │ │ ├── async-debug-step-nested.js │ │ │ ├── async-debug-step-next-constant.js │ │ │ ├── async-debug-step-next.js │ │ │ ├── async-debug-step-out.js │ │ │ ├── async-function-debug-evaluate.js │ │ │ ├── async-function-debug-scopes.js │ │ │ ├── debug-async-break-on-stack.js │ │ │ ├── debug-async-break.js │ │ │ └── promise-finally.js │ │ ├── for-in-opt.js │ │ ├── function-source.js │ │ ├── harmony │ │ │ ├── modules-debug-scopes1.mjs │ │ │ └── modules-debug-scopes2.mjs │ │ ├── ignition │ │ │ ├── debug-break-on-stack.js │ │ │ ├── debug-break.js │ │ │ ├── debug-scope-on-return.js │ │ │ ├── debug-step-prefix-bytecodes.js │ │ │ ├── debugger-statement.js │ │ │ ├── elided-instruction.js │ │ │ └── optimized-debug-frame.js │ │ ├── lazy-deopt-then-flush-bytecode.js │ │ ├── regress-3225.js │ │ ├── regress-5207.js │ │ ├── regress │ │ │ ├── debug-prepare-step-in.js │ │ │ ├── regress-102153.js │ │ │ ├── regress-10319.js │ │ │ ├── regress-1081309.js │ │ │ ├── regress-109195.js │ │ │ ├── regress-1170187.js │ │ │ ├── regress-119609.js │ │ │ ├── regress-131994.js │ │ │ ├── regress-147497.js │ │ │ ├── regress-1523.js │ │ │ ├── regress-1586.js │ │ │ ├── regress-1639.js │ │ │ ├── regress-2296.js │ │ │ ├── regress-269.js │ │ │ ├── regress-2825.js │ │ │ ├── regress-325676.js │ │ │ ├── regress-3717.js │ │ │ ├── regress-392114.js │ │ │ ├── regress-4309-1.js │ │ │ ├── regress-4309-2.js │ │ │ ├── regress-4309-3.js │ │ │ ├── regress-4320.js │ │ │ ├── regress-4703.js │ │ │ ├── regress-491536.js │ │ │ ├── regress-5071.js │ │ │ ├── regress-514362.js │ │ │ ├── regress-5164.js │ │ │ ├── regress-5279.js │ │ │ ├── regress-5559.js │ │ │ ├── regress-617882.js │ │ │ ├── regress-662674.js │ │ │ ├── regress-662935.js │ │ │ ├── regress-9067.js │ │ │ ├── regress-crbug-107996.js │ │ │ ├── regress-crbug-119800.js │ │ │ ├── regress-crbug-1357554.js │ │ │ ├── regress-crbug-171715.js │ │ │ ├── regress-crbug-222893.js │ │ │ ├── regress-crbug-323936.js │ │ │ ├── regress-crbug-387599.js │ │ │ ├── regress-crbug-401915.js │ │ │ ├── regress-crbug-405922.js │ │ │ ├── regress-crbug-409614.js │ │ │ ├── regress-crbug-432493.js │ │ │ ├── regress-crbug-465298.js │ │ │ ├── regress-crbug-467180.js │ │ │ ├── regress-crbug-487289.js │ │ │ ├── regress-crbug-491943.js │ │ │ ├── regress-crbug-568477-1.js │ │ │ ├── regress-crbug-568477-2.js │ │ │ ├── regress-crbug-568477-3.js │ │ │ ├── regress-crbug-568477-4.js │ │ │ ├── regress-crbug-582048.js │ │ │ ├── regress-crbug-582051.js │ │ │ ├── regress-crbug-605581.js │ │ │ ├── regress-crbug-609046.js │ │ │ ├── regress-crbug-621361.js │ │ │ ├── regress-crbug-633999.js │ │ │ ├── regress-debug-code-recompilation.js │ │ │ ├── regress-debug-context-load.js │ │ │ ├── regress-debug-deopt-while-recompile.js │ │ │ ├── regress-frame-details-null-receiver.js │ │ │ ├── regress-opt-after-debug-deopt.js │ │ │ └── regress-prepare-break-while-recompile.js │ │ ├── side-effect │ │ │ ├── debug-evaluate-no-side-effect-async.js │ │ │ ├── debug-evaluate-no-side-effect-builtins-2.js │ │ │ ├── debug-evaluate-no-side-effect-builtins.js │ │ │ ├── debug-evaluate-no-side-effect-control.js │ │ │ ├── debug-evaluate-no-side-effect-iife.js │ │ │ ├── debug-evaluate-no-side-effect-ops.js │ │ │ ├── debug-evaluate-no-side-effect-regexp.js │ │ │ ├── debug-evaluate-no-side-effect-runtime-check.js │ │ │ └── debug-evaluate-no-side-effect.js │ │ └── wasm │ │ │ ├── asm-debug.js │ │ │ ├── breakpoints.js │ │ │ ├── debug-enabled-tier-down-wasm-streaming.js │ │ │ ├── debug-enabled-tier-down-wasm-unsupported-liftoff.js │ │ │ ├── debug-enabled-tier-down-wasm.js │ │ │ ├── debug-step-into-wasm.js │ │ │ ├── frame-inspection.js │ │ │ └── stepping-from-js.js │ ├── debugger.status │ ├── protocol │ │ └── basic-round-trip.js │ ├── regress │ │ ├── regress-1145119.js │ │ ├── regress-1639-2.js │ │ ├── regress-2318.js │ │ ├── regress-5575-1.js │ │ ├── regress-5575-2.js │ │ ├── regress-5575-3.js │ │ ├── regress-5610.js │ │ ├── regress-5901-1.js │ │ ├── regress-5901-2.js │ │ ├── regress-5950.js │ │ ├── regress-6085.js │ │ ├── regress-6526.js │ │ ├── regress-7421.js │ │ ├── regress-9482.js │ │ ├── regress-crbug-10132.js │ │ ├── regress-crbug-1032042.js │ │ ├── regress-crbug-1156498.js │ │ ├── regress-crbug-1199681.js │ │ ├── regress-crbug-1259878.js │ │ ├── regress-crbug-1350842.js │ │ ├── regress-crbug-507070.js │ │ ├── regress-crbug-724858.js │ │ ├── regress-crbug-736758.js │ │ ├── regress-crbug-760225.js │ │ ├── regress-crbug-808973.js │ │ ├── regress-crbug-835973.js │ │ ├── regress-crbug-840288.js │ │ └── regress-crbug-882664.js │ ├── test-api.js │ ├── testcfg.py │ └── wrapper │ │ ├── break-on-debugger-stmt.js │ │ └── enable-disable.js ├── debugging │ ├── debugging.status │ ├── testcfg.py │ └── wasm │ │ └── gdb-server │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── breakpoints.py │ │ ├── connect.py │ │ ├── float.py │ │ ├── gdb_rsp.py │ │ ├── memory.py │ │ ├── status.py │ │ ├── stepping.py │ │ ├── test_files │ │ ├── __init__.py │ │ ├── test_basic.js │ │ ├── test_basic.py │ │ ├── test_float.js │ │ ├── test_float.py │ │ ├── test_memory.js │ │ ├── test_memory.py │ │ ├── test_trap.js │ │ └── test_trap.py │ │ └── trap.py ├── fuzzer │ ├── BUILD.gn │ ├── DEPS │ ├── README.md │ ├── fuzzer-support.cc │ ├── fuzzer-support.h │ ├── fuzzer.cc │ ├── fuzzer.status │ ├── inspector-fuzzer.cc │ ├── inspector │ │ ├── empty │ │ ├── endless-loop │ │ ├── invalid │ │ ├── regress-1166549 │ │ ├── regress-1297964 │ │ ├── regress-1307449 │ │ └── regress-1433503 │ ├── json.cc │ ├── json │ │ ├── json │ │ └── not-json │ ├── multi-return.cc │ ├── multi_return │ │ └── README.md │ ├── parser.cc │ ├── parser │ │ └── hello-world │ ├── regexp.cc │ ├── regexp │ │ ├── test00 │ │ ├── test01 │ │ ├── test02 │ │ ├── test03 │ │ ├── test04 │ │ ├── test05 │ │ ├── test06 │ │ ├── test07 │ │ ├── test08 │ │ ├── test09 │ │ ├── test10 │ │ ├── test11 │ │ ├── test12 │ │ ├── test13 │ │ ├── test14 │ │ ├── test15 │ │ ├── test16 │ │ ├── test17 │ │ ├── test18 │ │ ├── test19 │ │ ├── test20 │ │ ├── test21 │ │ ├── test22 │ │ ├── test23 │ │ └── test24 │ ├── testcfg.py │ ├── wasm-async.cc │ ├── wasm-code.cc │ ├── wasm-compile.cc │ ├── wasm-fuzzer-common.cc │ ├── wasm-fuzzer-common.h │ ├── wasm-streaming.cc │ ├── wasm.cc │ ├── wasm │ │ ├── foo │ │ ├── regress-1115280.wasm │ │ ├── regress-1127717.wasm │ │ ├── regress-1191853.wasm │ │ └── regress-1404619.wasm │ ├── wasm_async │ │ ├── README.md │ │ ├── regress-1115431.wasm │ │ ├── regress-1405322.wasm │ │ ├── regression-761784.wasm │ │ └── valid.wasm │ ├── wasm_code │ │ └── foo │ ├── wasm_compile │ │ └── foo │ ├── wasm_corpus.tar.gz.sha1 │ └── wasm_streaming │ │ ├── README.md │ │ ├── empty_module │ │ ├── regress-1334577 │ │ ├── regress-1335023 │ │ ├── regress-1427898 │ │ └── regress-1429613 ├── fuzzilli │ ├── BUILD.gn │ ├── README.md │ ├── fuzzilli.status │ ├── libreprl.c │ ├── libreprl.h │ ├── main.cc │ ├── test │ │ └── test │ └── testcfg.py ├── inspector │ ├── BUILD.gn │ ├── DEPS │ ├── DIR_METADATA │ ├── OWNERS │ ├── console │ │ ├── destroy-context-during-log-expected.txt │ │ ├── destroy-context-during-log.js │ │ ├── scoped-variables-expected.txt │ │ ├── scoped-variables.js │ │ ├── stack-tagging-expected.txt │ │ └── stack-tagging.js │ ├── cpu-profiler │ │ ├── console-profile-asm-js-expected.txt │ │ ├── console-profile-asm-js.js │ │ ├── console-profile-end-parameterless-crash-expected.txt │ │ ├── console-profile-end-parameterless-crash.js │ │ ├── console-profile-expected.txt │ │ ├── console-profile-wasm-expected.txt │ │ ├── console-profile-wasm.js │ │ ├── console-profile.js │ │ ├── coverage-block-expected.txt │ │ ├── coverage-block.js │ │ ├── coverage-expected.txt │ │ ├── coverage.js │ │ ├── enable-disable-expected.txt │ │ ├── enable-disable.js │ │ ├── record-cpu-profile-expected.txt │ │ ├── record-cpu-profile.js │ │ ├── stop-without-preceeding-start-expected.txt │ │ └── stop-without-preceeding-start.js │ ├── debugger │ │ ├── array-destructuring-expected.txt │ │ ├── array-destructuring.js │ │ ├── array-spread-expected.txt │ │ ├── array-spread.js │ │ ├── asm-js-breakpoint-before-exec-expected.txt │ │ ├── asm-js-breakpoint-before-exec.js │ │ ├── asm-js-breakpoint-during-exec-expected.txt │ │ ├── asm-js-breakpoint-during-exec.js │ │ ├── asm-js-stack-expected.txt │ │ ├── asm-js-stack.js │ │ ├── async-chains-expected.txt │ │ ├── async-chains.js │ │ ├── async-console-count-doesnt-crash-expected.txt │ │ ├── async-console-count-doesnt-crash.js │ │ ├── async-for-await-of-promise-stack-expected.txt │ │ ├── async-for-await-of-promise-stack.js │ │ ├── async-function-step-out-expected.txt │ │ ├── async-function-step-out.js │ │ ├── async-instrumentation-expected.txt │ │ ├── async-instrumentation.js │ │ ├── async-promise-late-then-expected.txt │ │ ├── async-promise-late-then.js │ │ ├── async-set-timeout-expected.txt │ │ ├── async-set-timeout.js │ │ ├── async-stack-await-expected.txt │ │ ├── async-stack-await.js │ │ ├── async-stack-created-frame-expected.txt │ │ ├── async-stack-created-frame.js │ │ ├── async-stack-for-promise-expected.txt │ │ ├── async-stack-for-promise.js │ │ ├── async-stack-load-more-expected.txt │ │ ├── async-stack-load-more.js │ │ ├── break-location-function-calls-expected.txt │ │ ├── break-location-function-calls.js │ │ ├── break-locations-await-expected.txt │ │ ├── break-locations-await.js │ │ ├── break-locations-var-init-expected.txt │ │ ├── break-locations-var-init.js │ │ ├── break-on-exception-and-step-expected.txt │ │ ├── break-on-exception-and-step.js │ │ ├── break-on-exception-async-gen-expected.txt │ │ ├── break-on-exception-async-gen.js │ │ ├── break-on-exception-compiler-errors-expected.txt │ │ ├── break-on-exception-compiler-errors.js │ │ ├── break-on-exception-expected.txt │ │ ├── break-on-exception.js │ │ ├── breakpoints-and-side-effects-expected.txt │ │ ├── breakpoints-and-side-effects.js │ │ ├── breakpoints-expected.txt │ │ ├── breakpoints.js │ │ ├── call-frame-function-location-expected.txt │ │ ├── call-frame-function-location.js │ │ ├── call-frame-url-expected.txt │ │ ├── call-frame-url.js │ │ ├── caught-exception-from-framework-inside-async-expected.txt │ │ ├── caught-exception-from-framework-inside-async.js │ │ ├── caught-uncaught-exceptions-expected.txt │ │ ├── caught-uncaught-exceptions.js │ │ ├── change-return-value-expected.txt │ │ ├── change-return-value.js │ │ ├── class-fields-scopes-expected.txt │ │ ├── class-fields-scopes.js │ │ ├── class-private-fields-scopes-expected.txt │ │ ├── class-private-fields-scopes.js │ │ ├── class-private-methods-empty-inner-expected.txt │ │ ├── class-private-methods-empty-inner.js │ │ ├── class-private-methods-expected.txt │ │ ├── class-private-methods-nested-super-expected.txt │ │ ├── class-private-methods-nested-super.js │ │ ├── class-private-methods-preview-expected.txt │ │ ├── class-private-methods-preview.js │ │ ├── class-private-methods-static-expected.txt │ │ ├── class-private-methods-static-nested-expected.txt │ │ ├── class-private-methods-static-nested.js │ │ ├── class-private-methods-static-preview-expected.txt │ │ ├── class-private-methods-static-preview.js │ │ ├── class-private-methods-static.js │ │ ├── class-private-methods-unused-expected.txt │ │ ├── class-private-methods-unused.js │ │ ├── class-private-methods.js │ │ ├── clear-breakpoints-on-disable-expected.txt │ │ ├── clear-breakpoints-on-disable.js │ │ ├── collect-obsolete-async-tasks-expected.txt │ │ ├── collect-obsolete-async-tasks.js │ │ ├── collect-old-async-call-chains-expected.txt │ │ ├── collect-old-async-call-chains.js │ │ ├── comma-expression-expected.txt │ │ ├── comma-expression.js │ │ ├── command-line-api-with-arrow-function-expected.txt │ │ ├── command-line-api-with-arrow-function.js │ │ ├── command-line-api-with-bound-function-expected.txt │ │ ├── command-line-api-with-bound-function.js │ │ ├── continue-to-location-expected.txt │ │ ├── continue-to-location-target-call-frames-expected.txt │ │ ├── continue-to-location-target-call-frames.js │ │ ├── continue-to-location.js │ │ ├── debugger-statement-expected.txt │ │ ├── debugger-statement.js │ │ ├── destroy-in-break-program-expected.txt │ │ ├── destroy-in-break-program.js │ │ ├── destroy-in-break-program2-expected.txt │ │ ├── destroy-in-break-program2.js │ │ ├── disable-agent-on-pause-expected.txt │ │ ├── disable-agent-on-pause.js │ │ ├── doesnt-step-into-injected-script-expected.txt │ │ ├── doesnt-step-into-injected-script.js │ │ ├── es6-module-liveedit-expected.txt │ │ ├── es6-module-liveedit.js │ │ ├── es6-module-script-parsed-expected.txt │ │ ├── es6-module-script-parsed.js │ │ ├── eval-scopes-expected.txt │ │ ├── eval-scopes.js │ │ ├── eval-without-codegen-expected.txt │ │ ├── eval-without-codegen.js │ │ ├── evaluate-at-first-module-line-expected.txt │ │ ├── evaluate-at-first-module-line.js │ │ ├── evaluate-on-call-frame-expected.txt │ │ ├── evaluate-on-call-frame-in-module-expected.txt │ │ ├── evaluate-on-call-frame-in-module.js │ │ ├── evaluate-on-call-frame-new-target-expected.txt │ │ ├── evaluate-on-call-frame-new-target.js │ │ ├── evaluate-on-call-frame-private-class-member-conflict-expected.txt │ │ ├── evaluate-on-call-frame-private-class-member-conflict.js │ │ ├── evaluate-on-call-frame-private-class-member-expected.txt │ │ ├── evaluate-on-call-frame-private-class-member-in-module-expected.txt │ │ ├── evaluate-on-call-frame-private-class-member-in-module.js │ │ ├── evaluate-on-call-frame-private-class-member-static-expected.txt │ │ ├── evaluate-on-call-frame-private-class-member-static.js │ │ ├── evaluate-on-call-frame-private-class-member-super-expected.txt │ │ ├── evaluate-on-call-frame-private-class-member.js │ │ ├── evaluate-on-call-frame-return-values-expected.txt │ │ ├── evaluate-on-call-frame-return-values.js │ │ ├── evaluate-on-call-frame-timeout-expected.txt │ │ ├── evaluate-on-call-frame-timeout.js │ │ ├── evaluate-on-call-frame.js │ │ ├── evaluate-on-callframe-this-expected.txt │ │ ├── evaluate-on-callframe-this.js │ │ ├── evaluate-with-await-on-breakpoint-expected.txt │ │ ├── evaluate-with-await-on-breakpoint.js │ │ ├── external-stack-trace-expected.txt │ │ ├── external-stack-trace.js │ │ ├── for-of-loops-expected.txt │ │ ├── for-of-loops.js │ │ ├── framework-break-expected.txt │ │ ├── framework-break.js │ │ ├── framework-nested-scheduled-break-expected.txt │ │ ├── framework-nested-scheduled-break.js │ │ ├── framework-precise-ranges-expected.txt │ │ ├── framework-precise-ranges.js │ │ ├── framework-stepping-expected.txt │ │ ├── framework-stepping.js │ │ ├── get-possible-breakpoints-after-gc-expected.txt │ │ ├── get-possible-breakpoints-after-gc.js │ │ ├── get-possible-breakpoints-array-literal-expected.txt │ │ ├── get-possible-breakpoints-array-literal.js │ │ ├── get-possible-breakpoints-class-fields-expected.txt │ │ ├── get-possible-breakpoints-class-fields.js │ │ ├── get-possible-breakpoints-expected.txt │ │ ├── get-possible-breakpoints-lazy-error-expected.txt │ │ ├── get-possible-breakpoints-lazy-error.js │ │ ├── get-possible-breakpoints-main-expected.txt │ │ ├── get-possible-breakpoints-main.js │ │ ├── get-possible-breakpoints-restrict-to-function-expected.txt │ │ ├── get-possible-breakpoints-restrict-to-function.js │ │ ├── get-possible-breakpoints.js │ │ ├── get-properties-paused-expected.txt │ │ ├── get-properties-paused.js │ │ ├── inspector-break-api-expected.txt │ │ ├── inspector-break-api.js │ │ ├── instrumentation-multiple-sessions-expected.txt │ │ ├── instrumentation-multiple-sessions.js │ │ ├── limit-size-of-collected-scripts-expected.txt │ │ ├── limit-size-of-collected-scripts.js │ │ ├── line-breakpoint-await-expected.txt │ │ ├── line-breakpoint-await.js │ │ ├── line-breakpoint-yield-expected.txt │ │ ├── line-breakpoint-yield.js │ │ ├── max-async-call-chain-depth-expected.txt │ │ ├── max-async-call-chain-depth.js │ │ ├── max-async-call-stack-depth-changed-expected.txt │ │ ├── max-async-call-stack-depth-changed.js │ │ ├── not-hold-promises-expected.txt │ │ ├── not-hold-promises.js │ │ ├── object-destructuring-expected.txt │ │ ├── object-destructuring.js │ │ ├── object-preview-internal-properties-expected.txt │ │ ├── object-preview-internal-properties.js │ │ ├── other-pause-reasons-expected.txt │ │ ├── other-pause-reasons.js │ │ ├── pause-at-negative-offset-expected.txt │ │ ├── pause-at-negative-offset.js │ │ ├── pause-expected.txt │ │ ├── pause-inside-blackboxed-optimized-expected.txt │ │ ├── pause-inside-blackboxed-optimized.js │ │ ├── pause-on-async-call-expected.txt │ │ ├── pause-on-async-call-set-timeout-expected.txt │ │ ├── pause-on-async-call-set-timeout.js │ │ ├── pause-on-async-call.js │ │ ├── pause-on-instrumentation-expected.txt │ │ ├── pause-on-instrumentation.js │ │ ├── pause-on-oom-expected.txt │ │ ├── pause-on-oom-extrawide-expected.txt │ │ ├── pause-on-oom-extrawide.js │ │ ├── pause-on-oom-wide-expected.txt │ │ ├── pause-on-oom-wide.js │ │ ├── pause-on-oom.js │ │ ├── pause-on-promise-rejections-expected.txt │ │ ├── pause-on-promise-rejections.js │ │ ├── pause.js │ │ ├── promise-chain-when-limit-hit-expected.txt │ │ ├── promise-chain-when-limit-hit.js │ │ ├── protocol-string-to-double-locale-expected.txt │ │ ├── protocol-string-to-double-locale.js │ │ ├── provisional-breakpoint-for-anonymous-script-expected.txt │ │ ├── provisional-breakpoint-for-anonymous-script.js │ │ ├── regress-1125934-expected.txt │ │ ├── regress-1125934.js │ │ ├── regress-1190290-expected.txt │ │ ├── regress-1190290.js │ │ ├── regress-crbug-1319828-expected.txt │ │ ├── regress-crbug-1319828.js │ │ ├── regress-crbug-481896-expected.txt │ │ ├── regress-crbug-481896.js │ │ ├── regression-1185540-expected.txt │ │ ├── regression-1185540.js │ │ ├── regression-1853-expected.txt │ │ ├── regression-1853.js │ │ ├── regression-419663-expected.txt │ │ ├── regression-419663.js │ │ ├── regression-424142-expected.txt │ │ ├── regression-424142.js │ │ ├── remove-breakpoint-at-breakpoint-expected.txt │ │ ├── remove-breakpoint-at-breakpoint.js │ │ ├── resource-name-to-url-expected.txt │ │ ├── resource-name-to-url.js │ │ ├── resources │ │ │ ├── break-locations-class-fields.js │ │ │ └── break-locations.js │ │ ├── restart-frame │ │ │ ├── fails-for-non-existant-index-expected.txt │ │ │ ├── fails-for-non-existant-index.js │ │ │ ├── fails-for-resumables-expected.txt │ │ │ ├── fails-for-resumables.js │ │ │ ├── fails-with-embedder-frames-expected.txt │ │ │ ├── fails-with-embedder-frames.js │ │ │ ├── fails-without-mode-param-expected.txt │ │ │ ├── fails-without-mode-param.js │ │ │ ├── restart-inlined-frame-expected.txt │ │ │ ├── restart-inlined-frame.js │ │ │ ├── restart-top-frame-debugger-stmt-expected.txt │ │ │ ├── restart-top-frame-debugger-stmt.js │ │ │ ├── restart-top-frame-local-variables-expected.txt │ │ │ ├── restart-top-frame-local-variables.js │ │ │ ├── restart-top-frame-with-breakpoint-expected.txt │ │ │ ├── restart-top-frame-with-breakpoint.js │ │ │ ├── restart-various-frames-expected.txt │ │ │ └── restart-various-frames.js │ │ ├── restore-breakpoint-expected.txt │ │ ├── restore-breakpoint.js │ │ ├── return-break-locations-expected.txt │ │ ├── return-break-locations.js │ │ ├── reuse-locals-blocklists-not-inside-function-expected.txt │ │ ├── reuse-locals-blocklists-not-inside-function.js │ │ ├── scope-skip-variables-with-empty-name-expected.txt │ │ ├── scope-skip-variables-with-empty-name.js │ │ ├── script-end-location-expected.txt │ │ ├── script-end-location.js │ │ ├── script-on-after-compile-expected.txt │ │ ├── script-on-after-compile-snapshot-expected.txt │ │ ├── script-on-after-compile-snapshot.js │ │ ├── script-on-after-compile.js │ │ ├── script-origin-stack-expected.txt │ │ ├── script-origin-stack.js │ │ ├── script-parsed-for-runtime-evaluate-expected.txt │ │ ├── script-parsed-for-runtime-evaluate.js │ │ ├── script-parsed-hash-expected.txt │ │ ├── script-parsed-hash.js │ │ ├── script-unique-hash-expected.txt │ │ ├── script-unique-hash.js │ │ ├── session-stop-expected.txt │ │ ├── session-stop.js │ │ ├── set-async-call-stack-depth-expected.txt │ │ ├── set-async-call-stack-depth.js │ │ ├── set-blackbox-patterns-expected.txt │ │ ├── set-blackbox-patterns.js │ │ ├── set-breakpoint-after-gc-expected.txt │ │ ├── set-breakpoint-after-gc.js │ │ ├── set-breakpoint-after-liveedit-expected.txt │ │ ├── set-breakpoint-after-liveedit.js │ │ ├── set-breakpoint-at-last-line-expected.txt │ │ ├── set-breakpoint-at-last-line.js │ │ ├── set-breakpoint-before-enabling-expected.txt │ │ ├── set-breakpoint-before-enabling.js │ │ ├── set-breakpoint-breaks-on-first-breakable-location-expected.txt │ │ ├── set-breakpoint-breaks-on-first-breakable-location.js │ │ ├── set-breakpoint-expected.txt │ │ ├── set-breakpoint-ignore-hint-when-no-location-expected.txt │ │ ├── set-breakpoint-ignore-hint-when-no-location.js │ │ ├── set-breakpoint-in-class-initializer-expected.txt │ │ ├── set-breakpoint-in-class-initializer.js │ │ ├── set-breakpoint-inline-function-expected.txt │ │ ├── set-breakpoint-inline-function.js │ │ ├── set-breakpoint-on-function-call-expected.txt │ │ ├── set-breakpoint-on-function-call.js │ │ ├── set-breakpoint-on-instrumentation-expected.txt │ │ ├── set-breakpoint-on-instrumentation.js │ │ ├── set-breakpoint-url-regex-expected.txt │ │ ├── set-breakpoint-url-regex.js │ │ ├── set-breakpoint.js │ │ ├── set-breakpoints-active-expected.txt │ │ ├── set-breakpoints-active.js │ │ ├── set-instrumentation-breakpoint-expected.txt │ │ ├── set-instrumentation-breakpoint.js │ │ ├── set-script-source-active-function-expected.txt │ │ ├── set-script-source-active-function.js │ │ ├── set-script-source-debug-evaluate-closure-expected.txt │ │ ├── set-script-source-debug-evaluate-closure.js │ │ ├── set-script-source-es-module-expected.txt │ │ ├── set-script-source-es-module.js │ │ ├── set-script-source-exception-expected.txt │ │ ├── set-script-source-exception.js │ │ ├── set-script-source-expected.txt │ │ ├── set-script-source-repl-mode-expected.txt │ │ ├── set-script-source-repl-mode.js │ │ ├── set-script-source-top-frame-expected.txt │ │ ├── set-script-source-top-frame-with-additional-activations-expected.txt │ │ ├── set-script-source-top-frame-with-additional-activations.js │ │ ├── set-script-source-top-frame.js │ │ ├── set-script-source-unchanged-expected.txt │ │ ├── set-script-source-unchanged.js │ │ ├── set-script-source.js │ │ ├── set-skip-all-pauses-expected.txt │ │ ├── set-skip-all-pauses.js │ │ ├── set-variable-value-expected.txt │ │ ├── set-variable-value.js │ │ ├── side-effect-free-coverage-enabled-expected.txt │ │ ├── side-effect-free-coverage-enabled.js │ │ ├── side-effect-free-debug-evaluate-expected.txt │ │ ├── side-effect-free-debug-evaluate.js │ │ ├── step-into-break-on-async-call-expected.txt │ │ ├── step-into-break-on-async-call.js │ │ ├── step-into-expected.txt │ │ ├── step-into-external-async-task-expected.txt │ │ ├── step-into-external-async-task-same-context-expected.txt │ │ ├── step-into-external-async-task-same-context.js │ │ ├── step-into-external-async-task.js │ │ ├── step-into-nested-arrow-expected.txt │ │ ├── step-into-nested-arrow.js │ │ ├── step-into-next-script-expected.txt │ │ ├── step-into-next-script.js │ │ ├── step-into-optimized-blackbox-expected.txt │ │ ├── step-into-optimized-blackbox.js │ │ ├── step-into-out-expected.txt │ │ ├── step-into-out.js │ │ ├── step-into.js │ │ ├── step-out-async-await-expected.txt │ │ ├── step-out-async-await.js │ │ ├── step-over-another-context-group-expected.txt │ │ ├── step-over-another-context-group.js │ │ ├── step-over-caught-exception-expected.txt │ │ ├── step-over-caught-exception.js │ │ ├── step-snapshot-expected.txt │ │ ├── step-snapshot.js │ │ ├── stepping-after-get-possible-breakpoints-expected.txt │ │ ├── stepping-after-get-possible-breakpoints.js │ │ ├── stepping-and-break-program-api-expected.txt │ │ ├── stepping-and-break-program-api.js │ │ ├── stepping-async-generator-expected.txt │ │ ├── stepping-async-generator.js │ │ ├── stepping-generator-expected.txt │ │ ├── stepping-generator-parameters-expected.txt │ │ ├── stepping-generator-parameters.js │ │ ├── stepping-generator.js │ │ ├── stepping-tail-call-expected.txt │ │ ├── stepping-tail-call.js │ │ ├── stepping-with-blackboxed-ranges-expected.txt │ │ ├── stepping-with-blackboxed-ranges.js │ │ ├── stepping-with-natives-and-frameworks-expected.txt │ │ ├── stepping-with-natives-and-frameworks.js │ │ ├── stepping-with-skiplist-expected.txt │ │ ├── stepping-with-skiplist.js │ │ ├── suspended-generator-scopes-expected.txt │ │ ├── suspended-generator-scopes.js │ │ ├── tdz-modules-scopes-expected.txt │ │ ├── tdz-modules-scopes.js │ │ ├── tdz-scopes-expected.txt │ │ ├── tdz-scopes.js │ │ ├── terminate-execution-on-pause-expected.txt │ │ ├── terminate-execution-on-pause.js │ │ ├── this-in-arrow-function-expected.txt │ │ ├── this-in-arrow-function.js │ │ ├── update-call-frame-scopes-expected.txt │ │ ├── update-call-frame-scopes.js │ │ ├── value-unavailable-scopes-expected.txt │ │ ├── value-unavailable-scopes.js │ │ ├── wasm-breakpoint-reset-on-debugger-restart-expected.txt │ │ ├── wasm-breakpoint-reset-on-debugger-restart.js │ │ ├── wasm-conditional-breakpoints-expected.txt │ │ ├── wasm-conditional-breakpoints.js │ │ ├── wasm-debug-command-expected.txt │ │ ├── wasm-debug-command.js │ │ ├── wasm-evaluate-on-call-frame-expected.txt │ │ ├── wasm-evaluate-on-call-frame.js │ │ ├── wasm-externref-global-expected.txt │ │ ├── wasm-externref-global.js │ │ ├── wasm-gc-anyref-expected.txt │ │ ├── wasm-gc-anyref.js │ │ ├── wasm-gc-breakpoints-expected.txt │ │ ├── wasm-gc-breakpoints.js │ │ ├── wasm-gc-in-debug-break-expected.txt │ │ ├── wasm-gc-in-debug-break.js │ │ ├── wasm-gc-multi-module-expected.txt │ │ ├── wasm-gc-multi-module.js │ │ ├── wasm-get-breakable-locations-byte-offsets-expected.txt │ │ ├── wasm-get-breakable-locations-byte-offsets.js │ │ ├── wasm-global-names-expected.txt │ │ ├── wasm-global-names.js │ │ ├── wasm-imports-expected.txt │ │ ├── wasm-imports.js │ │ ├── wasm-inspect-many-registers-expected.txt │ │ ├── wasm-inspect-many-registers.js │ │ ├── wasm-instrumentation-breakpoint-expected.txt │ │ ├── wasm-instrumentation-breakpoint.js │ │ ├── wasm-memory-names-expected.txt │ │ ├── wasm-memory-names.js │ │ ├── wasm-regress-10957-expected.txt │ │ ├── wasm-regress-10957.js │ │ ├── wasm-remove-breakpoint-expected.txt │ │ ├── wasm-remove-breakpoint.js │ │ ├── wasm-reset-context-group-expected.txt │ │ ├── wasm-reset-context-group.js │ │ ├── wasm-scope-info-expected.txt │ │ ├── wasm-scope-info.js │ │ ├── wasm-script-code-offset-expected.txt │ │ ├── wasm-script-code-offset-streaming-expected.txt │ │ ├── wasm-script-code-offset-streaming.js │ │ ├── wasm-script-code-offset.js │ │ ├── wasm-scripts-disassembly-expected.txt │ │ ├── wasm-scripts-disassembly.js │ │ ├── wasm-scripts-expected.txt │ │ ├── wasm-scripts-with-name-expected.txt │ │ ├── wasm-scripts-with-name.js │ │ ├── wasm-scripts.js │ │ ├── wasm-set-breakpoint-breaks-on-first-breakable-location-expected.txt │ │ ├── wasm-set-breakpoint-breaks-on-first-breakable-location.js │ │ ├── wasm-set-breakpoint-expected.txt │ │ ├── wasm-set-breakpoint-on-instrumentation-expected.txt │ │ ├── wasm-set-breakpoint-on-instrumentation.js │ │ ├── wasm-set-breakpoint.js │ │ ├── wasm-side-effect-free-debug-evaluate-expected.txt │ │ ├── wasm-side-effect-free-debug-evaluate.js │ │ ├── wasm-source-expected.txt │ │ ├── wasm-source.js │ │ ├── wasm-stack-check-expected.txt │ │ ├── wasm-stack-check.js │ │ ├── wasm-stack-expected.txt │ │ ├── wasm-stack.js │ │ ├── wasm-step-a-lot-expected.txt │ │ ├── wasm-step-a-lot.js │ │ ├── wasm-step-after-trap-expected.txt │ │ ├── wasm-step-after-trap.js │ │ ├── wasm-step-from-non-breakable-position-expected.txt │ │ ├── wasm-step-from-non-breakable-position.js │ │ ├── wasm-stepping-expected.txt │ │ ├── wasm-stepping-in-from-js-expected.txt │ │ ├── wasm-stepping-in-from-js.js │ │ ├── wasm-stepping-no-opcode-merging-expected.txt │ │ ├── wasm-stepping-no-opcode-merging.js │ │ ├── wasm-stepping-out-from-js-expected.txt │ │ ├── wasm-stepping-out-from-js.js │ │ ├── wasm-stepping-to-js-expected.txt │ │ ├── wasm-stepping-to-js.js │ │ ├── wasm-stepping-with-skiplist-expected.txt │ │ ├── wasm-stepping-with-skiplist.js │ │ ├── wasm-stepping-with-source-map-expected.txt │ │ ├── wasm-stepping-with-source-map.js │ │ ├── wasm-stepping.js │ │ ├── wasm-terminate-execution-on-pause-expected.txt │ │ ├── wasm-terminate-execution-on-pause.js │ │ ├── wasm-unnamed-function-names-expected.txt │ │ └── wasm-unnamed-function-names.js │ ├── frontend-channel.h │ ├── heap-profiler │ │ ├── collect-garbage-expected.txt │ │ ├── collect-garbage.js │ │ ├── console-retaining-path-expected.txt │ │ ├── console-retaining-path.js │ │ ├── heap-snapshot-js-weak-refs-expected.txt │ │ ├── heap-snapshot-js-weak-refs.js │ │ ├── sampling-heap-profiler-expected.txt │ │ ├── sampling-heap-profiler-flags-expected.txt │ │ ├── sampling-heap-profiler-flags.js │ │ ├── sampling-heap-profiler.js │ │ ├── take-heap-snapshot-on-pause-expected.txt │ │ └── take-heap-snapshot-on-pause.js │ ├── inspector-test.cc │ ├── inspector.status │ ├── isolate-data.cc │ ├── isolate-data.h │ ├── json-parse-expected.txt │ ├── json-parse.js │ ├── print-method-not-found-expected.txt │ ├── print-method-not-found.js │ ├── private-class-member-inspector-test.js │ ├── protocol-test.js │ ├── regress │ │ ├── regress-crbug-1080638-expected.txt │ │ ├── regress-crbug-1080638.js │ │ ├── regress-crbug-1081162-expected.txt │ │ ├── regress-crbug-1081162.js │ │ ├── regress-crbug-1085693-expected.txt │ │ ├── regress-crbug-1085693.js │ │ ├── regress-crbug-1147552-expected.txt │ │ ├── regress-crbug-1147552.js │ │ ├── regress-crbug-1183664-expected.txt │ │ ├── regress-crbug-1183664.js │ │ ├── regress-crbug-1195927-expected.txt │ │ ├── regress-crbug-1195927.js │ │ ├── regress-crbug-1197392-expected.txt │ │ ├── regress-crbug-1197392.js │ │ ├── regress-crbug-1199919-expected.txt │ │ ├── regress-crbug-1199919.js │ │ ├── regress-crbug-1207867-expected.txt │ │ ├── regress-crbug-1207867.js │ │ ├── regress-crbug-1209117-expected.txt │ │ ├── regress-crbug-1209117.js │ │ ├── regress-crbug-1220203-expected.txt │ │ ├── regress-crbug-1220203.js │ │ ├── regress-crbug-1222065-expected.txt │ │ ├── regress-crbug-1222065.js │ │ ├── regress-crbug-1233401-expected.txt │ │ ├── regress-crbug-1233401.js │ │ ├── regress-crbug-1246896-expected.txt │ │ ├── regress-crbug-1246896.js │ │ ├── regress-crbug-1246897-expected.txt │ │ ├── regress-crbug-1246897.js │ │ ├── regress-crbug-1253277-expected.txt │ │ ├── regress-crbug-1253277.js │ │ ├── regress-crbug-1270780-expected.txt │ │ ├── regress-crbug-1270780.js │ │ ├── regress-crbug-1274529-expected.txt │ │ ├── regress-crbug-1274529.js │ │ ├── regress-crbug-1281031-expected.txt │ │ ├── regress-crbug-1281031.js │ │ ├── regress-crbug-1283049-expected.txt │ │ ├── regress-crbug-1283049.js │ │ ├── regress-crbug-1290861-expected.txt │ │ ├── regress-crbug-1290861.js │ │ ├── regress-crbug-1328453-expected.txt │ │ ├── regress-crbug-1328453.js │ │ ├── regress-crbug-1350842-expected.txt │ │ ├── regress-crbug-1350842.js │ │ ├── regress-crbug-1352303-expected.txt │ │ ├── regress-crbug-1352303.js │ │ ├── regress-crbug-1353051-expected.txt │ │ ├── regress-crbug-1353051.js │ │ ├── regress-crbug-1401674-expected.txt │ │ ├── regress-crbug-1401674.js │ │ ├── regress-crbug-1431197-expected.txt │ │ ├── regress-crbug-1431197.js │ │ ├── regress-crbug-1433503-expected.txt │ │ ├── regress-crbug-1433503.js │ │ ├── regress-crbug-980018-expected.txt │ │ └── regress-crbug-980018.js │ ├── runtime │ │ ├── add-binding-expected.txt │ │ ├── add-binding.js │ │ ├── await-promise-expected.txt │ │ ├── await-promise.js │ │ ├── call-function-on-async-expected.txt │ │ ├── call-function-on-async.js │ │ ├── call-function-on-side-effect-free-expected.txt │ │ ├── call-function-on-side-effect-free.js │ │ ├── clear-of-command-line-api-expected.txt │ │ ├── clear-of-command-line-api.js │ │ ├── client-console-api-message-expected.txt │ │ ├── client-console-api-message.js │ │ ├── command-line-api-expected.txt │ │ ├── command-line-api-without-side-effects-expected.txt │ │ ├── command-line-api-without-side-effects.js │ │ ├── command-line-api.js │ │ ├── compile-script-expected.txt │ │ ├── compile-script.js │ │ ├── console-api-repeated-in-console-expected.txt │ │ ├── console-api-repeated-in-console.js │ │ ├── console-assert-expected.txt │ │ ├── console-assert.js │ │ ├── console-context-expected.txt │ │ ├── console-context.js │ │ ├── console-formatter-expected.txt │ │ ├── console-formatter.js │ │ ├── console-line-and-column-expected.txt │ │ ├── console-line-and-column.js │ │ ├── console-log-doesnt-run-microtasks-expected.txt │ │ ├── console-log-doesnt-run-microtasks.js │ │ ├── console-memory-expected.txt │ │ ├── console-memory.js │ │ ├── console-message-before-enable-expected.txt │ │ ├── console-message-before-enable.js │ │ ├── console-message-omit-data-urls-expected.txt │ │ ├── console-message-omit-data-urls.js │ │ ├── console-messages-limits-expected.txt │ │ ├── console-messages-limits.js │ │ ├── console-methods-expected.txt │ │ ├── console-methods.js │ │ ├── console-spec-expected.txt │ │ ├── console-spec.js │ │ ├── console-table-expected.txt │ │ ├── console-table.js │ │ ├── console-time-end-format-expected.txt │ │ ├── console-time-end-format.js │ │ ├── console-time-log-expected.txt │ │ ├── console-time-log.js │ │ ├── console-time-repeat-expected.txt │ │ ├── console-time-repeat.js │ │ ├── console-timestamp-expected.txt │ │ ├── console-timestamp.js │ │ ├── context-destroyed-on-context-collected-expected.txt │ │ ├── context-destroyed-on-context-collected.js │ │ ├── create-context-expected.txt │ │ ├── create-context.js │ │ ├── custom-preview-expected.txt │ │ ├── custom-preview.js │ │ ├── deep-serialization-local-references-expected.txt │ │ ├── deep-serialization-local-references.js │ │ ├── deep-serialization-value-expected.txt │ │ ├── deep-serialization-value.js │ │ ├── enable-async-stack-expected.txt │ │ ├── enable-async-stack.js │ │ ├── error-preview-expected.txt │ │ ├── error-preview.js │ │ ├── error-stack-expected.txt │ │ ├── error-stack-trace-limit-expected.txt │ │ ├── error-stack-trace-limit.js │ │ ├── error-stack.js │ │ ├── es6-module-expected.txt │ │ ├── es6-module.js │ │ ├── evaluate-async-expected.txt │ │ ├── evaluate-async-with-wrap-error-expected.txt │ │ ├── evaluate-async-with-wrap-error.js │ │ ├── evaluate-async.js │ │ ├── evaluate-empty-stack-expected.txt │ │ ├── evaluate-empty-stack.js │ │ ├── evaluate-new-function-error-expected.txt │ │ ├── evaluate-new-function-error.js │ │ ├── evaluate-private-class-member-conflict-expected.txt │ │ ├── evaluate-private-class-member-conflict.js │ │ ├── evaluate-private-class-member-expected.txt │ │ ├── evaluate-private-class-member-static-expected.txt │ │ ├── evaluate-private-class-member-static.js │ │ ├── evaluate-private-class-member.js │ │ ├── evaluate-repl-await-expected.txt │ │ ├── evaluate-repl-await.js │ │ ├── evaluate-repl-mode-broken-thenable-expected.txt │ │ ├── evaluate-repl-mode-broken-thenable.js │ │ ├── evaluate-repl-mode-code-cache-expected.txt │ │ ├── evaluate-repl-mode-code-cache.js │ │ ├── evaluate-repl-mode-expected.txt │ │ ├── evaluate-repl-mode-side-effecting-array-join-expected.txt │ │ ├── evaluate-repl-mode-side-effecting-array-join.js │ │ ├── evaluate-repl-mode-side-effecting-expected.txt │ │ ├── evaluate-repl-mode-side-effecting.js │ │ ├── evaluate-repl-mode-silent-expected.txt │ │ ├── evaluate-repl-mode-silent.js │ │ ├── evaluate-repl-mode.js │ │ ├── evaluate-run-microtasks-expected.txt │ │ ├── evaluate-run-microtasks.js │ │ ├── evaluate-timeout-expected.txt │ │ ├── evaluate-timeout.js │ │ ├── evaluate-unique-context-id-expected.txt │ │ ├── evaluate-unique-context-id.js │ │ ├── evaluate-unserializable-expected.txt │ │ ├── evaluate-unserializable.js │ │ ├── evaluate-with-context-id-equal-zero-expected.txt │ │ ├── evaluate-with-context-id-equal-zero.js │ │ ├── evaluate-with-disable-breaks-expected.txt │ │ ├── evaluate-with-disable-breaks.js │ │ ├── evaluate-with-generate-preview-expected.txt │ │ ├── evaluate-with-generate-preview.js │ │ ├── evaluate-without-side-effects-expected.txt │ │ ├── evaluate-without-side-effects-i18n-expected.txt │ │ ├── evaluate-without-side-effects-i18n.js │ │ ├── evaluate-without-side-effects.js │ │ ├── exception-thrown-breakpoint-conditions-expected.txt │ │ ├── exception-thrown-breakpoint-conditions.js │ │ ├── exception-thrown-expected.txt │ │ ├── exception-thrown-metadata-expected.txt │ │ ├── exception-thrown-metadata.js │ │ ├── exception-thrown.js │ │ ├── exceptionthrown-on-connect-expected.txt │ │ ├── exceptionthrown-on-connect.js │ │ ├── function-location-expected.txt │ │ ├── function-location.js │ │ ├── function-scopes-expected.txt │ │ ├── function-scopes.js │ │ ├── generate-web-driver-internal-id-expected.txt │ │ ├── generate-web-driver-internal-id.js │ │ ├── generate-web-driver-value-expected.txt │ │ ├── generate-web-driver-value.js │ │ ├── get-exception-details-expected.txt │ │ ├── get-exception-details.js │ │ ├── get-heap-usage-expected.txt │ │ ├── get-heap-usage.js │ │ ├── get-isolate-id-expected.txt │ │ ├── get-isolate-id.js │ │ ├── get-properties-expected.txt │ │ ├── get-properties-on-proxy-expected.txt │ │ ├── get-properties-on-proxy.js │ │ ├── get-properties-preview-expected.txt │ │ ├── get-properties-preview.js │ │ ├── get-properties.js │ │ ├── internal-properties-entries-expected.txt │ │ ├── internal-properties-entries.js │ │ ├── internal-properties-expected.txt │ │ ├── internal-properties-prototype-chain-expected.txt │ │ ├── internal-properties-prototype-chain.js │ │ ├── internal-properties.js │ │ ├── length-or-size-description-expected.txt │ │ ├── length-or-size-description.js │ │ ├── property-on-console-proto-expected.txt │ │ ├── property-on-console-proto.js │ │ ├── protocol-works-with-different-locale-expected.txt │ │ ├── protocol-works-with-different-locale.js │ │ ├── query-objects-expected.txt │ │ ├── query-objects.js │ │ ├── regress-1075763-expected.txt │ │ ├── regress-1075763.js │ │ ├── regress-1078205-expected.txt │ │ ├── regress-1078205.js │ │ ├── regress-1321833-expected.txt │ │ ├── regress-1321833.js │ │ ├── regress-986051-expected.txt │ │ ├── regress-986051.js │ │ ├── regression-1052721-expected.txt │ │ ├── regression-1052721.js │ │ ├── regression-1140845-expected.txt │ │ ├── regression-1140845.js │ │ ├── regression-732717-expected.txt │ │ ├── regression-732717.js │ │ ├── regression-736302-expected.txt │ │ ├── regression-736302.js │ │ ├── release-object-expected.txt │ │ ├── release-object.js │ │ ├── remote-object-expected.txt │ │ ├── remote-object-get-properties-expected.txt │ │ ├── remote-object-get-properties.js │ │ ├── remote-object.js │ │ ├── run-if-waiting-for-debugger-expected.txt │ │ ├── run-if-waiting-for-debugger.js │ │ ├── run-script-async-expected.txt │ │ ├── run-script-async.js │ │ ├── runtime-disable-preserve-injected-script-expected.txt │ │ ├── runtime-disable-preserve-injected-script.js │ │ ├── runtime-evaluate-null-property-expected.txt │ │ ├── runtime-evaluate-null-property.js │ │ ├── runtime-evaluate-with-dirty-context-expected.txt │ │ ├── runtime-evaluate-with-dirty-context.js │ │ ├── runtime-get-properties-and-accessor-expected.txt │ │ ├── runtime-get-properties-and-accessor.js │ │ ├── runtime-global-lexical-scope-names-expected.txt │ │ ├── runtime-global-lexical-scope-names.js │ │ ├── runtime-restore-expected.txt │ │ ├── runtime-restore.js │ │ ├── serialization-options-expected.txt │ │ ├── serialization-options.js │ │ ├── set-max-call-stack-size-expected.txt │ │ ├── set-max-call-stack-size.js │ │ ├── set-or-map-entries-expected.txt │ │ ├── set-or-map-entries.js │ │ ├── terminate-execution-expected.txt │ │ └── terminate-execution.js │ ├── sessions │ │ ├── create-session-expected.txt │ │ ├── create-session.js │ │ ├── debugger-stepping-and-breakpoints-expected.txt │ │ ├── debugger-stepping-and-breakpoints.js │ │ ├── pause-on-console-assert-expected.txt │ │ ├── pause-on-console-assert.js │ │ ├── runtime-command-line-api-expected.txt │ │ ├── runtime-command-line-api.js │ │ ├── runtime-console-api-called-expected.txt │ │ ├── runtime-console-api-called.js │ │ ├── runtime-evaluate-exception-expected.txt │ │ ├── runtime-evaluate-exception.js │ │ ├── runtime-evaluate-expected.txt │ │ ├── runtime-evaluate.js │ │ ├── runtime-remote-object-expected.txt │ │ └── runtime-remote-object.js │ ├── task-runner.cc │ ├── task-runner.h │ ├── tasks.cc │ ├── tasks.h │ ├── testcfg.py │ ├── utils.cc │ ├── utils.h │ └── wasm-inspector-test.js ├── intl │ ├── BUILD.gn │ ├── DIR_METADATA │ ├── OWNERS │ ├── assert.js │ ├── bad-target.js │ ├── bigint │ │ └── tolocalestring.js │ ├── break-iterator │ │ ├── default-locale.js │ │ ├── en-break.js │ │ ├── options.js │ │ ├── property-override.js │ │ ├── resolved-options-is-method.js │ │ ├── subclass.js │ │ ├── supported-locales-is-method.js │ │ └── zh-break.js │ ├── collator │ │ ├── check-co-option.js │ │ ├── check-kf-option.js │ │ ├── check-kn-option.js │ │ ├── constructor-order.js │ │ ├── de-sort.js │ │ ├── default-locale.js │ │ ├── en-sort.js │ │ ├── normalization.js │ │ ├── options.js │ │ ├── property-override.js │ │ ├── resolved-options-is-method.js │ │ └── sr-sort.js │ ├── date-format │ │ ├── UnwrapDateTimeFormatUseOrdinaryHasInstance.js │ │ ├── calendar-with-multiple-type-subtags.js │ │ ├── check-ca-option.js │ │ ├── check-calendar.js │ │ ├── check-hc-option.js │ │ ├── check-nu-option.js │ │ ├── check-numbering-system.js │ │ ├── constructor-calendar-numberingSytem-order.js │ │ ├── constructor-date-style-order.js │ │ ├── constructor-date-time-style-order.js │ │ ├── constructor-date-time-style.js │ │ ├── constructor-no-style-order.js │ │ ├── constructor-order.js │ │ ├── constructor-time-style-order.js │ │ ├── date-format-to-parts.js │ │ ├── date_style_time_style_hour_cycle.js │ │ ├── default-locale.js │ │ ├── en-format-range-to-parts.js │ │ ├── format-is-bound.js │ │ ├── format-range-to-parts.js │ │ ├── format-range.js │ │ ├── format-test.js │ │ ├── format-with-extensions.js │ │ ├── format_range_hour_cycle.js │ │ ├── hour_cycle.js │ │ ├── invalid-time.js │ │ ├── month-far-future.js │ │ ├── property-override-date-style.js │ │ ├── property-override-date-time-style.js │ │ ├── property-override-time-style.js │ │ ├── property-override.js │ │ ├── related-year.js │ │ ├── resolved-options-is-method.js │ │ ├── resolved-options-unwrap.js │ │ ├── resolved-options.js │ │ ├── time_style_hour_cycle.js │ │ ├── timezone-conversion.js │ │ ├── timezone-name-extended.js │ │ ├── timezone-name.js │ │ ├── timezone.js │ │ └── unmodified-options.js │ ├── default_locale.js │ ├── displaynames │ │ ├── calendar-v2.js │ │ ├── constructor-order-v2.js │ │ ├── constructor-order.js │ │ ├── constructor-v2.js │ │ ├── constructor.js │ │ ├── date-time-field-v2.js │ │ ├── getoptionsobject.js │ │ ├── languagecanonical.js │ │ ├── resolved-options-v2.js │ │ ├── resolved-options.js │ │ └── supported-locale.js │ ├── enumeration │ │ ├── calendar-sorted.js │ │ ├── callendar-syntax-valid.js │ │ ├── collation-sorted.js │ │ ├── collation-syntax-valid.js │ │ ├── currency-sorted.js │ │ ├── currency-syntax-valid.js │ │ ├── numberingSystem-no-algorithm.js │ │ ├── numberingSystem-sorted.js │ │ ├── numberingSystem-syntax-valid.js │ │ ├── supported-values-of-invalid-key.js │ │ ├── supported-values-of-name.js │ │ ├── supported-values-of-property.js │ │ ├── supported-values-of-valid-key.js │ │ ├── timeZone-sorted.js │ │ └── unit-sorted.js │ ├── general │ │ ├── CanonicalizeLocaleListTakeLocale.js │ │ ├── case-mapping.js │ │ ├── constructor.js │ │ ├── empty-handle.js │ │ ├── getCanonicalLocales.js │ │ ├── grandfathered_tags_without_preferred_value.js │ │ ├── invalid-locale.js │ │ ├── language_tags_with_preferred_values.js │ │ ├── mapped-locale.js │ │ ├── smp-identifier.js │ │ └── supported-locales-of.js │ ├── intl.status │ ├── list-format │ │ ├── constructor-order.js │ │ ├── constructor.js │ │ ├── format-en.js │ │ ├── format-to-parts.js │ │ ├── format.js │ │ ├── formatToParts-zh.js │ │ ├── getoptionsobject.js │ │ ├── resolved-options.js │ │ └── supported-locale.js │ ├── locale │ │ ├── locale-canonicalization.js │ │ ├── locale-constructor.js │ │ ├── locale-getCalendars.js │ │ ├── locale-getCollations.js │ │ ├── locale-info-check-property.js │ │ ├── locale-info-check-return-types.js │ │ ├── locale-info-ext.js │ │ ├── locale-info-gettextinfo.js │ │ ├── locale-info-no-undefined.js │ │ ├── locale-info-timezones-sorted.js │ │ ├── locale-numberingSystems.js │ │ ├── locale-properties.js │ │ ├── locale.js │ │ ├── maximize_minimize.js │ │ ├── property.js │ │ └── regress-8032.js │ ├── localematcher │ │ ├── bestfit-known-locales.js │ │ ├── bestfit-macrolanguages.js │ │ ├── bestfit-supplemental-files.js │ │ └── bestfit-supportedLocalesOf-subset.js │ ├── not-constructors.js │ ├── number-format │ │ ├── UnwrapNumberFormatUseOrdinaryHasInstance.js │ │ ├── check-digit-ranges.js │ │ ├── check-minimum-fraction-digits.js │ │ ├── check-nu-option.js │ │ ├── check-numbering-system.js │ │ ├── constructor-numberingSytem-order.js │ │ ├── constructor-order.js │ │ ├── default-locale.js │ │ ├── format-currency.js │ │ ├── format-is-bound.js │ │ ├── format-range-numbering-system.js │ │ ├── format-range-string.js │ │ ├── format-range-v3.js │ │ ├── format-string.js │ │ ├── options-digits-v3.js │ │ ├── options-digits.js │ │ ├── options.js │ │ ├── resolved-options-is-method.js │ │ ├── resolved-options-unwrap.js │ │ ├── rounding-increment-resolved-match-v3.js │ │ ├── rounding-increment-v3.js │ │ ├── rounding-increment-value-v3.js │ │ ├── rounding-mode-table-v3.js │ │ ├── rounding-mode-v3.js │ │ ├── sign-display-v3.js │ │ ├── trailing-zero-display-resolved-options-v3.js │ │ ├── trailing-zero-display-v3.js │ │ ├── unified │ │ │ ├── compact-display.js │ │ │ ├── constructor-order.js │ │ │ ├── currency-display.js │ │ │ ├── currency-sign.js │ │ │ ├── no-compact-display.js │ │ │ ├── notation-engineering-formatToParts.js │ │ │ ├── notation-scientific-formatToParts.js │ │ │ ├── notation.js │ │ │ ├── percent.js │ │ │ ├── sign-display.js │ │ │ ├── style-unit.js │ │ │ └── unit-display.js │ │ ├── use-grouping-v3.js │ │ └── wont-crash-by-1-or-false.js │ ├── overrides │ │ ├── caching.js │ │ ├── date.js │ │ ├── number.js │ │ ├── security.js │ │ ├── string.js │ │ └── webkit-tests.js │ ├── plural-rules │ │ ├── check-to-number.js │ │ ├── constructor-order.js │ │ └── select-range.js │ ├── regress-1003748.js │ ├── regress-1012579.js │ ├── regress-10248.js │ ├── regress-1030160.js │ ├── regress-1041319.js │ ├── regress-10437.js │ ├── regress-10438.js │ ├── regress-10526.js │ ├── regress-10527.js │ ├── regress-10528.js │ ├── regress-10529.js │ ├── regress-10573.js │ ├── regress-10599.js │ ├── regress-10613.js │ ├── regress-1074578.js │ ├── regress-10836.js │ ├── regress-10960.js │ ├── regress-1107661.js │ ├── regress-1108810.js │ ├── regress-1121156.js │ ├── regress-11295.js │ ├── regress-1130489.js │ ├── regress-1132641.js │ ├── regress-11350.js │ ├── regress-1146468.js │ ├── regress-11595.js │ ├── regress-1170305.js │ ├── regress-1177623.js │ ├── regress-1177812.js │ ├── regress-1224869.js │ ├── regress-1336865.js │ ├── regress-1347690.js │ ├── regress-13494.js │ ├── regress-1427932.js │ ├── regress-1451943.js │ ├── regress-364374.js │ ├── regress-4870.js │ ├── regress-5179.js │ ├── regress-527926.js │ ├── regress-7481.js │ ├── regress-7770.js │ ├── regress-7982.js │ ├── regress-8030.js │ ├── regress-8031.js │ ├── regress-8348.js │ ├── regress-8432.js │ ├── regress-8469.js │ ├── regress-8525.js │ ├── regress-8604.js │ ├── regress-8657.js │ ├── regress-8725514.js │ ├── regress-875643.js │ ├── regress-8866.js │ ├── regress-888299.js │ ├── regress-895942.js │ ├── regress-900013.js │ ├── regress-9035.js │ ├── regress-903566.js │ ├── regress-9084.js │ ├── regress-917151.js │ ├── regress-925216.js │ ├── regress-928068.js │ ├── regress-930304.js │ ├── regress-9312.js │ ├── regress-9356.js │ ├── regress-9408.js │ ├── regress-9464.js │ ├── regress-9475.js │ ├── regress-9513.js │ ├── regress-9642.js │ ├── regress-966285.js │ ├── regress-971636.js │ ├── regress-9731.js │ ├── regress-9747.js │ ├── regress-9786.js │ ├── regress-9787.js │ ├── regress-9788.js │ ├── regress-9812.js │ ├── regress-9849.js │ ├── regress-9887.js │ ├── regress-9912.js │ ├── regress-992694.js │ ├── regress-997401.js │ ├── relative-time-format │ │ ├── check-numbering-system.js │ │ ├── constructor-order.js │ │ ├── constructor.js │ │ ├── default-locale-fr-CA.js │ │ ├── default-locale-pt-BR.js │ │ ├── format-en.js │ │ ├── format-to-parts-en.js │ │ ├── format-to-parts-plural.js │ │ ├── format-to-parts.js │ │ ├── format.js │ │ ├── numberingSystems.js │ │ ├── resolved-options-nu-extended.js │ │ ├── resolved-options-nu.js │ │ ├── resolved-options.js │ │ └── supported-locale.js │ ├── segmenter │ │ ├── check-lb-option.js │ │ ├── constructor-order.js │ │ ├── constructor.js │ │ ├── getoptionsobject.js │ │ ├── grapheme-containing.js │ │ ├── grapheme-nested-next.js │ │ ├── grapheme-next-after-containing.js │ │ ├── segment-grapheme.js │ │ ├── segment-iterator-ownPropertyDescriptor.js │ │ ├── segment-sentence.js │ │ ├── segment-word.js │ │ ├── segment.js │ │ ├── subclassing.js │ │ ├── supported-locale.js │ │ └── word-containing.js │ ├── string-localecompare.js │ ├── string │ │ └── normalization.js │ ├── temporal │ │ └── calendar │ │ │ └── fields.js │ ├── testcfg.py │ ├── toStringTag.js │ └── utils.js ├── js-perf-test │ ├── ApiAccessors │ │ ├── accessor.js │ │ └── run.js │ ├── Array │ │ ├── at.js │ │ ├── copy-within.js │ │ ├── every.js │ │ ├── filter.js │ │ ├── find-index.js │ │ ├── find.js │ │ ├── for-each.js │ │ ├── from.js │ │ ├── join.js │ │ ├── map.js │ │ ├── of.js │ │ ├── reduce-right.js │ │ ├── reduce.js │ │ ├── run.js │ │ ├── slice.js │ │ ├── some.js │ │ └── to-string.js │ ├── ArrayInOperator │ │ └── run.js │ ├── ArrayIndexOfIncludesPolymorphic │ │ ├── indexof-includes-polymorphic.js │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargeDoubleHoley │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargeDoublePacked │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargeHoley │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargePacked │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargeSmiMap │ │ └── run.js │ ├── ArrayLiteralInitialSpreadLargeSmiSet │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallDoubleHoley │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallDoublePacked │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallHoley │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallPacked │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallSmiMap │ │ └── run.js │ ├── ArrayLiteralInitialSpreadSmallSmiSet │ │ └── run.js │ ├── ArrayLiteralSpread │ │ └── run.js │ ├── ArraySort │ │ ├── run.js │ │ ├── sort-base.js │ │ ├── sort-cmpfn-kindchange.js │ │ ├── sort-cmpfn.js │ │ ├── sort-lengths.js │ │ ├── sort-megamorphic.js │ │ ├── sort-presorted.js │ │ └── sort.js │ ├── AsyncAwait │ │ ├── baseline-babel-es2017.js │ │ ├── baseline-naive-promises.js │ │ ├── native.js │ │ └── run.js │ ├── BigInt │ │ ├── add.js │ │ ├── as-int-n.js │ │ ├── as-uint-n.js │ │ ├── bigint-util.js │ │ ├── bitwise-and.js │ │ ├── divide.js │ │ ├── multiply.js │ │ ├── run.js │ │ ├── shift.js │ │ ├── subtract.js │ │ └── to-boolean.js │ ├── BytecodeHandlers │ │ ├── GetKeyedProperty.js │ │ ├── GetNamedProperty.js │ │ ├── LdaGlobal.js │ │ ├── arithmetic.js │ │ ├── bitwise.js │ │ ├── compare.js │ │ ├── run.js │ │ └── string-concat.js │ ├── ClassFields.json │ ├── ClassFields │ │ ├── classes.js │ │ ├── evaluate-class.js │ │ ├── initialize-instance.js │ │ └── run.js │ ├── Classes │ │ ├── default-constructor.js │ │ ├── leaf-constructors.js │ │ ├── run.js │ │ └── super.js │ ├── Closures │ │ ├── closures.js │ │ └── run.js │ ├── Collections │ │ ├── common.js │ │ ├── map.js │ │ ├── run.js │ │ ├── set.js │ │ ├── weakmap.js │ │ └── weakset.js │ ├── DataView │ │ ├── dataviewtest.js │ │ └── run.js │ ├── Dates │ │ ├── run.js │ │ └── toLocaleString.js │ ├── Exceptions │ │ ├── run.js │ │ └── try-catch.js │ ├── ExpressionDepth │ │ └── run.js │ ├── ForLoops │ │ ├── for_loop.js │ │ └── run.js │ ├── Generators │ │ ├── generators.js │ │ └── run.js │ ├── GetOwnPropertyDescriptor │ │ ├── GetOwnPropertyDescriptor.json │ │ ├── get-own-property-descriptor.js │ │ └── run.js │ ├── IC │ │ ├── loadconstantfromprototype.js │ │ └── run.js │ ├── Inspector │ │ ├── debugger.js │ │ ├── run.js │ │ └── runtime.js │ ├── InterpreterEntryTrampoline │ │ ├── arguments.js │ │ ├── locals.js │ │ └── run.js │ ├── Intl │ │ ├── constructor.js │ │ └── run.js │ ├── Iterators │ │ ├── forof.js │ │ └── run.js │ ├── JSTests1.json │ ├── JSTests2.json │ ├── JSTests3.json │ ├── JSTests4.json │ ├── JSTests5.json │ ├── Keys │ │ ├── keys.js │ │ └── run.js │ ├── ManyClosures │ │ ├── create-many-closures.js │ │ └── run.js │ ├── Modules │ │ ├── basic-export.js │ │ ├── basic-import.js │ │ ├── basic-namespace.js │ │ ├── run.js │ │ └── value.js │ ├── Numbers │ │ ├── run.js │ │ ├── toHexString.js │ │ ├── toLocaleString.js │ │ └── toNumber.js │ ├── OWNERS │ ├── Object │ │ ├── ObjectTests.json │ │ ├── assign.js │ │ ├── create.js │ │ ├── entries.js │ │ ├── run.js │ │ └── values.js │ ├── ObjectDestructuringAssignment │ │ └── run.js │ ├── ObjectFreeze │ │ ├── array-indexof-includes.js │ │ ├── array-map.js │ │ ├── array-reduce.js │ │ ├── has-own-property.js │ │ ├── run.js │ │ ├── spread-call.js │ │ └── tagged-template.js │ ├── ObjectLiteralSpread │ │ └── run.js │ ├── Operators │ │ ├── abstract-equality.js │ │ └── run.js │ ├── Parsing │ │ ├── arrowfunctions.js │ │ ├── comments.js │ │ ├── run.js │ │ └── strings.js │ ├── PropertyQueries │ │ ├── PropertyQueries.json │ │ ├── property-queries.js │ │ └── run.js │ ├── Proxies │ │ ├── proxies.js │ │ └── run.js │ ├── RegExp.json │ ├── RegExp │ │ ├── RegExpTests.json │ │ ├── base.js │ │ ├── base_ctor.js │ │ ├── base_exec.js │ │ ├── base_flags.js │ │ ├── base_match.js │ │ ├── base_replace.js │ │ ├── base_search.js │ │ ├── base_split.js │ │ ├── base_test.js │ │ ├── case_test.js │ │ ├── complex_case_test.js │ │ ├── ctor.js │ │ ├── exec.js │ │ ├── flags.js │ │ ├── inline_test.js │ │ ├── match.js │ │ ├── replace.js │ │ ├── run.js │ │ ├── search.js │ │ ├── slow_exec.js │ │ ├── slow_flags.js │ │ ├── slow_match.js │ │ ├── slow_replace.js │ │ ├── slow_search.js │ │ ├── slow_split.js │ │ ├── slow_test.js │ │ ├── split.js │ │ └── test.js │ ├── RestParameters │ │ ├── rest.js │ │ └── run.js │ ├── Scope │ │ ├── run.js │ │ └── with.js │ ├── SixSpeed.json │ ├── SixSpeed │ │ ├── LICENSE.sixspeed │ │ ├── array_destructuring │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── classes │ │ │ ├── babel.js │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── defaults │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── map_set_add │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── map_set_lookup │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── map_set_object │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── map_string │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── object_literals │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── run.js │ │ ├── spread │ │ │ ├── babel.js │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── spread_literal │ │ │ ├── babel.js │ │ │ ├── es5.js │ │ │ └── es6.js │ │ ├── super │ │ │ ├── babel.js │ │ │ ├── es5.js │ │ │ └── es6.js │ │ └── super_spread │ │ │ ├── babel.js │ │ │ ├── es5.js │ │ │ └── es6.js │ ├── SpreadCalls │ │ ├── run.js │ │ └── spreadcalls.js │ ├── SpreadCallsGeneral │ │ └── run.js │ ├── StackTrace │ │ ├── capture.js │ │ ├── run.js │ │ └── serialize.js │ ├── StringIterators │ │ ├── run.js │ │ └── string-iterator.js │ ├── Strings │ │ ├── harmony-string.js │ │ ├── run.js │ │ ├── string-indexof.js │ │ ├── string-localeCompare.js │ │ ├── string-matchall.js │ │ ├── string-normalize.js │ │ ├── string-split.js │ │ ├── string-startsendswith-comp.js │ │ ├── string-startswith.js │ │ ├── string-stringat-comp.js │ │ ├── string-stringat.js │ │ ├── string-substring.js │ │ └── string-toLocaleCase.js │ ├── SuperIC.json │ ├── SuperIC │ │ └── compare-super-and-normal-property-access.js │ ├── SwitchStatements │ │ ├── run.js │ │ └── switch_statement.js │ ├── Templates │ │ ├── run.js │ │ └── templates.js │ ├── TurboFan │ │ ├── run.js │ │ ├── typedLowering.js │ │ └── wasm-inlining-loop-array.js │ ├── TypedArrays │ │ ├── base.js │ │ ├── construct-all-typedarrays.js │ │ ├── construct-arraylike.js │ │ ├── construct-buffer.js │ │ ├── construct-same-typedarray.js │ │ ├── construct-typedarray.js │ │ ├── constructor.js │ │ ├── copywithin.js │ │ ├── filter-nospecies.js │ │ ├── join-bigint.js │ │ ├── join-float.js │ │ ├── join-int.js │ │ ├── join-sep-bigint.js │ │ ├── join-sep-float.js │ │ ├── join-sep-int.js │ │ ├── join.js │ │ ├── run.js │ │ ├── set-from-arraylike.js │ │ ├── set-from-different-type.js │ │ ├── set-from-same-type.js │ │ ├── slice-nospecies.js │ │ ├── sort-bigint.js │ │ ├── sort-cmpfn-bigint.js │ │ ├── sort-cmpfn-float.js │ │ ├── sort-cmpfn-int.js │ │ ├── sort-float.js │ │ ├── sort-int.js │ │ ├── sort.js │ │ └── subarray-nospecies.js │ └── base.js ├── memory │ ├── Memory.json │ └── run.js ├── message │ ├── BUILD.gn │ ├── README.md │ ├── asm-assignment-undeclared.js │ ├── asm-assignment-undeclared.out │ ├── asm-function-mismatch-def.js │ ├── asm-function-mismatch-def.out │ ├── asm-function-mismatch-use.js │ ├── asm-function-mismatch-use.out │ ├── asm-function-redefined.js │ ├── asm-function-redefined.out │ ├── asm-function-undefined.js │ ├── asm-function-undefined.out │ ├── asm-function-variable-collision.js │ ├── asm-function-variable-collision.out │ ├── asm-import-wrong-annotation.js │ ├── asm-import-wrong-annotation.out │ ├── asm-import-wrong-object.js │ ├── asm-import-wrong-object.out │ ├── asm-linking-bogus-heap.js │ ├── asm-linking-bogus-heap.out │ ├── asm-linking-bogus-stdlib.js │ ├── asm-linking-bogus-stdlib.out │ ├── asm-linking-missing-heap.js │ ├── asm-linking-missing-heap.out │ ├── asm-missing-parameter-annotation.js │ ├── asm-missing-parameter-annotation.out │ ├── asm-missing-return-annotation.js │ ├── asm-missing-return-annotation.out │ ├── asm-table-mismatch-def.js │ ├── asm-table-mismatch-def.out │ ├── asm-table-mismatch-use.js │ ├── asm-table-mismatch-use.out │ ├── asm-table-redefined.js │ ├── asm-table-redefined.out │ ├── asm-table-undefined.js │ ├── asm-table-undefined.out │ ├── asm-table-variable-collision.js │ ├── asm-table-variable-collision.out │ ├── empty.js │ ├── empty.out │ ├── fail │ │ ├── array-binding-pattern-await1.js │ │ ├── array-binding-pattern-await1.out │ │ ├── array-spread-non-iterable-object.js │ │ ├── array-spread-non-iterable-object.out │ │ ├── arrow-bare-rest-param.js │ │ ├── arrow-bare-rest-param.out │ │ ├── arrow-formal-parameters.js │ │ ├── arrow-formal-parameters.out │ │ ├── arrow-invalid-rest-2.js │ │ ├── arrow-invalid-rest-2.out │ │ ├── arrow-invalid-rest.js │ │ ├── arrow-invalid-rest.out │ │ ├── arrow-missing.js │ │ ├── arrow-missing.out │ │ ├── arrow-param-after-rest-2.js │ │ ├── arrow-param-after-rest-2.out │ │ ├── arrow-param-after-rest.js │ │ ├── arrow-param-after-rest.out │ │ ├── arrow-strict-eval-bare-parameter.js │ │ ├── arrow-strict-eval-bare-parameter.out │ │ ├── arrow-two-rest-params.js │ │ ├── arrow-two-rest-params.out │ │ ├── async-arrow-invalid-rest-2.js │ │ ├── async-arrow-invalid-rest-2.out │ │ ├── async-arrow-invalid-rest.js │ │ ├── async-arrow-invalid-rest.out │ │ ├── async-arrow-param-after-rest.js │ │ ├── async-arrow-param-after-rest.out │ │ ├── await-non-async.js │ │ ├── await-non-async.out │ │ ├── call-async.js │ │ ├── call-async.out │ │ ├── call-await.js │ │ ├── call-await.out │ │ ├── call-expression.js │ │ ├── call-expression.out │ │ ├── call-let.js │ │ ├── call-let.out │ │ ├── call-non-constructable.js │ │ ├── call-non-constructable.out │ │ ├── call-primitive-constructor.js │ │ ├── call-primitive-constructor.out │ │ ├── call-primitive-function.js │ │ ├── call-primitive-function.out │ │ ├── call-static.js │ │ ├── call-static.out │ │ ├── call-undeclared-constructor.js │ │ ├── call-undeclared-constructor.out │ │ ├── call-undeclared-function.js │ │ ├── call-undeclared-function.out │ │ ├── call-yield.js │ │ ├── call-yield.out │ │ ├── class-accessors-private-undefined-getter-count.js │ │ ├── class-accessors-private-undefined-getter-count.out │ │ ├── class-accessors-private-undefined-getter-nested.js │ │ ├── class-accessors-private-undefined-getter-nested.out │ │ ├── class-accessors-private-undefined-getter.js │ │ ├── class-accessors-private-undefined-getter.out │ │ ├── class-accessors-private-undefined-setter-compound.js │ │ ├── class-accessors-private-undefined-setter-compound.out │ │ ├── class-accessors-private-undefined-setter-count.js │ │ ├── class-accessors-private-undefined-setter-count.out │ │ ├── class-accessors-private-undefined-setter-nested.js │ │ ├── class-accessors-private-undefined-setter-nested.out │ │ ├── class-accessors-private-undefined-setter.js │ │ ├── class-accessors-private-undefined-setter.out │ │ ├── class-constructor-accessor.js │ │ ├── class-constructor-accessor.out │ │ ├── class-constructor-generator.js │ │ ├── class-constructor-generator.out │ │ ├── class-field-constructor.js │ │ ├── class-field-constructor.out │ │ ├── class-field-static-constructor.js │ │ ├── class-field-static-constructor.out │ │ ├── class-field-static-prototype.js │ │ ├── class-field-static-prototype.out │ │ ├── class-fields-computed.js │ │ ├── class-fields-computed.out │ │ ├── class-fields-private-class-in-function.js │ │ ├── class-fields-private-class-in-function.out │ │ ├── class-fields-private-outside-class.js │ │ ├── class-fields-private-outside-class.out │ │ ├── class-fields-private-source-positions.js │ │ ├── class-fields-private-source-positions.out │ │ ├── class-fields-private-throw-early-2.js │ │ ├── class-fields-private-throw-early-2.out │ │ ├── class-fields-private-throw-early.js │ │ ├── class-fields-private-throw-early.out │ │ ├── class-fields-private-throw-in-module.mjs │ │ ├── class-fields-private-throw-in-module.out │ │ ├── class-fields-private-throw-read.js │ │ ├── class-fields-private-throw-read.out │ │ ├── class-fields-private-throw-write.js │ │ ├── class-fields-private-throw-write.out │ │ ├── class-fields-private-undeclared-lazy-class.js │ │ ├── class-fields-private-undeclared-lazy-class.out │ │ ├── class-fields-private-undefined-inner-class.js │ │ ├── class-fields-private-undefined-inner-class.out │ │ ├── class-fields-static-throw.js │ │ ├── class-fields-static-throw.out │ │ ├── class-fields-throw.js │ │ ├── class-fields-throw.out │ │ ├── class-methods-private-brand-check-anonymous.js │ │ ├── class-methods-private-brand-check-anonymous.out │ │ ├── class-methods-private-brand-check.js │ │ ├── class-methods-private-brand-check.out │ │ ├── class-methods-private-throw-write.js │ │ ├── class-methods-private-throw-write.out │ │ ├── class-private-brand-compound-assign-getter-only.js │ │ ├── class-private-brand-compound-assign-getter-only.out │ │ ├── class-private-brand-compound-assign-method.js │ │ ├── class-private-brand-compound-assign-method.out │ │ ├── class-private-brand-compound-assign-setter-only.js │ │ ├── class-private-brand-compound-assign-setter-only.out │ │ ├── class-private-brand-count-getter-only.js │ │ ├── class-private-brand-count-getter-only.out │ │ ├── class-private-brand-count-method.js │ │ ├── class-private-brand-count-method.out │ │ ├── class-private-brand-count-setter-only.js │ │ ├── class-private-brand-count-setter-only.out │ │ ├── class-private-brand-reinitialization-anonymous.js │ │ ├── class-private-brand-reinitialization-anonymous.out │ │ ├── class-private-brand-reinitialization.js │ │ ├── class-private-brand-reinitialization.out │ │ ├── class-private-brand-write-getter-only.js │ │ ├── class-private-brand-write-getter-only.out │ │ ├── class-private-brand-write-method.js │ │ ├── class-private-brand-write-method.out │ │ ├── class-private-brand-write-setter-only.js │ │ ├── class-private-brand-write-setter-only.out │ │ ├── class-private-field-reinitialization.js │ │ ├── class-private-field-reinitialization.out │ │ ├── class-private-static-compound-assign-getter-only.js │ │ ├── class-private-static-compound-assign-getter-only.out │ │ ├── class-private-static-compound-assign-method.js │ │ ├── class-private-static-compound-assign-method.out │ │ ├── class-private-static-compound-assign-setter-only.js │ │ ├── class-private-static-compound-assign-setter-only.out │ │ ├── class-private-static-count-getter-only.js │ │ ├── class-private-static-count-getter-only.out │ │ ├── class-private-static-count-method.js │ │ ├── class-private-static-count-method.out │ │ ├── class-private-static-count-setter-only.js │ │ ├── class-private-static-count-setter-only.out │ │ ├── class-private-static-write-getter-only.js │ │ ├── class-private-static-write-getter-only.out │ │ ├── class-private-static-write-method.js │ │ ├── class-private-static-write-method.out │ │ ├── class-private-static-write-setter-only.js │ │ ├── class-private-static-write-setter-only.out │ │ ├── class-spread-property.js │ │ ├── class-spread-property.out │ │ ├── computed-prop-fni.js │ │ ├── computed-prop-fni.out │ │ ├── console.js │ │ ├── console.out │ │ ├── const-decl-no-init-sloppy.out │ │ ├── const-decl-no-init.js │ │ ├── const-decl-no-init.out │ │ ├── const-decl-no-init2.js │ │ ├── const-decl-no-init2.out │ │ ├── data-view-invalid-length-1.js │ │ ├── data-view-invalid-length-1.out │ │ ├── data-view-invalid-length-2.js │ │ ├── data-view-invalid-length-2.out │ │ ├── data-view-invalid-length-3.js │ │ ├── data-view-invalid-length-3.out │ │ ├── default-parameter-tdz-arrow.js │ │ ├── default-parameter-tdz-arrow.out │ │ ├── default-parameter-tdz.js │ │ ├── default-parameter-tdz.out │ │ ├── destructuring-array-non-iterable-number.js │ │ ├── destructuring-array-non-iterable-number.out │ │ ├── destructuring-array-non-iterable-object-computed.js │ │ ├── destructuring-array-non-iterable-object-computed.out │ │ ├── destructuring-array-non-iterable-object-literal-complex.js │ │ ├── destructuring-array-non-iterable-object-literal-complex.out │ │ ├── destructuring-array-non-iterable-object-literal.js │ │ ├── destructuring-array-non-iterable-object-literal.out │ │ ├── destructuring-array-non-iterable-object.js │ │ ├── destructuring-array-non-iterable-object.out │ │ ├── destructuring-array-non-iterable-undefined.js │ │ ├── destructuring-array-non-iterable-undefined.out │ │ ├── destructuring-decl-no-init-array.js │ │ ├── destructuring-decl-no-init-array.out │ │ ├── destructuring-decl-no-init-array2.js │ │ ├── destructuring-decl-no-init-array2.out │ │ ├── destructuring-decl-no-init-obj.js │ │ ├── destructuring-decl-no-init-obj.out │ │ ├── destructuring-decl-no-init-obj2.js │ │ ├── destructuring-decl-no-init-obj2.out │ │ ├── destructuring-function-non-iterable.js │ │ ├── destructuring-function-non-iterable.out │ │ ├── destructuring-modify-const.js │ │ ├── destructuring-modify-const.out │ │ ├── destructuring-new-callable-non-iterable.js │ │ ├── destructuring-new-callable-non-iterable.out │ │ ├── destructuring-non-function-non-iterable.js │ │ ├── destructuring-non-function-non-iterable.out │ │ ├── destructuring-object-private-name.js │ │ ├── destructuring-object-private-name.out │ │ ├── destructuring-undefined-computed-property.js │ │ ├── destructuring-undefined-computed-property.out │ │ ├── destructuring-undefined-number-property.js │ │ ├── destructuring-undefined-number-property.out │ │ ├── destructuring-undefined-string-property.js │ │ ├── destructuring-undefined-string-property.out │ │ ├── directive.js │ │ ├── directive.out │ │ ├── dynamic-import-missing-specifier.js │ │ ├── dynamic-import-missing-specifier.out │ │ ├── export-duplicate-as.mjs │ │ ├── export-duplicate-as.out │ │ ├── export-duplicate-default.mjs │ │ ├── export-duplicate-default.out │ │ ├── export-duplicate.mjs │ │ ├── export-duplicate.out │ │ ├── for-in-let-loop-initializers-strict.js │ │ ├── for-in-let-loop-initializers-strict.out │ │ ├── for-in-loop-initializers-destructuring.js │ │ ├── for-in-loop-initializers-destructuring.out │ │ ├── for-in-loop-initializers-strict.js │ │ ├── for-in-loop-initializers-strict.out │ │ ├── for-loop-invalid-lhs.js │ │ ├── for-loop-invalid-lhs.out │ │ ├── for-of-let-loop-initializers.js │ │ ├── for-of-let-loop-initializers.out │ │ ├── for-of-loop-initializers-sloppy.js │ │ ├── for-of-loop-initializers-sloppy.out │ │ ├── for-of-loop-initializers-strict.js │ │ ├── for-of-loop-initializers-strict.out │ │ ├── for-of-non-iterable.js │ │ ├── for-of-non-iterable.out │ │ ├── for-of-throw-in-body.js │ │ ├── for-of-throw-in-body.out │ │ ├── formal-parameters-bad-rest.js │ │ ├── formal-parameters-bad-rest.out │ │ ├── formal-parameters-strict-body.js │ │ ├── formal-parameters-strict-body.out │ │ ├── formal-parameters-trailing-comma.js │ │ ├── formal-parameters-trailing-comma.out │ │ ├── func-name-inferrer-arg-1.js │ │ ├── func-name-inferrer-arg-1.out │ │ ├── func-name-inferrer-arg.js │ │ ├── func-name-inferrer-arg.out │ │ ├── function-param-after-rest.js │ │ ├── function-param-after-rest.out │ │ ├── generators-throw1.js │ │ ├── generators-throw1.out │ │ ├── generators-throw2.js │ │ ├── generators-throw2.out │ │ ├── get-iterator-return-non-receiver.js │ │ ├── get-iterator-return-non-receiver.out │ │ ├── get-iterator1.js │ │ ├── get-iterator1.out │ │ ├── hashbang-incomplete-string.js │ │ ├── hashbang-incomplete-string.out │ │ ├── import-as-eval.mjs │ │ ├── import-as-eval.out │ │ ├── import-as-redeclaration.mjs │ │ ├── import-as-redeclaration.out │ │ ├── import-as-reserved-word.mjs │ │ ├── import-as-reserved-word.out │ │ ├── import-blah-module.mjs │ │ ├── import-blah-module.out │ │ ├── import-blah-script.js │ │ ├── import-blah-script.out │ │ ├── import-eval.mjs │ │ ├── import-eval.out │ │ ├── import-redeclaration.mjs │ │ ├── import-redeclaration.out │ │ ├── import-reserved-word.mjs │ │ ├── import-reserved-word.out │ │ ├── import-script.js │ │ ├── import-script.out │ │ ├── instanceof-noncallable.js │ │ ├── instanceof-noncallable.out │ │ ├── instanceof-nonobject.js │ │ ├── instanceof-nonobject.out │ │ ├── invalid-spread-2.js │ │ ├── invalid-spread-2.out │ │ ├── invalid-spread.js │ │ ├── invalid-spread.out │ │ ├── iterator-non-callable-2.js │ │ ├── iterator-non-callable-2.out │ │ ├── iterator-non-callable-3.js │ │ ├── iterator-non-callable-3.out │ │ ├── iterator-non-callable.js │ │ ├── iterator-non-callable.out │ │ ├── json-stringify-circular-ellipsis.js │ │ ├── json-stringify-circular-ellipsis.out │ │ ├── json-stringify-circular-max-display-depth.js │ │ ├── json-stringify-circular-max-display-depth.out │ │ ├── json-stringify-circular-proxy.js │ │ ├── json-stringify-circular-proxy.out │ │ ├── json-stringify-circular-substructure.js │ │ ├── json-stringify-circular-substructure.out │ │ ├── json-stringify-circular.js │ │ ├── json-stringify-circular.out │ │ ├── let-lexical-declaration-destructuring-brace-in-single-statement.js │ │ ├── let-lexical-declaration-destructuring-brace-in-single-statement.out │ │ ├── let-lexical-declaration-destructuring-in-single-statement.js │ │ ├── let-lexical-declaration-destructuring-in-single-statement.out │ │ ├── let-lexical-declaration-in-single-statement.js │ │ ├── let-lexical-declaration-in-single-statement.out │ │ ├── let-lexical-name-in-array-prohibited.js │ │ ├── let-lexical-name-in-array-prohibited.out │ │ ├── let-lexical-name-in-object-prohibited.js │ │ ├── let-lexical-name-in-object-prohibited.out │ │ ├── let-lexical-name-prohibited.js │ │ ├── let-lexical-name-prohibited.out │ │ ├── map-arg-non-iterable.js │ │ ├── map-arg-non-iterable.out │ │ ├── map-grow-failed.js │ │ ├── map-grow-failed.out │ │ ├── missing-function-name.js │ │ ├── missing-function-name.out │ │ ├── modules-cycle1.mjs │ │ ├── modules-cycle1.out │ │ ├── modules-cycle2.mjs │ │ ├── modules-cycle2.out │ │ ├── modules-cycle3.mjs │ │ ├── modules-cycle3.out │ │ ├── modules-cycle4.mjs │ │ ├── modules-cycle4.out │ │ ├── modules-cycle5.mjs │ │ ├── modules-cycle5.out │ │ ├── modules-cycle6.mjs │ │ ├── modules-cycle6.out │ │ ├── modules-duplicate-export1.mjs │ │ ├── modules-duplicate-export1.out │ │ ├── modules-duplicate-export2.mjs │ │ ├── modules-duplicate-export2.out │ │ ├── modules-duplicate-export3.mjs │ │ ├── modules-duplicate-export3.out │ │ ├── modules-duplicate-export4.mjs │ │ ├── modules-duplicate-export4.out │ │ ├── modules-duplicate-export5.mjs │ │ ├── modules-duplicate-export5.out │ │ ├── modules-export-illformed-class.mjs │ │ ├── modules-export-illformed-class.out │ │ ├── modules-import-assertions-fail-1.mjs │ │ ├── modules-import-assertions-fail-1.out │ │ ├── modules-import-assertions-fail-2.mjs │ │ ├── modules-import-assertions-fail-2.out │ │ ├── modules-import-assertions-fail-3.mjs │ │ ├── modules-import-assertions-fail-3.out │ │ ├── modules-import-redeclare1.mjs │ │ ├── modules-import-redeclare1.out │ │ ├── modules-import-redeclare2.mjs │ │ ├── modules-import-redeclare2.out │ │ ├── modules-import-redeclare3.mjs │ │ ├── modules-import-redeclare3.out │ │ ├── modules-import1.mjs │ │ ├── modules-import1.out │ │ ├── modules-import2.mjs │ │ ├── modules-import2.out │ │ ├── modules-import3.mjs │ │ ├── modules-import3.out │ │ ├── modules-import4.mjs │ │ ├── modules-import4.out │ │ ├── modules-import5.mjs │ │ ├── modules-import5.out │ │ ├── modules-import6.mjs │ │ ├── modules-import6.out │ │ ├── modules-skip-1-import-assertions-fail.mjs │ │ ├── modules-skip-1-top-level-await-fail.mjs │ │ ├── modules-skip-2-top-level-await-fail.mjs │ │ ├── modules-skip-3-import-assertions-fail.json │ │ ├── modules-skip-3-top-level-await-fail.mjs │ │ ├── modules-skip-cycle2.mjs │ │ ├── modules-skip-cycle3.mjs │ │ ├── modules-skip-cycle5.mjs │ │ ├── modules-skip-cycle6.mjs │ │ ├── modules-skip-stalled-top-level-await.mjs │ │ ├── modules-stalled-top-level-await.mjs │ │ ├── modules-stalled-top-level-await.out │ │ ├── modules-star-conflict1.mjs │ │ ├── modules-star-conflict1.out │ │ ├── modules-star-conflict2.mjs │ │ ├── modules-star-conflict2.out │ │ ├── modules-star-default.mjs │ │ ├── modules-star-default.out │ │ ├── modules-undefined-export1.mjs │ │ ├── modules-undefined-export1.out │ │ ├── modules-undefined-export2.mjs │ │ ├── modules-undefined-export2.out │ │ ├── new-target-assignment.js │ │ ├── new-target-assignment.out │ │ ├── new-target-escaped.js │ │ ├── new-target-escaped.out │ │ ├── new-target-for-loop.js │ │ ├── new-target-for-loop.out │ │ ├── new-target-postfix-op.js │ │ ├── new-target-postfix-op.out │ │ ├── new-target-prefix-op.js │ │ ├── new-target-prefix-op.out │ │ ├── nf-yield-in-generator.js │ │ ├── nf-yield-in-generator.out │ │ ├── nf-yield-strict-in-generator.js │ │ ├── nf-yield-strict-in-generator.out │ │ ├── nf-yield-strict.js │ │ ├── nf-yield-strict.out │ │ ├── nfe-yield-generator.js │ │ ├── nfe-yield-generator.out │ │ ├── nfe-yield-strict.js │ │ ├── nfe-yield-strict.out │ │ ├── non-alphanum.js │ │ ├── non-alphanum.out │ │ ├── object-binding-pattern-await1.js │ │ ├── object-binding-pattern-await1.out │ │ ├── object-rest-assignment-pattern.js │ │ ├── object-rest-assignment-pattern.out │ │ ├── object-rest-binding-pattern.js │ │ ├── object-rest-binding-pattern.out │ │ ├── octal-template-literal.js │ │ ├── octal-template-literal.out │ │ ├── overwritten-builtins.js │ │ ├── overwritten-builtins.out │ │ ├── param-arrow-redeclaration-as-let.js │ │ ├── param-arrow-redeclaration-as-let.out │ │ ├── param-async-arrow-redeclaration-as-let.js │ │ ├── param-async-arrow-redeclaration-as-let.out │ │ ├── param-async-function-redeclaration-as-let.js │ │ ├── param-async-function-redeclaration-as-let.out │ │ ├── param-function-redeclaration-as-let.js │ │ ├── param-function-redeclaration-as-let.out │ │ ├── paren_in_arg_string.js │ │ ├── paren_in_arg_string.out │ │ ├── redeclaration1.js │ │ ├── redeclaration1.out │ │ ├── redeclaration2.js │ │ ├── redeclaration2.out │ │ ├── redeclaration3.js │ │ ├── redeclaration3.out │ │ ├── redeclaration4.js │ │ ├── redeclaration4.out │ │ ├── redeclaration5.mjs │ │ ├── redeclaration5.out │ │ ├── replacement-marker-as-argument.js │ │ ├── replacement-marker-as-argument.out │ │ ├── rest-param-class-setter-strict.js │ │ ├── rest-param-class-setter-strict.out │ │ ├── rest-param-object-setter-sloppy.js │ │ ├── rest-param-object-setter-sloppy.out │ │ ├── rest-param-object-setter-strict.js │ │ ├── rest-param-object-setter-strict.out │ │ ├── set-grow-failed.js │ │ ├── set-grow-failed.out │ │ ├── settimeout.js │ │ ├── settimeout.out │ │ ├── simple-throw.js │ │ ├── simple-throw.out │ │ ├── spread-call-2.js │ │ ├── spread-call-2.out │ │ ├── spread-call-3.js │ │ ├── spread-call-3.out │ │ ├── spread-call-4.js │ │ ├── spread-call-4.out │ │ ├── spread-call.js │ │ ├── spread-call.out │ │ ├── spread-construct-2.js │ │ ├── spread-construct-2.out │ │ ├── spread-construct-3.js │ │ ├── spread-construct-3.out │ │ ├── spread-construct.js │ │ ├── spread-construct.out │ │ ├── stack-trace-method-name-configured.js │ │ ├── stack-trace-method-name-configured.out │ │ ├── stack-trace-method-name-renaming.js │ │ ├── stack-trace-method-name-renaming.out │ │ ├── strict-formal-parameters.js │ │ ├── strict-formal-parameters.out │ │ ├── strict-octal-number.js │ │ ├── strict-octal-number.out │ │ ├── strict-octal-string.js │ │ ├── strict-octal-string.out │ │ ├── strict-octal-use-strict-after.js │ │ ├── strict-octal-use-strict-after.out │ │ ├── strict-octal-use-strict-before.js │ │ ├── strict-octal-use-strict-before.out │ │ ├── strict-prior-octal-escape-use-strict-before.js │ │ ├── strict-prior-octal-escape-use-strict-before.out │ │ ├── strict-prior-octal-escape.js │ │ ├── strict-prior-octal-escape.out │ │ ├── strict-prior-octal-literal.js │ │ ├── strict-prior-octal-literal.out │ │ ├── strict-with.js │ │ ├── strict-with.out │ │ ├── string-prototype-matchall-no-flags.js │ │ ├── string-prototype-matchall-no-flags.out │ │ ├── super-constructor-extra-statement.js │ │ ├── super-constructor-extra-statement.out │ │ ├── super-constructor.js │ │ ├── super-constructor.out │ │ ├── super-in-function.js │ │ ├── super-in-function.out │ │ ├── this-iterator-undefined.js │ │ ├── this-iterator-undefined.out │ │ ├── throw-during-IteratorCloseOnException.js │ │ ├── throw-during-IteratorCloseOnException.out │ │ ├── tonumber-symbol.js │ │ ├── tonumber-symbol.out │ │ ├── try-catch-finally-throw-in-catch-and-finally.js │ │ ├── try-catch-finally-throw-in-catch-and-finally.out │ │ ├── try-catch-finally-throw-in-catch.js │ │ ├── try-catch-finally-throw-in-catch.out │ │ ├── try-catch-finally-throw-in-finally.js │ │ ├── try-catch-finally-throw-in-finally.out │ │ ├── try-catch-lexical-conflict-preparser.js │ │ ├── try-catch-lexical-conflict-preparser.out │ │ ├── try-catch-lexical-conflict.js │ │ ├── try-catch-lexical-conflict.out │ │ ├── try-catch-variable-conflict.js │ │ ├── try-catch-variable-conflict.out │ │ ├── try-finally-throw-in-finally.js │ │ ├── try-finally-throw-in-finally.out │ │ ├── try-finally-throw-in-try-and-finally.js │ │ ├── try-finally-throw-in-try-and-finally.out │ │ ├── try-finally-throw-in-try.js │ │ ├── try-finally-throw-in-try.out │ │ ├── typedarray.js │ │ ├── typedarray.out │ │ ├── undefined-keyed-computed-property.js │ │ ├── undefined-keyed-computed-property.out │ │ ├── undefined-keyed-number-property.js │ │ ├── undefined-keyed-number-property.out │ │ ├── undefined-keyed-property.js │ │ ├── undefined-keyed-property.out │ │ ├── undefined-keyed-string-property.js │ │ ├── undefined-keyed-string-property.out │ │ ├── unexpected-identifier.js │ │ ├── unexpected-identifier.out │ │ ├── unicode-escape-invalid-2.js │ │ ├── unicode-escape-invalid-2.out │ │ ├── unicode-escape-invalid.js │ │ ├── unicode-escape-invalid.out │ │ ├── unicode-escape-undefined.js │ │ ├── unicode-escape-undefined.out │ │ ├── unparenthesized-exponentiation-expression.js │ │ ├── unparenthesized-exponentiation-expression.out │ │ ├── unterminated-arg-list.js │ │ ├── unterminated-arg-list.out │ │ ├── var-conflict-in-with.js │ │ ├── var-conflict-in-with.out │ │ ├── var-prior-conflict.js │ │ ├── var-prior-conflict.out │ │ ├── wasm-async-compile-fail.js │ │ ├── wasm-async-compile-fail.out │ │ ├── wasm-async-instantiate-fail.js │ │ ├── wasm-async-instantiate-fail.out │ │ ├── wasm-exception-rethrow.js │ │ ├── wasm-exception-rethrow.out │ │ ├── wasm-exception-stack-trace.js │ │ ├── wasm-exception-stack-trace.out │ │ ├── wasm-exception-throw.js │ │ ├── wasm-exception-throw.out │ │ ├── wasm-function-name.js │ │ ├── wasm-function-name.out │ │ ├── wasm-module-and-function-name.js │ │ ├── wasm-module-and-function-name.out │ │ ├── wasm-module-name.js │ │ ├── wasm-module-name.out │ │ ├── wasm-no-name.js │ │ ├── wasm-no-name.out │ │ ├── wasm-streaming-compile-fail.js │ │ ├── wasm-streaming-compile-fail.out │ │ ├── wasm-streaming-instantiate-fail.js │ │ ├── wasm-streaming-instantiate-fail.out │ │ ├── wasm-sync-compile-fail.js │ │ ├── wasm-sync-compile-fail.out │ │ ├── wasm-trap.js │ │ ├── wasm-trap.out │ │ ├── weak-refs-finalizationregistry1.js │ │ ├── weak-refs-finalizationregistry1.out │ │ ├── weak-refs-finalizationregistry2.js │ │ ├── weak-refs-finalizationregistry2.out │ │ ├── weak-refs-register1.js │ │ ├── weak-refs-register1.out │ │ ├── weak-refs-register2.js │ │ ├── weak-refs-register2.out │ │ ├── weak-refs-unregister.js │ │ ├── weak-refs-unregister.out │ │ ├── yield-in-arrow-param.js │ │ ├── yield-in-arrow-param.out │ │ ├── yield-in-generator-param.js │ │ └── yield-in-generator-param.out │ ├── message.status │ ├── mjsunit │ │ ├── fail │ │ │ ├── assert-in-promise-fail-recursive.js │ │ │ ├── assert-in-promise-fail-recursive.out │ │ │ ├── assert-in-promise-fail.js │ │ │ ├── assert-in-promise-fail.out │ │ │ ├── assert-promise-result-rejects-empty.js │ │ │ ├── assert-promise-result-rejects-empty.out │ │ │ ├── assert-promise-result-rejects-with-throw-empty.js │ │ │ ├── assert-promise-result-rejects-with-throw-empty.out │ │ │ ├── assert-promise-result-rejects.js │ │ │ ├── assert-promise-result-rejects.out │ │ │ ├── assert-promise-result-resolves.js │ │ │ ├── assert-promise-result-resolves.out │ │ │ ├── assert-promise-result-wasm-compile-fail.js │ │ │ ├── assert-promise-result-wasm-compile-fail.out │ │ │ ├── assert_not_same.js │ │ │ ├── assert_not_same.out │ │ │ ├── assert_true.js │ │ │ ├── assert_true.out │ │ │ └── regress │ │ │ │ ├── regress-1267172.js │ │ │ │ └── regress-1267172.out │ │ └── success │ │ │ ├── assert-promise-result-rejects.js │ │ │ ├── assert-promise-result-rejects.out │ │ │ ├── assert-promise-result-resolves-empty.js │ │ │ ├── assert-promise-result-resolves-empty.out │ │ │ ├── assert-promise-result-resolves.js │ │ │ └── assert-promise-result-resolves.out │ ├── non-use-strict-hex-escape.js │ ├── non-use-strict-hex-escape.out │ ├── non-use-strict-octal-escape.js │ ├── non-use-strict-octal-escape.out │ ├── non-use-strict-uhex-escape.js │ ├── non-use-strict-uhex-escape.out │ ├── nonstrict-arguments.js │ ├── nonstrict-arguments.out │ ├── nonstrict-eval.js │ ├── nonstrict-eval.out │ ├── nonstrict-with.js │ ├── nonstrict-with.out │ ├── object-binding-pattern-await-computed-name.js │ ├── object-binding-pattern-await-computed-name.out │ ├── regress │ │ └── fail │ │ │ ├── regress-1527.js │ │ │ ├── regress-1527.out │ │ │ ├── regress-3995.js │ │ │ ├── regress-3995.out │ │ │ ├── regress-4266.js │ │ │ ├── regress-4266.out │ │ │ ├── regress-5727.js │ │ │ ├── regress-5727.out │ │ │ ├── regress-73.js │ │ │ ├── regress-73.out │ │ │ ├── regress-75.js │ │ │ ├── regress-75.out │ │ │ ├── regress-8409.js │ │ │ ├── regress-8409.out │ │ │ ├── regress-900383.mjs │ │ │ ├── regress-900383.out │ │ │ ├── regress-9603.js │ │ │ ├── regress-9603.out │ │ │ ├── regress-crbug-1265570.js │ │ │ ├── regress-crbug-1265570.out │ │ │ ├── regress-crbug-661579.js │ │ │ ├── regress-crbug-661579.out │ │ │ ├── regress-crbug-669017.js │ │ │ ├── regress-crbug-669017.out │ │ │ ├── regress-crbug-691194.js │ │ │ ├── regress-crbug-691194.out │ │ │ ├── regress-crbug-842101.js │ │ │ └── regress-crbug-842101.out │ ├── strict-octal-indirect-regexp.js │ ├── strict-octal-indirect-regexp.out │ ├── strict-octal-regexp.js │ ├── strict-octal-regexp.out │ ├── testcfg.py │ ├── try-catch-finally-no-message.js │ ├── try-catch-finally-no-message.out │ ├── try-catch-finally-return-in-finally.js │ ├── try-catch-finally-return-in-finally.out │ ├── try-finally-return-in-finally.js │ ├── try-finally-return-in-finally.out │ ├── unicode-filename-🎅🎄.js │ ├── unicode-filename-🎅🎄.out │ ├── wasm-finish-compilation.js │ ├── wasm-finish-compilation.out │ ├── wasm-function-name-async.js │ ├── wasm-function-name-async.out │ ├── wasm-function-name-streaming.js │ ├── wasm-function-name-streaming.out │ ├── wasm-inlining-into-js.js │ ├── wasm-inlining-into-js.out │ ├── wasm-module-and-function-name-async.js │ ├── wasm-module-and-function-name-async.out │ ├── wasm-module-and-function-name-streaming.js │ ├── wasm-module-and-function-name-streaming.out │ ├── wasm-module-name-async.js │ ├── wasm-module-name-async.out │ ├── wasm-module-name-streaming.js │ ├── wasm-module-name-streaming.out │ ├── wasm-no-name-async.js │ ├── wasm-no-name-async.out │ ├── wasm-no-name-streaming.js │ ├── wasm-no-name-streaming.out │ ├── wasm-recognize-imports.js │ ├── wasm-recognize-imports.out │ ├── wasm-trace-liftoff.js │ ├── wasm-trace-liftoff.out │ ├── wasm-trace-memory-liftoff.js │ ├── wasm-trace-memory-liftoff.out │ ├── wasm-trace-memory.js │ ├── wasm-trace-memory.out │ ├── wasm-trace-memory64-liftoff.js │ ├── wasm-trace-memory64-liftoff.out │ ├── wasm-trace-memory64.js │ ├── wasm-trace-memory64.out │ ├── wasm-trace-turbofan.js │ ├── wasm-trace-turbofan.out │ ├── weakref-finalizationregistry-error.js │ └── weakref-finalizationregistry-error.out ├── mjsunit │ ├── BUILD.gn │ ├── accessor-map-sharing.js │ ├── accessors-no-prototype.js │ ├── accessors-on-global-object.js │ ├── allocation-folding.js │ ├── allocation-site-info.js │ ├── api-call-after-bypassed-exception.js │ ├── apply-arguments-gc-safepoint.js │ ├── apply.js │ ├── argument-assigned.js │ ├── argument-named-arguments.js │ ├── arguments-apply-deopt.js │ ├── arguments-apply.js │ ├── arguments-call-apply.js │ ├── arguments-deopt.js │ ├── arguments-enum.js │ ├── arguments-escape.js │ ├── arguments-indirect.js │ ├── arguments-lazy.js │ ├── arguments-load-across-eval.js │ ├── arguments-read-and-assignment.js │ ├── arguments.js │ ├── array-bounds-check-removal.js │ ├── array-buffer-detach-key.js │ ├── array-concat.js │ ├── array-construct-transition.js │ ├── array-constructor-feedback.js │ ├── array-constructor.js │ ├── array-elements-from-array-prototype-chain.js │ ├── array-elements-from-array-prototype.js │ ├── array-elements-from-object-prototype.js │ ├── array-feedback.js │ ├── array-foreach.js │ ├── array-from-large-set.js │ ├── array-functions-prototype-misc.js │ ├── array-functions-prototype.js │ ├── array-includes-simd.js │ ├── array-indexing-receiver.js │ ├── array-indexing.js │ ├── array-indexof-simd.js │ ├── array-isarray.js │ ├── array-iteration.js │ ├── array-iterator-prototype-next.js │ ├── array-join-element-tostring-prototype-side-effects.js │ ├── array-join-element-tostring-side-effects.js │ ├── array-join-index-getter-side-effects.js │ ├── array-join-invalid-string-length.js │ ├── array-join-nesting.js │ ├── array-join-nonarray-length-getter-side-effects.js │ ├── array-join-separator-tostring-side-effects.js │ ├── array-join.js │ ├── array-lastindexof.js │ ├── array-length-number-conversion.js │ ├── array-length.js │ ├── array-literal-feedback.js │ ├── array-literal-transitions.js │ ├── array-methods-read-only-length.js │ ├── array-natives-elements.js │ ├── array-non-smi-length.js │ ├── array-pop.js │ ├── array-prototype-every.js │ ├── array-prototype-filter.js │ ├── array-prototype-find.js │ ├── array-prototype-findindex.js │ ├── array-prototype-foreach.js │ ├── array-prototype-includes.js │ ├── array-prototype-indexof.js │ ├── array-prototype-lastindexof.js │ ├── array-prototype-map.js │ ├── array-prototype-pop.js │ ├── array-prototype-reduce.js │ ├── array-prototype-slice.js │ ├── array-prototype-some.js │ ├── array-push-hole-double.js │ ├── array-push-non-smi-value.js │ ├── array-push.js │ ├── array-push10.js │ ├── array-push11.js │ ├── array-push12.js │ ├── array-push13.js │ ├── array-push14.js │ ├── array-push2.js │ ├── array-push3.js │ ├── array-push4.js │ ├── array-push5.js │ ├── array-push6.js │ ├── array-push8.js │ ├── array-push9.js │ ├── array-reduce.js │ ├── array-reverse.js │ ├── array-shift.js │ ├── array-shift2.js │ ├── array-shift3.js │ ├── array-shift4.js │ ├── array-shift5.js │ ├── array-slice.js │ ├── array-sort.js │ ├── array-splice.js │ ├── array-store-and-grow.js │ ├── array-tolocalestring.js │ ├── array-tostring.js │ ├── array-unshift.js │ ├── arrow-with.js │ ├── ascii-regexp-subject.js │ ├── asm-directive.js │ ├── asm │ │ ├── asm-heap.js │ │ ├── asm-memory.js │ │ ├── asm-stdlib.js │ │ ├── asm-validation.js │ │ ├── atomics-add.js │ │ ├── atomics-and.js │ │ ├── atomics-compareexchange.js │ │ ├── atomics-exchange.js │ │ ├── atomics-load.js │ │ ├── atomics-or.js │ │ ├── atomics-store.js │ │ ├── atomics-sub.js │ │ ├── atomics-xor.js │ │ ├── b5528-comma.js │ │ ├── call-annotation.js │ │ ├── call-collisions.js │ │ ├── call-stdlib.js │ │ ├── do-while-false.js │ │ ├── do-while.js │ │ ├── embenchen │ │ │ ├── box2d.js │ │ │ ├── copy.js │ │ │ ├── corrections.js │ │ │ ├── fannkuch.js │ │ │ ├── fasta.js │ │ │ ├── lua_binarytrees.js │ │ │ ├── memops.js │ │ │ ├── primes.js │ │ │ └── zlib.js │ │ ├── float32array-negative-offset.js │ │ ├── float32array-outofbounds.js │ │ ├── float32array-store-div.js │ │ ├── float64array-negative-offset.js │ │ ├── float64array-outofbounds.js │ │ ├── float64array-store-div.js │ │ ├── float64mul.js │ │ ├── global-imports.js │ │ ├── if-cloning.js │ │ ├── if-folding.js │ │ ├── if-reduction.js │ │ ├── if-tonumber.js │ │ ├── immutable.js │ │ ├── infinite-loops-taken.js │ │ ├── infinite-loops.js │ │ ├── int16array-negative-offset.js │ │ ├── int16array-outofbounds.js │ │ ├── int32-div.js │ │ ├── int32-mod.js │ │ ├── int32-mul.js │ │ ├── int32-tmod.js │ │ ├── int32-udiv.js │ │ ├── int32-umod.js │ │ ├── int32array-constant-key.js │ │ ├── int32array-negative-offset.js │ │ ├── int32array-outofbounds.js │ │ ├── int32array-unaligned.js │ │ ├── int32div.js │ │ ├── int32mod-constant.js │ │ ├── int32mod.js │ │ ├── int32modb.js │ │ ├── int8array-negative-offset.js │ │ ├── load-elimination.js │ │ ├── math-abs.js │ │ ├── math-ceil.js │ │ ├── math-clz32.js │ │ ├── math-floor.js │ │ ├── math-fround.js │ │ ├── math-max.js │ │ ├── math-min.js │ │ ├── noexpose-wasm.js │ │ ├── pointer-masking.js │ │ ├── poppler │ │ │ └── poppler.js │ │ ├── redundancy1.js │ │ ├── redundancy2.js │ │ ├── regress-1013920.js │ │ ├── regress-1027595.js │ │ ├── regress-1069173.js │ │ ├── regress-1395401.js │ │ ├── regress-1432537.js │ │ ├── regress-641885.js │ │ ├── regress-660813.js │ │ ├── regress-669899.js │ │ ├── regress-672045.js │ │ ├── regress-676573.js │ │ ├── regress-681707.js │ │ ├── regress-718745.js │ │ ├── regress-719866.js │ │ ├── regress-740325.js │ │ ├── regress-913822.js │ │ ├── regress-920076.js │ │ ├── regress-937650.js │ │ ├── regress-9531.js │ │ ├── return-types.js │ │ ├── sign-extend.js │ │ ├── sqlite3 │ │ │ ├── sqlite-change-heap.js │ │ │ ├── sqlite-pointer-masking.js │ │ │ ├── sqlite-safe-heap.js │ │ │ └── sqlite.js │ │ ├── switch.js │ │ ├── uint32-less-than-shift.js │ │ ├── uint32div.js │ │ ├── uint32mod-constant.js │ │ ├── uint32mod.js │ │ ├── uint8array-outofbounds.js │ │ ├── word32and.js │ │ ├── word32ror.js │ │ └── zero-extend.js │ ├── async-hooks │ │ ├── api-methods.js │ │ ├── async-await-tree.js │ │ ├── chained-promises.js │ │ ├── execution-order.js │ │ ├── promises-async-await.js │ │ ├── regress-crbug-1337629.js │ │ ├── regress-crbug-1427746.js │ │ └── regress-crbug-1433521.js │ ├── async-stack-traces-prepare-stacktrace-1.js │ ├── async-stack-traces-prepare-stacktrace-2.js │ ├── async-stack-traces-prepare-stacktrace-3.js │ ├── async-stack-traces-prepare-stacktrace-4.js │ ├── async-stack-traces-promise-all-settled.js │ ├── async-stack-traces-promise-all.js │ ├── async-stack-traces-promise-any.js │ ├── async-stack-traces-realms.js │ ├── async-stack-traces.js │ ├── baseline │ │ ├── batch-compilation.js │ │ ├── cross-realm.js │ │ ├── deopt-to-baseline.js │ │ ├── flush-baseline-code.js │ │ ├── flush-only-baseline-code.js │ │ ├── test-baseline-module-helper.mjs │ │ ├── test-baseline-module.mjs │ │ ├── test-baseline.js │ │ ├── test-osr-maglev-tf.js │ │ ├── test-osr-maglev.js │ │ ├── test-osr.js │ │ └── verify-bytecode-offsets.js │ ├── basic-promise.js │ ├── big-array-literal.js │ ├── big-object-literal.js │ ├── binary-op-newspace.js │ ├── binary-op-throws-feedback.js │ ├── binary-operation-overwrite.js │ ├── bit-not.js │ ├── bitops-info.js │ ├── bitwise-operations-bools.js │ ├── bitwise-operations-undefined.js │ ├── body-not-visible.js │ ├── bool-concat.js │ ├── boolean.js │ ├── bounds-checks-elimination.js │ ├── break.js │ ├── bugs │ │ ├── bug-1344252.js │ │ ├── bug-222.js │ │ ├── bug-617.js │ │ ├── bug-941049.js │ │ └── bug-proto.js │ ├── call-cross-realm.js │ ├── call-intrinsic-differential-fuzzing.js │ ├── call-intrinsic-fuzzing.js │ ├── call-intrinsic-type-error.js │ ├── call-lhs-web-compat-early-errors.js │ ├── call-non-function-call.js │ ├── call-non-function.js │ ├── call-stub.js │ ├── call.js │ ├── canonicalize-nan.js │ ├── char-escape.js │ ├── check-bounds-array-index.js │ ├── check-bounds-string-from-char-code-at.js │ ├── closure.js │ ├── closures.js │ ├── code-comments.js │ ├── code-coverage-ad-hoc.js │ ├── code-coverage-block-async.js │ ├── code-coverage-block-noopt.js │ ├── code-coverage-block-opt.js │ ├── code-coverage-block.js │ ├── code-coverage-class-fields.js │ ├── code-coverage-precise.js │ ├── code-coverage-utils.js │ ├── code-stats-flag.js │ ├── codegen-coverage.js │ ├── compare-character.js │ ├── compare-known-objects-slow.js │ ├── compare-known-objects-tostringtag.js │ ├── compare-known-objects.js │ ├── compare-nan.js │ ├── compare-nil.js │ ├── compare-objects.js │ ├── compare-table-eq.js │ ├── compare-table-gt.js │ ├── compare-table-gteq.js │ ├── compare-table-lt.js │ ├── compare-table-lteq.js │ ├── compare-table-ne.js │ ├── compare-table-seq.js │ ├── compare-table-sne.js │ ├── comparison-ops-and-undefined.js │ ├── compiler-regress-787301.js │ ├── compiler │ │ ├── abstract-equal-oddball.js │ │ ├── abstract-equal-receiver.js │ │ ├── abstract-equal-symbol.js │ │ ├── abstract-equal-undetectable.js │ │ ├── accessor-exceptions1.js │ │ ├── accessor-exceptions2.js │ │ ├── alloc-number-debug.js │ │ ├── alloc-number.js │ │ ├── alloc-object-huge.js │ │ ├── alloc-object.js │ │ ├── arguments-object.js │ │ ├── array-access.js │ │ ├── array-buffer-is-view.js │ │ ├── array-constructor.js │ │ ├── array-every.js │ │ ├── array-find.js │ │ ├── array-findindex.js │ │ ├── array-is-array.js │ │ ├── array-length.js │ │ ├── array-multiple-receiver-maps.js │ │ ├── array-push-1.js │ │ ├── array-push-2.js │ │ ├── array-push-3.js │ │ ├── array-slice-clone.js │ │ ├── array-some.js │ │ ├── array-species.js │ │ ├── array-subclass.js │ │ ├── assignment-deopt.js │ │ ├── assignment.js │ │ ├── bigint-add-no-deopt-loop.js │ │ ├── bigint-add.js │ │ ├── bigint-asintn.js │ │ ├── bigint-asuintn.js │ │ ├── bigint-bitwise-and.js │ │ ├── bigint-bitwise-or.js │ │ ├── bigint-bitwise-xor.js │ │ ├── bigint-compare.js │ │ ├── bigint-constructor.js │ │ ├── bigint-divide.js │ │ ├── bigint-equal.js │ │ ├── bigint-int64-lowered.js │ │ ├── bigint-modulus.js │ │ ├── bigint-multiply-truncate.js │ │ ├── bigint-multiply.js │ │ ├── bigint-negate.js │ │ ├── bigint-rematerialize.js │ │ ├── bigint-shift-left.js │ │ ├── bigint-shift-right.js │ │ ├── bigint-uint64-lowered.js │ │ ├── bigint-unused-still-throws.js │ │ ├── bigint64-add-no-deopt-loop.js │ │ ├── bigint64-array.js │ │ ├── bigint64-div-no-deopt-loop.js │ │ ├── bigint64-mod-no-deopt-loop.js │ │ ├── bigint64-mul-no-deopt-loop.js │ │ ├── bigint64-sub-no-deopt-loop.js │ │ ├── binary-ops.js │ │ ├── boolean-protototype.js │ │ ├── bound-functions-serialize.js │ │ ├── call-keyed.js │ │ ├── call-with-arraylike-or-spread-2.js │ │ ├── call-with-arraylike-or-spread-3.js │ │ ├── call-with-arraylike-or-spread-4.js │ │ ├── call-with-arraylike-or-spread-5.js │ │ ├── call-with-arraylike-or-spread-6.js │ │ ├── call-with-arraylike-or-spread-7.js │ │ ├── call-with-arraylike-or-spread.js │ │ ├── capture-context.js │ │ ├── catch-block-load.js │ │ ├── collection-has.js │ │ ├── compare-map-elim.js │ │ ├── compare-map-elim2.js │ │ ├── compare-objeq-elim.js │ │ ├── compare.js │ │ ├── complex-for-in.js │ │ ├── concurrent-inlining-1.js │ │ ├── concurrent-inlining-2.js │ │ ├── concurrent-invalidate-transition-map.js │ │ ├── concurrent-proto-change.js │ │ ├── consecutive-addition.js │ │ ├── constant-fold-add-static.js │ │ ├── constant-fold-cow-array.js │ │ ├── constant-fold-tostring.js │ │ ├── construct-bound-function.js │ │ ├── construct-object.js │ │ ├── construct-receiver.js │ │ ├── constructor-inlining.js │ │ ├── context-sensitivity.js │ │ ├── control-flow-0.js │ │ ├── control-flow-1.js │ │ ├── control-flow-2.js │ │ ├── count-deopt.js │ │ ├── countoperation.js │ │ ├── dataview-constant.js │ │ ├── dataview-deopt.js │ │ ├── dataview-detached.js │ │ ├── dataview-get.js │ │ ├── dataview-nonconstant.js │ │ ├── dataview-set.js │ │ ├── dead-code.js │ │ ├── dead-code2.js │ │ ├── dead-code3.js │ │ ├── dead-code4.js │ │ ├── dead-code5.js │ │ ├── dead-code6.js │ │ ├── dead-loops-neg.js │ │ ├── dead-loops.js │ │ ├── dead-string-add-warm.js │ │ ├── dead-string-add.js │ │ ├── delete.js │ │ ├── deopt-accessors1.js │ │ ├── deopt-accessors2.js │ │ ├── deopt-accessors3.js │ │ ├── deopt-accessors4.js │ │ ├── deopt-accessors5.js │ │ ├── deopt-accessors6.js │ │ ├── deopt-accessors7.js │ │ ├── deopt-args.js │ │ ├── deopt-array-builtins.js │ │ ├── deopt-array-iterator-prototype-next.js │ │ ├── deopt-array-prototype-every.js │ │ ├── deopt-array-prototype-filter.js │ │ ├── deopt-array-prototype-find.js │ │ ├── deopt-array-prototype-findindex.js │ │ ├── deopt-array-prototype-foreach.js │ │ ├── deopt-array-prototype-includes.js │ │ ├── deopt-array-prototype-indexof.js │ │ ├── deopt-array-prototype-lastindexof.js │ │ ├── deopt-array-prototype-map.js │ │ ├── deopt-array-prototype-pop.js │ │ ├── deopt-array-prototype-reduce.js │ │ ├── deopt-array-prototype-slice.js │ │ ├── deopt-array-prototype-some.js │ │ ├── deopt-array-push.js │ │ ├── deopt-bool.js │ │ ├── deopt-bool2.js │ │ ├── deopt-closure.js │ │ ├── deopt-during-eval-lookup.js │ │ ├── deopt-eager-and-lazy.js │ │ ├── deopt-eager-var-mutation-ite.js │ │ ├── deopt-eager-with-freeze.js │ │ ├── deopt-followed-by-gc.js │ │ ├── deopt-inlined-from-call.js │ │ ├── deopt-inlined-smi.js │ │ ├── deopt-lazy-freeze.js │ │ ├── deopt-lazy-shape-mutation.js │ │ ├── deopt-lazy-var-mutation.js │ │ ├── deopt-many-lazy.js │ │ ├── deopt-materialize-accumulator.js │ │ ├── deopt-now-lazy.js │ │ ├── deopt-numberoroddball-binop.js │ │ ├── deopt-pretenure.js │ │ ├── deopt-simple-eager.js │ │ ├── deopt-simple-lazy.js │ │ ├── deopt-simple-try-catch.js │ │ ├── deopt-soft-simple.js │ │ ├── deopt-string-outofbounds.js │ │ ├── deopt-tonumber-binop.js │ │ ├── deopt-tonumber-compare.js │ │ ├── deopt-tonumber-shift.js │ │ ├── deopt-twice-on-call.js │ │ ├── deopt-twice.js │ │ ├── deoptimize-lazy-weak.js │ │ ├── diamond-followedby-branch.js │ │ ├── division-by-constant.js │ │ ├── dont-constant-fold-deopting-checks.js │ │ ├── dont-flush-code-marked-for-opt.js │ │ ├── double-array-to-global.js │ │ ├── eager-deopt-simple.js │ │ ├── escape-analysis-1.js │ │ ├── escape-analysis-10.js │ │ ├── escape-analysis-11.js │ │ ├── escape-analysis-12.js │ │ ├── escape-analysis-13.js │ │ ├── escape-analysis-15.js │ │ ├── escape-analysis-16.js │ │ ├── escape-analysis-17.js │ │ ├── escape-analysis-18.js │ │ ├── escape-analysis-2.js │ │ ├── escape-analysis-3.js │ │ ├── escape-analysis-4.js │ │ ├── escape-analysis-5.js │ │ ├── escape-analysis-6.js │ │ ├── escape-analysis-7.js │ │ ├── escape-analysis-8.js │ │ ├── escape-analysis-9.js │ │ ├── escape-analysis-arguments.js │ │ ├── escape-analysis-array.js │ │ ├── escape-analysis-cycle.js │ │ ├── escape-analysis-deopt-1.js │ │ ├── escape-analysis-deopt-2.js │ │ ├── escape-analysis-deopt-3.js │ │ ├── escape-analysis-deopt-4.js │ │ ├── escape-analysis-deopt-5.js │ │ ├── escape-analysis-deopt-6.js │ │ ├── escape-analysis-framestate-use-at-branchpoint.js │ │ ├── escape-analysis-materialize.js │ │ ├── escape-analysis-phi-type-2.js │ │ ├── escape-analysis-phi-type.js │ │ ├── escape-analysis-replacement.js │ │ ├── escape-analysis-representation.js │ │ ├── escape-analysis-rest-parameters.js │ │ ├── escape-analysis-type-none-in-object-state.js │ │ ├── escape-analysis-typeguard.js │ │ ├── escape-analysis.js │ │ ├── eval-introduced-closure.js │ │ ├── expression-trees.js │ │ ├── fast-api-annotations.js │ │ ├── fast-api-calls-64-bit-integer-values.js │ │ ├── fast-api-calls-8args.js │ │ ├── fast-api-calls-pointer.js │ │ ├── fast-api-calls-string.js │ │ ├── fast-api-calls-wasm.js │ │ ├── fast-api-calls.js │ │ ├── fast-api-clamp-annotations.js │ │ ├── fast-api-exceptions.js │ │ ├── fast-api-helpers.js │ │ ├── fast-api-interface-types.js │ │ ├── fast-api-sequences-x64.js │ │ ├── fast-api-sequences.js │ │ ├── feedback-after-throw.js │ │ ├── field-representation-tracking.js │ │ ├── for-in-1.js │ │ ├── for-in-2.js │ │ ├── for-in-3.js │ │ ├── for-in-4.js │ │ ├── for-in-5.js │ │ ├── for-stmt.js │ │ ├── function-apply.js │ │ ├── function-bind.js │ │ ├── function-call.js │ │ ├── function-caller.js │ │ ├── generator-jump-targets.js │ │ ├── generic-add.js │ │ ├── global-accessors.js │ │ ├── global-delete.js │ │ ├── global-var-delete.js │ │ ├── globals-change-writable.js │ │ ├── globals-freeze-constant.js │ │ ├── globals-freeze-constanttype.js │ │ ├── globals-freeze-mutable.js │ │ ├── increment-typefeedback.js │ │ ├── inline-accessors1.js │ │ ├── inline-accessors2.js │ │ ├── inline-arguments.js │ │ ├── inline-arity-mismatch.js │ │ ├── inline-closures.js │ │ ├── inline-compare.js │ │ ├── inline-conditional.js │ │ ├── inline-construct.js │ │ ├── inline-context-deopt.js │ │ ├── inline-context-slots.js │ │ ├── inline-dead-jscreate.js │ │ ├── inline-exception-1.js │ │ ├── inline-exception-2.js │ │ ├── inline-function-apply.js │ │ ├── inline-global-access.js │ │ ├── inline-literals.js │ │ ├── inline-omit-arguments-deopt.js │ │ ├── inline-omit-arguments-object.js │ │ ├── inline-omit-arguments.js │ │ ├── inline-param.js │ │ ├── inline-private-method.js │ │ ├── inline-surplus-arguments-deopt.js │ │ ├── inline-surplus-arguments-object.js │ │ ├── inline-surplus-arguments.js │ │ ├── inline-throw.js │ │ ├── inline-two.js │ │ ├── inlined-array-pop-getter1.js │ │ ├── inlined-array-pop-getter2.js │ │ ├── inlined-array-pop-opt.js │ │ ├── inlined-call-mapcheck.js │ │ ├── inlined-call-polymorphic.js │ │ ├── inlined-call.js │ │ ├── instance-of-overridden-has-instance.js │ │ ├── instanceof-opt1.js │ │ ├── instanceof-opt2.js │ │ ├── instanceof-opt3.js │ │ ├── instanceof.js │ │ ├── instanceof2.js │ │ ├── instanceof3.js │ │ ├── instanceof4.js │ │ ├── int64.js │ │ ├── integral32-add-sub.js │ │ ├── is-being-interpreted-1.js │ │ ├── is-being-interpreted-2.js │ │ ├── js-create-arguments.js │ │ ├── js-create.js │ │ ├── keyed-load-on-string.js │ │ ├── lazy-const-lookup.js │ │ ├── lazy-deopt-async-function-resolve.js │ │ ├── lazy-deopt-in-literal.js │ │ ├── lazy-iife-no-parens.js │ │ ├── literals-assignment.js │ │ ├── literals-optimized.js │ │ ├── literals.js │ │ ├── load-elimination-const-field.js │ │ ├── load-elimination-global.js │ │ ├── load-elimination-osr.js │ │ ├── load-elimination-params.js │ │ ├── load-elimination.js │ │ ├── logical-and.js │ │ ├── logical-or.js │ │ ├── loopcount.js │ │ ├── loops.js │ │ ├── manual-concurrent-recompile.js │ │ ├── materialize-dictionary-properties.js │ │ ├── materialize-mutable-heap-number.js │ │ ├── math-ceil.js │ │ ├── math-floor-global.js │ │ ├── math-floor-local.js │ │ ├── math-imul.js │ │ ├── math-max.js │ │ ├── math-min.js │ │ ├── math-mul.js │ │ ├── math-round.js │ │ ├── math-sign.js │ │ ├── math-trunc.js │ │ ├── minus-zero.js │ │ ├── misc-ensure-no-deopt.js │ │ ├── monomorphic-named-load-with-no-map.js │ │ ├── mul-div-52bit.js │ │ ├── multiply-add.js │ │ ├── multiply-sub.js │ │ ├── named-load.js │ │ ├── named-store.js │ │ ├── nary-binary-ops.js │ │ ├── native-context-specialization-hole-check.js │ │ ├── native-context-specialization-string-concat.js │ │ ├── new-cons-string.js │ │ ├── null-compare.js │ │ ├── number-abs.js │ │ ├── number-add.js │ │ ├── number-ceil.js │ │ ├── number-comparison-truncations.js │ │ ├── number-constructor-deopt.js │ │ ├── number-divide.js │ │ ├── number-floor.js │ │ ├── number-isfinite-inl.js │ │ ├── number-isfinite.js │ │ ├── number-isinteger-inl.js │ │ ├── number-isinteger.js │ │ ├── number-isnan.js │ │ ├── number-issafeinteger.js │ │ ├── number-max.js │ │ ├── number-min.js │ │ ├── number-modulus.js │ │ ├── number-multiply.js │ │ ├── number-round.js │ │ ├── number-subtract.js │ │ ├── number-toboolean.js │ │ ├── number-trunc.js │ │ ├── object-constructor.js │ │ ├── object-create.js │ │ ├── object-getprototypeof.js │ │ ├── object-is.js │ │ ├── object-isprototypeof.js │ │ ├── objectliterals.js │ │ ├── omit-default-ctors-array-iterator.js │ │ ├── omit-default-ctors.js │ │ ├── opt-higher-order-functions.js │ │ ├── opt-next-call-turbo.js │ │ ├── opt-next-call.js │ │ ├── optimize-bitnot.js │ │ ├── optimize_max.js │ │ ├── optimize_min.js │ │ ├── optimized-array-at.js │ │ ├── optimized-closures.js │ │ ├── optimized-float32array-length.js │ │ ├── optimized-float64array-length.js │ │ ├── optimized-for-in.js │ │ ├── optimized-function-calls.js │ │ ├── optimized-instanceof-1.js │ │ ├── optimized-instanceof-2.js │ │ ├── optimized-int32array-length.js │ │ ├── optimized-uint32array-length.js │ │ ├── optimized-with.js │ │ ├── osr-alignment.js │ │ ├── osr-arguments.js │ │ ├── osr-array-len.js │ │ ├── osr-assert.js │ │ ├── osr-backedges1.js │ │ ├── osr-big.js │ │ ├── osr-block-scope-func.js │ │ ├── osr-block-scope-id.js │ │ ├── osr-block-scope.js │ │ ├── osr-follow.js │ │ ├── osr-for-let.js │ │ ├── osr-forin-nested.js │ │ ├── osr-forin.js │ │ ├── osr-forof.js │ │ ├── osr-function-id.js │ │ ├── osr-function-id2.js │ │ ├── osr-function.js │ │ ├── osr-infinite.js │ │ ├── osr-labeled.js │ │ ├── osr-literals-adapted.js │ │ ├── osr-literals.js │ │ ├── osr-manual1.js │ │ ├── osr-manual2.js │ │ ├── osr-maze1.js │ │ ├── osr-maze2.js │ │ ├── osr-multiple.js │ │ ├── osr-multiple2.js │ │ ├── osr-multiple3.js │ │ ├── osr-nested.js │ │ ├── osr-nested2.js │ │ ├── osr-nested2b.js │ │ ├── osr-nested3.js │ │ ├── osr-nested3b.js │ │ ├── osr-one.js │ │ ├── osr-regex-id.js │ │ ├── osr-regress-max-locals.js │ │ ├── osr-sar.js │ │ ├── osr-simple.js │ │ ├── osr-top1.js │ │ ├── osr-top2.js │ │ ├── osr-top3.js │ │ ├── osr-try-catch.js │ │ ├── osr-two.js │ │ ├── osr-uint32.js │ │ ├── osr-warm.js │ │ ├── osr-while-let.js │ │ ├── osr-with-args.js │ │ ├── phi-representations.js │ │ ├── pic.js │ │ ├── polymorphic-symbols.js │ │ ├── promise-capability-default-closures.js │ │ ├── promise-constructor.js │ │ ├── promise-prototype-catch-custom-then-1.js │ │ ├── promise-prototype-catch-custom-then-2.js │ │ ├── promise-prototype-catch-subclass.js │ │ ├── promise-prototype-catch.js │ │ ├── promise-prototype-finally-custom-then-1.js │ │ ├── promise-prototype-finally-custom-then-2.js │ │ ├── promise-prototype-finally-subclass.js │ │ ├── promise-prototype-finally.js │ │ ├── promise-prototype-then.js │ │ ├── promise-resolve-stable-maps.js │ │ ├── promise-resolve.js │ │ ├── promise-species.js │ │ ├── property-calls.js │ │ ├── property-refs.js │ │ ├── property-simple.js │ │ ├── property-static.js │ │ ├── property-stores.js │ │ ├── proto-chain-constant.js │ │ ├── proto-chain-load.js │ │ ├── receiver-conversion.js │ │ ├── recursive-deopt.js │ │ ├── redundancy-elimination.js │ │ ├── reference-equal-boolean.js │ │ ├── reflect-apply.js │ │ ├── reflect-construct.js │ │ ├── reflect-get.js │ │ ├── reflect-getprototypeof.js │ │ ├── reflect-has.js │ │ ├── regress-0.js │ │ ├── regress-1.js │ │ ├── regress-1024936.js │ │ ├── regress-1028208.js │ │ ├── regress-1028862.js │ │ ├── regress-1034768 │ │ ├── regress-1037771.js │ │ ├── regress-1051017.js │ │ ├── regress-1053604.js │ │ ├── regress-1061678.js │ │ ├── regress-1061803.js │ │ ├── regress-1062916.js │ │ ├── regress-106351.js │ │ ├── regress-1063661.js │ │ ├── regress-1065737.js │ │ ├── regress-1067544.js │ │ ├── regress-1068494.js │ │ ├── regress-1070892.js │ │ ├── regress-1071743.js │ │ ├── regress-1072171.js │ │ ├── regress-1074736.js │ │ ├── regress-1082704.js │ │ ├── regress-1084820.js │ │ ├── regress-1085.js │ │ ├── regress-1092011.js │ │ ├── regress-1092650.js │ │ ├── regress-1094132.js │ │ ├── regress-1102053.js │ │ ├── regress-1102683.js │ │ ├── regress-1104514.js │ │ ├── regress-1109174.js │ │ ├── regress-1125145.js │ │ ├── regress-1126249.js │ │ ├── regress-1126771.js │ │ ├── regress-1127319.js │ │ ├── regress-1127405.js │ │ ├── regress-1146652.js │ │ ├── regress-1150649.js │ │ ├── regress-1158049.js │ │ ├── regress-1161357.js │ │ ├── regress-1177368.js │ │ ├── regress-1177369.js │ │ ├── regress-1182647.js │ │ ├── regress-1195650.js │ │ ├── regress-1195777.js │ │ ├── regress-1196185.js │ │ ├── regress-1196683.js │ │ ├── regress-1198705.js │ │ ├── regress-1199345.js │ │ ├── regress-1200490.js │ │ ├── regress-1202312.js │ │ ├── regress-1202625.js │ │ ├── regress-1202924.js │ │ ├── regress-1203116.js │ │ ├── regress-1215514.js │ │ ├── regress-1217562.js │ │ ├── regress-1224277.js │ │ ├── regress-1225607.js │ │ ├── regress-1227324.js │ │ ├── regress-1236716.js │ │ ├── regress-1239601.js │ │ ├── regress-1245949.js │ │ ├── regress-1250216.js │ │ ├── regress-1302572.js │ │ ├── regress-1394.js │ │ ├── regress-1423468.js │ │ ├── regress-177883.js │ │ ├── regress-2.js │ │ ├── regress-3.js │ │ ├── regress-3136962.js │ │ ├── regress-3185901.js │ │ ├── regress-3218915.js │ │ ├── regress-3249650.js │ │ ├── regress-3260426.js │ │ ├── regress-3786.js │ │ ├── regress-3812.js │ │ ├── regress-4.js │ │ ├── regress-411262.js │ │ ├── regress-416359.js │ │ ├── regress-4206.js │ │ ├── regress-4207.js │ │ ├── regress-4389-1.js │ │ ├── regress-4389-2.js │ │ ├── regress-4389-3.js │ │ ├── regress-4389-4.js │ │ ├── regress-4389-5.js │ │ ├── regress-4389-6.js │ │ ├── regress-439743.js │ │ ├── regress-4413-1.js │ │ ├── regress-443744.js │ │ ├── regress-444508.js │ │ ├── regress-444695.js │ │ ├── regress-445267.js │ │ ├── regress-445732.js │ │ ├── regress-445858.js │ │ ├── regress-445859.js │ │ ├── regress-445876.js │ │ ├── regress-445907.js │ │ ├── regress-446156.js │ │ ├── regress-446647.js │ │ ├── regress-446778.js │ │ ├── regress-4470-1.js │ │ ├── regress-447567.js │ │ ├── regress-451012.js │ │ ├── regress-452427.js │ │ ├── regress-463056.js │ │ ├── regress-468162.js │ │ ├── regress-468727.js │ │ ├── regress-469089.js │ │ ├── regress-491578.js │ │ ├── regress-5.js │ │ ├── regress-5074.js │ │ ├── regress-5100.js │ │ ├── regress-5129.js │ │ ├── regress-5158.js │ │ ├── regress-5278.js │ │ ├── regress-5320.js │ │ ├── regress-5538.js │ │ ├── regress-572409.js │ │ ├── regress-6.js │ │ ├── regress-600593.js │ │ ├── regress-607493.js │ │ ├── regress-621147.js │ │ ├── regress-621423.js │ │ ├── regress-625558.js │ │ ├── regress-625966.js │ │ ├── regress-626986.js │ │ ├── regress-628403.js │ │ ├── regress-628516.js │ │ ├── regress-628773.js │ │ ├── regress-630611.js │ │ ├── regress-633497.js │ │ ├── regress-638132.js │ │ ├── regress-639210.js │ │ ├── regress-644048.js │ │ ├── regress-644633.js │ │ ├── regress-645851.js │ │ ├── regress-650215.js │ │ ├── regress-664117.js │ │ ├── regress-664490.js │ │ ├── regress-665680.js │ │ ├── regress-668760.js │ │ ├── regress-669517.js │ │ ├── regress-671574.js │ │ ├── regress-673244.js │ │ ├── regress-674469.js │ │ ├── regress-675704.js │ │ ├── regress-693425.js │ │ ├── regress-694088.js │ │ ├── regress-7.js │ │ ├── regress-700883.js │ │ ├── regress-7121.js │ │ ├── regress-713367.js │ │ ├── regress-714483.js │ │ ├── regress-715204.js │ │ ├── regress-715651.js │ │ ├── regress-725743.js │ │ ├── regress-726554.js │ │ ├── regress-729369.js │ │ ├── regress-731495.js │ │ ├── regress-733181.js │ │ ├── regress-736567.js │ │ ├── regress-739902.js │ │ ├── regress-758096.js │ │ ├── regress-758983.js │ │ ├── regress-761892.js │ │ ├── regress-762057.js │ │ ├── regress-772420.js │ │ ├── regress-772872.js │ │ ├── regress-773954.js │ │ ├── regress-780658.js │ │ ├── regress-786521.js │ │ ├── regress-788539.js │ │ ├── regress-791245.js │ │ ├── regress-793863.js │ │ ├── regress-796041.js │ │ ├── regress-797596.js │ │ ├── regress-799263.js │ │ ├── regress-8.js │ │ ├── regress-801097.js │ │ ├── regress-803022.js │ │ ├── regress-808472.js │ │ ├── regress-815392.js │ │ ├── regress-817225.js │ │ ├── regress-8380.js │ │ ├── regress-841117.js │ │ ├── regress-884052.js │ │ ├── regress-888923.js │ │ ├── regress-890057.js │ │ ├── regress-890620.js │ │ ├── regress-895799.js │ │ ├── regress-9017.js │ │ ├── regress-902608.js │ │ ├── regress-9041.js │ │ ├── regress-905555-2.js │ │ ├── regress-905555.js │ │ ├── regress-9087.js │ │ ├── regress-910838.js │ │ ├── regress-913232.js │ │ ├── regress-9137-1.js │ │ ├── regress-9137-2.js │ │ ├── regress-919754.js │ │ ├── regress-924151.js │ │ ├── regress-932392.js │ │ ├── regress-934175.js │ │ ├── regress-935092.js │ │ ├── regress-939316.js │ │ ├── regress-944062-1.js │ │ ├── regress-944062-2.js │ │ ├── regress-945187.js │ │ ├── regress-945644.js │ │ ├── regress-946889.js │ │ ├── regress-949435.js │ │ ├── regress-952586.js │ │ ├── regress-957559.js │ │ ├── regress-958021.js │ │ ├── regress-958350.js │ │ ├── regress-958420.js │ │ ├── regress-958716.js │ │ ├── regress-961986.js │ │ ├── regress-966560-1.js │ │ ├── regress-966560-2.js │ │ ├── regress-977670.js │ │ ├── regress-992684.js │ │ ├── regress-9945-1.js │ │ ├── regress-9945-2.js │ │ ├── regress-995430.js │ │ ├── regress-995562.js │ │ ├── regress-997100.js │ │ ├── regress-arguments.js │ │ ├── regress-arrayliteral.js │ │ ├── regress-bit-number-constant.js │ │ ├── regress-bound-functions.js │ │ ├── regress-closures-with-eval.js │ │ ├── regress-compare-negate.js │ │ ├── regress-const.js │ │ ├── regress-crbug-1148758.js │ │ ├── regress-crbug-11564.js │ │ ├── regress-crbug-11977.js │ │ ├── regress-crbug-1201011.js │ │ ├── regress-crbug-1201057.js │ │ ├── regress-crbug-1201082.js │ │ ├── regress-crbug-1209558.js │ │ ├── regress-crbug-1211215.js │ │ ├── regress-crbug-1221812.js │ │ ├── regress-crbug-1223107.js │ │ ├── regress-crbug-1226264.js │ │ ├── regress-crbug-1227677.js │ │ ├── regress-crbug-1228233.js │ │ ├── regress-crbug-1228407.js │ │ ├── regress-crbug-1230260.js │ │ ├── regress-crbug-1234764.js │ │ ├── regress-crbug-1234770.js │ │ ├── regress-crbug-1241464.js │ │ ├── regress-crbug-1247763.js │ │ ├── regress-crbug-1323114.js │ │ ├── regress-crbug-1344965.js │ │ ├── regress-crbug-1353360.js │ │ ├── regress-crbug-1355824.js │ │ ├── regress-crbug-1399490.js │ │ ├── regress-crbug-1399626.js │ │ ├── regress-crbug-1399627.js │ │ ├── regress-crbug-1408013.js │ │ ├── regress-crbug-1426299.js │ │ ├── regress-crbug-540593.js │ │ ├── regress-crbug-965513.js │ │ ├── regress-crbug-974474.js │ │ ├── regress-crbug-974476.js │ │ ├── regress-dead-throw-inlining.js │ │ ├── regress-deopt-call-as-function.js │ │ ├── regress-escape-analysis-indirect.js │ │ ├── regress-f64-w32-change.js │ │ ├── regress-funarguments.js │ │ ├── regress-funcaller.js │ │ ├── regress-gap.js │ │ ├── regress-gvn.js │ │ ├── regress-inline-callfunctionstub.js │ │ ├── regress-int32array-outofbounds-nan.js │ │ ├── regress-intoverflow.js │ │ ├── regress-lazy-deopt.js │ │ ├── regress-lbranch-double.js │ │ ├── regress-loadfield.js │ │ ├── regress-loop-deopt.js │ │ ├── regress-loop-variable-if.js │ │ ├── regress-loop-variable-unsigned.js │ │ ├── regress-math-sign-nan-type.js │ │ ├── regress-max.js │ │ ├── regress-nonextensiblearray-store-outofbounds.js │ │ ├── regress-ntl-effect.js │ │ ├── regress-number-is-hole-nan.js │ │ ├── regress-or.js │ │ ├── regress-register-allocator.js │ │ ├── regress-register-allocator2.js │ │ ├── regress-register-allocator3.js │ │ ├── regress-rep-change.js │ │ ├── regress-sealedarray-store-outofbounds.js │ │ ├── regress-serialized-slots.js │ │ ├── regress-shared-deopt.js │ │ ├── regress-shift-left.js │ │ ├── regress-shift-right-logical.js │ │ ├── regress-shift-right.js │ │ ├── regress-stacktrace-methods.js │ │ ├── regress-stacktrace.js │ │ ├── regress-store-holey-double-array.js │ │ ├── regress-store-store-elim.js │ │ ├── regress-string-to-number-add.js │ │ ├── regress-to-number-binop-deopt.js │ │ ├── regress-toint32.js │ │ ├── regress-truncate-number-or-undefined-to-float64.js │ │ ├── regress-v8-5573.js │ │ ├── regress-v8-5756.js │ │ ├── regress-v8-6077.js │ │ ├── regress-v8-6631.js │ │ ├── regress-v8-9113.js │ │ ├── regress-v8-9139.js │ │ ├── regress-variable-liveness-let.js │ │ ├── regress-variable-liveness.js │ │ ├── regresss-933331.js │ │ ├── rest-parameters.js │ │ ├── rotate.js │ │ ├── safepoint.js │ │ ├── serializer-accessors.js │ │ ├── serializer-apply.js │ │ ├── serializer-call.js │ │ ├── serializer-dead-after-jump.js │ │ ├── serializer-dead-after-return.js │ │ ├── serializer-feedback-propagation-1.js │ │ ├── serializer-feedback-propagation-2.js │ │ ├── serializer-transition-propagation.js │ │ ├── shift-shr.js │ │ ├── short-circuit.js │ │ ├── simple-bailouts.js │ │ ├── simple-binary-op.js │ │ ├── simple-deopt.js │ │ ├── simple-global-access.js │ │ ├── simple-inlining.js │ │ ├── smi-stores-opt.js │ │ ├── spread-call.js │ │ ├── store-data-property-in-literal-private.js │ │ ├── store-elimination.js │ │ ├── stress-deopt-count-1.js │ │ ├── stress-deopt-count-2.js │ │ ├── strict-equal-number.js │ │ ├── strict-equal-receiver.js │ │ ├── strict-equal-symbol.js │ │ ├── strict-recompile.js │ │ ├── string-add-try-catch.js │ │ ├── string-comparison-opt.js │ │ ├── string-concat-deopt.js │ │ ├── string-concat-try-catch.js │ │ ├── string-concat-yield.js │ │ ├── string-endswith.js │ │ ├── string-from-code-point.js │ │ ├── string-length.js │ │ ├── string-slice.js │ │ ├── string-startswith.js │ │ ├── switch-bailout.js │ │ ├── symbol-protototype.js │ │ ├── tagged-template.js │ │ ├── test-literal-map-migration.js │ │ ├── this-property-refs.js │ │ ├── thisfunction.js │ │ ├── to-fast-properties.js │ │ ├── truncating-store-deopt.js │ │ ├── truncating-store.js │ │ ├── try-binop.js │ │ ├── try-catch-deopt.js │ │ ├── try-context.js │ │ ├── try-deopt.js │ │ ├── try-finally-deopt.js │ │ ├── try-osr.js │ │ ├── turbo-number-feedback.js │ │ ├── type-speculative-safe-integer-add.js │ │ ├── typed-array-constructor.js │ │ ├── typedarray-keyed.js │ │ ├── typedarray-prototype-tostringtag.js │ │ ├── typedarray-resizablearraybuffer.js │ │ ├── uint32.js │ │ ├── uint8-clamped-array.js │ │ ├── unary-add.js │ │ ├── unsigned-min-max.js │ │ ├── varargs.js │ │ ├── variables.js │ │ └── verify-type.js │ ├── concurrent-initial-prototype-change-1.js │ ├── concurrent-initial-prototype-change-2.js │ ├── console.js │ ├── constant-compare-nil-value.js │ ├── constant-fold-control-instructions.js │ ├── constant-folding-2.js │ ├── constant-folding.js │ ├── context-calls-maintained.js │ ├── context-variable-assignments.js │ ├── contextual-calls.js │ ├── copy-on-write-assert.js │ ├── cross-realm-builtin-call.js │ ├── cross-realm-filtering.js │ ├── cross-realm-global-prototype.js │ ├── cyclic-array-to-string.js │ ├── cyrillic.js │ ├── d8 │ │ ├── .gitignore │ │ ├── d8-arguments.js │ │ ├── d8-fuzzable-worker.js │ │ ├── d8-multiple-module-exec.js │ │ ├── d8-os.js │ │ ├── d8-performance-now.js │ │ ├── d8-realm-explicit-scope.js │ │ ├── d8-worker-script.js │ │ ├── d8-worker-script.txt │ │ ├── d8-worker-sharedarraybuffer.js │ │ ├── d8-worker-shutdown-empty.js │ │ ├── d8-worker-shutdown-gc.js │ │ ├── d8-worker-shutdown-spawn.js │ │ ├── d8-worker-shutdown.js │ │ ├── d8-worker-spawn-worker.js │ │ ├── d8-worker.js │ │ ├── enable-tracing.js │ │ └── performance-mark.js │ ├── dataview-growablesharedarraybuffer.js │ ├── dataview-resizablearraybuffer-detach.js │ ├── dataview-resizablearraybuffer.js │ ├── date-parse.js │ ├── date.js │ ├── debugPrint.js │ ├── declare-locally.js │ ├── deep-recursion.js │ ├── default-nospec.js │ ├── define-property-gc.js │ ├── dehoisted-array-index.js │ ├── delay-syntax-error.js │ ├── delete-global-properties.js │ ├── delete-in-eval.js │ ├── delete-in-with.js │ ├── delete-non-configurable.js │ ├── delete-vars-from-eval.js │ ├── delete.js │ ├── deopt-global-accessor.js │ ├── deopt-minus-zero.js │ ├── deopt-recursive-eager-once.js │ ├── deopt-recursive-lazy-once.js │ ├── deopt-recursive-soft-once.js │ ├── deopt-unlinked.js │ ├── deopt-with-fp-regs.js │ ├── deopt-with-outer-context.js │ ├── deserialize-optimize-inner.js │ ├── deserialize-reference.js │ ├── destruct-array-spread-done.js │ ├── detach-twice.js │ ├── dictionary-properties.js │ ├── dictionary-prototypes.js │ ├── disallow-codegen-from-strings.js │ ├── div-mod.js │ ├── div-mul-minus-one.js │ ├── do-not-strip-fc.js │ ├── dont-enum-array-holes.js │ ├── dont-reinit-global-var.js │ ├── double-equals.js │ ├── double-truncation.js │ ├── dtoa.js │ ├── dump-counters-quit.js │ ├── dump-counters.js │ ├── duplicate-parameters.js │ ├── eagerly-parsed-lazily-compiled-functions.js │ ├── element-accessor.js │ ├── element-read-only.js │ ├── elements-kind-depends.js │ ├── elements-kind.js │ ├── elements-length-no-holey.js │ ├── elements-transition-and-store.js │ ├── elements-transition-hoisting.js │ ├── elements-transition.js │ ├── elide-double-hole-check-1.js │ ├── elide-double-hole-check-10.js │ ├── elide-double-hole-check-11.js │ ├── elide-double-hole-check-12.js │ ├── elide-double-hole-check-2.js │ ├── elide-double-hole-check-3.js │ ├── elide-double-hole-check-4.js │ ├── elide-double-hole-check-5.js │ ├── elide-double-hole-check-6.js │ ├── elide-double-hole-check-7.js │ ├── elide-double-hole-check-8.js │ ├── elide-double-hole-check-9.js │ ├── empirical_max_arraybuffer.js │ ├── ensure-growing-store-learns.js │ ├── enumeration-order.js │ ├── error-accessors.js │ ├── error-constructors.js │ ├── error-stack.js │ ├── error-tostring-omit.js │ ├── error-tostring.js │ ├── es6 │ │ ├── arguments-iterator.js │ │ ├── array-concat-arity.js │ │ ├── array-concat-array-subclass.js │ │ ├── array-concat-arraylike-length-throws.js │ │ ├── array-concat-arraylike-length-tostring-throws.js │ │ ├── array-concat-arraylike-length-valueof-throws.js │ │ ├── array-concat-arraylike-negative-length.js │ │ ├── array-concat-arraylike-primitive-nonnumber-length.js │ │ ├── array-concat-arraylike-string-length.js │ │ ├── array-concat-arraylike.js │ │ ├── array-concat-descriptor.js │ │ ├── array-concat-holey-array.js │ │ ├── array-concat-isconcatspreadable-getter-throws.js │ │ ├── array-concat-length-throws.js │ │ ├── array-concat-no-prototype.js │ │ ├── array-concat-nonarray.js │ │ ├── array-concat-revoked-proxy-1.js │ │ ├── array-concat-revoked-proxy-2.js │ │ ├── array-concat-sloppy-arguments-holey.js │ │ ├── array-concat-sloppy-arguments-throws.js │ │ ├── array-concat-sloppy-arguments-with-dupes.js │ │ ├── array-concat-sloppy-arguments.js │ │ ├── array-concat-spreadable-arraylike-proxy-bogus-length.js │ │ ├── array-concat-spreadable-arraylike-proxy-length.js │ │ ├── array-concat-spreadable-arraylike-proxy.js │ │ ├── array-concat-spreadable-boolean-wrapper.js │ │ ├── array-concat-spreadable-function.js │ │ ├── array-concat-spreadable-nonarraylike-proxy.js │ │ ├── array-concat-spreadable-number-wrapper.js │ │ ├── array-concat-spreadable-regexp.js │ │ ├── array-concat-spreadable-sparse-object.js │ │ ├── array-concat-spreadable-string-wrapper.js │ │ ├── array-concat-strict-arguments.js │ │ ├── array-concat-typedarray.js │ │ ├── array-concat-unspreadable-array-subclass.js │ │ ├── array-concat-unspreadable-array.js │ │ ├── array-concat-unspreadable-arraylike-proxy.js │ │ ├── array-concat-unspreadable-nonarraylike-proxy.js │ │ ├── array-copywithin.js │ │ ├── array-fill-receiver.js │ │ ├── array-fill.js │ │ ├── array-find.js │ │ ├── array-findindex.js │ │ ├── array-from.js │ │ ├── array-iterator-detached.js │ │ ├── array-iterator-turbo.js │ │ ├── array-iterator.js │ │ ├── array-length.js │ │ ├── array-of.js │ │ ├── array-prototype-values.js │ │ ├── array-reverse-order.js │ │ ├── array-species-constructor-accessor.js │ │ ├── array-species-constructor-delete.js │ │ ├── array-species-constructor.js │ │ ├── array-species-delete.js │ │ ├── array-species-modified.js │ │ ├── array-species-neg-zero.js │ │ ├── array-species-parent-constructor.js │ │ ├── array-species-proto.js │ │ ├── array-species.js │ │ ├── array-spread-holey.js │ │ ├── array-spread-large-holey.js │ │ ├── array-tostring.js │ │ ├── arraybuffer-species.js │ │ ├── arrow-functions-lexical-arguments.js │ │ ├── arrow-functions-this.js │ │ ├── arrow-functions.js │ │ ├── arrow-rest-params-lazy-parsing.js │ │ ├── arrow-rest-params.js │ │ ├── block-conflicts-sloppy.js │ │ ├── block-conflicts.js │ │ ├── block-const-assign-sloppy.js │ │ ├── block-const-assign.js │ │ ├── block-eval-var-over-let.js │ │ ├── block-for-sloppy.js │ │ ├── block-for.js │ │ ├── block-leave-sloppy.js │ │ ├── block-leave.js │ │ ├── block-let-contextual-sloppy.js │ │ ├── block-let-crankshaft-sloppy.js │ │ ├── block-let-crankshaft.js │ │ ├── block-let-declaration-sloppy.js │ │ ├── block-let-declaration.js │ │ ├── block-let-semantics-sloppy.js │ │ ├── block-let-semantics.js │ │ ├── block-scope-class.js │ │ ├── block-scoping-sloppy.js │ │ ├── block-scoping-top-level-sloppy.js │ │ ├── block-scoping-top-level.js │ │ ├── block-scoping.js │ │ ├── block-sloppy-function.js │ │ ├── built-in-accessor-names.js │ │ ├── call-with-spread-modify-array-iterator.js │ │ ├── call-with-spread-modify-next.js │ │ ├── call-with-spread.js │ │ ├── catch-parameter-redeclaration.js │ │ ├── class-computed-property-names-super.js │ │ ├── class-property-name-eval-arguments.js │ │ ├── classes-accesors.js │ │ ├── classes-constructor.js │ │ ├── classes-derived-return-type.js │ │ ├── classes-experimental.js │ │ ├── classes-lazy-parsing.js │ │ ├── classes-maps.js │ │ ├── classes-name-binding.js │ │ ├── classes-proto.js │ │ ├── classes-proxy.js │ │ ├── classes-restricted-properties.js │ │ ├── classes-subclass-arrays.js │ │ ├── classes-subclass-builtins.js │ │ ├── classes-super-in-heritage.js │ │ ├── classes-super.js │ │ ├── classes-test-super.js │ │ ├── classes.js │ │ ├── collection-iterator.js │ │ ├── collections-constructor-custom-iterator.js │ │ ├── collections-constructor-iterator-side-effect.js │ │ ├── collections-constructor-with-modified-array-prototype.js │ │ ├── collections-constructor-with-modified-protoype.js │ │ ├── collections.js │ │ ├── completion.js │ │ ├── computed-property-names-classes.js │ │ ├── computed-property-names-deopt.js │ │ ├── computed-property-names-object-literals-methods.js │ │ ├── computed-property-names-super.js │ │ ├── computed-property-names.js │ │ ├── dataview-length.js │ │ ├── debug-promises │ │ │ └── throw-with-undefined-reject.js │ │ ├── default-parameters-destructuring.js │ │ ├── default-parameters.js │ │ ├── destructuring-assignment-lazy.js │ │ ├── destructuring-assignment.js │ │ ├── destructuring-parameters-literalcount-nolazy.js │ │ ├── destructuring-parameters-literalcount.js │ │ ├── destructuring.js │ │ ├── empty-for.js │ │ ├── for-each-in-catch.js │ │ ├── for-of.js │ │ ├── function-length-configurable.js │ │ ├── function-name-configurable.js │ │ ├── function-name.js │ │ ├── function-prototype-name.js │ │ ├── generator-destructuring.js │ │ ├── generators-iteration.js │ │ ├── generators-objects.js │ │ ├── generators-parsing.js │ │ ├── generators-poisoned-properties.js │ │ ├── generators-runtime.js │ │ ├── generators-states.js │ │ ├── global-proto-proxy.js │ │ ├── hasinstance-symbol.js │ │ ├── home-object-in-context.js │ │ ├── indexed-integer-exotics.js │ │ ├── instanceof-proxies.js │ │ ├── instanceof.js │ │ ├── iteration-semantics.js │ │ ├── iteration-syntax.js │ │ ├── iterator-call-lazy-deopt.js │ │ ├── iterator-close.js │ │ ├── iterator-eager-deopt.js │ │ ├── iterator-get-lazy-deopt.js │ │ ├── iterator-invalid-receiver-opt.js │ │ ├── iterator-prototype.js │ │ ├── json.js │ │ ├── large-classes-methods.js │ │ ├── large-classes-properties.js │ │ ├── large-classes-static-methods.js │ │ ├── map-constructor-entry-side-effect.js │ │ ├── map-constructor-entry-side-effect2.js │ │ ├── map-constructor-entry-side-effect3.js │ │ ├── map-constructor-entry-side-effect4.js │ │ ├── map-iterator-1.js │ │ ├── map-iterator-10.js │ │ ├── map-iterator-11.js │ │ ├── map-iterator-2.js │ │ ├── map-iterator-3.js │ │ ├── map-iterator-4.js │ │ ├── map-iterator-5.js │ │ ├── map-iterator-6.js │ │ ├── map-iterator-7.js │ │ ├── map-iterator-8.js │ │ ├── map-iterator-9.js │ │ ├── map-minus-zero.js │ │ ├── math-cbrt.js │ │ ├── math-clz32.js │ │ ├── math-expm1.js │ │ ├── math-fround.js │ │ ├── math-hyperbolic.js │ │ ├── math-hypot.js │ │ ├── math-log1p.js │ │ ├── math-log2-log10.js │ │ ├── math-sign.js │ │ ├── math-trunc.js │ │ ├── math.js │ │ ├── method-name-eval-arguments.js │ │ ├── microtask-delivery.js │ │ ├── new-target.js │ │ ├── numeric-literals.js │ │ ├── object-assign.js │ │ ├── object-literals-method.js │ │ ├── object-literals-property-shorthand.js │ │ ├── object-literals-super.js │ │ ├── object-tostring.js │ │ ├── pattern-brand-check.js │ │ ├── promise-all-overflow-1.js │ │ ├── promise-all-overflow-2.js │ │ ├── promise-all-resolve-not-callable.js │ │ ├── promise-all.js │ │ ├── promise-allsettled-resolve-not-callable.js │ │ ├── promise-internal-setter.js │ │ ├── promise-lookup-getter-setter.js │ │ ├── promise-race-resolve-not-callable.js │ │ ├── promise-resolve-thenable-job.js │ │ ├── promise-species.js │ │ ├── promise-thenable-proxy.js │ │ ├── promises.js │ │ ├── prototype-ordinary-objects.js │ │ ├── proxies-accesschecks.js │ │ ├── proxies-apply.js │ │ ├── proxies-bind.js │ │ ├── proxies-construct.js │ │ ├── proxies-constructor.js │ │ ├── proxies-cross-realm-exception.js │ │ ├── proxies-define-property.js │ │ ├── proxies-delete-property.js │ │ ├── proxies-example-membrane.js │ │ ├── proxies-for.js │ │ ├── proxies-function.js │ │ ├── proxies-get-own-property-descriptor.js │ │ ├── proxies-get-prototype-of.js │ │ ├── proxies-get.js │ │ ├── proxies-global-reference.js │ │ ├── proxies-has-own-property.js │ │ ├── proxies-has.js │ │ ├── proxies-hash.js │ │ ├── proxies-integrity.js │ │ ├── proxies-is-extensible.js │ │ ├── proxies-json.js │ │ ├── proxies-keys.js │ │ ├── proxies-object-assign.js │ │ ├── proxies-ownkeys-clone.js │ │ ├── proxies-ownkeys.js │ │ ├── proxies-prevent-extensions.js │ │ ├── proxies-property-is-enumerable.js │ │ ├── proxies-prototype-handler-stackoverflow.js │ │ ├── proxies-prototype-target-stackoverflow.js │ │ ├── proxies-revocable.js │ │ ├── proxies-set-prototype-of.js │ │ ├── proxies-set.js │ │ ├── proxies-with-unscopables.js │ │ ├── proxies-with.js │ │ ├── proxies.js │ │ ├── proxy-function-tostring.js │ │ ├── reflect-apply.js │ │ ├── reflect-construct.js │ │ ├── reflect-define-property.js │ │ ├── reflect-get-own-property-descriptor.js │ │ ├── reflect-get-prototype-of.js │ │ ├── reflect-own-keys.js │ │ ├── reflect-prevent-extensions.js │ │ ├── reflect-set-prototype-of.js │ │ ├── reflect.js │ │ ├── regexp-constructor.js │ │ ├── regexp-flags.js │ │ ├── regexp-match-lastindex.js │ │ ├── regexp-prototype.js │ │ ├── regexp-replace-lastindex.js │ │ ├── regexp-sticky.js │ │ ├── regexp-tolength.js │ │ ├── regexp-tostring.js │ │ ├── regress │ │ │ ├── regress-2034.js │ │ │ ├── regress-2156.js │ │ │ ├── regress-2186.js │ │ │ ├── regress-2219.js │ │ │ ├── regress-2225.js │ │ │ ├── regress-2243.js │ │ │ ├── regress-2322.js │ │ │ ├── regress-2506.js │ │ │ ├── regress-2681.js │ │ │ ├── regress-2691.js │ │ │ ├── regress-2829.js │ │ │ ├── regress-2858.js │ │ │ ├── regress-3426.js │ │ │ ├── regress-347906.js │ │ │ ├── regress-3501.js │ │ │ ├── regress-3683.js │ │ │ ├── regress-3741.js │ │ │ ├── regress-3902.js │ │ │ ├── regress-3938.js │ │ │ ├── regress-4056.js │ │ │ ├── regress-4097.js │ │ │ ├── regress-4160.js │ │ │ ├── regress-4211.js │ │ │ ├── regress-4298.js │ │ │ ├── regress-4395-global-eval.js │ │ │ ├── regress-4395.js │ │ │ ├── regress-4400.js │ │ │ ├── regress-4417.js │ │ │ ├── regress-4466.js │ │ │ ├── regress-4482.js │ │ │ ├── regress-4522.js │ │ │ ├── regress-455141.js │ │ │ ├── regress-4585.js │ │ │ ├── regress-474783.js │ │ │ ├── regress-4759.js │ │ │ ├── regress-508074.js │ │ │ ├── regress-513474.js │ │ │ ├── regress-517455.js │ │ │ ├── regress-5337.js │ │ │ ├── regress-5598.js │ │ │ ├── regress-576662.js │ │ │ ├── regress-5929-1.js │ │ │ ├── regress-594084.js │ │ │ ├── regress-6098.js │ │ │ ├── regress-6322.js │ │ │ ├── regress-650172.js │ │ │ ├── regress-660925.js │ │ │ ├── regress-666622.js │ │ │ ├── regress-7706.js │ │ │ ├── regress-777182.js │ │ │ ├── regress-9234.js │ │ │ ├── regress-arrow-duplicate-params.js │ │ │ ├── regress-cr372788.js │ │ │ ├── regress-cr493566.js │ │ │ ├── regress-cr512574.js │ │ │ ├── regress-cr895860.js │ │ │ ├── regress-crbug-248025.js │ │ │ ├── regress-crbug-346141.js │ │ │ ├── regress-crbug-448730.js │ │ │ ├── regress-crbug-461520.js │ │ │ ├── regress-crbug-465671-null.js │ │ │ ├── regress-crbug-465671.js │ │ │ ├── regress-crbug-820596.js │ │ │ ├── regress-crbug-837939.js │ │ │ ├── regress-inlined-new-target.js │ │ │ ├── regress-lookup-transition.js │ │ │ └── regress-new-target-context.js │ │ ├── rest-params-lazy-parsing.js │ │ ├── rest-params.js │ │ ├── set-iterator-1.js │ │ ├── set-iterator-10.js │ │ ├── set-iterator-11.js │ │ ├── set-iterator-2.js │ │ ├── set-iterator-3.js │ │ ├── set-iterator-4.js │ │ ├── set-iterator-5.js │ │ ├── set-iterator-6.js │ │ ├── set-iterator-7.js │ │ ├── set-iterator-8.js │ │ ├── set-iterator-9.js │ │ ├── set-minus-zero.js │ │ ├── sloppy-no-duplicate-generators.js │ │ ├── sloppy-restrictive-block-function.js │ │ ├── species.js │ │ ├── spread-array-misc.js │ │ ├── spread-array-mutated-prototype.js │ │ ├── spread-array-pristine-prototype.js │ │ ├── spread-array-prototype-proxy.js │ │ ├── spread-array-prototype-setter1.js │ │ ├── spread-array-prototype-setter2.js │ │ ├── spread-call-new-class.js │ │ ├── spread-call-new.js │ │ ├── spread-call-super-property.js │ │ ├── spread-call.js │ │ ├── string-codepointat.js │ │ ├── string-endswith.js │ │ ├── string-fromcodepoint.js │ │ ├── string-html.js │ │ ├── string-includes.js │ │ ├── string-iterator.js │ │ ├── string-iterator2.js │ │ ├── string-iterator3.js │ │ ├── string-iterator4.js │ │ ├── string-iterator5.js │ │ ├── string-iterator6.js │ │ ├── string-iterator7.js │ │ ├── string-iterator8.js │ │ ├── string-match.js │ │ ├── string-raw.js │ │ ├── string-repeat.js │ │ ├── string-replace.js │ │ ├── string-search.js │ │ ├── string-split.js │ │ ├── string-startswith.js │ │ ├── super-ic-opt-no-turboprop.js │ │ ├── super-ic-opt.js │ │ ├── super-ic.js │ │ ├── super-with-spread-modify-array-iterator.js │ │ ├── super-with-spread-modify-next.js │ │ ├── super-with-spread.js │ │ ├── super.js │ │ ├── symbols.js │ │ ├── templates.js │ │ ├── throw-type-error-function-restrictions.js │ │ ├── typed-array-iterator.js │ │ ├── typedarray-construct-by-array-like-prototype-element-added.js │ │ ├── typedarray-construct-by-array-like.js │ │ ├── typedarray-construct-by-buffer-ordering.js │ │ ├── typedarray-construct-offset-not-smi.js │ │ ├── typedarray-copywithin.js │ │ ├── typedarray-detached.js │ │ ├── typedarray-every.js │ │ ├── typedarray-fill.js │ │ ├── typedarray-filter.js │ │ ├── typedarray-find.js │ │ ├── typedarray-findindex.js │ │ ├── typedarray-foreach.js │ │ ├── typedarray-from-detached-typedarray.js │ │ ├── typedarray-from-next-overridden.js │ │ ├── typedarray-from-nonfunction-iterator.js │ │ ├── typedarray-from-optional-arguments.js │ │ ├── typedarray-from.js │ │ ├── typedarray-indexing.js │ │ ├── typedarray-iteration.js │ │ ├── typedarray-keyedstore-tonumber.js │ │ ├── typedarray-map.js │ │ ├── typedarray-of.js │ │ ├── typedarray-proto.js │ │ ├── typedarray-reduce.js │ │ ├── typedarray-reverse.js │ │ ├── typedarray-set-bytelength-not-smi.js │ │ ├── typedarray-set-length-internal.js │ │ ├── typedarray-set-length.js │ │ ├── typedarray-slice.js │ │ ├── typedarray-sort.js │ │ ├── typedarray-species.js │ │ ├── typedarray-tostring.js │ │ ├── typedarray.js │ │ ├── unicode-character-ranges.js │ │ ├── unicode-escapes-in-regexps.js │ │ ├── unicode-escapes.js │ │ ├── unicode-regexp-backrefs.js │ │ ├── unicode-regexp-ignore-case-noi18n.js │ │ ├── unicode-regexp-ignore-case.js │ │ ├── unicode-regexp-last-index.js │ │ ├── unicode-regexp-restricted-syntax.js │ │ ├── unicode-regexp-unanchored-advance.js │ │ ├── unicode-regexp-zero-length.js │ │ └── unscopables.js │ ├── es7 │ │ ├── array-includes-receiver.js │ │ ├── array-includes-to-object-sloppy.js │ │ ├── array-includes-to-object-strict.js │ │ ├── array-includes.js │ │ ├── exponentiation-operator.js │ │ ├── regexp-ui-word.js │ │ ├── regress │ │ │ ├── regress-5986.js │ │ │ ├── regress-633883.js │ │ │ ├── regress-634269.js │ │ │ ├── regress-634273.js │ │ │ └── regress-634357.js │ │ └── typed-array-includes.js │ ├── es8 │ │ ├── async-arrow-default-function-await.js │ │ ├── async-arrow-lexical-arguments.js │ │ ├── async-arrow-lexical-new.target.js │ │ ├── async-arrow-lexical-super.js │ │ ├── async-arrow-lexical-this.js │ │ ├── async-await-basic.js │ │ ├── async-await-interleaved.js │ │ ├── async-await-no-constructor.js │ │ ├── async-await-resolve-new.js │ │ ├── async-await-species.js │ │ ├── async-destructuring.js │ │ ├── async-function-stacktrace.js │ │ ├── async-function-try-finally.js │ │ ├── object-entries.js │ │ ├── object-get-own-property-descriptors.js │ │ ├── object-values.js │ │ ├── regress │ │ │ ├── regress-618603.js │ │ │ ├── regress-624300.js │ │ │ └── regress-794744.js │ │ └── sloppy-no-duplicate-async.js │ ├── es9 │ │ ├── object-rest-basic.js │ │ ├── object-spread-basic.js │ │ ├── object-spread-ic-dontenum-transition.js │ │ ├── object-spread-ic-multiple-transitions.js │ │ ├── object-spread-ic.js │ │ ├── regexp-lookbehind.js │ │ ├── regress │ │ │ ├── regress-866229.js │ │ │ ├── regress-866282.js │ │ │ ├── regress-866357.js │ │ │ ├── regress-866727.js │ │ │ ├── regress-866861.js │ │ │ ├── regress-867958.js │ │ │ ├── regress-869342.js │ │ │ ├── regress-902965.js │ │ │ ├── regress-903070.js │ │ │ └── regress-904167.js │ │ └── template-escapes.js │ ├── escape.js │ ├── eval-enclosing-function-name.js │ ├── eval-origin.js │ ├── eval-stack-trace.js │ ├── eval-typeof-non-existing.js │ ├── eval.js │ ├── expose-cputracemark.js │ ├── external-array.js │ ├── extinction │ │ └── array.js │ ├── extra-arguments.js │ ├── extra-commas.js │ ├── fast-array-length.js │ ├── fast-element-smi-check.js │ ├── fast-literal.js │ ├── fast-non-keyed.js │ ├── fast-prototype.js │ ├── field-representation-tracking-clone-object.js │ ├── field-representation-tracking.js │ ├── field-type-tracking.js │ ├── filter-element-kinds.js │ ├── fixed-context-shapes-when-recompiling.js │ ├── for-in-delete.js │ ├── for-in-null-or-undefined.js │ ├── for-in-special-cases.js │ ├── for-in.js │ ├── for-of-in-catch-duplicate-decl.js │ ├── for.js │ ├── frozen-array-reduce.js │ ├── fun-as-prototype.js │ ├── fun-name.js │ ├── function-arguments-duplicate.js │ ├── function-arguments-null.js │ ├── function-bind-name.js │ ├── function-bind.js │ ├── function-call.js │ ├── function-caller.js │ ├── function-length-accessor.js │ ├── function-name-eval-shadowed.js │ ├── function-named-self-reference.js │ ├── function-names.js │ ├── function-property.js │ ├── function-prototype.js │ ├── function-var.js │ ├── function-without-prototype.js │ ├── function.js │ ├── fuzz-accessors.js │ ├── generated-transition-stub.js │ ├── get-own-property-descriptor-non-objects.js │ ├── get-own-property-descriptor.js │ ├── get-prototype-of.js │ ├── getter-in-prototype.js │ ├── getter-in-value-prototype.js │ ├── getters-on-elements.js │ ├── global-accessors.js │ ├── global-arrow-delete-this.js │ ├── global-deleted-property-ic.js │ ├── global-hash.js │ ├── global-ic.js │ ├── global-infinity-strict.js │ ├── global-infinity.js │ ├── global-load-from-eval-in-with.js │ ├── global-load-from-eval.js │ ├── global-load-from-nested-eval.js │ ├── global-load-with-proxy.js │ ├── global-nan-strict.js │ ├── global-nan.js │ ├── global-properties.js │ ├── global-prototypes.js │ ├── global-proxy-globalThis.js │ ├── global-proxy-this.js │ ├── global-undefined-strict.js │ ├── global-undefined.js │ ├── global-vars-eval.js │ ├── global-vars-with.js │ ├── globals.js │ ├── handle-count-ast.js │ ├── handle-count-runtime-literals.js │ ├── harmony │ │ ├── aggregate-error.js │ │ ├── array-concat-array-proto-getter.js │ │ ├── array-concat-array-proto.js │ │ ├── array-concat-object-proto-dict-getter.js │ │ ├── array-concat-object-proto-dict.js │ │ ├── array-concat-object-proto-generic-dict.js │ │ ├── array-concat-object-proto.js │ │ ├── array-findlast-unscopables.js │ │ ├── array-flat-species.js │ │ ├── array-flat.js │ │ ├── array-flatMap-species.js │ │ ├── array-flatMap.js │ │ ├── array-prototype-findlast.js │ │ ├── array-prototype-findlastindex.js │ │ ├── array-prototype-groupbytomap.js │ │ ├── array-sort-comparefn.js │ │ ├── array-to-reversed-big.js │ │ ├── array-to-reversed.js │ │ ├── array-to-sorted.js │ │ ├── array-to-spliced-big.js │ │ ├── array-to-spliced.js │ │ ├── array-with.js │ │ ├── arraybuffer-transfer.js │ │ ├── async-await-optimization.js │ │ ├── async-for-of-non-iterable.js │ │ ├── async-from-sync-iterator-next-tick-count.js │ │ ├── async-from-sync-iterator-return-tick-count.js │ │ ├── async-from-sync-iterator-throw-tick-count.js │ │ ├── async-from-sync-iterator.js │ │ ├── async-generators-basic.js │ │ ├── async-generators-resume-return.js │ │ ├── async-generators-return-broken-promise.js │ │ ├── async-generators-return.js │ │ ├── async-generators-throw-caught.js │ │ ├── async-generators-yield.js │ │ ├── async-iterators-resolve.js │ │ ├── atomics-on-arraybuffer-detach.js │ │ ├── atomics-value-check.js │ │ ├── atomics-waitasync-1thread-2timeout.js │ │ ├── atomics-waitasync-1thread-buffer-out-of-scope-timeout.js │ │ ├── atomics-waitasync-1thread-promise-out-of-scope.js │ │ ├── atomics-waitasync-1thread-timeout.js │ │ ├── atomics-waitasync-1thread-timeouts-and-no-timeouts.js │ │ ├── atomics-waitasync-1thread-wake-up-all.js │ │ ├── atomics-waitasync-1thread-wake-up-fifo.js │ │ ├── atomics-waitasync-1thread-wake-up-simple.js │ │ ├── atomics-waitasync-helpers.js │ │ ├── atomics-waitasync-worker-shutdown-before-wait-finished-2-waits.js │ │ ├── atomics-waitasync-worker-shutdown-before-wait-finished-2-workers.js │ │ ├── atomics-waitasync-worker-shutdown-before-wait-finished-no-timeout.js │ │ ├── atomics-waitasync-worker-shutdown-before-wait-finished-timeout.js │ │ ├── atomics-waitasync.js │ │ ├── atomics.js │ │ ├── bigint │ │ │ ├── add.js │ │ │ ├── and.js │ │ │ ├── as-int-n.js │ │ │ ├── basics.js │ │ │ ├── comparisons.js │ │ │ ├── dataview.js │ │ │ ├── dec.js │ │ │ ├── div-special-cases.js │ │ │ ├── div.js │ │ │ ├── exp.js │ │ │ ├── inc.js │ │ │ ├── json.js │ │ │ ├── misc.js │ │ │ ├── mod-special-cases.js │ │ │ ├── mod.js │ │ │ ├── mul-special-cases.js │ │ │ ├── mul.js │ │ │ ├── neg.js │ │ │ ├── not.js │ │ │ ├── or.js │ │ │ ├── property-names.js │ │ │ ├── regress-fftmul-2.js │ │ │ ├── regress-fftmul.js │ │ │ ├── regress-minuszero.js │ │ │ ├── regress-tonumbercode.js │ │ │ ├── regress-tostring-2.js │ │ │ ├── regress-tostring.js │ │ │ ├── regressions.js │ │ │ ├── rematerialize-on-deopt.js │ │ │ ├── sar.js │ │ │ ├── shl.js │ │ │ ├── sub.js │ │ │ ├── tonumber.js │ │ │ ├── tostring-toolong.js │ │ │ ├── turbo.js │ │ │ ├── typedarray.js │ │ │ └── xor.js │ │ ├── bigintarray-keyedstore-tobigint.js │ │ ├── block-lazy-compile.js │ │ ├── class-static-blocks.js │ │ ├── dataview-accessors.js │ │ ├── define-private-class-field-stress.js │ │ ├── error-cause.js │ │ ├── eval-param-scoping.js │ │ ├── for-await-of.js │ │ ├── function-tostring.js │ │ ├── futex.js │ │ ├── generators-reduced.js │ │ ├── generators.js │ │ ├── global-configurable.js │ │ ├── global-writable.js │ │ ├── global.js │ │ ├── harmony-string-pad-end.js │ │ ├── harmony-string-pad-start.js │ │ ├── has-own.js │ │ ├── hashbang-eval.js │ │ ├── import-from-compilation-errored.js │ │ ├── import-from-evaluation-errored.js │ │ ├── import-from-fetch-errored.js │ │ ├── import-from-instantiation-errored.js │ │ ├── index-fields-nonextensible-global-proxy-no-lazy-feedback.js │ │ ├── index-fields-nonextensible-global-proxy.js │ │ ├── iterator-constructor.js │ │ ├── iterator-from.js │ │ ├── iterator-helpers.js │ │ ├── json-parse-with-source-snapshot.js │ │ ├── json-parse-with-source.js │ │ ├── logical-assignment-function-name.js │ │ ├── logical-assignment.js │ │ ├── module-parsing-eval.mjs │ │ ├── modules-import-1.mjs │ │ ├── modules-import-10.mjs │ │ ├── modules-import-11.mjs │ │ ├── modules-import-12.mjs │ │ ├── modules-import-13.mjs │ │ ├── modules-import-14.mjs │ │ ├── modules-import-15-top-level-await.mjs │ │ ├── modules-import-15.mjs │ │ ├── modules-import-16.mjs │ │ ├── modules-import-17.mjs │ │ ├── modules-import-2.mjs │ │ ├── modules-import-3.mjs │ │ ├── modules-import-4.mjs │ │ ├── modules-import-5.mjs │ │ ├── modules-import-6.mjs │ │ ├── modules-import-7.mjs │ │ ├── modules-import-8.mjs │ │ ├── modules-import-9.mjs │ │ ├── modules-import-assertions-1.mjs │ │ ├── modules-import-assertions-2.mjs │ │ ├── modules-import-assertions-3.mjs │ │ ├── modules-import-assertions-4.mjs │ │ ├── modules-import-assertions-dynamic-1.mjs │ │ ├── modules-import-assertions-dynamic-10.mjs │ │ ├── modules-import-assertions-dynamic-11.mjs │ │ ├── modules-import-assertions-dynamic-12.mjs │ │ ├── modules-import-assertions-dynamic-2.mjs │ │ ├── modules-import-assertions-dynamic-3.mjs │ │ ├── modules-import-assertions-dynamic-4.mjs │ │ ├── modules-import-assertions-dynamic-5.mjs │ │ ├── modules-import-assertions-dynamic-6.mjs │ │ ├── modules-import-assertions-dynamic-7.mjs │ │ ├── modules-import-assertions-dynamic-8.mjs │ │ ├── modules-import-assertions-dynamic-9.mjs │ │ ├── modules-import-large.mjs │ │ ├── modules-import-meta.mjs │ │ ├── modules-import-namespace.mjs │ │ ├── modules-import-rqstd-order-async-cycle.mjs │ │ ├── modules-import-rqstd-order-async-subgraph.mjs │ │ ├── modules-import-rqstd-order-top-level-await-1.mjs │ │ ├── modules-import-rqstd-order-top-level-await-2.mjs │ │ ├── modules-import-rqstd-order-top-level-await-3.mjs │ │ ├── modules-import-rqstd-order-top-level-await-4.mjs │ │ ├── modules-import-rqstd-order-top-level-await-5.mjs │ │ ├── modules-import-rqstd-order-top-level-await-6.mjs │ │ ├── modules-import-rqstd-order-top-level-await-7.mjs │ │ ├── modules-import-rqstd-order-top-level-await-8.mjs │ │ ├── modules-import-top-level-await-1.mjs │ │ ├── modules-import-top-level-await-2.mjs │ │ ├── modules-import-top-level-await-3.mjs │ │ ├── modules-import-top-level-await-4.mjs │ │ ├── modules-import-top-level-await-5.mjs │ │ ├── modules-import-top-level-await-6.mjs │ │ ├── modules-import-top-level-await-7.mjs │ │ ├── modules-import-top-level-await-8.mjs │ │ ├── modules-import-top-level-await-cycle.mjs │ │ ├── modules-import-top-level-await-exception-1.mjs │ │ ├── modules-import-top-level-await-exception-2.mjs │ │ ├── modules-import-top-level-await-exception-3.mjs │ │ ├── modules-skip-1-rqstd-order-indirect-top-level-await.mjs │ │ ├── modules-skip-1-rqstd-order-indirect-unreached-top-level-await.mjs │ │ ├── modules-skip-1-rqstd-order-top-level-await.mjs │ │ ├── modules-skip-1-rqstd-order-unreached-top-level-await.mjs │ │ ├── modules-skip-1-rqstd-order.mjs │ │ ├── modules-skip-1-top-level-await-cycle.mjs │ │ ├── modules-skip-1-top-level-await.mjs │ │ ├── modules-skip-1.json │ │ ├── modules-skip-1.mjs │ │ ├── modules-skip-10.mjs │ │ ├── modules-skip-11.mjs │ │ ├── modules-skip-12.mjs │ │ ├── modules-skip-13.mjs │ │ ├── modules-skip-2-rqstd-order-indirect-top-level-await.mjs │ │ ├── modules-skip-2-rqstd-order-top-level-await.mjs │ │ ├── modules-skip-2-rqstd-order.mjs │ │ ├── modules-skip-2-top-level-await-cycle.mjs │ │ ├── modules-skip-2-top-level-await.mjs │ │ ├── modules-skip-2.mjs │ │ ├── modules-skip-3-rqstd-order-indirect-top-level-await.mjs │ │ ├── modules-skip-3-rqstd-order-top-level-await.mjs │ │ ├── modules-skip-3-rqstd-order.mjs │ │ ├── modules-skip-3-top-level-await-cycle.mjs │ │ ├── modules-skip-3-top-level-await.mjs │ │ ├── modules-skip-3.mjs │ │ ├── modules-skip-4-rqstd-order-indirect-top-level-await.mjs │ │ ├── modules-skip-4-rqstd-order-top-level-await.mjs │ │ ├── modules-skip-4-rqstd-order.mjs │ │ ├── modules-skip-4-top-level-await-cycle.mjs │ │ ├── modules-skip-4-top-level-await.mjs │ │ ├── modules-skip-4.mjs │ │ ├── modules-skip-5-top-level-await.mjs │ │ ├── modules-skip-5.mjs │ │ ├── modules-skip-6-top-level-await.mjs │ │ ├── modules-skip-6.mjs │ │ ├── modules-skip-7-top-level-await.mjs │ │ ├── modules-skip-7.mjs │ │ ├── modules-skip-8.mjs │ │ ├── modules-skip-9.mjs │ │ ├── modules-skip-async-cycle-1.mjs │ │ ├── modules-skip-async-cycle-2.mjs │ │ ├── modules-skip-async-cycle-3.mjs │ │ ├── modules-skip-async-cycle-leaf.mjs │ │ ├── modules-skip-async-cycle-start.mjs │ │ ├── modules-skip-async-subgraph-1.mjs │ │ ├── modules-skip-async-subgraph-2.mjs │ │ ├── modules-skip-async-subgraph-async.mjs │ │ ├── modules-skip-async-subgraph-start.mjs │ │ ├── modules-skip-async-subgraph-x.mjs │ │ ├── modules-skip-empty.mjs │ │ ├── modules-skip-export-import-meta.mjs │ │ ├── modules-skip-imports-json-1.mjs │ │ ├── modules-skip-large1.mjs │ │ ├── modules-skip-large2.mjs │ │ ├── modules-skip-top-level-await-cycle-error-indirection.mjs │ │ ├── modules-skip-top-level-await-cycle-error-throwing.mjs │ │ ├── modules-skip-top-level-await-cycle-error.mjs │ │ ├── modules-top-level-await-cycle-error.mjs │ │ ├── nullish.js │ │ ├── numeric-separator.js │ │ ├── object-fromentries.js │ │ ├── object-groupby-fast-path-assumptions.js │ │ ├── object-groupby.js │ │ ├── optional-catch-binding-breaks.js │ │ ├── optional-catch-binding.js │ │ ├── optional-chaining-this-private.js │ │ ├── optional-chaining-this.js │ │ ├── optional-chaining.js │ │ ├── private-accessors.js │ │ ├── private-brand-checks.js │ │ ├── private-brand-nested-super.js │ │ ├── private-fields-ic.js │ │ ├── private-fields-nonextensible-global-proxy-no-lazy-feedback.js │ │ ├── private-fields-nonextensible-global-proxy.js │ │ ├── private-fields-special-object.js │ │ ├── private-fields-static.js │ │ ├── private-fields.js │ │ ├── private-methods-empty-inner.js │ │ ├── private-methods.js │ │ ├── private-name-scopes.js │ │ ├── private-name-surrogate-pair.js │ │ ├── private-reference-logical-assignment-short-circuit.js │ │ ├── private-symbols.js │ │ ├── private.js │ │ ├── promise-all-settled.js │ │ ├── promise-any-overflow-1.js │ │ ├── promise-any-overflow-2.js │ │ ├── promise-any-resolve-not-callable.js │ │ ├── promise-any.js │ │ ├── promise-prototype-finally.js │ │ ├── public-instance-class-fields.js │ │ ├── public-static-class-fields.js │ │ ├── regexp-change-exec.js │ │ ├── regexp-dotall.js │ │ ├── regexp-match-indices.js │ │ ├── regexp-named-captures.js │ │ ├── regexp-overriden-exec.js │ │ ├── regexp-property-binary.js │ │ ├── regexp-property-char-class.js │ │ ├── regexp-property-enumerated.js │ │ ├── regexp-property-exact-match.js │ │ ├── regexp-property-general-category.js │ │ ├── regexp-property-invalid.js │ │ ├── regexp-property-lu-ui.js │ │ ├── regexp-property-lu-ui0.js │ │ ├── regexp-property-lu-ui1.js │ │ ├── regexp-property-lu-ui2.js │ │ ├── regexp-property-lu-ui3.js │ │ ├── regexp-property-lu-ui4.js │ │ ├── regexp-property-lu-ui5.js │ │ ├── regexp-property-lu-ui6.js │ │ ├── regexp-property-lu-ui7.js │ │ ├── regexp-property-lu-ui8.js │ │ ├── regexp-property-lu-ui9.js │ │ ├── regexp-property-script-extensions.js │ │ ├── regexp-property-scripts.js │ │ ├── regexp-property-special.js │ │ ├── regexp-unicode-sets.js │ │ ├── regress-generators-resume.js │ │ ├── regress │ │ │ ├── regress-173361.js │ │ │ ├── regress-4696.js │ │ │ ├── regress-6100.js │ │ │ ├── regress-6322.js │ │ │ ├── regress-771470.js │ │ │ ├── regress-772649.js │ │ │ ├── regress-8808.js │ │ │ ├── regress-897436.js │ │ │ ├── regress-912504.js │ │ │ ├── regress-952722.js │ │ │ ├── regress-crbug-1367133.js │ │ │ ├── regress-crbug-1372500.js │ │ │ ├── regress-crbug-1381656.js │ │ │ ├── regress-crbug-1410963.js │ │ │ ├── regress-crbug-1422812.js │ │ │ ├── regress-crbug-1423310.js │ │ │ ├── regress-crbug-1444842.js │ │ │ ├── regress-crbug-347528.js │ │ │ ├── regress-crbug-571149.js │ │ │ ├── regress-crbug-621111.js │ │ │ ├── regress-crbug-621496.js │ │ │ └── regress-typedarray-out-of-bounds.js │ │ ├── relative-indexing-methods.js │ │ ├── set-intersection.js │ │ ├── set-prototype-of.js │ │ ├── set-union.js │ │ ├── shadowrealm-callsite-throw.js │ │ ├── shadowrealm-evaluate.js │ │ ├── shadowrealm-importvalue.js │ │ ├── shadowrealm-skip-1.mjs │ │ ├── shadowrealm-skip-2-throw.mjs │ │ ├── shadowrealm-skip-3-throw-object.mjs │ │ ├── shadowrealm-wrapped-function-bind.js │ │ ├── shadowrealm-wrapped-function-props-stack.js │ │ ├── shadowrealm-wrapped-function-props.js │ │ ├── shadowrealm-wrapped-function.js │ │ ├── sharedarraybuffer-stress.js │ │ ├── sharedarraybuffer-worker-gc-stress.js │ │ ├── sharedarraybuffer.js │ │ ├── static-private-methods.js │ │ ├── string-iswellformed-external-uncached.js │ │ ├── string-iswellformed-flat-indirect.js │ │ ├── string-matchAll-deleted-matchAll.js │ │ ├── string-matchAll.js │ │ ├── string-replaceAll.js │ │ ├── symbol-as-weakmap-key.js │ │ ├── symbol-async-iterator.js │ │ ├── symbol-description.js │ │ ├── to-length.js │ │ ├── to-name.js │ │ ├── to-number.js │ │ ├── to-string.js │ │ ├── trailing-commas-length.js │ │ ├── typed-array-to-sorted.js │ │ ├── typedarray-findlast.js │ │ ├── typedarray-findlastindex.js │ │ ├── typedarray-to-reversed.js │ │ ├── typedarray-tostringtag.js │ │ ├── typedarray-with.js │ │ ├── weakrefs │ │ │ ├── basics-cleanupsome.js │ │ │ ├── basics.js │ │ │ ├── cleanup-from-different-realm.js │ │ │ ├── cleanup-is-not-a-microtask.js │ │ │ ├── cleanup-on-detached-realm.js │ │ │ ├── cleanup-proxy-from-different-realm.js │ │ │ ├── cleanup.js │ │ │ ├── cleanupsome-2.js │ │ │ ├── cleanupsome-after-unregister.js │ │ │ ├── cleanupsome-optional.js │ │ │ ├── cleanupsome.js │ │ │ ├── clearkeptobjects-on-quit.js │ │ │ ├── finalizationregistry-and-weakref.js │ │ │ ├── finalizationregistry-independent-lifetime-multiple.js │ │ │ ├── finalizationregistry-independent-lifetime.js │ │ │ ├── finalizationregistry-keeps-holdings-alive.js │ │ │ ├── finalizationregistry-scheduled-for-cleanup-multiple-times.js │ │ │ ├── multiple-dirty-finalization-groups.js │ │ │ ├── reentrant-gc-from-cleanup.js │ │ │ ├── stress-finalizationregistry-dirty-enqueue.js │ │ │ ├── symbol-as-weakref-target-gc.js │ │ │ ├── symbol-as-weakref-target.js │ │ │ ├── symbol-in-finalizationregistry.js │ │ │ ├── two-weakrefs.js │ │ │ ├── undefined-holdings.js │ │ │ ├── unregister-after-cleanup.js │ │ │ ├── unregister-before-cleanup.js │ │ │ ├── unregister-called-twice.js │ │ │ ├── unregister-inside-cleanup.js │ │ │ ├── unregister-inside-cleanup2.js │ │ │ ├── unregister-inside-cleanup3.js │ │ │ ├── unregister-many.js │ │ │ ├── unregister-when-cleanup-already-scheduled.js │ │ │ ├── weak-cell-basics.js │ │ │ ├── weak-unregistertoken.js │ │ │ ├── weakref-creation-keeps-alive.js │ │ │ └── weakref-deref-keeps-alive.js │ │ ├── well-formed-json-stringify-checked.js │ │ └── well-formed-json-stringify-unchecked.js │ ├── has-own-property-evaluation-order.js │ ├── has-own-property.js │ ├── hash-code.js │ ├── heapObjectVerify.js │ ├── hex-parsing.js │ ├── holy-double-no-arg-array.js │ ├── html-comments.js │ ├── html-string-funcs.js │ ├── ic-lookup-on-receiver.js │ ├── ic-megadom-2.js │ ├── ic-megadom-3.js │ ├── ic-megadom.js │ ├── ic-migrated-map-add-when-monomorphic.js │ ├── ic-migrated-map-add-when-uninitialized.js │ ├── ic-migrated-map-update-when-deprecated.js │ ├── icu-date-lord-howe.js │ ├── icu-date-to-string.js │ ├── if-in-undefined.js │ ├── ignition │ │ ├── dead-code-source-position.js │ │ ├── dynamic-global-inside-block.js │ │ ├── optimized-stack-trace.js │ │ ├── osr-from-bytecode.js │ │ ├── osr-from-generator.js │ │ ├── print-ast.js │ │ ├── regress-597565-double-to-object-transition.js │ │ ├── regress-599001-verifyheap.js │ │ ├── regress-612386-smi-to-double-transition.js │ │ ├── regress-616064.js │ │ ├── regress-629792-source-position-on-jump.js │ │ ├── regress-662418.js │ │ ├── regress-664146.js │ │ ├── regress-672027.js │ │ ├── stack-trace-source-position.js │ │ ├── string-concat-external-thin-string.js │ │ ├── throw-if-hole.js │ │ ├── throw-if-not-hole.js │ │ ├── throw-super-not-called.js │ │ └── tracing.js │ ├── immutable-context-slot-inlining.js │ ├── in.js │ ├── indexed-accessors.js │ ├── indexed-value-properties.js │ ├── induction-variable-turbofan.js │ ├── instanceof-2.js │ ├── instanceof.js │ ├── int32-ops.js │ ├── integer-to-string.js │ ├── integrity-level-map-update.js │ ├── interrupt-budget-override.js │ ├── intl-numberformat-formattoparts.js │ ├── intl-pluralrules-select.js │ ├── invalid-lhs.js │ ├── invalid-source-element.js │ ├── json-errors.js │ ├── json-parse-slice.js │ ├── json-parser-recursive.js │ ├── json-replacer-number-wrapper-tostring.js │ ├── json-replacer-order.js │ ├── json-stringify-holder.js │ ├── json-stringify-recursive.js │ ├── json-stringify-stack.js │ ├── json-stringify-typedarray.js │ ├── json.js │ ├── json2.js │ ├── keyed-array-call.js │ ├── keyed-call-generic.js │ ├── keyed-call-ic.js │ ├── keyed-has-ic-module-export.mjs │ ├── keyed-has-ic-module-import.mjs │ ├── keyed-has-ic.js │ ├── keyed-ic.js │ ├── keyed-load-dictionary-stub.js │ ├── keyed-load-generic.js │ ├── keyed-load-hole-to-undefined.js │ ├── keyed-load-null-receiver.js │ ├── keyed-load-with-string-key.js │ ├── keyed-load-with-symbol-key.js │ ├── keyed-named-access.js │ ├── keyed-storage-extend.js │ ├── keyed-store-array-literal.js │ ├── keyed-store-generic.js │ ├── keywords-and-reserved_words.js │ ├── large-external-string.js │ ├── large-object-allocation.js │ ├── large-object-literal-2.js │ ├── large-object-literal-slow-elements.js │ ├── large-object-literal.js │ ├── lazy-inner-functions.js │ ├── lazy-load.js │ ├── lea-add.js │ ├── leakcheck.js │ ├── length.js │ ├── linecontinuation.js │ ├── lithium │ │ ├── DivI.js │ │ ├── MathExp.js │ │ ├── MulI.js │ │ ├── StoreKeyed.js │ │ └── StoreKeyedExternal.js │ ├── load-callback-from-value-classic.js │ ├── load_poly_effect.js │ ├── local-load-from-eval.js │ ├── logical.js │ ├── lookup-behind-property.js │ ├── maglev │ │ ├── 00.js │ │ ├── 01.js │ │ ├── 02.js │ │ ├── 03.js │ │ ├── 04.js │ │ ├── 05.js │ │ ├── 06.js │ │ ├── 07.js │ │ ├── 08.js │ │ ├── 09.js │ │ ├── 10.js │ │ ├── 11.js │ │ ├── 12.js │ │ ├── 13.js │ │ ├── 14.js │ │ ├── 15.js │ │ ├── 16.js │ │ ├── 17.js │ │ ├── 18.js │ │ ├── 19.js │ │ ├── add-number.js │ │ ├── add-smi.js │ │ ├── argument-over-under-application.js │ │ ├── array-foreach-with-transition.js │ │ ├── branch-if-xxx-to-boolean-true.js │ │ ├── call-js-runtime.js │ │ ├── call-runtime-for-pair.js │ │ ├── checkmaps-nearjumps.js │ │ ├── constant-in-proto-proxy-after-holder.js │ │ ├── continuation-after-inlined.js │ │ ├── destructuring-assignment-with-exclude-properties.js │ │ ├── eager-deopt-in-inline.js │ │ ├── exceptions.js │ │ ├── function-apply.js │ │ ├── get-template-object.js │ │ ├── inline-fresh-parent-deopt-frame.js │ │ ├── inline-phi-leak.js │ │ ├── inner-function.js │ │ ├── int32-branch.js │ │ ├── int32_constants_in_phi.js │ │ ├── lazy-deopt-with-onstack-activation.js │ │ ├── lazy-deopt-without-onstack-activation.js │ │ ├── lda-global-inside-typeof.js │ │ ├── lda-global.js │ │ ├── lda-module-variable-import.mjs │ │ ├── lda-module-variable.mjs │ │ ├── literals.js │ │ ├── load-named.js │ │ ├── loop-phi-shrinking.js │ │ ├── lots-of-args.js │ │ ├── lots-of-registers.js │ │ ├── math-ceil.js │ │ ├── math-floor.js │ │ ├── math-round.js │ │ ├── mutable-context-access.js │ │ ├── negate.js │ │ ├── nested-continuations.js │ │ ├── omit-default-ctors-array-iterator.js │ │ ├── omit-default-ctors.js │ │ ├── osr-from-ml-to-tf.js │ │ ├── osr-to-tf.js │ │ ├── phi-untagging-conversions.js │ │ ├── phi-untagging-holeyfloat64.js │ │ ├── polymorphic-load-migration.js │ │ ├── polymorphic-load-number.js │ │ ├── polymorphic-load.js │ │ ├── regress-1403324.js │ │ ├── regress-1405092.js │ │ ├── regress-1406456.js │ │ ├── regress-1407606.js │ │ ├── regress-1411075.js │ │ ├── regress-1417125.js │ │ ├── regress-1427852.js │ │ ├── regress-1443672.js │ │ ├── regress-1447359.js │ │ ├── regress-1448986.js │ │ ├── regress-1455517.js │ │ ├── regress-4349817-1.js │ │ ├── regress-4349817-2.js │ │ ├── regress-crbug-1445286.js │ │ ├── regress │ │ │ ├── regress-1359382.js │ │ │ ├── regress-1359723.js │ │ │ ├── regress-1359928.js │ │ │ ├── regress-1363450.js │ │ │ ├── regress-1364074.js │ │ │ ├── regress-1368046.js │ │ │ ├── regress-1381663.js │ │ │ ├── regress-1383712.js │ │ │ ├── regress-1392936.js │ │ │ ├── regress-1394279.js │ │ │ ├── regress-1403575.js │ │ │ ├── regress-1405651.js │ │ │ ├── regress-1407959.js │ │ │ ├── regress-1427809.js │ │ │ ├── regress-1428764.js │ │ │ ├── regress-1438990.js │ │ │ ├── regress-1454478.js │ │ │ ├── regress-1455289.js │ │ │ ├── regress-1455295.js │ │ │ ├── regress-1455550.js │ │ │ ├── regress-6373.js │ │ │ ├── regress-crbug-1392061.js │ │ │ ├── regress-crbug-1394036.js │ │ │ ├── regress-crbug-1403280.js │ │ │ ├── regress-crbug-1403323.js │ │ │ ├── regress-crbug-1403399.js │ │ │ ├── regress-crbug-1403470.js │ │ │ ├── regress-crbug-1403749.js │ │ │ ├── regress-crbug-1405445.js │ │ │ ├── regress-crbug-1416693.js │ │ │ ├── regress-crbug-1416795.js │ │ │ ├── regress-crbug-1417386.js │ │ │ ├── regress-crbug-1421237.js │ │ │ ├── regress-crbug-1421375.js │ │ │ ├── regress-crbug-1421712.js │ │ │ ├── regress-crbug-1422864.js │ │ │ ├── regress-crbug-1423580.js │ │ │ ├── regress-crbug-1423610.js │ │ │ ├── regress-crbug-1425124.js │ │ │ ├── regress-crbug-1428464.js │ │ │ ├── regress-crbug-1428524.js │ │ │ ├── regress-crbug-1429753.js │ │ │ ├── regress-crbug-1429810.js │ │ │ ├── regress-crbug-1433505.js │ │ │ └── regress-v8-13289.js │ │ ├── resumable-loop-context.js │ │ ├── resumable.js │ │ ├── set-pending-message.js │ │ ├── shift-right-logical-smi.js │ │ ├── shift-right-logical.js │ │ ├── shift-right-smi.js │ │ ├── shift-right.js │ │ ├── simple-inlining.js │ │ ├── spill-double.js │ │ ├── sta-module-variable.mjs │ │ ├── store-oddball-to-double-elements.js │ │ ├── string-at.js │ │ ├── string-compare.js │ │ ├── string-constructor.js │ │ ├── super-ic.js │ │ ├── throw-in-cstr.js │ │ ├── tier-to-ml-to-tf.js │ │ ├── typedarray-out-of-bounds.js │ │ ├── typedarray-resizablearraybuffer.js │ │ ├── undefined-or-null-branch.js │ │ ├── unstable-map-transition.js │ │ └── unused-checkedsmitag.js │ ├── math-abs.js │ ├── math-ceil.js │ ├── math-deopt.js │ ├── math-exp-precision.js │ ├── math-floor-negative.js │ ├── math-floor-of-div-minus-zero.js │ ├── math-floor-of-div-nosudiv.js │ ├── math-floor-of-div.js │ ├── math-floor-part1.js │ ├── math-floor-part2.js │ ├── math-floor-part3.js │ ├── math-floor-part4.js │ ├── math-imul.js │ ├── math-min-max.js │ ├── math-pow.js │ ├── math-round.js │ ├── math-sqrt.js │ ├── md5.js │ ├── measure-memory-multiple-realms.js │ ├── measure-memory.js │ ├── megamorphic-callbacks.js │ ├── messages.js │ ├── migrations.js │ ├── mjsunit-assert-equals.js │ ├── mjsunit-assertion-error.js │ ├── mjsunit.js │ ├── mjsunit.status │ ├── mjsunit_numfuzz.js │ ├── mod-range.js │ ├── mod.js │ ├── modules-circular-valid.mjs │ ├── modules-cycle.mjs │ ├── modules-default-name1.mjs │ ├── modules-default-name2.mjs │ ├── modules-default-name3.mjs │ ├── modules-default-name4.mjs │ ├── modules-default-name5.mjs │ ├── modules-default-name6.mjs │ ├── modules-default-name7.mjs │ ├── modules-default-name8.mjs │ ├── modules-default-name9.mjs │ ├── modules-default.mjs │ ├── modules-empty-import1.mjs │ ├── modules-empty-import2.mjs │ ├── modules-empty-import3.mjs │ ├── modules-empty-import4.mjs │ ├── modules-error-trace.mjs │ ├── modules-export-star-as1.mjs │ ├── modules-export-star-as2.mjs │ ├── modules-export-star-as3.mjs │ ├── modules-exports1.mjs │ ├── modules-exports2.mjs │ ├── modules-exports3.mjs │ ├── modules-import-meta-turbo.mjs │ ├── modules-imports1.mjs │ ├── modules-imports2.mjs │ ├── modules-imports3.mjs │ ├── modules-imports4.mjs │ ├── modules-imports5.mjs │ ├── modules-imports6.mjs │ ├── modules-imports7.mjs │ ├── modules-imports8.mjs │ ├── modules-init1.mjs │ ├── modules-init2.mjs │ ├── modules-init3.mjs │ ├── modules-init4.mjs │ ├── modules-namespace-getownproperty1.mjs │ ├── modules-namespace-getownproperty2.mjs │ ├── modules-namespace1.mjs │ ├── modules-namespace2.mjs │ ├── modules-namespace3.mjs │ ├── modules-namespace4.mjs │ ├── modules-preparse.mjs │ ├── modules-relative-path.mjs │ ├── modules-reset.js │ ├── modules-skip-1.mjs │ ├── modules-skip-2.mjs │ ├── modules-skip-3.mjs │ ├── modules-skip-4.mjs │ ├── modules-skip-5.mjs │ ├── modules-skip-6.mjs │ ├── modules-skip-7.mjs │ ├── modules-skip-8.mjs │ ├── modules-skip-9.mjs │ ├── modules-skip-circular-valid.mjs │ ├── modules-skip-cycle.mjs │ ├── modules-skip-default-name1.mjs │ ├── modules-skip-default-name2.mjs │ ├── modules-skip-default-name3.mjs │ ├── modules-skip-default-name4.mjs │ ├── modules-skip-default-name5.mjs │ ├── modules-skip-default-name6.mjs │ ├── modules-skip-default-name7.mjs │ ├── modules-skip-default-name8.mjs │ ├── modules-skip-default-name9.mjs │ ├── modules-skip-empty-import-aux.mjs │ ├── modules-skip-empty-import.mjs │ ├── modules-skip-import-meta-export.mjs │ ├── modules-skip-init1.mjs │ ├── modules-skip-init3.mjs │ ├── modules-skip-init4a.mjs │ ├── modules-skip-init4b.mjs │ ├── modules-skip-namespace.mjs │ ├── modules-skip-reset1.js │ ├── modules-skip-reset2.js │ ├── modules-skip-reset3.js │ ├── modules-skip-star-exports-conflict.mjs │ ├── modules-skip-star-exports-cycle.mjs │ ├── modules-star-exports-cycle.mjs │ ├── modules-this.mjs │ ├── modules-turbo1.mjs │ ├── modules-turbo2.mjs │ ├── mul-exhaustive-part1.js │ ├── mul-exhaustive-part10.js │ ├── mul-exhaustive-part2.js │ ├── mul-exhaustive-part3.js │ ├── mul-exhaustive-part4.js │ ├── mul-exhaustive-part5.js │ ├── mul-exhaustive-part6.js │ ├── mul-exhaustive-part7.js │ ├── mul-exhaustive-part8.js │ ├── mul-exhaustive-part9.js │ ├── multiline.js │ ├── multiple-return.js │ ├── nans.js │ ├── negate-zero.js │ ├── negate.js │ ├── never-optimize.js │ ├── new-function.js │ ├── new.js │ ├── newline-in-string.js │ ├── no-branch-elimination.js │ ├── no-octal-constants-above-256.js │ ├── no-semicolon.js │ ├── non-ascii-replace.js │ ├── non-extensible-array-reduce.js │ ├── noopt.js │ ├── not.js │ ├── nul-characters.js │ ├── number-is.js │ ├── number-isnan-opt.js │ ├── number-limits.js │ ├── number-literal.js │ ├── number-string-index-call.js │ ├── number-tostring-add.js │ ├── number-tostring-big-integer.js │ ├── number-tostring-func.js │ ├── number-tostring-small.js │ ├── number-tostring-subnormal.js │ ├── number-tostring.js │ ├── numops-fuzz-part1.js │ ├── numops-fuzz-part2.js │ ├── numops-fuzz-part3.js │ ├── numops-fuzz-part4.js │ ├── obj-construct.js │ ├── object-create.js │ ├── object-define-properties.js │ ├── object-define-property.js │ ├── object-freeze-global.js │ ├── object-freeze.js │ ├── object-get-own-property-names.js │ ├── object-is.js │ ├── object-keys-typedarray.js │ ├── object-keys.js │ ├── object-literal-conversions.js │ ├── object-literal-gc.js │ ├── object-literal-modified-object-prototype.js │ ├── object-literal-multiple-fields.js │ ├── object-literal-multiple-proto-fields.js │ ├── object-literal-overwrite.js │ ├── object-literal.js │ ├── object-prevent-extensions.js │ ├── object-seal-global.js │ ├── object-seal.js │ ├── object-toprimitive.js │ ├── object-tostring-builtins.js │ ├── omit-constant-mapcheck.js │ ├── omit-default-ctors-array-iterator.js │ ├── omit-default-ctors.js │ ├── opt-elements-kind.js │ ├── optimized-array-every.js │ ├── optimized-array-find.js │ ├── optimized-array-findindex.js │ ├── optimized-array-some.js │ ├── optimized-filter.js │ ├── optimized-foreach-holey-2.js │ ├── optimized-foreach-holey-3.js │ ├── optimized-foreach-holey.js │ ├── optimized-foreach-polymorph.js │ ├── optimized-foreach.js │ ├── optimized-includes-polymorph.js │ ├── optimized-map.js │ ├── optimized-reduce.js │ ├── optimized-reduceright.js │ ├── optimized-string-includes.js │ ├── optimized-typeof.js │ ├── osr-elements-kind.js │ ├── outobject-double-for-in.js │ ├── override-read-only-property.js │ ├── packed-elements.js │ ├── parallel-compile-tasks.js │ ├── parse-int-float.js │ ├── parse-surrogates.js │ ├── pixel-array-rounding.js │ ├── polymorph-arrays.js │ ├── prepare-missing-label-syntax-error.js │ ├── preparse-toplevel-strict-eval.js │ ├── primitive-keyed-access.js │ ├── print.js │ ├── promise-hooks.js │ ├── promise-perform-all-resolve-lookup.js │ ├── promise-perform-all-settled-resolve-lookup.js │ ├── promise-perfrom-race-resolve-lookup.js │ ├── property-load-across-eval.js │ ├── property-name-eval-arguments.js │ ├── property-object-key.js │ ├── protector-cell │ │ ├── array-constructor-2.js │ │ ├── array-constructor.js │ │ ├── array-iterator-2.js │ │ ├── array-iterator.js │ │ ├── array-next-1.js │ │ ├── array-next-2.js │ │ ├── bigint64Array-species.js │ │ ├── biguint64Array-species.js │ │ ├── concat-spreadable.js.js │ │ ├── float32Array-species.js │ │ ├── float64Array-species.js │ │ ├── int16Array-species.js │ │ ├── int32Array-species.js │ │ ├── int8array-species.js │ │ ├── iterator.js │ │ ├── map-iterator-2.js │ │ ├── map-iterator.js │ │ ├── map-next-1.js │ │ ├── map-next-2.js │ │ ├── promise-constructor-2.js │ │ ├── promise-constructor.js │ │ ├── regexp-constructor-2.js │ │ ├── regexp-constructor.js │ │ ├── set-iterator-1.js │ │ ├── set-iterator-2.js │ │ ├── set-iterator-3.js │ │ ├── set-iterator-4.js │ │ ├── set-next-1.js │ │ ├── set-next-2.js │ │ ├── species.js │ │ ├── string-iterator.js │ │ ├── string-next-1.js │ │ ├── string-next-2.js │ │ ├── typedarray-constructor-1.js │ │ ├── typedarray-constructor-10.js │ │ ├── typedarray-constructor-2.js │ │ ├── typedarray-constructor-3.js │ │ ├── typedarray-constructor-4.js │ │ ├── typedarray-constructor-5.js │ │ ├── typedarray-constructor-6.js │ │ ├── typedarray-constructor-7.js │ │ ├── typedarray-constructor-8.js │ │ ├── typedarray-constructor-9.js │ │ ├── typedarray-prototype-constructor-1.js │ │ ├── typedarray-prototype-constructor-10.js │ │ ├── typedarray-prototype-constructor-2.js │ │ ├── typedarray-prototype-constructor-3.js │ │ ├── typedarray-prototype-constructor-4.js │ │ ├── typedarray-prototype-constructor-5.js │ │ ├── typedarray-prototype-constructor-6.js │ │ ├── typedarray-prototype-constructor-7.js │ │ ├── typedarray-prototype-constructor-8.js │ │ ├── typedarray-prototype-constructor-9.js │ │ ├── uint16Array-species.js │ │ ├── uint32Array-species.js │ │ └── uint8Array-species.js │ ├── proto-accessor-not-accessible.js │ ├── proto-accessor.js │ ├── proto-elements-add-during-foreach.js │ ├── proto.js │ ├── prototype-arity.js │ ├── prototype-changes.js │ ├── prototype-non-existing.js │ ├── prototype.js │ ├── proxy-super-return-define-property-trap.js │ ├── rab-gsab-transfer-to-worker.js │ ├── rab-gsab-valueserializer.js │ ├── random-bit-correlations.js │ ├── readonly-accessor.js │ ├── readonly.js │ ├── realm-property-access.js │ ├── receiver-in-with-calls.js │ ├── recursive-store-opt.js │ ├── regexp-UC16.js │ ├── regexp-backtrack-limit.js │ ├── regexp-cache-replace.js │ ├── regexp-call-as-function.js │ ├── regexp-capture-3.js │ ├── regexp-capture.js │ ├── regexp-captures.js │ ├── regexp-compile.js │ ├── regexp-experimental.js │ ├── regexp-fallback-large-default.js │ ├── regexp-fallback.js │ ├── regexp-global.js │ ├── regexp-indexof.js │ ├── regexp-lastIndex.js │ ├── regexp-linear-flag.js │ ├── regexp-lookahead.js │ ├── regexp-loop-capture.js │ ├── regexp-multiline.js │ ├── regexp-no-linear-flag.js │ ├── regexp-override-exec.js │ ├── regexp-override-symbol-match-all.js │ ├── regexp-override-symbol-match.js │ ├── regexp-override-symbol-replace.js │ ├── regexp-override-symbol-search.js │ ├── regexp-override-symbol-split.js │ ├── regexp-regexpexec.js │ ├── regexp-results-cache.js │ ├── regexp-sort.js │ ├── regexp-stack-overflow.js │ ├── regexp-standalones.js │ ├── regexp-static.js │ ├── regexp-string-methods.js │ ├── regexp-tier-up-multiple.js │ ├── regexp-tier-up.js │ ├── regexp.js │ ├── regress-1065094.js │ ├── regress-10782.js │ ├── regress-1120905.js │ ├── regress-1146106.js │ ├── regress-13517.js │ ├── regress-1358505.js │ ├── regress-1400809.js │ ├── regress-1417125.js │ ├── regress-1428825.js │ ├── regress-crbug-1078825.js │ ├── regress-crbug-1321980.js │ ├── regress-crbug-1359991.js │ ├── regress-crbug-1374042.js │ ├── regress-crbug-1374232.js │ ├── regress-v8-13459.js │ ├── regress │ │ ├── asm │ │ │ ├── regress-1223839.js │ │ │ ├── regress-1248677.js │ │ │ ├── regress-1252747.js │ │ │ ├── regress-13967.js │ │ │ ├── regress-1402270.js │ │ │ ├── regress-1410962.js │ │ │ ├── regress-575364.js │ │ │ ├── regress-592352.js │ │ │ ├── regress-599719.js │ │ │ ├── regress-599825.js │ │ │ ├── regress-608630.js │ │ │ ├── regress-613928.js │ │ │ ├── regress-617525.js │ │ │ ├── regress-617526.js │ │ │ ├── regress-617529.js │ │ │ ├── regress-618608.js │ │ │ ├── regress-6196.js │ │ │ ├── regress-6298.js │ │ │ ├── regress-6431.js │ │ │ ├── regress-6700.js │ │ │ ├── regress-673297.js │ │ │ ├── regress-6838-1.js │ │ │ ├── regress-6838-2.js │ │ │ ├── regress-6838-3.js │ │ │ ├── regress-6838-4.js │ │ │ ├── regress-743622.js │ │ │ ├── regress-775710.js │ │ │ ├── regress-7893.js │ │ │ ├── regress-8377.js │ │ │ ├── regress-8505.js │ │ │ ├── regress-9022.js │ │ │ ├── regress-crbug-1006592.js │ │ │ ├── regress-crbug-714971.js │ │ │ ├── regress-crbug-715455.js │ │ │ ├── regress-crbug-719384.js │ │ │ ├── regress-crbug-721835.js │ │ │ ├── regress-crbug-722348.js │ │ │ ├── regress-crbug-759327.js │ │ │ ├── regress-crbug-771428.js │ │ │ ├── regress-crbug-898974.js │ │ │ ├── regress-crbug-934138.js │ │ │ ├── regress-crbug-969368.js │ │ │ ├── regress-crbug-976934.js │ │ │ ├── regress-wasm-crbug-599413.js │ │ │ └── regress-wasm-crbug-618602.js │ │ ├── async-generator-is-awaiting.js │ │ ├── binop-in-effect-context-deopt.js │ │ ├── bitops-register-alias.js │ │ ├── call-function-in-effect-context-deopt.js │ │ ├── clear-keyed-call.js │ │ ├── compare-map-elim1.js │ │ ├── comparison-in-effect-context-deopt.js │ │ ├── consolidated-holey-load.js │ │ ├── cross-script-vars.js │ │ ├── d8-readbuffer.js │ │ ├── external-and-normal-array-polymorphism.js │ │ ├── get-array-keys-oob.js │ │ ├── internalized-string-not-equal.js │ │ ├── json-stringifier-emptyhandle.js │ │ ├── large-indices.js │ │ ├── math-min.js │ │ ├── modules-skip-regress-797581-1.js │ │ ├── modules-skip-regress-797581-2.js │ │ ├── modules-skip-regress-797581-3.js │ │ ├── modules-skip-regress-797581-4.js │ │ ├── modules-skip-regress-797581-5.js │ │ ├── nativeerror-tostring.js │ │ ├── negative_lookup.js │ │ ├── number-named-call-deopt.js │ │ ├── poly_count_operation.js │ │ ├── polymorphic-accessor-test-context.js │ │ ├── post-increment-close-context.js │ │ ├── property-descriptor-to-object.js │ │ ├── readonly1.js │ │ ├── readonly2.js │ │ ├── readonly3.js │ │ ├── readonly4.js │ │ ├── readonly5.js │ │ ├── redeclaration-error-types.js │ │ ├── regress-1000635.js │ │ ├── regress-1002827.js │ │ ├── regress-1003730.js │ │ ├── regress-1003919.js │ │ ├── regress-100409.js │ │ ├── regress-1004912.js │ │ ├── regress-1005400.js │ │ ├── regress-1006629.js │ │ ├── regress-1006640.js │ │ ├── regress-1006670.js │ │ ├── regress-100702.js │ │ ├── regress-1008414.js │ │ ├── regress-1011980.js │ │ ├── regress-10138.js │ │ ├── regress-1015.js │ │ ├── regress-1016450.js │ │ ├── regress-1016703.js │ │ ├── regress-1017.js │ │ ├── regress-1018592.js │ │ ├── regress-1018871.js │ │ ├── regress-1020.js │ │ ├── regress-1020031.js │ │ ├── regress-1021712.js │ │ ├── regress-1028191.js │ │ ├── regress-1029530.js │ │ ├── regress-1029576.js │ │ ├── regress-1030466.js │ │ ├── regress-103259.js │ │ ├── regress-1033966.js │ │ ├── regress-1034322.js │ │ ├── regress-1034449.js │ │ ├── regress-1036894.js │ │ ├── regress-1038573.js │ │ ├── regress-1038588.js │ │ ├── regress-1039610.js │ │ ├── regress-1040403.js │ │ ├── regress-1044919.js │ │ ├── regress-1049982-1.js │ │ ├── regress-1049982-2.js │ │ ├── regress-105.js │ │ ├── regress-1050043.js │ │ ├── regress-10508.js │ │ ├── regress-1060.js │ │ ├── regress-1062422.js │ │ ├── regress-1066899.js │ │ ├── regress-1067270.js │ │ ├── regress-1069964.js │ │ ├── regress-1071190.js │ │ ├── regress-1073440.js │ │ ├── regress-1075514.js │ │ ├── regress-1077804.js │ │ ├── regress-1078913.js │ │ ├── regress-1079.js │ │ ├── regress-10802.js │ │ ├── regress-108296.js │ │ ├── regress-1083.js │ │ ├── regress-1083450.js │ │ ├── regress-1084872.js │ │ ├── regress-1086470.js │ │ ├── regress-10908.js │ │ ├── regress-1091461.js │ │ ├── regress-1092.js │ │ ├── regress-1092896.js │ │ ├── regress-10931.js │ │ ├── regress-1094226.js │ │ ├── regress-1098565.js │ │ ├── regress-1099.js │ │ ├── regress-1102760.js │ │ ├── regress-1103.js │ │ ├── regress-1104.js │ │ ├── regress-110509.js │ │ ├── regress-1105746.js │ │ ├── regress-1106.js │ │ ├── regress-1107.js │ │ ├── regress-1110.js │ │ ├── regress-1110001.js │ │ ├── regress-1110164.js │ │ ├── regress-11115.js │ │ ├── regress-1112.js │ │ ├── regress-1112051.js │ │ ├── regress-1112155.js │ │ ├── regress-1114040.js │ │ ├── regress-1115354.js │ │ ├── regress-1117.js │ │ ├── regress-1118.js │ │ ├── regress-1120.js │ │ ├── regress-1121.js │ │ ├── regress-1122.js │ │ ├── regress-1123379.js │ │ ├── regress-1125.js │ │ ├── regress-1125871.js │ │ ├── regress-1126.js │ │ ├── regress-11274.js │ │ ├── regress-1129.js │ │ ├── regress-1130.js │ │ ├── regress-1131.js │ │ ├── regress-1132.js │ │ ├── regress-1132111.js │ │ ├── regress-1134697.js │ │ ├── regress-113924.js │ │ ├── regress-1139782.js │ │ ├── regress-114.js │ │ ├── regress-1141502.js │ │ ├── regress-1142158.js │ │ ├── regress-1143772.js │ │ ├── regress-1144672.js │ │ ├── regress-1145988.js │ │ ├── regress-1145990.js │ │ ├── regress-1146.js │ │ ├── regress-1146013.js │ │ ├── regress-1146880.js │ │ ├── regress-1149.js │ │ ├── regress-11491.js │ │ ├── regress-1150.js │ │ ├── regress-1151.js │ │ ├── regress-115100.js │ │ ├── regress-11519.js │ │ ├── regress-1152231.js │ │ ├── regress-115452.js │ │ ├── regress-11558.js │ │ ├── regress-1158124.js │ │ ├── regress-116.js │ │ ├── regress-1160.js │ │ ├── regress-1166.js │ │ ├── regress-1166136-0.js │ │ ├── regress-1166136-1.js │ │ ├── regress-1166136-2.js │ │ ├── regress-1166138.js │ │ ├── regress-1167.js │ │ ├── regress-1167709-1.js │ │ ├── regress-1167709-2.js │ │ ├── regress-1168435.js │ │ ├── regress-1170.js │ │ ├── regress-1170261.js │ │ ├── regress-1172-bis.js │ │ ├── regress-1172.js │ │ ├── regress-1173979.js │ │ ├── regress-1174.js │ │ ├── regress-117409.js │ │ ├── regress-1175390.js │ │ ├── regress-1176.js │ │ ├── regress-1176318.js │ │ ├── regress-1176504.js │ │ ├── regress-1177518.js │ │ ├── regress-1177809.js │ │ ├── regress-117794.js │ │ ├── regress-1178598.js │ │ ├── regress-1180012.js │ │ ├── regress-1181.js │ │ ├── regress-11810.js │ │ ├── regress-1181240.js │ │ ├── regress-1181246.js │ │ ├── regress-1184.js │ │ ├── regress-1185072.js │ │ ├── regress-1187170.js │ │ ├── regress-1187524.js │ │ ├── regress-1189077.js │ │ ├── regress-1193903.js │ │ ├── regress-119429.js │ │ ├── regress-1194869.js │ │ ├── regress-119925.js │ │ ├── regress-1199401.js │ │ ├── regress-1199637.js │ │ ├── regress-1200351.js │ │ ├── regress-120099.js │ │ ├── regress-1203459.js │ │ ├── regress-1204748.js │ │ ├── regress-1205290.js │ │ ├── regress-1207.js │ │ ├── regress-1207679.js │ │ ├── regress-1208782.js │ │ ├── regress-1208805.js │ │ ├── regress-1209.js │ │ ├── regress-1209444.js │ │ ├── regress-1210.js │ │ ├── regress-1212244.js │ │ ├── regress-1212404.js │ │ ├── regress-1212583.js │ │ ├── regress-1213.js │ │ ├── regress-1213516.js │ │ ├── regress-121407.js │ │ ├── regress-1215.js │ │ ├── regress-1215653.js │ │ ├── regress-1218.js │ │ ├── regress-1220974.js │ │ ├── regress-1221035.js │ │ ├── regress-1225300.js │ │ ├── regress-12256.js │ │ ├── regress-1227568.js │ │ ├── regress-1230597.js │ │ ├── regress-1230930.js │ │ ├── regress-1231901.js │ │ ├── regress-1232620.js │ │ ├── regress-1233.js │ │ ├── regress-1235071.js │ │ ├── regress-123512.js │ │ ├── regress-12359.js │ │ ├── regress-1236.js │ │ ├── regress-1236303.js │ │ ├── regress-1236307.js │ │ ├── regress-1236560.js │ │ ├── regress-1237.js │ │ ├── regress-1238033.js │ │ ├── regress-123919.js │ │ ├── regress-124.js │ │ ├── regress-1240.js │ │ ├── regress-1242306.js │ │ ├── regress-1243989.js │ │ ├── regress-124594.js │ │ ├── regress-12495.js │ │ ├── regress-1254191.js │ │ ├── regress-1254366.js │ │ ├── regress-125515.js │ │ ├── regress-1255368.js │ │ ├── regress-1257.js │ │ ├── regress-12580.js │ │ ├── regress-1262423.js │ │ ├── regress-1262478.js │ │ ├── regress-1263327.js │ │ ├── regress-126412.js │ │ ├── regress-1264508.js │ │ ├── regress-12657.js │ │ ├── regress-1267674.js │ │ ├── regress-1273677.js │ │ ├── regress-1275096.js │ │ ├── regress-1278.js │ │ ├── regress-128018.js │ │ ├── regress-128146.js │ │ ├── regress-1309.js │ │ ├── regress-1309769.js │ │ ├── regress-1312022.js │ │ ├── regress-1312310.js │ │ ├── regress-1313419.js │ │ ├── regress-1313475.js │ │ ├── regress-131923.js │ │ ├── regress-1320094.js │ │ ├── regress-1320641.js │ │ ├── regress-1323.js │ │ ├── regress-1323602.js │ │ ├── regress-1327557.js │ │ ├── regress-133211.js │ │ ├── regress-133211b.js │ │ ├── regress-1337.js │ │ ├── regress-1346700.js │ │ ├── regress-1351.js │ │ ├── regress-1353555.js │ │ ├── regress-1355.js │ │ ├── regress-1359230.js │ │ ├── regress-1360.js │ │ ├── regress-136048.js │ │ ├── regress-1364319.js │ │ ├── regress-1364400.js │ │ ├── regress-1364429.js │ │ ├── regress-1365.js │ │ ├── regress-13652.js │ │ ├── regress-1369.js │ │ ├── regress-137.js │ │ ├── regress-1370398.js │ │ ├── regress-1371935.js │ │ ├── regress-1376663.js │ │ ├── regress-1376784.js │ │ ├── regress-1376930.js │ │ ├── regress-137768.js │ │ ├── regress-1378439.js │ │ ├── regress-1379738.js │ │ ├── regress-1380337.js │ │ ├── regress-1380398.js │ │ ├── regress-1383.js │ │ ├── regress-1383362.js │ │ ├── regress-1385368.js │ │ ├── regress-1387.js │ │ ├── regress-1389.js │ │ ├── regress-1393865.js │ │ ├── regress-1393942.js │ │ ├── regress-1394663.js │ │ ├── regress-1400053.js │ │ ├── regress-1400056.js │ │ ├── regress-1400897.js │ │ ├── regress-1401.js │ │ ├── regress-1403.js │ │ ├── regress-1403742.js │ │ ├── regress-1404607.js │ │ ├── regress-1404863.js │ │ ├── regress-1407070.js │ │ ├── regress-1407349.js │ │ ├── regress-1408086.js │ │ ├── regress-1408400.js │ │ ├── regress-1408606.js │ │ ├── regress-1409058.js │ │ ├── regress-1412.js │ │ ├── regress-1412629.js │ │ ├── regress-1412975.js │ │ ├── regress-1414200.js │ │ ├── regress-1414376.js │ │ ├── regress-1414659.js │ │ ├── regress-1415.js │ │ ├── regress-1415210.js │ │ ├── regress-1416520.js │ │ ├── regress-1416697.js │ │ ├── regress-1416830.js │ │ ├── regress-1418509.js │ │ ├── regress-1418571.js │ │ ├── regress-1419.js │ │ ├── regress-1419636.js │ │ ├── regress-1419740.js │ │ ├── regress-1420536.js │ │ ├── regress-1421373.js │ │ ├── regress-1421560.js │ │ ├── regress-1421685.js │ │ ├── regress-1422166.js │ │ ├── regress-1423.js │ │ ├── regress-1423703.js │ │ ├── regress-1425616.js │ │ ├── regress-1428034.js │ │ ├── regress-1429141.js │ │ ├── regress-1429749.js │ │ ├── regress-1430326.js │ │ ├── regress-1431029.js │ │ ├── regress-1431713.js │ │ ├── regress-1432470.js │ │ ├── regress-1434.js │ │ ├── regress-1436.js │ │ ├── regress-1439135.js │ │ ├── regress-143967.js │ │ ├── regress-1441346.js │ │ ├── regress-1442603.js │ │ ├── regress-1444019.js │ │ ├── regress-1445419.js │ │ ├── regress-1446624.js │ │ ├── regress-1447.js │ │ ├── regress-1447326.js │ │ ├── regress-1447343.js │ │ ├── regress-1447383.js │ │ ├── regress-1448716.js │ │ ├── regress-1449567.js │ │ ├── regress-1451704.js │ │ ├── regress-145201.js │ │ ├── regress-1452254.js │ │ ├── regress-1453973.js │ │ ├── regress-1454436.js │ │ ├── regress-1472.js │ │ ├── regress-1476.js │ │ ├── regress-148378.js │ │ ├── regress-149.js │ │ ├── regress-1491.js │ │ ├── regress-1493017.js │ │ ├── regress-1513.js │ │ ├── regress-1521.js │ │ ├── regress-1528.js │ │ ├── regress-1529.js │ │ ├── regress-1530.js │ │ ├── regress-1531.js │ │ ├── regress-1546.js │ │ ├── regress-1548.js │ │ ├── regress-155924.js │ │ ├── regress-1560.js │ │ ├── regress-1563.js │ │ ├── regress-1582.js │ │ ├── regress-1583.js │ │ ├── regress-1591.js │ │ ├── regress-1592.js │ │ ├── regress-1620.js │ │ ├── regress-1624-strict.js │ │ ├── regress-1624.js │ │ ├── regress-1625.js │ │ ├── regress-164442.js │ │ ├── regress-1647.js │ │ ├── regress-1650.js │ │ ├── regress-165637.js │ │ ├── regress-166379.js │ │ ├── regress-166553.js │ │ ├── regress-1692.js │ │ ├── regress-1708.js │ │ ├── regress-171.js │ │ ├── regress-1711.js │ │ ├── regress-171641.js │ │ ├── regress-1748.js │ │ ├── regress-1757.js │ │ ├── regress-176.js │ │ ├── regress-1790.js │ │ ├── regress-1849.js │ │ ├── regress-186.js │ │ ├── regress-187.js │ │ ├── regress-189.js │ │ ├── regress-1898.js │ │ ├── regress-191.js │ │ ├── regress-1919169.js │ │ ├── regress-192.js │ │ ├── regress-1924.js │ │ ├── regress-193.js │ │ ├── regress-1973.js │ │ ├── regress-1980.js │ │ ├── regress-20070207.js │ │ ├── regress-201.js │ │ ├── regress-201590.js │ │ ├── regress-2027.js │ │ ├── regress-2030.js │ │ ├── regress-2032.js │ │ ├── regress-2045.js │ │ ├── regress-2054.js │ │ ├── regress-2055.js │ │ ├── regress-2056.js │ │ ├── regress-2058.js │ │ ├── regress-2071.js │ │ ├── regress-2073.js │ │ ├── regress-2110.js │ │ ├── regress-2119.js │ │ ├── regress-2132.js │ │ ├── regress-2153.js │ │ ├── regress-2163.js │ │ ├── regress-2170.js │ │ ├── regress-2172.js │ │ ├── regress-219.js │ │ ├── regress-2193.js │ │ ├── regress-2226.js │ │ ├── regress-2234.js │ │ ├── regress-2249.js │ │ ├── regress-2249423.js │ │ ├── regress-225.js │ │ ├── regress-2250.js │ │ ├── regress-2261.js │ │ ├── regress-2263.js │ │ ├── regress-227.js │ │ ├── regress-2273.js │ │ ├── regress-2284.js │ │ ├── regress-2286.js │ │ ├── regress-2289.js │ │ ├── regress-2291.js │ │ ├── regress-2294.js │ │ ├── regress-231.js │ │ ├── regress-2315.js │ │ ├── regress-2326.js │ │ ├── regress-233.js │ │ ├── regress-2339.js │ │ ├── regress-234101.js │ │ ├── regress-2346.js │ │ ├── regress-235311.js │ │ ├── regress-2373.js │ │ ├── regress-2374.js │ │ ├── regress-237617.js │ │ ├── regress-2398.js │ │ ├── regress-2410.js │ │ ├── regress-241344.js │ │ ├── regress-2416.js │ │ ├── regress-2419.js │ │ ├── regress-2433.js │ │ ├── regress-2435.js │ │ ├── regress-2437.js │ │ ├── regress-2438.js │ │ ├── regress-244.js │ │ ├── regress-2441.js │ │ ├── regress-2443.js │ │ ├── regress-2444.js │ │ ├── regress-2451.js │ │ ├── regress-246.js │ │ ├── regress-2470.js │ │ ├── regress-247688.js │ │ ├── regress-2489.js │ │ ├── regress-2499.js │ │ ├── regress-252797.js │ │ ├── regress-2529.js │ │ ├── regress-253.js │ │ ├── regress-2537.js │ │ ├── regress-2539.js │ │ ├── regress-254.js │ │ ├── regress-2564.js │ │ ├── regress-2565.js │ │ ├── regress-2566.js │ │ ├── regress-2568.js │ │ ├── regress-2570.js │ │ ├── regress-259.js │ │ ├── regress-2593.js │ │ ├── regress-2594.js │ │ ├── regress-2595.js │ │ ├── regress-2596.js │ │ ├── regress-260.js │ │ ├── regress-2606.js │ │ ├── regress-2612.js │ │ ├── regress-2615.js │ │ ├── regress-2618.js │ │ ├── regress-2624.js │ │ ├── regress-263.js │ │ ├── regress-264203.js │ │ ├── regress-2646.js │ │ ├── regress-265.js │ │ ├── regress-267.js │ │ ├── regress-2671-1.js │ │ ├── regress-2671.js │ │ ├── regress-2686.js │ │ ├── regress-2690.js │ │ ├── regress-270142.js │ │ ├── regress-2711.js │ │ ├── regress-2717.js │ │ ├── regress-2758.js │ │ ├── regress-279.js │ │ ├── regress-2790.js │ │ ├── regress-280531.js │ │ ├── regress-2813.js │ │ ├── regress-2836.js │ │ ├── regress-284.js │ │ ├── regress-2843.js │ │ ├── regress-2855.js │ │ ├── regress-286.js │ │ ├── regress-2931.js │ │ ├── regress-294.js │ │ ├── regress-2980.js │ │ ├── regress-298269.js │ │ ├── regress-2984.js │ │ ├── regress-2987.js │ │ ├── regress-2989.js │ │ ├── regress-299979.js │ │ ├── regress-3006390.js │ │ ├── regress-3010.js │ │ ├── regress-3025.js │ │ ├── regress-3026.js │ │ ├── regress-3027.js │ │ ├── regress-3029.js │ │ ├── regress-3032.js │ │ ├── regress-3039.js │ │ ├── regress-3116.js │ │ ├── regress-312.js │ │ ├── regress-3135.js │ │ ├── regress-3138.js │ │ ├── regress-3158.js │ │ ├── regress-3159.js │ │ ├── regress-317.js │ │ ├── regress-3176.js │ │ ├── regress-318.js │ │ ├── regress-3183.js │ │ ├── regress-318420.js │ │ ├── regress-3185905.js │ │ ├── regress-319722-ArrayBuffer.js │ │ ├── regress-319722-TypedArrays.js │ │ ├── regress-3199913.js │ │ ├── regress-3204.js │ │ ├── regress-320532.js │ │ ├── regress-3218530.js │ │ ├── regress-3218915.js │ │ ├── regress-3220.js │ │ ├── regress-3229.js │ │ ├── regress-3230771.js │ │ ├── regress-323845.js │ │ ├── regress-324028.js │ │ ├── regress-3247124.js │ │ ├── regress-3252443.js │ │ ├── regress-3255.js │ │ ├── regress-326.js │ │ ├── regress-3294.js │ │ ├── regress-330046.js │ │ ├── regress-3307.js │ │ ├── regress-331416.js │ │ ├── regress-3334.js │ │ ├── regress-333594.js │ │ ├── regress-334.js │ │ ├── regress-334708.js │ │ ├── regress-3359.js │ │ ├── regress-336820.js │ │ ├── regress-3380.js │ │ ├── regress-3392.js │ │ ├── regress-340125.js │ │ ├── regress-3404.js │ │ ├── regress-3408144.js │ │ ├── regress-341.js │ │ ├── regress-343609.js │ │ ├── regress-345.js │ │ ├── regress-3456.js │ │ ├── regress-3462.js │ │ ├── regress-346343.js │ │ ├── regress-346587.js │ │ ├── regress-347262.js │ │ ├── regress-347530.js │ │ ├── regress-347543.js │ │ ├── regress-3476.js │ │ ├── regress-347904.js │ │ ├── regress-347909.js │ │ ├── regress-347912.js │ │ ├── regress-347914.js │ │ ├── regress-348280.js │ │ ├── regress-3483.js │ │ ├── regress-348512.js │ │ ├── regress-349.js │ │ ├── regress-349885.js │ │ ├── regress-35.js │ │ ├── regress-350863.js │ │ ├── regress-350865.js │ │ ├── regress-350884.js │ │ ├── regress-350887.js │ │ ├── regress-351.js │ │ ├── regress-351261.js │ │ ├── regress-351263.js │ │ ├── regress-351319.js │ │ ├── regress-351624.js │ │ ├── regress-352059.js │ │ ├── regress-352982.js │ │ ├── regress-353004.js │ │ ├── regress-353058.js │ │ ├── regress-353551.js │ │ ├── regress-354357.js │ │ ├── regress-354433.js │ │ ├── regress-355485.js │ │ ├── regress-355486.js │ │ ├── regress-355523.js │ │ ├── regress-3564.js │ │ ├── regress-357054.js │ │ ├── regress-357103.js │ │ ├── regress-357105.js │ │ ├── regress-357108.js │ │ ├── regress-358057.js │ │ ├── regress-358059.js │ │ ├── regress-358088.js │ │ ├── regress-358090.js │ │ ├── regress-359441.js │ │ ├── regress-359491.js │ │ ├── regress-359525.js │ │ ├── regress-360733.js │ │ ├── regress-361025.js │ │ ├── regress-3612.js │ │ ├── regress-361608.js │ │ ├── regress-3621.js │ │ ├── regress-362128.js │ │ ├── regress-362870.js │ │ ├── regress-363956.js │ │ ├── regress-3641.js │ │ ├── regress-3643.js │ │ ├── regress-3650-1.js │ │ ├── regress-3650-2.js │ │ ├── regress-3650-3.js │ │ ├── regress-365172-1.js │ │ ├── regress-365172-2.js │ │ ├── regress-365172-3.js │ │ ├── regress-368243.js │ │ ├── regress-3687.js │ │ ├── regress-369450.js │ │ ├── regress-370384.js │ │ ├── regress-370827.js │ │ ├── regress-3709.js │ │ ├── regress-3718.js │ │ ├── regress-3756.js │ │ ├── regress-377290.js │ │ ├── regress-379770.js │ │ ├── regress-380092.js │ │ ├── regress-381313.js │ │ ├── regress-385054.js │ │ ├── regress-385565.js │ │ ├── regress-3859.js │ │ ├── regress-386.js │ │ ├── regress-386034.js │ │ ├── regress-3865.js │ │ ├── regress-3884.js │ │ ├── regress-392.js │ │ ├── regress-3926.js │ │ ├── regress-394.js │ │ ├── regress-396.js │ │ ├── regress-3969.js │ │ ├── regress-397.js │ │ ├── regress-3976.js │ │ ├── regress-3985.js │ │ ├── regress-399.js │ │ ├── regress-4023.js │ │ ├── regress-4027.js │ │ ├── regress-404981.js │ │ ├── regress-406.js │ │ ├── regress-410030.js │ │ ├── regress-410912.js │ │ ├── regress-411210.js │ │ ├── regress-4121.js │ │ ├── regress-412162.js │ │ ├── regress-416.js │ │ ├── regress-416416.js │ │ ├── regress-416730.js │ │ ├── regress-4169.js │ │ ├── regress-4173.js │ │ ├── regress-4214.js │ │ ├── regress-423633.js │ │ ├── regress-4255-1.js │ │ ├── regress-4255-2.js │ │ ├── regress-4255-3.js │ │ ├── regress-4255-4.js │ │ ├── regress-425551.js │ │ ├── regress-4266.js │ │ ├── regress-4267.js │ │ ├── regress-4271.js │ │ ├── regress-4279.js │ │ ├── regress-4296.js │ │ ├── regress-430201.js │ │ ├── regress-430201b.js │ │ ├── regress-4325.js │ │ ├── regress-435073.js │ │ ├── regress-435477.js │ │ ├── regress-436893.js │ │ ├── regress-4374.js │ │ ├── regress-4376-1.js │ │ ├── regress-4376-2.js │ │ ├── regress-4376-3.js │ │ ├── regress-4377.js │ │ ├── regress-437713.js │ │ ├── regress-437765.js │ │ ├── regress-4380.js │ │ ├── regress-4388.js │ │ ├── regress-4399-01.js │ │ ├── regress-4399-02.js │ │ ├── regress-441099.js │ │ ├── regress-444805.js │ │ ├── regress-444805.js-script │ │ ├── regress-4450.js │ │ ├── regress-446389.js │ │ ├── regress-447526.js │ │ ├── regress-447561.js │ │ ├── regress-447756.js │ │ ├── regress-448711.js │ │ ├── regress-449291.js │ │ ├── regress-4493-1.js │ │ ├── regress-4495.js │ │ ├── regress-4507.js │ │ ├── regress-450895.js │ │ ├── regress-4509-Class-constructor-typeerror-realm.js │ │ ├── regress-451322.js │ │ ├── regress-4515.js │ │ ├── regress-451958.js │ │ ├── regress-4521.js │ │ ├── regress-4525.js │ │ ├── regress-4534.js │ │ ├── regress-453481.js │ │ ├── regress-45469.js │ │ ├── regress-455207.js │ │ ├── regress-455212.js │ │ ├── regress-4577.js │ │ ├── regress-4578-deopt.js │ │ ├── regress-4578.js │ │ ├── regress-457935.js │ │ ├── regress-458876.js │ │ ├── regress-458987.js │ │ ├── regress-4595.js │ │ ├── regress-459955.js │ │ ├── regress-460917.js │ │ ├── regress-463028.js │ │ ├── regress-4640.js │ │ ├── regress-4654.js │ │ ├── regress-4659.js │ │ ├── regress-4665.js │ │ ├── regress-466993.js │ │ ├── regress-467481.js │ │ ├── regress-4693.js │ │ ├── regress-469605.js │ │ ├── regress-469605b.js │ │ ├── regress-470804.js │ │ ├── regress-4715.js │ │ ├── regress-472504.js │ │ ├── regress-475.js │ │ ├── regress-475705.js │ │ ├── regress-476488.js │ │ ├── regress-4769.js │ │ ├── regress-4788-1.js │ │ ├── regress-4788-2.js │ │ ├── regress-479528.js │ │ ├── regress-4800.js │ │ ├── regress-4815.js │ │ ├── regress-4825.js │ │ ├── regress-483.js │ │ ├── regress-484544.js │ │ ├── regress-485.js │ │ ├── regress-486.js │ │ ├── regress-4870.js │ │ ├── regress-487981.js │ │ ├── regress-488398.js │ │ ├── regress-489151.js │ │ ├── regress-490.js │ │ ├── regress-4908.js │ │ ├── regress-491.js │ │ ├── regress-492.js │ │ ├── regress-4945.js │ │ ├── regress-496.js │ │ ├── regress-4962.js │ │ ├── regress-4964.js │ │ ├── regress-4967.js │ │ ├── regress-4970.js │ │ ├── regress-4971.js │ │ ├── regress-499790.js │ │ ├── regress-500173.js │ │ ├── regress-500176.js │ │ ├── regress-5004.js │ │ ├── regress-5006.js │ │ ├── regress-500831.js │ │ ├── regress-500980.js │ │ ├── regress-5018.js │ │ ├── regress-502.js │ │ ├── regress-503.js │ │ ├── regress-5033.js │ │ ├── regress-503565.js │ │ ├── regress-5036.js │ │ ├── regress-507980.js │ │ ├── regress-5085.js │ │ ├── regress-509961.js │ │ ├── regress-5106.js │ │ ├── regress-515.js │ │ ├── regress-5173.js │ │ ├── regress-5174.js │ │ ├── regress-5178.js │ │ ├── regress-5181.js │ │ ├── regress-5199.js │ │ ├── regress-520029.js │ │ ├── regress-5205.js │ │ ├── regress-5213.js │ │ ├── regress-5214.js │ │ ├── regress-5216.js │ │ ├── regress-524.js │ │ ├── regress-5245.js │ │ ├── regress-5252.js │ │ ├── regress-526.js │ │ ├── regress-5262.js │ │ ├── regress-5275-1.js │ │ ├── regress-5275-2.js │ │ ├── regress-52801.js │ │ ├── regress-5286.js │ │ ├── regress-5295-2.js │ │ ├── regress-5295.js │ │ ├── regress-5332.js │ │ ├── regress-5342.js │ │ ├── regress-5351.js │ │ ├── regress-5357.js │ │ ├── regress-539875.js │ │ ├── regress-540.js │ │ ├── regress-5404.js │ │ ├── regress-5405.js │ │ ├── regress-542823.js │ │ ├── regress-5434.js │ │ ├── regress-543994.js │ │ ├── regress-5440.js │ │ ├── regress-544991.js │ │ ├── regress-545.js │ │ ├── regress-5454.js │ │ ├── regress-5476.js │ │ ├── regress-552302.js │ │ ├── regress-554865.js │ │ ├── regress-556543.js │ │ ├── regress-5566.js │ │ ├── regress-5636-1.js │ │ ├── regress-5636-2.js │ │ ├── regress-5638.js │ │ ├── regress-5638b.js │ │ ├── regress-5648.js │ │ ├── regress-5660.js │ │ ├── regress-5664.js │ │ ├── regress-5669.js │ │ ├── regress-5691.js │ │ ├── regress-5692.js │ │ ├── regress-57.js │ │ ├── regress-572589.js │ │ ├── regress-5736.js │ │ ├── regress-5749.js │ │ ├── regress-5763-1.js │ │ ├── regress-5763-2.js │ │ ├── regress-5772.js │ │ ├── regress-5780.js │ │ ├── regress-5783.js │ │ ├── regress-578775.js │ │ ├── regress-5790.js │ │ ├── regress-580.js │ │ ├── regress-5802.js │ │ ├── regress-581.js │ │ ├── regress-583260.js │ │ ├── regress-5836.js │ │ ├── regress-5845.js │ │ ├── regress-585041.js │ │ ├── regress-585775.js │ │ ├── regress-587004.js │ │ ├── regress-58740.js │ │ ├── regress-588599.js │ │ ├── regress-590074.js │ │ ├── regress-5902.js │ │ ├── regress-592341.js │ │ ├── regress-592353.js │ │ ├── regress-5927.js │ │ ├── regress-593299.js │ │ ├── regress-5938.js │ │ ├── regress-5943.js │ │ ├── regress-595319.js │ │ ├── regress-596718.js │ │ ├── regress-5972.js │ │ ├── regress-5974.js │ │ ├── regress-599068-func-bindings.js │ │ ├── regress-599089-array-push.js │ │ ├── regress-599412.js │ │ ├── regress-599414-array-concat-fast-path.js │ │ ├── regress-599710.js │ │ ├── regress-6-9-regexp.js │ │ ├── regress-602970.js │ │ ├── regress-603.js │ │ ├── regress-604044.js │ │ ├── regress-605470.js │ │ ├── regress-606021.js │ │ ├── regress-6063.js │ │ ├── regress-6082.js │ │ ├── regress-610633.js │ │ ├── regress-612.js │ │ ├── regress-6121.js │ │ ├── regress-612146.js │ │ ├── regress-612412.js │ │ ├── regress-6142.js │ │ ├── regress-615776.js │ │ ├── regress-616386.js │ │ ├── regress-618.js │ │ ├── regress-6186.js │ │ ├── regress-618657.js │ │ ├── regress-619.js │ │ ├── regress-619382.js │ │ ├── regress-6203.js │ │ ├── regress-620553.js │ │ ├── regress-620750.js │ │ ├── regress-6209.js │ │ ├── regress-6210.js │ │ ├── regress-621869.js │ │ ├── regress-6223.js │ │ ├── regress-622663.js │ │ ├── regress-6248.js │ │ ├── regress-625121.js │ │ ├── regress-6280.js │ │ ├── regress-6288.js │ │ ├── regress-631050.js │ │ ├── regress-632289.js │ │ ├── regress-6337.js │ │ ├── regress-633998.js │ │ ├── regress-634-debug.js │ │ ├── regress-635429.js │ │ ├── regress-636.js │ │ ├── regress-6373.js │ │ ├── regress-638134.js │ │ ├── regress-639270.js │ │ ├── regress-641091.js │ │ ├── regress-642409.js │ │ ├── regress-643.js │ │ ├── regress-645680.js │ │ ├── regress-646.js │ │ ├── regress-648373-sloppy-arguments-includesValues.js │ │ ├── regress-648719.js │ │ ├── regress-649067.js │ │ ├── regress-649078.js │ │ ├── regress-6509.js │ │ ├── regress-651327.js │ │ ├── regress-653407.js │ │ ├── regress-655573.js │ │ ├── regress-6607-1.js │ │ ├── regress-6607-2.js │ │ ├── regress-662254.js │ │ ├── regress-662845.js │ │ ├── regress-662904.js │ │ ├── regress-664087.js │ │ ├── regress-6657.js │ │ ├── regress-666046.js │ │ ├── regress-666721.js │ │ ├── regress-667061.js │ │ ├── regress-667603.js │ │ ├── regress-6677.js │ │ ├── regress-6681.mjs │ │ ├── regress-669024.js │ │ ├── regress-670147.js │ │ ├── regress-6703.js │ │ ├── regress-670671.js │ │ ├── regress-6707.js │ │ ├── regress-6708.js │ │ ├── regress-670808.js │ │ ├── regress-670981-array-push.js │ │ ├── regress-6711.js │ │ ├── regress-672041.js │ │ ├── regress-673242.js │ │ ├── regress-6733.js │ │ ├── regress-674232.js │ │ ├── regress-674753.js │ │ ├── regress-675.js │ │ ├── regress-676025.js │ │ ├── regress-677055.js │ │ ├── regress-677685.js │ │ ├── regress-678525.js │ │ ├── regress-678917.js │ │ ├── regress-679727.js │ │ ├── regress-681.js │ │ ├── regress-681171-1.js │ │ ├── regress-681171-2.js │ │ ├── regress-681171-3.js │ │ ├── regress-681383.js │ │ ├── regress-681984.js │ │ ├── regress-682242.js │ │ ├── regress-682349.js │ │ ├── regress-682649.js │ │ ├── regress-683617.js │ │ ├── regress-685086.js │ │ ├── regress-687.js │ │ ├── regress-688690.js │ │ ├── regress-689016.js │ │ ├── regress-69.js │ │ ├── regress-6907.js │ │ ├── regress-693500.js │ │ ├── regress-6941.js │ │ ├── regress-6948.js │ │ ├── regress-696.js │ │ ├── regress-696251.js │ │ ├── regress-696332.js │ │ ├── regress-696651.js │ │ ├── regress-697.js │ │ ├── regress-6970.js │ │ ├── regress-698790.js │ │ ├── regress-6989.js │ │ ├── regress-6991.js │ │ ├── regress-70066.js │ │ ├── regress-7014-1.js │ │ ├── regress-7014-2.js │ │ ├── regress-7026.js │ │ ├── regress-704811.js │ │ ├── regress-705934.js │ │ ├── regress-706234-2.js │ │ ├── regress-706234.js │ │ ├── regress-707066.js │ │ ├── regress-707187.js │ │ ├── regress-707410.js │ │ ├── regress-707675.js │ │ ├── regress-708247.js │ │ ├── regress-708598.js │ │ ├── regress-709029.js │ │ ├── regress-709782.js │ │ ├── regress-711165.js │ │ ├── regress-7115.js │ │ ├── regress-712.js │ │ ├── regress-7135.js │ │ ├── regress-715582.js │ │ ├── regress-716044.js │ │ ├── regress-71647.js │ │ ├── regress-718285.js │ │ ├── regress-718891.js │ │ ├── regress-719380.js │ │ ├── regress-720.js │ │ ├── regress-720247.js │ │ ├── regress-722978.js │ │ ├── regress-723366.js │ │ ├── regress-7254.js │ │ ├── regress-725858.js │ │ ├── regress-726625.js │ │ ├── regress-726636.js │ │ ├── regress-727218.js │ │ ├── regress-727662.js │ │ ├── regress-728.js │ │ ├── regress-729671.js │ │ ├── regress-730254.js │ │ ├── regress-732.js │ │ ├── regress-732836.js │ │ ├── regress-733059.js │ │ ├── regress-734862.js │ │ ├── regress-7369.js │ │ ├── regress-737588.js │ │ ├── regress-74.js │ │ ├── regress-740694.js │ │ ├── regress-740784.js │ │ ├── regress-744292.js │ │ ├── regress-746909.js │ │ ├── regress-747.js │ │ ├── regress-747075.js │ │ ├── regress-747825.js │ │ ├── regress-748069.js │ │ ├── regress-7510.js │ │ ├── regress-751789.js │ │ ├── regress-752.js │ │ ├── regress-753.js │ │ ├── regress-754.js │ │ ├── regress-756608.js │ │ ├── regress-758763.js │ │ ├── regress-760-1.js │ │ ├── regress-760-2.js │ │ ├── regress-760268.js │ │ ├── regress-760790.js │ │ ├── regress-761639.js │ │ ├── regress-761831.js │ │ ├── regress-7642.js │ │ ├── regress-7652.js │ │ ├── regress-7677.js │ │ ├── regress-7716.js │ │ ├── regress-772190.js │ │ ├── regress-7740.js │ │ ├── regress-774475.js │ │ ├── regress-774824.js │ │ ├── regress-775888.js │ │ ├── regress-776309.js │ │ ├── regress-776338.js │ │ ├── regress-7773.js │ │ ├── regress-778574.js │ │ ├── regress-778668.js │ │ ├── regress-7791.js │ │ ├── regress-779407.js │ │ ├── regress-780423.js │ │ ├── regress-781218.js │ │ ├── regress-782145.js │ │ ├── regress-78270.js │ │ ├── regress-782754.js │ │ ├── regress-783051.js │ │ ├── regress-783119.js │ │ ├── regress-784.js │ │ ├── regress-784080.js │ │ ├── regress-784862.js │ │ ├── regress-784863.js │ │ ├── regress-784990.js │ │ ├── regress-785804.js │ │ ├── regress-786573.js │ │ ├── regress-786784.js │ │ ├── regress-791334.mjs │ │ ├── regress-791345.js │ │ ├── regress-791958.js │ │ ├── regress-793588.js │ │ ├── regress-793793.js │ │ ├── regress-794.js │ │ ├── regress-794822.js │ │ ├── regress-794825.js │ │ ├── regress-796427.js │ │ ├── regress-797481.js │ │ ├── regress-797581.js │ │ ├── regress-798.js │ │ ├── regress-799690.js │ │ ├── regress-799813.js │ │ ├── regress-800538.js │ │ ├── regress-800651.js │ │ ├── regress-801171.js │ │ ├── regress-801772.js │ │ ├── regress-802060.js │ │ ├── regress-8033.js │ │ ├── regress-803750.js │ │ ├── regress-804096.js │ │ ├── regress-804176.js │ │ ├── regress-804177.js │ │ ├── regress-804188.js │ │ ├── regress-804288.js │ │ ├── regress-804801.js │ │ ├── regress-804837.js │ │ ├── regress-805729.js │ │ ├── regress-805768.js │ │ ├── regress-806.js │ │ ├── regress-806473.js │ │ ├── regress-812451.js │ │ ├── regress-8133-1.js │ │ ├── regress-8133-2.js │ │ ├── regress-814643.js │ │ ├── regress-815.js │ │ ├── regress-816289.js │ │ ├── regress-816317.js │ │ ├── regress-818070.js │ │ ├── regress-818438.js │ │ ├── regress-821137.js │ │ ├── regress-821368.js │ │ ├── regress-8241.js │ │ ├── regress-8265.js │ │ ├── regress-82769.js │ │ ├── regress-8384.js │ │ ├── regress-838766.js │ │ ├── regress-842.js │ │ ├── regress-842017.js │ │ ├── regress-842078.js │ │ ├── regress-84234.js │ │ ├── regress-842612.js │ │ ├── regress-843062-1.js │ │ ├── regress-843062-2.js │ │ ├── regress-843062-3.js │ │ ├── regress-843543.js │ │ ├── regress-8449.js │ │ ├── regress-849663.js │ │ ├── regress-851.js │ │ ├── regress-8510-2.js │ │ ├── regress-8510.js │ │ ├── regress-852258.js │ │ ├── regress-852765.js │ │ ├── regress-854066-2.js │ │ ├── regress-854066.js │ │ ├── regress-857.js │ │ ├── regress-86.js │ │ ├── regress-8607.js │ │ ├── regress-862433.js │ │ ├── regress-8630.js │ │ ├── regress-863155.js │ │ ├── regress-865310.js │ │ ├── regress-8659.js │ │ ├── regress-869735.js │ │ ├── regress-87.js │ │ ├── regress-8708.js │ │ ├── regress-874.js │ │ ├── regress-874178.js │ │ ├── regress-875031.js │ │ ├── regress-875493.js │ │ ├── regress-877615.js │ │ ├── regress-883059.js │ │ ├── regress-88591.js │ │ ├── regress-88858.js │ │ ├── regress-889722.js │ │ ├── regress-890553.js │ │ ├── regress-8913.js │ │ ├── regress-892742.js │ │ ├── regress-892858.js │ │ ├── regress-895691.js │ │ ├── regress-896326.js │ │ ├── regress-897366.js │ │ ├── regress-897512.js │ │ ├── regress-897815.js │ │ ├── regress-898812.js │ │ ├── regress-898936.js │ │ ├── regress-899115.js │ │ ├── regress-899133.js │ │ ├── regress-899474.js │ │ ├── regress-899537.js │ │ ├── regress-900.js │ │ ├── regress-900055.js │ │ ├── regress-900085.js │ │ ├── regress-9002.js │ │ ├── regress-900585.js │ │ ├── regress-900786.js │ │ ├── regress-900966.js │ │ ├── regress-901633.js │ │ ├── regress-9017.js │ │ ├── regress-901798.js │ │ ├── regress-902552.js │ │ ├── regress-902810.js │ │ ├── regress-903527.js │ │ ├── regress-9036-1.js │ │ ├── regress-9036-2.js │ │ ├── regress-9036-3.js │ │ ├── regress-903697.js │ │ ├── regress-903874.js │ │ ├── regress-904255.js │ │ ├── regress-904275.js │ │ ├── regress-904417.js │ │ ├── regress-904707.js │ │ ├── regress-905587.js │ │ ├── regress-905907.js │ │ ├── regress-906406.js │ │ ├── regress-906893.js │ │ ├── regress-907479.js │ │ ├── regress-907575.js │ │ ├── regress-907669.js │ │ ├── regress-908231.js │ │ ├── regress-908250.js │ │ ├── regress-908975.js │ │ ├── regress-91.js │ │ ├── regress-91008.js │ │ ├── regress-91010.js │ │ ├── regress-91013.js │ │ ├── regress-9105.js │ │ ├── regress-91120.js │ │ ├── regress-912162.js │ │ ├── regress-913844.js │ │ ├── regress-917215.js │ │ ├── regress-917755.js │ │ ├── regress-91787.js │ │ ├── regress-917988.js │ │ ├── regress-918.js │ │ ├── regress-918763.js │ │ ├── regress-919340.js │ │ ├── regress-919710.js │ │ ├── regress-921382.js │ │ ├── regress-923723.js │ │ ├── regress-925537.js │ │ ├── regress-926036.js │ │ ├── regress-927.js │ │ ├── regress-930045.js │ │ ├── regress-930486.js │ │ ├── regress-931.js │ │ ├── regress-932101.js │ │ ├── regress-932953.js │ │ ├── regress-933179.js │ │ ├── regress-933776.js │ │ ├── regress-936077.js │ │ ├── regress-937681.js │ │ ├── regress-937896.js │ │ ├── regress-9383.js │ │ ├── regress-940361.js │ │ ├── regress-940722.js │ │ ├── regress-944.js │ │ ├── regress-9441.js │ │ ├── regress-94425.js │ │ ├── regress-944945.js │ │ ├── regress-9466.js │ │ ├── regress-947822.js │ │ ├── regress-948248.js │ │ ├── regress-948307.js │ │ ├── regress-950328.js │ │ ├── regress-95113.js │ │ ├── regress-952682.js │ │ ├── regress-9546.js │ │ ├── regress-95485.js │ │ ├── regress-955.js │ │ ├── regress-9560.js │ │ ├── regress-956426.js │ │ ├── regress-958725.js │ │ ├── regress-95920.js │ │ ├── regress-961237.js │ │ ├── regress-961508.js │ │ ├── regress-961709-classes-opt.js │ │ ├── regress-961709-classes.js │ │ ├── regress-962.js │ │ ├── regress-963346.js │ │ ├── regress-963891.js │ │ ├── regress-96523.js │ │ ├── regress-966460.js │ │ ├── regress-969.js │ │ ├── regress-97116.js │ │ ├── regress-97116b.js │ │ ├── regress-974.js │ │ ├── regress-977870.js │ │ ├── regress-9781.js │ │ ├── regress-980891.js │ │ ├── regress-981236.js │ │ ├── regress-982.js │ │ ├── regress-982702.js │ │ ├── regress-98773.js │ │ ├── regress-988973.js │ │ ├── regress-9894.js │ │ ├── regress-989914.js │ │ ├── regress-990205.js │ │ ├── regress-991133.js │ │ ├── regress-99167.js │ │ ├── regress-992.js │ │ ├── regress-992389.js │ │ ├── regress-992733.js │ │ ├── regress-995.js │ │ ├── regress-996161.js │ │ ├── regress-996234.js │ │ ├── regress-996391.js │ │ ├── regress-996542.js │ │ ├── regress-996751.js │ │ ├── regress-997485.js │ │ ├── regress-997989.js │ │ ├── regress-abort-context-allocate-params.js │ │ ├── regress-abort-preparsing-params.js │ │ ├── regress-add-minus-zero.js │ │ ├── regress-alloc-smi-check.js │ │ ├── regress-arg-materialize-store.js │ │ ├── regress-arguments-liveness-analysis.js │ │ ├── regress-arguments-slice.js │ │ ├── regress-arm64-spillslots.js │ │ ├── regress-array-pop-deopt.js │ │ ├── regress-array-pop-nonconfigurable.js │ │ ├── regress-arrow-single-expression-eval.js │ │ ├── regress-assignment-in-test-context.js │ │ ├── regress-bce-underflow.js │ │ ├── regress-binary-bitwise-bigint-smi-mix-opt-depot.js │ │ ├── regress-bind-deoptimize.js │ │ ├── regress-bind-receiver.js │ │ ├── regress-binop.js │ │ ├── regress-builtin-array-op.js │ │ ├── regress-builtinbust-1.js │ │ ├── regress-builtinbust-3.js │ │ ├── regress-builtinbust-4.js │ │ ├── regress-builtinbust-5.js │ │ ├── regress-builtinbust-6.js │ │ ├── regress-builtinbust-7.js │ │ ├── regress-calls-with-migrating-prototypes.js │ │ ├── regress-captured-object-no-dummy-use.js │ │ ├── regress-charat-empty.js │ │ ├── regress-check-eliminate-loop-phis.js │ │ ├── regress-chromium-1040238.js │ │ ├── regress-chromium-1194026.js │ │ ├── regress-chromium-1409294.js │ │ ├── regress-clobbered-fp-regs.js │ │ ├── regress-cnlt-elements.js │ │ ├── regress-cnlt-enum-indices.js │ │ ├── regress-cntl-descriptors-enum.js │ │ ├── regress-compare-constant-doubles.js │ │ ├── regress-conditional-position.js │ │ ├── regress-context-osr.js │ │ ├── regress-convert-enum.js │ │ ├── regress-convert-enum2.js │ │ ├── regress-convert-function-to-double.js │ │ ├── regress-convert-hole.js │ │ ├── regress-convert-hole2.js │ │ ├── regress-convert-transition.js │ │ ├── regress-copy-hole-to-field.js │ │ ├── regress-cr-344285.js │ │ ├── regress-cr-658267.js │ │ ├── regress-crbug-1000094.js │ │ ├── regress-crbug-1000170.js │ │ ├── regress-crbug-1002628.js │ │ ├── regress-crbug-1003403.js │ │ ├── regress-crbug-1003732.js │ │ ├── regress-crbug-1004037.js │ │ ├── regress-crbug-1004061.js │ │ ├── regress-crbug-100859.js │ │ ├── regress-crbug-1008632.js │ │ ├── regress-crbug-1009728.js │ │ ├── regress-crbug-1011596-module.mjs │ │ ├── regress-crbug-1011596.mjs │ │ ├── regress-crbug-1012301-1.js │ │ ├── regress-crbug-1012301.js │ │ ├── regress-crbug-1015372.js │ │ ├── regress-crbug-1015567.js │ │ ├── regress-crbug-1015945.js │ │ ├── regress-crbug-1016056.js │ │ ├── regress-crbug-1017159.js │ │ ├── regress-crbug-1018611-2.js │ │ ├── regress-crbug-1018611.js │ │ ├── regress-crbug-1020162.js │ │ ├── regress-crbug-1020983.js │ │ ├── regress-crbug-1022695.js │ │ ├── regress-crbug-1024099.js │ │ ├── regress-crbug-1024282.js │ │ ├── regress-crbug-1024758.js │ │ ├── regress-crbug-1025468.js │ │ ├── regress-crbug-1027025.js │ │ ├── regress-crbug-1028396.js │ │ ├── regress-crbug-1028593.js │ │ ├── regress-crbug-1028863.js │ │ ├── regress-crbug-1029077.js │ │ ├── regress-crbug-1029658.js │ │ ├── regress-crbug-1031479.js │ │ ├── regress-crbug-1034203.js │ │ ├── regress-crbug-1034973.js │ │ ├── regress-crbug-1035331.js │ │ ├── regress-crbug-1038140.js │ │ ├── regress-crbug-1038178.js │ │ ├── regress-crbug-1041210.js │ │ ├── regress-crbug-1041232.js │ │ ├── regress-crbug-1041251.js │ │ ├── regress-crbug-1041616.js │ │ ├── regress-crbug-1044909.js │ │ ├── regress-crbug-1044911.js │ │ ├── regress-crbug-1050046.js │ │ ├── regress-crbug-1052647.js │ │ ├── regress-crbug-1053364.js │ │ ├── regress-crbug-1053939-1.js │ │ ├── regress-crbug-1053939.js │ │ ├── regress-crbug-1055138-1.js │ │ ├── regress-crbug-1055138-2.js │ │ ├── regress-crbug-1055138-3.js │ │ ├── regress-crbug-1057653.js │ │ ├── regress-crbug-1059738.js │ │ ├── regress-crbug-1060023.js │ │ ├── regress-crbug-1063796.js │ │ ├── regress-crbug-1065741.js │ │ ├── regress-crbug-1067757.js │ │ ├── regress-crbug-1069530.js │ │ ├── regress-crbug-1070560.js │ │ ├── regress-crbug-1072947.js │ │ ├── regress-crbug-1074737.js │ │ ├── regress-crbug-1077508.js │ │ ├── regress-crbug-1082293.js │ │ ├── regress-crbug-109362.js │ │ ├── regress-crbug-1104608.js │ │ ├── regress-crbug-1104711.js │ │ ├── regress-crbug-1105383.js │ │ ├── regress-crbug-1113085.js │ │ ├── regress-crbug-1130213.js │ │ ├── regress-crbug-1137586.js │ │ ├── regress-crbug-1137594.js │ │ ├── regress-crbug-1151890.js │ │ ├── regress-crbug-1158138.js │ │ ├── regress-crbug-1161847-1.js │ │ ├── regress-crbug-1161847-2.js │ │ ├── regress-crbug-1161847-3.js │ │ ├── regress-crbug-1162473.js │ │ ├── regress-crbug-1163184.js │ │ ├── regress-crbug-1163499.js │ │ ├── regress-crbug-1166095.js │ │ ├── regress-crbug-1167918.js │ │ ├── regress-crbug-1167981.js │ │ ├── regress-crbug-1167988.js │ │ ├── regress-crbug-1168055.js │ │ ├── regress-crbug-1171195.js │ │ ├── regress-crbug-1171600.js │ │ ├── regress-crbug-1171954.js │ │ ├── regress-crbug-1177058.js │ │ ├── regress-crbug-1191886.js │ │ ├── regress-crbug-1195331.js │ │ ├── regress-crbug-1195977.js │ │ ├── regress-crbug-1197053.js │ │ ├── regress-crbug-119926.js │ │ ├── regress-crbug-1201938.js │ │ ├── regress-crbug-1203122-1.js │ │ ├── regress-crbug-1203122-2.js │ │ ├── regress-crbug-1206289.js │ │ ├── regress-crbug-1209152.js │ │ ├── regress-crbug-1209405.js │ │ ├── regress-crbug-1216261.js │ │ ├── regress-crbug-122271.js │ │ ├── regress-crbug-1224142.js │ │ ├── regress-crbug-1227476.js │ │ ├── regress-crbug-1235182.js │ │ ├── regress-crbug-1236286.js │ │ ├── regress-crbug-1236962.js │ │ ├── regress-crbug-1237153.js │ │ ├── regress-crbug-1238467.js │ │ ├── regress-crbug-1239907.js │ │ ├── regress-crbug-1240661.js │ │ ├── regress-crbug-1245870.js │ │ ├── regress-crbug-1248704.js │ │ ├── regress-crbug-1249941.js │ │ ├── regress-crbug-1251366.js │ │ ├── regress-crbug-125148.js │ │ ├── regress-crbug-1254704.js │ │ ├── regress-crbug-1257519.js │ │ ├── regress-crbug-1258603.js │ │ ├── regress-crbug-1259902.js │ │ ├── regress-crbug-1259950.js │ │ ├── regress-crbug-1260623.js │ │ ├── regress-crbug-1262007.js │ │ ├── regress-crbug-1262750.js │ │ ├── regress-crbug-1263389.js │ │ ├── regress-crbug-1263994.js │ │ ├── regress-crbug-1264013.js │ │ ├── regress-crbug-126414.js │ │ ├── regress-crbug-1264828.js │ │ ├── regress-crbug-1265043.js │ │ ├── regress-crbug-1272026.js │ │ ├── regress-crbug-1276923.js │ │ ├── regress-crbug-1277863.js │ │ ├── regress-crbug-1278086.js │ │ ├── regress-crbug-1290587.js │ │ ├── regress-crbug-1302527-no-lazy-feedback.js │ │ ├── regress-crbug-1302527.js │ │ ├── regress-crbug-1306929.js │ │ ├── regress-crbug-1307310.js │ │ ├── regress-crbug-1308360.js │ │ ├── regress-crbug-1309467.js │ │ ├── regress-crbug-1321573.js │ │ ├── regress-crbug-1321899-1.js │ │ ├── regress-crbug-1321899-2.js │ │ ├── regress-crbug-1321899-3.js │ │ ├── regress-crbug-1321899-4.js │ │ ├── regress-crbug-1321899-5.js │ │ ├── regress-crbug-1321899-6.js │ │ ├── regress-crbug-1321899.js │ │ ├── regress-crbug-1327321.js │ │ ├── regress-crbug-1329234.js │ │ ├── regress-crbug-1335445.js │ │ ├── regress-crbug-1339722-2.js │ │ ├── regress-crbug-1339722-3.js │ │ ├── regress-crbug-1339722-4.js │ │ ├── regress-crbug-1339722-5.js │ │ ├── regress-crbug-1339722-6.js │ │ ├── regress-crbug-1339722-7.js │ │ ├── regress-crbug-1339722-8.js │ │ ├── regress-crbug-1339722.js │ │ ├── regress-crbug-134055.js │ │ ├── regress-crbug-1344549.js │ │ ├── regress-crbug-134609.js │ │ ├── regress-crbug-1347721.js │ │ ├── regress-crbug-1347722.js │ │ ├── regress-crbug-135008.js │ │ ├── regress-crbug-135066.js │ │ ├── regress-crbug-1357318.js │ │ ├── regress-crbug-1360736.js │ │ ├── regress-crbug-1362487.js │ │ ├── regress-crbug-1373770.js │ │ ├── regress-crbug-1374746.js │ │ ├── regress-crbug-1374995.js │ │ ├── regress-crbug-1375073.js │ │ ├── regress-crbug-137689.js │ │ ├── regress-crbug-1377840.js │ │ ├── regress-crbug-1381064.js │ │ ├── regress-crbug-1381404.js │ │ ├── regress-crbug-1383883.js │ │ ├── regress-crbug-1383976.js │ │ ├── regress-crbug-1384474-variant2.js │ │ ├── regress-crbug-1384474-variant3.js │ │ ├── regress-crbug-1384474.js │ │ ├── regress-crbug-138887.js │ │ ├── regress-crbug-1392577.js │ │ ├── regress-crbug-1393375.js │ │ ├── regress-crbug-1394741.js │ │ ├── regress-crbug-1394973.js │ │ ├── regress-crbug-1395117.js │ │ ├── regress-crbug-1399695.js │ │ ├── regress-crbug-1399799.js │ │ ├── regress-crbug-140083.js │ │ ├── regress-crbug-1402139.js │ │ ├── regress-crbug-1404820.js │ │ ├── regress-crbug-1406774.js │ │ ├── regress-crbug-1407080.js │ │ ├── regress-crbug-1407384.js │ │ ├── regress-crbug-1408310.js │ │ ├── regress-crbug-1412001.js │ │ ├── regress-crbug-1412487.js │ │ ├── regress-crbug-1412938.js │ │ ├── regress-crbug-1414292.js │ │ ├── regress-crbug-1415249.js │ │ ├── regress-crbug-1415581.js │ │ ├── regress-crbug-1416248.js │ │ ├── regress-crbug-1416395.js │ │ ├── regress-crbug-1417495.js │ │ ├── regress-crbug-1417882.js │ │ ├── regress-crbug-1420860.js │ │ ├── regress-crbug-142087.js │ │ ├── regress-crbug-1421198.js │ │ ├── regress-crbug-1421451.js │ │ ├── regress-crbug-142218.js │ │ ├── regress-crbug-1423650.js │ │ ├── regress-crbug-1424486.js │ │ ├── regress-crbug-1424699.js │ │ ├── regress-crbug-1426357.js │ │ ├── regress-crbug-1428465.js │ │ ├── regress-crbug-1431046.js │ │ ├── regress-crbug-1437346.js │ │ ├── regress-crbug-1439691.js │ │ ├── regress-crbug-1440685.js │ │ ├── regress-crbug-1441241.js │ │ ├── regress-crbug-1441254.js │ │ ├── regress-crbug-1442801.js │ │ ├── regress-crbug-1443001.js │ │ ├── regress-crbug-1443133.js │ │ ├── regress-crbug-1444134.js │ │ ├── regress-crbug-1445228.js │ │ ├── regress-crbug-1445235.js │ │ ├── regress-crbug-1447430.js │ │ ├── regress-crbug-1448545.js │ │ ├── regress-crbug-1449054.js │ │ ├── regress-crbug-1451644.js │ │ ├── regress-crbug-1454650.js │ │ ├── regress-crbug-145961.js │ │ ├── regress-crbug-146910.js │ │ ├── regress-crbug-147475.js │ │ ├── regress-crbug-148376.js │ │ ├── regress-crbug-150545.js │ │ ├── regress-crbug-150729.js │ │ ├── regress-crbug-157019.js │ │ ├── regress-crbug-157520.js │ │ ├── regress-crbug-158185.js │ │ ├── regress-crbug-162085.js │ │ ├── regress-crbug-163530.js │ │ ├── regress-crbug-168545.js │ │ ├── regress-crbug-170856.js │ │ ├── regress-crbug-172345.js │ │ ├── regress-crbug-173907.js │ │ ├── regress-crbug-173907b.js │ │ ├── regress-crbug-173974.js │ │ ├── regress-crbug-178790.js │ │ ├── regress-crbug-181422.js │ │ ├── regress-crbug-18639.js │ │ ├── regress-crbug-196583.js │ │ ├── regress-crbug-217858.js │ │ ├── regress-crbug-233737.js │ │ ├── regress-crbug-240032.js │ │ ├── regress-crbug-242502.js │ │ ├── regress-crbug-242870.js │ │ ├── regress-crbug-242924.js │ │ ├── regress-crbug-243868.js │ │ ├── regress-crbug-244461.js │ │ ├── regress-crbug-245424.js │ │ ├── regress-crbug-245480.js │ │ ├── regress-crbug-258519.js │ │ ├── regress-crbug-260345.js │ │ ├── regress-crbug-263276.js │ │ ├── regress-crbug-272564.js │ │ ├── regress-crbug-274438.js │ │ ├── regress-crbug-280333.js │ │ ├── regress-crbug-285355.js │ │ ├── regress-crbug-305309.js │ │ ├── regress-crbug-306220.js │ │ ├── regress-crbug-306851.js │ │ ├── regress-crbug-309623.js │ │ ├── regress-crbug-315252.js │ │ ├── regress-crbug-3184.js │ │ ├── regress-crbug-318671.js │ │ ├── regress-crbug-319835.js │ │ ├── regress-crbug-319860.js │ │ ├── regress-crbug-323942.js │ │ ├── regress-crbug-325225.js │ │ ├── regress-crbug-329709.js │ │ ├── regress-crbug-336148.js │ │ ├── regress-crbug-340064.js │ │ ├── regress-crbug-344186.js │ │ ├── regress-crbug-345715.js │ │ ├── regress-crbug-345820.js │ │ ├── regress-crbug-346636.js │ │ ├── regress-crbug-347903.js │ │ ├── regress-crbug-349079.js │ │ ├── regress-crbug-349465.js │ │ ├── regress-crbug-349853.js │ │ ├── regress-crbug-349878.js │ │ ├── regress-crbug-350434.js │ │ ├── regress-crbug-350864.js │ │ ├── regress-crbug-350867.js │ │ ├── regress-crbug-350890.js │ │ ├── regress-crbug-351262.js │ │ ├── regress-crbug-351320.js │ │ ├── regress-crbug-351658.js │ │ ├── regress-crbug-351787.js │ │ ├── regress-crbug-352586.js │ │ ├── regress-crbug-352929.js │ │ ├── regress-crbug-354391.js │ │ ├── regress-crbug-357052.js │ │ ├── regress-crbug-357137.js │ │ ├── regress-crbug-357330.js │ │ ├── regress-crbug-364374.js │ │ ├── regress-crbug-374838.js │ │ ├── regress-crbug-37853.js │ │ ├── regress-crbug-380512.js │ │ ├── regress-crbug-381534.js │ │ ├── regress-crbug-382143.js │ │ ├── regress-crbug-382513.js │ │ ├── regress-crbug-385002.js │ │ ├── regress-crbug-3867.js │ │ ├── regress-crbug-387031.js │ │ ├── regress-crbug-387636.js │ │ ├── regress-crbug-390918.js │ │ ├── regress-crbug-39160.js │ │ ├── regress-crbug-393988.js │ │ ├── regress-crbug-397662.js │ │ ├── regress-crbug-403409.js │ │ ├── regress-crbug-405517.js │ │ ├── regress-crbug-407946.js │ │ ├── regress-crbug-40931.js │ │ ├── regress-crbug-412203.js │ │ ├── regress-crbug-412208.js │ │ ├── regress-crbug-412210.js │ │ ├── regress-crbug-412215.js │ │ ├── regress-crbug-412319.js │ │ ├── regress-crbug-416558.js │ │ ├── regress-crbug-417508.js │ │ ├── regress-crbug-422858.js │ │ ├── regress-crbug-423687.js │ │ ├── regress-crbug-425519.js │ │ ├── regress-crbug-425585.js │ │ ├── regress-crbug-429159.js │ │ ├── regress-crbug-430846.js │ │ ├── regress-crbug-431602.js │ │ ├── regress-crbug-433332.js │ │ ├── regress-crbug-433766.js │ │ ├── regress-crbug-435825.js │ │ ├── regress-crbug-436820.js │ │ ├── regress-crbug-450642.js │ │ ├── regress-crbug-450960.js │ │ ├── regress-crbug-451013.js │ │ ├── regress-crbug-451016.js │ │ ├── regress-crbug-451770.js │ │ ├── regress-crbug-454091.js │ │ ├── regress-crbug-455644.js │ │ ├── regress-crbug-465564.js │ │ ├── regress-crbug-467531.js │ │ ├── regress-crbug-469768.js │ │ ├── regress-crbug-471659.js │ │ ├── regress-crbug-476477-1.js │ │ ├── regress-crbug-476477-2.js │ │ ├── regress-crbug-477924.js │ │ ├── regress-crbug-478011.js │ │ ├── regress-crbug-478612.js │ │ ├── regress-crbug-480807.js │ │ ├── regress-crbug-480819.js │ │ ├── regress-crbug-482998.js │ │ ├── regress-crbug-484077.js │ │ ├── regress-crbug-485410.js │ │ ├── regress-crbug-485548-1.js │ │ ├── regress-crbug-485548-2.js │ │ ├── regress-crbug-487105.js │ │ ├── regress-crbug-487322.js │ │ ├── regress-crbug-487608.js │ │ ├── regress-crbug-489293.js │ │ ├── regress-crbug-489597.js │ │ ├── regress-crbug-489597.js-script │ │ ├── regress-crbug-490021.js │ │ ├── regress-crbug-490680.js │ │ ├── regress-crbug-491062.js │ │ ├── regress-crbug-493284.js │ │ ├── regress-crbug-493290.js │ │ ├── regress-crbug-493779.js │ │ ├── regress-crbug-495493.js │ │ ├── regress-crbug-498022.js │ │ ├── regress-crbug-498811.js │ │ ├── regress-crbug-500435.js │ │ ├── regress-crbug-500497.js │ │ ├── regress-crbug-500824.js │ │ ├── regress-crbug-501711.js │ │ ├── regress-crbug-501808.js │ │ ├── regress-crbug-501809.js │ │ ├── regress-crbug-502930.js │ │ ├── regress-crbug-503578.js │ │ ├── regress-crbug-503698.js │ │ ├── regress-crbug-503968.js │ │ ├── regress-crbug-503991.js │ │ ├── regress-crbug-504136.js │ │ ├── regress-crbug-504727.js │ │ ├── regress-crbug-504729.js │ │ ├── regress-crbug-504787.js │ │ ├── regress-crbug-505354.js │ │ ├── regress-crbug-505370.js │ │ ├── regress-crbug-505778.js │ │ ├── regress-crbug-505907.js │ │ ├── regress-crbug-506549.js │ │ ├── regress-crbug-506956.js │ │ ├── regress-crbug-510426.js │ │ ├── regress-crbug-510738.js │ │ ├── regress-crbug-511880.js │ │ ├── regress-crbug-513471.js │ │ ├── regress-crbug-513472.js │ │ ├── regress-crbug-513507.js │ │ ├── regress-crbug-513602.js │ │ ├── regress-crbug-514081.js │ │ ├── regress-crbug-515897.js │ │ ├── regress-crbug-516592.js │ │ ├── regress-crbug-516775.js │ │ ├── regress-crbug-518747.js │ │ ├── regress-crbug-522380.js │ │ ├── regress-crbug-522496.js │ │ ├── regress-crbug-522895.js │ │ ├── regress-crbug-523213.js │ │ ├── regress-crbug-523307.js │ │ ├── regress-crbug-523308.js │ │ ├── regress-crbug-523919.js │ │ ├── regress-crbug-527364.js │ │ ├── regress-crbug-528379.js │ │ ├── regress-crbug-530598.js │ │ ├── regress-crbug-537444.js │ │ ├── regress-crbug-538086.js │ │ ├── regress-crbug-542101.js │ │ ├── regress-crbug-545364.js │ │ ├── regress-crbug-548580.js │ │ ├── regress-crbug-549162.js │ │ ├── regress-crbug-551287.js │ │ ├── regress-crbug-552304.js │ │ ├── regress-crbug-554831.js │ │ ├── regress-crbug-554946.js │ │ ├── regress-crbug-557807.js │ │ ├── regress-crbug-561973.js │ │ ├── regress-crbug-563929.js │ │ ├── regress-crbug-565917.js │ │ ├── regress-crbug-568525.js │ │ ├── regress-crbug-569534.js │ │ ├── regress-crbug-570241.js │ │ ├── regress-crbug-571064.js │ │ ├── regress-crbug-571370.js │ │ ├── regress-crbug-571517.js │ │ ├── regress-crbug-572590.js │ │ ├── regress-crbug-573857.js │ │ ├── regress-crbug-573858.js │ │ ├── regress-crbug-575080.js │ │ ├── regress-crbug-575082.js │ │ ├── regress-crbug-575314.js │ │ ├── regress-crbug-577112.js │ │ ├── regress-crbug-578039-Proxy_construct_prototype_change.js │ │ ├── regress-crbug-580506.js │ │ ├── regress-crbug-580584.js │ │ ├── regress-crbug-580934.js │ │ ├── regress-crbug-581577.js │ │ ├── regress-crbug-583257.js │ │ ├── regress-crbug-584188.js │ │ ├── regress-crbug-587068.js │ │ ├── regress-crbug-589472.js │ │ ├── regress-crbug-589792.js │ │ ├── regress-crbug-590989-1.js │ │ ├── regress-crbug-590989-2.js │ │ ├── regress-crbug-592340.js │ │ ├── regress-crbug-592343.js │ │ ├── regress-crbug-593282.js │ │ ├── regress-crbug-593697-2.js │ │ ├── regress-crbug-594183.js │ │ ├── regress-crbug-594574-concat-leak-1.js │ │ ├── regress-crbug-594574-concat-leak-2.js │ │ ├── regress-crbug-594955.js │ │ ├── regress-crbug-595615.js │ │ ├── regress-crbug-595657.js │ │ ├── regress-crbug-595738.js │ │ ├── regress-crbug-596394.js │ │ ├── regress-crbug-598998.js │ │ ├── regress-crbug-599003.js │ │ ├── regress-crbug-599067.js │ │ ├── regress-crbug-599073-1.js │ │ ├── regress-crbug-599073-2.js │ │ ├── regress-crbug-599073-3.js │ │ ├── regress-crbug-599073-4.js │ │ ├── regress-crbug-599714.js │ │ ├── regress-crbug-600257.js │ │ ├── regress-crbug-601617.js │ │ ├── regress-crbug-602184.js │ │ ├── regress-crbug-602595.js │ │ ├── regress-crbug-603463.js │ │ ├── regress-crbug-604299.js │ │ ├── regress-crbug-604680.js │ │ ├── regress-crbug-605060.js │ │ ├── regress-crbug-605862.js │ │ ├── regress-crbug-608278.js │ │ ├── regress-crbug-608279.js │ │ ├── regress-crbug-609029.js │ │ ├── regress-crbug-610207.js │ │ ├── regress-crbug-612109.js │ │ ├── regress-crbug-612142.js │ │ ├── regress-crbug-613494.js │ │ ├── regress-crbug-613570.js │ │ ├── regress-crbug-613905.js │ │ ├── regress-crbug-613919.js │ │ ├── regress-crbug-614292.js │ │ ├── regress-crbug-614644.js │ │ ├── regress-crbug-614727.js │ │ ├── regress-crbug-615774.js │ │ ├── regress-crbug-616709-1.js │ │ ├── regress-crbug-616709-2.js │ │ ├── regress-crbug-617524.js │ │ ├── regress-crbug-617527.js │ │ ├── regress-crbug-617567.js │ │ ├── regress-crbug-618788.js │ │ ├── regress-crbug-618845.js │ │ ├── regress-crbug-619476.js │ │ ├── regress-crbug-620119.js │ │ ├── regress-crbug-620253.js │ │ ├── regress-crbug-620650.js │ │ ├── regress-crbug-621611.js │ │ ├── regress-crbug-621816.js │ │ ├── regress-crbug-621868.js │ │ ├── regress-crbug-624747.js │ │ ├── regress-crbug-624919.js │ │ ├── regress-crbug-625547.js │ │ ├── regress-crbug-625590.js │ │ ├── regress-crbug-626715.js │ │ ├── regress-crbug-627828.js │ │ ├── regress-crbug-627934.js │ │ ├── regress-crbug-627935.js │ │ ├── regress-crbug-628573.js │ │ ├── regress-crbug-629062.js │ │ ├── regress-crbug-629435.js │ │ ├── regress-crbug-629823.js │ │ ├── regress-crbug-630559.js │ │ ├── regress-crbug-630561.js │ │ ├── regress-crbug-630923.js │ │ ├── regress-crbug-630951.js │ │ ├── regress-crbug-630952.js │ │ ├── regress-crbug-631027.js │ │ ├── regress-crbug-631318-1.js │ │ ├── regress-crbug-631318-10.js │ │ ├── regress-crbug-631318-11.js │ │ ├── regress-crbug-631318-12.js │ │ ├── regress-crbug-631318-13.js │ │ ├── regress-crbug-631318-14.js │ │ ├── regress-crbug-631318-15.js │ │ ├── regress-crbug-631318-2.js │ │ ├── regress-crbug-631318-3.js │ │ ├── regress-crbug-631318-4.js │ │ ├── regress-crbug-631318-5.js │ │ ├── regress-crbug-631318-6.js │ │ ├── regress-crbug-631318-7.js │ │ ├── regress-crbug-631318-8.js │ │ ├── regress-crbug-631318-9.js │ │ ├── regress-crbug-631917.js │ │ ├── regress-crbug-632800.js │ │ ├── regress-crbug-633585.js │ │ ├── regress-crbug-633884.js │ │ ├── regress-crbug-635798.js │ │ ├── regress-crbug-635923.js │ │ ├── regress-crbug-638551.js │ │ ├── regress-crbug-640369.js │ │ ├── regress-crbug-640497.js │ │ ├── regress-crbug-642056.js │ │ ├── regress-crbug-643073.js │ │ ├── regress-crbug-644111.js │ │ ├── regress-crbug-644215.js │ │ ├── regress-crbug-644245.js │ │ ├── regress-crbug-644631.js │ │ ├── regress-crbug-644689-1.js │ │ ├── regress-crbug-644689-2.js │ │ ├── regress-crbug-645103.js │ │ ├── regress-crbug-645438.js │ │ ├── regress-crbug-645888.js │ │ ├── regress-crbug-647217.js │ │ ├── regress-crbug-647887.js │ │ ├── regress-crbug-648539.js │ │ ├── regress-crbug-648737.js │ │ ├── regress-crbug-648740.js │ │ ├── regress-crbug-650404.js │ │ ├── regress-crbug-650933.js │ │ ├── regress-crbug-650973.js │ │ ├── regress-crbug-651403-global.js │ │ ├── regress-crbug-651403.js │ │ ├── regress-crbug-652186-global.js │ │ ├── regress-crbug-652186-local.js │ │ ├── regress-crbug-654723.js │ │ ├── regress-crbug-655004.js │ │ ├── regress-crbug-656037.js │ │ ├── regress-crbug-656275.js │ │ ├── regress-crbug-657478.js │ │ ├── regress-crbug-658185.js │ │ ├── regress-crbug-658528.js │ │ ├── regress-crbug-658691.js │ │ ├── regress-crbug-659475-1.js │ │ ├── regress-crbug-659475-2.js │ │ ├── regress-crbug-659915a.js │ │ ├── regress-crbug-659915b.js │ │ ├── regress-crbug-659967.js │ │ ├── regress-crbug-660379.js │ │ ├── regress-crbug-661949.js │ │ ├── regress-crbug-662367.js │ │ ├── regress-crbug-662410.js │ │ ├── regress-crbug-662830.js │ │ ├── regress-crbug-662854.js │ │ ├── regress-crbug-662907.js │ │ ├── regress-crbug-663340.js │ │ ├── regress-crbug-663402.js │ │ ├── regress-crbug-663410.js │ │ ├── regress-crbug-663750.js │ │ ├── regress-crbug-664084.js │ │ ├── regress-crbug-664469.js │ │ ├── regress-crbug-664506.js │ │ ├── regress-crbug-664802.js │ │ ├── regress-crbug-664942.js │ │ ├── regress-crbug-664974.js │ │ ├── regress-crbug-665587.js │ │ ├── regress-crbug-665793.js │ │ ├── regress-crbug-665886.js │ │ ├── regress-crbug-666308.js │ │ ├── regress-crbug-666742.js │ │ ├── regress-crbug-667689.js │ │ ├── regress-crbug-668101.js │ │ ├── regress-crbug-668414.js │ │ ├── regress-crbug-668795.js │ │ ├── regress-crbug-669411.js │ │ ├── regress-crbug-669451.js │ │ ├── regress-crbug-669540.js │ │ ├── regress-crbug-669850.js │ │ ├── regress-crbug-671576.js │ │ ├── regress-crbug-672792.js │ │ ├── regress-crbug-673008.js │ │ ├── regress-crbug-677757.js │ │ ├── regress-crbug-679202.js │ │ ├── regress-crbug-679378.js │ │ ├── regress-crbug-679841.js │ │ ├── regress-crbug-681983.js │ │ ├── regress-crbug-682194.js │ │ ├── regress-crbug-683581.js │ │ ├── regress-crbug-683667.js │ │ ├── regress-crbug-684208.js │ │ ├── regress-crbug-685050.js │ │ ├── regress-crbug-685504.js │ │ ├── regress-crbug-685506.js │ │ ├── regress-crbug-685634.js │ │ ├── regress-crbug-685680.js │ │ ├── regress-crbug-685965.js │ │ ├── regress-crbug-686102.js │ │ ├── regress-crbug-686427.js │ │ ├── regress-crbug-686737.js │ │ ├── regress-crbug-687029.js │ │ ├── regress-crbug-687063.js │ │ ├── regress-crbug-687990.js │ │ ├── regress-crbug-688567.js │ │ ├── regress-crbug-688734.js │ │ ├── regress-crbug-691323.js │ │ ├── regress-crbug-691687.js │ │ ├── regress-crbug-694416.js │ │ ├── regress-crbug-694709.js │ │ ├── regress-crbug-696622.js │ │ ├── regress-crbug-697017.js │ │ ├── regress-crbug-698607.js │ │ ├── regress-crbug-699282.js │ │ ├── regress-crbug-700678.js │ │ ├── regress-crbug-700733.js │ │ ├── regress-crbug-702058-1.js │ │ ├── regress-crbug-702058-2.js │ │ ├── regress-crbug-702058-3.js │ │ ├── regress-crbug-702793.js │ │ ├── regress-crbug-702798.js │ │ ├── regress-crbug-703610.js │ │ ├── regress-crbug-706642.js │ │ ├── regress-crbug-707580.js │ │ ├── regress-crbug-708050-1.js │ │ ├── regress-crbug-708050-2.js │ │ ├── regress-crbug-709537.js │ │ ├── regress-crbug-709753.js │ │ ├── regress-crbug-711166.js │ │ ├── regress-crbug-712802.js │ │ ├── regress-crbug-714696.js │ │ ├── regress-crbug-714872.js │ │ ├── regress-crbug-714981.js │ │ ├── regress-crbug-715151.js │ │ ├── regress-crbug-715404.js │ │ ├── regress-crbug-715862.js │ │ ├── regress-crbug-716520.js │ │ ├── regress-crbug-716804.js │ │ ├── regress-crbug-716912.js │ │ ├── regress-crbug-718779.js │ │ ├── regress-crbug-719479.js │ │ ├── regress-crbug-722756.js │ │ ├── regress-crbug-722783.js │ │ ├── regress-crbug-722871.js │ │ ├── regress-crbug-723132.js │ │ ├── regress-crbug-723455.js │ │ ├── regress-crbug-724153.js │ │ ├── regress-crbug-724608.js │ │ ├── regress-crbug-725201.js │ │ ├── regress-crbug-725537.js │ │ ├── regress-crbug-72736.js │ │ ├── regress-crbug-728813.js │ │ ├── regress-crbug-729573-1.js │ │ ├── regress-crbug-729573-2.js │ │ ├── regress-crbug-729597.js │ │ ├── regress-crbug-731193.js │ │ ├── regress-crbug-732169.js │ │ ├── regress-crbug-734051.js │ │ ├── regress-crbug-734162.js │ │ ├── regress-crbug-736451.js │ │ ├── regress-crbug-736575.js │ │ ├── regress-crbug-736633.js │ │ ├── regress-crbug-737645.js │ │ ├── regress-crbug-738763.js │ │ ├── regress-crbug-740116.js │ │ ├── regress-crbug-740398.js │ │ ├── regress-crbug-740591.js │ │ ├── regress-crbug-740803.js │ │ ├── regress-crbug-741078.js │ │ ├── regress-crbug-743154.js │ │ ├── regress-crbug-747062.js │ │ ├── regress-crbug-747979.js │ │ ├── regress-crbug-748539.js │ │ ├── regress-crbug-751109.js │ │ ├── regress-crbug-751715.js │ │ ├── regress-crbug-752481.js │ │ ├── regress-crbug-752712.js │ │ ├── regress-crbug-752826.js │ │ ├── regress-crbug-752846.js │ │ ├── regress-crbug-754175.js │ │ ├── regress-crbug-754177.js │ │ ├── regress-crbug-755044.js │ │ ├── regress-crbug-756332.js │ │ ├── regress-crbug-757199.js │ │ ├── regress-crbug-758773.js │ │ ├── regress-crbug-762472.js │ │ ├── regress-crbug-762874-1.js │ │ ├── regress-crbug-762874-2.js │ │ ├── regress-crbug-763683.js │ │ ├── regress-crbug-764219.js │ │ ├── regress-crbug-766635.js │ │ ├── regress-crbug-768080.js │ │ ├── regress-crbug-768158.js │ │ ├── regress-crbug-768367.js │ │ ├── regress-crbug-768875.js │ │ ├── regress-crbug-769852.js │ │ ├── regress-crbug-770543.js │ │ ├── regress-crbug-770581.js │ │ ├── regress-crbug-771971.js │ │ ├── regress-crbug-772610.js │ │ ├── regress-crbug-772672.js │ │ ├── regress-crbug-772689.js │ │ ├── regress-crbug-772720.js │ │ ├── regress-crbug-772897.js │ │ ├── regress-crbug-774459.js │ │ ├── regress-crbug-774860.js │ │ ├── regress-crbug-774994.js │ │ ├── regress-crbug-776511.js │ │ ├── regress-crbug-778952.js │ │ ├── regress-crbug-779344.js │ │ ├── regress-crbug-779367.js │ │ ├── regress-crbug-779457.js │ │ ├── regress-crbug-781116-1.js │ │ ├── regress-crbug-781116-2.js │ │ ├── regress-crbug-781506-1.js │ │ ├── regress-crbug-781506-2.js │ │ ├── regress-crbug-781506-3.js │ │ ├── regress-crbug-781583.js │ │ ├── regress-crbug-783132.js │ │ ├── regress-crbug-783902.js │ │ ├── regress-crbug-784835.js │ │ ├── regress-crbug-786020.js │ │ ├── regress-crbug-786723.js │ │ ├── regress-crbug-789764.js │ │ ├── regress-crbug-7907.js │ │ ├── regress-crbug-791245-1.js │ │ ├── regress-crbug-791245-2.js │ │ ├── regress-crbug-791256.js │ │ ├── regress-crbug-795922.js │ │ ├── regress-crbug-798026.js │ │ ├── regress-crbug-798644.js │ │ ├── regress-crbug-800032.js │ │ ├── regress-crbug-800077.js │ │ ├── regress-crbug-800810.js │ │ ├── regress-crbug-801627.js │ │ ├── regress-crbug-802333.js │ │ ├── regress-crbug-805765.js │ │ ├── regress-crbug-806200.js │ │ ├── regress-crbug-806388.js │ │ ├── regress-crbug-807096.js │ │ ├── regress-crbug-808192.js │ │ ├── regress-crbug-813427.js │ │ ├── regress-crbug-813450.js │ │ ├── regress-crbug-813630.js │ │ ├── regress-crbug-819086.js │ │ ├── regress-crbug-819298.js │ │ ├── regress-crbug-820312.js │ │ ├── regress-crbug-820820.js │ │ ├── regress-crbug-821159-1.js │ │ ├── regress-crbug-821159-2.js │ │ ├── regress-crbug-821159-3.js │ │ ├── regress-crbug-821159-4.js │ │ ├── regress-crbug-822284.js │ │ ├── regress-crbug-823069.js │ │ ├── regress-crbug-823130.js │ │ ├── regress-crbug-825045.js │ │ ├── regress-crbug-827013.js │ │ ├── regress-crbug-830565.js │ │ ├── regress-crbug-831943.js │ │ ├── regress-crbug-831984.js │ │ ├── regress-crbug-840220.js │ │ ├── regress-crbug-841592.js │ │ ├── regress-crbug-843022.js │ │ ├── regress-crbug-848165.js │ │ ├── regress-crbug-849024.js │ │ ├── regress-crbug-850005.js │ │ ├── regress-crbug-851393.js │ │ ├── regress-crbug-852592.js │ │ ├── regress-crbug-854299.js │ │ ├── regress-crbug-856095.js │ │ ├── regress-crbug-859809.js │ │ ├── regress-crbug-860788.js │ │ ├── regress-crbug-862538.js │ │ ├── regress-crbug-865312.js │ │ ├── regress-crbug-865892.js │ │ ├── regress-crbug-866315.js │ │ ├── regress-crbug-867776.js │ │ ├── regress-crbug-869313.js │ │ ├── regress-crbug-871886.js │ │ ├── regress-crbug-87478.js │ │ ├── regress-crbug-876443.js │ │ ├── regress-crbug-878845.js │ │ ├── regress-crbug-879560.js │ │ ├── regress-crbug-879898.js │ │ ├── regress-crbug-880207.js │ │ ├── regress-crbug-881247.js │ │ ├── regress-crbug-882233-1.js │ │ ├── regress-crbug-882233-2.js │ │ ├── regress-crbug-884933.js │ │ ├── regress-crbug-885404.js │ │ ├── regress-crbug-887891.js │ │ ├── regress-crbug-888825.js │ │ ├── regress-crbug-890243.js │ │ ├── regress-crbug-891627.js │ │ ├── regress-crbug-892472-1.js │ │ ├── regress-crbug-892472-2.js │ │ ├── regress-crbug-895199.js │ │ ├── regress-crbug-896181.js │ │ ├── regress-crbug-896700.js │ │ ├── regress-crbug-897098.js │ │ ├── regress-crbug-897404.js │ │ ├── regress-crbug-897406.js │ │ ├── regress-crbug-897514.js │ │ ├── regress-crbug-898785.js │ │ ├── regress-crbug-899464.js │ │ ├── regress-crbug-899524.js │ │ ├── regress-crbug-899535.js │ │ ├── regress-crbug-900674.js │ │ ├── regress-crbug-902395.js │ │ ├── regress-crbug-902610.js │ │ ├── regress-crbug-902672.js │ │ ├── regress-crbug-903043.js │ │ ├── regress-crbug-905457.js │ │ ├── regress-crbug-906043.js │ │ ├── regress-crbug-906220.js │ │ ├── regress-crbug-906870.js │ │ ├── regress-crbug-90771.js │ │ ├── regress-crbug-908309.js │ │ ├── regress-crbug-909614.js │ │ ├── regress-crbug-911416.js │ │ ├── regress-crbug-913212.js │ │ ├── regress-crbug-913222.js │ │ ├── regress-crbug-913296.js │ │ ├── regress-crbug-915783.js │ │ ├── regress-crbug-9161.js │ │ ├── regress-crbug-916288.js │ │ ├── regress-crbug-917076.js │ │ ├── regress-crbug-917980.js │ │ ├── regress-crbug-918301.js │ │ ├── regress-crbug-920184.js │ │ ├── regress-crbug-923264.js │ │ ├── regress-crbug-923265.js │ │ ├── regress-crbug-923705.js │ │ ├── regress-crbug-926651.js │ │ ├── regress-crbug-926819.js │ │ ├── regress-crbug-926856.js │ │ ├── regress-crbug-930580.js │ │ ├── regress-crbug-930948-base.js │ │ ├── regress-crbug-930948.js │ │ ├── regress-crbug-931664.js │ │ ├── regress-crbug-932034.js │ │ ├── regress-crbug-933214.js │ │ ├── regress-crbug-934166.js │ │ ├── regress-crbug-935800.js │ │ ├── regress-crbug-935932.js │ │ ├── regress-crbug-936302.js │ │ ├── regress-crbug-937618.js │ │ ├── regress-crbug-937649.js │ │ ├── regress-crbug-937734.js │ │ ├── regress-crbug-940274.js │ │ ├── regress-crbug-941703.js │ │ ├── regress-crbug-941743.js │ │ ├── regress-crbug-942068.js │ │ ├── regress-crbug-944435.js │ │ ├── regress-crbug-944865.js │ │ ├── regress-crbug-944971.js │ │ ├── regress-crbug-950747.js │ │ ├── regress-crbug-951400.js │ │ ├── regress-crbug-959645-1.js │ │ ├── regress-crbug-959645-2.js │ │ ├── regress-crbug-959727.js │ │ ├── regress-crbug-961522.js │ │ ├── regress-crbug-961709-1.js │ │ ├── regress-crbug-961709-2.js │ │ ├── regress-crbug-963568.js │ │ ├── regress-crbug-964833.js │ │ ├── regress-crbug-964869.js │ │ ├── regress-crbug-966450.js │ │ ├── regress-crbug-967065.js │ │ ├── regress-crbug-967101.js │ │ ├── regress-crbug-967254.js │ │ ├── regress-crbug-967434.js │ │ ├── regress-crbug-971383.js │ │ ├── regress-crbug-971782.js │ │ ├── regress-crbug-976256.js │ │ ├── regress-crbug-976598.js │ │ ├── regress-crbug-977012.js │ │ ├── regress-crbug-977089.js │ │ ├── regress-crbug-979023.js │ │ ├── regress-crbug-979401.js │ │ ├── regress-crbug-980168.js │ │ ├── regress-crbug-980183.js │ │ ├── regress-crbug-980292.js │ │ ├── regress-crbug-980422.js │ │ ├── regress-crbug-980529.js │ │ ├── regress-crbug-981701.js │ │ ├── regress-crbug-984344.js │ │ ├── regress-crbug-985660.js │ │ ├── regress-crbug-986187.js │ │ ├── regress-crbug-987205.js │ │ ├── regress-crbug-988304.js │ │ ├── regress-crbug-990582.js │ │ ├── regress-crbug-992914.js │ │ ├── regress-crbug-993980.js │ │ ├── regress-crbug-994041.js │ │ ├── regress-crbug-994719.js │ │ ├── regress-crbug-997056.js │ │ ├── regress-crbug-997057.js │ │ ├── regress-crbug-997320.js │ │ ├── regress-crbug-999450.js │ │ ├── regress-create-exception.js │ │ ├── regress-deep-proto.js │ │ ├── regress-delete-empty-double.js │ │ ├── regress-deopt-gc.js │ │ ├── regress-deopt-gcb.js │ │ ├── regress-deopt-in-array-literal-spread.js │ │ ├── regress-deopt-store-effect.js │ │ ├── regress-deoptimize-constant-keyed-load.js │ │ ├── regress-dictionary-to-fast-arguments.js │ │ ├── regress-directive.js │ │ ├── regress-double-canonicalization.js │ │ ├── regress-double-property.js │ │ ├── regress-embedded-cons-string.js │ │ ├── regress-empty-fixed-double-array.js │ │ ├── regress-ensure-initial-map.js │ │ ├── regress-enum-prop-keys-cache-size.js │ │ ├── regress-escape-preserve-smi-representation.js │ │ ├── regress-et-clobbers-doubles.js │ │ ├── regress-eval-cache.js │ │ ├── regress-eval-context.js │ │ ├── regress-existing-shared-function-info.js │ │ ├── regress-fast-empty-string.js │ │ ├── regress-fast-literal-transition.js │ │ ├── regress-filter-contexts.js │ │ ├── regress-force-constant-representation.js │ │ ├── regress-force-representation.js │ │ ├── regress-freeze-setter.js │ │ ├── regress-freeze.js │ │ ├── regress-function-length-strict.js │ │ ├── regress-fundecl.js │ │ ├── regress-grow-deopt.js │ │ ├── regress-grow-store-smi-check.js │ │ ├── regress-gvn-ftt.js │ │ ├── regress-hoist-load-named-field.js │ │ ├── regress-indirect-push-unchecked.js │ │ ├── regress-inline-arrow-as-construct.js │ │ ├── regress-inline-class-constructor.js │ │ ├── regress-inline-constant-load.js │ │ ├── regress-inline-getter-near-stack-limit.js │ │ ├── regress-inlining-function-literal-context.js │ │ ├── regress-inlining-printing.js │ │ ├── regress-int32-truncation.js │ │ ├── regress-integer-indexed-element.js │ │ ├── regress-is-contextual.js │ │ ├── regress-is-smi-repr.js │ │ ├── regress-iteration-order.js │ │ ├── regress-json-parse-index.js │ │ ├── regress-json-stringify-gc.js │ │ ├── regress-keyed-access-string-length.js │ │ ├── regress-keyed-store-global.js │ │ ├── regress-keyed-store-non-strict-arguments.js │ │ ├── regress-latin-1.js │ │ ├── regress-lazy-deopt-inlining.js │ │ ├── regress-lazy-deopt-inlining2.js │ │ ├── regress-lazy-deopt-reloc.js │ │ ├── regress-lea-matching.js │ │ ├── regress-load-elements.js │ │ ├── regress-load-field-by-index.js │ │ ├── regress-loop-var-assign-without-block-scope.js │ │ ├── regress-map-invalidation-1.js │ │ ├── regress-map-invalidation-2.js │ │ ├── regress-mask-array-length.js │ │ ├── regress-merge-descriptors.js │ │ ├── regress-migrate-callbacks.js │ │ ├── regress-mul-canoverflow.js │ │ ├── regress-mul-canoverflowb.js │ │ ├── regress-no-dummy-use-for-arguments-object.js │ │ ├── regress-ntl.js │ │ ├── regress-object-assign-deprecated-2.js │ │ ├── regress-object-assign-deprecated.js │ │ ├── regress-omit-checks.js │ │ ├── regress-opt-typeof-null.js │ │ ├── regress-osr-context.js │ │ ├── regress-param-local-type.js │ │ ├── regress-parse-use-strict.js │ │ ├── regress-parseint.js │ │ ├── regress-phi-truncation.js │ │ ├── regress-polymorphic-load.js │ │ ├── regress-polymorphic-store.js │ │ ├── regress-preparse-inner-arrow-duplicate-parameter.js │ │ ├── regress-private-enumerable.js │ │ ├── regress-push-args-twice.js │ │ ├── regress-put-prototype-transition.js │ │ ├── regress-r3391.js │ │ ├── regress-r4998.js │ │ ├── regress-recurse-patch-binary-op.js │ │ ├── regress-refreeze-same-map.js │ │ ├── regress-regexp-codeflush.js │ │ ├── regress-regexp-construct-result.js │ │ ├── regress-regexp-functional-replace-slow.js │ │ ├── regress-regexp-nocase.js │ │ ├── regress-reset-dictionary-elements.js │ │ ├── regress-set-flags-stress-compact.js │ │ ├── regress-shift-enumerable.js │ │ ├── regress-sliced-external-cons-regexp.js │ │ ├── regress-sloppy-block-function-hoisting-dynamic.js │ │ ├── regress-smi-math-floor-round.js │ │ ├── regress-smi-only-concat.js │ │ ├── regress-smi-scanning.js │ │ ├── regress-sort-arguments.js │ │ ├── regress-sqrt.js │ │ ├── regress-store-global-proxy.js │ │ ├── regress-store-heapobject.js │ │ ├── regress-store-transition-dict.js │ │ ├── regress-store-uncacheable.js │ │ ├── regress-string-from-char-code-tonumber.js │ │ ├── regress-stringAt-boundsCheck.js │ │ ├── regress-swapelements.js │ │ ├── regress-sync-optimized-lists.js │ │ ├── regress-transcendental.js │ │ ├── regress-trap-allocation-memento.js │ │ ├── regress-typedarray-length.js │ │ ├── regress-undefined-nan.js │ │ ├── regress-undefined-nan2.js │ │ ├── regress-undefined-nan3.js │ │ ├── regress-undefined-store-keyed-fast-element.js │ │ ├── regress-unlink-closures-on-deopt.js │ │ ├── regress-unsigned-mul-add.js │ │ ├── regress-update-field-type-attributes.js │ │ ├── regress-v8-10072.js │ │ ├── regress-v8-10384.js │ │ ├── regress-v8-10484-1.js │ │ ├── regress-v8-10484-2.js │ │ ├── regress-v8-10513.js │ │ ├── regress-v8-10568.js │ │ ├── regress-v8-10602.js │ │ ├── regress-v8-10604.js │ │ ├── regress-v8-10817.js │ │ ├── regress-v8-11261.js │ │ ├── regress-v8-11290.js │ │ ├── regress-v8-11360.js │ │ ├── regress-v8-11614.js │ │ ├── regress-v8-11616.js │ │ ├── regress-v8-11851.js │ │ ├── regress-v8-12060.mjs │ │ ├── regress-v8-12122.js │ │ ├── regress-v8-12194.js │ │ ├── regress-v8-12219.js │ │ ├── regress-v8-12421-no-lazy-feedback.js │ │ ├── regress-v8-12421.js │ │ ├── regress-v8-12472.js │ │ ├── regress-v8-12595.js │ │ ├── regress-v8-12632.js │ │ ├── regress-v8-12671.js │ │ ├── regress-v8-12688.js │ │ ├── regress-v8-12705.js │ │ ├── regress-v8-12729-1.mjs │ │ ├── regress-v8-12729.mjs │ │ ├── regress-v8-12762.js │ │ ├── regress-v8-13037.js │ │ ├── regress-v8-13097.js │ │ ├── regress-v8-13110.js │ │ ├── regress-v8-13181.js │ │ ├── regress-v8-13190.js │ │ ├── regress-v8-13410.js │ │ ├── regress-v8-13445.js │ │ ├── regress-v8-13906.js │ │ ├── regress-v8-4153-1.js │ │ ├── regress-v8-4839.js │ │ ├── regress-v8-4972.js │ │ ├── regress-v8-5009.js │ │ ├── regress-v8-5254-1.js │ │ ├── regress-v8-5254-2.js │ │ ├── regress-v8-5255-1.js │ │ ├── regress-v8-5255-2.js │ │ ├── regress-v8-5255-3.js │ │ ├── regress-v8-5697.js │ │ ├── regress-v8-5848.js │ │ ├── regress-v8-5958.js │ │ ├── regress-v8-6515.js │ │ ├── regress-v8-6706.js │ │ ├── regress-v8-6712.js │ │ ├── regress-v8-6716.js │ │ ├── regress-v8-6906.js │ │ ├── regress-v8-6940.js │ │ ├── regress-v8-7245.js │ │ ├── regress-v8-7682.js │ │ ├── regress-v8-7725.js │ │ ├── regress-v8-7848.js │ │ ├── regress-v8-8070.js │ │ ├── regress-v8-8357.js │ │ ├── regress-v8-8445-2.js │ │ ├── regress-v8-8445.js │ │ ├── regress-v8-8770.js │ │ ├── regress-v8-8799.js │ │ ├── regress-v8-9233.js │ │ ├── regress-v8-9243.js │ │ ├── regress-v8-9267-1.js │ │ ├── regress-v8-9267-2.js │ │ ├── regress-v8-9394-2.js │ │ ├── regress-v8-9394.js │ │ ├── regress-v8-9460.js │ │ ├── regress-v8-9511.js │ │ ├── regress-v8-9534.js │ │ ├── regress-v8-9656.js │ │ ├── regress-v8-9758.js │ │ ├── regress-v8-9825.mjs │ │ ├── regress-weakening-multiplication.js │ │ ├── regress-x87.js │ │ ├── regress_967104.js │ │ ├── setter.js │ │ ├── short-circuit.js │ │ ├── splice-missing-wb.js │ │ ├── string-compare-memcmp.js │ │ ├── string-fromcharcode-sideeffect.js │ │ ├── string-next-encoding.js │ │ ├── string-split-monkey-patching.js │ │ ├── typed-array-lifetime.js │ │ └── wasm │ │ │ ├── condition-change-during-branch-elimination.js │ │ │ ├── export-wrapper-canonical-types.js │ │ │ ├── i32-lowering-inlining.js │ │ │ ├── loop-stack-check.js │ │ │ ├── regress-02256.js │ │ │ ├── regress-02256b.js │ │ │ ├── regress-02862.js │ │ │ ├── regress-1010272.js │ │ │ ├── regress-10126-streaming.js │ │ │ ├── regress-10126.js │ │ │ ├── regress-1014798.js │ │ │ ├── regress-1016515.js │ │ │ ├── regress-1026680.js │ │ │ ├── regress-1027410.js │ │ │ ├── regress-1029642.js │ │ │ ├── regress-1030103.js │ │ │ ├── regress-10309.js │ │ │ ├── regress-1032753.js │ │ │ ├── regress-1033948.js │ │ │ ├── regress-1034394.js │ │ │ ├── regress-1045225.js │ │ │ ├── regress-1045737.js │ │ │ ├── regress-1046472.js │ │ │ ├── regress-1048241.js │ │ │ ├── regress-1051912.js │ │ │ ├── regress-1054466.js │ │ │ ├── regress-1065599.js │ │ │ ├── regress-1065635.js │ │ │ ├── regress-1065852.js │ │ │ ├── regress-1067621.js │ │ │ ├── regress-1070078.js │ │ │ ├── regress-10702.js │ │ │ ├── regress-1073553.js │ │ │ ├── regress-1074586-b.js │ │ │ ├── regress-1074586.js │ │ │ ├── regress-1075953.js │ │ │ ├── regress-1079449.js │ │ │ ├── regress-1080902.js │ │ │ ├── regress-1081030.js │ │ │ ├── regress-10831.js │ │ │ ├── regress-1084151.js │ │ │ ├── regress-10898.js │ │ │ ├── regress-1101304.js │ │ │ ├── regress-11024.js │ │ │ ├── regress-1111522.js │ │ │ ├── regress-1112124.js │ │ │ ├── regress-1114005.js │ │ │ ├── regress-1116019.js │ │ │ ├── regress-11206.js │ │ │ ├── regress-1124885.js │ │ │ ├── regress-1125951.js │ │ │ ├── regress-1132461.js │ │ │ ├── regress-11335.js │ │ │ ├── regress-1137582.js │ │ │ ├── regress-1137608.js │ │ │ ├── regress-1140549.js │ │ │ ├── regress-1145135.js │ │ │ ├── regress-1146861.js │ │ │ ├── regress-11472.js │ │ │ ├── regress-1152937.js │ │ │ ├── regress-1153442.js │ │ │ ├── regress-1161555.js │ │ │ ├── regress-1161654.js │ │ │ ├── regress-1161954.js │ │ │ ├── regress-1165966.js │ │ │ ├── regress-1168116.js │ │ │ ├── regress-1171788.js │ │ │ ├── regress-1179025.js │ │ │ ├── regress-1179065.js │ │ │ ├── regress-1179182.js │ │ │ ├── regress-1180690.js │ │ │ ├── regress-11809.js │ │ │ ├── regress-1184964.js │ │ │ ├── regress-1185464.js │ │ │ ├── regress-1187831.js │ │ │ ├── regress-1188825.js │ │ │ ├── regress-1188975.js │ │ │ ├── regress-1189454.js │ │ │ ├── regress-1196837.js │ │ │ ├── regress-1197393.js │ │ │ ├── regress-1199662.js │ │ │ ├── regress-1200231.js │ │ │ ├── regress-1201340.js │ │ │ ├── regress-1202736.js │ │ │ ├── regress-1207263.js │ │ │ ├── regress-1215808.js │ │ │ ├── regress-1217064.js │ │ │ ├── regress-1220855.js │ │ │ ├── regress-12270.js │ │ │ ├── regress-1227351.js │ │ │ ├── regress-1228720.js │ │ │ ├── regress-1231950.js │ │ │ ├── regress-12330.js │ │ │ ├── regress-1236958.js │ │ │ ├── regress-1237024.js │ │ │ ├── regress-1239116.js │ │ │ ├── regress-1239116b.js │ │ │ ├── regress-1239522.js │ │ │ ├── regress-1239954.js │ │ │ ├── regress-1242300.js │ │ │ ├── regress-1242689.js │ │ │ ├── regress-1247659.js │ │ │ ├── regress-1248024.js │ │ │ ├── regress-1251465.js │ │ │ ├── regress-1254674.js │ │ │ ├── regress-1254675.js │ │ │ ├── regress-1255354.js │ │ │ ├── regress-12624.js │ │ │ ├── regress-1264462.js │ │ │ ├── regress-1271244.js │ │ │ ├── regress-1271456.js │ │ │ ├── regress-1271538.js │ │ │ ├── regress-1272204.js │ │ │ ├── regress-1273705.js │ │ │ ├── regress-12789.js │ │ │ ├── regress-1279151.js │ │ │ ├── regress-1282224.js │ │ │ ├── regress-1283042.js │ │ │ ├── regress-1283395.js │ │ │ ├── regress-1284980.js │ │ │ ├── regress-1286253.js │ │ │ ├── regress-12866.js │ │ │ ├── regress-12867.js │ │ │ ├── regress-12874.js │ │ │ ├── regress-1289678.js │ │ │ ├── regress-1290079.js │ │ │ ├── regress-1294384.js │ │ │ ├── regress-12945.js │ │ │ ├── regress-1296876.js │ │ │ ├── regress-1299183.js │ │ │ ├── regress-13061.js │ │ │ ├── regress-1308333.js │ │ │ ├── regress-13118.js │ │ │ ├── regress-1314184.js │ │ │ ├── regress-1314363.js │ │ │ ├── regress-13230.js │ │ │ ├── regress-13290.js │ │ │ ├── regress-1338150.js │ │ │ ├── regress-1339153.js │ │ │ ├── regress-1347073.js │ │ │ ├── regress-1364036.js │ │ │ ├── regress-13700.js │ │ │ ├── regress-13715.js │ │ │ ├── regress-13732.js │ │ │ ├── regress-1374535.js │ │ │ ├── regress-1379364.js │ │ │ ├── regress-1380498.js │ │ │ ├── regress-1380646.js │ │ │ ├── regress-13826.js │ │ │ ├── regress-1388938.js │ │ │ ├── regress-1388942.js │ │ │ ├── regress-13939.js │ │ │ ├── regress-13946.js │ │ │ ├── regress-13956.js │ │ │ ├── regress-1395604.js │ │ │ ├── regress-1403398.js │ │ │ ├── regress-14047.js │ │ │ ├── regress-1408337.js │ │ │ ├── regress-1412940.js │ │ │ ├── regress-1416758.js │ │ │ ├── regress-1417516.js │ │ │ ├── regress-1417908.js │ │ │ ├── regress-1418706.js │ │ │ ├── regress-1430858.js │ │ │ ├── regress-1432453.js │ │ │ ├── regress-1443218.js │ │ │ ├── regress-1446221.js │ │ │ ├── regress-1447367.js │ │ │ ├── regress-1448663.js │ │ │ ├── regress-1449208.js │ │ │ ├── regress-5531.js │ │ │ ├── regress-5800.js │ │ │ ├── regress-5860.js │ │ │ ├── regress-5884.js │ │ │ ├── regress-5888.js │ │ │ ├── regress-5911.js │ │ │ ├── regress-6054.js │ │ │ ├── regress-6164.js │ │ │ ├── regress-643595.js │ │ │ ├── regress-644682.js │ │ │ ├── regress-647649.js │ │ │ ├── regress-648079.js │ │ │ ├── regress-651961.js │ │ │ ├── regress-654377.js │ │ │ ├── regress-663994.js │ │ │ ├── regress-666741.js │ │ │ ├── regress-667745.js │ │ │ ├── regress-670683.js │ │ │ ├── regress-674447.js │ │ │ ├── regress-680938.js │ │ │ ├── regress-684858.js │ │ │ ├── regress-688876.js │ │ │ ├── regress-689450.js │ │ │ ├── regress-6931.js │ │ │ ├── regress-694433.js │ │ │ ├── regress-698587.js │ │ │ ├── regress-699485.js │ │ │ ├── regress-702460.js │ │ │ ├── regress-702839.js │ │ │ ├── regress-7033.js │ │ │ ├── regress-7035.js │ │ │ ├── regress-703568.js │ │ │ ├── regress-708714.js │ │ │ ├── regress-709684.js │ │ │ ├── regress-710844.js │ │ │ ├── regress-711203.js │ │ │ ├── regress-712569.js │ │ │ ├── regress-717056.js │ │ │ ├── regress-717194.js │ │ │ ├── regress-722445.js │ │ │ ├── regress-724846.js │ │ │ ├── regress-724851.js │ │ │ ├── regress-724972.js │ │ │ ├── regress-727219.js │ │ │ ├── regress-727222.js │ │ │ ├── regress-727560.js │ │ │ ├── regress-729991.js │ │ │ ├── regress-734108.js │ │ │ ├── regress-734246.js │ │ │ ├── regress-734345.js │ │ │ ├── regress-7353.js │ │ │ ├── regress-7364.js │ │ │ ├── regress-736584.js │ │ │ ├── regress-7366.js │ │ │ ├── regress-737069.js │ │ │ ├── regress-739768.js │ │ │ ├── regress-7422.js │ │ │ ├── regress-7499.js │ │ │ ├── regress-7508.js │ │ │ ├── regress-752423.js │ │ │ ├── regress-753496.js │ │ │ ├── regress-7565.js │ │ │ ├── regress-757217.js │ │ │ ├── regress-7579.js │ │ │ ├── regress-7582.js │ │ │ ├── regress-763439.js │ │ │ ├── regress-769637.js │ │ │ ├── regress-769846.js │ │ │ ├── regress-775366.js │ │ │ ├── regress-7785.js │ │ │ ├── regress-782280.js │ │ │ ├── regress-784050.js │ │ │ ├── regress-7914.js │ │ │ ├── regress-791810.js │ │ │ ├── regress-793551.js │ │ │ ├── regress-797846.js │ │ │ ├── regress-799952.js │ │ │ ├── regress-800756.js │ │ │ ├── regress-801785.js │ │ │ ├── regress-801850.js │ │ │ ├── regress-802244.js │ │ │ ├── regress-803427.js │ │ │ ├── regress-803788.js │ │ │ ├── regress-8059.js │ │ │ ├── regress-808012.js │ │ │ ├── regress-808848.js │ │ │ ├── regress-808980.js │ │ │ ├── regress-8094.js │ │ │ ├── regress-8095.js │ │ │ ├── regress-810973.js │ │ │ ├── regress-810973b.js │ │ │ ├── regress-812005.js │ │ │ ├── regress-813440.js │ │ │ ├── regress-816226.js │ │ │ ├── regress-817380.js │ │ │ ├── regress-819869.js │ │ │ ├── regress-820802.js │ │ │ ├── regress-824681.js │ │ │ ├── regress-825087a.js │ │ │ ├── regress-825087b.js │ │ │ ├── regress-827806.js │ │ │ ├── regress-834619.js │ │ │ ├── regress-834693.js │ │ │ ├── regress-836141.js │ │ │ ├── regress-837417.js │ │ │ ├── regress-840757.js │ │ │ ├── regress-842501.js │ │ │ ├── regress-843563.js │ │ │ ├── regress-8533.js │ │ │ ├── regress-853453.js │ │ │ ├── regress-854011.js │ │ │ ├── regress-854050.js │ │ │ ├── regress-863810.js │ │ │ ├── regress-864509.js │ │ │ ├── regress-873600.js │ │ │ ├── regress-875556.js │ │ │ ├── regress-8846.js │ │ │ ├── regress-8896.js │ │ │ ├── regress-894307.js │ │ │ ├── regress-894374.js │ │ │ ├── regress-8947.js │ │ │ ├── regress-898932.js │ │ │ ├── regress-9017.js │ │ │ ├── regress-905815.js │ │ │ ├── regress-910824.js │ │ │ ├── regress-913804.js │ │ │ ├── regress-916869.js │ │ │ ├── regress-917412.js │ │ │ ├── regress-917588.js │ │ │ ├── regress-917588b.js │ │ │ ├── regress-918149.js │ │ │ ├── regress-918284.js │ │ │ ├── regress-918917.js │ │ │ ├── regress-919308.js │ │ │ ├── regress-919533.js │ │ │ ├── regress-9209.js │ │ │ ├── regress-922670.js │ │ │ ├── regress-922933.js │ │ │ ├── regress-924843.js │ │ │ ├── regress-924905.js │ │ │ ├── regress-925671.js │ │ │ ├── regress-935138.js │ │ │ ├── regress-940296.js │ │ │ ├── regress-9425.js │ │ │ ├── regress-9447.js │ │ │ ├── regress-946350.js │ │ │ ├── regress-948228.js │ │ │ ├── regress-952342.js │ │ │ ├── regress-956771.js │ │ │ ├── regress-956771b.js │ │ │ ├── regress-957405.js │ │ │ ├── regress-961129.js │ │ │ ├── regress-964607.js │ │ │ ├── regress-968078.js │ │ │ ├── regress-9759.js │ │ │ ├── regress-980007.js │ │ │ ├── regress-9832.js │ │ │ ├── regress-985154.js │ │ │ ├── regress-crbug-1002388.js │ │ │ ├── regress-crbug-1006631.js │ │ │ ├── regress-crbug-1047368.js │ │ │ ├── regress-crbug-1057094.js │ │ │ ├── regress-crbug-1168386.js │ │ │ ├── regress-crbug-1168612.js │ │ │ ├── regress-crbug-1172912.js │ │ │ ├── regress-crbug-1203692.js │ │ │ ├── regress-crbug-1320614.js │ │ │ ├── regress-crbug-1338075.js │ │ │ ├── regress-crbug-1338980.js │ │ │ ├── regress-crbug-1339321.js │ │ │ ├── regress-crbug-1340488.js │ │ │ ├── regress-crbug-1341180.js │ │ │ ├── regress-crbug-1355070.js │ │ │ ├── regress-crbug-1356718.js │ │ │ ├── regress-crbug-1407594.js │ │ │ ├── regress-crbug-746835.js │ │ │ ├── regress-crbug-772056.js │ │ │ ├── regress-crbug-816961.js │ │ │ ├── regress-crbug-969498.js │ │ │ ├── regress-inlining-throw.js │ │ │ ├── regress-struct-set-into-unreachable.js │ │ │ ├── regress-ubsan.js │ │ │ ├── regress-v8-9106.js │ │ │ ├── regress1192313.js │ │ │ ├── typecheck-null-undefined.js │ │ │ └── wasm-typer-incompatible-ref-cast.js │ ├── reindexing-in-classes.js │ ├── resizablearraybuffer-growablesharedarraybuffer.js │ ├── result-table-max.js │ ├── result-table-min.js │ ├── runtime-call-stats.js │ ├── runtime-callstats-helpers.js │ ├── samevalue.js │ ├── scanner.js │ ├── scope-calls-eval.js │ ├── sealed-array-reduce.js │ ├── search-string-multiple.js │ ├── serialize-after-execute.js │ ├── serialize-deserialize-now.js │ ├── serialize-embedded-error.js │ ├── serialize-ic.js │ ├── set-prototype-of-Object_prototype.js │ ├── setter-on-constructor-prototype.js │ ├── setters-on-elements.js │ ├── shared-function-tier-up-turbo.js │ ├── shared-memory │ │ ├── brand-checks.js │ │ ├── cannot-redefine-properties.js │ │ ├── client-gc.js │ │ ├── condition-workers.js │ │ ├── condition.js │ │ ├── mutex-lock-twice.js │ │ ├── mutex-workers.js │ │ ├── mutex.js │ │ ├── optimize-non-instance.js │ │ ├── private-field.js │ │ ├── private-name.js │ │ ├── regress-crbug-1425710.js │ │ ├── regress-crbug-1429570.js │ │ ├── regress-crbug-1449611.js │ │ ├── shared-array-atomics-workers.js │ │ ├── shared-array-atomics.js │ │ ├── shared-array-concat.js │ │ ├── shared-array-surface.js │ │ ├── shared-array-workers.js │ │ ├── shared-external-string-dictionary-lookup.js │ │ ├── shared-external-string-megamorphic-ic.js │ │ ├── shared-object-has-instance.js │ │ ├── shared-string-copy-on-share-large.js │ │ ├── shared-string-copy-on-share.js │ │ ├── shared-string-in-code-object.js │ │ ├── shared-string-in-global-object-optimized.js │ │ ├── shared-string-in-weak-map.js │ │ ├── shared-string-promotion-major.js │ │ ├── shared-string-promotion-minor.js │ │ ├── shared-string.js │ │ ├── shared-struct-atomics-workers.js │ │ ├── shared-struct-atomics.js │ │ ├── shared-struct-property-storage.js │ │ ├── shared-struct-surface.js │ │ ├── shared-struct-workers-optimized-code.js │ │ ├── shared-struct-workers.js │ │ ├── shared-value-barrier-optimization.js │ │ ├── shrink-large-object.js │ │ └── value-serializer.js │ ├── shift-for-integer-div.js │ ├── shifts.js │ ├── short-circuit-boolean.js │ ├── simple-constructor.js │ ├── sin-cos.js │ ├── skipping-inner-functions-bailout.js │ ├── skipping-inner-functions.js │ ├── sloppy-arguments-property-access.js │ ├── smi-mul-const.js │ ├── smi-mul.js │ ├── smi-negative-zero.js │ ├── smi-ops-inlined.js │ ├── smi-ops.js │ ├── smi-representation.js │ ├── sparse-array.js │ ├── splice-proxy.js │ ├── spread-large-array.js │ ├── spread-large-map.js │ ├── spread-large-set.js │ ├── spread-large-string.js │ ├── stack-overflow-arity-catch-noinline.js │ ├── stack-trace-cpp-function-template-1.js │ ├── stack-trace-cpp-function-template-2.js │ ├── stack-traces-2.js │ ├── stack-traces-class-fields.js │ ├── stack-traces-custom-lazy.js │ ├── stack-traces-custom.js │ ├── stack-traces-overflow.js │ ├── stack-traces.js │ ├── stackoverflow-underapplication.js │ ├── statistics-extension.js │ ├── store-dictionary.js │ ├── store-load-elision-aliasing.js │ ├── str-to-num.js │ ├── stress-array-push.js │ ├── strict-equals.js │ ├── strict-mode-eval.js │ ├── strict-mode-implicit-receiver.js │ ├── strict-mode-opt.js │ ├── strict-mode.js │ ├── string-add.js │ ├── string-case.js │ ├── string-charat.js │ ├── string-charcodeat-external.js │ ├── string-charcodeat.js │ ├── string-compare-alignment.js │ ├── string-concat.js │ ├── string-deopt.js │ ├── string-equal.js │ ├── string-external-cached.js │ ├── string-externalize.js │ ├── string-flatten.js │ ├── string-forwarding-table.js │ ├── string-fromcharcode.js │ ├── string-index.js │ ├── string-indexof-1.js │ ├── string-indexof-2.js │ ├── string-lastindexof.js │ ├── string-localecompare.js │ ├── string-match.js │ ├── string-normalize.js │ ├── string-oom-array-join.js │ ├── string-oom-concat.js │ ├── string-oom-replace-global-regexp-with-string.js │ ├── string-oom-replace-regexp-global-with-function.js │ ├── string-pad.js │ ├── string-replace-gc.js │ ├── string-replace-one-char.js │ ├── string-replace-with-empty.js │ ├── string-replace.js │ ├── string-search.js │ ├── string-slices-regexp.js │ ├── string-slices.js │ ├── string-split-cache.js │ ├── string-split.js │ ├── string-trim.js │ ├── string-wrapper.js │ ├── strong-rooted-literals.js │ ├── substr.js │ ├── sum-0-plus-undefined-is-NaN.js │ ├── switch-opt.js │ ├── switch.js │ ├── temporal │ │ ├── calendar-constructor.js │ │ ├── calendar-date-add.js │ │ ├── calendar-date-from-fields.js │ │ ├── calendar-date-until.js │ │ ├── calendar-day-of-week.js │ │ ├── calendar-day-of-year.js │ │ ├── calendar-day.js │ │ ├── calendar-days-in-month.js │ │ ├── calendar-days-in-week.js │ │ ├── calendar-days-in-year.js │ │ ├── calendar-fields.js │ │ ├── calendar-from.js │ │ ├── calendar-in-leap-year.js │ │ ├── calendar-merge-fields.js │ │ ├── calendar-month-code.js │ │ ├── calendar-month-day-from-fields.js │ │ ├── calendar-month.js │ │ ├── calendar-months-in-year.js │ │ ├── calendar-week-of-year.js │ │ ├── calendar-year-month-from-fields.js │ │ ├── calendar-year.js │ │ ├── duration-abs.js │ │ ├── duration-add.js │ │ ├── duration-constructor.js │ │ ├── duration-from.js │ │ ├── duration-negated.js │ │ ├── duration-to-json-boundary-cases.js │ │ ├── duration-to-json.js │ │ ├── duration-valueOf.js │ │ ├── duration-with.js │ │ ├── function-exist-no-intl.js │ │ ├── function-exist.js │ │ ├── instant-add.js │ │ ├── instant-compare.js │ │ ├── instant-constructor.js │ │ ├── instant-equals.js │ │ ├── instant-from-epoch-microseconds.js │ │ ├── instant-from-epoch-milliseconds.js │ │ ├── instant-from-epoch-nanoseconds.js │ │ ├── instant-from-epoch-seconds.js │ │ ├── instant-subtract.js │ │ ├── instant-to-json.js │ │ ├── instant-toJSON.js │ │ ├── instant-valueOf.js │ │ ├── plain-date-add.js │ │ ├── plain-date-compare.js │ │ ├── plain-date-constructor.js │ │ ├── plain-date-equals.js │ │ ├── plain-date-from.js │ │ ├── plain-date-get-calendar.js │ │ ├── plain-date-get-day.js │ │ ├── plain-date-get-dayOfWeek.js │ │ ├── plain-date-get-dayOfYear.js │ │ ├── plain-date-get-daysInMonth.js │ │ ├── plain-date-get-daysInWeek.js │ │ ├── plain-date-get-daysInYear.js │ │ ├── plain-date-get-era.js │ │ ├── plain-date-get-eraYear.js │ │ ├── plain-date-get-inLeapYear.js │ │ ├── plain-date-get-iso-fields.js │ │ ├── plain-date-get-month.js │ │ ├── plain-date-get-monthCode.js │ │ ├── plain-date-get-monthsInYear.js │ │ ├── plain-date-get-weekOfYear.js │ │ ├── plain-date-get-year.js │ │ ├── plain-date-time-add.js │ │ ├── plain-date-time-compare.js │ │ ├── plain-date-time-constructor.js │ │ ├── plain-date-time-equals.js │ │ ├── plain-date-time-from.js │ │ ├── plain-date-time-get-calendar.js │ │ ├── plain-date-time-get-day.js │ │ ├── plain-date-time-get-dayOfWeek.js │ │ ├── plain-date-time-get-dayOfYear.js │ │ ├── plain-date-time-get-daysInMonth.js │ │ ├── plain-date-time-get-daysInWeek.js │ │ ├── plain-date-time-get-daysInYear.js │ │ ├── plain-date-time-get-era.js │ │ ├── plain-date-time-get-eraYear.js │ │ ├── plain-date-time-get-hour.js │ │ ├── plain-date-time-get-inLeapYear.js │ │ ├── plain-date-time-get-iso-fields.js │ │ ├── plain-date-time-get-microsecond.js │ │ ├── plain-date-time-get-millisecond.js │ │ ├── plain-date-time-get-minute.js │ │ ├── plain-date-time-get-month.js │ │ ├── plain-date-time-get-monthCode.js │ │ ├── plain-date-time-get-monthsInYear.js │ │ ├── plain-date-time-get-nanosecond.js │ │ ├── plain-date-time-get-second.js │ │ ├── plain-date-time-get-weekOfYear.js │ │ ├── plain-date-time-get-year.js │ │ ├── plain-date-time-subtract.js │ │ ├── plain-date-time-to-json.js │ │ ├── plain-date-time-to-plain-date.js │ │ ├── plain-date-time-to-plain-month-day.js │ │ ├── plain-date-time-to-plain-time.js │ │ ├── plain-date-time-to-plain-year-month.js │ │ ├── plain-date-time-valueOf.js │ │ ├── plain-date-time-with-calendar.js │ │ ├── plain-date-time-with-plain-date.js │ │ ├── plain-date-time-with-plain-time.js │ │ ├── plain-date-time-with.js │ │ ├── plain-date-to-json.js │ │ ├── plain-date-to-plain-date-time.js │ │ ├── plain-date-to-plain-month-day.js │ │ ├── plain-date-to-plain-year-month.js │ │ ├── plain-date-valueOf.js │ │ ├── plain-date-with-calendar.js │ │ ├── plain-date-with.js │ │ ├── temporal-helpers.js │ │ └── time-zone-constructor.js │ ├── test-async.js │ ├── test-builtins-setup.js │ ├── testcfg.py │ ├── thin-strings.js │ ├── third_party │ │ ├── object-keys │ │ │ ├── LICENSE │ │ │ └── object-keys.js │ │ └── regexp-pcre │ │ │ ├── LICENSE │ │ │ └── regexp-pcre.js │ ├── this-dynamic-lookup.js │ ├── this-in-callbacks.js │ ├── this-property-assignment.js │ ├── this.js │ ├── throw-and-catch-function.js │ ├── throw-exception-for-null-access.js │ ├── to-precision.js │ ├── to_number_order.js │ ├── tobool.js │ ├── toint32.js │ ├── tools │ │ ├── codemap.mjs │ │ ├── compiler-trace-flags-wasm.js │ │ ├── compiler-trace-flags.js │ │ ├── consarray.mjs │ │ ├── csvparser.mjs │ │ ├── dumpcpp.mjs │ │ ├── foozzie.js │ │ ├── foozzie_typed_arrays.js │ │ ├── foozzie_webassembly.js │ │ ├── log-ic.js │ │ ├── log.js │ │ ├── log_two_byte.js │ │ ├── processor-bigint.mjs │ │ ├── processor.mjs │ │ ├── profile.mjs │ │ ├── profile_view.mjs │ │ ├── splaytree.mjs │ │ ├── tickprocessor-test-func-info.log │ │ ├── tickprocessor-test-func-info.log.symbols.json │ │ ├── tickprocessor-test-large.default │ │ ├── tickprocessor-test-large.js │ │ ├── tickprocessor-test-large.log │ │ ├── tickprocessor-test-large.log.symbols.json │ │ ├── tickprocessor-test.default │ │ ├── tickprocessor-test.func-info │ │ ├── tickprocessor-test.gc-state │ │ ├── tickprocessor-test.ignore-unknown │ │ ├── tickprocessor-test.log │ │ ├── tickprocessor-test.log.symbols.json │ │ ├── tickprocessor-test.only-summary │ │ ├── tickprocessor-test.separate-bytecodes │ │ ├── tickprocessor-test.separate-ic │ │ ├── tickprocessor-test.separate-sparkplug-handlers │ │ ├── tickprocessor.mjs │ │ └── timeline.mjs │ ├── top-level-assignments.js │ ├── touint32.js │ ├── track-fields.js │ ├── transcendentals.js │ ├── transition-elements-kind.js │ ├── try-catch-default-destructuring.js │ ├── try-catch-extension-object.js │ ├── try-catch-scopes.js │ ├── try-finally-continue.js │ ├── try-finally-nested.js │ ├── try.js │ ├── turboshaft │ │ ├── simple.js │ │ ├── type-inference.js │ │ └── typed-optimizations.js │ ├── type-profile │ │ └── regress-707223.js │ ├── typed-array-slice.js │ ├── typedarray-constructor-mixed-bigint.js │ ├── typedarray-growablesharedarraybuffer-array-methods.js │ ├── typedarray-growablesharedarraybuffer-atomics.js │ ├── typedarray-growablesharedarraybuffer.js │ ├── typedarray-helpers.js │ ├── typedarray-resizablearraybuffer-array-methods.js │ ├── typedarray-resizablearraybuffer-atomics.js │ ├── typedarray-resizablearraybuffer-detach.js │ ├── typedarray-resizablearraybuffer.js │ ├── typeof.js │ ├── tzoffset-seoul-noi18n.js │ ├── tzoffset-seoul.js │ ├── tzoffset-transition-apia.js │ ├── tzoffset-transition-lord-howe.js │ ├── tzoffset-transition-moscow.js │ ├── tzoffset-transition-new-york-noi18n.js │ ├── tzoffset-transition-new-york.js │ ├── ubsan-fuzzerbugs.js │ ├── unary-minus-deopt.js │ ├── unary-op-throws-feedback.js │ ├── unbox-double-arrays.js │ ├── unbox-double-field-indexed.js │ ├── unbox-double-field.js │ ├── unbox-smi-field-indexed.js │ ├── unbox-smi-field.js │ ├── undeletable-functions.js │ ├── undetectable-compare.js │ ├── undetectable.js │ ├── unicode-case-overoptimization0.js │ ├── unicode-case-overoptimization1.js │ ├── unicode-string-to-number.js │ ├── unicode-test.js │ ├── unicodelctest-no-optimization.js │ ├── unicodelctest.js │ ├── unused-context-in-with.js │ ├── unusual-constructor.js │ ├── uri.js │ ├── value-callic-prototype-change.js │ ├── value-of.js │ ├── value-serializer.js │ ├── value-wrapper-accessor.js │ ├── value-wrapper.js │ ├── var.js │ ├── verify-assert-false.js │ ├── verify-check-false.js │ ├── verify-no-fail.js │ ├── wasm │ │ ├── OWNERS │ │ ├── adapter-frame.js │ │ ├── add-getters.js │ │ ├── anyfunc.js │ │ ├── array-bulk-operations.js │ │ ├── array-copy-benchmark.js │ │ ├── array-init-from-segment.js │ │ ├── asm-wasm-copy.js │ │ ├── asm-wasm-deopt.js │ │ ├── asm-wasm-exception-in-tonumber.js │ │ ├── asm-wasm-expr.js │ │ ├── asm-wasm-f32.js │ │ ├── asm-wasm-f64.js │ │ ├── asm-wasm-heap.js │ │ ├── asm-wasm-i32.js │ │ ├── asm-wasm-imports.js │ │ ├── asm-wasm-literals.js │ │ ├── asm-wasm-math-intrinsic.js │ │ ├── asm-wasm-memory.js │ │ ├── asm-wasm-names.js │ │ ├── asm-wasm-stack.js │ │ ├── asm-wasm-stdlib.js │ │ ├── asm-wasm-switch.js │ │ ├── asm-wasm-u32.js │ │ ├── asm-wasm.js │ │ ├── asm-with-wasm-off.js │ │ ├── async-compile.js │ │ ├── atomics-memory64.js │ │ ├── atomics-non-shared.js │ │ ├── atomics-stress.js │ │ ├── atomics.js │ │ ├── atomics64-stress.js │ │ ├── bigint-i64-to-imported-js-func.js │ │ ├── bigint-opt.js │ │ ├── bigint-rematerialize.js │ │ ├── bigint.js │ │ ├── bit-shift-right.js │ │ ├── bounds-check-64bit.js │ │ ├── bounds-check-turbofan.js │ │ ├── bulk-memory.js │ │ ├── call-ref.js │ │ ├── call_indirect.js │ │ ├── calls.js │ │ ├── code-flushing.js │ │ ├── code-space-overflow.js │ │ ├── committed-code-exhaustion.js │ │ ├── compare-exchange-stress.js │ │ ├── compare-exchange64-stress.js │ │ ├── compilation-hints-async-compilation.js │ │ ├── compilation-hints-decoder.js │ │ ├── compilation-hints-ignored.js │ │ ├── compilation-hints-lazy-validation.js │ │ ├── compilation-hints-streaming-compilation.js │ │ ├── compilation-hints-streaming-lazy-validation.js │ │ ├── compilation-hints-sync-compilation.js │ │ ├── compilation-limits-asm.js │ │ ├── compilation-limits.js │ │ ├── compiled-module-management.js │ │ ├── compiled-module-serialization.js │ │ ├── data-segments.js │ │ ├── disable-trap-handler.js │ │ ├── disallow-codegen.js │ │ ├── divrem-trap.js │ │ ├── element-segments-with-reftypes.js │ │ ├── embenchen │ │ │ ├── README │ │ │ ├── box2d.js │ │ │ ├── copy.js │ │ │ ├── corrections.js │ │ │ ├── fannkuch.js │ │ │ ├── fasta.js │ │ │ ├── lua_binarytrees.js │ │ │ ├── memops.js │ │ │ ├── primes.js │ │ │ └── zlib.js │ │ ├── empirical_max_memory.js │ │ ├── ensure-wasm-binaries-up-to-date.js │ │ ├── enter-and-leave-debug-state.js │ │ ├── enter-debug-state.js │ │ ├── errors.js │ │ ├── exceptions-api.js │ │ ├── exceptions-export.js │ │ ├── exceptions-externref.js │ │ ├── exceptions-gc.js │ │ ├── exceptions-import.js │ │ ├── exceptions-rethrow.js │ │ ├── exceptions-shared.js │ │ ├── exceptions-simd.js │ │ ├── exceptions-type-reflection.js │ │ ├── exceptions-utils.js │ │ ├── exceptions.js │ │ ├── export-global.js │ │ ├── export-identity.js │ │ ├── export-mutable-global.js │ │ ├── export-table.js │ │ ├── expose-wasm.js │ │ ├── extended-constants.js │ │ ├── externref-globals.js │ │ ├── externref-table.js │ │ ├── externref.js │ │ ├── ffi-error.js │ │ ├── ffi.js │ │ ├── float-constant-folding.js │ │ ├── function-names.js │ │ ├── function-prototype.js │ │ ├── futex.js │ │ ├── gc-buffer.js │ │ ├── gc-cast-type-inference.js │ │ ├── gc-casts-from-any.js │ │ ├── gc-casts-invalid.js │ │ ├── gc-casts-subtypes.js │ │ ├── gc-experimental-string-conversions.js │ │ ├── gc-experiments.js │ │ ├── gc-frame.js │ │ ├── gc-js-interop-async-debugger.js │ │ ├── gc-js-interop-async.js │ │ ├── gc-js-interop-collections.js │ │ ├── gc-js-interop-export.mjs │ │ ├── gc-js-interop-global-constructors.js │ │ ├── gc-js-interop-helpers.js │ │ ├── gc-js-interop-import.mjs │ │ ├── gc-js-interop-numeric.js │ │ ├── gc-js-interop-objects.js │ │ ├── gc-js-interop-wasm.js │ │ ├── gc-js-interop.js │ │ ├── gc-memory.js │ │ ├── gc-nominal.js │ │ ├── gc-null-traps.js │ │ ├── gc-optimizations.js │ │ ├── gc-ref-eq.js │ │ ├── gc-stress.js │ │ ├── gc-typecheck-reducer.js │ │ ├── gdbjit.js │ │ ├── generic-wrapper.js │ │ ├── globals-import-export-identity.js │ │ ├── globals.js │ │ ├── graceful_shutdown.js │ │ ├── graceful_shutdown_during_tierup.js │ │ ├── grow-huge-memory.js │ │ ├── grow-memory-detaching.js │ │ ├── grow-memory-in-branch.js │ │ ├── grow-memory-in-call.js │ │ ├── grow-memory-in-loop.js │ │ ├── grow-memory.js │ │ ├── grow-shared-memory.js │ │ ├── huge-memory.js │ │ ├── huge-typedarray.js │ │ ├── i31ref.js │ │ ├── import-function.js │ │ ├── import-memory.js │ │ ├── import-mutable-global.js │ │ ├── import-table.js │ │ ├── imported-function-types.js │ │ ├── incrementer.wasm │ │ ├── indirect-call-non-zero-table.js │ │ ├── indirect-calls.js │ │ ├── indirect-sig-mismatch.js │ │ ├── indirect-tables.js │ │ ├── inlining.js │ │ ├── instance-gc.js │ │ ├── instance-memory-gc-stress.js │ │ ├── instantiate-module-basic.js │ │ ├── instantiate-run-basic.js │ │ ├── js-api.js │ │ ├── js-wrapper-typechecks.js │ │ ├── large-offset.js │ │ ├── large-struct.js │ │ ├── lazy-compilation.js │ │ ├── lazy-feedback-vector-allocation.js │ │ ├── liftoff-debug.js │ │ ├── liftoff-simd-params.js │ │ ├── liftoff-trap-handler.js │ │ ├── liftoff.js │ │ ├── load-immutable.js │ │ ├── log-code-after-post-message.js │ │ ├── loop-rotation.js │ │ ├── loop-unrolling.js │ │ ├── many-memories-no-trap-handler.js │ │ ├── many-memories.js │ │ ├── many-modules.js │ │ ├── many-parameters.js │ │ ├── max-module-size-flag.js │ │ ├── max-wasm-functions.js │ │ ├── memory-external-call.js │ │ ├── memory-instance-validation.js │ │ ├── memory-size.js │ │ ├── memory.js │ │ ├── memory64.js │ │ ├── memory_1gb_oob.js │ │ ├── memory_2gb_oob.js │ │ ├── memory_4gb_oob.js │ │ ├── module-memory.js │ │ ├── multi-table-element-section.js │ │ ├── multi-value-simd.js │ │ ├── multi-value.js │ │ ├── multiple-code-spaces.js │ │ ├── mutable-globals.js │ │ ├── names.js │ │ ├── origin-trial-flags.js │ │ ├── parallel_compilation.js │ │ ├── params.js │ │ ├── print-code.js │ │ ├── prototype.js │ │ ├── receiver.js │ │ ├── recognize-imports.js │ │ ├── reference-globals-import.js │ │ ├── reference-globals.js │ │ ├── reference-table-js-interop.js │ │ ├── reference-tables.js │ │ ├── resizablearraybuffer-growablesharedarraybuffer-wasm.js │ │ ├── return-calls-eh.js │ │ ├── return-calls.js │ │ ├── runtime-type-canonicalization.js │ │ ├── serialization-with-compilation-hints.js │ │ ├── serialize-lazy-module.js │ │ ├── shared-arraybuffer-worker-simple-gc.js │ │ ├── shared-memory-gc-stress.js │ │ ├── shared-memory-worker-explicit-gc-stress.js │ │ ├── shared-memory-worker-gc-stress.js │ │ ├── shared-memory-worker-gc.js │ │ ├── shared-memory-worker-simple-gc.js │ │ ├── shared-memory-worker-stress.js │ │ ├── shared-memory.js │ │ ├── simd-call.js │ │ ├── simd-errors.js │ │ ├── simd-globals.js │ │ ├── simd-i64x2-mul.js │ │ ├── simd-lane-memory64.js │ │ ├── single-threaded-compilation.js │ │ ├── speculative-inlining.js │ │ ├── stack-push-root.js │ │ ├── stack-switching-export.js │ │ ├── stack-switching.js │ │ ├── stack.js │ │ ├── stackwalk.js │ │ ├── start-function.js │ │ ├── streaming-api.js │ │ ├── streaming-compile.js │ │ ├── streaming-error-position.js │ │ ├── streaming-trap-location.js │ │ ├── stringrefs-exec-gc.js │ │ ├── stringrefs-exec.js │ │ ├── stringrefs-invalid.js │ │ ├── stringrefs-js.js │ │ ├── stringrefs-regressions.js │ │ ├── stringrefs-valid.js │ │ ├── stringview-valuestack.js │ │ ├── table-access.js │ │ ├── table-copy-externref.js │ │ ├── table-copy.js │ │ ├── table-fill.js │ │ ├── table-get.js │ │ ├── table-grow-from-wasm.js │ │ ├── table-grow.js │ │ ├── table-limits.js │ │ ├── table-numeric-ops.js │ │ ├── table.js │ │ ├── tagged-stack-parameters.js │ │ ├── test-partial-serialization.js │ │ ├── test-serialization-with-lazy-compilation.js │ │ ├── test-wasm-module-builder.js │ │ ├── tier-up-testing-flag.js │ │ ├── torque-wrapper.js │ │ ├── trap-location.js │ │ ├── type-based-optimizations.js │ │ ├── type-casts-tests.js │ │ ├── type-reflection-with-externref.js │ │ ├── type-reflection-with-mv.js │ │ ├── type-reflection.js │ │ ├── typed-funcref.js │ │ ├── unicode-validation.js │ │ ├── unicode.js │ │ ├── unreachable-validation.js │ │ ├── unreachable.js │ │ ├── user-properties-common.js │ │ ├── user-properties-constructed.js │ │ ├── user-properties-exported.js │ │ ├── user-properties-module.js │ │ ├── user-properties-reexport.js │ │ ├── verify-module-basic-errors.js │ │ ├── wasm-api-overloading.js │ │ ├── wasm-default.js │ │ ├── wasm-dynamic-tiering.js │ │ ├── wasm-gc-externalize-internalize.js │ │ ├── wasm-gc-inlining-load-elimination.js │ │ ├── wasm-gc-inlining-nested.js │ │ ├── wasm-gc-inlining-stacktrace-api.js │ │ ├── wasm-gc-inlining-typeguard.js │ │ ├── wasm-gc-inlining.js │ │ ├── wasm-gc-js-ref.js │ │ ├── wasm-gc-js-roundtrip.js │ │ ├── wasm-gc-source-location.js │ │ ├── wasm-invalid-local.js │ │ ├── wasm-js-inlining-code-reloc.js │ │ ├── wasm-math-intrinsic.js │ │ ├── wasm-module-builder.js │ │ ├── wasm-object-api.js │ │ ├── wasm-wrapper-inlining.js │ │ ├── worker-memory.js │ │ ├── worker-module.js │ │ ├── worker-running-empty-loop-interruptible.js │ │ └── wrapper-compilation.js │ ├── whitespaces.js │ ├── whitespaces0.js │ ├── whitespaces1.js │ ├── whitespaces2.js │ ├── whitespaces3.js │ ├── whitespaces4.js │ ├── whitespaces5.js │ ├── whitespaces6.js │ ├── whitespaces7.js │ ├── whitespaces8.js │ ├── whitespaces9.js │ ├── with-function-expression.js │ ├── with-leave.js │ ├── with-parameter-access.js │ ├── with-prototype.js │ ├── with-readonly.js │ ├── with-value.js │ └── worker-ping-test.js ├── mkgrokdump │ ├── BUILD.gn │ ├── DEPS │ ├── README │ ├── mkgrokdump.cc │ ├── mkgrokdump.status │ └── testcfg.py ├── mozilla │ ├── BUILD.gn │ ├── mozilla-shell-emulation.js │ ├── mozilla.status │ └── testcfg.py ├── test262 │ ├── BUILD.gn │ ├── OWNERS │ ├── README │ ├── detachArrayBuffer.js │ ├── harness-adapt-donotevaluate.js │ ├── harness-adapt.js │ ├── harness-agent.js │ ├── harness-done.js │ ├── harness-ishtmldda.js │ ├── local-tests │ │ └── test │ │ │ ├── built-ins │ │ │ └── Map │ │ │ │ └── iterator-close-failure-after-set-failure.js │ │ │ ├── intl402 │ │ │ ├── DateTimeFormat │ │ │ │ └── 12.1.1_1.js │ │ │ └── NumberFormat │ │ │ │ └── 11.1.1_1.js │ │ │ └── language │ │ │ ├── expressions │ │ │ └── class │ │ │ │ ├── fields-inner-arrow-err-contains-arguments.js │ │ │ │ ├── fields-inner-arrow-eval-err-contains-arguments.js │ │ │ │ └── fields-inner-eval-arrow-err-contains-arguments.js │ │ │ ├── module-code │ │ │ ├── comment-single-line-html-close-comment-before-function.js │ │ │ └── comment-single-line-html-close-comment-newline-before-function.js │ │ │ └── statements │ │ │ └── class │ │ │ ├── fields-inner-arrow-err-contains-arguments.js │ │ │ ├── fields-inner-arrow-eval-err-contains-arguments.js │ │ │ └── fields-inner-eval-arrow-err-contains-arguments.js │ ├── prune-local-tests.sh │ ├── test262.status │ ├── testcfg.py │ └── upstream-local-tests.sh ├── torque │ ├── OWNERS │ └── test-torque.tq ├── unittests │ ├── BUILD.gn │ ├── DEPS │ ├── api │ │ ├── access-check-unittest.cc │ │ ├── accessor-unittest.cc │ │ ├── api-icu-unittest.cc │ │ ├── api-wasm-unittest.cc │ │ ├── context-unittest.cc │ │ ├── deserialize-unittest.cc │ │ ├── exception-unittest.cc │ │ ├── gc-callbacks-unittest.cc │ │ ├── interceptor-unittest.cc │ │ ├── isolate-unittest.cc │ │ ├── remote-object-unittest.cc │ │ ├── resource-constraints-unittest.cc │ │ ├── v8-maybe-unittest.cc │ │ ├── v8-object-unittest.cc │ │ └── v8-script-unittest.cc │ ├── asmjs │ │ ├── asm-scanner-unittest.cc │ │ └── asm-types-unittest.cc │ ├── assembler │ │ ├── assembler-x64-unittest.cc │ │ ├── disasm-arm-unittest.cc │ │ ├── disasm-arm64-unittest.cc │ │ ├── disasm-ia32-unittest.cc │ │ ├── disasm-loong64-unittest.cc │ │ ├── disasm-mips64-unittest.cc │ │ ├── disasm-ppc-unittest.cc │ │ ├── disasm-riscv-unittest.cc │ │ ├── disasm-s390-unittest.cc │ │ ├── disasm-x64-unittest.cc │ │ ├── macro-assembler-arm-unittest.cc │ │ ├── macro-assembler-arm64-unittest.cc │ │ ├── macro-assembler-ia32-unittest.cc │ │ ├── macro-assembler-loong64-unittest.cc │ │ ├── macro-assembler-mips64-unittest.cc │ │ ├── macro-assembler-ppc-unittest.cc │ │ ├── macro-assembler-riscv-unittest.cc │ │ ├── macro-assembler-s390-unittest.cc │ │ └── macro-assembler-x64-unittest.cc │ ├── avoid-windows-h-includes.cc │ ├── base │ │ ├── address-region-unittest.cc │ │ ├── atomic-utils-unittest.cc │ │ ├── atomicops-unittest.cc │ │ ├── bignum-dtoa-unittest.cc │ │ ├── bignum-unittest.cc │ │ ├── bits-unittest.cc │ │ ├── cpu-unittest.cc │ │ ├── division-by-constant-unittest.cc │ │ ├── double-unittest.cc │ │ ├── dtoa-unittest.cc │ │ ├── fast-dtoa-unittest.cc │ │ ├── fixed-dtoa-unittest.cc │ │ ├── flags-unittest.cc │ │ ├── functional-unittest.cc │ │ ├── hashmap-unittest.cc │ │ ├── ieee754-unittest.cc │ │ ├── iterator-unittest.cc │ │ ├── logging-unittest.cc │ │ ├── macros-unittest.cc │ │ ├── ostreams-unittest.cc │ │ ├── platform │ │ │ ├── condition-variable-unittest.cc │ │ │ ├── mutex-unittest.cc │ │ │ ├── platform-unittest.cc │ │ │ ├── semaphore-unittest.cc │ │ │ └── time-unittest.cc │ │ ├── region-allocator-unittest.cc │ │ ├── string-format-unittest.cc │ │ ├── sys-info-unittest.cc │ │ ├── template-utils-unittest.cc │ │ ├── threaded-list-unittest.cc │ │ ├── utils │ │ │ └── random-number-generator-unittest.cc │ │ ├── vector-unittest.cc │ │ ├── virtual-address-space-unittest.cc │ │ ├── vlq-base64-unittest.cc │ │ └── vlq-unittest.cc │ ├── codegen │ │ ├── aligned-slot-allocator-unittest.cc │ │ ├── code-layout-unittest.cc │ │ ├── code-pages-unittest.cc │ │ ├── code-stub-assembler-unittest.cc │ │ ├── code-stub-assembler-unittest.h │ │ ├── factory-unittest.cc │ │ ├── register-configuration-unittest.cc │ │ └── source-position-table-unittest.cc │ ├── common │ │ └── thread-isolation-unittest.cc │ ├── compiler-dispatcher │ │ ├── compiler-dispatcher-unittest.cc │ │ └── optimizing-compile-dispatcher-unittest.cc │ ├── compiler │ │ ├── arm │ │ │ └── instruction-selector-arm-unittest.cc │ │ ├── arm64 │ │ │ └── instruction-selector-arm64-unittest.cc │ │ ├── backend │ │ │ ├── instruction-selector-unittest.cc │ │ │ ├── instruction-selector-unittest.h │ │ │ ├── instruction-sequence-unittest.cc │ │ │ ├── instruction-sequence-unittest.h │ │ │ └── instruction-unittest.cc │ │ ├── branch-elimination-unittest.cc │ │ ├── bytecode-analysis-unittest.cc │ │ ├── checkpoint-elimination-unittest.cc │ │ ├── codegen-tester.cc │ │ ├── codegen-tester.h │ │ ├── codegen-unittest.cc │ │ ├── common-operator-reducer-unittest.cc │ │ ├── common-operator-unittest.cc │ │ ├── compiler-test-utils.h │ │ ├── compiler-unittest.cc │ │ ├── constant-folding-reducer-unittest.cc │ │ ├── control-equivalence-unittest.cc │ │ ├── control-flow-optimizer-unittest.cc │ │ ├── csa-load-elimination-unittest.cc │ │ ├── dead-code-elimination-unittest.cc │ │ ├── decompression-optimizer-unittest.cc │ │ ├── diamond-unittest.cc │ │ ├── effect-control-linearizer-unittest.cc │ │ ├── frame-unittest.cc │ │ ├── function-tester.cc │ │ ├── function-tester.h │ │ ├── graph-reducer-unittest.cc │ │ ├── graph-reducer-unittest.h │ │ ├── graph-trimmer-unittest.cc │ │ ├── graph-unittest.cc │ │ ├── graph-unittest.h │ │ ├── ia32 │ │ │ └── instruction-selector-ia32-unittest.cc │ │ ├── int64-lowering-unittest.cc │ │ ├── js-call-reducer-unittest.cc │ │ ├── js-create-lowering-unittest.cc │ │ ├── js-intrinsic-lowering-unittest.cc │ │ ├── js-native-context-specialization-unittest.cc │ │ ├── js-operator-unittest.cc │ │ ├── js-typed-lowering-unittest.cc │ │ ├── linear-scheduler-unittest.cc │ │ ├── linkage-tail-call-unittest.cc │ │ ├── load-elimination-unittest.cc │ │ ├── loong64 │ │ │ └── instruction-selector-loong64-unittest.cc │ │ ├── loop-peeling-unittest.cc │ │ ├── machine-operator-reducer-unittest.cc │ │ ├── machine-operator-unittest.cc │ │ ├── mips64 │ │ │ └── instruction-selector-mips64-unittest.cc │ │ ├── node-cache-unittest.cc │ │ ├── node-matchers-unittest.cc │ │ ├── node-properties-unittest.cc │ │ ├── node-test-utils.cc │ │ ├── node-test-utils.h │ │ ├── node-unittest.cc │ │ ├── opcodes-unittest.cc │ │ ├── persistent-unittest.cc │ │ ├── ppc │ │ │ └── instruction-selector-ppc-unittest.cc │ │ ├── redundancy-elimination-unittest.cc │ │ ├── regalloc │ │ │ ├── live-range-unittest.cc │ │ │ ├── mid-tier-register-allocator-unittest.cc │ │ │ ├── move-optimizer-unittest.cc │ │ │ └── register-allocator-unittest.cc │ │ ├── revec-unittest.cc │ │ ├── riscv32 │ │ │ └── instruction-selector-riscv32-unittest.cc │ │ ├── riscv64 │ │ │ └── instruction-selector-riscv64-unittest.cc │ │ ├── run-bytecode-graph-builder-unittest.cc │ │ ├── run-deopt-unittest.cc │ │ ├── run-jsbranches-unittest.cc │ │ ├── run-jscalls-unittest.cc │ │ ├── run-jsexceptions-unittest.cc │ │ ├── run-jsobjects-unittest.cc │ │ ├── run-jsops-unittest.cc │ │ ├── run-tail-calls-unittest.cc │ │ ├── s390 │ │ │ └── instruction-selector-s390-unittest.cc │ │ ├── schedule-unittest.cc │ │ ├── scheduler-rpo-unittest.cc │ │ ├── scheduler-unittest.cc │ │ ├── simplified-lowering-unittest.cc │ │ ├── simplified-operator-reducer-unittest.cc │ │ ├── simplified-operator-unittest.cc │ │ ├── sloppy-equality-unittest.cc │ │ ├── state-values-utils-unittest.cc │ │ ├── turboshaft │ │ │ ├── snapshot-table-unittest.cc │ │ │ ├── turboshaft-typer-unittest.cc │ │ │ └── turboshaft-types-unittest.cc │ │ ├── typed-optimization-unittest.cc │ │ ├── typer-unittest.cc │ │ ├── types-unittest.cc │ │ ├── value-numbering-reducer-unittest.cc │ │ ├── wasm-address-reassociation-unittest.cc │ │ ├── x64 │ │ │ └── instruction-selector-x64-unittest.cc │ │ └── zone-stats-unittest.cc │ ├── date │ │ ├── date-cache-unittest.cc │ │ └── date-unittest.cc │ ├── debug │ │ └── debug-property-iterator-unittest.cc │ ├── deoptimizer │ │ └── deoptimization-unittest.cc │ ├── diagnostics │ │ ├── eh-frame-iterator-unittest.cc │ │ ├── eh-frame-writer-unittest.cc │ │ └── gdb-jit-unittest.cc │ ├── execution │ │ ├── microtask-queue-unittest.cc │ │ ├── pointer-auth-arm64-unittest.cc │ │ ├── thread-termination-unittest.cc │ │ └── threads-unittest.cc │ ├── flags │ │ └── flag-definitions-unittest.cc │ ├── gay-fixed.cc │ ├── gay-fixed.h │ ├── gay-precision.cc │ ├── gay-precision.h │ ├── gay-shortest.cc │ ├── gay-shortest.h │ ├── heap │ │ ├── allocation-observer-unittest.cc │ │ ├── base │ │ │ ├── active-system-pages-unittest.cc │ │ │ ├── basic-slot-set-unittest.cc │ │ │ ├── run-all-unittests.cc │ │ │ └── worklist-unittest.cc │ │ ├── bitmap-test-utils.h │ │ ├── bitmap-unittest.cc │ │ ├── code-object-registry-unittest.cc │ │ ├── conservative-stack-visitor-unittest.cc │ │ ├── cppgc-js │ │ │ ├── embedder-roots-handler-unittest.cc │ │ │ ├── traced-reference-unittest.cc │ │ │ ├── unified-heap-snapshot-unittest.cc │ │ │ ├── unified-heap-unittest.cc │ │ │ ├── unified-heap-utils.cc │ │ │ ├── unified-heap-utils.h │ │ │ └── young-unified-heap-unittest.cc │ │ ├── cppgc │ │ │ ├── age-table-unittest.cc │ │ │ ├── allocation-unittest.cc │ │ │ ├── compactor-unittest.cc │ │ │ ├── concurrent-marking-unittest.cc │ │ │ ├── concurrent-sweeper-unittest.cc │ │ │ ├── cross-thread-persistent-unittest.cc │ │ │ ├── custom-spaces-unittest.cc │ │ │ ├── ephemeron-pair-unittest.cc │ │ │ ├── explicit-management-unittest.cc │ │ │ ├── finalizer-trait-unittest.cc │ │ │ ├── free-list-unittest.cc │ │ │ ├── garbage-collected-unittest.cc │ │ │ ├── gc-info-unittest.cc │ │ │ ├── gc-invoker-unittest.cc │ │ │ ├── heap-growing-unittest.cc │ │ │ ├── heap-object-header-unittest.cc │ │ │ ├── heap-page-unittest.cc │ │ │ ├── heap-registry-unittest.cc │ │ │ ├── heap-statistics-collector-unittest.cc │ │ │ ├── heap-unittest.cc │ │ │ ├── incremental-marking-schedule-unittest.cc │ │ │ ├── liveness-broker-unittest.cc │ │ │ ├── logging-unittest.cc │ │ │ ├── marker-unittest.cc │ │ │ ├── marking-verifier-unittest.cc │ │ │ ├── marking-visitor-unittest.cc │ │ │ ├── member-unittest.cc │ │ │ ├── metric-recorder-unittest.cc │ │ │ ├── minor-gc-unittest.cc │ │ │ ├── name-trait-unittest.cc │ │ │ ├── object-size-trait-unittest.cc │ │ │ ├── object-start-bitmap-unittest.cc │ │ │ ├── page-memory-unittest.cc │ │ │ ├── persistent-family-unittest.cc │ │ │ ├── platform-unittest.cc │ │ │ ├── prefinalizer-unittest.cc │ │ │ ├── run-all-unittests.cc │ │ │ ├── sanitizer-unittest.cc │ │ │ ├── source-location-unittest.cc │ │ │ ├── stack-unittest.cc │ │ │ ├── stats-collector-scopes-unittest.cc │ │ │ ├── stats-collector-unittest.cc │ │ │ ├── sweeper-unittest.cc │ │ │ ├── test-platform.cc │ │ │ ├── test-platform.h │ │ │ ├── testing-unittest.cc │ │ │ ├── tests.cc │ │ │ ├── tests.h │ │ │ ├── visitor-unittest.cc │ │ │ ├── weak-container-unittest.cc │ │ │ ├── workloads-unittest.cc │ │ │ └── write-barrier-unittest.cc │ │ ├── gc-idle-time-handler-unittest.cc │ │ ├── gc-tracer-unittest.cc │ │ ├── global-handles-unittest.cc │ │ ├── global-safepoint-unittest.cc │ │ ├── heap-controller-unittest.cc │ │ ├── heap-unittest.cc │ │ ├── heap-utils.cc │ │ ├── heap-utils.h │ │ ├── index-generator-unittest.cc │ │ ├── inner-pointer-resolution-unittest.cc │ │ ├── iterators-unittest.cc │ │ ├── lab-unittest.cc │ │ ├── list-unittest.cc │ │ ├── local-factory-unittest.cc │ │ ├── local-handles-unittest.cc │ │ ├── local-heap-unittest.cc │ │ ├── marking-unittest.cc │ │ ├── marking-worklist-unittest.cc │ │ ├── memory-reducer-unittest.cc │ │ ├── object-stats-unittest.cc │ │ ├── page-promotion-unittest.cc │ │ ├── persistent-handles-unittest.cc │ │ ├── progressbar-unittest.cc │ │ ├── safepoint-unittest.cc │ │ ├── shared-heap-unittest.cc │ │ ├── slot-set-unittest.cc │ │ ├── spaces-unittest.cc │ │ └── unmapper-unittest.cc │ ├── inspector │ │ └── inspector-unittest.cc │ ├── interpreter │ │ ├── bytecode-array-builder-unittest.cc │ │ ├── bytecode-array-iterator-unittest.cc │ │ ├── bytecode-array-random-iterator-unittest.cc │ │ ├── bytecode-array-writer-unittest.cc │ │ ├── bytecode-decoder-unittest.cc │ │ ├── bytecode-expectations-printer.cc │ │ ├── bytecode-expectations-printer.h │ │ ├── bytecode-generator-unittest.cc │ │ ├── bytecode-node-unittest.cc │ │ ├── bytecode-operands-unittest.cc │ │ ├── bytecode-register-allocator-unittest.cc │ │ ├── bytecode-register-optimizer-unittest.cc │ │ ├── bytecode-source-info-unittest.cc │ │ ├── bytecode-utils.h │ │ ├── bytecode_expectations │ │ │ ├── ArrayLiterals.golden │ │ │ ├── AssignmentsInBinaryExpression.golden │ │ │ ├── AsyncGenerators.golden │ │ │ ├── AsyncModules.golden │ │ │ ├── BasicBlockToBoolean.golden │ │ │ ├── BasicLoops.golden │ │ │ ├── BreakableBlocks.golden │ │ │ ├── CallAndSpread.golden │ │ │ ├── CallGlobal.golden │ │ │ ├── CallLookupSlot.golden │ │ │ ├── CallNew.golden │ │ │ ├── CallRuntime.golden │ │ │ ├── ClassAndSuperClass.golden │ │ │ ├── ClassDeclarations.golden │ │ │ ├── CompareBoolean.golden │ │ │ ├── CompareNil.golden │ │ │ ├── CompareTypeOf.golden │ │ │ ├── CompoundExpressions.golden │ │ │ ├── Conditional.golden │ │ │ ├── ConstVariable.golden │ │ │ ├── ConstVariableContextSlot.golden │ │ │ ├── ContextParameters.golden │ │ │ ├── ContextVariables.golden │ │ │ ├── CountOperators.golden │ │ │ ├── CreateArguments.golden │ │ │ ├── CreateRestParameter.golden │ │ │ ├── DeadCodeRemoval.golden │ │ │ ├── DeclareGlobals.golden │ │ │ ├── Delete.golden │ │ │ ├── DeleteLookupSlotInEval.golden │ │ │ ├── DestructuringAssignment.golden │ │ │ ├── DoDebugger.golden │ │ │ ├── ElideRedundantHoleChecks.golden │ │ │ ├── ElideRedundantLoadOperationOfImmutableContext.golden │ │ │ ├── Eval.golden │ │ │ ├── ForAwaitOf.golden │ │ │ ├── ForIn.golden │ │ │ ├── ForOf.golden │ │ │ ├── ForOfLoop.golden │ │ │ ├── FunctionLiterals.golden │ │ │ ├── GenerateTestUndetectable.golden │ │ │ ├── Generators.golden │ │ │ ├── GlobalCompoundExpressions.golden │ │ │ ├── GlobalCountOperators.golden │ │ │ ├── GlobalDelete.golden │ │ │ ├── HeapNumberConstants.golden │ │ │ ├── IIFE.golden │ │ │ ├── IfConditions.golden │ │ │ ├── IntegerConstants.golden │ │ │ ├── LetVariable.golden │ │ │ ├── LetVariableContextSlot.golden │ │ │ ├── LoadGlobal.golden │ │ │ ├── LogicalExpressions.golden │ │ │ ├── LookupSlot.golden │ │ │ ├── LookupSlotInEval.golden │ │ │ ├── Modules.golden │ │ │ ├── NewAndSpread.golden │ │ │ ├── NewTarget.golden │ │ │ ├── ObjectLiterals.golden │ │ │ ├── OuterContextVariables.golden │ │ │ ├── Parameters.golden │ │ │ ├── PrimitiveExpressions.golden │ │ │ ├── PrimitiveReturnStatements.golden │ │ │ ├── PrivateAccessorAccess.golden │ │ │ ├── PrivateAccessorDeclaration.golden │ │ │ ├── PrivateClassFieldAccess.golden │ │ │ ├── PrivateClassFields.golden │ │ │ ├── PrivateMethodAccess.golden │ │ │ ├── PrivateMethodDeclaration.golden │ │ │ ├── PropertyCall.golden │ │ │ ├── PropertyLoadStore.golden │ │ │ ├── PropertyLoads.golden │ │ │ ├── PropertyStores.golden │ │ │ ├── PublicClassFields.golden │ │ │ ├── RegExpLiterals.golden │ │ │ ├── RemoveRedundantLdar.golden │ │ │ ├── StandardForLoop.golden │ │ │ ├── StaticClassFields.golden │ │ │ ├── StaticPrivateMethodAccess.golden │ │ │ ├── StaticPrivateMethodDeclaration.golden │ │ │ ├── StoreGlobal.golden │ │ │ ├── StringConcat.golden │ │ │ ├── StringConstants.golden │ │ │ ├── SuperCallAndSpread.golden │ │ │ ├── Switch.golden │ │ │ ├── TemplateLiterals.golden │ │ │ ├── ThisFunction.golden │ │ │ ├── Throw.golden │ │ │ ├── TopLevelObjectLiterals.golden │ │ │ ├── TryCatch.golden │ │ │ ├── TryFinally.golden │ │ │ ├── Typeof.golden │ │ │ ├── UnaryOperators.golden │ │ │ ├── WideRegisters.golden │ │ │ └── WithStatement.golden │ │ ├── bytecodes-unittest.cc │ │ ├── constant-array-builder-unittest.cc │ │ ├── generate-bytecode-expectations.cc │ │ ├── interpreter-assembler-unittest.cc │ │ ├── interpreter-assembler-unittest.h │ │ ├── interpreter-intrinsics-unittest.cc │ │ ├── interpreter-tester.cc │ │ ├── interpreter-tester.h │ │ ├── interpreter-unittest.cc │ │ ├── source-position-matcher.cc │ │ ├── source-position-matcher.h │ │ └── source-positions-unittest.cc │ ├── js-atomics │ │ └── js-atomics-synchronization-primitive-unittest.cc │ ├── libplatform │ │ ├── DEPS │ │ ├── default-job-unittest.cc │ │ ├── default-platform-unittest.cc │ │ ├── default-worker-threads-task-runner-unittest.cc │ │ ├── single-threaded-default-platform-unittest.cc │ │ ├── task-queue-unittest.cc │ │ ├── tracing-unittest.cc │ │ └── worker-thread-unittest.cc │ ├── libsampler │ │ ├── sampler-unittest.cc │ │ └── signals-and-mutexes-unittest.cc │ ├── logging │ │ ├── counters-unittest.cc │ │ ├── log-unittest.cc │ │ └── runtime-call-stats-unittest.cc │ ├── numbers │ │ ├── bigint-unittest.cc │ │ ├── conversions-unittest.cc │ │ ├── diy-fp-unittest.cc │ │ └── strtod-unittest.cc │ ├── objects │ │ ├── array-list-unittest.cc │ │ ├── concurrent-descriptor-array-unittest.cc │ │ ├── concurrent-feedback-vector-unittest.cc │ │ ├── concurrent-js-array-unittest.cc │ │ ├── concurrent-prototype-unittest.cc │ │ ├── concurrent-script-context-table-unittest.cc │ │ ├── concurrent-string-unittest.cc │ │ ├── concurrent-transition-array-unittest.cc │ │ ├── dictionary-unittest.cc │ │ ├── elements-kind-unittest.cc │ │ ├── feedback-vector-unittest.cc │ │ ├── global-object-unittest.cc │ │ ├── hashcode-unittest.cc │ │ ├── inobject-slack-tracking-unittest.cc │ │ ├── intl-unittest.cc │ │ ├── managed-unittest.cc │ │ ├── modules-unittest.cc │ │ ├── object-unittest.cc │ │ ├── representation-unittest.cc │ │ ├── roots-unittest.cc │ │ ├── swiss-hash-table-helpers-unittest.cc │ │ ├── symbols-unittest.cc │ │ ├── value-serializer-unittest.cc │ │ ├── wasm-backing-store-unittest.cc │ │ ├── weakarraylist-unittest.cc │ │ ├── weakmaps-unittest.cc │ │ └── weaksets-unittest.cc │ ├── parser │ │ ├── ast-value-unittest.cc │ │ ├── decls-unittest.cc │ │ ├── parse-decision-unittest.cc │ │ ├── parsing-unittest.cc │ │ ├── preparser-unittest.cc │ │ ├── scanner-streams-unittest.cc │ │ ├── scanner-unittest.cc │ │ ├── scope-test-helper.h │ │ ├── unicode-helpers.cc │ │ └── unicode-helpers.h │ ├── profiler │ │ ├── circular-queue-unittest.cc │ │ └── strings-storage-unittest.cc │ ├── regexp │ │ └── regexp-unittest.cc │ ├── regress │ │ ├── regress-crbug-1041240-unittest.cc │ │ ├── regress-crbug-1056054-unittest.cc │ │ └── regress-crbug-938251-unittest.cc │ ├── run-all-unittests.cc │ ├── runtime │ │ └── runtime-debug-unittest.cc │ ├── sandbox │ │ └── sandbox-unittest.cc │ ├── strings │ │ ├── char-predicates-unittest.cc │ │ └── unicode-unittest.cc │ ├── tasks │ │ ├── background-compile-task-unittest.cc │ │ └── cancelable-tasks-unittest.cc │ ├── temporal │ │ └── temporal-parser-unittest.cc │ ├── test-helpers.cc │ ├── test-helpers.h │ ├── test-utils.cc │ ├── test-utils.h │ ├── testcfg.py │ ├── torque │ │ ├── earley-parser-unittest.cc │ │ ├── ls-json-unittest.cc │ │ ├── ls-message-unittest.cc │ │ ├── ls-server-data-unittest.cc │ │ ├── torque-unittest.cc │ │ └── torque-utils-unittest.cc │ ├── tracing │ │ └── traced-value-unittest.cc │ ├── unittests.status │ ├── utils │ │ ├── allocation-unittest.cc │ │ ├── bit-vector-unittest.cc │ │ ├── detachable-vector-unittest.cc │ │ ├── identity-map-unittest.cc │ │ ├── locked-queue-unittest.cc │ │ ├── sparse-bit-vector-unittest.cc │ │ ├── utils-unittest.cc │ │ └── version-unittest.cc │ ├── v8_unittests.cml │ ├── wasm │ │ ├── DIR_METADATA │ │ ├── OWNERS │ │ ├── decoder-unittest.cc │ │ ├── function-body-decoder-unittest.cc │ │ ├── leb-helper-unittest.cc │ │ ├── liftoff-register-unittests.cc │ │ ├── loop-assignment-analysis-unittest.cc │ │ ├── memory-protection-unittest.cc │ │ ├── module-decoder-memory64-unittest.cc │ │ ├── module-decoder-unittest.cc │ │ ├── simd-shuffle-unittest.cc │ │ ├── streaming-decoder-unittest.cc │ │ ├── string-builder-unittest.cc │ │ ├── struct-types-unittest.cc │ │ ├── subtyping-unittest.cc │ │ ├── trap-handler-posix-unittest.cc │ │ ├── trap-handler-simulator-unittest.cc │ │ ├── trap-handler-win-unittest.cc │ │ ├── trap-handler-x64-arm64-unittest.cc │ │ ├── wasm-code-manager-unittest.cc │ │ ├── wasm-compiler-unittest.cc │ │ ├── wasm-disassembler-unittest-bad-name-section.wasm.inc │ │ ├── wasm-disassembler-unittest-gc.wasm.inc │ │ ├── wasm-disassembler-unittest-gc.wat.inc │ │ ├── wasm-disassembler-unittest-mvp.wasm.inc │ │ ├── wasm-disassembler-unittest-mvp.wat.inc │ │ ├── wasm-disassembler-unittest-names.wasm.inc │ │ ├── wasm-disassembler-unittest-names.wat.inc │ │ ├── wasm-disassembler-unittest-simd.wasm.inc │ │ ├── wasm-disassembler-unittest-simd.wat.inc │ │ ├── wasm-disassembler-unittest-stringref.wasm.inc │ │ ├── wasm-disassembler-unittest-stringref.wat.inc │ │ ├── wasm-disassembler-unittest-too-many-ends.wasm.inc │ │ ├── wasm-disassembler-unittest-too-many-ends.wat.inc │ │ ├── wasm-disassembler-unittest.cc │ │ ├── wasm-gdbserver-unittest.cc │ │ ├── wasm-macro-gen-unittest.cc │ │ ├── wasm-module-builder-unittest.cc │ │ └── wasm-module-sourcemap-unittest.cc │ └── zone │ │ ├── zone-allocator-unittest.cc │ │ ├── zone-chunk-list-unittest.cc │ │ ├── zone-compact-set-unittest.cc │ │ ├── zone-unittest.cc │ │ └── zone-vector-unittest.cc ├── wasm-api-tests │ ├── BUILD.gn │ ├── DEPS │ ├── callbacks.cc │ ├── finalize.cc │ ├── globals.cc │ ├── hostref.cc │ ├── memory.cc │ ├── multi-return.cc │ ├── reflect.cc │ ├── regressions.cc │ ├── run-all-wasm-api-tests.cc │ ├── serialize.cc │ ├── startup-errors.cc │ ├── table.cc │ ├── testcfg.py │ ├── threads.cc │ ├── traps.cc │ ├── wasm-api-test.h │ └── wasm-api-tests.status ├── wasm-js │ ├── BUILD.gn │ ├── OWNERS │ ├── after.js │ ├── report.js │ ├── testcfg.py │ ├── testharness-additions.js │ ├── tests.tar.gz.sha1 │ ├── third_party │ │ ├── LICENSE.testharness │ │ └── testharness.js │ └── wasm-js.status ├── wasm-spec-tests │ ├── BUILD.gn │ ├── DIR_METADATA │ ├── OWNERS │ ├── testcfg.py │ ├── tests.tar.gz.sha1 │ └── wasm-spec-tests.status └── webkit │ ├── Array-isArray-expected.txt │ ├── Array-isArray.js │ ├── BUILD.gn │ ├── JSON-stringify-replacer-expected.txt │ ├── JSON-stringify-replacer.js │ ├── Object-create-expected.txt │ ├── Object-create.js │ ├── Object-defineProperties-expected.txt │ ├── Object-defineProperties.js │ ├── Object-keys-expected.txt │ ├── Object-keys.js │ ├── ToNumber-expected.txt │ ├── ToNumber.js │ ├── add-recovery-expected.txt │ ├── add-recovery.js │ ├── apply-varargs-expected.txt │ ├── apply-varargs.js │ ├── arguments-bad-index-expected.txt │ ├── arguments-bad-index.js │ ├── array-constructor-host-call-expected.txt │ ├── array-constructor-host-call.js │ ├── array-defineOwnProperty-expected.txt │ ├── array-defineOwnProperty.js │ ├── array-enumerators-functions-expected.txt │ ├── array-enumerators-functions.js │ ├── array-every-expected.txt │ ├── array-every.js │ ├── array-filter-expected.txt │ ├── array-filter.js │ ├── array-holes-expected.txt │ ├── array-holes.js │ ├── array-index-immediate-types-expected.txt │ ├── array-index-immediate-types.js │ ├── array-indexing-expected.txt │ ├── array-indexing.js │ ├── array-iterate-backwards-expected.txt │ ├── array-iterate-backwards.js │ ├── array-lastIndexOf-expected.txt │ ├── array-lastIndexOf.js │ ├── array-proto-func-length-getter-except-expected.txt │ ├── array-proto-func-length-getter-except.js │ ├── array-proto-func-property-getter-except-expected.txt │ ├── array-proto-func-property-getter-except.js │ ├── array-reduce-expected.txt │ ├── array-reduce.js │ ├── array-reduceRight-expected.txt │ ├── array-reduceRight.js │ ├── array-reset-large-index-expected.txt │ ├── array-reset-large-index.js │ ├── array-sort-numericCompare-expected.txt │ ├── array-sort-numericCompare.js │ ├── array-sort-reentrance-expected.txt │ ├── array-sort-reentrance.js │ ├── array-sort-small-sparse-array-with-large-length-expected.txt │ ├── array-sort-small-sparse-array-with-large-length.js │ ├── array-sort-sparse-expected.txt │ ├── array-sort-sparse.js │ ├── array-splice-expected.txt │ ├── array-splice.js │ ├── array-tostring-and-join-expected.txt │ ├── array-tostring-and-join.js │ ├── array-type-speculation-expected.txt │ ├── array-type-speculation.js │ ├── avl-crash-expected.txt │ ├── avl-crash.js │ ├── bitops-type-tag-expected.txt │ ├── bitops-type-tag.js │ ├── boolean-argument-prediction-expected.txt │ ├── boolean-argument-prediction.js │ ├── boxed-double-to-int-expected.txt │ ├── boxed-double-to-int.js │ ├── break-ASI-expected.txt │ ├── break-ASI.js │ ├── cached-call-uninitialized-arguments-expected.txt │ ├── cached-call-uninitialized-arguments.js │ ├── call-apply-crash-expected.txt │ ├── call-apply-crash.js │ ├── char-at-expected.txt │ ├── char-at.js │ ├── class-constructor-return-expected.txt │ ├── class-constructor-return.js │ ├── class-syntax-call-expected.txt │ ├── class-syntax-call.js │ ├── class-syntax-declaration-expected.txt │ ├── class-syntax-declaration.js │ ├── class-syntax-default-constructor-expected.txt │ ├── class-syntax-default-constructor.js │ ├── class-syntax-expression-expected.txt │ ├── class-syntax-expression.js │ ├── class-syntax-extends-expected.txt │ ├── class-syntax-extends.js │ ├── class-syntax-name-expected.txt │ ├── class-syntax-name.js │ ├── class-syntax-prototype-expected.txt │ ├── class-syntax-prototype.js │ ├── class-syntax-scoping-expected.txt │ ├── class-syntax-scoping.js │ ├── class-syntax-semicolon-expected.txt │ ├── class-syntax-semicolon.js │ ├── class-syntax-super-expected.txt │ ├── class-syntax-super.js │ ├── closure-inside-extra-arg-call-expected.txt │ ├── closure-inside-extra-arg-call.js │ ├── codegen-assign-nontemporary-as-rexp-expected.txt │ ├── codegen-assign-nontemporary-as-rexp.js │ ├── codegen-jless-expected.txt │ ├── codegen-jless.js │ ├── codegen-loops-logical-nodes-expected.txt │ ├── codegen-loops-logical-nodes.js │ ├── codegen-peephole-locals-expected.txt │ ├── codegen-peephole-locals.js │ ├── codegen-temporaries-expected.txt │ ├── codegen-temporaries.js │ ├── comparison-operators-expected.txt │ ├── comparison-operators-greater-expected.txt │ ├── comparison-operators-greater.js │ ├── comparison-operators-less-expected.txt │ ├── comparison-operators-less.js │ ├── comparison-operators.js │ ├── concat-while-having-a-bad-time-expected.txt │ ├── concat-while-having-a-bad-time.js │ ├── constant-encoding-expected.txt │ ├── constant-encoding.js │ ├── constant-folding-expected.txt │ ├── constant-folding.js │ ├── continue-break-multiple-labels-expected.txt │ ├── continue-break-multiple-labels.js │ ├── convert-nan-to-bool-expected.txt │ ├── convert-nan-to-bool.js │ ├── cyclic-prototypes-expected.txt │ ├── cyclic-prototypes.js │ ├── date-DST-pre-1970-expected.txt │ ├── date-DST-pre-1970.js │ ├── date-constructor-expected.txt │ ├── date-constructor.js │ ├── date-daysfrom1970-overflow-expected.txt │ ├── date-daysfrom1970-overflow.js │ ├── date-parse-comments-test-expected.txt │ ├── date-parse-comments-test.js │ ├── date-set-to-nan-expected.txt │ ├── date-set-to-nan.js │ ├── date-utc-timeclip-expected.txt │ ├── date-utc-timeclip.js │ ├── debugger-expected.txt │ ├── debugger.js │ ├── declaration-in-block-expected.txt │ ├── declaration-in-block.js │ ├── delete-getters-setters-expected.txt │ ├── delete-getters-setters.js │ ├── delete-then-put-expected.txt │ ├── delete-then-put.js │ ├── dfg-abs-backwards-propagation-expected.txt │ ├── dfg-abs-backwards-propagation.js │ ├── dfg-add-not-number-expected.txt │ ├── dfg-add-not-number.js │ ├── dfg-arguments-alias-escape-expected.txt │ ├── dfg-arguments-alias-escape.js │ ├── dfg-arguments-alias-expected.txt │ ├── dfg-arguments-alias-one-block-expected.txt │ ├── dfg-arguments-alias-one-block-osr-exit-expected.txt │ ├── dfg-arguments-alias-one-block-osr-exit.js │ ├── dfg-arguments-alias-one-block-overwrite-arguments-expected.txt │ ├── dfg-arguments-alias-one-block-overwrite-arguments.js │ ├── dfg-arguments-alias-one-block-overwrite-expected.txt │ ├── dfg-arguments-alias-one-block-overwrite.js │ ├── dfg-arguments-alias-one-block.js │ ├── dfg-arguments-alias.js │ ├── dfg-arguments-cross-code-origin-expected.txt │ ├── dfg-arguments-cross-code-origin.js │ ├── dfg-arguments-mixed-alias-expected.txt │ ├── dfg-arguments-mixed-alias.js │ ├── dfg-arguments-osr-exit-expected.txt │ ├── dfg-arguments-osr-exit-multiple-blocks-before-exit-expected.txt │ ├── dfg-arguments-osr-exit-multiple-blocks-before-exit.js │ ├── dfg-arguments-osr-exit-multiple-blocks-expected.txt │ ├── dfg-arguments-osr-exit-multiple-blocks.js │ ├── dfg-arguments-osr-exit.js │ ├── dfg-arguments-out-of-bounds-expected.txt │ ├── dfg-arguments-out-of-bounds.js │ ├── dfg-arguments-unexpected-escape-expected.txt │ ├── dfg-arguments-unexpected-escape.js │ ├── dfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int-expected.txt │ ├── dfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int.js │ ├── dfg-arith-add-overflow-check-elimination-tower-of-large-numbers-expected.txt │ ├── dfg-arith-add-overflow-check-elimination-tower-of-large-numbers.js │ ├── dfg-array-dead-expected.txt │ ├── dfg-array-dead.js │ ├── dfg-array-length-dead-expected.txt │ ├── dfg-array-length-dead.js │ ├── dfg-array-pop-side-effects-expected.txt │ ├── dfg-array-pop-side-effects.js │ ├── dfg-array-pop-value-clearing-expected.txt │ ├── dfg-array-pop-value-clearing.js │ ├── dfg-arrayify-elimination-expected.txt │ ├── dfg-arrayify-elimination.js │ ├── dfg-arrayify-when-late-prevent-extensions-expected.txt │ ├── dfg-arrayify-when-late-prevent-extensions.js │ ├── dfg-arrayify-when-prevent-extensions-expected.txt │ ├── dfg-arrayify-when-prevent-extensions.js │ ├── dfg-bool-to-int32-reuse-expected.txt │ ├── dfg-bool-to-int32-reuse.js │ ├── dfg-branch-logical-not-peephole-around-osr-exit-expected.txt │ ├── dfg-branch-logical-not-peephole-around-osr-exit.js │ ├── dfg-branch-not-fail-expected.txt │ ├── dfg-branch-not-fail.js │ ├── dfg-call-function-hit-watchpoint-expected.txt │ ├── dfg-call-function-hit-watchpoint.js │ ├── dfg-call-method-hit-watchpoint-expected.txt │ ├── dfg-call-method-hit-watchpoint.js │ ├── dfg-captured-var-get-local-expected.txt │ ├── dfg-captured-var-get-local.js │ ├── dfg-cfa-merge-with-dead-use-at-tail-expected.txt │ ├── dfg-cfa-merge-with-dead-use-at-tail.js │ ├── dfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function-expected.txt │ ├── dfg-cfa-prove-put-by-id-simple-when-storing-to-specialized-function.js │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null-and-decrement-expected.txt │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null-and-decrement.js │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null-expected.txt │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null.js │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-typeof-expected.txt │ ├── dfg-cfg-simplify-eliminate-set-local-type-check-then-typeof.js │ ├── dfg-cfg-simplify-phantom-get-local-on-same-block-set-local-expected.txt │ ├── dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js │ ├── dfg-cfg-simplify-redundant-dead-get-local-expected.txt │ ├── dfg-cfg-simplify-redundant-dead-get-local.js │ ├── dfg-check-structure-elimination-for-non-cell-expected.txt │ ├── dfg-check-structure-elimination-for-non-cell.js │ ├── dfg-check-two-structures-expected.txt │ ├── dfg-check-two-structures.js │ ├── dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt │ ├── dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js │ ├── dfg-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt │ ├── dfg-compare-final-object-to-final-object-or-other-when-proven-final-object.js │ ├── dfg-constant-fold-first-local-read-after-block-merge-expected.txt │ ├── dfg-constant-fold-first-local-read-after-block-merge.js │ ├── dfg-constant-fold-logical-not-branch-expected.txt │ ├── dfg-constant-fold-logical-not-branch.js │ ├── dfg-constant-fold-misprediction-expected.txt │ ├── dfg-constant-fold-misprediction.js │ ├── dfg-constant-fold-uncaptured-variable-that-is-later-captured-expected.txt │ ├── dfg-constant-fold-uncaptured-variable-that-is-later-captured.js │ ├── dfg-convert-this-dom-window-expected.txt │ ├── dfg-convert-this-dom-window.js │ ├── dfg-convert-this-object-then-exit-on-other-expected.txt │ ├── dfg-convert-this-object-then-exit-on-other.js │ ├── dfg-convert-this-other-then-exit-on-object-expected.txt │ ├── dfg-convert-this-other-then-exit-on-object.js │ ├── dfg-convert-this-polymorphic-object-then-exit-on-other-expected.txt │ ├── dfg-convert-this-polymorphic-object-then-exit-on-other.js │ ├── dfg-convert-this-polymorphic-object-then-exit-on-string-expected.txt │ ├── dfg-convert-this-polymorphic-object-then-exit-on-string.js │ ├── dfg-create-inlined-arguments-in-closure-inline-expected.txt │ ├── dfg-create-inlined-arguments-in-closure-inline.js │ ├── dfg-cse-cfa-discrepancy-expected.txt │ ├── dfg-cse-cfa-discrepancy.js │ ├── dfg-cse-dead-get-scoped-var-expected.txt │ ├── dfg-cse-dead-get-scoped-var.js │ ├── dfg-dead-min-one-arg-expected.txt │ ├── dfg-dead-min-one-arg.js │ ├── dfg-dead-min-two-args-expected.txt │ ├── dfg-dead-min-two-args.js │ ├── dfg-dead-redundant-get-array-length-expected.txt │ ├── dfg-dead-redundant-get-array-length.js │ ├── dfg-dead-speculation-expected.txt │ ├── dfg-dead-speculation.js │ ├── dfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes-expected.txt │ ├── dfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes.js │ ├── dfg-dead-variable-on-exit-expected.txt │ ├── dfg-dead-variable-on-exit.js │ ├── dfg-double-addition-simplify-to-int-expected.txt │ ├── dfg-double-addition-simplify-to-int.js │ ├── dfg-double-use-of-post-simplification-double-prediction-expected.txt │ ├── dfg-double-use-of-post-simplification-double-prediction.js │ ├── dfg-double-vote-fuzz-expected.txt │ ├── dfg-double-vote-fuzz.js │ ├── dfg-ensure-array-storage-on-string-expected.txt │ ├── dfg-ensure-array-storage-on-string.js │ ├── dfg-ensure-array-storage-on-window-expected.txt │ ├── dfg-ensure-array-storage-on-window.js │ ├── dfg-ensure-contiguous-on-string-expected.txt │ ├── dfg-ensure-contiguous-on-string.js │ ├── dfg-ensure-non-array-array-storage-on-window-expected.txt │ ├── dfg-ensure-non-array-array-storage-on-window.js │ ├── dfg-exception-expected.txt │ ├── dfg-exception.js │ ├── dfg-float32-array-nan-expected.txt │ ├── dfg-float32-array-nan.js │ ├── dfg-flush-get-local-expected.txt │ ├── dfg-flush-get-local.js │ ├── dfg-force-exit-then-sparse-conditional-constant-prop-in-loop-expected.txt │ ├── dfg-force-exit-then-sparse-conditional-constant-prop-in-loop.js │ ├── dfg-get-by-val-clobber-expected.txt │ ├── dfg-get-by-val-clobber.js │ ├── dfg-getter-expected.txt │ ├── dfg-getter-throw-expected.txt │ ├── dfg-getter-throw.js │ ├── dfg-getter.js │ ├── dfg-holy-put-by-val-interferes-with-get-array-length-expected.txt │ ├── dfg-holy-put-by-val-interferes-with-get-array-length.js │ ├── dfg-inline-arguments-become-double-expected.txt │ ├── dfg-inline-arguments-become-double.js │ ├── dfg-inline-arguments-become-int32-expected.txt │ ├── dfg-inline-arguments-become-int32.js │ ├── dfg-inline-arguments-int32-expected.txt │ ├── dfg-inline-arguments-int32.js │ ├── dfg-inline-arguments-osr-exit-and-capture-expected.txt │ ├── dfg-inline-arguments-osr-exit-and-capture.js │ ├── dfg-inline-arguments-out-of-bounds-expected.txt │ ├── dfg-inline-arguments-out-of-bounds.js │ ├── dfg-inline-arguments-reset-changetype-expected.txt │ ├── dfg-inline-arguments-reset-changetype.js │ ├── dfg-inline-arguments-reset-expected.txt │ ├── dfg-inline-arguments-reset.js │ ├── dfg-inline-arguments-simple-expected.txt │ ├── dfg-inline-arguments-simple.js │ ├── dfg-inline-arguments-use-directly-from-inlined-code-expected.txt │ ├── dfg-inline-arguments-use-directly-from-inlined-code.js │ ├── dfg-inline-arguments-use-from-all-the-places-broken-expected.txt │ ├── dfg-inline-arguments-use-from-all-the-places-broken.js │ ├── dfg-inline-arguments-use-from-all-the-places-expected.txt │ ├── dfg-inline-arguments-use-from-all-the-places.js │ ├── dfg-inline-arguments-use-from-getter-expected.txt │ ├── dfg-inline-arguments-use-from-getter.js │ ├── dfg-inline-arguments-use-from-uninlined-code-expected.txt │ ├── dfg-inline-arguments-use-from-uninlined-code.js │ ├── dfg-inline-constant-expected.txt │ ├── dfg-inline-constant.js │ ├── dfg-inline-constructor-that-uses-arguments-expected.txt │ ├── dfg-inline-constructor-that-uses-arguments.js │ ├── dfg-inline-early-return-expected.txt │ ├── dfg-inline-early-return.js │ ├── dfg-inline-function-dot-caller-expected.txt │ ├── dfg-inline-function-dot-caller.js │ ├── dfg-inline-new-array-buffer-expected.txt │ ├── dfg-inline-new-array-buffer.js │ ├── dfg-inline-unused-this-expected.txt │ ├── dfg-inline-unused-this-method-check-expected.txt │ ├── dfg-inline-unused-this-method-check.js │ ├── dfg-inline-unused-this.js │ ├── dfg-inlining-reg-alloc-expected.txt │ ├── dfg-inlining-reg-alloc.js │ ├── dfg-int-overflow-in-loop-expected.txt │ ├── dfg-int-overflow-in-loop.js │ ├── dfg-int-overflow-large-constants-in-a-line-expected.txt │ ├── dfg-int-overflow-large-constants-in-a-line.js │ ├── dfg-int32-to-double-on-known-number-expected.txt │ ├── dfg-int32-to-double-on-known-number.js │ ├── dfg-int32-to-double-on-set-local-and-exit-expected.txt │ ├── dfg-int32-to-double-on-set-local-and-exit.js │ ├── dfg-int32-to-double-on-set-local-and-sometimes-exit-expected.txt │ ├── dfg-int32-to-double-on-set-local-and-sometimes-exit.js │ ├── dfg-integer-optimization-expected.txt │ ├── dfg-integer-optimization.js │ ├── dfg-intrinsic-osr-exit-expected.txt │ ├── dfg-intrinsic-osr-exit.js │ ├── dfg-intrinsic-side-effect-assignment-osr-exit-expected.txt │ ├── dfg-intrinsic-side-effect-assignment-osr-exit.js │ ├── dfg-intrinsic-unused-this-expected.txt │ ├── dfg-intrinsic-unused-this-method-check-expected.txt │ ├── dfg-intrinsic-unused-this-method-check.js │ ├── dfg-intrinsic-unused-this.js │ ├── dfg-max-backwards-propagation-expected.txt │ ├── dfg-max-backwards-propagation.js │ ├── dfg-min-backwards-propagation-expected.txt │ ├── dfg-min-backwards-propagation.js │ ├── dfg-min-max-expected.txt │ ├── dfg-min-max.js │ ├── dfg-mispredict-variable-but-prove-int-expected.txt │ ├── dfg-mispredict-variable-but-prove-int.js │ ├── dfg-mul-big-integer-with-small-integer-and-bitor-expected.txt │ ├── dfg-mul-big-integer-with-small-integer-and-bitor.js │ ├── dfg-mul-big-integer-with-small-integer-and-detect-overflow-expected.txt │ ├── dfg-mul-big-integer-with-small-integer-and-detect-overflow.js │ ├── dfg-mul-big-integer-with-small-integer-expected.txt │ ├── dfg-mul-big-integer-with-small-integer.js │ ├── dfg-mul-big-integers-expected.txt │ ├── dfg-mul-big-integers.js │ ├── dfg-multi-basic-block-structure-clobber-expected.txt │ ├── dfg-multi-basic-block-structure-clobber.js │ ├── dfg-multiply-expected.txt │ ├── dfg-multiply.js │ ├── dfg-negative-array-index-expected.txt │ ├── dfg-negative-array-index.js │ ├── dfg-obvious-constant-cfa-expected.txt │ ├── dfg-obvious-constant-cfa.js │ ├── dfg-other-branch-expected.txt │ ├── dfg-other-branch.js │ ├── dfg-patchable-get-by-id-after-watchpoint-expected.txt │ ├── dfg-patchable-get-by-id-after-watchpoint.js │ ├── dfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt │ ├── dfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js │ ├── dfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt │ ├── dfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object.js │ ├── dfg-phantom-base-expected.txt │ ├── dfg-phantom-base.js │ ├── dfg-phantom-get-local-expected.txt │ ├── dfg-phantom-get-local.js │ ├── dfg-post-inc-then-exit-expected.txt │ ├── dfg-post-inc-then-exit.js │ ├── dfg-proto-access-inline-osr-exit-expected.txt │ ├── dfg-proto-access-inline-osr-exit.js │ ├── dfg-proto-stub-watchpoint-fire-expected.txt │ ├── dfg-proto-stub-watchpoint-fire.js │ ├── dfg-proven-sqrt-backwards-propagation-expected.txt │ ├── dfg-proven-sqrt-backwards-propagation.js │ ├── dfg-put-by-id-allocate-storage-expected.txt │ ├── dfg-put-by-id-allocate-storage-polymorphic-expected.txt │ ├── dfg-put-by-id-allocate-storage-polymorphic.js │ ├── dfg-put-by-id-allocate-storage.js │ ├── dfg-put-by-id-prototype-check-expected.txt │ ├── dfg-put-by-id-prototype-check.js │ ├── dfg-put-by-id-reallocate-storage-expected.txt │ ├── dfg-put-by-id-reallocate-storage-polymorphic-expected.txt │ ├── dfg-put-by-id-reallocate-storage-polymorphic.js │ ├── dfg-put-by-id-reallocate-storage.js │ ├── dfg-put-by-val-setter-then-get-by-val-expected.txt │ ├── dfg-put-by-val-setter-then-get-by-val.js │ ├── dfg-put-scoped-var-backward-flow-expected.txt │ ├── dfg-put-scoped-var-backward-flow.js │ ├── dfg-putbyval-cfa-clobber-expected.txt │ ├── dfg-putbyval-cfa-clobber.js │ ├── dfg-redundant-load-of-captured-variable-proven-constant-expected.txt │ ├── dfg-redundant-load-of-captured-variable-proven-constant.js │ ├── dfg-resolve-global-polymorphic-non-dictionary-expected.txt │ ├── dfg-resolve-global-polymorphic-non-dictionary.js │ ├── dfg-resolve-global-specific-dictionary-expected.txt │ ├── dfg-resolve-global-specific-dictionary.js │ ├── dfg-rshift-by-zero-eliminate-valuetoint32-expected.txt │ ├── dfg-rshift-by-zero-eliminate-valuetoint32.js │ ├── dfg-side-effect-assignment-osr-exit-expected.txt │ ├── dfg-side-effect-assignment-osr-exit.js │ ├── dfg-sqrt-backwards-propagation-expected.txt │ ├── dfg-sqrt-backwards-propagation.js │ ├── dfg-store-unexpected-value-into-argument-and-osr-exit-expected.txt │ ├── dfg-store-unexpected-value-into-argument-and-osr-exit.js │ ├── dfg-string-stricteq-expected.txt │ ├── dfg-string-stricteq.js │ ├── dfg-tear-off-arguments-not-activation-expected.txt │ ├── dfg-tear-off-arguments-not-activation.js │ ├── dfg-tear-off-function-dot-arguments-expected.txt │ ├── dfg-tear-off-function-dot-arguments.js │ ├── dfg-to-string-bad-toString-expected.txt │ ├── dfg-to-string-bad-toString.js │ ├── dfg-to-string-bad-valueOf-expected.txt │ ├── dfg-to-string-bad-valueOf.js │ ├── dfg-to-string-int-expected.txt │ ├── dfg-to-string-int-or-string-expected.txt │ ├── dfg-to-string-int-or-string.js │ ├── dfg-to-string-int.js │ ├── dfg-to-string-on-cell-expected.txt │ ├── dfg-to-string-on-cell.js │ ├── dfg-to-string-on-value-expected.txt │ ├── dfg-to-string-on-value.js │ ├── dfg-to-string-side-effect-clobbers-toString-expected.txt │ ├── dfg-to-string-side-effect-clobbers-toString.js │ ├── dfg-to-string-side-effect-expected.txt │ ├── dfg-to-string-side-effect.js │ ├── dfg-to-string-toString-becomes-bad-expected.txt │ ├── dfg-to-string-toString-becomes-bad-with-check-structure-expected.txt │ ├── dfg-to-string-toString-becomes-bad-with-check-structure.js │ ├── dfg-to-string-toString-becomes-bad-with-dictionary-string-prototype-expected.txt │ ├── dfg-to-string-toString-becomes-bad-with-dictionary-string-prototype.js │ ├── dfg-to-string-toString-becomes-bad.js │ ├── dfg-to-string-toString-in-string-expected.txt │ ├── dfg-to-string-toString-in-string.js │ ├── dfg-to-string-valueOf-in-string-expected.txt │ ├── dfg-to-string-valueOf-in-string.js │ ├── dfg-uint32-to-number-expected.txt │ ├── dfg-uint32-to-number-in-middle-of-copy-propagation-expected.txt │ ├── dfg-uint32-to-number-in-middle-of-copy-propagation.js │ ├── dfg-uint32-to-number-on-captured-variable-expected.txt │ ├── dfg-uint32-to-number-on-captured-variable.js │ ├── dfg-uint32-to-number-skip-then-exit-expected.txt │ ├── dfg-uint32-to-number-skip-then-exit.js │ ├── dfg-uint32-to-number.js │ ├── dfg-uint32array-overflow-constant-expected.txt │ ├── dfg-uint32array-overflow-constant.js │ ├── dfg-uint8clampedarray-out-of-bounds-put-by-val-alias-expected.txt │ ├── dfg-uint8clampedarray-out-of-bounds-put-by-val-alias.js │ ├── dfg-value-to-int32-with-side-effect-expected.txt │ ├── dfg-value-to-int32-with-side-effect.js │ ├── dfg-weak-js-constant-silent-fill-expected.txt │ ├── dfg-weak-js-constant-silent-fill.js │ ├── dictionary-no-cache-expected.txt │ ├── dictionary-no-cache.js │ ├── dictionary-prototype-caching-expected.txt │ ├── dictionary-prototype-caching.js │ ├── do-while-semicolon-expected.txt │ ├── do-while-semicolon.js │ ├── duplicate-param-crash-expected.txt │ ├── duplicate-param-crash.js │ ├── duplicate-param-gc-crash-expected.txt │ ├── duplicate-param-gc-crash.js │ ├── enter-dictionary-indexing-mode-with-blank-indexing-type-expected.txt │ ├── enter-dictionary-indexing-mode-with-blank-indexing-type.js │ ├── equality-expected.txt │ ├── equality.js │ ├── eval-and-with-expected.txt │ ├── eval-and-with.js │ ├── eval-cache-crash-expected.txt │ ├── eval-cache-crash.js │ ├── eval-throw-return-expected.txt │ ├── eval-throw-return.js │ ├── eval-var-decl-expected.txt │ ├── eval-var-decl.js │ ├── exception-for-nonobject-expected.txt │ ├── exception-for-nonobject.js │ ├── exception-propagate-from-dfg-to-llint-expected.txt │ ├── exception-propagate-from-dfg-to-llint.js │ ├── exception-try-finally-scope-error-expected.txt │ ├── exception-try-finally-scope-error.js │ ├── exception-with-handler-inside-eval-with-dynamic-scope-expected.txt │ ├── exception-with-handler-inside-eval-with-dynamic-scope.js │ ├── fast │ ├── js │ │ ├── JSON-parse-reviver-expected.txt │ │ ├── JSON-parse-reviver.js │ │ ├── Object-defineProperty-expected.txt │ │ ├── Object-defineProperty.js │ │ ├── Promise-already-rejected-expected.txt │ │ ├── Promise-already-rejected.js │ │ ├── Promise-already-resolved-expected.txt │ │ ├── Promise-already-resolved.js │ │ ├── Promise-catch-expected.txt │ │ ├── Promise-catch.js │ │ ├── Promise-chained-then-expected.txt │ │ ├── Promise-chained-then.js │ │ ├── Promise-exception-expected.txt │ │ ├── Promise-exception.js │ │ ├── Promise-init-callback-receiver-expected.txt │ │ ├── Promise-init-callback-receiver.js │ │ ├── Promise-init-expected.txt │ │ ├── Promise-init.js │ │ ├── Promise-onFulfilled-deep-expected.txt │ │ ├── Promise-onFulfilled-deep.js │ │ ├── Promise-onRejected-deep-expected.txt │ │ ├── Promise-onRejected-deep.js │ │ ├── Promise-reject-expected.txt │ │ ├── Promise-reject.js │ │ ├── Promise-resolve-chain-expected.txt │ │ ├── Promise-resolve-chain.js │ │ ├── Promise-resolve-expected.txt │ │ ├── Promise-resolve-state-expected.txt │ │ ├── Promise-resolve-state.js │ │ ├── Promise-resolve-with-itself-expected.txt │ │ ├── Promise-resolve-with-itself.js │ │ ├── Promise-resolve-with-then-exception-expected.txt │ │ ├── Promise-resolve-with-then-exception.js │ │ ├── Promise-resolve-with-then-fulfill-expected.txt │ │ ├── Promise-resolve-with-then-fulfill.js │ │ ├── Promise-resolve-with-then-reject-expected.txt │ │ ├── Promise-resolve-with-then-reject.js │ │ ├── Promise-resolve.js │ │ ├── Promise-simple-expected.txt │ │ ├── Promise-simple.js │ │ ├── Promise-static-all-expected.txt │ │ ├── Promise-static-all.js │ │ ├── Promise-static-cast-expected.txt │ │ ├── Promise-static-cast.js │ │ ├── Promise-static-race-expected.txt │ │ ├── Promise-static-race.js │ │ ├── Promise-static-reject-expected.txt │ │ ├── Promise-static-reject.js │ │ ├── Promise-static-resolve-expected.txt │ │ ├── Promise-static-resolve.js │ │ ├── Promise-then-callback-receiver-expected.txt │ │ ├── Promise-then-callback-receiver.js │ │ ├── Promise-then-expected.txt │ │ ├── Promise-then-without-callbacks-expected.txt │ │ ├── Promise-then-without-callbacks.js │ │ ├── Promise-then.js │ │ ├── arguments-expected.txt │ │ ├── arguments.js │ │ ├── array-bad-time-expected.txt │ │ ├── array-bad-time.js │ │ ├── array-float-delete-expected.txt │ │ ├── array-float-delete.js │ │ ├── array-functions-non-arrays-expected.txt │ │ ├── array-functions-non-arrays.js │ │ ├── array-prototype-properties-expected.txt │ │ ├── array-prototype-properties.js │ │ ├── array-slow-put-expected.txt │ │ ├── array-slow-put.js │ │ ├── array-tostring-ignore-separator-expected.txt │ │ ├── array-tostring-ignore-separator.js │ │ ├── basic-strict-mode-expected.txt │ │ ├── basic-strict-mode.js │ │ ├── date-big-setmonth-expected.txt │ │ ├── date-big-setmonth.js │ │ ├── date-negative-setmonth-expected.txt │ │ ├── date-negative-setmonth.js │ │ ├── date-preserve-milliseconds-expected.txt │ │ ├── date-preserve-milliseconds.js │ │ ├── date-toisostring-expected.txt │ │ ├── date-toisostring.js │ │ ├── deep-recursion-test-expected.txt │ │ ├── deep-recursion-test.js │ │ ├── end-in-string-escape-expected.txt │ │ ├── end-in-string-escape.js │ │ ├── exception-properties-expected.txt │ │ ├── exception-properties.js │ │ ├── exception-registerfile-shrink-expected.txt │ │ ├── exception-registerfile-shrink.js │ │ ├── excessive-comma-usage-expected.txt │ │ ├── excessive-comma-usage.js │ │ ├── function-apply-expected.txt │ │ ├── function-apply.js │ │ ├── function-constructor-error-expected.txt │ │ ├── function-constructor-error.js │ │ ├── function-decompilation-operators-expected.txt │ │ ├── function-decompilation-operators.js │ │ ├── function-toString-parentheses-expected.txt │ │ ├── function-toString-parentheses.js │ │ ├── function-toString-semicolon-insertion-expected.txt │ │ ├── function-toString-semicolon-insertion.js │ │ ├── kde │ │ │ ├── Array-expected.txt │ │ │ ├── Array.js │ │ │ ├── Boolean-expected.txt │ │ │ ├── Boolean.js │ │ │ ├── Date-setYear-expected.txt │ │ │ ├── Date-setYear.js │ │ │ ├── Error-expected.txt │ │ │ ├── Error.js │ │ │ ├── GlobalObject-expected.txt │ │ │ ├── GlobalObject.js │ │ │ ├── Number-expected.txt │ │ │ ├── Number.js │ │ │ ├── Object-expected.txt │ │ │ ├── Object.js │ │ │ ├── Prototype-expected.txt │ │ │ ├── Prototype.js │ │ │ ├── RegExp-expected.txt │ │ │ ├── RegExp.js │ │ │ ├── arguments-scope-expected.txt │ │ │ ├── arguments-scope.js │ │ │ ├── assignments-expected.txt │ │ │ ├── assignments.js │ │ │ ├── cast-expected.txt │ │ │ ├── cast.js │ │ │ ├── comment-1-expected.txt │ │ │ ├── comment-1.js │ │ │ ├── comment-2-expected.txt │ │ │ ├── comment-2.js │ │ │ ├── completion-expected.txt │ │ │ ├── completion.js │ │ │ ├── conditional-expected.txt │ │ │ ├── conditional.js │ │ │ ├── constructor_length-expected.txt │ │ │ ├── constructor_length.js │ │ │ ├── crash-1-expected.txt │ │ │ ├── crash-1.js │ │ │ ├── crash-2-expected.txt │ │ │ ├── crash-2.js │ │ │ ├── delete-expected.txt │ │ │ ├── delete.js │ │ │ ├── empty-expected.txt │ │ │ ├── empty.js │ │ │ ├── encode_decode_uri-expected.txt │ │ │ ├── encode_decode_uri.js │ │ │ ├── eval-expected.txt │ │ │ ├── eval.js │ │ │ ├── evil-n-expected.txt │ │ │ ├── evil-n.js │ │ │ ├── exception_propagation-expected.txt │ │ │ ├── exception_propagation.js │ │ │ ├── exceptions-expected.txt │ │ │ ├── exceptions.js │ │ │ ├── func-decl-expected.txt │ │ │ ├── func-decl.js │ │ │ ├── inbuilt_function_proto-expected.txt │ │ │ ├── inbuilt_function_proto.js │ │ │ ├── iteration-expected.txt │ │ │ ├── iteration.js │ │ │ ├── j-comment-3-expected.txt │ │ │ ├── j-comment-3.js │ │ │ ├── j-comment-4-expected.txt │ │ │ ├── j-comment-4.js │ │ │ ├── literals-expected.txt │ │ │ ├── literals.js │ │ │ ├── lval-exceptions-expected.txt │ │ │ ├── lval-exceptions.js │ │ │ ├── math-expected.txt │ │ │ ├── math.js │ │ │ ├── md5-1-expected.txt │ │ │ ├── md5-1.js │ │ │ ├── md5-2-expected.txt │ │ │ ├── md5-2.js │ │ │ ├── object_prototype-expected.txt │ │ │ ├── object_prototype.js │ │ │ ├── object_prototype_tostring-expected.txt │ │ │ ├── object_prototype_tostring.js │ │ │ ├── operators-expected.txt │ │ │ ├── operators.js │ │ │ ├── parse-expected.txt │ │ │ ├── parse.js │ │ │ ├── prototype_length-expected.txt │ │ │ ├── prototype_length.js │ │ │ ├── prototype_proto-expected.txt │ │ │ ├── prototype_proto.js │ │ │ ├── scope-expected.txt │ │ │ ├── scope.js │ │ │ ├── statements-expected.txt │ │ │ ├── statements.js │ │ │ ├── var_decl_init-expected.txt │ │ │ └── var_decl_init.js │ │ ├── modify-non-references-expected.txt │ │ ├── modify-non-references.js │ │ ├── native-error-prototype-expected.txt │ │ ├── native-error-prototype.js │ │ ├── number-toString-expected.txt │ │ ├── number-toString.js │ │ ├── number-tofixed-expected.txt │ │ ├── number-tofixed.js │ │ ├── number-toprecision-expected.txt │ │ ├── number-toprecision.js │ │ ├── numeric-escapes-in-string-literals-expected.txt │ │ ├── numeric-escapes-in-string-literals.js │ │ ├── object-bad-time-expected.txt │ │ ├── object-bad-time.js │ │ ├── object-extra-comma-expected.txt │ │ ├── object-extra-comma.js │ │ ├── object-prototype-constructor-expected.txt │ │ ├── object-prototype-constructor.js │ │ ├── object-prototype-properties-expected.txt │ │ ├── object-prototype-properties.js │ │ ├── object-prototype-toLocaleString-expected.txt │ │ ├── object-prototype-toLocaleString.js │ │ ├── object-slow-put-expected.txt │ │ ├── object-slow-put.js │ │ ├── parser-syntax-check-expected.txt │ │ ├── parser-syntax-check.js │ │ ├── primitive-property-access-edge-cases-expected.txt │ │ ├── primitive-property-access-edge-cases.js │ │ ├── read-modify-eval-expected.txt │ │ ├── read-modify-eval.js │ │ ├── regexp-bol-expected.txt │ │ ├── regexp-bol-with-multiline-expected.txt │ │ ├── regexp-bol-with-multiline.js │ │ ├── regexp-bol.js │ │ ├── regexp-extended-characters-crash-expected.txt │ │ ├── regexp-extended-characters-crash.js │ │ ├── regexp-lastindex-expected.txt │ │ ├── regexp-lastindex.js │ │ ├── regexp-look-ahead-expected.txt │ │ ├── regexp-look-ahead.js │ │ ├── regexp-no-extensions-expected.txt │ │ ├── regexp-no-extensions.js │ │ ├── regexp-non-capturing-groups-expected.txt │ │ ├── regexp-non-capturing-groups.js │ │ ├── regexp-non-greedy-parentheses-expected.txt │ │ ├── regexp-non-greedy-parentheses.js │ │ ├── regexp-range-out-of-order-expected.txt │ │ ├── regexp-range-out-of-order.js │ │ ├── regexp-ranges-and-escaped-hyphens-expected.txt │ │ ├── regexp-ranges-and-escaped-hyphens.js │ │ ├── regexp-stack-overflow-expected.txt │ │ ├── regexp-stack-overflow.js │ │ ├── regexp-unicode-handling-expected.txt │ │ ├── regexp-unicode-handling.js │ │ ├── reserved-words-strict-expected.txt │ │ ├── reserved-words-strict.js │ │ ├── string-anchor-expected.txt │ │ ├── string-anchor.js │ │ ├── string-capitalization-expected.txt │ │ ├── string-capitalization.js │ │ ├── string-fontcolor-expected.txt │ │ ├── string-fontcolor.js │ │ ├── string-fontsize-expected.txt │ │ ├── string-fontsize.js │ │ ├── string-link-expected.txt │ │ ├── string-link.js │ │ ├── string-split-conformance-expected.txt │ │ ├── string-split-conformance.js │ │ ├── string-split-double-empty-expected.txt │ │ ├── string-split-double-empty.js │ │ ├── string-split-ignore-case-expected.txt │ │ ├── string-split-ignore-case.js │ │ ├── toString-exception-expected.txt │ │ ├── toString-exception.js │ │ ├── toString-number-expected.txt │ │ ├── toString-number.js │ │ ├── toString-overrides-expected.txt │ │ └── toString-overrides.js │ └── regex │ │ ├── alternative-length-miscalculation-expected.txt │ │ ├── alternative-length-miscalculation.js │ │ ├── assertion-expected.txt │ │ ├── assertion.js │ │ ├── constructor-expected.txt │ │ ├── constructor.js │ │ ├── dotstar-expected.txt │ │ ├── dotstar.js │ │ ├── early-acid3-86-expected.txt │ │ ├── early-acid3-86.js │ │ ├── ecma-regex-examples-expected.txt │ │ ├── ecma-regex-examples.js │ │ ├── invalid-range-in-class-expected.txt │ │ ├── invalid-range-in-class.js │ │ ├── lastIndex-expected.txt │ │ ├── lastIndex.js │ │ ├── malformed-escapes-expected.txt │ │ ├── malformed-escapes.js │ │ ├── non-capturing-backtracking-expected.txt │ │ ├── non-capturing-backtracking.js │ │ ├── overflow-expected.txt │ │ ├── overflow.js │ │ ├── parentheses-expected.txt │ │ ├── parentheses.js │ │ ├── pcre-test-4-expected.txt │ │ ├── pcre-test-4.js │ │ ├── quantified-assertions-expected.txt │ │ ├── quantified-assertions.js │ │ ├── repeat-match-waldemar-expected.txt │ │ ├── repeat-match-waldemar.js │ │ ├── toString-expected.txt │ │ ├── toString.js │ │ ├── unicodeCaseInsensitive-expected.txt │ │ └── unicodeCaseInsensitive.js │ ├── finally-codegen-failure-expected.txt │ ├── finally-codegen-failure.js │ ├── flatten-dictionary-structure-from-which-all-properties-were-deleted-expected.txt │ ├── flatten-dictionary-structure-from-which-all-properties-were-deleted.js │ ├── for-in-avoid-duplicates-expected.txt │ ├── for-in-avoid-duplicates.js │ ├── for-in-cached-expected.txt │ ├── for-in-cached.js │ ├── for-in-exeception-expected.txt │ ├── for-in-exeception.js │ ├── for-in-to-text-expected.txt │ ├── for-in-to-text.js │ ├── for-in-var-scope-expected.txt │ ├── for-in-var-scope.js │ ├── function-apply-aliased-expected.txt │ ├── function-apply-aliased.js │ ├── function-call-aliased-expected.txt │ ├── function-call-aliased.js │ ├── function-call-register-allocation-expected.txt │ ├── function-call-register-allocation.js │ ├── function-constructor-newline-after-brace-expected.txt │ ├── function-constructor-newline-after-brace.js │ ├── function-constructor-single-line-comment-expected.txt │ ├── function-constructor-single-line-comment.js │ ├── function-declaration-expected.txt │ ├── function-declaration.js │ ├── function-declarations-in-switch-statement-expected.txt │ ├── function-declarations-in-switch-statement.js │ ├── function-dot-apply-replace-base-expected.txt │ ├── function-dot-apply-replace-base.js │ ├── function-dot-length-read-only-expected.txt │ ├── function-dot-length-read-only.js │ ├── function-prototype-descriptor-expected.txt │ ├── function-prototype-descriptor.js │ ├── function-toString-object-literals-expected.txt │ ├── function-toString-object-literals.js │ ├── get-by-pname-expected.txt │ ├── get-by-pname-non-final-object-expected.txt │ ├── get-by-pname-non-final-object.js │ ├── get-by-pname-that-looks-like-a-patchable-get-by-val-expected.txt │ ├── get-by-pname-that-looks-like-a-patchable-get-by-val.js │ ├── get-by-pname.js │ ├── getter-setter-gc-expected.txt │ ├── getter-setter-gc.js │ ├── global-resolve-through-eval-expected.txt │ ├── global-resolve-through-eval.js │ ├── gmail-re-re-expected.txt │ ├── gmail-re-re.js │ ├── has-own-property-expected.txt │ ├── has-own-property.js │ ├── ignored-result-null-comparison-crash-expected.txt │ ├── ignored-result-null-comparison-crash.js │ ├── ignored-result-ref-crash-expected.txt │ ├── ignored-result-ref-crash.js │ ├── indexed-setter-on-global-object-expected.txt │ ├── indexed-setter-on-global-object.js │ ├── instance-of-immediates-expected.txt │ ├── instance-of-immediates.js │ ├── instanceof-operator-expected.txt │ ├── instanceof-operator.js │ ├── integer-extremes-expected.txt │ ├── integer-extremes.js │ ├── interpreter-no-activation-expected.txt │ ├── interpreter-no-activation.js │ ├── invalid-callframe-during-unwind-expected.txt │ ├── invalid-callframe-during-unwind.js │ ├── isPrototypeOf-expected.txt │ ├── isPrototypeOf.js │ ├── jit-float32-array-nan-expected.txt │ ├── jit-float32-array-nan.js │ ├── js-continue-break-restrictions-expected.txt │ ├── js-continue-break-restrictions.js │ ├── keywords-and-reserved_words-expected.txt │ ├── keywords-and-reserved_words.js │ ├── legitimately-captured-argument-expected.txt │ ├── legitimately-captured-argument.js │ ├── logical-or-jless-expected.txt │ ├── logical-or-jless.js │ ├── math-expected.txt │ ├── math-transforms-expected.txt │ ├── math-transforms.js │ ├── math.js │ ├── mod-by-zero-expected.txt │ ├── mod-by-zero.js │ ├── mod-crash-expected.txt │ ├── mod-crash.js │ ├── multiline-comment-newline-expected.txt │ ├── multiline-comment-newline.js │ ├── named-function-expression-expected.txt │ ├── named-function-expression.js │ ├── nested-functions-expected.txt │ ├── nested-functions.js │ ├── new-array-double-with-holes-expected.txt │ ├── new-array-double-with-holes.js │ ├── no-semi-insertion-at-end-of-script-expected.txt │ ├── no-semi-insertion-at-end-of-script.js │ ├── number-cell-reuse-expected.txt │ ├── number-cell-reuse.js │ ├── number-parsing-crash-expected.txt │ ├── number-parsing-crash.js │ ├── number-toExponential-expected.txt │ ├── number-toExponential.js │ ├── numeric-compare-expected.txt │ ├── numeric-compare.js │ ├── numeric-conversion-expected.txt │ ├── numeric-conversion.js │ ├── object-literal-direct-put-expected.txt │ ├── object-literal-direct-put.js │ ├── object-literal-syntax-expected.txt │ ├── object-literal-syntax.js │ ├── order-of-operations-expected.txt │ ├── order-of-operations.js │ ├── parse-nan-expected.txt │ ├── parse-nan.js │ ├── parseFloat-expected.txt │ ├── parseFloat.js │ ├── parseInt-expected.txt │ ├── parseInt.js │ ├── parser-high-byte-character-expected.txt │ ├── parser-high-byte-character.js │ ├── parser-xml-close-comment-expected.txt │ ├── parser-xml-close-comment.js │ ├── polymorphic-construct-expected.txt │ ├── polymorphic-construct.js │ ├── pretty-print-expected.txt │ ├── pretty-print.js │ ├── preventExtensions-expected.txt │ ├── preventExtensions.js │ ├── primitive-method-this-expected.txt │ ├── primitive-method-this.js │ ├── property-getters-and-setters-expected.txt │ ├── property-getters-and-setters.js │ ├── property-iteration-expected.txt │ ├── property-iteration.js │ ├── propertyIsEnumerable-expected.txt │ ├── propertyIsEnumerable.js │ ├── prototypes-expected.txt │ ├── prototypes.js │ ├── reentrant-caching-expected.txt │ ├── reentrant-caching.js │ ├── reentrant-call-unwind-expected.txt │ ├── reentrant-call-unwind.js │ ├── regexp-alternatives-expected.txt │ ├── regexp-alternatives.js │ ├── regexp-backreferences-expected.txt │ ├── regexp-backreferences.js │ ├── regexp-char-insensitive-expected.txt │ ├── regexp-char-insensitive.js │ ├── regexp-character-match-out-of-order-expected.txt │ ├── regexp-character-match-out-of-order.js │ ├── regexp-compile-crash-expected.txt │ ├── regexp-compile-crash.js │ ├── regexp-compile-expected.txt │ ├── regexp-compile.js │ ├── regexp-divequal-expected.txt │ ├── regexp-divequal.js │ ├── regexp-extended-characters-match-expected.txt │ ├── regexp-extended-characters-match.js │ ├── regexp-extended-characters-more-expected.txt │ ├── regexp-extended-characters-more.js │ ├── regexp-find-first-asserted-expected.txt │ ├── regexp-find-first-asserted.js │ ├── regexp-in-and-foreach-handling-expected.txt │ ├── regexp-in-and-foreach-handling.js │ ├── regexp-literals-arent-constants-expected.txt │ ├── regexp-literals-arent-constants.js │ ├── regexp-many-brackets-expected.txt │ ├── regexp-many-brackets.js │ ├── regexp-negative-special-characters-expected.txt │ ├── regexp-negative-special-characters.js │ ├── regexp-non-bmp-expected.txt │ ├── regexp-non-bmp.js │ ├── regexp-non-character-expected.txt │ ├── regexp-non-character.js │ ├── regexp-norepeat-expected.txt │ ├── regexp-norepeat.js │ ├── regexp-range-bound-ffff-expected.txt │ ├── regexp-range-bound-ffff.js │ ├── regexp-zero-length-alternatives-expected.txt │ ├── regexp-zero-length-alternatives.js │ ├── registerCachingAcrossBranchTargets-expected.txt │ ├── registerCachingAcrossBranchTargets.js │ ├── rehash-assign-expected.txt │ ├── rehash-assign.js │ ├── reserved-words-expected.txt │ ├── reserved-words.js │ ├── resize-array-assign-expected.txt │ ├── resize-array-assign.js │ ├── resolve-arguments-from-scope-expected.txt │ ├── resolve-arguments-from-scope.js │ ├── resources │ ├── JSON-stringify.js │ ├── json2-es5-compat.js │ ├── standalone-post.js │ └── standalone-pre.js │ ├── run-json-stringify-expected.txt │ ├── run-json-stringify.js │ ├── slash-lineterminator-parse-expected.txt │ ├── slash-lineterminator-parse.js │ ├── sort-large-array-expected.txt │ ├── sort-large-array.js │ ├── sort-no-jit-code-crash-expected.txt │ ├── sort-no-jit-code-crash.js │ ├── sort-non-numbers-expected.txt │ ├── sort-non-numbers.js │ ├── sort-randomly-expected.txt │ ├── sort-randomly.js │ ├── sort-with-side-effecting-comparisons-expected.txt │ ├── sort-with-side-effecting-comparisons.js │ ├── sparse-array-expected.txt │ ├── sparse-array.js │ ├── stack-overflow-catch-expected.txt │ ├── stack-overflow-catch.js │ ├── stack-unwinding-expected.txt │ ├── stack-unwinding.js │ ├── statement-list-register-crash-expected.txt │ ├── statement-list-register-crash.js │ ├── static-scope-object-expected.txt │ ├── static-scope-object.js │ ├── strict-callback-this-expected.txt │ ├── strict-callback-this.js │ ├── string-from-char-code-expected.txt │ ├── string-from-char-code.js │ ├── string-index-overflow-expected.txt │ ├── string-index-overflow.js │ ├── string-property-deletion-expected.txt │ ├── string-property-deletion.js │ ├── string-property-iteration-expected.txt │ ├── string-property-iteration.js │ ├── string-replacement-outofmemory-expected.txt │ ├── string-replacement-outofmemory.js │ ├── string-slice-abnormal-values-expected.txt │ ├── string-slice-abnormal-values.js │ ├── string-sort-expected.txt │ ├── string-sort.js │ ├── string-substr-expected.txt │ ├── string-substr.js │ ├── string-trim-expected.txt │ ├── string-trim.js │ ├── string_replace-expected.txt │ ├── string_replace.js │ ├── testcfg.py │ ├── this-non-object-proto-expected.txt │ ├── this-non-object-proto.js │ ├── throw-from-finally-expected.txt │ ├── throw-from-finally.js │ ├── toString-elision-trailing-comma-expected.txt │ ├── toString-elision-trailing-comma.js │ ├── toString-for-var-decl-expected.txt │ ├── toString-for-var-decl.js │ ├── toString-number-dot-expr-expected.txt │ ├── toString-number-dot-expr.js │ ├── toString-prefix-postfix-preserve-parens-expected.txt │ ├── toString-prefix-postfix-preserve-parens.js │ ├── toString-recursion-expected.txt │ ├── toString-recursion.js │ ├── tostring-exception-in-property-access-expected.txt │ ├── tostring-exception-in-property-access.js │ ├── try-catch-try-try-catch-try-finally-return-catch-finally-expected.txt │ ├── try-catch-try-try-catch-try-finally-return-catch-finally.js │ ├── try-try-return-finally-finally-expected.txt │ ├── try-try-return-finally-finally.js │ ├── typeof-codegen-crash-expected.txt │ ├── typeof-codegen-crash.js │ ├── typeof-constant-string-expected.txt │ ├── typeof-constant-string.js │ ├── unexpected-constant-crash-expected.txt │ ├── unexpected-constant-crash.js │ ├── unmatching-argument-count-expected.txt │ ├── unmatching-argument-count.js │ ├── var-declarations-zero-width-expected.txt │ ├── var-declarations-zero-width.js │ ├── var-shadows-arg-crash-expected.txt │ ├── var-shadows-arg-crash.js │ ├── var-shadows-arg-gc-crash-expected.txt │ ├── var-shadows-arg-gc-crash.js │ ├── vardecl-blocks-init-expected.txt │ ├── vardecl-blocks-init.js │ └── webkit.status ├── testing ├── OWNERS ├── gmock-support.h ├── gmock │ ├── BUILD.gn │ ├── OWNERS │ └── include │ │ ├── DEPS │ │ └── gmock │ │ ├── gmock-actions.h │ │ ├── gmock-matchers.h │ │ └── gmock.h ├── gtest-support.h └── gtest │ ├── BUILD.gn │ ├── OWNERS │ ├── empty.cc │ └── include │ ├── DEPS │ └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-spi.h │ ├── gtest.h │ └── gtest_prod.h ├── third_party ├── colorama │ ├── LICENSE │ ├── OWNERS │ └── README.v8 ├── cpu_features │ ├── BUILD.gn │ ├── OWNERS │ └── README.v8 ├── glibc │ ├── LICENSE │ ├── METADATA │ ├── README.v8 │ └── src │ │ └── sysdeps │ │ └── ieee754 │ │ └── dbl-64 │ │ ├── branred.c │ │ ├── branred.h │ │ ├── dla.h │ │ ├── endian.h │ │ ├── mydefs.h │ │ ├── s_sin.c │ │ ├── sincostab.c │ │ ├── trig.h │ │ └── usncs.h ├── google_benchmark │ ├── BUILD.gn │ ├── OWNERS │ └── README.v8 ├── googletest │ ├── BUILD.gn │ ├── OWNERS │ ├── README.chromium │ ├── custom │ │ └── gtest │ │ │ └── internal │ │ │ └── custom │ │ │ └── gtest-port.h │ ├── gmock_custom │ │ └── gmock │ │ │ └── internal │ │ │ └── custom │ │ │ └── gmock-port.h │ └── src │ │ ├── .clang-format │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── 00-bug_report.md │ │ │ ├── 10-feature_request.md │ │ │ └── config.yml │ │ └── workflows │ │ │ └── gtest-ci.yml │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── ci │ │ ├── linux-presubmit.sh │ │ └── macos-presubmit.sh │ │ ├── docs │ │ ├── _config.yml │ │ ├── _data │ │ │ └── navigation.yml │ │ ├── _layouts │ │ │ └── default.html │ │ ├── _sass │ │ │ └── main.scss │ │ ├── advanced.md │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.scss │ │ ├── community_created_documentation.md │ │ ├── faq.md │ │ ├── gmock_cheat_sheet.md │ │ ├── gmock_cook_book.md │ │ ├── gmock_faq.md │ │ ├── gmock_for_dummies.md │ │ ├── index.md │ │ ├── pkgconfig.md │ │ ├── platforms.md │ │ ├── primer.md │ │ ├── quickstart-bazel.md │ │ ├── quickstart-cmake.md │ │ ├── reference │ │ │ ├── actions.md │ │ │ ├── assertions.md │ │ │ ├── matchers.md │ │ │ ├── mocking.md │ │ │ └── testing.md │ │ └── samples.md │ │ ├── googlemock │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ │ ├── gmock.pc.in │ │ │ └── gmock_main.pc.in │ │ ├── docs │ │ │ └── README.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── README.md │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-function-mocker_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers-arithmetic_test.cc │ │ │ ├── gmock-matchers-comparisons_test.cc │ │ │ ├── gmock-matchers-containers_test.cc │ │ │ ├── gmock-matchers-misc_test.cc │ │ │ ├── gmock-matchers_test.h │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-pp-string_test.cc │ │ │ ├── gmock-pp_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ │ └── googletest │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── cmake │ │ ├── Config.cmake.in │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ ├── internal_utils.cmake │ │ └── libgtest.la.in │ │ ├── docs │ │ └── README.md │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-assertion-result.h │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── README.md │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-assertion-result.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ │ └── test │ │ ├── BUILD.bazel │ │ ├── googletest-break-on-failure-unittest.py │ │ ├── googletest-break-on-failure-unittest_.cc │ │ ├── googletest-catch-exceptions-test.py │ │ ├── googletest-catch-exceptions-test_.cc │ │ ├── googletest-color-test.py │ │ ├── googletest-color-test_.cc │ │ ├── googletest-death-test-test.cc │ │ ├── googletest-death-test_ex_test.cc │ │ ├── googletest-env-var-test.py │ │ ├── googletest-env-var-test_.cc │ │ ├── googletest-failfast-unittest.py │ │ ├── googletest-failfast-unittest_.cc │ │ ├── googletest-filepath-test.cc │ │ ├── googletest-filter-unittest.py │ │ ├── googletest-filter-unittest_.cc │ │ ├── googletest-global-environment-unittest.py │ │ ├── googletest-global-environment-unittest_.cc │ │ ├── googletest-json-outfiles-test.py │ │ ├── googletest-json-output-unittest.py │ │ ├── googletest-list-tests-unittest.py │ │ ├── googletest-list-tests-unittest_.cc │ │ ├── googletest-listener-test.cc │ │ ├── googletest-message-test.cc │ │ ├── googletest-options-test.cc │ │ ├── googletest-output-test-golden-lin.txt │ │ ├── googletest-output-test.py │ │ ├── googletest-output-test_.cc │ │ ├── googletest-param-test-invalid-name1-test.py │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ ├── googletest-param-test-invalid-name2-test.py │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ ├── googletest-param-test-test.cc │ │ ├── googletest-param-test-test.h │ │ ├── googletest-param-test2-test.cc │ │ ├── googletest-port-test.cc │ │ ├── googletest-printers-test.cc │ │ ├── googletest-setuptestsuite-test.py │ │ ├── googletest-setuptestsuite-test_.cc │ │ ├── googletest-shuffle-test.py │ │ ├── googletest-shuffle-test_.cc │ │ ├── googletest-test-part-test.cc │ │ ├── googletest-throw-on-failure-test.py │ │ ├── googletest-throw-on-failure-test_.cc │ │ ├── googletest-uninitialized-test.py │ │ ├── googletest-uninitialized-test_.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_assert_by_exception_test.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_json_test_utils.py │ │ ├── gtest_list_output_unittest.py │ │ ├── gtest_list_output_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_skip_check_output_test.py │ │ ├── gtest_skip_environment_check_output_test.py │ │ ├── gtest_skip_in_environment_setup_test.cc │ │ ├── gtest_skip_test.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_testbridge_test.py │ │ ├── gtest_testbridge_test_.cc │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h ├── inspector_protocol │ ├── .clang-format │ ├── BUILD.gn │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── README.v8 │ ├── check_protocol_compatibility.py │ ├── code_generator.py │ ├── codereview.settings │ ├── concatenate_protocols.py │ ├── convert_protocol_to_json.py │ ├── crdtp │ │ ├── cbor.cc │ │ ├── cbor.h │ │ ├── cbor_test.cc │ │ ├── dispatch.cc │ │ ├── dispatch.h │ │ ├── dispatch_test.cc │ │ ├── error_support.cc │ │ ├── error_support.h │ │ ├── error_support_test.cc │ │ ├── export.h │ │ ├── find_by_first.h │ │ ├── find_by_first_test.cc │ │ ├── frontend_channel.h │ │ ├── glue.h │ │ ├── glue_test.cc │ │ ├── json.cc │ │ ├── json.h │ │ ├── json_platform.h │ │ ├── json_platform_v8.cc │ │ ├── json_test.cc │ │ ├── maybe.h │ │ ├── maybe_test.cc │ │ ├── parser_handler.h │ │ ├── protocol_core.cc │ │ ├── protocol_core.h │ │ ├── protocol_core_test.cc │ │ ├── serializable.cc │ │ ├── serializable.h │ │ ├── serializable_test.cc │ │ ├── span.cc │ │ ├── span.h │ │ ├── span_test.cc │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_test.cc │ │ ├── status_test_support.cc │ │ ├── status_test_support.h │ │ ├── test_platform.h │ │ └── test_platform_v8.cc │ ├── inspector_protocol.gni │ ├── lib │ │ ├── Forward_h.template │ │ ├── Object_cpp.template │ │ ├── Object_h.template │ │ ├── Protocol_cpp.template │ │ ├── ValueConversions_cpp.template │ │ ├── ValueConversions_h.template │ │ ├── Values_cpp.template │ │ └── Values_h.template │ ├── pdl.py │ ├── roll.py │ └── templates │ │ ├── Exported_h.template │ │ ├── Imported_h.template │ │ ├── TypeBuilder_cpp.template │ │ └── TypeBuilder_h.template ├── ittapi │ ├── CMakeLists.txt │ ├── LICENSES │ │ ├── BSD-3-Clause.txt │ │ └── GPL-2.0-only.txt │ ├── README.md │ ├── buildall.py │ ├── include │ │ ├── fortran │ │ │ ├── posix │ │ │ │ ├── ittnotify.f90 │ │ │ │ ├── x86 │ │ │ │ │ ├── ittfortran.o │ │ │ │ │ └── ittnotify.mod │ │ │ │ └── x86_64 │ │ │ │ │ ├── ittfortran.o │ │ │ │ │ └── ittnotify.mod │ │ │ └── win32 │ │ │ │ ├── ittnotify.f90 │ │ │ │ ├── x86 │ │ │ │ ├── ittfortran.obj │ │ │ │ └── ittnotify.mod │ │ │ │ └── x86_64 │ │ │ │ ├── ittfortran.obj │ │ │ │ └── ittnotify.mod │ │ ├── ittnotify.h │ │ ├── jitprofiling.h │ │ ├── legacy │ │ │ └── ittnotify.h │ │ └── libittnotify.h │ ├── ittapi-rs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Cargo.toml │ │ ├── LICENSES │ │ ├── README.md │ │ ├── build.rs │ │ ├── include │ │ ├── src │ │ │ ├── ittnotify │ │ │ ├── ittnotify_bindings.rs │ │ │ ├── jitprofiling_bindings.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ └── bindgen-up-to-date.rs │ └── src │ │ ├── ittnotify │ │ ├── disable_warnings.h │ │ ├── ittnotify_config.h │ │ ├── ittnotify_static.c │ │ ├── ittnotify_static.h │ │ ├── ittnotify_types.h │ │ ├── ittptmark32.S │ │ ├── ittptmark32.asm │ │ ├── ittptmark64.S │ │ ├── ittptmark64.asm │ │ └── jitprofiling.c │ │ └── ittnotify_refcol │ │ ├── Makefile │ │ ├── README.md │ │ └── itt_refcol_impl.c ├── jinja2 │ ├── DIR_METADATA │ ├── LICENSE.rst │ ├── OWNERS │ ├── README.chromium │ ├── README.rst │ ├── __init__.py │ ├── _identifier.py │ ├── async_utils.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── idtracking.py │ ├── jinja2.gni │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nativetypes.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── py.typed │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── utils.py │ └── visitor.py ├── jsoncpp │ ├── BUILD.gn │ ├── LICENSE │ ├── README.chromium │ └── generated │ │ └── version.h ├── markupsafe │ ├── AUTHORS │ ├── DIR_METADATA │ ├── LICENSE │ ├── MarkupSafe-0.18.tar.gz.md5 │ ├── MarkupSafe-0.18.tar.gz.sha512 │ ├── OWNERS │ ├── README.chromium │ ├── __init__.py │ ├── _compat.py │ ├── _constants.py │ ├── _native.py │ ├── _speedups.c │ ├── get_markupsafe.sh │ └── markupsafe.gni ├── test262-harness │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── README.v8 │ ├── __init__.py │ ├── excludelist.xml │ ├── src │ │ ├── __init__.py │ │ ├── _common.py │ │ ├── _monkeyYaml.py │ │ ├── _packager.py │ │ ├── _packagerConfig.py │ │ ├── parseTestRecord.py │ │ ├── templates │ │ │ ├── runner.bestPractice.html │ │ │ ├── runner.intl402.html │ │ │ └── runner.test262.html │ │ └── test262.py │ └── test │ │ ├── README.md │ │ ├── fixtures │ │ ├── negative.js │ │ ├── test262-old-headers.js │ │ └── test262-yaml-headers.js │ │ ├── test_common.py │ │ ├── test_monkeyYaml.py │ │ ├── test_parseTestRecord.py │ │ └── test_test262.py ├── v8 │ └── builtins │ │ ├── LICENSE │ │ ├── OWNERS │ │ └── array-sort.tq ├── wasm-api │ ├── LICENSE │ ├── OWNERS │ ├── README.v8 │ ├── example │ │ ├── callback.c │ │ ├── callback.cc │ │ ├── callback.wasm │ │ ├── callback.wat │ │ ├── finalize.c │ │ ├── finalize.cc │ │ ├── finalize.wasm │ │ ├── finalize.wat │ │ ├── global.c │ │ ├── global.cc │ │ ├── global.wasm │ │ ├── global.wat │ │ ├── hello.c │ │ ├── hello.cc │ │ ├── hello.wasm │ │ ├── hello.wat │ │ ├── hostref.c │ │ ├── hostref.cc │ │ ├── hostref.wasm │ │ ├── hostref.wat │ │ ├── memory.c │ │ ├── memory.cc │ │ ├── memory.wasm │ │ ├── memory.wat │ │ ├── multi.c │ │ ├── multi.cc │ │ ├── multi.wasm │ │ ├── multi.wat │ │ ├── reflect.c │ │ ├── reflect.cc │ │ ├── reflect.wasm │ │ ├── reflect.wat │ │ ├── serialize.c │ │ ├── serialize.cc │ │ ├── serialize.wasm │ │ ├── serialize.wat │ │ ├── start.c │ │ ├── start.cc │ │ ├── start.wasm │ │ ├── start.wat │ │ ├── table.c │ │ ├── table.cc │ │ ├── table.wasm │ │ ├── table.wat │ │ ├── threads.c │ │ ├── threads.cc │ │ ├── threads.wasm │ │ ├── threads.wat │ │ ├── trap.c │ │ ├── trap.cc │ │ ├── trap.wasm │ │ └── trap.wat │ ├── wasm.h │ └── wasm.hh └── zlib │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── DIR_METADATA │ ├── LICENSE │ ├── OWNERS │ ├── README.chromium │ ├── adler32.c │ ├── adler32_simd.c │ ├── adler32_simd.h │ ├── chromeconf.h │ ├── compress.c │ ├── contrib │ ├── bench │ │ ├── check.sh │ │ └── zlib_bench.cc │ ├── minizip │ │ ├── ChangeLogUnzip │ │ ├── Makefile │ │ ├── README.chromium │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── minizip.md │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── optimizations │ │ ├── chunkcopy.h │ │ ├── inffast_chunk.c │ │ ├── inffast_chunk.h │ │ ├── inflate.c │ │ └── insert_string.h │ └── tests │ │ ├── DEPS │ │ ├── OWNERS │ │ ├── fuzzers │ │ ├── BUILD.gn │ │ ├── OWNERS │ │ ├── deflate_fuzzer.cc │ │ ├── deflate_set_dictionary_fuzzer.cc │ │ ├── inflate_fuzzer.cc │ │ ├── inflate_with_header_fuzzer.cc │ │ ├── streaming_inflate_fuzzer.cc │ │ └── uncompress_fuzzer.cc │ │ ├── infcover.cc │ │ ├── infcover.h │ │ ├── run_all_unittests.cc │ │ └── utils_unittest.cc │ ├── cpu_features.c │ ├── cpu_features.h │ ├── crc32.c │ ├── crc32.h │ ├── crc32_simd.c │ ├── crc32_simd.h │ ├── crc_folding.c │ ├── deflate.c │ ├── deflate.h │ ├── google │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── compression_utils.cc │ ├── compression_utils.h │ ├── compression_utils_portable.cc │ ├── compression_utils_portable.h │ ├── compression_utils_unittest.cc │ ├── redact.h │ ├── test │ │ └── data │ │ │ ├── Different Encryptions.zip │ │ │ ├── Empty Dir Same Name As File.zip │ │ │ ├── Mixed Paths.zip │ │ │ ├── Parent Dir Same Name As File.zip │ │ │ ├── README.md │ │ │ ├── Repeated Dir Name.zip │ │ │ ├── Repeated File Name With Different Cases.zip │ │ │ ├── Repeated File Name.zip │ │ │ ├── SJIS Bug 846195.zip │ │ │ ├── Windows Special Names.zip │ │ │ ├── Wrong CRC.zip │ │ │ ├── create_test_zip.sh │ │ │ ├── empty.zip │ │ │ ├── evil.zip │ │ │ ├── evil_via_absolute_file_name.zip │ │ │ ├── evil_via_invalid_utf8.zip │ │ │ ├── test.zip │ │ │ ├── test │ │ │ ├── foo.txt │ │ │ └── foo │ │ │ │ ├── bar.txt │ │ │ │ └── bar │ │ │ │ ├── .hidden │ │ │ │ ├── baz.txt │ │ │ │ └── quux.txt │ │ │ ├── test_encrypted.zip │ │ │ ├── test_mismatch_size.zip │ │ │ ├── test_nocompress.zip │ │ │ └── test_posix_permissions.zip │ ├── test_data.filelist │ ├── test_data.globlist │ ├── zip.cc │ ├── zip.h │ ├── zip_internal.cc │ ├── zip_internal.h │ ├── zip_reader.cc │ ├── zip_reader.h │ ├── zip_reader_unittest.cc │ ├── zip_unittest.cc │ ├── zip_writer.cc │ └── zip_writer.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── patches │ ├── 0000-build.patch │ ├── 0001-simd.patch │ ├── 0002-uninitializedcheck.patch │ ├── 0003-uninitializedjump.patch │ ├── 0004-fix-uwp.patch │ ├── 0005-infcover-gtest.patch │ ├── 0006-fix-check_match.patch │ ├── 0007-zero-init-deflate-window.patch │ ├── 0008-minizip-zip-unzip-tools.patch │ ├── 0009-infcover-oob.patch │ ├── 0010-cmake-enable-simd.patch │ ├── 0011-avx512.patch │ ├── 0012-lfs-open64.patch │ └── README │ ├── slide_hash_simd.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zutil.c │ └── zutil.h └── tools ├── .vpython3 ├── BUILD.gn ├── DEPS ├── Makefile.tags ├── OWNERS ├── PRESUBMIT.py ├── README.md ├── __init__.py ├── adb-d8.py ├── android-build.sh ├── android-run.py ├── android-sync.sh ├── arguments.mjs ├── avg.py ├── bash-completion.sh ├── bazel ├── .gitignore └── bazel.sha1 ├── bigint-tester.py ├── builtins-pgo ├── combine_hints.py ├── download_profiles.py ├── download_profiles_test.py ├── generate.py ├── get_hints.py ├── profile_only.py └── profiles │ └── .gitkeep ├── callstats-from-telemetry.sh ├── callstats.html ├── callstats.py ├── callstats_groups.py ├── cfi └── ignores.txt ├── check-inline-includes.sh ├── check-static-initializers.sh ├── check-unused-bailouts.sh ├── check-unused-symbols.sh ├── clusterfuzz ├── OWNERS ├── foozzie │ ├── BUILD.gn │ ├── PRESUBMIT.py │ ├── testdata │ │ ├── baseline │ │ │ ├── d8.py │ │ │ └── v8_build_config.json │ │ ├── build1 │ │ │ ├── d8.py │ │ │ └── v8_build_config.json │ │ ├── build2 │ │ │ ├── d8.py │ │ │ └── v8_build_config.json │ │ ├── build3 │ │ │ ├── d8.py │ │ │ └── v8_build_config.json │ │ ├── failure_output.txt │ │ ├── failure_output_arch.txt │ │ ├── failure_output_second.txt │ │ ├── fuzz-123.js │ │ └── smoke_test_output.txt │ ├── toolchain │ │ └── BUILD.gn │ ├── v8_commands.py │ ├── v8_foozzie.py │ ├── v8_foozzie_harness_adjust.js │ ├── v8_foozzie_test.py │ ├── v8_fuzz_config.py │ ├── v8_fuzz_experiments.json │ ├── v8_fuzz_flags.json │ ├── v8_mock.js │ ├── v8_mock_archs.js │ ├── v8_mock_webassembly.js │ ├── v8_smoke_tests.js │ ├── v8_suppressions.js │ └── v8_suppressions.py ├── js_fuzzer │ ├── .eslintrc.js │ ├── .gitignore │ ├── DIR_METADATA │ ├── OWNERS │ ├── README.md │ ├── build_db.js │ ├── corpus.js │ ├── db.js │ ├── differential_script_mutator.js │ ├── exceptions.js │ ├── foozzie_launcher.py │ ├── gen_exceptions.js │ ├── gen_exceptions.sh │ ├── generated │ │ └── exceptions.js │ ├── mutators │ │ ├── array_mutator.js │ │ ├── common.js │ │ ├── crossover_mutator.js │ │ ├── differential_fuzz_mutator.js │ │ ├── expression_mutator.js │ │ ├── function_call_mutator.js │ │ ├── mutator.js │ │ ├── normalizer.js │ │ ├── number_mutator.js │ │ ├── object_mutator.js │ │ ├── try_catch.js │ │ ├── variable_mutator.js │ │ └── variable_or_object_mutation.js │ ├── package-lock.json │ ├── package.json │ ├── package.sh │ ├── random.js │ ├── resources │ │ ├── differential_fuzz_chakra.js │ │ ├── differential_fuzz_jstest.js │ │ ├── differential_fuzz_library.js │ │ ├── differential_fuzz_mjsunit.js │ │ ├── differential_fuzz_suppressions.js │ │ ├── differential_fuzz_v8.js │ │ ├── fuzz_library.js │ │ ├── jstest_stubs.js │ │ └── stubs.js │ ├── run.js │ ├── script_mutator.js │ ├── source_helpers.js │ ├── test │ │ ├── helpers.js │ │ ├── test_available_variables.js │ │ ├── test_corpus.js │ │ ├── test_db.js │ │ ├── test_differential_fuzz.js │ │ ├── test_differential_fuzz_library.js │ │ ├── test_load.js │ │ ├── test_mutate_arrays.js │ │ ├── test_mutate_expressions.js │ │ ├── test_mutate_function_calls.js │ │ ├── test_mutate_numbers.js │ │ ├── test_mutate_objects.js │ │ ├── test_mutate_variable_or_object.js │ │ ├── test_mutate_variables.js │ │ ├── test_mutation_order.js │ │ ├── test_normalize.js │ │ ├── test_random.js │ │ ├── test_regressions.js │ │ └── test_try_catch.js │ ├── test_data │ │ ├── JSTests │ │ │ ├── fake_stub.js │ │ │ ├── load.js │ │ │ └── load_expected.js │ │ ├── available_variables.js │ │ ├── available_variables_expected.js │ │ ├── chakra │ │ │ ├── dir │ │ │ │ └── load3.js │ │ │ ├── load.js │ │ │ ├── load1.js │ │ │ ├── load2.js │ │ │ └── load_expected.js │ │ ├── cross_over_mutator_class_input.js │ │ ├── db │ │ │ └── this │ │ │ │ └── file.js │ │ ├── differential_fuzz │ │ │ ├── combined_expected.js │ │ │ ├── exceptions.js │ │ │ ├── exceptions_expected.js │ │ │ ├── fake_resource.js │ │ │ ├── input1.js │ │ │ ├── input2.js │ │ │ ├── mutations.js │ │ │ ├── mutations_expected.js │ │ │ ├── suppressions.js │ │ │ ├── suppressions_expected.js │ │ │ ├── v8_fuzz_experiments.json │ │ │ └── v8_fuzz_flags.json │ │ ├── fake_db │ │ │ └── index.json │ │ ├── mjsunit │ │ │ ├── mjsunit.js │ │ │ ├── test_load.js │ │ │ ├── test_load_0.js │ │ │ ├── test_load_1.js │ │ │ ├── test_load_2.js │ │ │ ├── test_load_3.js │ │ │ ├── test_load_expected.js │ │ │ ├── test_load_self.js │ │ │ └── test_load_self_expected.js │ │ ├── mjsunit_softskipped │ │ │ ├── object-literal.js │ │ │ ├── permitted.js │ │ │ └── regress │ │ │ │ └── binaryen-123.js │ │ ├── mutate_arrays.js │ │ ├── mutate_arrays_expected.js │ │ ├── mutate_expressions.js │ │ ├── mutate_expressions_current_expected.js │ │ ├── mutate_expressions_previous_expected.js │ │ ├── mutate_function_call.js │ │ ├── mutate_function_call_baseline_expected.js │ │ ├── mutate_function_call_deopt_expected.js │ │ ├── mutate_function_call_expected.js │ │ ├── mutate_function_call_maglev_expected.js │ │ ├── mutate_numbers.js │ │ ├── mutate_numbers_expected.js │ │ ├── mutate_objects.js │ │ ├── mutate_objects_expected.js │ │ ├── mutate_var_or_obj.js │ │ ├── mutate_var_or_obj_expected.js │ │ ├── mutate_variables.js │ │ ├── mutate_variables_expected.js │ │ ├── mutation_order │ │ │ ├── input.js │ │ │ └── output_expected.js │ │ ├── normalize.js │ │ ├── normalize_expected_0.js │ │ ├── normalize_expected_1.js │ │ ├── regress │ │ │ ├── numbers │ │ │ │ ├── db │ │ │ │ │ └── index.json │ │ │ │ ├── input_indices.js │ │ │ │ └── input_negative.js │ │ │ ├── spidermonkey │ │ │ │ ├── db │ │ │ │ │ └── index.json │ │ │ │ ├── input.js │ │ │ │ └── shell.js │ │ │ └── strict │ │ │ │ ├── db │ │ │ │ └── index.json │ │ │ │ ├── input_delete.js │ │ │ │ ├── input_strict.js │ │ │ │ └── input_with.js │ │ ├── simple_test.js │ │ ├── simple_test_expected.js │ │ ├── spidermonkey │ │ │ ├── load1.js │ │ │ ├── shell.js │ │ │ └── test │ │ │ │ ├── load.js │ │ │ │ ├── load2.js │ │ │ │ ├── load_expected.js │ │ │ │ └── shell.js │ │ ├── try_catch.js │ │ ├── try_catch_alternate_expected.js │ │ ├── try_catch_expected.js │ │ ├── try_catch_nothing_expected.js │ │ └── try_catch_toplevel_expected.js │ ├── test_db.js │ └── tools │ │ ├── fuzz_one.py │ │ ├── minimize.py │ │ ├── run_one.py │ │ └── workbench.py └── trials │ ├── BUILD.gn │ ├── PRESUBMIT.py │ ├── README.md │ └── clusterfuzz_trials_config.json ├── codemap.mjs ├── collect_deprecation_stats.sh ├── compare-table-gen.js ├── compare_torque_output.py ├── consarray.mjs ├── cppgc ├── copy.bara.sky ├── export_to_github.sh ├── gen_cmake.py ├── gen_cmake_test.py └── test_cmake.sh ├── cpu.sh ├── cross_build_gcc.sh ├── csvparser.mjs ├── debug_helper ├── BUILD.gn ├── DEPS ├── OWNERS ├── README.md ├── compiler-types.cc ├── debug-helper-internal.cc ├── debug-helper-internal.h ├── debug-helper.h ├── debug-macro-shims.h ├── gen-heap-constants.py ├── get-object-properties.cc ├── heap-constants.cc ├── heap-constants.h └── list-object-classes.cc ├── detect-builtins.js ├── dev ├── gen-static-roots.py ├── gen-tags.py ├── gm.py ├── update-compile-commands.py ├── update-vscode.sh └── v8gen.py ├── disasm.py ├── draw_instruction_graph.sh ├── dump-cpp.py ├── dumpcpp-driver.mjs ├── dumpcpp.mjs ├── eval_gc_nvp.py ├── eval_gc_time.sh ├── find-builtin ├── find-commit-for-patch.py ├── find_depot_tools.py ├── freebsd-tick-processor ├── fuzz-harness.sh ├── gc-nvp-to-csv.py ├── gc-nvp-trace-processor.py ├── gc_nvp_common.py ├── gcmole ├── BUILD.gn ├── Makefile ├── OWNERS ├── PRESUBMIT.py ├── README ├── bootstrap.sh ├── gcmole-test.cc ├── gcmole-tools.tar.gz.sha1 ├── gcmole.cc ├── gcmole.py ├── gcmole_args.py ├── gcmole_test.py ├── ignored_files ├── package.sh ├── run-gcmole.py ├── suspects.allowlist ├── test-expectations.txt └── testdata │ └── v8 │ ├── BUILD.gn │ ├── out │ └── obj │ │ └── v8_base_without_compiler.ninja │ └── test │ └── cctest │ └── BUILD.gn ├── gdb-v8-support.py ├── gdbinit ├── gen-inlining-tests.py ├── gen-keywords-gen-h.py ├── gen-postmortem-metadata.py ├── gen-v8-gn.py ├── generate-builtins-tests.py ├── generate-header-include-checks.py ├── generate-runtime-call-stats.py ├── generate-ten-powers.scm ├── generate_shim_headers └── generate_shim_headers.py ├── get_landmines.py ├── grokdump.py ├── heap-layout ├── heap-layout-viewer-template.html ├── heap-layout-viewer.mjs ├── heap-size-trend-viewer-template.html ├── heap-size-trend-viewer.mjs ├── index.css ├── index.html ├── space-categories.mjs └── trace-file-reader.mjs ├── heap-stats ├── README.md ├── categories.js ├── details-selection-template.html ├── details-selection.js ├── global-timeline-template.html ├── global-timeline.js ├── helper.js ├── histogram-viewer-template.html ├── histogram-viewer.js ├── index.html ├── model.js ├── trace-file-reader-template.html └── trace-file-reader.js ├── ic-processor ├── ic-processor-driver.mjs ├── index.html ├── js ├── helper.mjs ├── log-file-reader-template.html └── web-api-helper.mjs ├── jsfunfuzz ├── BUILD.gn ├── fuzz-harness.sh └── jsfunfuzz.tar.gz.sha1 ├── link_clicker.extension ├── README.txt ├── background.js ├── content.js ├── icon.png ├── manifest.json ├── popup.html └── popup.js ├── linux-tick-processor ├── lldb_commands.py ├── locs.py ├── logreader.mjs ├── mac-nm ├── mac-tick-processor ├── mb ├── OWNERS ├── PRESUBMIT.py ├── README.md ├── docs │ ├── README.md │ ├── design_spec.md │ └── user_guide.md ├── mb ├── mb.bat ├── mb.py └── mb_test.py ├── memory ├── asan │ └── blocklist_win.txt ├── rss.py └── tsan_v2 │ └── ignores.txt ├── msan └── ignorelist.txt ├── objdump-v8 ├── package-lock.json ├── package.json ├── parse-processor ├── parse-processor-driver.mjs ├── parse-processor.html ├── parse-processor.mjs ├── perf-compare.py ├── perf └── statistics-for-json.R ├── predictable_wrapper.py ├── process-wasm-compilation-times.py ├── profile.mjs ├── profile_view.js ├── profile_view.mjs ├── profiling ├── README.md ├── android-ll-prof.sh ├── linux-perf-chrome-renderer-cmd.sh ├── linux-perf-chrome.py ├── linux-perf-d8.py ├── ll_prof.py └── run-llprof.sh ├── profview ├── index.html ├── profile-utils.js ├── profview.css └── profview.js ├── regexp-sequences.py ├── release ├── PRESUBMIT.py ├── auto_push.py ├── auto_roll.py ├── common_includes.py ├── create_release.py ├── filter_build_files.py ├── git_recipes.py ├── list_deprecated.py ├── merge_to_branch.py ├── mergeinfo.py ├── roll_merge.py ├── roll_merge_gerrit.py ├── script_test.py ├── test_mergeinfo.py ├── test_scripts.py └── testdata │ └── v8 │ └── third_party │ └── googletest │ └── src │ └── googletest │ └── include │ └── gtest │ ├── baz │ └── gtest_new │ ├── gtest_new │ ├── gtest_prod.h │ └── new │ └── gtest_new ├── run-clang-tidy.py ├── run-num-fuzzer.py ├── run-tests.py ├── run-wasm-api-tests.py ├── run.py ├── run_perf.py ├── sanitizers ├── sancov_formatter.py ├── sancov_formatter_test.py ├── sancov_merger.py ├── sancov_merger_test.py ├── sanitize_pcs.py └── tsan_suppressions.txt ├── shell-utils.h ├── snapshot ├── asm_to_inline_asm.py └── compare_mksnapshot_output.py ├── sourcemap.mjs ├── splaytree.mjs ├── stats-viewer.py ├── system-analyzer ├── app-model.mjs ├── helper.mjs ├── index.css ├── index.html ├── index.mjs ├── local-server.sh ├── log │ ├── code.mjs │ ├── ic.mjs │ ├── log.mjs │ ├── map.mjs │ ├── tick.mjs │ └── timer.mjs ├── lws-middleware.js ├── processor.mjs ├── profiling.mjs ├── timeline.mjs └── view │ ├── code-panel-template.html │ ├── code-panel.mjs │ ├── events.mjs │ ├── helper.mjs │ ├── list-panel-template.html │ ├── list-panel.mjs │ ├── log-file-reader.mjs │ ├── map-panel-template.html │ ├── map-panel.mjs │ ├── map-panel │ ├── map-details-template.html │ ├── map-details.mjs │ ├── map-transitions-template.html │ └── map-transitions.mjs │ ├── profiler-panel-template.html │ ├── profiler-panel.mjs │ ├── property-link-table-template.html │ ├── property-link-table.mjs │ ├── script-panel-template.html │ ├── script-panel.mjs │ ├── timeline-panel-template.html │ ├── timeline-panel.mjs │ ├── timeline │ ├── timeline-overview-template.html │ ├── timeline-overview.mjs │ ├── timeline-track-base.mjs │ ├── timeline-track-map.mjs │ ├── timeline-track-stacked-base.mjs │ ├── timeline-track-template.html │ ├── timeline-track-tick.mjs │ ├── timeline-track-timer.mjs │ └── timeline-track.mjs │ ├── tool-tip-template.html │ └── tool-tip.mjs ├── test262-results-parser.js ├── testrunner ├── OWNERS ├── PRESUBMIT.py ├── __init__.py ├── base_runner.py ├── build_config.py ├── local │ ├── __init__.py │ ├── android.py │ ├── command.py │ ├── context.py │ ├── fake_testsuite │ │ ├── fake_testsuite.status │ │ └── testcfg.py │ ├── pool.py │ ├── pool_test.py │ ├── statusfile.py │ ├── statusfile_test.py │ ├── testsuite.py │ ├── testsuite_test.py │ ├── utils.py │ ├── variants.py │ └── verbose.py ├── num_fuzzer.py ├── objects │ ├── __init__.py │ ├── output.py │ ├── predictable.py │ ├── testcase.py │ └── testcase_test.py ├── outproc │ ├── __init__.py │ ├── base.py │ ├── message.py │ ├── mkgrokdump.py │ ├── mozilla.py │ ├── test262.py │ └── webkit.py ├── standard_runner.py ├── standard_runner_test.py ├── test_config.py ├── testdata │ ├── expected_test_results1.json │ ├── expected_test_results2.json │ ├── testroot1 │ │ ├── out │ │ │ └── build │ │ │ │ └── d8_mocked.py │ │ └── test │ │ │ └── sweet │ │ │ ├── sweet.status │ │ │ └── testcfg.py │ ├── testroot2 │ │ ├── out │ │ │ └── build │ │ │ │ └── d8_mocked.py │ │ └── test │ │ │ └── sweet │ │ │ ├── sweet.status │ │ │ └── testcfg.py │ ├── testroot3 │ │ ├── out │ │ │ └── build │ │ │ │ └── d8_mocked.py │ │ └── test │ │ │ └── sweet │ │ │ ├── sweet.status │ │ │ └── testcfg.py │ ├── testroot4 │ │ └── out │ │ │ └── build │ │ │ └── v8_build_config.json │ ├── testroot5 │ │ └── test │ │ │ └── sweet │ │ │ ├── sweet.status │ │ │ └── testcfg.py │ ├── testroot6 │ │ ├── out │ │ │ └── build │ │ │ │ └── d8_mocked.py │ │ └── test │ │ │ └── fat │ │ │ ├── fat.status │ │ │ └── testcfg.py │ └── v8_build_config.json ├── testproc │ ├── __init__.py │ ├── base.py │ ├── combiner.py │ ├── execution.py │ ├── expectation.py │ ├── filter.py │ ├── fuzzer.py │ ├── fuzzer_test.py │ ├── indicators.py │ ├── loader.py │ ├── loader_test.py │ ├── progress.py │ ├── rerun.py │ ├── result.py │ ├── resultdb.py │ ├── resultdb_test.py │ ├── seed.py │ ├── sequence.py │ ├── sequence_test.py │ ├── shard.py │ ├── shard_test.py │ ├── sigproc.py │ ├── stack_utils │ │ ├── __init__.py │ │ ├── clusterfuzz_fakes.py │ │ ├── stack_analyzer_util.py │ │ ├── stack_analyzer_util_test.py │ │ └── testdata │ │ │ ├── analyze_crash │ │ │ ├── code_kind.expected.json │ │ │ ├── code_kind.txt │ │ │ ├── data_race_1.expected.json │ │ │ ├── data_race_1.txt │ │ │ ├── data_race_2.expected.json │ │ │ ├── data_race_2.txt │ │ │ ├── data_race_clusterfuzz.expected.json │ │ │ ├── data_race_clusterfuzz.txt │ │ │ ├── deserialization.expected.json │ │ │ ├── deserialization.txt │ │ │ ├── fata_js_oom.expected.json │ │ │ ├── fata_js_oom.txt │ │ │ ├── has_optimized_code.expected.json │ │ │ ├── has_optimized_code.txt │ │ │ ├── heap_limit.expected.json │ │ │ ├── heap_limit.txt │ │ │ ├── is_main_thread_barrier.expected.json │ │ │ ├── is_main_thread_barrier.txt │ │ │ ├── is_main_thread_barrier_2.expected.json │ │ │ ├── is_main_thread_barrier_2.txt │ │ │ ├── js_func_ref.expected.json │ │ │ ├── js_func_ref.txt │ │ │ ├── marking_state.expected.json │ │ │ ├── marking_state.txt │ │ │ ├── maybe_is_cleared.expected.json │ │ │ ├── maybe_is_cleared.txt │ │ │ ├── missing_deoptimization.expected.json │ │ │ ├── missing_deoptimization.txt │ │ │ ├── seg_map_err.expected.json │ │ │ ├── seg_map_err.txt │ │ │ ├── segmentation_error.expected.json │ │ │ ├── segmentation_error.txt │ │ │ ├── segmentation_fault.expected.json │ │ │ ├── segmentation_fault.txt │ │ │ ├── stack_frame.expected.json │ │ │ ├── stack_frame.txt │ │ │ ├── static_assertion_1.expected.json │ │ │ ├── static_assertion_1.txt │ │ │ ├── static_assertion_2.expected.json │ │ │ ├── static_assertion_2.txt │ │ │ ├── storage_is_populated.expected.json │ │ │ ├── storage_is_populated.txt │ │ │ ├── topmost_optimized_code.expected.json │ │ │ ├── topmost_optimized_code.txt │ │ │ ├── type_assertion_1.expected.json │ │ │ ├── type_assertion_1.txt │ │ │ ├── type_assertion_2.expected.json │ │ │ ├── type_assertion_2.txt │ │ │ ├── unreachable_code.expected.json │ │ │ └── unreachable_code.txt │ │ │ └── custom_analyzer │ │ │ ├── data_race_1.expected │ │ │ ├── data_race_1.txt │ │ │ ├── data_race_2.expected │ │ │ ├── data_race_2.txt │ │ │ ├── data_race_3.expected │ │ │ ├── data_race_3.txt │ │ │ ├── data_race_4.expected │ │ │ ├── data_race_4.txt │ │ │ ├── data_race_5.expected │ │ │ ├── data_race_5.txt │ │ │ ├── data_race_6.expected │ │ │ ├── data_race_6.txt │ │ │ ├── data_race_8.expected │ │ │ ├── data_race_8.txt │ │ │ ├── data_race_9.expected │ │ │ └── data_race_9.txt │ ├── timeout.py │ ├── util.py │ ├── util_test.py │ ├── variant.py │ └── variant_test.py ├── trycatch_loader.js └── utils │ ├── __init__.py │ ├── augmented_options.py │ ├── dump_build_config.py │ ├── random_utils.py │ └── test_utils.py ├── tickprocessor-driver.mjs ├── tickprocessor.mjs ├── toolchain └── BUILD.gn ├── torque ├── format-torque.py └── vim-torque │ ├── README.md │ ├── ftdetect │ └── torque.vim │ └── syntax │ └── torque.vim ├── tracing └── proto-converter │ ├── .gitignore │ ├── .nvmrc │ ├── package-lock.json │ ├── package.json │ ├── proto-to-json.ts │ └── tsconfig.json ├── try_perf.py ├── turbolizer-perf.py ├── turbolizer ├── OWNERS ├── README.md ├── css │ ├── tabs.css │ ├── turbo-visualizer-ranges.css │ ├── turbo-visualizer.css │ └── turboshaft.css ├── deploy.sh ├── img │ ├── arrows │ │ ├── down-arrow.png │ │ ├── left-arrow.png │ │ ├── right-arrow.png │ │ └── up-arrow.png │ ├── toolbox │ │ ├── collapse-selected-icon.png │ │ ├── compress-layout-icon.png │ │ ├── hide-selected-icon.png │ │ ├── hide-unselected-icon.png │ │ ├── layout-icon.png │ │ ├── show-all-icon.png │ │ ├── show-control-icon.png │ │ ├── toggle-cache-layout-icon.png │ │ ├── toggle-custom-data-icon.png │ │ ├── toggle-hide-dead-icon.png │ │ ├── toggle-types-icon.png │ │ ├── uncollapse-selected-icon.png │ │ └── zoom-selection-icon.png │ ├── turboshaft │ │ ├── collapse_down.svg │ │ └── collapse_up.svg │ └── upload-icon.png ├── index.html ├── info-view.html ├── package-lock.json ├── package.json ├── rollup.config.js ├── src │ ├── common │ │ ├── constants.ts │ │ ├── util.ts │ │ └── view-elements.ts │ ├── edge.ts │ ├── graph-layout.ts │ ├── graph.ts │ ├── graphmultiview.ts │ ├── interval.ts │ ├── layout-occupation.ts │ ├── movable-container.ts │ ├── node-label.ts │ ├── node.ts │ ├── origin.ts │ ├── phases │ │ ├── disassembly-phase.ts │ │ ├── graph-phase │ │ │ ├── graph-edge.ts │ │ │ ├── graph-node.ts │ │ │ └── graph-phase.ts │ │ ├── instructions-phase.ts │ │ ├── phase.ts │ │ ├── schedule-phase.ts │ │ ├── sequence-phase.ts │ │ ├── turboshaft-custom-data-phase.ts │ │ └── turboshaft-graph-phase │ │ │ ├── turboshaft-graph-block.ts │ │ │ ├── turboshaft-graph-edge.ts │ │ │ ├── turboshaft-graph-node.ts │ │ │ └── turboshaft-graph-phase.ts │ ├── position.ts │ ├── resizer.ts │ ├── selection │ │ ├── selection-broker.ts │ │ ├── selection-handler.ts │ │ ├── selection-map.ts │ │ └── selection-storage.ts │ ├── source-resolver.ts │ ├── source.ts │ ├── tabs.ts │ ├── turbo-visualizer.ts │ ├── turboshaft-graph-layout.ts │ ├── turboshaft-graph.ts │ └── views │ │ ├── bytecode-source-view.ts │ │ ├── code-view.ts │ │ ├── disassembly-view.ts │ │ ├── graph-view.ts │ │ ├── history-view.ts │ │ ├── info-view.ts │ │ ├── movable-view.ts │ │ ├── range-view.ts │ │ ├── schedule-view.ts │ │ ├── sequence-view.ts │ │ ├── text-view.ts │ │ ├── turboshaft-graph-view.ts │ │ └── view.ts ├── test │ └── source-resolver-test.ts ├── tsconfig.json ├── tsconfig.test.json ├── tsfmt.json ├── tslint.json └── turbolizer.png ├── ubsan ├── ignorelist.txt └── vptr_ignorelist.txt ├── unittests ├── __init__.py ├── compare_torque_output_test.py ├── predictable_wrapper_test.py ├── run_perf_test.py ├── testdata │ ├── builddirs │ │ └── dir1 │ │ │ └── out │ │ │ └── build │ │ │ └── d8 │ ├── compare_torque │ │ ├── test1 │ │ │ ├── f1 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ └── f2 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ ├── test2 │ │ │ ├── f1 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ └── f2 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ ├── test3 │ │ │ ├── f1 │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ └── f2 │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ └── file3 │ │ └── test4 │ │ │ ├── f1 │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ └── file4 │ │ │ └── f2 │ │ │ ├── file1 │ │ │ └── file2 │ ├── d8_mocked1.py │ ├── d8_mocked2.py │ ├── predictable_mocked.py │ ├── results_processor.py │ ├── test1.json │ ├── test2.json │ └── test3.json └── v8_presubmit_test.py ├── update-object-macros-undef.py ├── v8_presubmit.py ├── v8heapconst.py ├── v8windbg ├── BUILD.gn ├── OWNERS ├── README.md ├── base │ ├── dbgext.cc │ ├── dbgext.def │ ├── dbgext.h │ ├── utilities.cc │ └── utilities.h ├── copy-prereqs.py ├── src │ ├── cur-isolate.cc │ ├── cur-isolate.h │ ├── js-stack.cc │ ├── js-stack.h │ ├── local-variables.cc │ ├── local-variables.h │ ├── object-inspection.cc │ ├── object-inspection.h │ ├── v8-debug-helper-interop.cc │ ├── v8-debug-helper-interop.h │ ├── v8windbg-extension.cc │ └── v8windbg-extension.h └── test │ ├── debug-callbacks.cc │ ├── debug-callbacks.h │ ├── script.js │ ├── v8windbg-test.cc │ └── v8windbg-test.h ├── valgrind └── asan │ └── dummy ├── vim ├── ninja-build.vim └── ninja_output.py ├── visual_studio └── README.txt ├── wasm-compilation-hints ├── OWNERS ├── inject-compilation-hints.py ├── wasm-objdump-compilation-hints.py └── wasm.py ├── wasm ├── BUILD.gn ├── code-size-factors.py ├── module-inspector.cc ├── update-wasm-fuzzers.sh ├── update-wasm-spec-tests.sh ├── wasm-import-profiler-end.js └── wasm-import-profiler.js ├── whitespace.txt ├── windbg.js ├── windows-tick-processor.bat ├── wpr.wprp └── zone-stats ├── categories.js ├── details-selection-template.html ├── details-selection.js ├── global-timeline-template.html ├── global-timeline.js ├── helper.js ├── index.html ├── model.js ├── trace-file-reader-template.html └── trace-file-reader.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/README.md -------------------------------------------------------------------------------- /cmake/MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/cmake/MSVC.cmake -------------------------------------------------------------------------------- /update_v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/update_v8.json -------------------------------------------------------------------------------- /update_v8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/update_v8.py -------------------------------------------------------------------------------- /v8/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.bazelrc -------------------------------------------------------------------------------- /v8/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.clang-format -------------------------------------------------------------------------------- /v8/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.clang-tidy -------------------------------------------------------------------------------- /v8/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.editorconfig -------------------------------------------------------------------------------- /v8/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.flake8 -------------------------------------------------------------------------------- /v8/.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.git-blame-ignore-revs -------------------------------------------------------------------------------- /v8/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.gitattributes -------------------------------------------------------------------------------- /v8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.gitignore -------------------------------------------------------------------------------- /v8/.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.gn -------------------------------------------------------------------------------- /v8/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.mailmap -------------------------------------------------------------------------------- /v8/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.style.yapf -------------------------------------------------------------------------------- /v8/.vpython3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.vpython3 -------------------------------------------------------------------------------- /v8/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/.ycm_extra_conf.py -------------------------------------------------------------------------------- /v8/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/AUTHORS -------------------------------------------------------------------------------- /v8/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/BUILD.bazel -------------------------------------------------------------------------------- /v8/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/BUILD.gn -------------------------------------------------------------------------------- /v8/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /v8/COMMON_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/COMMON_OWNERS -------------------------------------------------------------------------------- /v8/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/DEPS -------------------------------------------------------------------------------- /v8/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/DIR_METADATA -------------------------------------------------------------------------------- /v8/ENG_REVIEW_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/ENG_REVIEW_OWNERS -------------------------------------------------------------------------------- /v8/INFRA_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/INFRA_OWNERS -------------------------------------------------------------------------------- /v8/INTL_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/INTL_OWNERS -------------------------------------------------------------------------------- /v8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/LICENSE -------------------------------------------------------------------------------- /v8/LICENSE.fdlibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/LICENSE.fdlibm -------------------------------------------------------------------------------- /v8/LICENSE.strongtalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/LICENSE.strongtalk -------------------------------------------------------------------------------- /v8/LICENSE.v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/LICENSE.v8 -------------------------------------------------------------------------------- /v8/LOONG_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/LOONG_OWNERS -------------------------------------------------------------------------------- /v8/MIPS_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/MIPS_OWNERS -------------------------------------------------------------------------------- /v8/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/OWNERS -------------------------------------------------------------------------------- /v8/PPC_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/PPC_OWNERS -------------------------------------------------------------------------------- /v8/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/PRESUBMIT.py -------------------------------------------------------------------------------- /v8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/README.md -------------------------------------------------------------------------------- /v8/RISCV_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/RISCV_OWNERS -------------------------------------------------------------------------------- /v8/S390_OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/S390_OWNERS -------------------------------------------------------------------------------- /v8/WATCHLISTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/WATCHLISTS -------------------------------------------------------------------------------- /v8/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/WORKSPACE -------------------------------------------------------------------------------- /v8/bazel/BUILD.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/bazel/BUILD.icu -------------------------------------------------------------------------------- /v8/bazel/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/bazel/OWNERS -------------------------------------------------------------------------------- /v8/bazel/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/bazel/defs.bzl -------------------------------------------------------------------------------- /v8/bazel/requirements.in: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /v8/bazel/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/bazel/requirements.txt -------------------------------------------------------------------------------- /v8/build_overrides/OWNERS: -------------------------------------------------------------------------------- 1 | file:../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/codereview.settings -------------------------------------------------------------------------------- /v8/custom_deps/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !OWNERS 4 | !README.md -------------------------------------------------------------------------------- /v8/custom_deps/OWNERS: -------------------------------------------------------------------------------- 1 | file:../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/custom_deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/custom_deps/README.md -------------------------------------------------------------------------------- /v8/docs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/docs/OWNERS -------------------------------------------------------------------------------- /v8/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/docs/README.md -------------------------------------------------------------------------------- /v8/gni/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/Info.plist -------------------------------------------------------------------------------- /v8/gni/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/OWNERS -------------------------------------------------------------------------------- /v8/gni/proto_library.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/proto_library.gni -------------------------------------------------------------------------------- /v8/gni/protoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/protoc.py -------------------------------------------------------------------------------- /v8/gni/v8.cml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/v8.cml -------------------------------------------------------------------------------- /v8/gni/v8.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/gni/v8.gni -------------------------------------------------------------------------------- /v8/include/APIDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/APIDesign.md -------------------------------------------------------------------------------- /v8/include/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/DEPS -------------------------------------------------------------------------------- /v8/include/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/DIR_METADATA -------------------------------------------------------------------------------- /v8/include/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/OWNERS -------------------------------------------------------------------------------- /v8/include/cppgc/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/DEPS -------------------------------------------------------------------------------- /v8/include/cppgc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/OWNERS -------------------------------------------------------------------------------- /v8/include/cppgc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/README.md -------------------------------------------------------------------------------- /v8/include/cppgc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/common.h -------------------------------------------------------------------------------- /v8/include/cppgc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/heap.h -------------------------------------------------------------------------------- /v8/include/cppgc/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/macros.h -------------------------------------------------------------------------------- /v8/include/cppgc/member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/member.h -------------------------------------------------------------------------------- /v8/include/cppgc/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/testing.h -------------------------------------------------------------------------------- /v8/include/cppgc/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/cppgc/visitor.h -------------------------------------------------------------------------------- /v8/include/js_protocol.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/js_protocol.pdl -------------------------------------------------------------------------------- /v8/include/v8-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-callbacks.h -------------------------------------------------------------------------------- /v8/include/v8-container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-container.h -------------------------------------------------------------------------------- /v8/include/v8-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-context.h -------------------------------------------------------------------------------- /v8/include/v8-cppgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-cppgc.h -------------------------------------------------------------------------------- /v8/include/v8-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-data.h -------------------------------------------------------------------------------- /v8/include/v8-date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-date.h -------------------------------------------------------------------------------- /v8/include/v8-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-debug.h -------------------------------------------------------------------------------- /v8/include/v8-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-exception.h -------------------------------------------------------------------------------- /v8/include/v8-extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-extension.h -------------------------------------------------------------------------------- /v8/include/v8-external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-external.h -------------------------------------------------------------------------------- /v8/include/v8-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-forward.h -------------------------------------------------------------------------------- /v8/include/v8-function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-function.h -------------------------------------------------------------------------------- /v8/include/v8-inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-inspector.h -------------------------------------------------------------------------------- /v8/include/v8-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-internal.h -------------------------------------------------------------------------------- /v8/include/v8-isolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-isolate.h -------------------------------------------------------------------------------- /v8/include/v8-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-json.h -------------------------------------------------------------------------------- /v8/include/v8-locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-locker.h -------------------------------------------------------------------------------- /v8/include/v8-maybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-maybe.h -------------------------------------------------------------------------------- /v8/include/v8-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-message.h -------------------------------------------------------------------------------- /v8/include/v8-metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-metrics.h -------------------------------------------------------------------------------- /v8/include/v8-microtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-microtask.h -------------------------------------------------------------------------------- /v8/include/v8-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-object.h -------------------------------------------------------------------------------- /v8/include/v8-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-platform.h -------------------------------------------------------------------------------- /v8/include/v8-primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-primitive.h -------------------------------------------------------------------------------- /v8/include/v8-profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-profiler.h -------------------------------------------------------------------------------- /v8/include/v8-promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-promise.h -------------------------------------------------------------------------------- /v8/include/v8-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-proxy.h -------------------------------------------------------------------------------- /v8/include/v8-regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-regexp.h -------------------------------------------------------------------------------- /v8/include/v8-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-script.h -------------------------------------------------------------------------------- /v8/include/v8-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-snapshot.h -------------------------------------------------------------------------------- /v8/include/v8-statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-statistics.h -------------------------------------------------------------------------------- /v8/include/v8-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-template.h -------------------------------------------------------------------------------- /v8/include/v8-unwinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-unwinder.h -------------------------------------------------------------------------------- /v8/include/v8-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-util.h -------------------------------------------------------------------------------- /v8/include/v8-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-value.h -------------------------------------------------------------------------------- /v8/include/v8-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-version.h -------------------------------------------------------------------------------- /v8/include/v8-wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8-wasm.h -------------------------------------------------------------------------------- /v8/include/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8.h -------------------------------------------------------------------------------- /v8/include/v8config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/include/v8config.h -------------------------------------------------------------------------------- /v8/infra/OWNERS: -------------------------------------------------------------------------------- 1 | file:../INFRA_OWNERS 2 | 3 | tandrii@chromium.org 4 | -------------------------------------------------------------------------------- /v8/infra/README.md: -------------------------------------------------------------------------------- 1 | This directory contains infra-specific files. 2 | -------------------------------------------------------------------------------- /v8/infra/mb/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/infra/mb/PRESUBMIT.py -------------------------------------------------------------------------------- /v8/infra/mb/mb_config.pyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/infra/mb/mb_config.pyl -------------------------------------------------------------------------------- /v8/infra/playground/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/infra/playground/OWNERS -------------------------------------------------------------------------------- /v8/infra/playground/README.md: -------------------------------------------------------------------------------- 1 | This directory's purpose is test OWNERS enforcement. -------------------------------------------------------------------------------- /v8/infra/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/infra/testing/README.md -------------------------------------------------------------------------------- /v8/samples/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/OWNERS -------------------------------------------------------------------------------- /v8/samples/count-hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/count-hosts.js -------------------------------------------------------------------------------- /v8/samples/cppgc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/cppgc/OWNERS -------------------------------------------------------------------------------- /v8/samples/hello-world.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/hello-world.cc -------------------------------------------------------------------------------- /v8/samples/process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/process.cc -------------------------------------------------------------------------------- /v8/samples/shell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/samples/shell.cc -------------------------------------------------------------------------------- /v8/src/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/DEPS -------------------------------------------------------------------------------- /v8/src/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/OWNERS -------------------------------------------------------------------------------- /v8/src/api/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/OWNERS -------------------------------------------------------------------------------- /v8/src/api/api-arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api-arguments.h -------------------------------------------------------------------------------- /v8/src/api/api-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api-inl.h -------------------------------------------------------------------------------- /v8/src/api/api-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api-macros.h -------------------------------------------------------------------------------- /v8/src/api/api-natives.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api-natives.cc -------------------------------------------------------------------------------- /v8/src/api/api-natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api-natives.h -------------------------------------------------------------------------------- /v8/src/api/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api.cc -------------------------------------------------------------------------------- /v8/src/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/api/api.h -------------------------------------------------------------------------------- /v8/src/asmjs/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/asmjs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/OWNERS -------------------------------------------------------------------------------- /v8/src/asmjs/asm-js.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-js.cc -------------------------------------------------------------------------------- /v8/src/asmjs/asm-js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-js.h -------------------------------------------------------------------------------- /v8/src/asmjs/asm-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-names.h -------------------------------------------------------------------------------- /v8/src/asmjs/asm-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-parser.cc -------------------------------------------------------------------------------- /v8/src/asmjs/asm-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-parser.h -------------------------------------------------------------------------------- /v8/src/asmjs/asm-scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-scanner.h -------------------------------------------------------------------------------- /v8/src/asmjs/asm-types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-types.cc -------------------------------------------------------------------------------- /v8/src/asmjs/asm-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/asmjs/asm-types.h -------------------------------------------------------------------------------- /v8/src/ast/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/ast/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/OWNERS -------------------------------------------------------------------------------- /v8/src/ast/ast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/ast.cc -------------------------------------------------------------------------------- /v8/src/ast/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/ast.h -------------------------------------------------------------------------------- /v8/src/ast/modules.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/modules.cc -------------------------------------------------------------------------------- /v8/src/ast/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/modules.h -------------------------------------------------------------------------------- /v8/src/ast/prettyprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/prettyprinter.h -------------------------------------------------------------------------------- /v8/src/ast/scopes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/scopes.cc -------------------------------------------------------------------------------- /v8/src/ast/scopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/scopes.h -------------------------------------------------------------------------------- /v8/src/ast/variables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/variables.cc -------------------------------------------------------------------------------- /v8/src/ast/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ast/variables.h -------------------------------------------------------------------------------- /v8/src/base/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/DEPS -------------------------------------------------------------------------------- /v8/src/base/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/base/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/OWNERS -------------------------------------------------------------------------------- /v8/src/base/atomic-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/atomic-utils.h -------------------------------------------------------------------------------- /v8/src/base/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/atomicops.h -------------------------------------------------------------------------------- /v8/src/base/base-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/base-export.h -------------------------------------------------------------------------------- /v8/src/base/bit-field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/bit-field.h -------------------------------------------------------------------------------- /v8/src/base/bits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/bits.cc -------------------------------------------------------------------------------- /v8/src/base/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/bits.h -------------------------------------------------------------------------------- /v8/src/base/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/bounds.h -------------------------------------------------------------------------------- /v8/src/base/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/build_config.h -------------------------------------------------------------------------------- /v8/src/base/contextual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/contextual.h -------------------------------------------------------------------------------- /v8/src/base/cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/cpu.cc -------------------------------------------------------------------------------- /v8/src/base/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/cpu.h -------------------------------------------------------------------------------- /v8/src/base/enum-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/enum-set.h -------------------------------------------------------------------------------- /v8/src/base/file-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/file-utils.cc -------------------------------------------------------------------------------- /v8/src/base/file-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/file-utils.h -------------------------------------------------------------------------------- /v8/src/base/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/flags.h -------------------------------------------------------------------------------- /v8/src/base/free_deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/free_deleter.h -------------------------------------------------------------------------------- /v8/src/base/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/functional.h -------------------------------------------------------------------------------- /v8/src/base/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/hashmap.h -------------------------------------------------------------------------------- /v8/src/base/ieee754.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/ieee754.cc -------------------------------------------------------------------------------- /v8/src/base/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/ieee754.h -------------------------------------------------------------------------------- /v8/src/base/ios-headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/ios-headers.h -------------------------------------------------------------------------------- /v8/src/base/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/iterator.h -------------------------------------------------------------------------------- /v8/src/base/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/logging.cc -------------------------------------------------------------------------------- /v8/src/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/logging.h -------------------------------------------------------------------------------- /v8/src/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/macros.h -------------------------------------------------------------------------------- /v8/src/base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/memory.h -------------------------------------------------------------------------------- /v8/src/base/numbers/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/numbers/dtoa.h -------------------------------------------------------------------------------- /v8/src/base/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/once.cc -------------------------------------------------------------------------------- /v8/src/base/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/once.h -------------------------------------------------------------------------------- /v8/src/base/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/optional.h -------------------------------------------------------------------------------- /v8/src/base/qnx-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/qnx-math.h -------------------------------------------------------------------------------- /v8/src/base/ring-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/ring-buffer.h -------------------------------------------------------------------------------- /v8/src/base/small-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/small-vector.h -------------------------------------------------------------------------------- /v8/src/base/strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/strings.cc -------------------------------------------------------------------------------- /v8/src/base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/strings.h -------------------------------------------------------------------------------- /v8/src/base/sys-info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/sys-info.cc -------------------------------------------------------------------------------- /v8/src/base/sys-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/sys-info.h -------------------------------------------------------------------------------- /v8/src/base/ubsan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/ubsan.cc -------------------------------------------------------------------------------- /v8/src/base/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/vector.h -------------------------------------------------------------------------------- /v8/src/base/vlq-base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/vlq-base64.cc -------------------------------------------------------------------------------- /v8/src/base/vlq-base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/vlq-base64.h -------------------------------------------------------------------------------- /v8/src/base/vlq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/base/vlq.h -------------------------------------------------------------------------------- /v8/src/baseline/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/baseline/DEPS -------------------------------------------------------------------------------- /v8/src/baseline/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/baseline/OWNERS -------------------------------------------------------------------------------- /v8/src/baseline/baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/baseline/baseline.h -------------------------------------------------------------------------------- /v8/src/bigint/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-readability/check -------------------------------------------------------------------------------- /v8/src/bigint/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/DEPS -------------------------------------------------------------------------------- /v8/src/bigint/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/OWNERS -------------------------------------------------------------------------------- /v8/src/bigint/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/bigint.h -------------------------------------------------------------------------------- /v8/src/bigint/bitwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/bitwise.cc -------------------------------------------------------------------------------- /v8/src/bigint/mul-fft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/mul-fft.cc -------------------------------------------------------------------------------- /v8/src/bigint/mul-toom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/mul-toom.cc -------------------------------------------------------------------------------- /v8/src/bigint/tostring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/tostring.cc -------------------------------------------------------------------------------- /v8/src/bigint/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/bigint/util.h -------------------------------------------------------------------------------- /v8/src/builtins/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/builtins/array.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/array.tq -------------------------------------------------------------------------------- /v8/src/builtins/base.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/base.tq -------------------------------------------------------------------------------- /v8/src/builtins/boolean.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/boolean.tq -------------------------------------------------------------------------------- /v8/src/builtins/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/builtins.h -------------------------------------------------------------------------------- /v8/src/builtins/cast.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/cast.tq -------------------------------------------------------------------------------- /v8/src/builtins/console.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/console.tq -------------------------------------------------------------------------------- /v8/src/builtins/convert.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/convert.tq -------------------------------------------------------------------------------- /v8/src/builtins/frames.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/frames.tq -------------------------------------------------------------------------------- /v8/src/builtins/ic.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/ic.tq -------------------------------------------------------------------------------- /v8/src/builtins/math.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/math.tq -------------------------------------------------------------------------------- /v8/src/builtins/number.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/number.tq -------------------------------------------------------------------------------- /v8/src/builtins/object.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/object.tq -------------------------------------------------------------------------------- /v8/src/builtins/proxy.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/proxy.tq -------------------------------------------------------------------------------- /v8/src/builtins/reflect.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/reflect.tq -------------------------------------------------------------------------------- /v8/src/builtins/regexp.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/regexp.tq -------------------------------------------------------------------------------- /v8/src/builtins/symbol.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/symbol.tq -------------------------------------------------------------------------------- /v8/src/builtins/wasm.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/builtins/wasm.tq -------------------------------------------------------------------------------- /v8/src/codegen/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/DEPS -------------------------------------------------------------------------------- /v8/src/codegen/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/OWNERS -------------------------------------------------------------------------------- /v8/src/codegen/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/assembler.h -------------------------------------------------------------------------------- /v8/src/codegen/callable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/callable.h -------------------------------------------------------------------------------- /v8/src/codegen/code-desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/code-desc.h -------------------------------------------------------------------------------- /v8/src/codegen/compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/compiler.cc -------------------------------------------------------------------------------- /v8/src/codegen/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/compiler.h -------------------------------------------------------------------------------- /v8/src/codegen/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/label.h -------------------------------------------------------------------------------- /v8/src/codegen/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/register.h -------------------------------------------------------------------------------- /v8/src/codegen/reglist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/reglist.h -------------------------------------------------------------------------------- /v8/src/codegen/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/signature.h -------------------------------------------------------------------------------- /v8/src/codegen/tnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/tnode.cc -------------------------------------------------------------------------------- /v8/src/codegen/tnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/codegen/tnode.h -------------------------------------------------------------------------------- /v8/src/common/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/common/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/common/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/checks.h -------------------------------------------------------------------------------- /v8/src/common/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/globals.h -------------------------------------------------------------------------------- /v8/src/common/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/operation.h -------------------------------------------------------------------------------- /v8/src/common/ptr-compr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/ptr-compr.cc -------------------------------------------------------------------------------- /v8/src/common/ptr-compr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/common/ptr-compr.h -------------------------------------------------------------------------------- /v8/src/compiler/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/DEPS -------------------------------------------------------------------------------- /v8/src/compiler/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/OWNERS -------------------------------------------------------------------------------- /v8/src/compiler/diamond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/diamond.h -------------------------------------------------------------------------------- /v8/src/compiler/frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/frame.cc -------------------------------------------------------------------------------- /v8/src/compiler/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/frame.h -------------------------------------------------------------------------------- /v8/src/compiler/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/globals.h -------------------------------------------------------------------------------- /v8/src/compiler/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/graph.cc -------------------------------------------------------------------------------- /v8/src/compiler/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/graph.h -------------------------------------------------------------------------------- /v8/src/compiler/js-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/js-graph.h -------------------------------------------------------------------------------- /v8/src/compiler/linkage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/linkage.cc -------------------------------------------------------------------------------- /v8/src/compiler/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/linkage.h -------------------------------------------------------------------------------- /v8/src/compiler/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/node.cc -------------------------------------------------------------------------------- /v8/src/compiler/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/node.h -------------------------------------------------------------------------------- /v8/src/compiler/opcodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/opcodes.cc -------------------------------------------------------------------------------- /v8/src/compiler/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/opcodes.h -------------------------------------------------------------------------------- /v8/src/compiler/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/operator.h -------------------------------------------------------------------------------- /v8/src/compiler/osr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/osr.cc -------------------------------------------------------------------------------- /v8/src/compiler/osr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/osr.h -------------------------------------------------------------------------------- /v8/src/compiler/phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/phase.h -------------------------------------------------------------------------------- /v8/src/compiler/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/pipeline.h -------------------------------------------------------------------------------- /v8/src/compiler/refs-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/refs-map.h -------------------------------------------------------------------------------- /v8/src/compiler/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/schedule.h -------------------------------------------------------------------------------- /v8/src/compiler/turbofan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/turbofan.h -------------------------------------------------------------------------------- /v8/src/compiler/typer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/typer.cc -------------------------------------------------------------------------------- /v8/src/compiler/typer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/typer.h -------------------------------------------------------------------------------- /v8/src/compiler/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/types.cc -------------------------------------------------------------------------------- /v8/src/compiler/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/types.h -------------------------------------------------------------------------------- /v8/src/compiler/use-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/use-info.h -------------------------------------------------------------------------------- /v8/src/compiler/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/compiler/verifier.h -------------------------------------------------------------------------------- /v8/src/d8/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/OWNERS -------------------------------------------------------------------------------- /v8/src/d8/cov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/cov.cc -------------------------------------------------------------------------------- /v8/src/d8/cov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/cov.h -------------------------------------------------------------------------------- /v8/src/d8/d8-console.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-console.cc -------------------------------------------------------------------------------- /v8/src/d8/d8-console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-console.h -------------------------------------------------------------------------------- /v8/src/d8/d8-js.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-js.cc -------------------------------------------------------------------------------- /v8/src/d8/d8-platforms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-platforms.cc -------------------------------------------------------------------------------- /v8/src/d8/d8-platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-platforms.h -------------------------------------------------------------------------------- /v8/src/d8/d8-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-posix.cc -------------------------------------------------------------------------------- /v8/src/d8/d8-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-test.cc -------------------------------------------------------------------------------- /v8/src/d8/d8-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8-windows.cc -------------------------------------------------------------------------------- /v8/src/d8/d8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8.cc -------------------------------------------------------------------------------- /v8/src/d8/d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/d8/d8.h -------------------------------------------------------------------------------- /v8/src/date/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/date/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/OWNERS -------------------------------------------------------------------------------- /v8/src/date/date.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/date.cc -------------------------------------------------------------------------------- /v8/src/date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/date.h -------------------------------------------------------------------------------- /v8/src/date/dateparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/dateparser.cc -------------------------------------------------------------------------------- /v8/src/date/dateparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/date/dateparser.h -------------------------------------------------------------------------------- /v8/src/debug/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/debug/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/OWNERS -------------------------------------------------------------------------------- /v8/src/debug/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/debug.cc -------------------------------------------------------------------------------- /v8/src/debug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/debug.h -------------------------------------------------------------------------------- /v8/src/debug/liveedit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/liveedit.cc -------------------------------------------------------------------------------- /v8/src/debug/liveedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/debug/liveedit.h -------------------------------------------------------------------------------- /v8/src/debug/wasm/gdb-server/OWNERS: -------------------------------------------------------------------------------- 1 | paolosev@microsoft.com 2 | -------------------------------------------------------------------------------- /v8/src/deoptimizer/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/deoptimizer/DEPS -------------------------------------------------------------------------------- /v8/src/deoptimizer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/deoptimizer/OWNERS -------------------------------------------------------------------------------- /v8/src/diagnostics/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+src/compiler/node.h", 3 | ] 4 | -------------------------------------------------------------------------------- /v8/src/diagnostics/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/execution/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/execution/DEPS -------------------------------------------------------------------------------- /v8/src/execution/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/execution/OWNERS -------------------------------------------------------------------------------- /v8/src/execution/frames.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/execution/frames.cc -------------------------------------------------------------------------------- /v8/src/execution/frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/execution/frames.h -------------------------------------------------------------------------------- /v8/src/execution/isolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/execution/isolate.h -------------------------------------------------------------------------------- /v8/src/extensions/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/flags/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/flags/flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/flags/flags.cc -------------------------------------------------------------------------------- /v8/src/flags/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/flags/flags.h -------------------------------------------------------------------------------- /v8/src/handles/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/handles/OWNERS -------------------------------------------------------------------------------- /v8/src/handles/handles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/handles/handles.cc -------------------------------------------------------------------------------- /v8/src/handles/handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/handles/handles.h -------------------------------------------------------------------------------- /v8/src/heap/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/heap/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/OWNERS -------------------------------------------------------------------------------- /v8/src/heap/base-space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/base-space.cc -------------------------------------------------------------------------------- /v8/src/heap/base-space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/base-space.h -------------------------------------------------------------------------------- /v8/src/heap/base/stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/base/stack.cc -------------------------------------------------------------------------------- /v8/src/heap/base/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/base/stack.h -------------------------------------------------------------------------------- /v8/src/heap/code-range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/code-range.cc -------------------------------------------------------------------------------- /v8/src/heap/code-range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/code-range.h -------------------------------------------------------------------------------- /v8/src/heap/code-stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/code-stats.cc -------------------------------------------------------------------------------- /v8/src/heap/code-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/code-stats.h -------------------------------------------------------------------------------- /v8/src/heap/cppgc-js/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc-js/DEPS -------------------------------------------------------------------------------- /v8/src/heap/cppgc/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc/DEPS -------------------------------------------------------------------------------- /v8/src/heap/cppgc/heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc/heap.cc -------------------------------------------------------------------------------- /v8/src/heap/cppgc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc/heap.h -------------------------------------------------------------------------------- /v8/src/heap/cppgc/marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc/marker.h -------------------------------------------------------------------------------- /v8/src/heap/cppgc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/cppgc/memory.h -------------------------------------------------------------------------------- /v8/src/heap/factory-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/factory-base.h -------------------------------------------------------------------------------- /v8/src/heap/factory-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/factory-inl.h -------------------------------------------------------------------------------- /v8/src/heap/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/factory.cc -------------------------------------------------------------------------------- /v8/src/heap/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/factory.h -------------------------------------------------------------------------------- /v8/src/heap/free-list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/free-list.cc -------------------------------------------------------------------------------- /v8/src/heap/free-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/free-list.h -------------------------------------------------------------------------------- /v8/src/heap/gc-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/gc-callbacks.h -------------------------------------------------------------------------------- /v8/src/heap/gc-tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/gc-tracer.cc -------------------------------------------------------------------------------- /v8/src/heap/gc-tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/gc-tracer.h -------------------------------------------------------------------------------- /v8/src/heap/heap-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/heap-inl.h -------------------------------------------------------------------------------- /v8/src/heap/heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/heap.cc -------------------------------------------------------------------------------- /v8/src/heap/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/heap.h -------------------------------------------------------------------------------- /v8/src/heap/large-spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/large-spaces.h -------------------------------------------------------------------------------- /v8/src/heap/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/list.h -------------------------------------------------------------------------------- /v8/src/heap/local-heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/local-heap.cc -------------------------------------------------------------------------------- /v8/src/heap/local-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/local-heap.h -------------------------------------------------------------------------------- /v8/src/heap/mark-compact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/mark-compact.h -------------------------------------------------------------------------------- /v8/src/heap/marking-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/marking-inl.h -------------------------------------------------------------------------------- /v8/src/heap/marking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/marking.cc -------------------------------------------------------------------------------- /v8/src/heap/marking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/marking.h -------------------------------------------------------------------------------- /v8/src/heap/memory-chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/memory-chunk.h -------------------------------------------------------------------------------- /v8/src/heap/minor-gc-job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/minor-gc-job.h -------------------------------------------------------------------------------- /v8/src/heap/new-spaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/new-spaces.cc -------------------------------------------------------------------------------- /v8/src/heap/new-spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/new-spaces.h -------------------------------------------------------------------------------- /v8/src/heap/object-lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/object-lock.h -------------------------------------------------------------------------------- /v8/src/heap/object-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/object-stats.h -------------------------------------------------------------------------------- /v8/src/heap/paged-spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/paged-spaces.h -------------------------------------------------------------------------------- /v8/src/heap/parked-scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/parked-scope.h -------------------------------------------------------------------------------- /v8/src/heap/progress-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/progress-bar.h -------------------------------------------------------------------------------- /v8/src/heap/safepoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/safepoint.cc -------------------------------------------------------------------------------- /v8/src/heap/safepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/safepoint.h -------------------------------------------------------------------------------- /v8/src/heap/scavenger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/scavenger.cc -------------------------------------------------------------------------------- /v8/src/heap/scavenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/scavenger.h -------------------------------------------------------------------------------- /v8/src/heap/slot-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/slot-set.cc -------------------------------------------------------------------------------- /v8/src/heap/slot-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/slot-set.h -------------------------------------------------------------------------------- /v8/src/heap/spaces-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/spaces-inl.h -------------------------------------------------------------------------------- /v8/src/heap/spaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/spaces.cc -------------------------------------------------------------------------------- /v8/src/heap/spaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/spaces.h -------------------------------------------------------------------------------- /v8/src/heap/sweeper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/sweeper.cc -------------------------------------------------------------------------------- /v8/src/heap/sweeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/heap/sweeper.h -------------------------------------------------------------------------------- /v8/src/ic/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/ic/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/OWNERS -------------------------------------------------------------------------------- /v8/src/ic/ic-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/ic-inl.h -------------------------------------------------------------------------------- /v8/src/ic/ic-stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/ic-stats.cc -------------------------------------------------------------------------------- /v8/src/ic/ic-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/ic-stats.h -------------------------------------------------------------------------------- /v8/src/ic/ic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/ic.cc -------------------------------------------------------------------------------- /v8/src/ic/ic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/ic.h -------------------------------------------------------------------------------- /v8/src/ic/stub-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/stub-cache.cc -------------------------------------------------------------------------------- /v8/src/ic/stub-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/ic/stub-cache.h -------------------------------------------------------------------------------- /v8/src/init/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/init/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/OWNERS -------------------------------------------------------------------------------- /v8/src/init/bootstrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/bootstrapper.h -------------------------------------------------------------------------------- /v8/src/init/heap-symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/heap-symbols.h -------------------------------------------------------------------------------- /v8/src/init/icu_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/icu_util.cc -------------------------------------------------------------------------------- /v8/src/init/icu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/icu_util.h -------------------------------------------------------------------------------- /v8/src/init/v8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/v8.cc -------------------------------------------------------------------------------- /v8/src/init/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/init/v8.h -------------------------------------------------------------------------------- /v8/src/inspector/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/inspector/BUILD.gn -------------------------------------------------------------------------------- /v8/src/inspector/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/inspector/DEPS -------------------------------------------------------------------------------- /v8/src/inspector/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/inspector/OWNERS -------------------------------------------------------------------------------- /v8/src/inspector/crc32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/inspector/crc32.cc -------------------------------------------------------------------------------- /v8/src/inspector/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/inspector/crc32.h -------------------------------------------------------------------------------- /v8/src/interpreter/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/interpreter/OWNERS -------------------------------------------------------------------------------- /v8/src/json/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/json/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/json/OWNERS -------------------------------------------------------------------------------- /v8/src/json/json-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/json/json-parser.cc -------------------------------------------------------------------------------- /v8/src/json/json-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/json/json-parser.h -------------------------------------------------------------------------------- /v8/src/libplatform/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/libplatform/DEPS -------------------------------------------------------------------------------- /v8/src/libplatform/OWNERS: -------------------------------------------------------------------------------- 1 | mlippautz@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/libplatform/tracing/OWNERS: -------------------------------------------------------------------------------- 1 | cbruni@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/libsampler/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/libsampler/DEPS -------------------------------------------------------------------------------- /v8/src/libsampler/OWNERS: -------------------------------------------------------------------------------- 1 | cbruni@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/logging/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/logging/counters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/counters.cc -------------------------------------------------------------------------------- /v8/src/logging/counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/counters.h -------------------------------------------------------------------------------- /v8/src/logging/log-file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/log-file.cc -------------------------------------------------------------------------------- /v8/src/logging/log-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/log-file.h -------------------------------------------------------------------------------- /v8/src/logging/log-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/log-inl.h -------------------------------------------------------------------------------- /v8/src/logging/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/log.cc -------------------------------------------------------------------------------- /v8/src/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/log.h -------------------------------------------------------------------------------- /v8/src/logging/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/metrics.cc -------------------------------------------------------------------------------- /v8/src/logging/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/logging/metrics.h -------------------------------------------------------------------------------- /v8/src/maglev/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/DEPS -------------------------------------------------------------------------------- /v8/src/maglev/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/maglev/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/OWNERS -------------------------------------------------------------------------------- /v8/src/maglev/maglev-ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/maglev-ir.cc -------------------------------------------------------------------------------- /v8/src/maglev/maglev-ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/maglev-ir.h -------------------------------------------------------------------------------- /v8/src/maglev/maglev.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/maglev.cc -------------------------------------------------------------------------------- /v8/src/maglev/maglev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/maglev/maglev.h -------------------------------------------------------------------------------- /v8/src/numbers/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/numbers/OWNERS -------------------------------------------------------------------------------- /v8/src/objects/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/objects/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/arguments.h -------------------------------------------------------------------------------- /v8/src/objects/bigint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/bigint.cc -------------------------------------------------------------------------------- /v8/src/objects/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/bigint.h -------------------------------------------------------------------------------- /v8/src/objects/bigint.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/bigint.tq -------------------------------------------------------------------------------- /v8/src/objects/cell-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/cell-inl.h -------------------------------------------------------------------------------- /v8/src/objects/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/cell.h -------------------------------------------------------------------------------- /v8/src/objects/cell.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/cell.tq -------------------------------------------------------------------------------- /v8/src/objects/code-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/code-inl.h -------------------------------------------------------------------------------- /v8/src/objects/code-kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/code-kind.h -------------------------------------------------------------------------------- /v8/src/objects/code.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/code.cc -------------------------------------------------------------------------------- /v8/src/objects/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/code.h -------------------------------------------------------------------------------- /v8/src/objects/contexts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/contexts.cc -------------------------------------------------------------------------------- /v8/src/objects/contexts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/contexts.h -------------------------------------------------------------------------------- /v8/src/objects/contexts.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/contexts.tq -------------------------------------------------------------------------------- /v8/src/objects/elements.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/elements.cc -------------------------------------------------------------------------------- /v8/src/objects/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/elements.h -------------------------------------------------------------------------------- /v8/src/objects/foreign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/foreign.h -------------------------------------------------------------------------------- /v8/src/objects/foreign.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/foreign.tq -------------------------------------------------------------------------------- /v8/src/objects/hole-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/hole-inl.h -------------------------------------------------------------------------------- /v8/src/objects/hole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/hole.h -------------------------------------------------------------------------------- /v8/src/objects/hole.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/hole.tq -------------------------------------------------------------------------------- /v8/src/objects/js-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-array.h -------------------------------------------------------------------------------- /v8/src/objects/js-array.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-array.tq -------------------------------------------------------------------------------- /v8/src/objects/js-locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-locale.h -------------------------------------------------------------------------------- /v8/src/objects/js-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-proxy.h -------------------------------------------------------------------------------- /v8/src/objects/js-proxy.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-proxy.tq -------------------------------------------------------------------------------- /v8/src/objects/js-regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-regexp.h -------------------------------------------------------------------------------- /v8/src/objects/js-struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/js-struct.h -------------------------------------------------------------------------------- /v8/src/objects/keys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/keys.cc -------------------------------------------------------------------------------- /v8/src/objects/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/keys.h -------------------------------------------------------------------------------- /v8/src/objects/lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/lookup.cc -------------------------------------------------------------------------------- /v8/src/objects/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/lookup.h -------------------------------------------------------------------------------- /v8/src/objects/managed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/managed.cc -------------------------------------------------------------------------------- /v8/src/objects/managed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/managed.h -------------------------------------------------------------------------------- /v8/src/objects/map-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/map-inl.h -------------------------------------------------------------------------------- /v8/src/objects/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/map.cc -------------------------------------------------------------------------------- /v8/src/objects/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/map.h -------------------------------------------------------------------------------- /v8/src/objects/map.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/map.tq -------------------------------------------------------------------------------- /v8/src/objects/microtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/microtask.h -------------------------------------------------------------------------------- /v8/src/objects/module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/module.cc -------------------------------------------------------------------------------- /v8/src/objects/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/module.h -------------------------------------------------------------------------------- /v8/src/objects/module.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/module.tq -------------------------------------------------------------------------------- /v8/src/objects/name-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/name-inl.h -------------------------------------------------------------------------------- /v8/src/objects/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/name.h -------------------------------------------------------------------------------- /v8/src/objects/name.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/name.tq -------------------------------------------------------------------------------- /v8/src/objects/objects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/objects.cc -------------------------------------------------------------------------------- /v8/src/objects/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/objects.h -------------------------------------------------------------------------------- /v8/src/objects/oddball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/oddball.h -------------------------------------------------------------------------------- /v8/src/objects/oddball.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/oddball.tq -------------------------------------------------------------------------------- /v8/src/objects/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/promise.h -------------------------------------------------------------------------------- /v8/src/objects/promise.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/promise.tq -------------------------------------------------------------------------------- /v8/src/objects/property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/property.cc -------------------------------------------------------------------------------- /v8/src/objects/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/property.h -------------------------------------------------------------------------------- /v8/src/objects/prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/prototype.h -------------------------------------------------------------------------------- /v8/src/objects/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/script.h -------------------------------------------------------------------------------- /v8/src/objects/script.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/script.tq -------------------------------------------------------------------------------- /v8/src/objects/simd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/simd.cc -------------------------------------------------------------------------------- /v8/src/objects/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/simd.h -------------------------------------------------------------------------------- /v8/src/objects/slots-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/slots-inl.h -------------------------------------------------------------------------------- /v8/src/objects/slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/slots.h -------------------------------------------------------------------------------- /v8/src/objects/smi-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/smi-inl.h -------------------------------------------------------------------------------- /v8/src/objects/smi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/smi.h -------------------------------------------------------------------------------- /v8/src/objects/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/string.cc -------------------------------------------------------------------------------- /v8/src/objects/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/string.h -------------------------------------------------------------------------------- /v8/src/objects/string.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/string.tq -------------------------------------------------------------------------------- /v8/src/objects/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/struct.h -------------------------------------------------------------------------------- /v8/src/objects/struct.tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/struct.tq -------------------------------------------------------------------------------- /v8/src/objects/tagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/tagged.h -------------------------------------------------------------------------------- /v8/src/objects/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/templates.h -------------------------------------------------------------------------------- /v8/src/objects/visitors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/visitors.cc -------------------------------------------------------------------------------- /v8/src/objects/visitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/objects/visitors.h -------------------------------------------------------------------------------- /v8/src/parsing/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/OWNERS -------------------------------------------------------------------------------- /v8/src/parsing/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/parser.cc -------------------------------------------------------------------------------- /v8/src/parsing/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/parser.h -------------------------------------------------------------------------------- /v8/src/parsing/parsing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/parsing.cc -------------------------------------------------------------------------------- /v8/src/parsing/parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/parsing.h -------------------------------------------------------------------------------- /v8/src/parsing/preparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/preparser.h -------------------------------------------------------------------------------- /v8/src/parsing/rewriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/rewriter.cc -------------------------------------------------------------------------------- /v8/src/parsing/rewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/rewriter.h -------------------------------------------------------------------------------- /v8/src/parsing/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/scanner.cc -------------------------------------------------------------------------------- /v8/src/parsing/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/scanner.h -------------------------------------------------------------------------------- /v8/src/parsing/token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/token.cc -------------------------------------------------------------------------------- /v8/src/parsing/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/parsing/token.h -------------------------------------------------------------------------------- /v8/src/profiler/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/profiler/OWNERS -------------------------------------------------------------------------------- /v8/src/protobuf/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/protobuf/DEPS -------------------------------------------------------------------------------- /v8/src/protobuf/OWNERS: -------------------------------------------------------------------------------- 1 | cbruni@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/regexp/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/regexp/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/regexp/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/regexp/OWNERS -------------------------------------------------------------------------------- /v8/src/regexp/regexp-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/regexp/regexp-ast.h -------------------------------------------------------------------------------- /v8/src/regexp/regexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/regexp/regexp.cc -------------------------------------------------------------------------------- /v8/src/regexp/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/regexp/regexp.h -------------------------------------------------------------------------------- /v8/src/roots/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/roots/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/roots/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/roots/OWNERS -------------------------------------------------------------------------------- /v8/src/roots/roots-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/roots/roots-inl.h -------------------------------------------------------------------------------- /v8/src/roots/roots.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/roots/roots.cc -------------------------------------------------------------------------------- /v8/src/roots/roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/roots/roots.h -------------------------------------------------------------------------------- /v8/src/runtime/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/runtime/runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/runtime/runtime.cc -------------------------------------------------------------------------------- /v8/src/runtime/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/runtime/runtime.h -------------------------------------------------------------------------------- /v8/src/sandbox/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/sandbox/OWNERS -------------------------------------------------------------------------------- /v8/src/sandbox/sandbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/sandbox/sandbox.cc -------------------------------------------------------------------------------- /v8/src/sandbox/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/sandbox/sandbox.h -------------------------------------------------------------------------------- /v8/src/sandbox/testing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/sandbox/testing.cc -------------------------------------------------------------------------------- /v8/src/sandbox/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/sandbox/testing.h -------------------------------------------------------------------------------- /v8/src/snapshot/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/snapshot/DEPS -------------------------------------------------------------------------------- /v8/src/snapshot/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/snapshot/OWNERS -------------------------------------------------------------------------------- /v8/src/snapshot/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/snapshot/snapshot.h -------------------------------------------------------------------------------- /v8/src/strings/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/strings/OWNERS -------------------------------------------------------------------------------- /v8/src/strings/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/strings/unicode.cc -------------------------------------------------------------------------------- /v8/src/strings/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/strings/unicode.h -------------------------------------------------------------------------------- /v8/src/strings/uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/strings/uri.cc -------------------------------------------------------------------------------- /v8/src/strings/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/strings/uri.h -------------------------------------------------------------------------------- /v8/src/tasks/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/tasks/OWNERS -------------------------------------------------------------------------------- /v8/src/tasks/task-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/tasks/task-utils.cc -------------------------------------------------------------------------------- /v8/src/tasks/task-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/tasks/task-utils.h -------------------------------------------------------------------------------- /v8/src/temporal/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/temporal/OWNERS -------------------------------------------------------------------------------- /v8/src/third_party/siphash/OWNERS: -------------------------------------------------------------------------------- 1 | verwaest@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/third_party/utf8-decoder/OWNERS: -------------------------------------------------------------------------------- 1 | marja@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/torque/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/OWNERS -------------------------------------------------------------------------------- /v8/src/torque/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/ast.h -------------------------------------------------------------------------------- /v8/src/torque/cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/cfg.cc -------------------------------------------------------------------------------- /v8/src/torque/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/cfg.h -------------------------------------------------------------------------------- /v8/src/torque/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/constants.h -------------------------------------------------------------------------------- /v8/src/torque/declarable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/declarable.h -------------------------------------------------------------------------------- /v8/src/torque/kythe-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/kythe-data.h -------------------------------------------------------------------------------- /v8/src/torque/ls/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/ls/globals.h -------------------------------------------------------------------------------- /v8/src/torque/ls/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/ls/json.cc -------------------------------------------------------------------------------- /v8/src/torque/ls/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/ls/json.h -------------------------------------------------------------------------------- /v8/src/torque/ls/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/ls/message.h -------------------------------------------------------------------------------- /v8/src/torque/torque.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/torque.cc -------------------------------------------------------------------------------- /v8/src/torque/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/types.cc -------------------------------------------------------------------------------- /v8/src/torque/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/types.h -------------------------------------------------------------------------------- /v8/src/torque/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/utils.cc -------------------------------------------------------------------------------- /v8/src/torque/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/torque/utils.h -------------------------------------------------------------------------------- /v8/src/tracing/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/tracing/DEPS -------------------------------------------------------------------------------- /v8/src/tracing/OWNERS: -------------------------------------------------------------------------------- 1 | cbruni@chromium.org 2 | -------------------------------------------------------------------------------- /v8/src/trap-handler/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/trap-handler/DEPS -------------------------------------------------------------------------------- /v8/src/trap-handler/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/trap-handler/OWNERS -------------------------------------------------------------------------------- /v8/src/utils/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/utils/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../COMMON_OWNERS 2 | -------------------------------------------------------------------------------- /v8/src/utils/address-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/address-map.h -------------------------------------------------------------------------------- /v8/src/utils/allocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/allocation.cc -------------------------------------------------------------------------------- /v8/src/utils/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/allocation.h -------------------------------------------------------------------------------- /v8/src/utils/bit-vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/bit-vector.cc -------------------------------------------------------------------------------- /v8/src/utils/bit-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/bit-vector.h -------------------------------------------------------------------------------- /v8/src/utils/boxed-float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/boxed-float.h -------------------------------------------------------------------------------- /v8/src/utils/hex-format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/hex-format.cc -------------------------------------------------------------------------------- /v8/src/utils/hex-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/hex-format.h -------------------------------------------------------------------------------- /v8/src/utils/memcopy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/memcopy.cc -------------------------------------------------------------------------------- /v8/src/utils/memcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/memcopy.h -------------------------------------------------------------------------------- /v8/src/utils/ostreams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/ostreams.cc -------------------------------------------------------------------------------- /v8/src/utils/ostreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/ostreams.h -------------------------------------------------------------------------------- /v8/src/utils/scoped-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/scoped-list.h -------------------------------------------------------------------------------- /v8/src/utils/sha-256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/sha-256.cc -------------------------------------------------------------------------------- /v8/src/utils/sha-256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/sha-256.h -------------------------------------------------------------------------------- /v8/src/utils/utils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/utils-inl.h -------------------------------------------------------------------------------- /v8/src/utils/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/utils.cc -------------------------------------------------------------------------------- /v8/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/utils.h -------------------------------------------------------------------------------- /v8/src/utils/v8dll-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/v8dll-main.cc -------------------------------------------------------------------------------- /v8/src/utils/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/version.cc -------------------------------------------------------------------------------- /v8/src/utils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/utils/version.h -------------------------------------------------------------------------------- /v8/src/wasm/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/DEPS -------------------------------------------------------------------------------- /v8/src/wasm/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/DIR_METADATA -------------------------------------------------------------------------------- /v8/src/wasm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/OWNERS -------------------------------------------------------------------------------- /v8/src/wasm/baseline/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/baseline/DEPS -------------------------------------------------------------------------------- /v8/src/wasm/c-api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/c-api.cc -------------------------------------------------------------------------------- /v8/src/wasm/c-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/c-api.h -------------------------------------------------------------------------------- /v8/src/wasm/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/decoder.h -------------------------------------------------------------------------------- /v8/src/wasm/leb-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/leb-helper.h -------------------------------------------------------------------------------- /v8/src/wasm/pgo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/pgo.cc -------------------------------------------------------------------------------- /v8/src/wasm/pgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/pgo.h -------------------------------------------------------------------------------- /v8/src/wasm/simd-shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/simd-shuffle.h -------------------------------------------------------------------------------- /v8/src/wasm/stacks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/stacks.cc -------------------------------------------------------------------------------- /v8/src/wasm/stacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/stacks.h -------------------------------------------------------------------------------- /v8/src/wasm/struct-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/struct-types.h -------------------------------------------------------------------------------- /v8/src/wasm/value-type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/value-type.cc -------------------------------------------------------------------------------- /v8/src/wasm/value-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/value-type.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-debug.cc -------------------------------------------------------------------------------- /v8/src/wasm/wasm-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-debug.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-engine.cc -------------------------------------------------------------------------------- /v8/src/wasm/wasm-engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-engine.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-js.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-js.cc -------------------------------------------------------------------------------- /v8/src/wasm/wasm-js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-js.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-limits.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-linkage.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-module.cc -------------------------------------------------------------------------------- /v8/src/wasm/wasm-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-module.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-objects.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-opcodes.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-result.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-result.cc -------------------------------------------------------------------------------- /v8/src/wasm/wasm-result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-result.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-tier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-tier.h -------------------------------------------------------------------------------- /v8/src/wasm/wasm-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/wasm/wasm-value.h -------------------------------------------------------------------------------- /v8/src/zone/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/OWNERS -------------------------------------------------------------------------------- /v8/src/zone/type-stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/type-stats.cc -------------------------------------------------------------------------------- /v8/src/zone/type-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/type-stats.h -------------------------------------------------------------------------------- /v8/src/zone/zone-hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone-hashmap.h -------------------------------------------------------------------------------- /v8/src/zone/zone-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone-list.h -------------------------------------------------------------------------------- /v8/src/zone/zone-segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone-segment.h -------------------------------------------------------------------------------- /v8/src/zone/zone-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone-utils.h -------------------------------------------------------------------------------- /v8/src/zone/zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone.cc -------------------------------------------------------------------------------- /v8/src/zone/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/src/zone/zone.h -------------------------------------------------------------------------------- /v8/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/BUILD.gn -------------------------------------------------------------------------------- /v8/test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/OWNERS -------------------------------------------------------------------------------- /v8/test/bigint/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/bigint/BUILD.gn -------------------------------------------------------------------------------- /v8/test/bigint/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+src/bigint", 3 | ] 4 | -------------------------------------------------------------------------------- /v8/test/bigint/testcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/bigint/testcfg.py -------------------------------------------------------------------------------- /v8/test/cctest/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/BUILD.gn -------------------------------------------------------------------------------- /v8/test/cctest/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/DEPS -------------------------------------------------------------------------------- /v8/test/cctest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/OWNERS -------------------------------------------------------------------------------- /v8/test/cctest/cctest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/cctest.cc -------------------------------------------------------------------------------- /v8/test/cctest/cctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/cctest.h -------------------------------------------------------------------------------- /v8/test/cctest/collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/collector.h -------------------------------------------------------------------------------- /v8/test/cctest/test-api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/test-api.cc -------------------------------------------------------------------------------- /v8/test/cctest/test-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/test-api.h -------------------------------------------------------------------------------- /v8/test/cctest/testcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/testcfg.py -------------------------------------------------------------------------------- /v8/test/cctest/wasm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/cctest/wasm/OWNERS -------------------------------------------------------------------------------- /v8/test/common/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+src", 3 | ] 4 | -------------------------------------------------------------------------------- /v8/test/common/wasm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/common/wasm/OWNERS -------------------------------------------------------------------------------- /v8/test/debugger/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/debugger/BUILD.gn -------------------------------------------------------------------------------- /v8/test/debugger/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/debug/OWNERS 2 | -------------------------------------------------------------------------------- /v8/test/debugging/wasm/gdb-server/OWNERS: -------------------------------------------------------------------------------- 1 | paolosev@microsoft.com 2 | -------------------------------------------------------------------------------- /v8/test/debugging/wasm/gdb-server/test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/fuzzer/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/BUILD.gn -------------------------------------------------------------------------------- /v8/test/fuzzer/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+src", 3 | ] 4 | -------------------------------------------------------------------------------- /v8/test/fuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/README.md -------------------------------------------------------------------------------- /v8/test/fuzzer/fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/fuzzer.cc -------------------------------------------------------------------------------- /v8/test/fuzzer/inspector/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/fuzzer/inspector/endless-loop: -------------------------------------------------------------------------------- 1 | while (1) {} 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/inspector/invalid: -------------------------------------------------------------------------------- 1 | no valid javascript 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/json.cc -------------------------------------------------------------------------------- /v8/test/fuzzer/json/json: -------------------------------------------------------------------------------- 1 | {"json": 1} 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/json/not-json: -------------------------------------------------------------------------------- 1 | not json 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/parser.cc -------------------------------------------------------------------------------- /v8/test/fuzzer/parser/hello-world: -------------------------------------------------------------------------------- 1 | console.log('hello world'); 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/regexp.cc -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test00: -------------------------------------------------------------------------------- 1 | a* 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test01: -------------------------------------------------------------------------------- 1 | xyz{93}? 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test02: -------------------------------------------------------------------------------- 1 | (foo|bar|baz) 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test03: -------------------------------------------------------------------------------- 1 | [^] 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test04: -------------------------------------------------------------------------------- 1 | [\d] 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test05: -------------------------------------------------------------------------------- 1 | \c1 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test06: -------------------------------------------------------------------------------- 1 | [a\]c] 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test07: -------------------------------------------------------------------------------- 1 | \00011 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test09: -------------------------------------------------------------------------------- 1 | (?=a)?a 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test11: -------------------------------------------------------------------------------- 1 | \x34 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test13: -------------------------------------------------------------------------------- 1 | ^a 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test14: -------------------------------------------------------------------------------- 1 | a{1,1}? 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test15: -------------------------------------------------------------------------------- 1 | a\d 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test16: -------------------------------------------------------------------------------- 1 | a[\q] 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test17: -------------------------------------------------------------------------------- 1 | \0 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test18: -------------------------------------------------------------------------------- 1 | a{1z} 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test19: -------------------------------------------------------------------------------- 1 | {12z} 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test20: -------------------------------------------------------------------------------- 1 | | 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test21: -------------------------------------------------------------------------------- 1 | (?:ab)* 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test22: -------------------------------------------------------------------------------- 1 | (?:a*)? 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test23: -------------------------------------------------------------------------------- 1 | (?:a+){0} 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/regexp/test24: -------------------------------------------------------------------------------- 1 | a\Bc 2 | -------------------------------------------------------------------------------- /v8/test/fuzzer/testcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/testcfg.py -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzer/wasm.cc -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm/regress-1115280.wasm: -------------------------------------------------------------------------------- 1 | asm`main 2 |  -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm/regress-1191853.wasm: -------------------------------------------------------------------------------- 1 | asm`  -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm/regress-1404619.wasm: -------------------------------------------------------------------------------- 1 | asm`ppmain 2 |  -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_async/regress-1115431.wasm: -------------------------------------------------------------------------------- 1 | asm`main 2 |  -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_code/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_compile/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_streaming/empty_module: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_streaming/regress-1335023: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /v8/test/fuzzer/wasm_streaming/regress-1429613: -------------------------------------------------------------------------------- 1 | asm`} -------------------------------------------------------------------------------- /v8/test/fuzzilli/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzilli/BUILD.gn -------------------------------------------------------------------------------- /v8/test/fuzzilli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzilli/README.md -------------------------------------------------------------------------------- /v8/test/fuzzilli/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/fuzzilli/main.cc -------------------------------------------------------------------------------- /v8/test/fuzzilli/test/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/inspector/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/BUILD.gn -------------------------------------------------------------------------------- /v8/test/inspector/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/DEPS -------------------------------------------------------------------------------- /v8/test/inspector/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/inspector/OWNERS 2 | -------------------------------------------------------------------------------- /v8/test/inspector/debugger/evaluate-on-call-frame-private-class-member-super-expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/inspector/debugger/not-hold-promises-expected.txt: -------------------------------------------------------------------------------- 1 | Tests that we don't hold promises. 2 | SUCCESS 3 | -------------------------------------------------------------------------------- /v8/test/inspector/regress/regress-crbug-1080638-expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/inspector/runtime/get-heap-usage-expected.txt: -------------------------------------------------------------------------------- 1 | Checks that Runtime.getHeapUsage works 2 | -------------------------------------------------------------------------------- /v8/test/inspector/runtime/get-isolate-id-expected.txt: -------------------------------------------------------------------------------- 1 | Checks that Runtime.getIsolateId works 2 | -------------------------------------------------------------------------------- /v8/test/inspector/runtime/regression-732717-expected.txt: -------------------------------------------------------------------------------- 1 | Regression test for crbug.com/732717 2 | -------------------------------------------------------------------------------- /v8/test/inspector/tasks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/tasks.cc -------------------------------------------------------------------------------- /v8/test/inspector/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/tasks.h -------------------------------------------------------------------------------- /v8/test/inspector/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/utils.cc -------------------------------------------------------------------------------- /v8/test/inspector/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/inspector/utils.h -------------------------------------------------------------------------------- /v8/test/intl/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/BUILD.gn -------------------------------------------------------------------------------- /v8/test/intl/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/DIR_METADATA -------------------------------------------------------------------------------- /v8/test/intl/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/OWNERS -------------------------------------------------------------------------------- /v8/test/intl/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/assert.js -------------------------------------------------------------------------------- /v8/test/intl/bad-target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/bad-target.js -------------------------------------------------------------------------------- /v8/test/intl/intl.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/intl.status -------------------------------------------------------------------------------- /v8/test/intl/testcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/testcfg.py -------------------------------------------------------------------------------- /v8/test/intl/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/intl/utils.js -------------------------------------------------------------------------------- /v8/test/js-perf-test/OWNERS: -------------------------------------------------------------------------------- 1 | per-file JSTests.json=marja@chromium.org 2 | -------------------------------------------------------------------------------- /v8/test/memory/Memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/memory/Memory.json -------------------------------------------------------------------------------- /v8/test/memory/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/memory/run.js -------------------------------------------------------------------------------- /v8/test/message/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/message/BUILD.gn -------------------------------------------------------------------------------- /v8/test/message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/message/README.md -------------------------------------------------------------------------------- /v8/test/message/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/fail/modules-skip-3-import-assertions-fail.json: -------------------------------------------------------------------------------- 1 | { "life": 42 } 2 | -------------------------------------------------------------------------------- /v8/test/message/fail/wasm-exception-rethrow.out: -------------------------------------------------------------------------------- 1 | undefined:0: [object WebAssembly.Exception] 2 | -------------------------------------------------------------------------------- /v8/test/message/fail/wasm-exception-throw.out: -------------------------------------------------------------------------------- 1 | undefined:0: [object WebAssembly.Exception] 2 | -------------------------------------------------------------------------------- /v8/test/message/mjsunit/success/assert-promise-result-rejects.out: -------------------------------------------------------------------------------- 1 | 6254 2 | -------------------------------------------------------------------------------- /v8/test/message/mjsunit/success/assert-promise-result-resolves-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/mjsunit/success/assert-promise-result-resolves.out: -------------------------------------------------------------------------------- 1 | 1254 2 | -------------------------------------------------------------------------------- /v8/test/message/non-use-strict-hex-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/non-use-strict-octal-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/non-use-strict-uhex-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/nonstrict-arguments.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/nonstrict-eval.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/nonstrict-with.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/object-binding-pattern-await-computed-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/strict-octal-indirect-regexp.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/strict-octal-regexp.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/test/message/testcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/message/testcfg.py -------------------------------------------------------------------------------- /v8/test/message/unicode-filename-🎅🎄.out: -------------------------------------------------------------------------------- 1 | Merry Christmas! 2 | -------------------------------------------------------------------------------- /v8/test/mjsunit/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/BUILD.gn -------------------------------------------------------------------------------- /v8/test/mjsunit/apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/apply.js -------------------------------------------------------------------------------- /v8/test/mjsunit/bit-not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/bit-not.js -------------------------------------------------------------------------------- /v8/test/mjsunit/boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/boolean.js -------------------------------------------------------------------------------- /v8/test/mjsunit/break.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/break.js -------------------------------------------------------------------------------- /v8/test/mjsunit/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/call.js -------------------------------------------------------------------------------- /v8/test/mjsunit/closure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/closure.js -------------------------------------------------------------------------------- /v8/test/mjsunit/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/console.js -------------------------------------------------------------------------------- /v8/test/mjsunit/d8/.gitignore: -------------------------------------------------------------------------------- 1 | v8_trace.json 2 | -------------------------------------------------------------------------------- /v8/test/mjsunit/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/date.js -------------------------------------------------------------------------------- /v8/test/mjsunit/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/delete.js -------------------------------------------------------------------------------- /v8/test/mjsunit/div-mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/div-mod.js -------------------------------------------------------------------------------- /v8/test/mjsunit/dtoa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/dtoa.js -------------------------------------------------------------------------------- /v8/test/mjsunit/escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/escape.js -------------------------------------------------------------------------------- /v8/test/mjsunit/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/eval.js -------------------------------------------------------------------------------- /v8/test/mjsunit/for-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/for-in.js -------------------------------------------------------------------------------- /v8/test/mjsunit/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/for.js -------------------------------------------------------------------------------- /v8/test/mjsunit/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/globals.js -------------------------------------------------------------------------------- /v8/test/mjsunit/harmony/modules-skip-1.json: -------------------------------------------------------------------------------- 1 | { "life": 42} 2 | -------------------------------------------------------------------------------- /v8/test/mjsunit/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/in.js -------------------------------------------------------------------------------- /v8/test/mjsunit/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/json.js -------------------------------------------------------------------------------- /v8/test/mjsunit/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/json2.js -------------------------------------------------------------------------------- /v8/test/mjsunit/lea-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/lea-add.js -------------------------------------------------------------------------------- /v8/test/mjsunit/length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/length.js -------------------------------------------------------------------------------- /v8/test/mjsunit/logical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/logical.js -------------------------------------------------------------------------------- /v8/test/mjsunit/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/md5.js -------------------------------------------------------------------------------- /v8/test/mjsunit/mjsunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/mjsunit.js -------------------------------------------------------------------------------- /v8/test/mjsunit/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/mod.js -------------------------------------------------------------------------------- /v8/test/mjsunit/nans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/nans.js -------------------------------------------------------------------------------- /v8/test/mjsunit/negate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/negate.js -------------------------------------------------------------------------------- /v8/test/mjsunit/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/new.js -------------------------------------------------------------------------------- /v8/test/mjsunit/noopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/noopt.js -------------------------------------------------------------------------------- /v8/test/mjsunit/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/not.js -------------------------------------------------------------------------------- /v8/test/mjsunit/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/print.js -------------------------------------------------------------------------------- /v8/test/mjsunit/proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/proto.js -------------------------------------------------------------------------------- /v8/test/mjsunit/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/regexp.js -------------------------------------------------------------------------------- /v8/test/mjsunit/scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/scanner.js -------------------------------------------------------------------------------- /v8/test/mjsunit/shifts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/shifts.js -------------------------------------------------------------------------------- /v8/test/mjsunit/sin-cos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/sin-cos.js -------------------------------------------------------------------------------- /v8/test/mjsunit/smi-mul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/smi-mul.js -------------------------------------------------------------------------------- /v8/test/mjsunit/smi-ops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/smi-ops.js -------------------------------------------------------------------------------- /v8/test/mjsunit/substr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/substr.js -------------------------------------------------------------------------------- /v8/test/mjsunit/this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/this.js -------------------------------------------------------------------------------- /v8/test/mjsunit/try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/try.js -------------------------------------------------------------------------------- /v8/test/mjsunit/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/uri.js -------------------------------------------------------------------------------- /v8/test/mjsunit/var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mjsunit/var.js -------------------------------------------------------------------------------- /v8/test/mjsunit/wasm/incrementer.wasm: -------------------------------------------------------------------------------- 1 | asm`  increment 2 |  Aj -------------------------------------------------------------------------------- /v8/test/mkgrokdump/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+src", 3 | ] 4 | -------------------------------------------------------------------------------- /v8/test/mozilla/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/mozilla/BUILD.gn -------------------------------------------------------------------------------- /v8/test/test262/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/test262/BUILD.gn -------------------------------------------------------------------------------- /v8/test/test262/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/test262/OWNERS -------------------------------------------------------------------------------- /v8/test/test262/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/test262/README -------------------------------------------------------------------------------- /v8/test/torque/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/torque/OWNERS 2 | -------------------------------------------------------------------------------- /v8/test/unittests/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/unittests/DEPS -------------------------------------------------------------------------------- /v8/test/wasm-js/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/wasm-js/BUILD.gn -------------------------------------------------------------------------------- /v8/test/wasm-js/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/wasm/OWNERS 2 | -------------------------------------------------------------------------------- /v8/test/wasm-js/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/wasm-js/after.js -------------------------------------------------------------------------------- /v8/test/wasm-spec-tests/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/wasm/OWNERS 2 | -------------------------------------------------------------------------------- /v8/test/webkit/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/webkit/BUILD.gn -------------------------------------------------------------------------------- /v8/test/webkit/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/test/webkit/math.js -------------------------------------------------------------------------------- /v8/testing/OWNERS: -------------------------------------------------------------------------------- 1 | file:../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/testing/gmock/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/testing/gmock/OWNERS -------------------------------------------------------------------------------- /v8/testing/gtest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/testing/gtest/OWNERS -------------------------------------------------------------------------------- /v8/third_party/colorama/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/third_party/cpu_features/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/third_party/google_benchmark/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | 3 | mlippautz@chromium.org 4 | -------------------------------------------------------------------------------- /v8/third_party/googletest/src/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /v8/third_party/googletest/src/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /v8/third_party/ittapi/ittapi-rs/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /v8/third_party/ittapi/ittapi-rs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ../CMakeLists.txt -------------------------------------------------------------------------------- /v8/third_party/ittapi/ittapi-rs/LICENSES: -------------------------------------------------------------------------------- 1 | ../LICENSES/ -------------------------------------------------------------------------------- /v8/third_party/ittapi/ittapi-rs/include: -------------------------------------------------------------------------------- 1 | ../include/ -------------------------------------------------------------------------------- /v8/third_party/ittapi/ittapi-rs/src/ittnotify: -------------------------------------------------------------------------------- 1 | ../../src/ittnotify -------------------------------------------------------------------------------- /v8/third_party/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/third_party/markupsafe/DIR_METADATA: -------------------------------------------------------------------------------- 1 | monorail { 2 | component: "Internals" 3 | } 4 | -------------------------------------------------------------------------------- /v8/third_party/test262-harness/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | syg@chromium.org 3 | -------------------------------------------------------------------------------- /v8/third_party/test262-harness/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/third_party/wasm-api/OWNERS: -------------------------------------------------------------------------------- 1 | jkummerow@chromium.org 2 | -------------------------------------------------------------------------------- /v8/third_party/zlib/DIR_METADATA: -------------------------------------------------------------------------------- 1 | monorail: { 2 | component: "Internals" 3 | } 4 | -------------------------------------------------------------------------------- /v8/third_party/zlib/google/test/data/test/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /v8/third_party/zlib/google/test/data/test/foo/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /v8/third_party/zlib/google/test/data/test/foo/bar/.hidden: -------------------------------------------------------------------------------- 1 | hidden 2 | -------------------------------------------------------------------------------- /v8/third_party/zlib/google/test/data/test/foo/bar/baz.txt: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /v8/tools/.vpython3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/.vpython3 -------------------------------------------------------------------------------- /v8/tools/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/BUILD.gn -------------------------------------------------------------------------------- /v8/tools/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/DEPS -------------------------------------------------------------------------------- /v8/tools/Makefile.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/Makefile.tags -------------------------------------------------------------------------------- /v8/tools/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/OWNERS -------------------------------------------------------------------------------- /v8/tools/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/PRESUBMIT.py -------------------------------------------------------------------------------- /v8/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/README.md -------------------------------------------------------------------------------- /v8/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/__init__.py -------------------------------------------------------------------------------- /v8/tools/adb-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/adb-d8.py -------------------------------------------------------------------------------- /v8/tools/android-build.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/tools/android-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/android-run.py -------------------------------------------------------------------------------- /v8/tools/android-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/android-sync.sh -------------------------------------------------------------------------------- /v8/tools/arguments.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/arguments.mjs -------------------------------------------------------------------------------- /v8/tools/avg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/avg.py -------------------------------------------------------------------------------- /v8/tools/bazel/.gitignore: -------------------------------------------------------------------------------- 1 | bazel -------------------------------------------------------------------------------- /v8/tools/builtins-pgo/profiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/tools/callstats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/callstats.html -------------------------------------------------------------------------------- /v8/tools/callstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/callstats.py -------------------------------------------------------------------------------- /v8/tools/cfi/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/cfi/ignores.txt -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/foozzie/testdata/baseline/v8_build_config.json: -------------------------------------------------------------------------------- 1 | {"v8_current_cpu": "x64"} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/foozzie/testdata/build1/v8_build_config.json: -------------------------------------------------------------------------------- 1 | {"v8_current_cpu": "x64"} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/foozzie/testdata/build2/v8_build_config.json: -------------------------------------------------------------------------------- 1 | {"v8_current_cpu": "x64"} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/foozzie/testdata/build3/v8_build_config.json: -------------------------------------------------------------------------------- 1 | {"v8_current_cpu": "x86"} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/js_fuzzer/test_data/fake_db/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/js_fuzzer/test_data/regress/numbers/db/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/js_fuzzer/test_data/regress/spidermonkey/db/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /v8/tools/clusterfuzz/js_fuzzer/test_data/regress/strict/db/index.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /v8/tools/codemap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/codemap.mjs -------------------------------------------------------------------------------- /v8/tools/consarray.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/consarray.mjs -------------------------------------------------------------------------------- /v8/tools/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/cpu.sh -------------------------------------------------------------------------------- /v8/tools/csvparser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/csvparser.mjs -------------------------------------------------------------------------------- /v8/tools/debug_helper/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+torque-generated" 3 | ] 4 | -------------------------------------------------------------------------------- /v8/tools/debug_helper/OWNERS: -------------------------------------------------------------------------------- 1 | seth.brenith@microsoft.com 2 | -------------------------------------------------------------------------------- /v8/tools/dev/gen-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/dev/gen-tags.py -------------------------------------------------------------------------------- /v8/tools/dev/gm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/dev/gm.py -------------------------------------------------------------------------------- /v8/tools/dev/v8gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/dev/v8gen.py -------------------------------------------------------------------------------- /v8/tools/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/disasm.py -------------------------------------------------------------------------------- /v8/tools/dump-cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/dump-cpp.py -------------------------------------------------------------------------------- /v8/tools/dumpcpp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/dumpcpp.mjs -------------------------------------------------------------------------------- /v8/tools/eval_gc_nvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/eval_gc_nvp.py -------------------------------------------------------------------------------- /v8/tools/eval_gc_time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/eval_gc_time.sh -------------------------------------------------------------------------------- /v8/tools/find-builtin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/find-builtin -------------------------------------------------------------------------------- /v8/tools/fuzz-harness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/fuzz-harness.sh -------------------------------------------------------------------------------- /v8/tools/gcmole/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gcmole/BUILD.gn -------------------------------------------------------------------------------- /v8/tools/gcmole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gcmole/Makefile -------------------------------------------------------------------------------- /v8/tools/gcmole/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gcmole/OWNERS -------------------------------------------------------------------------------- /v8/tools/gcmole/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gcmole/README -------------------------------------------------------------------------------- /v8/tools/gcmole/gcmole-tools.tar.gz.sha1: -------------------------------------------------------------------------------- 1 | 97566bb4a526de53760a1df5a01678a15ef2b88b 2 | -------------------------------------------------------------------------------- /v8/tools/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gdbinit -------------------------------------------------------------------------------- /v8/tools/gen-v8-gn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/gen-v8-gn.py -------------------------------------------------------------------------------- /v8/tools/grokdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/grokdump.py -------------------------------------------------------------------------------- /v8/tools/ic-processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/ic-processor -------------------------------------------------------------------------------- /v8/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/index.html -------------------------------------------------------------------------------- /v8/tools/js/helper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/js/helper.mjs -------------------------------------------------------------------------------- /v8/tools/locs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/locs.py -------------------------------------------------------------------------------- /v8/tools/logreader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/logreader.mjs -------------------------------------------------------------------------------- /v8/tools/mac-nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mac-nm -------------------------------------------------------------------------------- /v8/tools/mb/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/OWNERS -------------------------------------------------------------------------------- /v8/tools/mb/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/PRESUBMIT.py -------------------------------------------------------------------------------- /v8/tools/mb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/README.md -------------------------------------------------------------------------------- /v8/tools/mb/mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/mb -------------------------------------------------------------------------------- /v8/tools/mb/mb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/mb.bat -------------------------------------------------------------------------------- /v8/tools/mb/mb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/mb.py -------------------------------------------------------------------------------- /v8/tools/mb/mb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/mb/mb_test.py -------------------------------------------------------------------------------- /v8/tools/memory/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/memory/rss.py -------------------------------------------------------------------------------- /v8/tools/objdump-v8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/objdump-v8 -------------------------------------------------------------------------------- /v8/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/package.json -------------------------------------------------------------------------------- /v8/tools/parse-processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/parse-processor -------------------------------------------------------------------------------- /v8/tools/perf-compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/perf-compare.py -------------------------------------------------------------------------------- /v8/tools/profile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/profile.mjs -------------------------------------------------------------------------------- /v8/tools/profile_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/profile_view.js -------------------------------------------------------------------------------- /v8/tools/release/testdata/v8/third_party/googletest/src/googletest/include/gtest/baz/gtest_new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/tools/release/testdata/v8/third_party/googletest/src/googletest/include/gtest/gtest_new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/tools/release/testdata/v8/third_party/googletest/src/googletest/include/gtest/new/gtest_new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v8/tools/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/run-tests.py -------------------------------------------------------------------------------- /v8/tools/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/run.py -------------------------------------------------------------------------------- /v8/tools/run_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/run_perf.py -------------------------------------------------------------------------------- /v8/tools/shell-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/shell-utils.h -------------------------------------------------------------------------------- /v8/tools/sourcemap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/sourcemap.mjs -------------------------------------------------------------------------------- /v8/tools/splaytree.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/splaytree.mjs -------------------------------------------------------------------------------- /v8/tools/stats-viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/stats-viewer.py -------------------------------------------------------------------------------- /v8/tools/testrunner/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../INFRA_OWNERS 2 | -------------------------------------------------------------------------------- /v8/tools/testrunner/testdata/testroot4/out/build/v8_build_config.json: -------------------------------------------------------------------------------- 1 | { 2 | malformed json -------------------------------------------------------------------------------- /v8/tools/tracing/proto-converter/.gitignore: -------------------------------------------------------------------------------- 1 | proto-to-json.js -------------------------------------------------------------------------------- /v8/tools/tracing/proto-converter/.nvmrc: -------------------------------------------------------------------------------- 1 | v11.9.0 2 | -------------------------------------------------------------------------------- /v8/tools/try_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/try_perf.py -------------------------------------------------------------------------------- /v8/tools/turbolizer/OWNERS: -------------------------------------------------------------------------------- 1 | danno@chromium.org 2 | -------------------------------------------------------------------------------- /v8/tools/unittests/testdata/builddirs/dir1/out/build/d8: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /v8/tools/unittests/testdata/compare_torque/test3/f2/file3: -------------------------------------------------------------------------------- 1 | Line -------------------------------------------------------------------------------- /v8/tools/unittests/testdata/compare_torque/test4/f1/file4: -------------------------------------------------------------------------------- 1 | Line -------------------------------------------------------------------------------- /v8/tools/v8_presubmit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/v8_presubmit.py -------------------------------------------------------------------------------- /v8/tools/v8heapconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/v8heapconst.py -------------------------------------------------------------------------------- /v8/tools/v8windbg/OWNERS: -------------------------------------------------------------------------------- 1 | seth.brenith@microsoft.com 2 | -------------------------------------------------------------------------------- /v8/tools/wasm-compilation-hints/OWNERS: -------------------------------------------------------------------------------- 1 | file:../../src/wasm/OWNERS 2 | -------------------------------------------------------------------------------- /v8/tools/wasm/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/wasm/BUILD.gn -------------------------------------------------------------------------------- /v8/tools/whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/whitespace.txt -------------------------------------------------------------------------------- /v8/tools/windbg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/windbg.js -------------------------------------------------------------------------------- /v8/tools/wpr.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnoordhuis/v8-cmake/HEAD/v8/tools/wpr.wprp --------------------------------------------------------------------------------