-
-
Notifications
You must be signed in to change notification settings - Fork 49
Fix/self call args #625
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
Fix/self call args #625
Conversation
…o LOAD_FAST and LOAD_FAST_BY_INDEX to emphasize they load refs
…he creation of a reference
…for tail-calls, instead of LOAD_FAST
…IS_NIL, EMPTY -> IS_EMPTY, HASFIELD -> HAS_FIELD
…apping them around between calls
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 42708 tuples (map size 229913, highest value 255, total values 442769121) in '/dev/null'. |
Description
This renames LOAD_SYMBOL and LOAD_SYMBOL_FROM_INDEX to LOAD_FAST and LOAD_FAST_FROM_INDEX (since they load symbols as refs), and introduces a LOAD_SYMBOL instruction (that doesn't push references on the stack) used in tail calls.
Closes #624
Checklist