Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ossfuzz and Yul interpreter use ast over block #15954

Merged
merged 3 commits into from
Mar 22, 2025

Conversation

clonker
Copy link
Member

@clonker clonker commented Mar 17, 2025

Changing the interface of the Yul interpreter to use an instance of AST over individual block and dialect. With numeric IDs, the AST will also contain the labels, so this makes the overall interface leaner.
On that note I realized that yul interpreter tests are parsed potentially with eof (in CI, for ex.) but are interpreted without.

@clonker clonker changed the title Ossfuzz use ast over block ossfuzz and Yul interpreter use ast over block Mar 17, 2025
@clonker clonker requested review from cameel and nikola-matic March 19, 2025 11:43
@@ -51,6 +51,8 @@ YulInterpreterTest::YulInterpreterTest(std::string const& _filename):
m_source = m_reader.source();
m_expectation = m_reader.simpleExpectations();
m_simulateExternalCallsToSelf = m_reader.boolSetting("simulateExternalCall", false);
if (CommonOptions::get().eofVersion().has_value())
m_shouldRun = false;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realized that yul interpreter tests are parsed potentially with eof (in CI, for ex.) but are interpreted without.

I don't think it's really a problem. EOF largely leaves semantics the same, so most of the tests that pass should still make sense on it. The ones using opcodes that were added or removed won't work, but they are already disabled with bytecodeFormat: legacy.

I'd rather keep it like that and only disable tests on a case-by-case basis. The default state should be that things get tested both with and without EOF and you have to manually exclude them for things that are not yet implemented. There should be natural pressure for the amount of such tests to shrink over time.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you put it like that it makes complete sense to do it like that. I was coming from the point of view that by essentially 'enabling' EOF in the interpreter (i.e. no longer hardcoding the dialect to be EOF-free) changes the current behavior and might make it go unnoticed that there's still places that need to be EOFed. Although all it does is increase testing surface which isn't a bad thing :)
In yulrun it is still hardcoded to not use EOF but I have added the assert anyways, for good measure. That way it can't slip through the cracks.

@clonker clonker force-pushed the ossfuzz_use_ast_over_block branch from 63cf742 to 92bf4f7 Compare March 21, 2025 07:49
@cameel cameel force-pushed the ossfuzz_use_ast_over_block branch from 92bf4f7 to dafe006 Compare March 21, 2025 19:56
@clonker clonker merged commit 6326b86 into develop Mar 22, 2025
74 checks passed
@clonker clonker deleted the ossfuzz_use_ast_over_block branch March 22, 2025 05:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants