-
-
Notifications
You must be signed in to change notification settings - Fork 49
feat(iroptimizer, vm): … #623
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
…use 3 math instructions (add, sub, mul, div) in a single pass
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
|
CodSpeed Performance ReportMerging #623 will degrade performances by 4.67%Comparing Summary
Benchmarks breakdown
|
Fuzzing report/usr/local/bin/afl-whatsup status check tool for afl-fuzz by Michal Zalewski Summary statsCycles without finds : 0 [+] Captured 42476 tuples (map size 225610, highest value 255, total values 421863398) in '/dev/null'. |
… the new super instructions
…hat the bytecode reader is somewhat covered by tests
Description
Adding FUSED_MATH super instruction, able to fuse 3 math instructions (add, sub, mul, div) in a single pass.
This instruction can fuse 3 ADDs, or (ADD, SUB, ADD), but also two maths instructions. This should help performance by reducing the number of pop/push to the stack.
Checklist