| Summary: | VM should embed Interpreter. | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Mark Lam <mark.lam> |
| Component: | JavaScriptCore | Assignee: | Michael Catanzaro <mcatanzaro> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | mcatanzaro, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Mark Lam
2022-07-10 15:00:13 PDT
Pull request: https://github.com/WebKit/WebKit/pull/2281 Committed 252338@main (16e1928aae2e): <https://commits.webkit.org/252338@main> Reviewed commits have been landed. Closing PR #2281 and removing active labels. fyi, this broke the cloop build. It's a shame we don't have an EWS for it. Follow-up incoming. (In reply to Michael Catanzaro from comment #4) > fyi, this broke the cloop build. It's a shame we don't have an EWS for it. > Follow-up incoming. How did this break the CLoop? I deliberately tested for it. The jsc-i386 bot builds CLoop AFAIK. When I checked (before landing), all was well. Please share your details about what actually broke. (In reply to Michael Catanzaro from comment #4) > Follow-up incoming. This will probably be tomorrow. It should just be: diff --git a/Source/JavaScriptCore/CMakeLists.txt b/Source/JavaScriptCore/CMakeLists.txt index aef0678e66f3..ee5d8a509284 100644 --- a/Source/JavaScriptCore/CMakeLists.txt +++ b/Source/JavaScriptCore/CMakeLists.txt @@ -840,6 +840,7 @@ set(JavaScriptCore_PRIVATE_FRAMEWORK_HEADERS interpreter/CallFrame.h interpreter/CallFrameInlines.h interpreter/CalleeBits.h + interpreter/CLoopStack.h interpreter/EntryFrame.h interpreter/FrameTracers.h interpreter/Interpreter.h but I need to confirm, and am testing something else right now. (In reply to Mark Lam from comment #5) > Please share your details about what actually broke. In file included from /home/mcatanzaro/Projects/WebKit/WebKitBuild/JSCOnly/JavaScriptCore/PrivateHeaders/JavaScriptCore/VM.h:41, from /home/mcatanzaro/Projects/WebKit/WebKitBuild/JSCOnly/JavaScriptCore/PrivateHeaders/JavaScriptCore/ExceptionScope.h:28, from /home/mcatanzaro/Projects/WebKit/WebKitBuild/JSCOnly/JavaScriptCore/PrivateHeaders/JavaScriptCore/CatchScope.h:28, from /home/mcatanzaro/Projects/WebKit/WebKitBuild/JSCOnly/JavaScriptCore/PrivateHeaders/JavaScriptCore/JSCJSValueInlines.h:28, from /home/mcatanzaro/Projects/WebKit/Tools/TestWebKitAPI/Tests/JavaScriptCore/PropertySlot.cpp:28: /home/mcatanzaro/Projects/WebKit/WebKitBuild/JSCOnly/JavaScriptCore/PrivateHeaders/JavaScriptCore/Interpreter.h:39:10: fatal error: CLoopStack.h: No such file or directory 39 | #include "CLoopStack.h" | ^~~~~~~~~~~~~~ compilation terminated. (In reply to Mark Lam from comment #5) > How did this break the CLoop? I deliberately tested for it. The jsc-i386 > bot builds CLoop AFAIK. When I checked (before landing), all was well. Maybe it doesn't build TestWebKitAPI? (In reply to Michael Catanzaro from comment #8) > (In reply to Mark Lam from comment #5) > > How did this break the CLoop? I deliberately tested for it. The jsc-i386 > > bot builds CLoop AFAIK. When I checked (before landing), all was well. > > Maybe it doesn't build TestWebKitAPI? Yeah, it's a jsc build bot. Locally, I also only tested building jsc. Is this build failure manifesting when building TestWebKitAPI? Yes, the problem is the header is not available to TestWebKitAPI. My patch works... I'll submit a PR. Re-opening for pull request https://github.com/WebKit/WebKit/pull/2349 Committed 252400@main (40e49bb53218): <https://commits.webkit.org/252400@main> Reviewed commits have been landed. Closing PR #2349 and removing active labels. |