diff options
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 32 |
1 files changed, 21 insertions, 11 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.37 2015/08/03 19:50:49 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.38 2015/08/03 20:40:26 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -70,17 +70,27 @@ | |||
70 | else luaV_finishget(L,t,k,v,aux); } | 70 | else luaV_finishget(L,t,k,v,aux); } |
71 | 71 | ||
72 | 72 | ||
73 | #define luaV_fastset(L,t,k,aux,f,v) \ | 73 | /* |
74 | ** Fast track for set table. If 't' is a table and 't[k]' is not nil, | ||
75 | ** call GC barrier, do a raw 't[k]=v', and return true; otherwise, | ||
76 | ** return false with 'slot' equal to NULL (if 't' is not a table) or | ||
77 | ** 'nil'. (This is needed by 'luaV_finishget'.) Note that, if the macro | ||
78 | ** returns true, there is no need to 'invalidateTMcache', because the | ||
79 | ** call is not creating a new entry. | ||
80 | */ | ||
81 | #define luaV_fastset(L,t,k,slot,f,v) \ | ||
74 | (!ttistable(t) \ | 82 | (!ttistable(t) \ |
75 | ? (aux = NULL, 0) \ | 83 | ? (slot = NULL, 0) \ |
76 | : (aux = f(hvalue(t), k), \ | 84 | : (slot = f(hvalue(t), k), \ |
77 | ttisnil(aux) ? 0 \ | 85 | ttisnil(slot) ? 0 \ |
78 | : (luaC_barrierback(L, hvalue(t), v), 1))) | 86 | : (luaC_barrierback(L, hvalue(t), v), \ |
79 | 87 | setobj2t(L, cast(TValue *,slot), v), \ | |
80 | #define luaV_settable(L,t,k,v) { const TValue *aux; \ | 88 | 1))) |
81 | if (luaV_fastset(L,t,k,aux,luaH_get,v)) \ | 89 | |
82 | { invalidateTMcache(hvalue(t)); setobj2t(L, cast(TValue *,aux), v); } \ | 90 | |
83 | else luaV_finishset(L,t,k,v,aux); } | 91 | #define luaV_settable(L,t,k,v) { const TValue *slot; \ |
92 | if (!luaV_fastset(L,t,k,slot,luaH_get,v)) \ | ||
93 | luaV_finishset(L,t,k,v,slot); } | ||
84 | 94 | ||
85 | 95 | ||
86 | 96 | ||