RESOLVED FIXED 193436
[WHLSL] Implement the recursion checker
https://bugs.webkit.org/show_bug.cgi?id=193436
Summary [WHLSL] Implement the recursion checker
Myles C. Maxfield
Reported 2019-01-14 22:27:32 PST
[WHLSL] Implement the recursion checker
Attachments
Patch (12.01 KB, patch)
2019-01-14 22:29 PST, Myles C. Maxfield
no flags
Archive of layout-test-results from ews115 for mac-highsierra (2.01 MB, application/zip)
2019-01-15 00:21 PST, EWS Watchlist
no flags
Patch (17.05 KB, patch)
2019-01-15 16:46 PST, Myles C. Maxfield
saam: review+
Myles C. Maxfield
Comment 1 2019-01-14 22:29:32 PST
Myles C. Maxfield
Comment 2 2019-01-14 22:44:33 PST
Comment on attachment 359138 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=359138&action=review > Source/WebCore/Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp:62 > + void visit(AST::FunctionDefinition& functionDefinition) override > + { > + auto addResult = m_visitingSet.add(&functionDefinition); > + if (!addResult.isNewEntry) { > + setError(); > + return; > + } > + > + Visitor::visit(functionDefinition); > + > + auto success = m_visitingSet.remove(&functionDefinition); > + ASSERT_UNUSED(success, success); > + } > + > + void visit(AST::CallExpression& callExpression) override > + { > + ASSERT(callExpression.function()); > + Visitor::visit(*callExpression.function()); > + } These can be private.
Darin Adler
Comment 3 2019-01-14 23:05:14 PST
Comment on attachment 359138 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=359138&action=review > Source/WebCore/Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp:42 > + RecursionChecker() = default; > + > + virtual ~RecursionChecker() = default; These can be omitted because this is what will be generated if you don’t write anything.
EWS Watchlist
Comment 4 2019-01-15 00:21:31 PST
Comment on attachment 359138 [details] Patch Attachment 359138 [details] did not pass mac-debug-ews (mac): Output: https://webkit-queues.webkit.org/results/10755536 New failing tests: compositing/backing/animate-into-view.html
EWS Watchlist
Comment 5 2019-01-15 00:21:32 PST
Created attachment 359143 [details] Archive of layout-test-results from ews115 for mac-highsierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews115 Port: mac-highsierra Platform: Mac OS X 10.13.6
Myles C. Maxfield
Comment 6 2019-01-15 16:46:45 PST
Saam Barati
Comment 7 2019-01-16 08:40:49 PST
Comment on attachment 359225 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=359225&action=review > Source/WebCore/Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp:53 > + auto success = m_visitingSet.remove(&functionDefinition); Each AST node representing a call to a function “foo” points to the same memory location?
Myles C. Maxfield
Comment 8 2019-01-16 16:47:41 PST
Comment on attachment 359225 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=359225&action=review >> Source/WebCore/Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp:53 >> + auto success = m_visitingSet.remove(&functionDefinition); > > Each AST node representing a call to a function “foo” points to the same memory location? Yes. Each function definition is a single object in the AST, and all calls to it have a .function() that points to it.
Myles C. Maxfield
Comment 9 2019-01-16 16:53:47 PST
Radar WebKit Bug Importer
Comment 10 2019-01-16 16:54:29 PST
Note You need to log in before you can comment on or make changes to this bug.