We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
m+1 arguments: when m<=2 only need registers.
m+1
m<=2
note [fp,-1] and [fp,-2] reserved for pc and lr
[fp,-1]
[fp,-2]
pc
lr
r1
r2
r3
[fp,-3]
[fp,-4]
...
[fp,-m]
n+1 return values: when n<1 only need r0 registers
n+1
n<1
r0
[fp,-(m+1)]
[fp,-(m+2)]
[fp,-(m+n)]
The text was updated successfully, but these errors were encountered:
fast call model for llvm irgen
Sorry, something went wrong.
bchyl
No branches or pull requests
passing arguments:
m+1
arguments: whenm<=2
only need registers.note
[fp,-1]
and[fp,-2]
reserved forpc
andlr
r1
r2
r3
[fp,-3]
[fp,-4]
...
[fp,-m]
return values:
n+1
return values: whenn<1
only needr0
registersr0
[fp,-(m+1)]
[fp,-(m+2)]
...
[fp,-(m+n)]
The text was updated successfully, but these errors were encountered: