lcode.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2. ** $Id: lcode.h,v 1.16 2000/08/09 14:49:13 roberto Exp $
  3. ** Code generator for Lua
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lcode_h
  7. #define lcode_h
  8. #include "llex.h"
  9. #include "lobject.h"
  10. #include "lopcodes.h"
  11. #include "lparser.h"
  12. /*
  13. ** Marks the end of a patch list. It is an invalid value both as an absolute
  14. ** address, and as a list link (would link an element to itself).
  15. */
  16. #define NO_JUMP (-1)
  17. /*
  18. ** grep "ORDER OPR" if you change these enums
  19. */
  20. typedef enum BinOpr {
  21.   OPR_ADD, OPR_SUB, OPR_MULT, OPR_DIV, OPR_POW,
  22.   OPR_CONCAT,
  23.   OPR_NE, OPR_EQ, OPR_LT, OPR_LE, OPR_GT, OPR_GE,
  24.   OPR_AND, OPR_OR,
  25.   OPR_NOBINOPR
  26. } BinOpr;
  27. typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_NOUNOPR } UnOpr;
  28. enum Mode {iO, iU, iS, iAB};  /* instruction format */
  29. #define VD 100 /* flag for variable delta */
  30. extern const struct OpProperties {
  31.   char mode;
  32.   unsigned char push;
  33.   unsigned char pop;
  34. } luaK_opproperties[];
  35. void luaK_error (LexState *ls, const char *msg);
  36. int luaK_code0 (FuncState *fs, OpCode o);
  37. int luaK_code1 (FuncState *fs, OpCode o, int arg1);
  38. int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2);
  39. int luaK_jump (FuncState *fs);
  40. void luaK_patchlist (FuncState *fs, int list, int target);
  41. void luaK_concat (FuncState *fs, int *l1, int l2);
  42. void luaK_goiftrue (FuncState *fs, expdesc *v, int keepvalue);
  43. int luaK_getlabel (FuncState *fs);
  44. void luaK_deltastack (FuncState *fs, int delta);
  45. void luaK_kstr (LexState *ls, int c);
  46. void luaK_number (FuncState *fs, Number f);
  47. void luaK_adjuststack (FuncState *fs, int n);
  48. int luaK_lastisopen (FuncState *fs);
  49. void luaK_setcallreturns (FuncState *fs, int nresults);
  50. void luaK_tostack (LexState *ls, expdesc *v, int onlyone);
  51. void luaK_storevar (LexState *ls, const expdesc *var);
  52. void luaK_prefix (LexState *ls, UnOpr op, expdesc *v);
  53. void luaK_infix (LexState *ls, BinOpr op, expdesc *v);
  54. void luaK_posfix (LexState *ls, BinOpr op, expdesc *v1, expdesc *v2);
  55. #endif