RESOLVED FIXED Bug 181341
Web Inspector: Record actions performed on ImageBitmapRenderingContext
https://bugs.webkit.org/show_bug.cgi?id=181341
Summary Web Inspector: Record actions performed on ImageBitmapRenderingContext
Devin Rousso
Reported 2018-01-05 13:35:43 PST
Use the protocol/instrumentation logic created in <https://webkit.org/b/174481> Web Inspector: create protocol functions for recording Canvas contexts
Attachments
Patch (28.98 KB, patch)
2018-01-05 13:39 PST, Devin Rousso
no flags
Archive of layout-test-results from ews116 for mac-elcapitan (3.06 MB, application/zip)
2018-01-05 15:30 PST, EWS Watchlist
no flags
Patch (221.04 KB, patch)
2018-01-17 13:54 PST, Devin Rousso
no flags
Patch (211.84 KB, patch)
2018-08-28 01:01 PDT, Devin Rousso
no flags
Patch (219.30 KB, patch)
2018-08-28 01:06 PDT, Devin Rousso
no flags
Archive of layout-test-results from ews102 for mac-sierra (2.48 MB, application/zip)
2018-08-28 02:03 PDT, EWS Watchlist
no flags
Archive of layout-test-results from ews107 for mac-sierra-wk2 (3.11 MB, application/zip)
2018-08-28 02:34 PDT, EWS Watchlist
no flags
Archive of layout-test-results from ews117 for mac-sierra (3.02 MB, application/zip)
2018-08-28 02:54 PDT, EWS Watchlist
no flags
Patch (220.24 KB, patch)
2018-08-28 09:44 PDT, Devin Rousso
no flags
Patch (220.89 KB, patch)
2018-09-14 00:06 PDT, Devin Rousso
no flags
Devin Rousso
Comment 1 2018-01-05 13:39:25 PST
EWS Watchlist
Comment 2 2018-01-05 13:42:21 PST
This patch modifies the inspector protocol generator. Please ensure that you have rebaselined any generator test results (i.e., by running `Tools/Scripts/run-inspector-generator-tests --reset-results`)
EWS Watchlist
Comment 3 2018-01-05 15:30:46 PST Comment hidden (obsolete)
EWS Watchlist
Comment 4 2018-01-05 15:30:48 PST Comment hidden (obsolete)
Joseph Pecoraro
Comment 5 2018-01-08 10:45:11 PST
> 73 73 10: "asyncFunctionResume" > 74 74 11: [10,4,1,11] > 75 12: [4,4,28,17] > 75 12: [4,4,24,17] asyncFunctionResume is a built-in. Built-ins are supposed to get somewhat optimized in release builds (unnecessary whitespace removed, like leading spaces) and not debug builds, but the intent of that optimization was to keep lines the same. Maybe thats not the case? --- In my build directory this certainly seems to be the problem. $build/Release/DerivedSources/JavaScriptCore/JSCBuiltins.cpp > const char* s_asyncFunctionPrototypeAsyncFunctionResumeCode = > "(function (generator, promiseCapability, sentValue, resumeMode)\n" \ > "{\n" \ > " \"use strict\";\n" \ > " let state = generator.@generatorState;\n" \ > " let value = @undefined;\n" \ > "\n" \ > " if (state === @GeneratorStateCompleted || (resumeMode !== @GeneratorResumeModeNormal && resumeMode !== @GeneratorResumeModeThrow))\n" \ > " @throwTypeError(\"Async function illegally resumed\");\n" \ > "\n" \ > " try {\n" \ > " generator.@generatorState = @GeneratorStateExecuting;\n" \ > " value = generator.@generatorNext.@call(generator.@generatorThis, generator, state, sentValue, resumeMode, generator.@generatorFrame);\n" \ > " if (generator.@generatorState === @GeneratorStateExecuting) {\n" \ > " generator.@generatorState = @GeneratorStateCompleted;\n" \ > " promiseCapability.@resolve(value);\n" \ > " return promiseCapability.@promise;\n" \ > " }\n" \ > " } catch (error) {\n" \ > " generator.@generatorState = @GeneratorStateCompleted;\n" \ > " promiseCapability.@reject(error);\n" \ > " return promiseCapability.@promise;\n" \ > " }\n" \ > "\n" \ > " let wrappedValue = @newPromiseCapability(@Promise);\n" \ > " wrappedValue.@resolve.@call(@undefined, value);\n" \ > "\n" \ > " wrappedValue.@promise.@then(\n" \ > " function(value) { @asyncFunctionResume(generator, promiseCapability, value, @GeneratorResumeModeNormal); },\n" \ > " function(error) { @asyncFunctionResume(generator, promiseCapability, error, @GeneratorResumeModeThrow); });\n" \ > "\n" \ > " return promiseCapability.@promise;\n" \ > "})\n" \ > ; $build/Debug/DerivedSources/JavaScriptCore/JSCBuiltins.cpp > const char* s_asyncFunctionPrototypeAsyncFunctionResumeCode = > "(function (generator, promiseCapability, sentValue, resumeMode)\n" \ > "{\n" \ > " \"use strict\";\n" \ > " let state = generator.@generatorState;\n" \ > " let value = @undefined;\n" \ > " if (state === @GeneratorStateCompleted || (resumeMode !== @GeneratorResumeModeNormal && resumeMode !== @GeneratorResumeModeThrow))\n" \ > " @throwTypeError(\"Async function illegally resumed\");\n" \ > " try {\n" \ > " generator.@generatorState = @GeneratorStateExecuting;\n" \ > " value = generator.@generatorNext.@call(generator.@generatorThis, generator, state, sentValue, resumeMode, generator.@generatorFrame);\n" \ > " if (generator.@generatorState === @GeneratorStateExecuting) {\n" \ > " generator.@generatorState = @GeneratorStateCompleted;\n" \ > " promiseCapability.@resolve(value);\n" \ > " return promiseCapability.@promise;\n" \ > " }\n" \ > " } catch (error) {\n" \ > " generator.@generatorState = @GeneratorStateCompleted;\n" \ > " promiseCapability.@reject(error);\n" \ > " return promiseCapability.@promise;\n" \ > " }\n" \ > " let wrappedValue = @newPromiseCapability(@Promise);\n" \ > " wrappedValue.@resolve.@call(@undefined, value);\n" \ > " wrappedValue.@promise.@then(\n" \ > " function(value) { @asyncFunctionResume(generator, promiseCapability, value, @GeneratorResumeModeNormal); },\n" \ > " function(error) { @asyncFunctionResume(generator, promiseCapability, error, @GeneratorResumeModeThrow); });\n" \ > " return promiseCapability.@promise;\n" \ > "})\n" \ > ;
Joseph Pecoraro
Comment 6 2018-01-08 10:54:22 PST
I guess this was always broken: <https://webkit.org/b/152290> Builtin source should be minified more http://trac.webkit.org/changeset/194144 > diff --git a/Source/JavaScriptCore/Scripts/builtins/builtins_model.py b/Source/JavaScriptCore/Scripts/builtins/builtins_model.py > old mode 100644 > new mode 100755 > index d765eca865e..cdd5f900354 > --- a/Source/JavaScriptCore/Scripts/builtins/builtins_model.py > +++ b/Source/JavaScriptCore/Scripts/builtins/builtins_model.py > @@ -100,6 +103,11 @@ class BuiltinFunction: > @staticmethod > def fromString(function_string): > function_source = multilineCommentRegExp.sub("", function_string) > + if os.getenv("CONFIGURATION", "Debug").startswith("Debug"): > + function_source = lineWithOnlySingleLineCommentRegExp.sub("", function_source) > + function_source = lineWithTrailingSingleLineCommentRegExp.sub("\n", function_source) > + function_source = multipleEmptyLinesRegExp.sub("\n", function_source) This probably should have been "not os.getenv(...).startsWith("Debug"). But you would have the same problem. Any modification here will result in line or column changes which would break your test.
Devin Rousso
Comment 7 2018-01-17 13:54:48 PST
Created attachment 331537 [details] Patch Simplified the test output
Joseph Pecoraro
Comment 8 2018-01-25 21:08:26 PST
(In reply to Joseph Pecoraro from comment #6) > I guess this was always broken: > <https://webkit.org/b/152290> Builtin source should be minified more > http://trac.webkit.org/changeset/194144 > > ... > > This probably should have been "not os.getenv(...).startsWith("Debug"). I'll fix this in: <https://webkit.org/b/182165> JavaScriptCore builtins should be partially minified in Release builds not Debug builds
Joseph Pecoraro
Comment 9 2018-01-26 13:26:11 PST
So what is an ImageBitmapRenderingContext and why would we want to record it?
Devin Rousso
Comment 10 2018-01-27 00:54:33 PST
(In reply to Joseph Pecoraro from comment #9) > So what is an ImageBitmapRenderingContext and why would we want to record it? ImageBitmapRenderingContext is part of the OffscreenCanvas spec [1] and from what I understand is designed to be a very basic rendering context for displaying ImageBitmap objects. These are usually generated either via OffscreenCanvas.prototype.transferToImageBitmap [2] or through the more generic createImageBitmap [3]. Either way, I see the intention of it to be as the replacement for the front buffer in double buffering, as the drawing buffer can be created in a Worker with OffscreenCanvas. I think we want to be able to record it to see a list of transferFromImageBitmap [4] calls for a single frame, just to make sure we are only drawing what we need to each frame. Also, it was pretty easy to implement, so I figured why not :P [1] https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmapRenderingContext [2] https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/transferToImageBitmap [3] https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/createImageBitmap [4] https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmapRenderingContext/transferFromImageBitmap
Joseph Pecoraro
Comment 11 2018-07-30 15:21:38 PDT
Do we still want to do this? Does this make the code clearer in some reasonable way? I don't think developers will be writing directly to ImageBitmapRenderingContext often. Until we have a use case I'm not sure its worth the effort to support it.
Devin Rousso
Comment 12 2018-07-30 16:40:16 PDT
(In reply to Joseph Pecoraro from comment #11) > Do we still want to do this? Does this make the code clearer in some > reasonable way? > > I don't think developers will be writing directly to > ImageBitmapRenderingContext often. Until we have a use case I'm not sure its > worth the effort to support it. Frankly, I think the amount of work necessary to add this is so small that it might be worth it. The main benefit I can see here is the ability to figure out when/where ImageBitmap are drawn to the canvas, such as checking for performance issues (e.g. accidentally drawing twice). I can't claim that this is widely used as of now though, so I can't say that it's absolutely necessary.
Devin Rousso
Comment 13 2018-08-28 01:01:13 PDT
Created attachment 348273 [details] Patch Rebase
Devin Rousso
Comment 14 2018-08-28 01:06:42 PDT
Created attachment 348274 [details] Patch Forgot new test file
EWS Watchlist
Comment 15 2018-08-28 02:03:08 PDT Comment hidden (obsolete)
EWS Watchlist
Comment 16 2018-08-28 02:03:10 PDT Comment hidden (obsolete)
EWS Watchlist
Comment 17 2018-08-28 02:34:51 PDT Comment hidden (obsolete)
EWS Watchlist
Comment 18 2018-08-28 02:34:53 PDT Comment hidden (obsolete)
EWS Watchlist
Comment 19 2018-08-28 02:54:29 PDT Comment hidden (obsolete)
EWS Watchlist
Comment 20 2018-08-28 02:54:31 PDT Comment hidden (obsolete)
Devin Rousso
Comment 21 2018-08-28 09:44:29 PDT
Created attachment 348300 [details] Patch Forgot to update a few functions
Joseph Pecoraro
Comment 22 2018-09-13 16:54:18 PDT
Comment on attachment 348300 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=348300&action=review r=me > Source/WebInspectorUI/UserInterface/Views/RecordingContentView.js:448 > - let snapshotIndex = Math.floor(this._index / WI.RecordingContentView.SnapshotInterval); > - if (!isNaN(this._index) && this._snapshots[snapshotIndex]) > - this._snapshots[snapshotIndex].element.classList.toggle("show-grid", activated); > + if (!isNaN(this._index)) > + this._previewContainer.firstElementChild.classList.toggle("show-grid", activated); Why this change?
Devin Rousso
Comment 23 2018-09-13 23:49:10 PDT
Comment on attachment 348300 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=348300&action=review >> Source/WebInspectorUI/UserInterface/Views/RecordingContentView.js:448 >> + this._previewContainer.firstElementChild.classList.toggle("show-grid", activated); > > Why this change? This is due to the fact that `_generateContentFromSnapshot` doesn't follow the same `WI.RecordingContentView.SnapshotInterval` as `_generateContentCanvas2D`. The snapshot determines the index based on the last visual action before the currently selected action, meaning that most of the time the expected snapshot element (based on `WI.RecordingContentView.SnapshotInterval`) will be null, as the "current snapshot for the given index" will actually be the last selected visual action's index. It is expected that the first child of `_previewContainer` is the preview <canvas>/<img>.
Devin Rousso
Comment 24 2018-09-14 00:06:09 PDT
WebKit Commit Bot
Comment 25 2018-09-14 09:44:32 PDT
Comment on attachment 349742 [details] Patch Clearing flags on attachment: 349742 Committed r236008: <https://trac.webkit.org/changeset/236008>
WebKit Commit Bot
Comment 26 2018-09-14 09:44:34 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 27 2018-09-14 09:45:26 PDT
Note You need to log in before you can comment on or make changes to this bug.