v8/test/mjsunit
Samuel Groß 277fdd1de7 V8 Sandbox rebranding
This CL renames a number of things related to the V8 sandbox.
Mainly, what used to be under V8_HEAP_SANDBOX is now under
V8_SANDBOXED_EXTERNAL_POINTERS, while the previous V8 VirtualMemoryCage
is now simply the V8 Sandbox:

V8_VIRTUAL_MEMORY_CAGE => V8_SANDBOX
V8_HEAP_SANDBOX => V8_SANDBOXED_EXTERNAL_POINTERS
V8_CAGED_POINTERS => V8_SANDBOXED_POINTERS
V8VirtualMemoryCage => Sandbox
CagedPointer => SandboxedPointer
fake cage => partially reserved sandbox
src/security => src/sandbox

This naming scheme should simplify things: the sandbox is now the large
region of virtual address space inside which V8 mainly operates and
which should be considered untrusted. Mechanisms like sandboxed pointers
are then used to attempt to prevent escapes from the sandbox (i.e.
corruption of memory outside of it). Furthermore, the new naming scheme
avoids the confusion with the various other "cages" in V8, in
particular, the VirtualMemoryCage class, by dropping that name entirely.

Future sandbox features are developed under their own V8_SANDBOX_X flag,
and will, once final, be merged into V8_SANDBOX. Current future features
are sandboxed external pointers (using the external pointer table), and
sandboxed pointers (pointers guaranteed to point into the sandbox, e.g.
because they are encoded as offsets). This CL then also introduces a new
build flag, v8_enable_sandbox_future, which enables all future features.

