haikuwebkit/JSTests/microbenchmarks
Alexey Shvayka d89995f9ef Align JSGlobalObject::defineOwnProperty() with the spec and other runtimes
https://bugs.webkit.org/show_bug.cgi?id=203456

Reviewed by Robin Morisset.

JSTests:

* microbenchmarks/global-var-put-to-scope.js: Added.
* stress/eval-func-decl-in-frozen-global.js:
Object.freeze() redefines all global variables as ReadOnly, including hoisted `var error`.
Aligns with V8.

* stress/global-object-define-own-property-put-to-scope.js: Added.
* stress/global-object-define-own-property.js: Added.
* stress/to-this-before-arrow-function-closes-over-this-that-starts-as-lexical-environment.js:
Fix unwanted name conflict, which was an error in the original test, not an intended part of it.
Also, remove misleading comment on `defineProperty` and assert accessors are created on global object.
Aligns with V8.

LayoutTests/imported/w3c:

* web-platform-tests/html/browsers/the-windowproxy-exotic-object/windowproxy-define-own-property-unforgeable-same-origin-expected.txt: Added.
* web-platform-tests/html/browsers/the-windowproxy-exotic-object/windowproxy-define-own-property-unforgeable-same-origin.html: Added.

Source/JavaScriptCore:

Per spec, top-level `var` bindings are non-configurable properties of the global
object [1], while `undefined` / `NaN` / `Infinity` are also non-writable [2].

Prior to this change, redefining global `var` binding with accessor descriptor
failed silently (rather than throwing a TypeError); redefining with data or
generic descriptor created a structure property, which took precedence over
symbol table entry in JSGlobalObject::getOwnPropertySlot(), effectively
destroying live binding between `global.foo` and `var foo`.

This patch re-engineers JSGlobalObject::defineOwnProperty(), fixing both issues
mentioned above. If defineOwnProperty() override is removed, there is no way
a live binding can be maintained.

In a follow-up change, JSGlobalObject::getOwnPropertySlot() will be updated to
search symbol table first, aligning it with the spec [3], put(), and
defineOwnProperty(). Apart from consistency, this will bring a mild speed-up.

To accomodate global `var` binding reassignment right after it becomes read-only
(in the same scope), this patch introduces a watchpoint that can be fired by
JSGlobalObject::defineOwnProperty(). put_to_scope performance is neutral.

Also, this patch removes unused symbolTableGet() overload and orphaned
JSGlobalObject::defineGetter() / JSGlobalObject::defineSetter() declarations.

[1]: https://tc39.es/ecma262/#sec-object-environment-records-createmutablebinding-n-d
[2]: https://tc39.es/ecma262/#sec-value-properties-of-the-global-object
[3]: https://tc39.es/ecma262/#sec-global-environment-records-getbindingvalue-n-s

* dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::needsDynamicLookup):
(JSC::DFG::ByteCodeParser::parseBlock):
* jit/JIT.cpp:
(JSC::JIT::emitVarReadOnlyCheck):
* jit/JIT.h:
* jit/JITPropertyAccess.cpp:
(JSC::JIT::emit_op_put_to_scope):
* jit/JITPropertyAccess32_64.cpp:
(JSC::JIT::emit_op_put_to_scope):
* llint/LowLevelInterpreter.asm:
* llint/LowLevelInterpreter32_64.asm:
* llint/LowLevelInterpreter64.asm:
* runtime/JSGlobalObject.cpp:
(JSC::JSGlobalObject::JSGlobalObject):
(JSC::JSGlobalObject::defineOwnProperty):
* runtime/JSGlobalObject.h:
(JSC::JSGlobalObject::varReadOnlyWatchpoint):
* runtime/JSSymbolTableObject.h:
(JSC::symbolTableGet):

Source/WebCore:

This patch removes `location` special-casing, which a) incorrectly returned
`false` if new descriptor was the same as the current one and b) failed
silently otherwise (rather than throwing a TypeError).

However, this change introduces `window` / `document` special-casing because
they exist on the structure and as symbol table entries (for performance reasons).
Aligns WebKit with Blink and partly with Gecko.

