Skip to content

Commit

Permalink
implement GETUPVAL and GETTABUP and fix bug in LOADBOOL
Browse files Browse the repository at this point in the history
  • Loading branch information
Dibyendu Majumdar committed Mar 18, 2015
1 parent df91c9a commit 6af2ab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readthedocs/ravi-jit-status.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Note that if a Lua functions contains a bytecode that cannot be be JITed then th
+-------------------------+----------+--------------------------------------------------+
| OP_LOADNIL | YES | R(A), R(A+1), ..., R(A+B) := nil |
+-------------------------+----------+--------------------------------------------------+
| OP_GETUPVAL | NO | R(A) := UpValue[B] |
| OP_GETUPVAL | YES | R(A) := UpValue[B] |
+-------------------------+----------+--------------------------------------------------+
| OP_GETTABUP | NO | R(A) := UpValue[B][RK(C)] |
| OP_GETTABUP | YES | R(A) := UpValue[B][RK(C)] |
+-------------------------+----------+--------------------------------------------------+
| OP_GETTABLE | YES | R(A) := R(B)[RK(C)] |
+-------------------------+----------+--------------------------------------------------+
Expand Down

0 comments on commit 6af2ab4

Please sign in to comment.