diff options
author | Björn Gustavsson <bjorn@erlang.org> | 2021-11-10 14:22:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 14:22:42 +0100 |
commit | 3617610fbc40fec6ee496f70c1945f3fd3b6cb9d (patch) | |
tree | 5cf4e12f8581686d4b08600849dbb6f14d471806 /lib/compiler/src/genop.tab | |
parent | aaf9b2ff1b6e7b08eae9992eb9884a046b444afe (diff) | |
parent | 3346acf491bf33267242f9100bd32da92f090d44 (diff) | |
download | erlang-3617610fbc40fec6ee496f70c1945f3fd3b6cb9d.tar.gz |
Merge pull request #5316 from jhogberg/john/jit/pass-type-information-to-jit/OTP-17684
jit: Optimize instructions based on operand types
Diffstat (limited to 'lib/compiler/src/genop.tab')
-rwxr-xr-x | lib/compiler/src/genop.tab | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/compiler/src/genop.tab b/lib/compiler/src/genop.tab index a4b10acff2..68935b1980 100755 --- a/lib/compiler/src/genop.tab +++ b/lib/compiler/src/genop.tab @@ -653,3 +653,8 @@ BEAM_FORMAT_NUMBER=0 ## @spec bs_create_bin Fail Alloc Live Unit Dst OpList ## @doc Builda a new binary using the binary syntax. 177: bs_create_bin/6 + +## @spec call_fun2 Safe Arity Func +## @doc Calls the fun Func with arity Arity. Assume arguments in registers x(0) +## to x(Arity-1). The call will never fail when Safe is 'true'. +178: call_fun2/3 |