tail call codegen for error returns #690
Labels
enhancement
Solving this issue will likely involve adding new logic or components to the codebase.
optimization
stage2
This issue affects the self-hosted compiler.
Projects
Milestone
for error unions it looks like this:
We could have
__zig_return_error
take the sret parameter and populate the error value, then return void, so that it can be a tail call.for pure errors we can pass the error code and return it, and then return it in the parent, another tail call.
Then look at the generated assembly and make sure we're doing tail calls. This is to keep the size of the code generated small for error return tracing. What is a return statement in code without error return tracing can become a jump instruction in code with error return tracing.
The text was updated successfully, but these errors were encountered: