Wait, what? Arguments in registers? I thought C puts them in the stack
https://youtu.be/lALPErFlfNQ?t=194
@cope Oh, so it only puts them in the stack on x86?
@matrix most call setups spill them to stack, but try to fit as many as possible into registers. It's always faster to use values already in registers than to have to load them from stack and save them back.