Bug: v8:10391
Change-Id: I5174ea8f5ab40fb96a04af10853da735ad775c96
Cq-Include-Trybots: luci.v8.try:v8_linux64_heap_sandbox_dbg_ng,v8_linux_arm64_sim_heap_sandbox_dbg_ng
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3322981
Reviewed-by: Hannes Payer <hpayer@chromium.org>
Reviewed-by: Igor Sheludko <ishell@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Commit-Queue: Samuel Groß <saelo@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78384}
2021-12-15 17:09:36 +00:00
..
asm [asm] Disallow duplicate parameter names 2021-10-26 15:21:06 +00:00
async-hooks
baseline [baseline] Skip batch focus tests when using ConcurrentSP 2021-10-20 12:49:20 +00:00
bugs
compiler Reland "[turbofan] Improve StoreStoreElimination" 2021-12-13 11:53:54 +00:00
d8 [d8] Use explicit variable to track Worker state 2021-12-08 14:49:06 +00:00
es6 [builtins] Fixes TypedArray ops behavior when the buffer was detached 2021-09-27 19:08:20 +00:00
es7
es8
es9 [runtime] Prevent performing GetOwnPropertyDescriptor on excluded keys 2021-08-09 14:27:41 +00:00
extinction
harmony Make JSFinalizationRegistry::next_dirty weak 2021-11-30 18:43:38 +00:00
ignition Fix counting ignition dispatches 2021-06-07 18:47:24 +00:00
lithium
protector-cell
regress Reland "[wasm] Add --wasm-dynamic-tiering to --future" 2021-12-14 15:06:37 +00:00
temporal [Temporal] Add some tests for PlainDateTime 2021-10-12 08:48:20 +00:00
third_party
tools [csa, torque, cleanup] Rename CSA_ASSERT to CSA_DCHECK 2021-09-30 08:41:23 +00:00
type-profile
wasm Reland "[wasm] Add --wasm-dynamic-tiering to --future" 2021-12-14 15:06:37 +00:00
web-snapshot [web snapshots] Add two-byte string support 2021-12-08 12:36:55 +00:00
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 [dict-proto] TF support for constants in dictionary mode protos, pt. 4 2021-03-31 14:53:45 +00:00
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-indexing-receiver.js
array-indexing.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-push2.js
array-push3.js
array-push4.js
array-push5.js
array-push6.js
array-push8.js
array-push9.js
array-push10.js
array-push11.js
array-push12.js
array-push13.js
array-push14.js
array-push-hole-double.js
array-push-non-smi-value.js
array-push.js
array-reduce.js
array-reverse.js
array-shift2.js
array-shift3.js
array-shift4.js
array-shift5.js
array-shift.js
array-slice.js
array-sort.js [language] Fix Array.prototype.sort 2021-03-24 11:20:58 +00:00
array-splice.js
array-store-and-grow.js [dict-proto] TF support for constants in dictionary mode protos, pt. 4 2021-03-31 14:53:45 +00:00
array-tolocalestring.js
array-tostring.js
array-unshift.js
arrow-with.js
ascii-regexp-subject.js
asm-directive.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.js
async-stack-traces-promise-any.js
async-stack-traces-realms.js
async-stack-traces.js
basic-promise.js
big-array-literal.js
big-object-literal.js
binary-op-newspace.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
BUILD.gn [tools] Cleanup Arguments processing in tools 2021-06-01 09:43:46 +00:00
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
char-escape.js
check-bounds-array-index.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
check-bounds-string-from-char-code-at.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
closure.js
closures.js
code-comments.js
code-coverage-ad-hoc.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-block-async.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-block-noopt.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-block-opt.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-block.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-class-fields.js Revert "[class] implement reparsing of class instance member initializers" 2021-12-09 08:59:12 +00:00
code-coverage-precise.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
code-coverage-utils.js
codegen-coverage.js
collect-type-profile-undefined-feedback-vector.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
concurrent-initial-prototype-change-1.js [compiler][test] Remove --block-concurrent-recompilation 2021-08-16 10:15:53 +00:00
concurrent-initial-prototype-change-2.js [compiler][test] Remove --block-concurrent-recompilation 2021-08-16 10:15:53 +00:00
console.js
const-dict-tracking.js [compiler][test] Remove --block-concurrent-recompilation 2021-08-16 10:15:53 +00:00
const-field-tracking-2.js [Turboprop] Enable support for dynamic map checks for inlining. 2021-06-30 10:30:05 +00:00
const-field-tracking.js [dict-proto] TF support for constants in dictionary mode protos, pt. 4 2021-03-31 14:53:45 +00:00
constant-compare-nil-value.js
constant-fold-control-instructions.js [interpreter] Remove unused interpreter intrinsics 2021-06-17 13:43:41 +00:00
constant-folding-2.js Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
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
dataview-growablesharedarraybuffer.js Reland [rab/gsab] Add RAB / GSAB support to DataViews 2021-11-23 16:48:54 +00:00
dataview-resizablearraybuffer-detach.js Reland [rab/gsab] Add RAB / GSAB support to DataViews 2021-11-23 16:48:54 +00:00
dataview-resizablearraybuffer.js Reland [rab/gsab] Add RAB / GSAB support to DataViews 2021-11-23 16:48:54 +00:00
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 Rename stress_flush_bytecode to stress_flush_code 2021-08-02 19:02:57 +00:00
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 [d8] Do not delete counters on quit 2021-12-03 11:55:46 +00:00
dump-counters.js [d8] Fix data race in counter creation, update, and disposal 2021-12-01 16:41:09 +00:00
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-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
elide-double-hole-check-10.js
elide-double-hole-check-11.js
elide-double-hole-check-12.js
empirical_max_arraybuffer.js
ensure-growing-store-learns.js [dict-proto] TF support for constants in dictionary mode protos, pt. 4 2021-03-31 14:53:45 +00:00
enumeration-order.js
error-accessors.js
error-constructors.js
error-stack.js
error-tostring-omit.js
error-tostring.js
escape.js Avoid using "<<<<" for better merge conflict grep support 2021-11-05 16:28:59 +00:00
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 [builtins] TypedArray.prototype.set with number 2021-09-02 00:06:23 +00:00
external-backing-store-gc.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 [dict-proto] TF support for constants in dictionary mode protos, pt. 4 2021-03-31 14:53:45 +00:00
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 Reland "[turbofan] extend type asserts to cover all JS types" 2021-10-28 14:10:30 +00:00
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
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 Reland "[ic] Add a new MegaDOM IC" 2021-04-20 07:36:26 +00:00
ic-megadom.js Reland "[ic] Add a new MegaDOM IC" 2021-04-20 07:36:26 +00:00
ic-migrated-map-add-when-monomorphic.js Reland "[compiler] Fix a few test flakes and reenable the tests" 2021-09-20 18:16:06 +00:00
ic-migrated-map-add-when-uninitialized.js Update inline cache after migrating deprecated map 2021-08-02 16:21:37 +00:00
ic-migrated-map-update-when-deprecated.js Update inline cache after migrating deprecated map 2021-08-02 16:21:37 +00:00
icu-date-lord-howe.js
icu-date-to-string.js
if-in-undefined.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 [compiler] Fix and re-enable tests requiring specific optimization timing 2021-08-11 13:56:42 +00:00
intl-numberformat-formattoparts.js
intl-pluralrules-select.js
invalid-lhs.js
invalid-source-element.js
json2.js
json-errors.js
json-parse-slice.js
json-parser-recursive.js [test] Lower the stack size & iterations on JSON test 2021-07-29 08:07:48 +00:00
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 [json] Fix stringifier gap length above maxint 2021-09-20 15:34:36 +00:00
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-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
load_poly_effect.js
load-callback-from-value-classic.js
local-load-from-eval.js
logical.js
lookup-behind-property.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 [interpreter] Remove unused interpreter intrinsics 2021-06-17 13:43:41 +00:00
math-pow.js
math-round.js
math-sqrt.js
md5.js
measure-memory-multiple-realms.js [d8][mjsunit][tools] Improve d8 file API 2021-06-01 13:37:57 +00:00
measure-memory.js [d8][mjsunit][tools] Improve d8 file API 2021-06-01 13:37:57 +00:00
megamorphic-callbacks.js
messages.js [regexp] Early errors 🤯 2021-08-26 11:33:39 +00:00
migrations.js [runtime] Cleanup: we don't need field representation tracking flags 2021-07-14 09:15:01 +00:00
mjsunit_numfuzz.js
mjsunit-assertion-error.js
mjsunit.js [compiler][test] Remove --block-concurrent-recompilation 2021-08-16 10:15:53 +00:00
mjsunit.status V8 Sandbox rebranding 2021-12-15 17:09:36 +00:00
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-namespace1.mjs
modules-namespace2.mjs
modules-namespace3.mjs
modules-namespace4.mjs
modules-namespace-getownproperty1.mjs
modules-namespace-getownproperty2.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-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
mul-exhaustive-part10.js
multiline.js
multiple-return.js
nans.js
negate-zero.js
negate.js
never-optimize.js [compiler] Fix and re-enable tests requiring specific optimization timing 2021-08-11 13:56:42 +00:00
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
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-typeof.js
osr-elements-kind.js
outobject-double-for-in.js
override-read-only-property.js
packed-elements.js
parallel-compile-tasks.js [compiler-dispatcher] Enqueue tasks for non-eager inner funcs 2021-12-01 13:14:09 +00:00
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 [tq][runtime] Use build flags for JS context promise hooks 2021-12-14 10:51:45 +00:00
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
proto-accessor-not-accessible.js [test] Add a test for surprising __proto__ behavior 2021-03-12 09:18:17 +00:00
proto-accessor.js
proto-elements-add-during-foreach.js
proto.js
prototype-arity.js
prototype-changes.js
prototype-non-existing.js
prototype.js
random-bit-correlations.js
readonly-accessor.js
readonly.js
realm-property-access.js
receiver-in-with-calls.js
recursive-store-opt.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-UC16.js
regexp.js [regexp] Early errors 🤯 2021-08-26 11:33:39 +00:00
regress-10782.js Fix for Issue 10782: Bug in semantics of ArraySetLength. 2021-04-13 16:31:13 +00:00
regress-1065094.js
regress-1120905.js [test] Don't flush code for another flaky optimization test 2021-10-27 19:00:19 +00:00
regress-1146106.js
regress-crbug-1078825.js [d8][mjsunit][tools] Improve d8 file API 2021-06-01 13:37:57 +00:00
reindexing-in-classes.js
resizablearraybuffer-growablesharedarraybuffer.js Reland [rab/gsab] Add RAB / GSAB support to DataViews 2021-11-23 16:48:54 +00:00
result-table-max.js
result-table-min.js
runtime-call-stats.js [compiler][test] Remove --block-concurrent-recompilation 2021-08-16 10:15:53 +00:00
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
setter-on-constructor-prototype.js
setters-on-elements.js
shared-function-tier-up-turbo.js [sparkplug] Add always_sparkplug variant 2021-03-19 09:52:50 +00:00
shift-for-integer-div.js Reland "[turbofan] extend type asserts to cover all JS types" 2021-10-28 14:10:30 +00:00
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 [runtime] Cleanup: we don't need field representation tracking flags 2021-07-14 09:15:01 +00:00
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
store-dictionary.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-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 A jump-table implementation for constant case switch statements 2021-06-23 09:26:23 +00:00
test-async.js
test-builtins-setup.js
testcfg.py
thin-strings.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_number_order.js
to-precision.js
tobool.js
toint32.js
top-level-assignments.js
touint32.js
track-fields.js [runtime] Cleanup: we don't need field representation tracking flags 2021-07-14 09:15:01 +00:00
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
typed-array-slice.js
typedarray-constructor-mixed-bigint.js [typedarray] Throw when constructing a TA with another TA of mixed BigInt-ness 2021-08-04 21:55:38 +00:00
typedarray-growablesharedarraybuffer.js [rab/gsab] Add rab / gsab support to TA.p.{join,toLocaleString} 2021-12-15 08:45:16 +00:00
typedarray-helpers.js [rab / gsab] Add RAB / GSAB support to TA.p.indexOf & lastIndexOf 2021-12-09 10:47:01 +00:00
typedarray-resizablearraybuffer-detach.js [rab/gsab] Add rab / gsab support to TA.p.{join,toLocaleString} 2021-12-15 08:45:16 +00:00
typedarray-resizablearraybuffer.js [rab/gsab] Add rab / gsab support to TA.p.{join,toLocaleString} 2021-12-15 08:45:16 +00:00
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
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-wrapper-accessor.js
value-wrapper.js
var.js
verify-assert-false.js
verify-check-false.js
verify-no-fail.js Add D8 flag --no-fail that ignores exceptions on exit. 2021-08-19 08:23:18 +00:00
whitespaces0.js
whitespaces1.js
whitespaces2.js
whitespaces3.js
whitespaces4.js
whitespaces5.js
whitespaces6.js
whitespaces7.js
whitespaces8.js
whitespaces9.js
whitespaces.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