12345678910111213141516171819202122232425262728293031323334353637 |
- #if !defined(lpcode_h)
- #define lpcode_h
- #include "lua.h"
- #include "lptypes.h"
- #include "lptree.h"
- #include "lpvm.h"
- int checkaux (TTree *tree, int pred);
- int fixedlen (TTree *tree);
- int hascaptures (TTree *tree);
- int lp_gc (lua_State *L);
- Instruction *compile (lua_State *L, Pattern *p, uint size);
- void freecode (lua_State *L, Pattern *p);
- int sizei (const Instruction *i);
- #define PEnullable 0
- #define PEnofail 1
- /*
- ** nofail(t) implies that 't' cannot fail with any input
- */
- #define nofail(t) checkaux(t, PEnofail)
- /*
- ** (not nullable(t)) implies 't' cannot match without consuming
- ** something
- */
- #define nullable(t) checkaux(t, PEnullable)
- #endif
|