WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
185996
Error instances should not strongly hold onto StackFrames
https://bugs.webkit.org/show_bug.cgi?id=185996
Summary
Error instances should not strongly hold onto StackFrames
Keith Miller
Reported
2018-05-25 14:49:45 PDT
Error instances should not strongly hold onto StackFrames
Attachments
Patch
(13.41 KB, patch)
2018-05-25 14:53 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Patch for landing
(13.73 KB, patch)
2018-05-25 15:18 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Patch
(16.60 KB, patch)
2018-05-29 10:51 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews104 for mac-sierra-wk2
(3.30 MB, application/zip)
2018-05-29 11:55 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews102 for mac-sierra
(2.17 MB, application/zip)
2018-05-29 11:57 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews115 for mac-sierra
(1.76 MB, application/zip)
2018-05-29 12:24 PDT
,
EWS Watchlist
no flags
Details
Patch
(16.62 KB, patch)
2018-05-29 12:38 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews100 for mac-sierra
(2.93 MB, application/zip)
2018-05-29 13:39 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews121 for ios-simulator-wk2
(2.60 MB, application/zip)
2018-05-29 14:30 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews115 for mac-sierra
(3.61 MB, application/zip)
2018-05-29 14:38 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews104 for mac-sierra-wk2
(3.22 MB, application/zip)
2018-05-29 15:58 PDT
,
EWS Watchlist
no flags
Details
Patch
(18.16 KB, patch)
2018-05-29 18:48 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews102 for mac-sierra
(2.72 MB, application/zip)
2018-05-29 20:04 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews114 for mac-sierra
(3.43 MB, application/zip)
2018-05-29 20:38 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews125 for ios-simulator-wk2
(2.27 MB, application/zip)
2018-05-29 20:42 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews104 for mac-sierra-wk2
(3.17 MB, application/zip)
2018-05-30 00:01 PDT
,
EWS Watchlist
no flags
Details
Patch
(20.96 KB, patch)
2018-05-30 09:43 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews101 for mac-sierra
(2.85 MB, application/zip)
2018-05-30 10:49 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews126 for ios-simulator-wk2
(13.39 MB, application/zip)
2018-05-30 11:30 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews116 for mac-sierra
(3.57 MB, application/zip)
2018-05-30 11:40 PDT
,
EWS Watchlist
no flags
Details
Archive of layout-test-results from ews106 for mac-sierra-wk2
(3.17 MB, application/zip)
2018-05-30 13:09 PDT
,
EWS Watchlist
no flags
Details
Patch
(21.49 KB, patch)
2018-05-30 13:28 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Patch
(21.51 KB, patch)
2018-05-30 15:01 PDT
,
Keith Miller
fpizlo
: review+
commit-queue
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(12)
View All
Add attachment
proposed patch, testcase, etc.
Keith Miller
Comment 1
2018-05-25 14:53:55 PDT
Created
attachment 341329
[details]
Patch
Keith Miller
Comment 2
2018-05-25 14:56:00 PDT
rdar://problem/40437952
Mark Lam
Comment 3
2018-05-25 15:10:26 PDT
Comment on
attachment 341329
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=341329&action=review
r=me with fixes.
> Source/JavaScriptCore/runtime/ErrorInstance.cpp:216 > + for (const auto& frame : *m_stackTrace.get()) { > + if (!frame.isMarked()) { > + computeErrorInfo(vm); > + return; > + } > + }
Technically, one could infer backwards using svn blame to figure out why you're doing this here, but I think this action is sufficiently detached from the motivation behind it that it's worth adding a comment here to explain why you're doing this.
> Source/JavaScriptCore/tools/JSDollarVM.cpp:1693 > + { > + return JSValue::encode(jsNumber(exec->vm().heap.globalObjectCount())); > + }
Please fix indentation.
> Source/JavaScriptCore/tools/JSDollarVM.cpp:1851 > + addFunction(vm, "globalObjectCount", functionGlobalObjectCount, 0);
This functionality is not documented in the ChangeLog. Please add a short ChangeLog comment for this.
Keith Miller
Comment 4
2018-05-25 15:15:36 PDT
Comment on
attachment 341329
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=341329&action=review
>> Source/JavaScriptCore/runtime/ErrorInstance.cpp:216 >> + } > > Technically, one could infer backwards using svn blame to figure out why you're doing this here, but I think this action is sufficiently detached from the motivation behind it that it's worth adding a comment here to explain why you're doing this.
Done.
>> Source/JavaScriptCore/tools/JSDollarVM.cpp:1693 >> + } > > Please fix indentation.
Fixed.
>> Source/JavaScriptCore/tools/JSDollarVM.cpp:1851 >> + addFunction(vm, "globalObjectCount", functionGlobalObjectCount, 0); > > This functionality is not documented in the ChangeLog. Please add a short ChangeLog comment for this.
Sure.
Keith Miller
Comment 5
2018-05-25 15:18:10 PDT
Created
attachment 341334
[details]
Patch for landing
Saam Barati
Comment 6
2018-05-25 15:30:21 PDT
Comment on
attachment 341334
[details]
Patch for landing View in context:
https://bugs.webkit.org/attachment.cgi?id=341334&action=review
> Source/JavaScriptCore/runtime/ErrorInstance.cpp:206 > +void ErrorInstance::unconditionalFinalizer(VM& vm)
Who calls this?
Saam Barati
Comment 7
2018-05-25 15:31:19 PDT
Comment on
attachment 341334
[details]
Patch for landing View in context:
https://bugs.webkit.org/attachment.cgi?id=341334&action=review
> Source/JavaScriptCore/ChangeLog:9 > + This patch also adds a method to $vm that returns the heaps count > + of live global objects.
Also add a 1 sentence blurb on how you achieve the goal in the title?
Keith Miller
Comment 8
2018-05-29 10:51:09 PDT
Created
attachment 341498
[details]
Patch
EWS Watchlist
Comment 9
2018-05-29 11:55:03 PDT
Comment on
attachment 341498
[details]
Patch
Attachment 341498
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/7846622
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 10
2018-05-29 11:55:05 PDT
Created
attachment 341501
[details]
Archive of layout-test-results from ews104 for mac-sierra-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-sierra-wk2 Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 11
2018-05-29 11:57:15 PDT
Comment on
attachment 341498
[details]
Patch
Attachment 341498
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.webkit.org/results/7846671
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 12
2018-05-29 11:57:17 PDT
Created
attachment 341503
[details]
Archive of layout-test-results from ews102 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 13
2018-05-29 12:12:41 PDT
Comment on
attachment 341498
[details]
Patch
Attachment 341498
[details]
did not pass jsc-ews (mac): Output:
http://webkit-queues.webkit.org/results/7846666
New failing tests: stress/const-loop-semantics.js.ftl-eager stress/eval-func-decl-with-let-const-class.js.ftl-eager-no-cjit stress/put-direct-index-broken-2.js.no-llint stress/generational-opaque-roots.js.ftl-eager-no-cjit-b3o1 stress/exception-in-to-property-key-should-be-handled-early-in-object-methods.js.dfg-eager stress/proxy-set-prototype-of.js.ftl-eager stress/import-with-empty-string.js.dfg-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-cjit-validate-phases stress/dfg-reflect-get-prototype-of.js.ftl-eager stress/yield-named-variable.js.dfg-eager-no-cjit-validate stress/regress-151324.js.dfg-eager stress/arguments-define-property.js.dfg-eager-no-cjit-validate stress/eval-func-decl-with-let-const-class.js.no-cjit-collect-continuously stress/string-iterators.js.no-cjit-collect-continuously stress/number-to-string-with-radix-invalid.js.ftl-eager stress/typedarray-fill.js.no-cjit-collect-continuously stress/weak-map-constructor.js.no-cjit-collect-continuously stress/typedarray-some.js.dfg-eager-no-cjit-validate stress/regress-172346.js.ftl-eager stress/re-execute-error-module.js.ftl-eager stress/map-constructor.js.dfg-eager stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.dfg-eager-no-cjit-validate stress/array-species-functions.js.no-cjit-collect-continuously stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.no-cjit-collect-continuously stress/to-property-key-correctness.js.dfg-eager stress/typedarray-copyWithin.js.dfg-eager stress/dfg-object-prototype-of.js.dfg-eager-no-cjit-validate stress/dont-unwind-past-vm-entry-frame.js.ftl-eager-no-cjit stress/to-object-intrinsic-null-or-undefined-edge.js.ftl-eager stress/yield-reserved-word.js.ftl-eager-no-cjit stress/array-from-with-iterator.js.dfg-eager stress/proxy-is-array.js.ftl-eager-no-cjit microbenchmarks/try-catch-word-count.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.no-cjit-collect-continuously stress/generator-type-check.js.dfg-eager stress/for-in-tests.js.dfg-eager stress/catch-parameter-syntax.js.no-cjit-collect-continuously stress/native-error-properties.js.dfg-eager-no-cjit-validate microbenchmarks/try-catch-word-count.js.ftl-no-cjit-small-pool stress/proxy-basic.js.ftl-eager-no-cjit stress/eval-func-decl-in-global-of-eval.js.dfg-eager stress/class-syntax-tdz-in-eval.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-arguments-binding.js.dfg-eager-no-cjit-validate stress/lexical-let-tdz.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.ftl-no-cjit-validate-sampling-profiler stress/async-iteration-basic.js.no-cjit-collect-continuously stress/dfg-object-proto-getter.js.no-cjit-collect-continuously stress/async-arrow-functions-lexical-arguments-binding.js.no-cjit-collect-continuously stress/array-iterators-next-error-messages.js.dfg-eager-no-cjit-validate stress/put-direct-index-broken-2.js.dfg-eager stress/global-lexical-variable-tdz.js.dfg-eager-no-cjit-validate stress/proxy-prevent-extensions.js.no-cjit-collect-continuously stress/array-from-with-iterator.js.ftl-eager-no-cjit stress/typedarray-set.js.ftl-eager-no-cjit stress/error-stack-trace-limit.js.ftl-no-cjit-no-put-stack-validate stress/array-species-config-array-constructor.js.dfg-eager-no-cjit-validate stress/async-await-reserved-word.js.dfg-eager-no-cjit-validate stress/destructuring-assignment-require-object-coercible.js.ftl-eager stress/generator-syntax.js.ftl-eager-no-cjit stress/proxy-get-prototype-of.js.ftl-eager stress/super-property-access-tdz.js.ftl-eager stress/generational-opaque-roots.js.default stress/catch-variables-under-tdz.js.dfg-eager stress/generational-opaque-roots.js.ftl-no-cjit-validate-sampling-profiler stress/regexp-search.js.ftl-eager stress/create-subclass-structure-may-throw-exception-when-getting-prototype.js.ftl-eager microbenchmarks/v8-raytrace-with-try-catch.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.dfg-maximal-flush-validate-no-cjit stress/const-tdz.js.ftl-eager-no-cjit stress/reserved-word-with-escape.js.ftl-eager stress/reflect-construct.js.no-cjit-collect-continuously stress/weak-map-constructor.js.ftl-eager-no-cjit stress/object-values.js.no-cjit-collect-continuously stress/rest-elements.js.dfg-eager stress/import-basic.js.no-cjit-collect-continuously stress/array-prototype-splice-making-typed-array.js.dfg-eager-no-cjit-validate stress/set-constructor.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.ftl-no-cjit-small-pool stress/default-value-parsing-should-propagate-error.js.ftl-eager-no-cjit stress/regress-151324.js.ftl-eager-no-cjit stress/array-from-with-iterator.js.dfg-eager-no-cjit-validate stress/proxy-is-array.js.ftl-eager stress/dont-unwind-past-vm-entry-frame.js.dfg-eager stress/get-prototype-create-this-effectful.js.dfg-eager stress/const-semantics.js.dfg-eager-no-cjit-validate stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.no-cjit-collect-continuously stress/async-arrow-functions-lexical-binding-in-class.js.dfg-eager stress/import-syntax.js.dfg-eager-no-cjit-validate stress/promise-cannot-be-called.js.no-cjit-collect-continuously stress/class-syntax-double-constructor.js.dfg-eager stress/global-lexical-redeclare-variable.js.no-cjit-collect-continuously stress/reflect-set-receiver-proxy-set.js.dfg-eager-no-cjit-validate stress/arguments-non-configurable.js.dfg-eager stress/symbol-toprimitive-errors.js.dfg-eager-no-cjit-validate stress/async-iteration-yield-star.js.dfg-eager stress/proxy-json.js.no-cjit-collect-continuously stress/new-target-syntax-errors.js.dfg-eager-no-cjit-validate stress/async-await-mozilla.js.dfg-eager stress/arrowfunction-lexical-bind-supercall-3.js.dfg-eager-no-cjit-validate stress/object-get-prototype-of-perform-to-object.js.ftl-eager stress/import-basic.js.ftl-eager stress/async-generator-assertion.js.dfg-eager-no-cjit-validate stress/proxy-with-private-symbols.js.dfg-eager-no-cjit-validate stress/regexp-search.js.ftl-eager-no-cjit stress/arguments-non-configurable.js.no-cjit-collect-continuously stress/typedarray-set.js.dfg-eager stress/new-target-syntax-errors.js.no-cjit-collect-continuously stress/catch-parameter-syntax.js.ftl-eager stress/proxy-stack-overflow-exceptions.js.no-cjit-collect-continuously stress/new-target.js.dfg-eager wasm.yaml/wasm/js-api/test_Data.js.default-wasm wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-tls-context stress/regress-159954.js.no-cjit-collect-continuously stress/array-prototype-splice-making-typed-array.js.ftl-eager-no-cjit stress/proxy-stack-overflow-exceptions.js.dfg-eager stress/async-iteration-yield-star.js.ftl-eager stress/proxy-is-array.js.no-llint stress/async-iteration-for-await-of.js.ftl-eager stress/typedarray-map.js.no-cjit-collect-continuously stress/tagged-template-tdz.js.dfg-eager stress/re-execute-error-module.js.dfg-eager stress/reflect-set-receiver-proxy-set.js.no-cjit-collect-continuously stress/reflect-set-proxy-set.js.dfg-eager-no-cjit-validate stress/spec-empty-flows-through-cell-checks.js.dfg-eager-no-cjit-validate stress/domjit-getter-type-check.js.ftl-eager-no-cjit stress/import-with-empty-string.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.ftl-no-cjit-no-inline-validate stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.dfg-eager stress/string-from-code-point.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.ftl-no-cjit-no-put-stack-validate stress/typedarray-set.js.dfg-eager-no-cjit-validate stress/regexp-match.js.dfg-eager-no-cjit-validate stress/proxy-get-own-property.js.ftl-eager stress/array-reverse-proxy.js.dfg-eager-no-cjit-validate stress/regress-173053.js.no-cjit-collect-continuously stress/async-iteration-yield-star-interface.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-arguments-binding.js.ftl-eager stress/proxy-is-array.js.ftl-no-cjit-b3o1 stress/global-lexical-variable-tdz.js.dfg-eager stress/async-iteration-yield-star-interface.js.no-cjit-collect-continuously stress/string-from-code-point.js.dfg-eager-no-cjit-validate stress/eval-func-decl-with-let-const-class.js.ftl-eager stress/destructuring-assignment-syntax.js.ftl-eager-no-cjit stress/es6-default-parameters.js.dfg-eager stress/const-tdz.js.no-cjit-collect-continuously stress/tail-call-recognize.js.ftl-eager-no-cjit stress/regress-179355.js.ftl-eager stress/string-prototype-scopes.js.dfg-eager-no-cjit-validate stress/typedarray-bad-getter.js.ftl-eager stress/create-subclass-structure-might-throw.js.dfg-eager-no-cjit-validate stress/lexical-let-tdz.js.no-cjit-collect-continuously stress/check-sub-class.js.ftl-eager stress/reflect-get.js.dfg-eager-no-cjit-validate stress/domjit-getter-type-check.js.dfg-eager-no-cjit-validate stress/proxy-is-array.js.ftl-no-cjit-no-inline-validate stress/pow-expects-update-expression-on-lhs.js.ftl-eager-no-cjit wasm.yaml/wasm/spec-tests/jsapi.js.default-wasm stress/array-copywithin.js.ftl-eager stress/proxy-is-array.js.dfg-maximal-flush-validate-no-cjit stress/weak-map-constructor.js.ftl-eager stress/array-species-config-array-constructor.js.ftl-eager-no-cjit stress/rest-elements.js.ftl-eager stress/has-instance-exception-check.js.dfg-eager stress/typedarray-indexOf.js.dfg-eager-no-cjit-validate stress/number-prototype-to-string-wrong-values.js.no-cjit-collect-continuously stress/global-const-redeclaration-setting-5.js.ftl-eager-no-cjit stress/proxy-call.js.no-cjit-collect-continuously stress/typedarray-reduceRight.js.ftl-eager stress/typedarray-reduceRight.js.no-cjit-collect-continuously stress/spread-calling.js.dfg-eager-no-cjit-validate stress/array-copywithin.js.dfg-eager stress/global-lexical-redeclare-variable.js.ftl-eager stress/dfg-object-prototype-of.js.ftl-eager stress/destructuring-assignment-syntax.js.ftl-eager stress/typedarray-of.js.ftl-eager-no-cjit stress/proxy-get-prototype-of.js.dfg-eager stress/create-subclass-structure-may-throw-exception-when-getting-prototype.js.dfg-eager stress/call-non-calleable-constructors-as-function.js.dfg-eager-no-cjit-validate stress/global-lexical-var-injection.js.ftl-eager-no-cjit stress/tail-call-recognize.js.ftl-eager stress/proxy-own-keys.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit stress/regress-179355.js.no-cjit-collect-continuously stress/call-non-calleable-constructors-as-function.js.no-cjit-collect-continuously stress/async-await-reserved-word.js.ftl-eager stress/dfg-reflect-get-prototype-of.js.no-cjit-collect-continuously stress/completion-value.js.dfg-eager-no-cjit-validate stress/reflect-construct.js.ftl-eager-no-cjit stress/typedarray-subarray.js.no-cjit-collect-continuously stress/yield-out-of-generator.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.dfg-maximal-flush-validate-no-cjit stress/typedarray-lastIndexOf.js.no-cjit-collect-continuously stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.dfg-eager stress/class-syntax-definition-semantics.js.ftl-eager stress/global-lexical-redeclare-variable.js.dfg-eager-no-cjit-validate stress/set-constructor.js.dfg-eager stress/completion-value.js.ftl-eager stress/array-iterators-next-with-call.js.dfg-eager-no-cjit-validate stress/typedarray-lastIndexOf.js.ftl-eager stress/dont-strength-reduce-valuerep-of-doublerep.js.dfg-eager-no-cjit-validate stress/symbol-registry.js.dfg-eager-no-cjit-validate stress/dfg-reflect-get-prototype-of.js.dfg-eager wasm.yaml/wasm/spec-tests/start.wast.js.wasm-eager-jettison stress/async-await-basic.js.ftl-eager-no-cjit stress/async-iteration-yield-star-interface.js.ftl-eager stress/proxy-revoke.js.ftl-eager-no-cjit stress/typedarray-every.js.dfg-eager-no-cjit-validate stress/proxy-own-keys.js.dfg-eager stress/put-direct-index-broken-2.js.ftl-eager stress/catch-variables-under-tdz.js.ftl-eager stress/proxy-prevent-extensions.js.dfg-eager stress/get-prototype-create-this-effectful.js.dfg-eager-no-cjit-validate stress/regress-158411.js.no-cjit-collect-continuously stress/dataview-typedarray-toindex.js.ftl-eager-no-cjit stress/lexical-let-loop-semantics.js.ftl-eager-no-cjit stress/typedarray-filter.js.dfg-eager-no-cjit-validate stress/map-constructor.js.dfg-eager-no-cjit-validate stress/put-direct-index-broken-2.js.no-cjit-collect-continuously stress/eval-and-super.js.no-cjit-collect-continuously stress/spread-calling.js.dfg-eager stress/number-prototype-to-string-wrong-values.js.dfg-eager-no-cjit-validate stress/dfg-object-proto-getter.js.ftl-eager-no-cjit stress/reflect-set-receiver-proxy-set.js.dfg-eager stress/typedarray-indexOf.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.dfg-eager stress/proxy-revoke.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-eager stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.ftl-eager stress/number-to-string-with-radix-invalid.js.ftl-eager-no-cjit stress/super-property-access-tdz.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/memory.wast.js.wasm-no-tls-context stress/async-iteration-syntax.js.dfg-eager-no-cjit-validate stress/create-subclass-structure-might-throw.js.no-cjit-collect-continuously stress/class-derived-from-null.js.no-cjit-collect-continuously stress/destructuring-assignment-syntax.js.dfg-eager stress/proxy-call.js.dfg-eager stress/array-species-functions.js.dfg-eager stress/typedarray-access-neutered.js.dfg-eager stress/async-iteration-basic.js.dfg-eager-no-cjit-validate stress/set-constructor.js.dfg-eager-no-cjit-validate microbenchmarks/try-catch-word-count.js.no-cjit-collect-continuously stress/reflect-get-own-property.js.ftl-eager stress/object-values.js.ftl-eager stress/typedarray-copyWithin.js.ftl-eager stress/object-entries.js.dfg-eager stress/catch-variables-under-tdz.js.no-cjit-collect-continuously jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-ftl-eager-no-cjit stress/proxy-set-prototype-of.js.dfg-eager stress/proxy-basic.js.dfg-eager-no-cjit-validate stress/has-instance-exception-check.js.dfg-eager-no-cjit-validate stress/array-prototype-splice-making-typed-array.js.no-cjit-collect-continuously stress/regress-153486.js.dfg-eager stress/typedarray-sort.js.dfg-eager stress/arrowfunction-tdz-2.js.dfg-eager stress/to-object-intrinsic.js.ftl-eager-no-cjit stress/typedarray-findIndex.js.ftl-eager-no-cjit stress/computed-accessor-parsing.js.no-cjit-collect-continuously stress/regress-153486.js.ftl-eager-no-cjit stress/async-await-syntax.js.no-cjit-collect-continuously wasm.yaml/wasm/js-api/test_memory.js.wasm-no-tls-context stress/typedarray-findIndex.js.no-cjit-collect-continuously stress/computed-accessor-parsing.js.ftl-eager stress/array-iterators-next-with-call.js.ftl-eager stress/eval-func-decl-with-let-const-class.js.dfg-eager stress/async-iteration-for-await-of.js.dfg-eager-no-cjit-validate stress/destructuring-assignment-syntax.js.no-cjit-collect-continuously stress/create-subclass-structure-might-throw.js.dfg-eager stress/global-lexical-redefine-const.js.ftl-eager-no-cjit stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-no-put-stack-validate stress/computed-accessor-parsing.js.dfg-eager stress/async-iteration-yield-promise.js.dfg-eager-no-cjit-validate stress/call-non-calleable-constructors-as-function.js.ftl-eager-no-cjit stress/typedarray-access-monomorphic-neutered.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.no-llint stress/throw-from-ftl-call-ic-slow-path-cells.js.dfg-eager stress/dataview-typedarray-toindex.js.dfg-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-cjit-collect-continuously stress/destructuring-assignment-require-object-coercible.js.ftl-eager-no-cjit stress/promise-infinite-recursion-should-not-crash.js.ftl-eager stress/proxy-json.js.ftl-eager stress/reflect-set.js.ftl-eager-no-cjit stress/tagged-template-tdz.js.ftl-eager stress/regexp-with-runtime-syntax-errors.js.no-cjit-collect-continuously stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-eager stress/symbol-toprimitive-errors.js.no-cjit-collect-continuously stress/regress-153486.js.no-cjit-collect-continuously stress/reflect-construct.js.dfg-eager-no-cjit-validate stress/weak-set-constructor-adder.js.ftl-eager stress/string-raw.js.dfg-eager-no-cjit-validate stress/typedarray-find.js.dfg-eager-no-cjit-validate stress/put-direct-index-broken-2.js.ftl-no-cjit-no-inline-validate stress/typedarray-slice.js.ftl-eager stress/proxy-is-array.js.ftl-no-cjit-no-put-stack-validate stress/template-literal.js.ftl-eager-no-cjit stress/class-derived-from-null.js.ftl-eager stress/regexp-with-runtime-syntax-errors.js.dfg-eager stress/generator-syntax.js.dfg-eager-no-cjit-validate stress/typedarray-access-monomorphic-neutered.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.dfg-eager stress/proxy-construct.js.dfg-eager stress/string-raw.js.ftl-eager-no-cjit stress/eval-func-decl-with-let-const-class.js.dfg-eager-no-cjit-validate stress/create-subclass-structure-may-throw-exception-when-getting-prototype.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.ftl-no-cjit-b3o1 stress/proxy-stack-overflow-exceptions.js.ftl-eager-no-cjit stress/array-iterators-next-with-call.js.ftl-eager-no-cjit stress/proxy-define-own-property.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-3.js.no-cjit-collect-continuously wasm.yaml/wasm/js-api/test_memory.js.wasm-no-call-ic stress/put-direct-index-broken-2.js.ftl-no-cjit-b3o1 stress/typedarray-configure-index.js.no-cjit-collect-continuously stress/object-get-own-property-names-perform-to-object.js.no-cjit-collect-continuously stress/template-literal-syntax.js.ftl-eager-no-cjit stress/regexp-search.js.no-cjit-collect-continuously wasm.yaml/wasm/js-api/extension-MemoryMode.js.wasm-no-call-ic stress/yield-and-line-terminator.js.dfg-eager stress/dont-unwind-past-vm-entry-frame.js.dfg-eager-no-cjit-validate stress/proxy-is-array.js.dfg-eager-no-cjit-validate stress/template-literal-syntax.js.dfg-eager-no-cjit-validate stress/es6-default-parameters.js.ftl-eager-no-cjit stress/proxy-and-typed-array.js.dfg-eager-no-cjit-validate stress/arguments-define-property.js.ftl-eager stress/string-prototype-scopes-global-lexical-environment.js.dfg-eager stress/proxy-is-array.js.ftl-eager-no-cjit-b3o1 stress/array-species-config-array-constructor.js.no-cjit-collect-continuously stress/proxy-basic.js.no-cjit-collect-continuously stress/proxy-define-own-property.js.ftl-eager stress/create-subclass-structure-may-throw-exception-when-getting-prototype.js.no-cjit-collect-continuously stress/class-syntax-double-constructor.js.ftl-eager-no-cjit stress/class-syntax-double-constructor.js.ftl-eager stress/promise-cannot-be-called.js.dfg-eager stress/yield-out-of-generator.js.dfg-eager-no-cjit-validate stress/async-iteration-syntax.js.ftl-eager wasm.yaml/wasm/js-api/test_memory_constructor.js.wasm-eager-jettison stress/dont-strength-reduce-valuerep-of-doublerep.js.no-cjit-collect-continuously stress/const-tdz.js.ftl-eager stress/reflect-is-extensible.js.ftl-eager stress/regexp-with-runtime-syntax-errors.js.ftl-eager wasm.yaml/wasm/spec-tests/start.wast.js.wasm-no-tls-context stress/re-execute-error-module.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/js-api/test_memory_constructor.js.default-wasm stress/typedarray-lastIndexOf.js.dfg-eager stress/typedarray-access-monomorphic-neutered.js.ftl-no-cjit-no-put-stack-validate stress/array-prototype-splice-making-typed-array.js.ftl-eager stress/arguments-define-property.js.ftl-eager-no-cjit stress/lexical-let-tdz.js.dfg-eager stress/typedarray-access-neutered.js.ftl-no-cjit-b3o1 stress/reflect-get-prototype-of.js.dfg-eager-no-cjit-validate stress/pow-expects-update-expression-on-lhs.js.dfg-eager-no-cjit-validate stress/class-derived-from-null.js.dfg-eager stress/const-tdz.js.dfg-eager stress/global-lexical-variable-tdz.js.ftl-eager stress/arrowfunction-lexical-bind-supercall-3.js.no-cjit-collect-continuously stress/to-object-intrinsic-null-or-undefined-edge.js.ftl-eager-no-cjit stress/dfg-object-prototype-of.js.ftl-eager-no-cjit stress/proxy-with-private-symbols.js.ftl-eager stress/proxy-and-json-stringify.js.no-cjit-collect-continuously stress/async-iteration-async-from-sync.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-call-ic microbenchmarks/string-transcoding.js.dfg-eager stress/generational-opaque-roots.js.ftl-no-cjit-no-inline-validate stress/tagged-template-tdz.js.no-cjit-collect-continuously stress/bug-171786.js.dfg-eager stress/proxy-get-own-property.js.dfg-eager-no-cjit-validate stress/class-syntax-tdz-in-eval.js.no-cjit-collect-continuously stress/reflect-set-prototype-of.js.dfg-eager-no-cjit-validate stress/proxy-revoke.js.ftl-eager wasm.yaml/wasm/spec-tests/start.wast.js.wasm-no-cjit-yes-tls-context stress/async-await-syntax.js.dfg-eager stress/typedarray-access-monomorphic-neutered.js.ftl-no-cjit-b3o1 stress/variable-under-tdz-eval-tricky.js.ftl-eager-no-cjit stress/to-object-intrinsic-null-or-undefined-edge.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/js-api/extension-MemoryMode.js.wasm-eager-jettison stress/typedarray-functions-with-neutered.js.ftl-no-cjit-no-inline-validate stress/lexical-let-loop-semantics.js.dfg-eager stress/method-name.js.ftl-eager stress/const-not-strict-mode.js.dfg-eager stress/const-not-strict-mode.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-2.js.ftl-eager stress/import-reject-with-exception.js.ftl-eager-no-cjit stress/put-direct-index-broken-2.js.ftl-eager-no-cjit-b3o1 stress/import-syntax.js.ftl-eager-no-cjit stress/object-spread.js.ftl-eager-no-cjit stress/typedarray-forEach.js.no-cjit-collect-continuously stress/dfg-object-proto-getter.js.dfg-eager stress/typedarray-findIndex.js.ftl-eager stress/typedarray-functions-with-neutered.js.ftl-no-cjit-b3o1 stress/proxy-call.js.ftl-eager stress/generator-methods-with-non-generator.js.no-cjit-collect-continuously stress/arrowfunction-lexical-bind-supercall-3.js.ftl-eager-no-cjit stress/typedarray-functions-with-neutered.js.ftl-eager-no-cjit stress/global-lexical-redefine-const.js.dfg-eager stress/regress-179355.js.dfg-eager-no-cjit-validate stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager stress/dfg-object-prototype-of.js.no-cjit-collect-continuously stress/const-tdz.js.dfg-eager-no-cjit-validate stress/typedarray-access-neutered.js.ftl-eager-no-cjit-b3o1 stress/pow-to-number-should-be-executed-in-code-side.js.dfg-eager stress/proxy-own-keys.js.ftl-eager stress/object-seal-with-proxy-preventExtensions.js.no-cjit-collect-continuously stress/array-species-config-array-constructor.js.dfg-eager stress/const-semantics.js.ftl-eager stress/new-target-syntax-errors.js.ftl-eager-no-cjit stress/to-object-intrinsic-null-or-undefined-edge.js.no-cjit-collect-continuously jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-no-llint stress/array-species-functions.js.dfg-eager-no-cjit-validate stress/async-await-syntax.js.ftl-eager-no-cjit microbenchmarks/string-transcoding.js.no-cjit-collect-continuously stress/async-iteration-basic.js.dfg-eager stress/generator-methods-with-non-generator.js.ftl-eager stress/put-direct-index-broken-2.js.ftl-eager-no-cjit stress/typedarray-some.js.dfg-eager stress/object-entries.js.ftl-eager-no-cjit stress/code-cache-incorrect-caching.js.ftl-eager stress/const-not-strict-mode.js.ftl-eager stress/proxy-prevent-extensions.js.ftl-eager-no-cjit stress/proxy-prevent-extensions.js.ftl-eager stress/typedarray-lastIndexOf.js.ftl-eager-no-cjit stress/import-with-empty-string.js.dfg-eager-no-cjit-validate stress/string-prototype-scopes.js.no-cjit-collect-continuously stress/to-property-key-correctness.js.ftl-eager stress/es6-default-parameters.js.dfg-eager-no-cjit-validate stress/array-species-functions.js.ftl-eager-no-cjit stress/new-target.js.no-cjit-collect-continuously stress/async-await-basic.js.dfg-eager-no-cjit-validate stress/string-symbol-customization.js.dfg-eager stress/async-iteration-syntax.js.dfg-eager stress/dont-strength-reduce-valuerep-of-doublerep.js.ftl-eager-no-cjit stress/import-basic.js.ftl-eager-no-cjit stress/weak-set-constructor.js.ftl-eager-no-cjit wasm.yaml/wasm/js-api/extension-MemoryMode.js.wasm-no-cjit-yes-tls-context stress/promise-infinite-recursion-should-not-crash.js.dfg-eager-no-cjit-validate stress/ftl-library-inlining-exceptions.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/memory.wast.js.wasm-no-call-ic stress/spec-empty-flows-through-cell-checks.js.no-cjit-collect-continuously stress/const-semantics.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.no-ftl stress/typedarray-sort.js.ftl-eager stress/set-constructor.js.ftl-eager stress/typedarray-sort.js.ftl-eager-no-cjit stress/class-syntax-definition-semantics.js.ftl-eager-no-cjit stress/super-property-access-tdz.js.ftl-eager-no-cjit stress/throw-from-ftl-call-ic-slow-path.js.ftl-eager-no-cjit jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-dfg-eager-no-cjit stress/weak-map-constructor.js.dfg-eager stress/completion-value.js.ftl-eager-no-cjit stress/lexical-let-loop-semantics.js.dfg-eager-no-cjit-validate stress/es6-default-parameters.js.no-cjit-collect-continuously stress/array-species-config-array-constructor.js.ftl-eager stress/async-generator-assertion.js.ftl-eager-no-cjit stress/create-subclass-structure-might-throw.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-binding-in-class.js.no-cjit-collect-continuously jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-ftl-no-cjit stress/typedarray-sort.js.no-cjit-collect-continuously stress/trailing-comma-in-function-parameters.js.dfg-eager-no-cjit-validate stress/typedarray-reduce.js.dfg-eager stress/bug-171786.js.dfg-eager-no-cjit-validate stress/proxy-is-array.js.no-ftl stress/typedarray-reduce.js.no-cjit-collect-continuously stress/import-reject-with-exception.js.dfg-eager-no-cjit-validate stress/global-lexical-redefine-const.js.dfg-eager-no-cjit-validate stress/async-arrow-functions-lexical-super-binding.js.ftl-eager stress/typedarray-slice.js.dfg-eager stress/proxy-get-own-property.js.no-cjit-collect-continuously stress/proxy-call.js.ftl-eager-no-cjit stress/yield-label-generator.js.ftl-eager stress/class-syntax-double-constructor.js.no-cjit-collect-continuously stress/promise-cannot-be-called.js.dfg-eager-no-cjit-validate stress/create-subclass-structure-might-throw.js.ftl-eager stress/regexp-with-runtime-syntax-errors.js.dfg-eager-no-cjit-validate stress/proxy-is-extensible.js.dfg-eager stress/async-await-syntax.js.dfg-eager-no-cjit-validate stress/arguments-non-configurable.js.ftl-eager-no-cjit stress/string-from-code-point.js.dfg-eager stress/import-reject-with-exception.js.no-cjit-collect-continuously stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-2.js.no-cjit-collect-continuously stress/exception-in-to-property-key-should-be-handled-early-in-object-methods.js.ftl-eager-no-cjit stress/dataview-typedarray-toindex.js.dfg-eager-no-cjit-validate stress/trailing-comma-in-function-parameters.js.no-cjit-collect-continuously stress/typedarray-bad-getter.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.no-cjit-collect-continuously stress/typedarray-fill.js.dfg-eager-no-cjit-validate stress/super-in-lexical-scope.js.dfg-eager-no-cjit-validate stress/bug-171786.js.ftl-eager stress/const-semantics.js.no-cjit-collect-continuously stress/proxy-get-own-property.js.ftl-eager-no-cjit stress/regress-159954.js.ftl-eager-no-cjit stress/global-lexical-redeclare-variable.js.dfg-eager stress/new-target.js.ftl-eager stress/typedarray-bad-getter.js.dfg-eager-no-cjit-validate stress/ftl-library-inlining-exceptions-dataview.js.dfg-eager wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-slow-memory stress/typedarray-configure-index.js.dfg-eager-no-cjit-validate stress/typedarray-access-monomorphic-neutered.js.ftl-eager-no-cjit-b3o1 stress/typedarray-map.js.ftl-eager stress/rest-elements.js.no-cjit-collect-continuously stress/symbol-toprimitive-errors.js.ftl-eager stress/proxy-set-prototype-of.js.ftl-eager-no-cjit stress/class-syntax-double-constructor.js.dfg-eager-no-cjit-validate stress/error-stack-trace-limit.js.no-cjit-validate-phases stress/async-arrow-functions-lexical-super-binding.js.no-cjit-collect-continuously stress/weak-set-constructor.js.dfg-eager-no-cjit-validate stress/import-syntax.js.ftl-eager stress/weak-set-constructor.js.dfg-eager stress/destructuring-assignment-syntax.js.dfg-eager-no-cjit-validate stress/trailing-comma-in-patterns.js.ftl-eager-no-cjit stress/typedarray-reduce.js.ftl-eager-no-cjit stress/reflect-set-proxy-set.js.ftl-eager-no-cjit stress/global-lexical-var-injection.js.no-cjit-collect-continuously stress/typedarray-access-neutered.js.ftl-no-cjit-no-inline-validate stress/dataview-construct.js.no-cjit-collect-continuously ChakraCore.yaml/ChakraCore/test/LetConst/h.js.default stress/to-property-key-correctness.js.dfg-eager-no-cjit-validate stress/typedarray-fill.js.dfg-eager stress/string-prototype-scopes-strict.js.no-cjit-collect-continuously stress/typedarray-findIndex.js.dfg-eager jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-no-cjit stress/put-direct-index-broken-2.js.ftl-no-cjit-no-put-stack-validate stress/error-stack-trace-limit.js.ftl-eager-no-cjit-b3o1 stress/reserved-word-with-escape.js.no-cjit-collect-continuously stress/async-await-basic.js.dfg-eager stress/const-semantics.js.dfg-eager stress/error-stack-trace-limit.js.default stress/async-await-basic.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.ftl-eager-no-cjit jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout stress/dfg-object-proto-getter.js.dfg-eager-no-cjit-validate stress/tdz-this-in-try-catch.js.ftl-eager stress/get-prototype-create-this-effectful.js.no-cjit-collect-continuously stress/yield-out-of-generator.js.ftl-eager stress/proxy-is-array.js.ftl-no-cjit-small-pool stress/proxy-construct.js.ftl-eager stress/pow-expects-update-expression-on-lhs.js.dfg-eager stress/typedarray-map.js.ftl-eager-no-cjit stress/weak-set-constructor.js.no-cjit-collect-continuously stress/array-reverse-proxy.js.dfg-eager stress/async-arrow-functions-lexical-binding-in-class.js.ftl-eager stress/completion-value.js.dfg-eager stress/proxy-is-array.js.default stress/string-iterators.js.dfg-eager stress/typedarray-functions-with-neutered.js.ftl-eager microbenchmarks/string-transcoding.js.ftl-eager-no-cjit stress/class-syntax-tdz-in-eval.js.ftl-eager stress/proxy-call.js.dfg-eager-no-cjit-validate stress/typedarray-functions-with-neutered.js.dfg-eager-no-cjit-validate stress/async-arrow-functions-lexical-arguments-binding.js.dfg-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-b3o1 stress/ftl-library-inlining-exceptions.js.no-cjit-collect-continuously stress/trailing-comma-in-function-parameters.js.ftl-eager-no-cjit stress/proxy-revoke.js.no-cjit-collect-continuously stress/typedarray-access-neutered.js.ftl-eager stress/regexp-prototype-tostring.js.dfg-eager-no-cjit-validate stress/dataview-typedarray-toindex.js.ftl-eager stress/array-reverse-proxy.js.ftl-eager stress/generator-type-check.js.ftl-eager stress/proxy-json.js.dfg-eager stress/array-from-with-iterator.js.ftl-eager stress/array-species-functions.js.ftl-eager stress/typedarray-forEach.js.dfg-eager-no-cjit-validate stress/lexical-let-tdz.js.dfg-eager-no-cjit-validate stress/dont-strength-reduce-valuerep-of-doublerep.js.dfg-eager wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.default-wasm stress/new-target-syntax-errors.js.dfg-eager stress/typedarray-forEach.js.ftl-eager stress/promise-infinite-recursion-should-not-crash.js.dfg-eager stress/to-object-intrinsic.js.no-cjit-collect-continuously stress/typedarray-slice.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-1.js.dfg-eager stress/typedarray-indexOf.js.no-cjit-collect-continuously stress/put-direct-index-broken-2.js.dfg-maximal-flush-validate-no-cjit stress/regress-178386.js.ftl-eager-no-cjit wasm.yaml/wasm/spec-tests/memory.wast.js.wasm-no-cjit-yes-tls-context stress/typedarray-access-neutered.js.default stress/async-iteration-for-await-of-syntax.js.no-cjit-collect-continuously stress/typedarray-reduce.js.ftl-eager stress/proxy-is-extensible.js.no-cjit-collect-continuously stress/typedarray-functions-with-neutered.js.no-cjit-collect-continuously stress/dfg-object-prototype-of.js.dfg-eager stress/typedarray-access-monomorphic-neutered.js.default stress/typedarray-access-neutered.js.ftl-no-cjit-small-pool stress/dataview-construct.js.ftl-eager-no-cjit stress/eval-func-decl-in-global-of-eval.js.dfg-eager-no-cjit-validate stress/string-iterators.js.ftl-eager stress/global-lexical-redefine-const.js.ftl-eager stress/variable-under-tdz-eval-tricky.js.ftl-eager stress/put-direct-index-broken-2.js.default stress/async-iteration-syntax.js.ftl-eager-no-cjit stress/typedarray-functions-with-neutered.js.dfg-eager stress/async-await-reserved-word.js.ftl-eager-no-cjit stress/array-from-with-iterator.js.no-cjit-collect-continuously stress/proxy-construct.js.dfg-eager-no-cjit-validate stress/native-error-properties.js.ftl-eager-no-cjit stress/domjit-getter-type-check.js.ftl-eager stress/error-stack-trace-limit.js.dfg-eager wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-cjit-yes-tls-context stress/regexp-prototype-tostring.js.dfg-eager stress/typedarray-every.js.dfg-eager stress/cloned-arguments-modification.js.no-cjit-collect-continuously stress/class-derived-from-null.js.dfg-eager-no-cjit-validate stress/proxy-set-prototype-of.js.no-cjit-collect-continuously stress/dfg-reflect-get-prototype-of.js.dfg-eager-no-cjit-validate stress/catch-variables-under-tdz.js.ftl-eager-no-cjit stress/typedarray-bad-getter.js.ftl-eager-no-cjit stress/spec-empty-flows-through-cell-checks.js.dfg-eager stress/proxy-revoke.js.dfg-eager stress/promise-cannot-be-called.js.ftl-eager stress/typedarray-find.js.ftl-eager stress/array-reverse-proxy.js.ftl-eager-no-cjit stress/reflect-construct.js.dfg-eager stress/generator-type-check.js.ftl-eager-no-cjit stress/tagged-template-tdz.js.dfg-eager-no-cjit-validate stress/dont-unwind-past-vm-entry-frame.js.no-cjit-collect-continuously stress/arrowfunction-tdz-1.js.ftl-eager stress/yield-out-of-generator.js.no-cjit-collect-continuously stress/typedarray-filter.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-super-binding.js.ftl-eager-no-cjit stress/regress-185896.js.dfg-eager stress/class-syntax-definition-semantics.js.no-cjit-collect-continuously stress/put-direct-index-broken-2.js.no-ftl stress/cloned-arguments-modification.js.ftl-eager-no-cjit stress/typedarray-some.js.ftl-eager-no-cjit stress/typedarray-forEach.js.dfg-eager stress/global-lexical-var-injection.js.ftl-eager stress/typedarray-some.js.no-cjit-collect-continuously stress/reflect-set-receiver-proxy-set.js.ftl-eager stress/destructuring-assignment-require-object-coercible.js.dfg-eager stress/import-syntax.js.no-cjit-collect-continuously stress/spread-calling.js.ftl-eager-no-cjit stress/typedarray-find.js.dfg-eager stress/typedarray-access-neutered.js.no-cjit-collect-continuously stress/regress-166812.js.dfg-eager-no-cjit-validate stress/domjit-getter-type-check.js.no-cjit-collect-continuously stress/to-property-key-correctness.js.no-cjit-collect-continuously stress/const-not-strict-mode.js.no-cjit-collect-continuously stress/generational-opaque-roots.js.ftl-eager-no-cjit stress/class-syntax-tdz-in-eval.js.dfg-eager stress/reflect-set-prototype-of.js.dfg-eager stress/async-await-syntax.js.ftl-eager stress/error-stack-trace-limit.js.ftl-no-cjit-validate-sampling-profiler stress/dfg-reflect-get-prototype-of.js.ftl-eager-no-cjit wasm.yaml/wasm/spec-tests/memory.wast.js.wasm-eager-jettison stress/arguments-define-property.js.no-cjit-collect-continuously stress/tdz-this-in-try-catch.js.no-cjit-collect-continuously stress/async-iteration-basic.js.ftl-eager-no-cjit stress/promise-finally.js.no-cjit-collect-continuously stress/typedarray-access-neutered.js.no-ftl stress/proxy-own-keys.js.no-cjit-collect-continuously stress/template-literal-syntax.js.no-cjit-collect-continuously stress/global-lexical-var-injection.js.dfg-eager wasm.yaml/wasm/spec-tests/exports.wast.js.default-wasm stress/completion-value.js.no-cjit-collect-continuously stress/throw-from-ftl-call-ic-slow-path.js.no-cjit-collect-continuously stress/sampling-profiler-microtasks.js.ftl-eager-no-cjit stress/put-direct-index-broken-2.js.no-cjit-validate-phases stress/string-symbol-customization.js.ftl-eager stress/async-arrow-functions-lexical-binding-in-class.js.ftl-eager-no-cjit stress/proxy-get-own-property.js.dfg-eager stress/async-await-reserved-word.js.dfg-eager stress/regress-158411.js.dfg-eager stress/regress-185896.js.ftl-eager stress/async-iteration-for-await-of-syntax.js.ftl-eager stress/string-iterators.js.dfg-eager-no-cjit-validate stress/bug-171786.js.ftl-eager-no-cjit stress/generator-type-check.js.dfg-eager-no-cjit-validate stress/generational-opaque-roots.js.dfg-eager-no-cjit-validate stress/async-iteration-for-await-of.js.ftl-eager-no-cjit stress/error-stack-trace-limit.js.ftl-no-cjit-b3o1 stress/proxy-get-prototype-of.js.no-cjit-collect-continuously stress/arrowfunction-tdz-1.js.no-cjit-collect-continuously stress/string-iterators.js.ftl-eager-no-cjit stress/typedarray-functions-with-neutered.js.ftl-no-cjit-no-put-stack-validate stress/import-with-empty-string.js.ftl-eager-no-cjit wasm.yaml/wasm/js-api/extension-MemoryMode.js.default-wasm stress/async-await-mozilla.js.ftl-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-no-inline-validate stress/proxy-own-keys.js.dfg-eager-no-cjit-validate stress/to-object-intrinsic.js.dfg-eager stress/typedarray-every.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.dfg-eager stress/string-prototype-scopes.js.ftl-eager-no-cjit stress/class-syntax-definition-semantics.js.dfg-eager stress/async-iteration-for-await-of.js.dfg-eager stress/promise-finally.js.dfg-eager-no-cjit-validate stress/proxy-define-own-property.js.no-cjit-collect-continuously stress/pow-expects-update-expression-on-lhs.js.no-cjit-collect-continuously stress/eval-func-decl-in-global-of-eval.js.no-cjit-collect-continuously stress/promise-cannot-be-called.js.ftl-eager-no-cjit microbenchmarks/string-transcoding.js.ftl-eager stress/arrowfunction-tdz-2.js.ftl-eager-no-cjit stress/template-literal-syntax.js.ftl-eager stress/get-by-id-direct.js.dfg-eager-no-cjit-validate stress/string-repeat-edge-cases.js.dfg-eager-no-cjit-validate stress/async-await-mozilla.js.ftl-eager-no-cjit stress/code-cache-incorrect-caching.js.no-cjit-collect-continuously stress/arguments-non-configurable.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/js-api/test_memory.js.default-wasm stress/proxy-stack-overflow-exceptions.js.dfg-eager-no-cjit-validate stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.ftl-eager-no-cjit stress/promise-finally.js.ftl-eager wasm.yaml/wasm/js-api/test_memory_constructor.js.wasm-no-tls-context stress/async-iteration-yield-star.js.ftl-eager-no-cjit wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-cjit-yes-tls-context stress/typedarray-findIndex.js.dfg-eager-no-cjit-validate stress/ftl-library-inlining-exceptions.js.dfg-eager stress/proxy-is-extensible.js.ftl-eager-no-cjit stress/proxy-is-extensible.js.ftl-eager stress/proxy-with-private-symbols.js.dfg-eager stress/dfg-object-proto-getter.js.ftl-eager stress/reserved-word-with-escape.js.ftl-eager-no-cjit stress/proxy-define-own-property.js.dfg-eager stress/typedarray-copyWithin.js.dfg-eager-no-cjit-validate stress/proxy-is-array.js.dfg-eager stress/spread-calling.js.ftl-eager stress/global-lexical-variable-tdz.js.ftl-eager-no-cjit stress/typedarray-of.js.no-cjit-collect-continuously stress/async-iteration-for-await-of.js.no-cjit-collect-continuously stress/regress-153486.js.ftl-eager stress/to-property-key-correctness.js.ftl-eager-no-cjit stress/yield-out-of-generator.js.dfg-eager stress/error-stack-trace-limit.js.dfg-eager-no-cjit-validate stress/proxy-is-extensible.js.dfg-eager-no-cjit-validate stress/error-messages-for-in-operator-should-not-crash.js.no-cjit-collect-continuously stress/array-flatmap.js.ftl-eager stress/typedarray-every.js.ftl-eager stress/async-arrow-functions-lexical-binding-in-class.js.dfg-eager-no-cjit-validate stress/typedarray-reduceRight.js.dfg-eager-no-cjit-validate stress/get-by-id-direct.js.ftl-eager-no-cjit wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-tls-context stress/symbol-toprimitive-errors.js.dfg-eager stress/typedarray-filter.js.dfg-eager stress/regress-179355.js.ftl-eager-no-cjit stress/async-iteration-async-from-sync.js.no-cjit-collect-continuously stress/reserved-word-with-escape.js.dfg-eager stress/get-prototype-create-this-effectful.js.ftl-eager stress/error-stack-trace-limit.js.ftl-eager stress/typedarray-some.js.ftl-eager stress/import-basic.js.dfg-eager-no-cjit-validate stress/async-iteration-yield-star-interface.js.dfg-eager-no-cjit-validate stress/json-stringify-with-non-jsarray-array.js.no-cjit-collect-continuously stress/computed-accessor-parsing.js.dfg-eager-no-cjit-validate stress/reflect-construct.js.ftl-eager stress/proxy-is-array.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.dfg-eager-no-cjit-validate stress/array-flatmap.js.dfg-eager-no-cjit-validate stress/map-constructor-adder.js.dfg-eager-no-cjit-validate stress/async-iteration-async-from-sync.js.ftl-eager-no-cjit stress/cloned-arguments-modification.js.ftl-eager wasm.yaml/wasm/spec-tests/start.wast.js.wasm-no-call-ic stress/error-stack-trace-limit.js.no-llint stress/arrow-function-token-is-not-keyword.js.ftl-eager stress/reflect-set-prototype-of.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.ftl-no-cjit-small-pool stress/regexp-prototype-tostring.js.ftl-eager stress/dont-strength-reduce-valuerep-of-doublerep.js.ftl-eager stress/async-iteration-yield-promise.js.dfg-eager stress/typedarray-access-neutered.js.dfg-eager-no-cjit-validate stress/array-copywithin.js.dfg-eager-no-cjit-validate stress/map-constructor.js.ftl-eager-no-cjit stress/computed-accessor-parsing.js.ftl-eager-no-cjit stress/map-constructor.js.no-cjit-collect-continuously stress/typedarray-access-monomorphic-neutered.js.ftl-no-cjit-validate-sampling-profiler stress/typedarray-configure-index.js.ftl-eager-no-cjit stress/default-value-parsing-should-propagate-error.js.ftl-eager stress/typedarray-access-neutered.js.no-llint stress/destructuring-assignment-require-object-coercible.js.no-cjit-collect-continuously stress/async-arrow-functions-lexical-super-binding.js.dfg-eager-no-cjit-validate stress/typedarray-functions-with-neutered.js.no-ftl stress/rest-elements.js.ftl-eager-no-cjit stress/reflect-set-receiver-proxy-set.js.ftl-eager-no-cjit stress/sampling-profiler-microtasks.js.ftl-eager stress/typedarray-forEach.js.ftl-eager-no-cjit stress/reflect-set-proxy-set.js.dfg-eager stress/typedarray-bad-getter.js.dfg-eager stress/const-loop-semantics.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-1.js.dfg-eager-no-cjit-validate stress/trailing-comma-in-function-parameters.js.dfg-eager stress/generational-opaque-roots.js.no-cjit-validate-phases stress/custom-iterators.js.no-cjit-collect-continuously microbenchmarks/string-transcoding.js.dfg-eager-no-cjit-validate stress/typedarray-subarray.js.ftl-eager stress/import-reject-with-exception.js.dfg-eager stress/string-raw.js.ftl-eager stress/ftl-library-inlining-exceptions.js.ftl-eager-no-cjit stress/typedarray-access-monomorphic-neutered.js.no-cjit-collect-continuously stress/variable-under-tdz-eval-tricky.js.no-cjit-collect-continuously stress/reflect-prevent-extensions.js.dfg-eager-no-cjit-validate stress/cloned-arguments-modification.js.dfg-eager-no-cjit-validate stress/proxy-json.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.ftl-eager-no-cjit wasm.yaml/wasm/spec-tests/exports.wast.js.wasm-no-tls-context stress/lexical-let-tdz.js.ftl-eager stress/async-arrow-functions-lexical-super-binding.js.dfg-eager stress/regexp-with-runtime-syntax-errors.js.ftl-eager-no-cjit stress/reflect-set.js.dfg-eager stress/tail-call-recognize.js.dfg-eager-no-cjit-validate stress/es6-default-parameters.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.ftl-no-cjit-small-pool stress/typedarray-sort.js.dfg-eager-no-cjit-validate stress/tail-call-recognize.js.dfg-eager stress/tail-call-recognize.js.no-cjit-collect-continuously stress/dataview-typedarray-toindex.js.no-cjit-collect-continuously stress/lexical-let-loop-semantics.js.no-cjit-collect-continuously stress/string-raw.js.no-cjit-collect-continuously stress/proxy-is-array.js.ftl-no-cjit-validate-sampling-profiler stress/weak-set-constructor.js.ftl-eager wasm.yaml/wasm/js-api/test_memory_constructor.js.wasm-no-cjit-yes-tls-context stress/put-direct-index-broken-2.js.dfg-eager-no-cjit-validate stress/generator-type-check.js.no-cjit-collect-continuously stress/regress-158411.js.dfg-eager-no-cjit-validate stress/new-target.js.ftl-eager-no-cjit stress/typedarray-configure-index.js.dfg-eager stress/string-raw.js.dfg-eager stress/get-prototype-create-this-effectful.js.ftl-eager-no-cjit stress/promise-infinite-recursion-should-not-crash.js.no-cjit-collect-continuously stress/yield-reserved-word.js.dfg-eager-no-cjit-validate stress/async-await-reserved-word.js.no-cjit-collect-continuously stress/async-generator-assertion.js.ftl-eager stress/to-object-intrinsic-null-or-undefined-edge.js.dfg-eager stress/async-arrow-functions-lexical-arguments-binding.js.ftl-eager-no-cjit stress/typedarray-filter.js.no-cjit-collect-continuously stress/proxy-and-json-stringify.js.ftl-eager-no-cjit stress/typedarray-indexOf.js.ftl-eager-no-cjit wasm.yaml/wasm/js-api/test_memory_constructor.js.wasm-no-call-ic stress/promise-finally.js.ftl-eager-no-cjit stress/typedarray-subarray.js.ftl-eager-no-cjit stress/typedarray-filter.js.ftl-eager stress/regress-151324.js.dfg-eager-no-cjit-validate stress/error-stack-trace-limit.js.no-ftl stress/to-object-intrinsic.js.dfg-eager-no-cjit-validate stress/async-await-mozilla.js.dfg-eager-no-cjit-validate stress/dont-unwind-past-vm-entry-frame.js.ftl-eager stress/const-loop-semantics.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.ftl-no-cjit-no-put-stack-validate stress/error-stack-trace-limit.js.ftl-no-cjit-no-inline-validate stress/string-from-code-point.js.ftl-eager stress/async-iteration-yield-star-interface.js.dfg-eager stress/global-lexical-redeclare-variable.js.ftl-eager-no-cjit stress/typedarray-fill.js.ftl-eager-no-cjit stress/template-literal-syntax.js.dfg-eager stress/typedarray-map.js.dfg-eager-no-cjit-validate stress/array-copywithin.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.no-llint stress/typedarray-access-monomorphic-neutered.js.no-cjit-validate-phases stress/typedarray-reduce.js.dfg-eager-no-cjit-validate stress/reflect-set-proxy-set.js.ftl-eager stress/proxy-construct.js.ftl-eager-no-cjit stress/to-object-intrinsic.js.ftl-eager stress/put-direct-index-broken-2.js.ftl-no-cjit-validate-sampling-profiler stress/proxy-define-own-property.js.ftl-eager-no-cjit stress/catch-variables-under-tdz.js.dfg-eager-no-cjit-validate stress/array-prototype-splice-making-typed-array.js.dfg-eager stress/proxy-get-prototype-of.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-maximal-flush-validate-no-cjit wasm.yaml/wasm/spec-tests/exports.wast.js.wasm-no-cjit-yes-tls-context stress/proxy-is-array.js.no-cjit-validate-phases wasm.yaml/wasm/spec-tests/memory.wast.js.default-wasm stress/typedarray-functions-with-neutered.js.default stress/tdz-this-in-try-catch.js.dfg-eager stress/proxy-json.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/js-api/extension-MemoryMode.js.wasm-slow-memory stress/async-iteration-async-from-sync.js.ftl-eager stress/import-basic.js.dfg-eager stress/object-seal-with-proxy-preventExtensions.js.dfg-eager-no-cjit-validate stress/promise-finally.js.dfg-eager stress/native-error-properties.js.ftl-eager stress/typedarray-every.js.ftl-eager-no-cjit stress/typedarray-subarray.js.dfg-eager-no-cjit-validate stress/typedarray-functions-with-neutered.js.ftl-no-cjit-validate-sampling-profiler stress/proxy-basic.js.ftl-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.ftl-eager stress/number-prototype-to-string-wrong-values.js.ftl-eager-no-cjit stress/const-not-strict-mode.js.ftl-eager-no-cjit stress/arrowfunction-tdz-1.js.ftl-eager-no-cjit stress/async-iteration-yield-star.js.dfg-eager-no-cjit-validate stress/number-to-string-with-radix-invalid.js.no-cjit-collect-continuously stress/typedarray-configure-index.js.ftl-eager stress/number-to-string-with-radix-invalid.js.dfg-eager-no-cjit-validate stress/typedarray-functions-with-neutered.js.ftl-eager-no-cjit-b3o1 stress/const-loop-semantics.js.no-cjit-collect-continuously stress/reflect-define-property.js.dfg-eager wasm.yaml/wasm/spec-tests/jsapi.js.wasm-eager-jettison stress/regress-173053.js.dfg-eager stress/typedarray-copyWithin.js.no-cjit-collect-continuously stress/typedarray-slice.js.no-cjit-collect-continuously microbenchmarks/try-catch-word-count.js.dfg-eager-no-cjit-validate stress/proxy-with-private-symbols.js.ftl-eager-no-cjit stress/typedarray-set.js.ftl-eager stress/proxy-get-prototype-of.js.ftl-eager-no-cjit stress/string-prototype-scopes-strict.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/js-api/dont-mmap-zero-byte-memory.js.wasm-slow-memory stress/arrowfunction-lexical-bind-supercall-3.js.ftl-eager stress/map-constructor.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.dfg-eager-no-cjit-validate stress/class-syntax-definition-semantics.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/exports.wast.js.wasm-eager-jettison stress/global-lexical-var-injection.js.dfg-eager-no-cjit-validate stress/exception-in-to-property-key-should-be-handled-early-in-object-methods.js.dfg-eager-no-cjit-validate stress/proxy-construct.js.no-cjit-collect-continuously stress/eval-func-decl-in-global-of-eval.js.ftl-eager stress/array-iterators-next-with-call.js.dfg-eager stress/spread-calling.js.no-cjit-collect-continuously stress/typedarray-lastIndexOf.js.dfg-eager-no-cjit-validate stress/variable-under-tdz-eval-tricky.js.dfg-eager stress/regress-153486.js.dfg-eager-no-cjit-validate stress/new-target-syntax-errors.js.ftl-eager stress/optional-catch-binding-syntax.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/exports.wast.js.wasm-no-call-ic stress/const-loop-semantics.js.dfg-eager stress/error-stack-trace-limit.js.no-cjit-collect-continuously wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-call-ic stress/eval-and-super.js.dfg-eager-no-cjit-validate stress/put-direct-index-broken-2.js.ftl-no-cjit-small-pool stress/reserved-word-with-escape.js.dfg-eager-no-cjit-validate stress/import-syntax.js.dfg-eager stress/typedarray-subarray.js.dfg-eager stress/regexp-prototype-tostring.js.no-cjit-collect-continuously stress/lexical-let-loop-semantics.js.ftl-eager stress/set-constructor.js.no-cjit-collect-continuously stress/reflect-set-proxy-set.js.no-cjit-collect-continuously stress/async-await-basic.js.ftl-eager stress/import-with-empty-string.js.no-cjit-collect-continuously stress/global-lexical-variable-tdz.js.no-cjit-collect-continuously stress/ftl-library-inlining-exceptions.js.ftl-eager stress/cloned-arguments-modification.js.dfg-eager stress/proxy-with-private-symbols.js.no-cjit-collect-continuously stress/typedarray-reduceRight.js.dfg-eager stress/typedarray-find.js.ftl-eager-no-cjit stress/typedarray-slice.js.ftl-eager-no-cjit stress/has-instance-exception-check.js.ftl-eager stress/yield-named-variable-generator.js.no-cjit-collect-continuously stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-collect-continuously stress/proxy-all-the-parameters.js.ftl-eager-no-cjit stress/sampling-profiler-microtasks.js.no-cjit-collect-continuously stress/regress-158411.js.ftl-eager-no-cjit stress/promise-infinite-recursion-should-not-crash.js.ftl-eager-no-cjit stress/for-in-tests.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-3.js.dfg-eager stress/super-property-access-tdz.js.dfg-eager stress/re-execute-error-module.js.no-cjit-collect-continuously stress/async-arrow-function-in-class-heritage.js.no-cjit-collect-continuously stress/bug-171786.js.no-cjit-collect-continuously stress/error-messages-for-in-operator-should-not-crash.js.ftl-eager-no-cjit stress/regexp-match.js.ftl-eager-no-cjit stress/typedarray-access-monomorphic-neutered.js.no-ftl stress/proxy-all-the-parameters.js.no-cjit-collect-continuously stress/class-derived-from-null.js.ftl-eager-no-cjit stress/proxy-basic.js.dfg-eager stress/re-execute-error-module.js.ftl-eager-no-cjit stress/typedarray-find.js.no-cjit-collect-continuously stress/weak-map-constructor.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-2.js.dfg-eager-no-cjit-validate stress/typedarray-set.js.no-cjit-collect-continuously stress/regexp-match.js.dfg-eager stress/regress-179355.js.dfg-eager stress/typedarray-constructor.js.ftl-eager stress/error-stack-trace-limit.js.ftl-eager-no-cjit stress/async-iteration-basic.js.ftl-eager stress/eval-func-decl-in-global-of-eval.js.ftl-eager-no-cjit stress/symbol-registry.js.dfg-eager stress/symbol-toprimitive-errors.js.ftl-eager-no-cjit stress/new-target.js.dfg-eager-no-cjit-validate stress/string-symbol-customization.js.ftl-eager-no-cjit stress/typedarray-reduceRight.js.ftl-eager-no-cjit microbenchmarks/try-catch-word-count.js.dfg-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-llint stress/json-stringified-overflow.js.ftl-eager-no-cjit stress/async-iteration-yield-promise.js.ftl-eager stress/class-syntax-tdz-in-eval.js.dfg-eager-no-cjit-validate stress/trailing-comma-in-function-parameters.js.ftl-eager stress/typedarray-functions-with-neutered.js.no-cjit-validate-phases stress/regexp-prototype-tostring.js.ftl-eager-no-cjit stress/domjit-getter-type-check.js.dfg-eager stress/import-reject-with-exception.js.ftl-eager stress/typedarray-constructor.js.dfg-eager-no-cjit-validate stress/proxy-set-prototype-of.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/start.wast.js.default-wasm stress/arguments-non-configurable.js.ftl-eager stress/reflect-get-own-property.js.no-cjit-collect-continuously wasm.yaml/wasm/js-api/test_memory.js.wasm-eager-jettison jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-no-ftl stress/array-reverse-proxy.js.no-cjit-collect-continuously stress/proxy-prevent-extensions.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-eager-jettison stress/get-by-id-direct-getter.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-eager-no-cjit stress/has-instance-exception-check.js.no-cjit-collect-continuously stress/async-iteration-async-from-sync.js.dfg-eager stress/tagged-templates-syntax.js.ftl-eager stress/typedarray-functions-with-neutered.js.no-llint stress/reflect-get.js.dfg-eager stress/class-subclassing-misc.js.ftl-eager-no-cjit stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-validate-sampling-profiler wasm.yaml/wasm/js-api/extension-MemoryMode.js.wasm-no-tls-context stress/typedarray-copyWithin.js.ftl-eager-no-cjit stress/global-lexical-redefine-const.js.no-cjit-collect-continuously wasm.yaml/wasm/js-api/test_memory.js.wasm-no-cjit-yes-tls-context stress/yield-label.js.no-cjit-collect-continuously stress/number-to-string-with-radix-invalid.js.dfg-eager stress/tagged-template-tdz.js.ftl-eager-no-cjit stress/generational-opaque-roots.js.ftl-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.ftl-eager-no-cjit
EWS Watchlist
Comment 14
2018-05-29 12:24:30 PDT
Comment on
attachment 341498
[details]
Patch
Attachment 341498
[details]
did not pass mac-debug-ews (mac): Output:
http://webkit-queues.webkit.org/results/7846681
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 15
2018-05-29 12:24:32 PDT
Created
attachment 341505
[details]
Archive of layout-test-results from ews115 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews115 Port: mac-sierra Platform: Mac OS X 10.12.6
Keith Miller
Comment 16
2018-05-29 12:38:26 PDT
Created
attachment 341506
[details]
Patch
EWS Watchlist
Comment 17
2018-05-29 13:39:50 PDT
Comment on
attachment 341506
[details]
Patch
Attachment 341506
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.webkit.org/results/7849196
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 18
2018-05-29 13:39:52 PDT
Created
attachment 341511
[details]
Archive of layout-test-results from ews100 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews100 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 19
2018-05-29 14:00:14 PDT
Comment on
attachment 341506
[details]
Patch
Attachment 341506
[details]
did not pass jsc-ews (mac): Output:
http://webkit-queues.webkit.org/results/7849423
New failing tests: stress/proxy-set-prototype-of.js.ftl-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-cjit-validate-phases stress/dfg-reflect-get-prototype-of.js.ftl-eager stress/eval-and-super.js.ftl-eager stress/number-to-string-with-radix-invalid.js.ftl-eager wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-eager-jettison stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.dfg-eager-no-cjit-validate stress/regress-178385.js.dfg-eager-no-cjit-validate stress/dfg-object-prototype-of.js.dfg-eager-no-cjit-validate stress/class-expression-generates-environment.js.ftl-eager-no-cjit stress/yield-reserved-word.js.ftl-eager-no-cjit stress/typedarray-access-monomorphic-neutered.js.dfg-eager microbenchmarks/try-catch-word-count.js.ftl-no-cjit-small-pool stress/eval-func-decl-in-global-of-eval.js.dfg-eager stress/lexical-let-tdz.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.ftl-no-cjit-validate-sampling-profiler stress/dfg-object-proto-getter.js.no-cjit-collect-continuously stress/template-literal-syntax.js.dfg-eager-no-cjit-validate stress/dfg-object-prototype-of.js.ftl-eager stress/typedarray-set.js.ftl-eager-no-cjit stress/destructuring-assignment-syntax.js.ftl-eager stress/array-species-config-array-constructor.js.dfg-eager-no-cjit-validate stress/super-property-access-tdz.js.ftl-eager stress/to-property-key-correctness.js.ftl-eager stress/create-subclass-structure-may-throw-exception-when-getting-prototype.js.ftl-eager stress/error-stack-trace-limit.js.dfg-maximal-flush-validate-no-cjit stress/catch-variables-under-tdz.js.dfg-eager-no-cjit-validate stress/reflect-construct.js.no-cjit-collect-continuously stress/import-basic.js.no-cjit-collect-continuously stress/const-semantics.js.dfg-eager-no-cjit-validate stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.no-cjit-collect-continuously stress/async-arrow-functions-lexical-binding-in-class.js.dfg-eager stress/class-syntax-double-constructor.js.dfg-eager stress/typedarray-every.js.no-cjit-collect-continuously stress/async-iteration-yield-star.js.dfg-eager stress/proxy-json.js.no-cjit-collect-continuously stress/typedarray-find.js.ftl-eager stress/async-await-mozilla.js.dfg-eager stress/import-basic.js.ftl-eager stress/typedarray-set.js.dfg-eager wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-tls-context stress/async-iteration-yield-star.js.ftl-eager stress/re-execute-error-module.js.dfg-eager stress/reflect-set-proxy-set.js.dfg-eager-no-cjit-validate stress/spec-empty-flows-through-cell-checks.js.dfg-eager-no-cjit-validate stress/domjit-getter-type-check.js.ftl-eager-no-cjit stress/import-with-empty-string.js.ftl-eager stress/array-reverse-proxy.js.dfg-eager-no-cjit-validate stress/async-iteration-yield-star-interface.js.ftl-eager-no-cjit stress/global-lexical-variable-tdz.js.dfg-eager stress/async-iteration-yield-star-interface.js.no-cjit-collect-continuously stress/destructuring-assignment-syntax.js.ftl-eager-no-cjit stress/es6-default-parameters.js.dfg-eager stress/super-property-access-tdz.js.dfg-eager stress/tail-call-recognize.js.ftl-eager-no-cjit stress/async-iteration-async-from-sync.js.ftl-eager-no-cjit stress/create-subclass-structure-might-throw.js.dfg-eager-no-cjit-validate stress/proxy-set-prototype-of.js.dfg-eager-no-cjit-validate stress/domjit-getter-type-check.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/jsapi.js.default-wasm stress/array-copywithin.js.ftl-eager stress/array-species-config-array-constructor.js.ftl-eager-no-cjit stress/tagged-template-tdz.js.ftl-eager-no-cjit stress/import-with-empty-string.js.dfg-eager stress/typedarray-reduceRight.js.no-cjit-collect-continuously stress/eval-func-decl-in-global-of-eval.js.no-cjit-collect-continuously stress/put-direct-index-broken-2.js.dfg-eager stress/error-stack-trace-limit.js.ftl-no-cjit-no-put-stack-validate stress/proxy-get-prototype-of.js.dfg-eager stress/tail-call-recognize.js.ftl-eager stress/proxy-own-keys.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit stress/typedarray-constructor.js.dfg-eager stress/dfg-reflect-get-prototype-of.js.no-cjit-collect-continuously stress/reflect-construct.js.ftl-eager-no-cjit stress/template-literal-syntax.js.ftl-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.dfg-eager stress/set-constructor.js.dfg-eager stress/reflect-apply.js.dfg-eager stress/dfg-reflect-get-prototype-of.js.dfg-eager stress/typedarray-functions-with-neutered.js.ftl-eager-no-cjit stress/async-iteration-yield-star-interface.js.ftl-eager stress/proxy-revoke.js.ftl-eager-no-cjit stress/put-direct-index-broken-2.js.ftl-eager stress/catch-variables-under-tdz.js.ftl-eager stress/dataview-typedarray-toindex.js.ftl-eager-no-cjit stress/error-stack-trace-limit.js.default stress/proxy-revoke.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-eager stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.ftl-eager stress/number-to-string-with-radix-invalid.js.ftl-eager-no-cjit stress/tagged-templates-syntax.js.ftl-eager-no-cjit stress/proxy-own-keys.js.ftl-eager stress/create-subclass-structure-might-throw.js.no-cjit-collect-continuously stress/class-derived-from-null.js.no-cjit-collect-continuously stress/destructuring-assignment-syntax.js.dfg-eager stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.ftl-eager-no-cjit stress/async-await-basic.js.ftl-eager-no-cjit stress/async-iteration-basic.js.dfg-eager-no-cjit-validate stress/set-constructor.js.dfg-eager-no-cjit-validate stress/proxy-set-prototype-of.js.dfg-eager stress/arrowfunction-tdz-2.js.dfg-eager stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.default-wasm stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-no-put-stack-validate stress/yield-reserved-word.js.ftl-eager stress/typedarray-access-neutered.js.no-cjit-collect-continuously stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-cjit-collect-continuously stress/lexical-let-loop-semantics.js.dfg-eager stress/proxy-json.js.ftl-eager stress/tagged-templates-syntax.js.dfg-eager stress/tagged-template-tdz.js.ftl-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-eager stress/typedarray-access-neutered.js.ftl-eager stress/reflect-construct.js.dfg-eager-no-cjit-validate stress/string-raw.js.dfg-eager-no-cjit-validate stress/error-stack-trace-limit.js.ftl-eager stress/reflect-get-own-property.js.dfg-eager stress/typedarray-access-monomorphic-neutered.js.ftl-eager-no-cjit stress/string-raw.js.ftl-eager-no-cjit stress/template-literal-syntax.js.ftl-eager-no-cjit stress/array-species-config-array-constructor.js.no-cjit-collect-continuously stress/proxy-define-own-property.js.ftl-eager stress/class-syntax-double-constructor.js.ftl-eager stress/re-execute-error-module.js.dfg-eager-no-cjit-validate stress/lexical-let-tdz.js.dfg-eager stress/class-derived-from-null.js.dfg-eager stress/const-tdz.js.dfg-eager stress/dfg-object-prototype-of.js.ftl-eager-no-cjit stress/async-iteration-async-from-sync.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-call-ic stress/tagged-template-tdz.js.no-cjit-collect-continuously stress/class-syntax-tdz-in-eval.js.no-cjit-collect-continuously stress/global-lexical-redefine-const.js.ftl-eager-no-cjit stress/dataview-typedarray-toindex.js.dfg-eager stress/put-direct-index-broken-2.js.dfg-eager-no-cjit-validate stress/const-not-strict-mode.js.dfg-eager stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager stress/arrowfunction-tdz-2.js.ftl-eager stress/dfg-object-proto-getter.js.dfg-eager stress/typedarray-access-monomorphic-neutered.js.dfg-eager-no-cjit-validate stress/yield-reserved-word.js.dfg-eager stress/const-not-strict-mode.js.dfg-eager-no-cjit-validate stress/dfg-object-prototype-of.js.no-cjit-collect-continuously stress/typedarray-functions-with-neutered.js.no-cjit-collect-continuously stress/import-basic.js.ftl-eager-no-cjit stress/const-semantics.js.ftl-eager jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-no-llint stress/async-await-syntax.js.ftl-eager-no-cjit stress/async-iteration-basic.js.dfg-eager stress/put-direct-index-broken-2.js.ftl-eager-no-cjit stress/const-not-strict-mode.js.ftl-eager stress/import-with-empty-string.js.dfg-eager-no-cjit-validate stress/es6-default-parameters.js.dfg-eager-no-cjit-validate stress/proxy-get-prototype-of.js.no-cjit-collect-continuously stress/async-await-basic.js.dfg-eager-no-cjit-validate stress/spec-empty-flows-through-cell-checks.js.no-cjit-collect-continuously stress/typedarray-constructor.js.ftl-eager-no-cjit stress/set-constructor.js.ftl-eager stress/to-property-key-correctness.js.ftl-eager-no-cjit stress/array-species-config-array-constructor.js.ftl-eager jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-ftl-no-cjit stress/typedarray-reduce.js.dfg-eager stress/typedarray-reduce.js.no-cjit-collect-continuously stress/import-reject-with-exception.js.dfg-eager-no-cjit-validate stress/global-lexical-redefine-const.js.dfg-eager-no-cjit-validate stress/async-arrow-functions-lexical-super-binding.js.ftl-eager stress/class-syntax-double-constructor.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.ftl-eager-no-cjit-b3o1 stress/import-reject-with-exception.js.no-cjit-collect-continuously stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-2.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.no-cjit-collect-continuously stress/class-subclassing-misc.js.ftl-eager stress/const-semantics.js.no-cjit-collect-continuously wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-slow-memory stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.no-llint stress/proxy-set-prototype-of.js.ftl-eager-no-cjit stress/template-literal-syntax.js.dfg-eager stress/error-stack-trace-limit.js.no-cjit-validate-phases stress/async-arrow-functions-lexical-super-binding.js.no-cjit-collect-continuously stress/catch-variables-under-tdz.js.dfg-eager stress/destructuring-assignment-syntax.js.dfg-eager-no-cjit-validate stress/reflect-set-proxy-set.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.dfg-eager stress/to-property-key-correctness.js.dfg-eager-no-cjit-validate stress/re-execute-error-module.js.ftl-eager jsc-layout-tests.yaml/js/script-tests/stack-overflow-regexp.js.layout-no-cjit stress/async-await-basic.js.dfg-eager stress/const-semantics.js.dfg-eager stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-collect-continuously stress/async-await-basic.js.no-cjit-collect-continuously stress/super-property-access-tdz.js.dfg-eager-no-cjit-validate stress/tdz-this-in-try-catch.js.ftl-eager stress/array-reverse-proxy.js.dfg-eager stress/async-arrow-functions-lexical-binding-in-class.js.ftl-eager stress/typedarray-functions-with-neutered.js.ftl-eager stress/typedarray-functions-with-neutered.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-b3o1 stress/proxy-revoke.js.no-cjit-collect-continuously stress/proxy-json.js.dfg-eager microbenchmarks/try-catch-word-count.js.ftl-eager-no-cjit stress/lexical-let-tdz.js.dfg-eager-no-cjit-validate stress/arrowfunction-tdz-1.js.dfg-eager stress/class-syntax-double-constructor.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-validate-sampling-profiler stress/dfg-object-prototype-of.js.dfg-eager stress/global-lexical-redefine-const.js.ftl-eager stress/typedarray-functions-with-neutered.js.dfg-eager stress/domjit-getter-type-check.js.ftl-eager stress/error-stack-trace-limit.js.dfg-eager wasm.yaml/wasm/spec-tests/jsapi.js.wasm-no-cjit-yes-tls-context stress/class-derived-from-null.js.dfg-eager-no-cjit-validate stress/spec-empty-flows-through-cell-checks.js.dfg-eager stress/proxy-revoke.js.dfg-eager stress/class-derived-from-null.js.ftl-eager-no-cjit stress/reflect-construct.js.dfg-eager stress/import-basic.js.dfg-eager-no-cjit-validate stress/tagged-template-tdz.js.dfg-eager-no-cjit-validate stress/typedarray-filter.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-super-binding.js.ftl-eager-no-cjit stress/typedarray-some.js.no-cjit-collect-continuously stress/domjit-getter-type-check.js.no-cjit-collect-continuously stress/super-property-access-tdz.js.no-cjit-collect-continuously stress/const-not-strict-mode.js.no-cjit-collect-continuously stress/class-syntax-tdz-in-eval.js.dfg-eager stress/async-await-syntax.js.ftl-eager stress/error-stack-trace-limit.js.ftl-no-cjit-validate-sampling-profiler stress/dfg-reflect-get-prototype-of.js.ftl-eager-no-cjit stress/tdz-this-in-try-catch.js.no-cjit-collect-continuously stress/async-iteration-basic.js.ftl-eager-no-cjit stress/promise-finally.js.no-cjit-collect-continuously stress/tagged-templates-syntax.js.ftl-eager stress/class-subclassing-misc.js.ftl-eager-no-cjit stress/async-arrow-functions-lexical-binding-in-class.js.ftl-eager-no-cjit stress/proxy-revoke.js.ftl-eager stress/error-stack-trace-limit.js.ftl-no-cjit-b3o1 stress/arrowfunction-tdz-1.js.no-cjit-collect-continuously stress/import-with-empty-string.js.ftl-eager-no-cjit stress/async-await-mozilla.js.ftl-eager stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-no-cjit-no-inline-validate stress/promise-finally.js.dfg-eager-no-cjit-validate stress/string-from-code-point.js.ftl-eager-no-cjit stress/array-copywithin.js.dfg-eager stress/arrowfunction-tdz-1.js.ftl-eager stress/string-repeat-edge-cases.js.dfg-eager-no-cjit-validate stress/async-await-mozilla.js.ftl-eager-no-cjit stress/typedarray-access-neutered.js.ftl-eager-no-cjit stress/es6-default-parameters.js.no-cjit-collect-continuously stress/promise-finally.js.ftl-eager wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-cjit-yes-tls-context stress/dfg-object-proto-getter.js.ftl-eager stress/error-stack-trace-limit.js.dfg-eager-no-cjit-validate stress/async-arrow-functions-lexical-binding-in-class.js.dfg-eager-no-cjit-validate stress/typedarray-reduceRight.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-tls-context stress/global-lexical-redefine-const.js.dfg-eager stress/typedarray-find.js.dfg-eager-no-cjit-validate stress/async-iteration-yield-star-interface.js.dfg-eager-no-cjit-validate stress/reflect-construct.js.ftl-eager stress/tagged-templates-syntax.js.dfg-eager-no-cjit-validate stress/proxy-get-own-property.js.ftl-eager-no-cjit stress/exception-in-to-property-key-should-be-handled-early-in-object-methods.js.no-cjit-collect-continuously stress/reflect-set-prototype-of.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.ftl-no-cjit-small-pool stress/proxy-get-prototype-of.js.ftl-eager stress/typedarray-map.js.dfg-eager stress/async-iteration-yield-promise.js.no-cjit-collect-continuously stress/class-syntax-tdz-in-eval.js.ftl-eager stress/typedarray-access-neutered.js.dfg-eager-no-cjit-validate stress/array-copywithin.js.dfg-eager-no-cjit-validate stress/array-reverse-proxy.js.ftl-eager stress/async-arrow-functions-lexical-super-binding.js.dfg-eager-no-cjit-validate stress/reflect-set-receiver-proxy-set.js.ftl-eager-no-cjit stress/async-await-syntax.js.dfg-eager stress/reflect-set.js.ftl-eager stress/arrowfunction-tdz-1.js.dfg-eager-no-cjit-validate stress/async-iteration-for-await-of.js.ftl-eager-no-cjit stress/import-reject-with-exception.js.dfg-eager stress/string-raw.js.ftl-eager stress/typedarray-access-monomorphic-neutered.js.no-cjit-collect-continuously stress/async-iteration-yield-star.js.ftl-eager-no-cjit stress/lexical-let-tdz.js.ftl-eager stress/async-arrow-functions-lexical-super-binding.js.dfg-eager stress/tail-call-recognize.js.dfg-eager-no-cjit-validate stress/es6-default-parameters.js.ftl-eager stress/tail-call-recognize.js.dfg-eager stress/tail-call-recognize.js.no-cjit-collect-continuously stress/string-raw.js.no-cjit-collect-continuously stress/import-reject-with-exception.js.ftl-eager stress/typedarray-configure-index.js.dfg-eager stress/string-raw.js.dfg-eager stress/yield-reserved-word.js.dfg-eager-no-cjit-validate stress/number-to-string-with-radix-invalid.js.no-cjit-collect-continuously stress/promise-finally.js.ftl-eager-no-cjit stress/typedarray-filter.js.ftl-eager stress/error-stack-trace-limit.js.no-ftl stress/error-stack-trace-limit.js.ftl-eager-no-cjit stress/regress-159954.js.dfg-eager-no-cjit-validate stress/error-stack-trace-limit.js.ftl-no-cjit-no-inline-validate stress/async-iteration-yield-star-interface.js.dfg-eager stress/array-copywithin.js.ftl-eager-no-cjit stress/tdz-this-in-try-catch.js.dfg-eager-no-cjit-validate stress/reflect-set-proxy-set.js.ftl-eager stress/const-tdz.js.ftl-eager-no-cjit stress/proxy-get-prototype-of.js.dfg-eager-no-cjit-validate stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.dfg-maximal-flush-validate-no-cjit stress/tdz-this-in-try-catch.js.dfg-eager stress/proxy-json.js.dfg-eager-no-cjit-validate stress/async-iteration-async-from-sync.js.ftl-eager stress/import-basic.js.dfg-eager stress/promise-finally.js.dfg-eager stress/typedarray-functions-with-neutered.js.ftl-no-cjit-validate-sampling-profiler stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.ftl-eager stress/put-direct-index-broken-2.js.no-cjit-collect-continuously stress/const-not-strict-mode.js.ftl-eager-no-cjit stress/arrowfunction-tdz-1.js.ftl-eager-no-cjit stress/async-iteration-yield-star.js.dfg-eager-no-cjit-validate stress/number-to-string-with-radix-invalid.js.dfg-eager-no-cjit-validate stress/const-loop-semantics.js.no-cjit-collect-continuously wasm.yaml/wasm/spec-tests/jsapi.js.wasm-eager-jettison stress/async-iteration-for-await-of.js.dfg-eager microbenchmarks/try-catch-word-count.js.dfg-eager-no-cjit-validate stress/class-derived-from-null.js.ftl-eager stress/proxy-get-prototype-of.js.ftl-eager-no-cjit stress/to-property-key-correctness.js.dfg-eager stress/const-loop-semantics.js.dfg-eager stress/error-stack-trace-limit.js.no-cjit-collect-continuously wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-call-ic stress/class-subclassing-misc.js.dfg-eager stress/typedarray-subarray.js.dfg-eager stress/tagged-template-tdz.js.dfg-eager stress/async-await-basic.js.ftl-eager ChakraCore.yaml/ChakraCore/test/Miscellaneous/HasOnlyWritableDataPropertiesCache.js.default stress/import-with-empty-string.js.no-cjit-collect-continuously stress/typedarray-of.js.dfg-eager stress/class-syntax-tdz-in-eval.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-3.js.dfg-eager stress/re-execute-error-module.js.no-cjit-collect-continuously stress/Object_static_methods_Object.getOwnPropertyDescriptors.js.dfg-eager stress/array-reverse-proxy.js.ftl-eager-no-cjit stress/re-execute-error-module.js.ftl-eager-no-cjit stress/typedarray-find.js.no-cjit-collect-continuously stress/arrowfunction-tdz-2.js.dfg-eager-no-cjit-validate stress/typedarray-set.js.no-cjit-collect-continuously stress/async-iteration-basic.js.ftl-eager stress/eval-func-decl-in-global-of-eval.js.ftl-eager-no-cjit stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.no-llint stress/dfg-reflect-get-prototype-of.js.dfg-eager-no-cjit-validate stress/class-syntax-tdz-in-eval.js.dfg-eager-no-cjit-validate stress/typedarray-functions-with-neutered.js.no-cjit-validate-phases stress/domjit-getter-type-check.js.dfg-eager stress/class-subclassing-misc.js.dfg-eager-no-cjit-validate stress/typedarray-constructor.js.dfg-eager-no-cjit-validate stress/array-reverse-proxy.js.no-cjit-collect-continuously microbenchmarks/try-catch-word-count.js.ftl-eager stress/proxy-set.js.ftl-eager-no-cjit stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js.ftl-eager-no-cjit stress/async-iteration-async-from-sync.js.dfg-eager stress/typedarray-functions-with-neutered.js.no-llint stress/arrowfunction-tdz-2.js.ftl-eager-no-cjit stress/number-to-string-with-radix-invalid.js.dfg-eager stress/string-prototype-methods-endsWith-startsWith-includes-correctness.js.ftl-eager-no-cjit
EWS Watchlist
Comment 20
2018-05-29 14:30:48 PDT
Comment on
attachment 341506
[details]
Patch
Attachment 341506
[details]
did not pass ios-sim-ews (ios-simulator-wk2): Output:
http://webkit-queues.webkit.org/results/7849780
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 21
2018-05-29 14:30:50 PDT
Created
attachment 341517
[details]
Archive of layout-test-results from ews121 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews121 Port: ios-simulator-wk2 Platform: Mac OS X 10.13.4
EWS Watchlist
Comment 22
2018-05-29 14:38:21 PDT
Comment on
attachment 341506
[details]
Patch
Attachment 341506
[details]
did not pass mac-debug-ews (mac): Output:
http://webkit-queues.webkit.org/results/7849772
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 23
2018-05-29 14:38:22 PDT
Created
attachment 341518
[details]
Archive of layout-test-results from ews115 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews115 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 24
2018-05-29 15:58:16 PDT
Comment on
attachment 341506
[details]
Patch
Attachment 341506
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/7851123
Number of test failures exceeded the failure limit.
EWS Watchlist
Comment 25
2018-05-29 15:58:17 PDT
Created
attachment 341532
[details]
Archive of layout-test-results from ews104 for mac-sierra-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-sierra-wk2 Platform: Mac OS X 10.12.6
Keith Miller
Comment 26
2018-05-29 18:48:13 PDT
Created
attachment 341547
[details]
Patch
EWS Watchlist
Comment 27
2018-05-29 20:04:24 PDT
Comment on
attachment 341547
[details]
Patch
Attachment 341547
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.webkit.org/results/7858553
New failing tests: inspector/debugger/tail-deleted-frames-from-vm-entry.html js/dom/line-column-numbers.html inspector/debugger/js-stacktrace.html js/dom/stack-trace.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/canvas/recording-webgl.html inspector/debugger/break-on-uncaught-exception.html inspector/debugger/continueUntilNextRunLoop.html inspector/canvas/create-context-bitmaprenderer.html inspector/dom-debugger/xhr-breakpoints.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/debugger/tail-recursion.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/call-frame-function-name.html fast/dom/DOMException/stack-trace.html inspector/model/stack-trace.html inspector/canvas/create-context-webgl.html inspector/debugger/break-on-exception.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/tail-deleted-frames-this-value.html inspector/debugger/paused-scopes.html
EWS Watchlist
Comment 28
2018-05-29 20:04:26 PDT
Created
attachment 341551
[details]
Archive of layout-test-results from ews102 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 29
2018-05-29 20:11:08 PDT
Comment on
attachment 341547
[details]
Patch
Attachment 341547
[details]
did not pass jsc-ews (mac): Output:
http://webkit-queues.webkit.org/results/7858327
New failing tests: stress/error-stack-trace-limit.js.no-llint wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-slow-memory stress/error-stack-trace-limit.js.ftl-no-cjit-small-pool stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager stress/arrowfunction-lexical-bind-supercall-2.js.no-llint stress/error-stack-trace-limit.js.no-cjit-validate-phases stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-no-put-stack-validate wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.default-wasm wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-tls-context ChakraCore.yaml/ChakraCore/test/LetConst/defer2.js.default wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-eager-jettison stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager-no-cjit-b3o1 ChakraCore.yaml/ChakraCore/test/StackTrace/ErrorPrototype.js.default stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-validate-sampling-profiler stress/ftl-try-catch-tail-call-inilned-caller.js.default jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout ChakraCore.yaml/ChakraCore/test/LetConst/defer5.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-small-pool stress/error-stack-trace-limit.js.default ChakraCore.yaml/ChakraCore/test/Error/validate_line_column.js.default stress/error-stack-trace-limit.js.ftl-eager stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-validate-phases stress/arrowfunction-lexical-bind-supercall-2.js.no-ftl jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-dfg-eager-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-no-inline-validate stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/function-tests/nameSection.js.wasm-slow-memory wasm.yaml/wasm/function-tests/stack-trace.js.default-wasm wasm.yaml/wasm/function-tests/stack-trace.js.wasm-eager-jettison ChakraCore.yaml/ChakraCore/test/es6/unicode_blue_533163_utf8.js.default wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-cjit-yes-tls-context stress/error-stack-trace-limit.js.dfg-maximal-flush-validate-no-cjit stress/error-stack-trace-limit.js.no-ftl stress/error-stack-trace-limit.js.ftl-eager-no-cjit jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-llint jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-ftl jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-no-inline-validate wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-call-ic stress/ftl-try-catch-tail-call-inilned-caller.js.no-cjit-validate-phases stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager-no-cjit-validate ChakraCore.yaml/ChakraCore/test/Object/forIn.error.js.default stress/error-stack-trace-limit.js.dfg-eager stress/arrowfunction-lexical-bind-supercall-2.js.default wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-tls-context stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-no-put-stack-validate jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-cjit ChakraCore.yaml/ChakraCore/test/Error/inlineSameFunc.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.no-cjit-collect-continuously stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-b3o1 stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager ChakraCore.yaml/ChakraCore/test/fieldopts/fieldhoist_nullfieldhoist.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-b3o1 stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit-b3o1 stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager stress/error-stack-trace-limit.js.ftl-no-cjit-validate-sampling-profiler stress/error-stack-trace-limit.js.no-cjit-collect-continuously jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-llint wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-call-ic jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-ftl wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-cjit-yes-tls-context stress/error-stack-trace-limit.js.ftl-eager-no-cjit-b3o1 stress/arrowfunction-lexical-bind-supercall-2.js.dfg-maximal-flush-validate-no-cjit ChakraCore.yaml/ChakraCore/test/Error/NativeErrors.js.default stress/error-stack-trace-limit.js.ftl-no-cjit-no-inline-validate stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-collect-continuously stress/error-stack-trace-limit.js.ftl-no-cjit-b3o1 stress/error-stack-trace-limit.js.ftl-no-cjit-no-put-stack-validate wasm.yaml/wasm/function-tests/nameSection.js.default-wasm ChakraCore.yaml/ChakraCore/test/StackTrace/FunctionName.js.default jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-ftl-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.no-ftl stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-maximal-flush-validate-no-cjit jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-ftl-eager-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-validate-sampling-profiler jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-cjit jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-dfg-eager-no-cjit wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-cjit-yes-tls-context jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-ftl-no-cjit stress/error-stack-trace-limit.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/function-tests/nameSection.js.wasm-eager-jettison stress/ftl-try-catch-tail-call-inilned-caller.js.no-llint wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-tls-context jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-eager wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-call-ic stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-small-pool wasm.yaml/wasm/function-tests/stack-trace.js.wasm-slow-memory
EWS Watchlist
Comment 30
2018-05-29 20:38:40 PDT
Comment on
attachment 341547
[details]
Patch
Attachment 341547
[details]
did not pass mac-debug-ews (mac): Output:
http://webkit-queues.webkit.org/results/7858847
New failing tests: inspector/canvas/create-context-bitmaprenderer.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/js-stacktrace.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/break-on-exception.html js/dom/stack-trace.html inspector/canvas/recording-webgl.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/debugger/call-frame-function-name.html inspector/debugger/tail-deleted-frames-from-vm-entry.html inspector/dom-debugger/xhr-breakpoints.html inspector/canvas/create-context-webgl.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html fast/dom/DOMException/stack-trace.html inspector/model/stack-trace.html inspector/debugger/break-on-uncaught-exception.html inspector/debugger/continueUntilNextRunLoop.html js/dom/line-column-numbers.html
EWS Watchlist
Comment 31
2018-05-29 20:38:42 PDT
Created
attachment 341554
[details]
Archive of layout-test-results from ews114 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews114 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 32
2018-05-29 20:42:09 PDT
Comment on
attachment 341547
[details]
Patch
Attachment 341547
[details]
did not pass ios-sim-ews (ios-simulator-wk2): Output:
http://webkit-queues.webkit.org/results/7858923
New failing tests: js/arrowfunction-supercall.html js/dom/stack-trace.html fast/dom/DOMException/stack-trace.html
EWS Watchlist
Comment 33
2018-05-29 20:42:11 PDT
Created
attachment 341555
[details]
Archive of layout-test-results from ews125 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews125 Port: ios-simulator-wk2 Platform: Mac OS X 10.13.4
EWS Watchlist
Comment 34
2018-05-30 00:01:19 PDT
Comment on
attachment 341547
[details]
Patch
Attachment 341547
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/7861070
New failing tests: inspector/debugger/tail-deleted-frames-from-vm-entry.html js/dom/line-column-numbers.html inspector/debugger/js-stacktrace.html js/dom/stack-trace.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/canvas/recording-webgl.html inspector/debugger/break-on-uncaught-exception.html inspector/debugger/continueUntilNextRunLoop.html inspector/canvas/create-context-bitmaprenderer.html inspector/dom-debugger/xhr-breakpoints.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/debugger/tail-recursion.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/call-frame-function-name.html fast/dom/DOMException/stack-trace.html inspector/model/stack-trace.html inspector/canvas/create-context-webgl.html inspector/debugger/break-on-exception.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/tail-deleted-frames-this-value.html inspector/debugger/paused-scopes.html
EWS Watchlist
Comment 35
2018-05-30 00:01:20 PDT
Created
attachment 341559
[details]
Archive of layout-test-results from ews104 for mac-sierra-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-sierra-wk2 Platform: Mac OS X 10.12.6
Andreas Kling
Comment 36
2018-05-30 06:09:16 PDT
Wow, nice catch! I've seen this kind of global object leak in the wild many times but never managed to get to a handle on why it was happening. Great job Keith :)
Keith Miller
Comment 37
2018-05-30 09:43:43 PDT
Created
attachment 341579
[details]
Patch
EWS Watchlist
Comment 38
2018-05-30 10:49:38 PDT
Comment on
attachment 341579
[details]
Patch
Attachment 341579
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.webkit.org/results/7869135
New failing tests: inspector/debugger/tail-deleted-frames-from-vm-entry.html js/dom/line-column-numbers.html inspector/debugger/js-stacktrace.html js/dom/stack-trace.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/canvas/recording-webgl.html inspector/debugger/break-on-uncaught-exception.html inspector/debugger/continueUntilNextRunLoop.html inspector/canvas/create-context-bitmaprenderer.html inspector/dom-debugger/xhr-breakpoints.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/debugger/tail-recursion.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/call-frame-function-name.html fast/dom/DOMException/stack-trace.html inspector/model/stack-trace.html inspector/canvas/create-context-webgl.html inspector/debugger/break-on-exception.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/tail-deleted-frames-this-value.html inspector/debugger/paused-scopes.html
EWS Watchlist
Comment 39
2018-05-30 10:49:40 PDT
Created
attachment 341581
[details]
Archive of layout-test-results from ews101 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews101 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 40
2018-05-30 11:01:15 PDT
Comment on
attachment 341579
[details]
Patch
Attachment 341579
[details]
did not pass jsc-ews (mac): Output:
http://webkit-queues.webkit.org/results/7869170
New failing tests: stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit-b3o1 ChakraCore.yaml/ChakraCore/test/fieldopts/fieldhoist_nullfieldhoist.js.default wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-slow-memory jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-cjit-yes-tls-context stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager stress/arrowfunction-lexical-bind-supercall-2.js.no-llint jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-ftl-eager-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.no-cjit-validate-phases wasm.yaml/wasm/js-api/dont-mmap-zero-byte-memory.js.wasm-slow-memory stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-no-put-stack-validate stress/arrowfunction-lexical-bind-supercall-2.js.no-ftl wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.default-wasm jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-llint stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-b3o1 stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-eager jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-ftl stress/ftl-try-catch-tail-call-inilned-caller.js.no-cjit-collect-continuously wasm.yaml/wasm/function-tests/stack-trace.js.wasm-slow-memory jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-cjit jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-dfg-eager-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-tls-context wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-cjit-yes-tls-context stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-no-inline-validate stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager-no-cjit-b3o1 jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-ftl-no-cjit jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-dfg-eager-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-small-pool ChakraCore.yaml/ChakraCore/test/StackTrace/ErrorPrototype.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-validate-sampling-profiler jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-llint jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-ftl-eager-no-cjit jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout-no-ftl stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-maximal-flush-validate-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.dfg-eager-no-cjit-validate ChakraCore.yaml/ChakraCore/test/Object/forIn.error.js.default stress/arrowfunction-lexical-bind-supercall-2.js.ftl-eager-no-cjit jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-no-cjit ChakraCore.yaml/ChakraCore/test/LetConst/defer5.js.default wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-cjit-yes-tls-context wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-eager-jettison ChakraCore.yaml/ChakraCore/test/Error/validate_line_column.js.default stress/arrowfunction-lexical-bind-supercall-2.js.dfg-maximal-flush-validate-no-cjit stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-validate-phases ChakraCore.yaml/ChakraCore/test/Error/NativeErrors.js.default jsc-layout-tests.yaml/js/script-tests/stack-trace.js.layout-ftl-no-cjit stress/ftl-try-catch-tail-call-inilned-caller.js.no-llint wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-tls-context stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-validate-sampling-profiler stress/arrowfunction-lexical-bind-supercall-2.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-no-inline-validate ChakraCore.yaml/ChakraCore/test/LetConst/defer2.js.default wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-tls-context stress/arrowfunction-lexical-bind-supercall-2.js.no-cjit-collect-continuously stress/ftl-try-catch-tail-call-inilned-caller.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-no-put-stack-validate jsc-layout-tests.yaml/js/script-tests/arrowfunction-supercall.js.layout ChakraCore.yaml/ChakraCore/test/StackTrace/FunctionName.js.default ChakraCore.yaml/ChakraCore/test/Error/inlineSameFunc.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.dfg-eager-no-cjit-validate wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-call-ic wasm.yaml/wasm/function-tests/nameSection.js.default-wasm wasm.yaml/wasm/function-tests/nameSection.js.wasm-no-call-ic wasm.yaml/wasm/function-tests/nameSection.js.wasm-slow-memory wasm.yaml/wasm/function-tests/nameSection.js.wasm-eager-jettison stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-no-cjit-b3o1 wasm.yaml/wasm/function-tests/stack-trace.js.default-wasm wasm.yaml/wasm/function-tests/stack-trace.js.wasm-no-call-ic wasm.yaml/wasm/function-tests/stack-trace.js.wasm-eager-jettison stress/ftl-try-catch-tail-call-inilned-caller.js.no-ftl stress/arrowfunction-lexical-bind-supercall-2.js.ftl-no-cjit-small-pool ChakraCore.yaml/ChakraCore/test/es6/unicode_blue_533163_utf8.js.default stress/ftl-try-catch-tail-call-inilned-caller.js.ftl-eager
EWS Watchlist
Comment 41
2018-05-30 11:30:09 PDT
Comment on
attachment 341579
[details]
Patch
Attachment 341579
[details]
did not pass ios-sim-ews (ios-simulator-wk2): Output:
http://webkit-queues.webkit.org/results/7869388
New failing tests: js/arrowfunction-supercall.html js/dom/stack-trace.html fast/dom/DOMException/stack-trace.html
EWS Watchlist
Comment 42
2018-05-30 11:30:11 PDT
Created
attachment 341586
[details]
Archive of layout-test-results from ews126 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews126 Port: ios-simulator-wk2 Platform: Mac OS X 10.13.4
EWS Watchlist
Comment 43
2018-05-30 11:40:03 PDT
Comment on
attachment 341579
[details]
Patch
Attachment 341579
[details]
did not pass mac-debug-ews (mac): Output:
http://webkit-queues.webkit.org/results/7869492
New failing tests: inspector/canvas/create-context-bitmaprenderer.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/js-stacktrace.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/break-on-exception.html js/dom/stack-trace.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/canvas/recording-webgl.html inspector/debugger/tail-deleted-frames-from-vm-entry.html inspector/debugger/call-frame-function-name.html inspector/debugger/continueUntilNextRunLoop.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html fast/dom/DOMException/stack-trace.html inspector/dom-debugger/xhr-breakpoints.html inspector/model/stack-trace.html inspector/debugger/break-on-uncaught-exception.html inspector/canvas/create-context-webgl.html js/dom/line-column-numbers.html
EWS Watchlist
Comment 44
2018-05-30 11:40:05 PDT
Created
attachment 341587
[details]
Archive of layout-test-results from ews116 for mac-sierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews116 Port: mac-sierra Platform: Mac OS X 10.12.6
EWS Watchlist
Comment 45
2018-05-30 13:09:10 PDT
Comment on
attachment 341579
[details]
Patch
Attachment 341579
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/7872293
New failing tests: inspector/debugger/tail-deleted-frames-from-vm-entry.html js/dom/line-column-numbers.html inspector/debugger/js-stacktrace.html js/dom/stack-trace.html inspector/canvas/recording-2d.html js/arrowfunction-supercall.html inspector/canvas/recording-webgl.html inspector/debugger/break-on-uncaught-exception.html inspector/debugger/continueUntilNextRunLoop.html inspector/canvas/create-context-bitmaprenderer.html inspector/dom-debugger/xhr-breakpoints.html inspector/debugger/evaluateOnCallFrame-CommandLineAPI.html inspector/debugger/tail-deleted-frames.html inspector/console/message-stack-trace.html inspector/debugger/tail-recursion.html inspector/debugger/break-on-exception-throw-in-promise.html inspector/debugger/call-frame-function-name.html fast/dom/DOMException/stack-trace.html inspector/model/stack-trace.html inspector/canvas/create-context-webgl.html inspector/debugger/break-on-exception.html inspector/canvas/recording-webgl-snapshots.html inspector/debugger/tail-deleted-frames-this-value.html inspector/debugger/paused-scopes.html
EWS Watchlist
Comment 46
2018-05-30 13:09:12 PDT
Created
attachment 341596
[details]
Archive of layout-test-results from ews106 for mac-sierra-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews106 Port: mac-sierra-wk2 Platform: Mac OS X 10.12.6
Keith Miller
Comment 47
2018-05-30 13:28:44 PDT
Created
attachment 341598
[details]
Patch
EWS Watchlist
Comment 48
2018-05-30 14:51:02 PDT
Comment on
attachment 341598
[details]
Patch
Attachment 341598
[details]
did not pass jsc-ews (mac): Output:
http://webkit-queues.webkit.org/results/7874521
New failing tests: wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-call-ic wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-slow-memory wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-eager-jettison wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-cjit-yes-tls-context wasm.yaml/wasm/js-api/dont-mmap-zero-byte-memory.js.wasm-slow-memory wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.default-wasm wasm.yaml/wasm/function-tests/memory-access-past-4gib.js.wasm-no-tls-context
Keith Miller
Comment 49
2018-05-30 15:01:44 PDT
Created
attachment 341605
[details]
Patch
Keith Miller
Comment 50
2018-05-30 15:13:20 PDT
Comment on
attachment 341605
[details]
Patch Seems to finally pass all the failing tests locally!
WebKit Commit Bot
Comment 51
2018-05-30 16:07:22 PDT
Comment on
attachment 341605
[details]
Patch Rejecting
attachment 341605
[details]
from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-02', 'land-attachment', '--force-clean', '--non-interactive', '--parent-command=commit-queue', 341605, '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Logging in as
commit-queue@webkit.org
... Fetching:
https://bugs.webkit.org/attachment.cgi?id=341605&action=edit
Fetching:
https://bugs.webkit.org/show_bug.cgi?id=185996
&ctype=xml&excludefield=attachmentdata Processing 1 patch from 1 bug. Updating working directory Processing patch 341605 from
bug 185996
. Fetching:
https://bugs.webkit.org/attachment.cgi?id=341605
Failed to run "['git', 'svn', 'dcommit', '--rmdir']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Committing to
http://svn.webkit.org/repository/webkit/trunk
... A LayoutTests/js/error-should-not-strong-reference-global-object-expected.txt A LayoutTests/js/error-should-not-strong-reference-global-object.html M JSTests/stress/error-stack-trace-limit.js M JSTests/stress/tail-call-recognize.js M LayoutTests/ChangeLog M Source/JavaScriptCore/ChangeLog ERROR from SVN: Item is out of date: File '/trunk/Source/JavaScriptCore/ChangeLog' is out of date W: 466f13ea89b04910f2dbbb1a100261fdc8c0f7ee and refs/remotes/origin/master differ, using rebase: :040000 040000 cf518dfd93ade718501e090e685da3e925ebd9f3 3c3963b79d24e56cf41c16584fc6211b7ef0fedd M JSTests :040000 040000 7d103a229083572c8ff15414938b927a37e9ca76 f18c07763a24669afabd3f06d812b4fe0a4ba939 M LayoutTests :040000 040000 80558f669921094dc647cf8800ffee7193fba2e9 ad7be83ba3ab9b72e380faabc7b3b6d96bc4bab3 M Source Current branch master is up to date. ERROR: Not all changes have been committed into SVN, however the committed ones (if any) seem to be successfully integrated into the working tree. Please see the above messages for details. Failed to run "['git', 'svn', 'dcommit', '--rmdir']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Committing to
http://svn.webkit.org/repository/webkit/trunk
... A LayoutTests/js/error-should-not-strong-reference-global-object-expected.txt A LayoutTests/js/error-should-not-strong-reference-global-object.html M JSTests/stress/error-stack-trace-limit.js M JSTests/stress/tail-call-recognize.js M LayoutTests/ChangeLog M Source/JavaScriptCore/ChangeLog ERROR from SVN: Item is out of date: File '/trunk/Source/JavaScriptCore/ChangeLog' is out of date W: 466f13ea89b04910f2dbbb1a100261fdc8c0f7ee and refs/remotes/origin/master differ, using rebase: :040000 040000 cf518dfd93ade718501e090e685da3e925ebd9f3 3c3963b79d24e56cf41c16584fc6211b7ef0fedd M JSTests :040000 040000 7d103a229083572c8ff15414938b927a37e9ca76 f18c07763a24669afabd3f06d812b4fe0a4ba939 M LayoutTests :040000 040000 80558f669921094dc647cf8800ffee7193fba2e9 ad7be83ba3ab9b72e380faabc7b3b6d96bc4bab3 M Source Current branch master is up to date. ERROR: Not all changes have been committed into SVN, however the committed ones (if any) seem to be successfully integrated into the working tree. Please see the above messages for details. Failed to run "['git', 'svn', 'dcommit', '--rmdir']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Updating OpenSource Current branch master is up to date. Full output:
http://webkit-queues.webkit.org/results/7877672
Keith Miller
Comment 52
2018-05-30 16:19:59 PDT
Committed
r232314
: <
https://trac.webkit.org/changeset/232314
>
Ryan Haddad
Comment 53
2018-05-31 14:26:53 PDT
stress/error-stack-trace-limit.js is failing on debug JSC bots: stress/error-stack-trace-limit.js.default: Exception: TypeError: undefined is not an object stress/error-stack-trace-limit.js.default: ERROR: Unexpected exit code: 3 FAIL: stress/error-stack-trace-limit.js.default
https://build.webkit.org/builders/Apple%20High%20Sierra%20Debug%20JSC%20%28Tests%29/builds/1081
Keith Miller
Comment 54
2018-05-31 14:28:13 PDT
(In reply to Ryan Haddad from
comment #53
)
> stress/error-stack-trace-limit.js is failing on debug JSC bots: > > stress/error-stack-trace-limit.js.default: Exception: TypeError: undefined > is not an object > stress/error-stack-trace-limit.js.default: ERROR: Unexpected exit code: 3 > FAIL: stress/error-stack-trace-limit.js.default > >
https://build.webkit.org/builders/
> Apple%20High%20Sierra%20Debug%20JSC%20%28Tests%29/builds/1081
That was fixed in
https://trac.webkit.org/changeset/232355
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug