-
-
Notifications
You must be signed in to change notification settings - Fork 50
Feat/contiguous bytecode #557
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
Conversation
…uiltins with their new name
Static analysis reportLizard reportListing only functions with cyclomatic complexity >= 15 or NLOC >= 100 or parameters >= 6.
Report about files you didn't modify in this PR
CppCheck report
Report files about files you didn't modify in this PR
|
Fuzzing report/usr/local/bin/afl-whatsup status check tool for afl-fuzz by Michal Zalewski Summary statsCycles without finds : 0 [+] Captured 47450 tuples (map size 214207, highest value 255, total values 363883448) in '/dev/null'. |
…tion when fetching instructions This is also way more cache friendly and should remove cache misses.
f7b442e to
3563a76
Compare
Description
Make the bytecode contiguous in memory, so we can remove an indirection layer when fetching instructions.
This makes it more cache-friendly as well, as it should remove cache misses since the bytecode used to have its pages scattered in memory.
Might want to improve the code to move the "make bytecode contiguous" to
BytecodeReaderinstead ofState?Checklist