diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.125 2017/06/29 15:06:44 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.126 2017/10/31 17:54:35 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -313,10 +313,21 @@ typedef union StackValue { | |||
313 | TValue val; | 313 | TValue val; |
314 | struct { | 314 | struct { |
315 | TValuefields; | 315 | TValuefields; |
316 | lu_byte callstatus_; | ||
316 | unsigned short previous; /* difference to previous 'func' */ | 317 | unsigned short previous; /* difference to previous 'func' */ |
318 | short nresults; /* expected number of results from this function */ | ||
319 | unsigned short framesize; /* stack space available for this function */ | ||
317 | } stkci; | 320 | } stkci; |
318 | } StackValue; | 321 | } StackValue; |
319 | 322 | ||
323 | #define callstatus(ar) ((ar)->stkci.callstatus_) | ||
324 | |||
325 | /* top of a function (first element after its frame) */ | ||
326 | #define functop(func) ((func) + (func)->stkci.framesize) | ||
327 | |||
328 | /* set top of a function to a specific value */ | ||
329 | #define setfunctop(func,v) ((func)->stkci.framesize = (v) - (func)) | ||
330 | |||
320 | 331 | ||
321 | typedef StackValue *StkId; /* index to stack elements */ | 332 | typedef StackValue *StkId; /* index to stack elements */ |
322 | 333 | ||