Test: imported/w3c/web-platform-tests/html/browsers/the-windowproxy-exotic-object/windowproxy-define-own-property-unforgeable-same-origin.html

* bindings/js/JSDOMWindowCustom.cpp:
(WebCore::JSDOMWindow::defineOwnProperty):

LayoutTests:

* fast/dom/Window/Location/window-override-location-using-defineGetter-expected.txt:
* fast/dom/Window/Location/window-override-location-using-defineGetter.html:
* fast/dom/Window/Location/window-override-window-using-defineGetter-expected.txt:
* fast/dom/Window/Location/window-override-window-using-defineGetter.html:
* fast/dom/getter-on-window-object2-expected.txt:
* fast/dom/getter-on-window-object2.html:


Canonical link: https://commits.webkit.org/235202@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@274308 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2021-03-12 00:08:05 +00:00
..
class-fields-private [JSC] support op_get_private_name in DFG and FTL 2020-10-21 14:06:02 +00:00
ArrayBuffer-DataView-alloc-large-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-DataView-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-Int8Array-alloc-large-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-Int8Array-alloc-long-lived-buffer.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-Int8Array-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-Int8Array-alloc.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ArrayBuffer-Int32Array-byteOffset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
DataView-custom-properties.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Float32Array-matrix-mult.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Float32Array-to-Float64Array-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Float64Array-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Float64Array-to-Int16Array-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
HashMap-put-get-iterate-keys.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
HashMap-put-get-iterate.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
HashMap-string-put-get-iterate.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int8Array-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int8Array-load-with-byteLength.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int8Array-load.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int16Array-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int16Array-bubble-sort-with-byteLength.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int16Array-bubble-sort.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int16Array-load-int-mul.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int16Array-to-Int32Array-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int32Array-Int8Array-view-alloc.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int32Array-alloc-large.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int32Array-alloc-long-lived.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Int32Array-alloc.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
JSONP-negative-0.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
Number-isNaN.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abc-forward-loop-equal.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abc-postfix-backward-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abc-simple-backward-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abc-simple-forward-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abc-skippy-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
abs-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
adapt-to-double-divide.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
add-tree.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
aliased-arguments-getbyval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
allocate-big-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
apply-not-apply.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arguments-named-and-reflective.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arguments-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arguments-strict-mode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arity-mismatch-inlining.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-access-polymorphic-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-filter-boolean-constructor.js BooleanConstructor should be inlined in DFG / FTL 2021-03-06 14:42:37 +00:00
array-from-arraylike.js Move @isConstructor checks from fast paths of Array.from and Array.of 2020-05-13 07:08:13 +00:00
array-nonarray-polymorhpic-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-of.js Move @isConstructor checks from fast paths of Array.from and Array.of 2020-05-13 07:08:13 +00:00
array-prototype-every.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-forEach.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-indexOf-empty.js %TypedArray%.prototype.{indexOf,lastIndexOf} are not spec-perfect 2020-07-04 20:06:54 +00:00
array-prototype-join-uninitialized.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-map.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-reduce.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-reduceRight.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-some.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-prototype-sort-large-array-comparator.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-prototype-sort-large-array.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-prototype-sort-medium-array-comparator.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-prototype-sort-medium-array.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-prototype-sort-small-array-comparator.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-prototype-sort-small-array.js Update Array.prototype.sort to be consistent with tightened spec 2020-09-24 02:46:41 +00:00
array-push-0.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-push-1.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-push-2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-redefine-index-and-reverse.js Expand JSObject::defineOwnIndexedProperty() fast path for existing properties 2020-06-16 01:23:44 +00:00
array-redefine-index.js Expand JSObject::defineOwnIndexedProperty() fast path for existing properties 2020-06-16 01:23:44 +00:00
array-shift-unshift-empty.js Merge putLength() into setLength() 2020-08-27 01:55:08 +00:00
array-splice-contiguous.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-double-add.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-double-increment.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-double-mul-add.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-double-sum.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-int32-add-sub.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
array-with-int32-or-double-sum.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunciton-direct-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunciton-reference-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunction-call-in-class-constructor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunction-call-in-class-method.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunction-call-in-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
arrowfunction-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
asmjs_bool_bug.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
assign-custom-setter-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
assign-custom-setter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
basic-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
big-int-mul.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bigswitch-indirect-symbol.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bigswitch-indirect.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bigswitch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bit-or-tree.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bit-test-constant.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
bit-test-load.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bit-test-nonconstant.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
bit-xor-tree.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
boolean-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bound-function-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bound-function-construction-performance.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
branch-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
branch-on-string-as-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
bug-153431.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
build-large-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
by-val-generic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cache-get-variables-under-tdz-in-bytecode-generator.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
call-or-not-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
call-spread-apply.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
call-spread-call.js [JSC] OSR exit to LLInt is broken on MIPS 2019-11-20 23:12:41 +00:00
call-using-spread.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
captured-assignments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cast-int-to-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cell-argument.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cfg-simplify.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
chain-getter-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
check-mul-constant.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
check-mul-no-constant.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
check-mul-power-of-two.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
class-derived-creation.js Implementation of the class "extends" clause incorrectly uses __proto__ for setting prototypes 2020-08-25 07:45:00 +00:00
cmpeq-obj-to-obj-other.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
concat-append-one.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
constant-fold-check-type-info-flags.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
constant-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
construct-poly-proto-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
contiguous-array-to-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
create-lots-of-functions.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
create-many-weak-map.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cse-new-array-buffer.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
cse-new-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-accessor-materialized.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-accessor-thin-air.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-accessor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-setter-getter-as-put-get-by-id.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-value-2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
custom-value.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
data-view-accesses-2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
data-view-accesses.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dataview-cse.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
date-to-locale-date-string.js [JSC] Cache UDateTimePatternGenerator 2020-09-16 04:23:41 +00:00
date-to-locale-string.js [JSC] Cache UDateTimePatternGenerator 2020-09-16 04:23:41 +00:00
date-to-locale-time-string.js [JSC] Cache UDateTimePatternGenerator 2020-09-16 04:23:41 +00:00
default-value-destructuring-array.js emitIsUndefined() should not special-case [[IsHTMLDDA]] objects 2020-07-17 11:55:52 +00:00
default-value-destructuring-object.js emitIsUndefined() should not special-case [[IsHTMLDDA]] objects 2020-07-17 11:55:52 +00:00
default-value-function-parameters.js emitIsUndefined() should not special-case [[IsHTMLDDA]] objects 2020-07-17 11:55:52 +00:00
delay-tear-off-arguments-strictmode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
delete-cache-strict-mode.js We can still cache delete in strict mode as long as the property is not "non-configurable" 2020-04-09 17:59:06 +00:00
delete-property-allocation-sinking.js Allow deleteById to be cached in the DFG 2020-04-06 18:48:04 +00:00
delete-property-from-prototype-chain.js Inline Cache delete by id/val 2020-02-26 01:38:46 +00:00
delete-property-inline-cache-polymorphic.js Inline Cache delete by id/val 2020-02-26 01:38:46 +00:00
delete-property-inline-cache.js Inline Cache delete by id/val 2020-02-26 01:38:46 +00:00
delete-property-keeps-cacheable-structure.js Inline Cache delete by id/val 2020-02-26 01:38:46 +00:00
delta-blue-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
deltablue-for-of.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
deltablue-varargs.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
destructuring-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
destructuring-array-literal.js Remove ArrayNode::m_optional 2020-07-23 08:25:12 +00:00
destructuring-parameters-overridden-by-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
destructuring-swap.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dfg-internal-function-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dfg-internal-function-construct.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dfg-internal-function-not-handled-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dfg-internal-function-not-handled-construct.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-arguments-getbyval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-arguments-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-arguments-overridden-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-arguments-possibly-overridden-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-call-arity-mismatch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-construct-arity-mismatch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-construct.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-tail-call-arity-mismatch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-tail-call-inlined-caller-arity-mismatch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-tail-call-inlined-caller.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
direct-tail-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
div-boolean-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
div-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
dont-confuse-structures-from-different-executable-as-poly-proto.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-array-to-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-get-by-val-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-pollution-getbyval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-pollution-putbyoffset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-real-use.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-to-int32-typed-array-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-to-int32-typed-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-to-uint32-typed-array-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
double-to-uint32-typed-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
elidable-new-object-dag.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
elidable-new-object-roflcopter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
elidable-new-object-then-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
elidable-new-object-tree.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
empty-string-plus-int.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
emscripten-cube2hash.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
error-source-appender.js ErrorInstance::finishCreation() puts "message" twice, with different attributes 2020-07-09 08:23:36 +00:00
eval-cached.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
eval-code-ftl-reentry.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
eval-code-ftl.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
eval-compute.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
eval-not-eval-compute-args.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
eval-not-eval-compute.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
exit-length-on-plain-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
external-arguments-getbyval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
external-arguments-putbyval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
finalizationRegistryCleanup.js Add microbenchmark for FinalizationRegistry basic usage 2020-11-09 20:10:46 +00:00
finalizationRegistryCleanupWithUnregisterToken.js Add microbenchmark for FinalizationRegistry basic usage 2020-11-09 20:10:46 +00:00
fixed-typed-array-storage-var-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fixed-typed-array-storage.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-double-to-int.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-get-by-id-to-multi-get-by-offset-rare-int.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-get-by-id-to-multi-get-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-multi-get-by-offset-to-get-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-multi-get-by-offset-to-poly-get-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-multi-put-by-offset-to-poly-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-multi-put-by-offset-to-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-multi-put-by-offset-to-replace-or-transition-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-put-by-id-to-multi-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-put-by-val-with-string-to-multi-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-put-by-val-with-symbol-to-multi-put-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fold-put-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
for-in-proxy.js for/in over a Proxy should not call [[GetOwnProperty]] trap twice per property 2021-01-08 18:52:28 +00:00
for-of-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
for-of-iterate-array-entries.js Unreviewed, revert accidental test changes. 2020-04-20 12:10:03 +00:00
for-of-iterate-array-keys.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
for-of-iterate-array-values.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
forward-arguments-dont-escape-on-arguments-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
forward-varargs-check-shouldnt-escape.js handling of Check in VarargsForwardingPhase is too pessimistic 2020-05-13 03:04:58 +00:00
freeze-and-do-work.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
fround.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ftl-library-inlining-dataview.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ftl-library-inlining.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
ftl-polymorphic-StringFromCharCode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
function-bind-creation.js Function.prototype.bind should not clamp "length" to int32 2020-08-21 20:41:15 +00:00
function-bind-no-inlining-repeat-call.js [JSC] Improve our bound function implementation 2019-12-22 03:12:00 +00:00
function-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
function-dot-apply-array-literal.js Remove ArrayNode::m_optional 2020-07-23 08:25:12 +00:00
function-dot-apply.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
function-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
function-with-eval.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
gcse-poly-get-less-obvious.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
gcse-poly-get.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
gcse.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generate-multiple-llint-entrypoints.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generator-create.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generator-fib.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generator-function-create.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generator-sunspider-access-nsieve.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
generator-with-several-types.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-and-put-by-val-double-index-dont-fall-off-a-cliff.js GetByVal and PutByVal runtime operations shouldn't fall off a performance cliff when the property is an integer boxed as a double 2020-05-15 06:55:08 +00:00
get-by-id-bimorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-bimorphic-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-chain-from-try-block.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-proto-or-self.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-quadmorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-id-self-or-proto.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-negative-array-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-polymorphic-ic-1.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-2.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-3.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-4.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-5.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-6.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-7.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-8.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-polymorphic-ic-9.js GetByStatus should not say it took the slow path for multiple identifiers and should have a way to indicate if the StructureStubInfo it saw took the slow path 2019-11-22 05:41:56 +00:00
get-by-val-with-string-bimorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-bimorphic-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-chain-from-try-block.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-proto-or-self.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-quadmorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-string-self-or-proto.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-bimorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-bimorphic-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-chain-from-try-block.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-check-structure-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-proto-or-self.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-quadmorphic-check-structure-elimination-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-by-val-with-symbol-self-or-proto.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-custom-getter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get-own-property-descriptor.js [JSC] Add Object.getOwnPropertyNames caching as it is done for Object.keys, and accelerate Object.getOwnPropertyDescriptor 2020-08-20 05:07:28 +00:00
get_by_val-Int32Array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get_callee_monomorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
get_callee_polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
getter-no-activation.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
getter-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
getter-richards-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
getter-richards.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
getter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-code-ftl.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-isNaN.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-object-access-with-mutating-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-var-const-infer-fire-from-opt.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-var-const-infer.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
global-var-put-to-scope.js Align JSGlobalObject::defineOwnProperty() with the spec and other runtimes 2021-03-12 00:08:05 +00:00
hard-overflow-check-equal.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
hard-overflow-check.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
has-own-property-for-in-loop-reflect-name.js Emit HasOwnPropertyFunctionCallDotNode for "Reflect" identifiers 2020-07-15 14:47:44 +00:00
has-own-property-for-in-loop-with-heap-variable.js [JSC] for-in should allocate new temporary register for base 2020-05-31 03:20:40 +00:00
has-own-property-for-in-loop-with-this.js [JSC] for-in should allocate new temporary register for base 2020-05-31 03:20:40 +00:00
has-own-property-for-in-loop.js hasOwnProperty inside structure property for-in loop should use an opcode like has_structure_property but for hasOwnProperty 2020-05-28 02:43:25 +00:00
has-own-property-name-cache.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
hoist-get-by-offset-tower-with-inferred-types.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
hoist-make-rope.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
hoist-poly-check-structure-effectful-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
hoist-poly-check-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
implicit-bigswitch-indirect-symbol.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
imul-double-only.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
imul-int-only.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
imul-mixed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-by-id-match.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-by-id-removed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-by-val-inside-for-in-loop.js in_by_val inside structure property for-in loop should use an opcode like has_structure_property but for "in" 2020-05-22 22:31:13 +00:00
in-four-cases.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-one-case-false.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-one-case-true.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
in-two-cases.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
indexed-properties-in-objects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-mov-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-mov.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-put-to-scope-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-put-to-scope.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-reenter-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-closure-const-then-reenter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-constant-global-property.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-constant-property.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-one-time-closure-ten-vars.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-one-time-closure-two-vars.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-one-time-closure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
infer-one-time-deep-closure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inline-arguments-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inline-arguments-aliased-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inline-arguments-local-escape.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inline-get-scoped-var.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inlined-put-by-id-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inlined-put-by-val-with-string-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
inlined-put-by-val-with-symbol-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-always-hit-one.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-always-hit-two.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-bound.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-dynamic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-sometimes-hit.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
instanceof-tricky-dynamic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-abs-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-abs-zero-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-add-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-add.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-div-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-max-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-min-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-mod-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-mul-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-neg-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-neg-zero-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-sub-then-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-or-other-sub.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int-overflow-local.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int8-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int32-array-to-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int52-back-and-forth.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int52-rand-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
int52-spill.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
integer-divide.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
integer-modulo.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
interpreter-wasm.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
interpreter-wasm.wasm Disable B3 hoistLoopInvariantValues by default 2020-06-03 23:18:30 +00:00
is-array-for-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-array-for-mixed-case.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-array-for-non-array-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-array-for-proxy.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-boolean-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-boolean-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-constructor.js Implement @isConstructor bytecode intrinsic and bytecode for that 2020-05-13 06:41:34 +00:00
is-function-fold-tricky-internal-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-function-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-function-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-not-cell-speculation-for-empty-value.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-number-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-number-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-fold-functions.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-fold-less-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-trickier-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-trickier-internal-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-tricky-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-object-or-null-tricky-internal-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-string-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-string-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-symbol-mixed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-symbol.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-undefined-fold-tricky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
is-undefined-fold.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
json-parse-array-reviver-same-value.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
json-parse-array-reviver.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
json-parse-object-reviver-same-value.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
json-parse-object-reviver.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
json-stringify-array-replacer.js Use toLength() and getIndexQuickly() in JSON.stringify 2019-11-14 21:59:58 +00:00
json-stringify-empty-array.js Use toLength() and getIndexQuickly() in JSON.stringify 2019-11-14 21:59:58 +00:00
json-stringify-many-objects-to-json.js JSON.stringify should call replacer on deleted properties 2020-03-07 03:02:43 +00:00
json-stringify-many-objects.js JSON.stringify should call replacer on deleted properties 2020-03-07 03:02:43 +00:00
large-empty-array-join-resolve-rope.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
large-empty-array-join.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
large-int-captured.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
large-int-neg.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
large-int.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
large-map-iteration.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
lazy-array-species-watchpoints.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
let-const-tdz-environment-parsing-and-hash-consing-speed.js Better cache our serialization of the outer TDZ environment when creating FunctionExecutables during bytecode generation 2020-10-28 19:25:14 +00:00
let-for-in.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
licm-dom-jit.js Audit safe to execute 2020-06-05 19:32:17 +00:00
licm-dragons-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
licm-dragons-overflow.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
licm-dragons-two-structures.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
licm-dragons.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
load-varargs-elimination.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
local-date-constructor.js Unreviewed, reverting r270860. 2020-12-15 21:38:51 +00:00
locale-compare.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
logical-not-weird-types.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
logical-not.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
loop-osr-with-arity-mismatch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
lots-of-fields.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
make-indexed-storage.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
make-rope-cse.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
make-rope.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
many-foreach-calls.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
many-repeat-stores.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-constructor.js [JSC] C++ iteration should support fast iterator protocol 2021-02-10 05:46:03 +00:00
map-for-each.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-for-of.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-has-and-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-has-get-cse-opportunity.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-key-well-typed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
map-rehash.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
marsaglia-larger-ints.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
marsaglia-osr-entry.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
math-random.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
math-trunc.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
math-with-out-of-bounds-array-values.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
max-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
megamorphic-load.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-typed-loop-large.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
memcpy-typed-loop-small.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
memcpy-typed-loop-speculative.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-typed-loop.js [JSC][MIPS] Adding support to Checkpoints 2020-02-26 14:06:30 +00:00
memcpy-wasm-large.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-wasm-medium.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-wasm-small.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
memcpy-wasm.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
method-on-number.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
min-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
minus-boolean-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
minus-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
misc-strict-eq.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mod-boolean-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mod-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mod-untyped.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mul-boolean-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mul-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
mul-immediate-sub.js Fix tests that time out on Series 4 Watch 2020-06-08 20:43:55 +00:00
neg-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
negative-zero-divide.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
negative-zero-modulo.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
negative-zero-negate.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-array-buffer-dead.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-array-buffer-push.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-array-buffer-vector-profile.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-array-dead.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-array-push.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-error.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
new-object-no-expected-function.js We should have a DFG intrinsic for the construct case of the Object constructor 2021-01-05 19:53:56 +00:00
no-inline-constructor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-strength-reduction.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-add-empty.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-add-in-loop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-add.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-radix-10.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-radix-cse.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
number-to-string-with-radix.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-and.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-closure-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-create-constant-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-create-null.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-create-unknown-object-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-create-untyped-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-entries.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-get-own-property-symbols-on-large-array.js Proxy's "ownKeys" trap result should not be sorted 2020-09-14 21:30:25 +00:00
object-get-own-property-symbols.js Proxy's "ownKeys" trap result should not be sorted 2020-09-14 21:30:25 +00:00
object-get-prototype-of-object-rare.js Add DFG/FTL fast path for GetPrototypeOf based on OverridesGetPrototype flag 2020-06-24 19:51:49 +00:00
object-get-prototype-of-primitive.js super should not depend on __proto__ 2020-06-15 14:42:43 +00:00
object-int-add-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-int-add.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-int-and-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-int-mul-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-int-sub-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-int-sub.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-is.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-iterate-symbols.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-iterate.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-keys-cloned-arguments.js [JSC] Simplify get*PropertyNames() methods and EnumerationMode 2021-01-07 23:56:37 +00:00
object-keys-error-object.js [JSC] Simplify get*PropertyNames() methods and EnumerationMode 2021-01-07 23:56:37 +00:00
object-keys-map-values.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-keys.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-literal-underscore-proto-setter.js __proto__ in object literal should perform [[SetPrototypeOf]] directly 2020-08-28 00:27:19 +00:00
object-lshift.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-or.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-rest-computed-destructuring.js [JSC] Simplify excludedSet handling in object rest expression 2021-02-19 09:42:20 +00:00
object-rest-destructuring.js Implement @copyDataProperties in C++ to optimize object rest / spread 2021-01-09 04:31:12 +00:00
object-rshift.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-spread.js Implement @copyDataProperties in C++ to optimize object rest / spread 2021-01-09 04:31:12 +00:00
object-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-urshift.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-values.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
object-xor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
obvious-sink-pathology-taken.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
obvious-sink-pathology.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
obviously-elidable-new-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
oob-sane-chain-contiguous.js Have an OOB+SaneChain Array::Speculation 2020-08-17 22:10:14 +00:00
oob-sane-chain-double-read-undefined.js Have an OOB+SaneChain Array::Speculation 2020-08-17 22:10:14 +00:00
oob-sane-chain-double.js Have an OOB+SaneChain Array::Speculation 2020-08-17 22:10:14 +00:00
oob-sane-chain-int32.js Have an OOB+SaneChain Array::Speculation 2020-08-17 22:10:14 +00:00
plus-boolean-arith.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
plus-boolean-double.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
plus-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-chain-access-different-prototypes-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-chain-access-different-prototypes.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-chain-access-simpler.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-chain-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-proto-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-proto-and-non-poly-proto-same-ic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-proto-clear-js-function-allocation-profile.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-proto-put-transition-speed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-proto-setter-speed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
poly-stricteq.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-array-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-get-by-id.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-put-by-id.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-put-by-val-with-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-put-by-val-with-symbol.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polymorphic-put-public-field.js [JSC][ESNext] Create a new opcode to handle private fields store/define 2020-09-23 17:19:38 +00:00
polymorphic-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polyvariant-delete-property.js Allow deleteById to be cached in the DFG 2020-04-06 18:48:04 +00:00
polyvariant-get-by-id-shorter-tower.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polyvariant-get-by-id-tower.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
polyvariant-monomorphic-get-by-id.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
prevent-extensions-and-do-work.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
promise-creation-many.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
promise-reject.js [JSC] Optimize Promise runtime functions 2019-10-28 21:13:57 +00:00
promise-resolve.js [JSC] Optimize Promise runtime functions 2019-10-28 21:13:57 +00:00
property-replace-and-setter-on-js-proxy.js Inline cache Replace and Setters on PureForwardingProxy 2020-08-13 04:50:12 +00:00
proto-getter-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
prototype-access-with-mutating-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-id-replace-and-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-id-slightly-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-id-transition-with-indexing-header.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-id.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-direct-large-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-direct.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-large-index-blank-indexing-type.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-machine-int.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-negative-array-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-string-replace-and-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-string-slightly-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-symbol-replace-and-transition.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-symbol-slightly-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-by-val-with-symbol.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
put-public-field.js [JSC][ESNext] Create a new opcode to handle private fields store/define 2020-09-23 17:19:38 +00:00
rare-osr-exit-on-local.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
raytrace-with-empty-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
raytrace-with-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
redefine-property-accessor-dictionary.js Redefining a property should not change its insertion index (Object.keys order) 2020-07-18 23:09:56 +00:00
redefine-property-accessor.js Redefining a property should not change its insertion index (Object.keys order) 2020-07-18 23:09:56 +00:00
redefine-property-data-dictionary.js Redefining a property should not change its insertion index (Object.keys order) 2020-07-18 23:09:56 +00:00
redefine-property-data.js Redefining a property should not change its insertion index (Object.keys order) 2020-07-18 23:09:56 +00:00
redefine-property-previous-attributes.js Cache Structure::attributeChangeTransition() 2020-08-14 04:11:09 +00:00
reflect-own-keys.js Proxy's "ownKeys" trap result should not be sorted 2020-09-14 21:30:25 +00:00
regexp-exec.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-last-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-nested-nonzero-min-counted-parens.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-is-not-instance.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-search-observable-side-effects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-search-observable-side-effects2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-flags.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-global.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-ignoreCase.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-multiline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-sticky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects3-unicode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-split-observable-side-effects4.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-test-observable-side-effects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-prototype-test-observable-side-effects2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-set-last-index.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-u-global-es5.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
regexp-u-global-es6.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
register-pressure-from-osr.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
repeat-multi-get-by-offset.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
rest-parameter-construction-performance.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
richards-empty-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
richards-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
scoped-arguments-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
scoped-arguments-overridden-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
scoped-arguments-possibly-overridden-length.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
seal-and-do-work.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
set-for-each.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
set-for-of.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
setter-prototype.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
setter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-activation-demo.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-getter-access.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-poly-call-nested.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-poly-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-exec-folding-fail.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-exec-folding.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-test-folding-fail-with-hoisted-regexp.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-test-folding-fail.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-test-folding-with-hoisted-regexp.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
simple-regexp-test-folding.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sin-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
singleton-scope.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sink-function.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sink-huge-activation.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sinkable-new-object-dag.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sinkable-new-object-taken.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sinkable-new-object-with-builtin-constructor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sinkable-new-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
slow-array-profile-convergence.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
slow-convergence.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
slow-ternaries.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sorting-benchmark.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sparse-conditional.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sparse-set.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
splice-to-remove.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
strcat-const.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
strcat-length-const.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
strict-osr-entry.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-char-code-at.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-convert.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-long-convert.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-long.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-pair-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-pair-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-concat.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-cons-repeat.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-cons-tower.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-equality.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-from-char-code.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-get-by-val-big-char.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-get-by-val-out-of-bounds-insane.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-get-by-val-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-get-by-val.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-hash.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-long-ident-equality.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-object-to-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-object-value-of.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-out-of-bounds.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-search-observable-side-effects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-search-observable-side-effects2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-search-observable-side-effects3.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-search-observable-side-effects4.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects2.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-flags.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-global.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-ignoreCase.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-multiline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-sticky.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects3-unicode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-prototype-split-observable-side-effects4.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-arith.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-not-resolving-fixed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-not-resolving-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-not-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-resolving-fixed.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-resolving-no-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-single-not-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-single-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-small-not-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-repeat-small-resolving.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-replace-empty.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-replace-generic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-replace.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-rope-with-object.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-slice-empty.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-slice-one-char.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-slice.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-sub.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-transcoding.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
string-var-equality.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
stringalloc.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
structure-hoist-over-transitions.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
substring-concat-weird.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
substring-concat.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
substring.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
sunspider-sha1-big-int.js Return BigInt32 whenever we can 2020-04-25 00:34:59 +00:00
super-get-by-id-with-this-monomorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
super-get-by-id-with-this-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
super-get-by-val-with-this-monomorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
super-get-by-val-with-this-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
super-getter.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-char-constant.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-char.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-constant.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-basic-big-var.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-basic-big.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-basic-var.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-basic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-big-length-tower-var.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-length-tower-var.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-length-tower.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch-string-short.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
switching-size-classes.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
symbol-creation.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
symbol-tostringtag.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
tan.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
tear-off-arguments-simple.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
tear-off-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
template-string-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
temporal-structure.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
throw.js [JSC] OSR exit to LLInt is broken on MIPS 2019-11-20 23:12:41 +00:00
to-int32-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-boolean.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-constructor-number-string-number-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-constructor-only-number.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-constructor-only-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-constructor-string-number-string-number.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-number-string-number-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-only-number.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-only-string.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-number-string-number-string-number.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
to-string-on-cow-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-catch-get-by-val-cloned-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-catch-get-by-val-direct-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-catch-get-by-val-scoped-arguments.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-catch-word-count.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-get-by-id-basic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
try-get-by-id-polymorphic.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
typed-array-get-set-by-val-profiling.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
typed-array-indexOf-empty.js %TypedArray%.prototype.{indexOf,lastIndexOf} are not spec-perfect 2020-07-04 20:06:54 +00:00
typed-array-subarray.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
typed-array-sum.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
undefined-test.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
unprofiled-licm.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
untyped-string-from-char-code.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
v8-raytrace-with-empty-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
v8-raytrace-with-try-catch.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
v8-regexp-search.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs-call.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs-construct-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs-construct.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs-inline.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs-strict-mode.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
varargs.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
vector-length-hint-array-constructor.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
vector-length-hint-new-array.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
weak-map-key.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
weak-set-key.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00
weird-inlining-const-prop.js [JSC tests] Skip slow tests on Watch S3 and Watch S4 2019-10-22 22:46:40 +00:00