code generator (and optimizer) for Lua
This commit is contained in:
19
lcode.h
Normal file
19
lcode.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
** $Id: $
|
||||
** Code generator for Lua
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
||||
#ifndef lcode_h
|
||||
#define lcode_h
|
||||
|
||||
#include "llex.h"
|
||||
#include "lobject.h"
|
||||
|
||||
|
||||
int luaK_primitivecode (LexState *ls, Instruction i);
|
||||
int luaK_code (LexState *ls, Instruction i);
|
||||
void luaK_fixjump (LexState *ls, int pc, int dest);
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user