2000-02-22 16:31:19 +03:00
|
|
|
/*
|
2000-03-17 16:09:46 +03:00
|
|
|
** $Id: lcode.h,v 1.8 2000/03/15 20:50:33 roberto Exp roberto $
|
2000-02-22 16:31:19 +03:00
|
|
|
** Code generator for Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lcode_h
|
|
|
|
#define lcode_h
|
|
|
|
|
|
|
|
#include "llex.h"
|
|
|
|
#include "lobject.h"
|
2000-03-03 15:33:59 +03:00
|
|
|
#include "lopcodes.h"
|
|
|
|
#include "lparser.h"
|
2000-02-22 16:31:19 +03:00
|
|
|
|
|
|
|
|
2000-03-03 15:33:59 +03:00
|
|
|
void luaK_error (LexState *ls, const char *msg);
|
2000-03-17 16:09:46 +03:00
|
|
|
int luaK_0(FuncState *fs, OpCode o, int d);
|
|
|
|
int luaK_U(FuncState *fs, OpCode o, int u, int d);
|
|
|
|
int luaK_S(FuncState *fs, OpCode o, int s, int d);
|
|
|
|
int luaK_AB(FuncState *fs, OpCode o, int a, int b, int d);
|
2000-03-13 23:37:16 +03:00
|
|
|
int luaK_code (FuncState *fs, Instruction i, int delta);
|
|
|
|
void luaK_retcode (FuncState *fs, int nlocals, int nexps);
|
|
|
|
void luaK_fixjump (FuncState *fs, int pc, int dest);
|
|
|
|
void luaK_patchlist (FuncState *fs, int list, int target);
|
|
|
|
void luaK_goiftrue (FuncState *fs, expdesc *v, int keepvalue);
|
|
|
|
void luaK_goiffalse (FuncState *fs, expdesc *v, int keepvalue);
|
|
|
|
int luaK_getlabel (FuncState *fs);
|
|
|
|
void luaK_deltastack (FuncState *fs, int delta);
|
2000-03-03 21:53:17 +03:00
|
|
|
void luaK_kstr (LexState *ls, int c);
|
2000-03-13 23:37:16 +03:00
|
|
|
void luaK_number (FuncState *fs, Number f);
|
|
|
|
void luaK_adjuststack (FuncState *fs, int n);
|
|
|
|
int luaK_lastisopen (FuncState *fs);
|
|
|
|
void luaK_setcallreturns (FuncState *fs, int nresults);
|
2000-03-09 16:57:37 +03:00
|
|
|
void luaK_tostack (LexState *ls, expdesc *v, int onlyone);
|
2000-03-03 15:33:59 +03:00
|
|
|
void luaK_storevar (LexState *ls, const expdesc *var);
|
|
|
|
void luaK_prefix (LexState *ls, int op, expdesc *v);
|
2000-03-04 23:18:15 +03:00
|
|
|
void luaK_infix (LexState *ls, int op, expdesc *v);
|
2000-03-03 15:33:59 +03:00
|
|
|
void luaK_posfix (LexState *ls, int op, expdesc *v1, expdesc *v2);
|
2000-02-22 16:31:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|