Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Unreviewed, rolling out r223523.
A test for this change is failing on debug JSC bots. Reverted changeset: "[JSC] __proto__ getter should be fast" https://bugs.webkit.org/show_bug.cgi?id=178067 https://trac.webkit.org/changeset/223523 Canonical link: https://commits.webkit.org/194644@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@223584 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
57 additions
and 1,229 deletions.
- +12 −0 JSTests/ChangeLog
- +0 −115 JSTests/stress/dfg-object-proto-accessor.js
- +0 −117 JSTests/stress/dfg-object-proto-getter.js
- +0 −115 JSTests/stress/dfg-object-prototype-of.js
- +0 −58 JSTests/stress/dfg-reflect-get-prototype-of.js
- +0 −31 JSTests/stress/intrinsic-getter-with-poly-proto.js
- +0 −64 JSTests/stress/object-get-prototype-of-filtered.js
- +0 −34 JSTests/stress/object-get-prototype-of-mono-proto.js
- +0 −33 JSTests/stress/object-get-prototype-of-poly-mono-proto.js
- +0 −30 JSTests/stress/object-get-prototype-of-poly-proto.js
- +0 −62 JSTests/stress/object-proto-getter-filtered.js
- +0 −34 JSTests/stress/object-proto-getter-poly-mono-proto.js
- +0 −29 JSTests/stress/object-proto-getter-poly-proto.js
- +1 −1 JSTests/stress/object-prototype-proto-accessors-should-throw-on-undefined-this.js
- +0 −12 JSTests/stress/string-proto.js
- +12 −0 LayoutTests/ChangeLog
- +1 −1 LayoutTests/js/object-literal-shorthand-construction-expected.txt
- +1 −1 LayoutTests/js/script-tests/object-literal-shorthand-construction.js
- +2 −2 LayoutTests/js/script-tests/sloppy-getter-setter-global-object.js
- +2 −2 LayoutTests/js/sloppy-getter-setter-global-object-expected.txt
- +12 −0 Source/JavaScriptCore/ChangeLog
- +0 −42 Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
- +3 −55 Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- +0 −17 Source/JavaScriptCore/dfg/DFGClobberize.h
- +0 −1 Source/JavaScriptCore/dfg/DFGDoesGC.cpp
- +0 −58 Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
- +0 −4 Source/JavaScriptCore/dfg/DFGHeapLocation.cpp
- +0 −1 Source/JavaScriptCore/dfg/DFGHeapLocation.h
- +0 −6 Source/JavaScriptCore/dfg/DFGNode.h
- +0 −1 Source/JavaScriptCore/dfg/DFGNodeType.h
- +0 −31 Source/JavaScriptCore/dfg/DFGOperations.cpp
- +0 −2 Source/JavaScriptCore/dfg/DFGOperations.h
- +1 −2 Source/JavaScriptCore/dfg/DFGPredictionPropagationPhase.cpp
- +0 −1 Source/JavaScriptCore/dfg/DFGSafeToExecute.h
- +2 −131 Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
- +0 −8 Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h
- +0 −5 Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp
- +0 −5 Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
- +0 −1 Source/JavaScriptCore/ftl/FTLCapabilities.cpp
- +2 −81 Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp
- +0 −18 Source/JavaScriptCore/jit/IntrinsicEmitter.cpp
- +0 −1 Source/JavaScriptCore/jit/JITOperations.h
- +0 −6 Source/JavaScriptCore/runtime/Intrinsic.cpp
- +0 −3 Source/JavaScriptCore/runtime/Intrinsic.h
- +1 −1 Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- +3 −3 Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
- +0 −2 Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.h
- +1 −1 Source/JavaScriptCore/runtime/ObjectConstructor.cpp
- +1 −1 Source/JavaScriptCore/runtime/ReflectObject.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.