lcode.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  1. /*
  2. ** $Id: lcode.c $
  3. ** Code generator for Lua
  4. ** See Copyright Notice in lua.h
  5. */
  6. #define lcode_c
  7. #define LUA_CORE
  8. #include "lprefix.h"
  9. #include <limits.h>
  10. #include <math.h>
  11. #include <stdlib.h>
  12. #include "lua.h"
  13. #include "lcode.h"
  14. #include "ldebug.h"
  15. #include "ldo.h"
  16. #include "lgc.h"
  17. #include "llex.h"
  18. #include "lmem.h"
  19. #include "lobject.h"
  20. #include "lopcodes.h"
  21. #include "lparser.h"
  22. #include "lstring.h"
  23. #include "ltable.h"
  24. #include "lvm.h"
  25. /* Maximum number of registers in a Lua function (must fit in 8 bits) */
  26. #define MAXREGS 255
  27. #define hasjumps(e) ((e)->t != (e)->f)
  28. static int codesJ (FuncState *fs, OpCode o, int sj, int k);
  29. /* semantic error */
  30. l_noret luaK_semerror (LexState *ls, const char *msg) {
  31. ls->t.token = 0; /* remove "near <token>" from final message */
  32. luaX_syntaxerror(ls, msg);
  33. }
  34. /*
  35. ** If expression is a numeric constant, fills 'v' with its value
  36. ** and returns 1. Otherwise, returns 0.
  37. */
  38. static int tonumeral (const expdesc *e, TValue *v) {
  39. if (hasjumps(e))
  40. return 0; /* not a numeral */
  41. switch (e->k) {
  42. case VKINT:
  43. if (v) setivalue(v, e->u.ival);
  44. return 1;
  45. case VKFLT:
  46. if (v) setfltvalue(v, e->u.nval);
  47. return 1;
  48. default: return 0;
  49. }
  50. }
  51. /*
  52. ** Get the constant value from a constant expression
  53. */
  54. static TValue *const2val (FuncState *fs, const expdesc *e) {
  55. lua_assert(e->k == VCONST);
  56. return &fs->ls->dyd->actvar.arr[e->u.info].k;
  57. }
  58. /*
  59. ** If expression is a constant, fills 'v' with its value
  60. ** and returns 1. Otherwise, returns 0.
  61. */
  62. int luaK_exp2const (FuncState *fs, const expdesc *e, TValue *v) {
  63. if (hasjumps(e))
  64. return 0; /* not a constant */
  65. switch (e->k) {
  66. case VFALSE:
  67. setbfvalue(v);
  68. return 1;
  69. case VTRUE:
  70. setbtvalue(v);
  71. return 1;
  72. case VNIL:
  73. setnilvalue(v);
  74. return 1;
  75. case VKSTR: {
  76. setsvalue(fs->ls->L, v, e->u.strval);
  77. return 1;
  78. }
  79. case VCONST: {
  80. setobj(fs->ls->L, v, const2val(fs, e));
  81. return 1;
  82. }
  83. default: return tonumeral(e, v);
  84. }
  85. }
  86. /*
  87. ** Return the previous instruction of the current code. If there
  88. ** may be a jump target between the current instruction and the
  89. ** previous one, return an invalid instruction (to avoid wrong
  90. ** optimizations).
  91. */
  92. static Instruction *previousinstruction (FuncState *fs) {
  93. static const Instruction invalidinstruction = ~(Instruction)0;
  94. if (fs->pc > fs->lasttarget)
  95. return &fs->f->code[fs->pc - 1]; /* previous instruction */
  96. else
  97. return cast(Instruction*, &invalidinstruction);
  98. }
  99. /*
  100. ** Create a OP_LOADNIL instruction, but try to optimize: if the previous
  101. ** instruction is also OP_LOADNIL and ranges are compatible, adjust
  102. ** range of previous instruction instead of emitting a new one. (For
  103. ** instance, 'local a; local b' will generate a single opcode.)
  104. */
  105. void luaK_nil (FuncState *fs, int from, int n) {
  106. int l = from + n - 1; /* last register to set nil */
  107. Instruction *previous = previousinstruction(fs);
  108. if (GET_OPCODE(*previous) == OP_LOADNIL) { /* previous is LOADNIL? */
  109. int pfrom = GETARG_A(*previous); /* get previous range */
  110. int pl = pfrom + GETARG_B(*previous);
  111. if ((pfrom <= from && from <= pl + 1) ||
  112. (from <= pfrom && pfrom <= l + 1)) { /* can connect both? */
  113. if (pfrom < from) from = pfrom; /* from = min(from, pfrom) */
  114. if (pl > l) l = pl; /* l = max(l, pl) */
  115. SETARG_A(*previous, from);
  116. SETARG_B(*previous, l - from);
  117. return;
  118. } /* else go through */
  119. }
  120. luaK_codeABC(fs, OP_LOADNIL, from, n - 1, 0); /* else no optimization */
  121. }
  122. /*
  123. ** Gets the destination address of a jump instruction. Used to traverse
  124. ** a list of jumps.
  125. */
  126. static int getjump (FuncState *fs, int pc) {
  127. int offset = GETARG_sJ(fs->f->code[pc]);
  128. if (offset == NO_JUMP) /* point to itself represents end of list */
  129. return NO_JUMP; /* end of list */
  130. else
  131. return (pc+1)+offset; /* turn offset into absolute position */
  132. }
  133. /*
  134. ** Fix jump instruction at position 'pc' to jump to 'dest'.
  135. ** (Jump addresses are relative in Lua)
  136. */
  137. static void fixjump (FuncState *fs, int pc, int dest) {
  138. Instruction *jmp = &fs->f->code[pc];
  139. int offset = dest - (pc + 1);
  140. lua_assert(dest != NO_JUMP);
  141. if (!(-OFFSET_sJ <= offset && offset <= MAXARG_sJ - OFFSET_sJ))
  142. luaX_syntaxerror(fs->ls, "control structure too long");
  143. lua_assert(GET_OPCODE(*jmp) == OP_JMP);
  144. SETARG_sJ(*jmp, offset);
  145. }
  146. /*
  147. ** Concatenate jump-list 'l2' into jump-list 'l1'
  148. */
  149. void luaK_concat (FuncState *fs, int *l1, int l2) {
  150. if (l2 == NO_JUMP) return; /* nothing to concatenate? */
  151. else if (*l1 == NO_JUMP) /* no original list? */
  152. *l1 = l2; /* 'l1' points to 'l2' */
  153. else {
  154. int list = *l1;
  155. int next;
  156. while ((next = getjump(fs, list)) != NO_JUMP) /* find last element */
  157. list = next;
  158. fixjump(fs, list, l2); /* last element links to 'l2' */
  159. }
  160. }
  161. /*
  162. ** Create a jump instruction and return its position, so its destination
  163. ** can be fixed later (with 'fixjump').
  164. */
  165. int luaK_jump (FuncState *fs) {
  166. return codesJ(fs, OP_JMP, NO_JUMP, 0);
  167. }
  168. /*
  169. ** Code a 'return' instruction
  170. */
  171. void luaK_ret (FuncState *fs, int first, int nret) {
  172. OpCode op;
  173. switch (nret) {
  174. case 0: op = OP_RETURN0; break;
  175. case 1: op = OP_RETURN1; break;
  176. default: op = OP_RETURN; break;
  177. }
  178. luaK_codeABC(fs, op, first, nret + 1, 0);
  179. }
  180. /*
  181. ** Code a "conditional jump", that is, a test or comparison opcode
  182. ** followed by a jump. Return jump position.
  183. */
  184. static int condjump (FuncState *fs, OpCode op, int A, int B, int C, int k) {
  185. luaK_codeABCk(fs, op, A, B, C, k);
  186. return luaK_jump(fs);
  187. }
  188. /*
  189. ** returns current 'pc' and marks it as a jump target (to avoid wrong
  190. ** optimizations with consecutive instructions not in the same basic block).
  191. */
  192. int luaK_getlabel (FuncState *fs) {
  193. fs->lasttarget = fs->pc;
  194. return fs->pc;
  195. }
  196. /*
  197. ** Returns the position of the instruction "controlling" a given
  198. ** jump (that is, its condition), or the jump itself if it is
  199. ** unconditional.
  200. */
  201. static Instruction *getjumpcontrol (FuncState *fs, int pc) {
  202. Instruction *pi = &fs->f->code[pc];
  203. if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1))))
  204. return pi-1;
  205. else
  206. return pi;
  207. }
  208. /*
  209. ** Patch destination register for a TESTSET instruction.
  210. ** If instruction in position 'node' is not a TESTSET, return 0 ("fails").
  211. ** Otherwise, if 'reg' is not 'NO_REG', set it as the destination
  212. ** register. Otherwise, change instruction to a simple 'TEST' (produces
  213. ** no register value)
  214. */
  215. static int patchtestreg (FuncState *fs, int node, int reg) {
  216. Instruction *i = getjumpcontrol(fs, node);
  217. if (GET_OPCODE(*i) != OP_TESTSET)
  218. return 0; /* cannot patch other instructions */
  219. if (reg != NO_REG && reg != GETARG_B(*i))
  220. SETARG_A(*i, reg);
  221. else {
  222. /* no register to put value or register already has the value;
  223. change instruction to simple test */
  224. *i = CREATE_ABCk(OP_TEST, GETARG_B(*i), 0, 0, GETARG_k(*i));
  225. }
  226. return 1;
  227. }
  228. /*
  229. ** Traverse a list of tests ensuring no one produces a value
  230. */
  231. static void removevalues (FuncState *fs, int list) {
  232. for (; list != NO_JUMP; list = getjump(fs, list))
  233. patchtestreg(fs, list, NO_REG);
  234. }
  235. /*
  236. ** Traverse a list of tests, patching their destination address and
  237. ** registers: tests producing values jump to 'vtarget' (and put their
  238. ** values in 'reg'), other tests jump to 'dtarget'.
  239. */
  240. static void patchlistaux (FuncState *fs, int list, int vtarget, int reg,
  241. int dtarget) {
  242. while (list != NO_JUMP) {
  243. int next = getjump(fs, list);
  244. if (patchtestreg(fs, list, reg))
  245. fixjump(fs, list, vtarget);
  246. else
  247. fixjump(fs, list, dtarget); /* jump to default target */
  248. list = next;
  249. }
  250. }
  251. /*
  252. ** Path all jumps in 'list' to jump to 'target'.
  253. ** (The assert means that we cannot fix a jump to a forward address
  254. ** because we only know addresses once code is generated.)
  255. */
  256. void luaK_patchlist (FuncState *fs, int list, int target) {
  257. lua_assert(target <= fs->pc);
  258. patchlistaux(fs, list, target, NO_REG, target);
  259. }
  260. void luaK_patchtohere (FuncState *fs, int list) {
  261. int hr = luaK_getlabel(fs); /* mark "here" as a jump target */
  262. luaK_patchlist(fs, list, hr);
  263. }
  264. /*
  265. ** MAXimum number of successive Instructions WiTHout ABSolute line
  266. ** information.
  267. */
  268. #if !defined(MAXIWTHABS)
  269. #define MAXIWTHABS 120
  270. #endif
  271. /* limit for difference between lines in relative line info. */
  272. #define LIMLINEDIFF 0x80
  273. /*
  274. ** Save line info for a new instruction. If difference from last line
  275. ** does not fit in a byte, of after that many instructions, save a new
  276. ** absolute line info; (in that case, the special value 'ABSLINEINFO'
  277. ** in 'lineinfo' signals the existence of this absolute information.)
  278. ** Otherwise, store the difference from last line in 'lineinfo'.
  279. */
  280. static void savelineinfo (FuncState *fs, Proto *f, int line) {
  281. int linedif = line - fs->previousline;
  282. int pc = fs->pc - 1; /* last instruction coded */
  283. if (abs(linedif) >= LIMLINEDIFF || fs->iwthabs++ > MAXIWTHABS) {
  284. luaM_growvector(fs->ls->L, f->abslineinfo, fs->nabslineinfo,
  285. f->sizeabslineinfo, AbsLineInfo, MAX_INT, "lines");
  286. f->abslineinfo[fs->nabslineinfo].pc = pc;
  287. f->abslineinfo[fs->nabslineinfo++].line = line;
  288. linedif = ABSLINEINFO; /* signal that there is absolute information */
  289. fs->iwthabs = 0; /* restart counter */
  290. }
  291. luaM_growvector(fs->ls->L, f->lineinfo, pc, f->sizelineinfo, ls_byte,
  292. MAX_INT, "opcodes");
  293. f->lineinfo[pc] = linedif;
  294. fs->previousline = line; /* last line saved */
  295. }
  296. /*
  297. ** Remove line information from the last instruction.
  298. ** If line information for that instruction is absolute, set 'iwthabs'
  299. ** above its max to force the new (replacing) instruction to have
  300. ** absolute line info, too.
  301. */
  302. static void removelastlineinfo (FuncState *fs) {
  303. Proto *f = fs->f;
  304. int pc = fs->pc - 1; /* last instruction coded */
  305. if (f->lineinfo[pc] != ABSLINEINFO) { /* relative line info? */
  306. fs->previousline -= f->lineinfo[pc]; /* correct last line saved */
  307. fs->iwthabs--; /* undo previous increment */
  308. }
  309. else { /* absolute line information */
  310. lua_assert(f->abslineinfo[fs->nabslineinfo - 1].pc == pc);
  311. fs->nabslineinfo--; /* remove it */
  312. fs->iwthabs = MAXIWTHABS + 1; /* force next line info to be absolute */
  313. }
  314. }
  315. /*
  316. ** Remove the last instruction created, correcting line information
  317. ** accordingly.
  318. */
  319. static void removelastinstruction (FuncState *fs) {
  320. removelastlineinfo(fs);
  321. fs->pc--;
  322. }
  323. /*
  324. ** Emit instruction 'i', checking for array sizes and saving also its
  325. ** line information. Return 'i' position.
  326. */
  327. int luaK_code (FuncState *fs, Instruction i) {
  328. Proto *f = fs->f;
  329. /* put new instruction in code array */
  330. luaM_growvector(fs->ls->L, f->code, fs->pc, f->sizecode, Instruction,
  331. MAX_INT, "opcodes");
  332. f->code[fs->pc++] = i;
  333. savelineinfo(fs, f, fs->ls->lastline);
  334. return fs->pc - 1; /* index of new instruction */
  335. }
  336. /*
  337. ** Format and emit an 'iABC' instruction. (Assertions check consistency
  338. ** of parameters versus opcode.)
  339. */
  340. int luaK_codeABCk (FuncState *fs, OpCode o, int a, int b, int c, int k) {
  341. lua_assert(getOpMode(o) == iABC);
  342. lua_assert(a <= MAXARG_A && b <= MAXARG_B &&
  343. c <= MAXARG_C && (k & ~1) == 0);
  344. return luaK_code(fs, CREATE_ABCk(o, a, b, c, k));
  345. }
  346. /*
  347. ** Format and emit an 'iABx' instruction.
  348. */
  349. int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {
  350. lua_assert(getOpMode(o) == iABx);
  351. lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx);
  352. return luaK_code(fs, CREATE_ABx(o, a, bc));
  353. }
  354. /*
  355. ** Format and emit an 'iAsBx' instruction.
  356. */
  357. int luaK_codeAsBx (FuncState *fs, OpCode o, int a, int bc) {
  358. unsigned int b = bc + OFFSET_sBx;
  359. lua_assert(getOpMode(o) == iAsBx);
  360. lua_assert(a <= MAXARG_A && b <= MAXARG_Bx);
  361. return luaK_code(fs, CREATE_ABx(o, a, b));
  362. }
  363. /*
  364. ** Format and emit an 'isJ' instruction.
  365. */
  366. static int codesJ (FuncState *fs, OpCode o, int sj, int k) {
  367. unsigned int j = sj + OFFSET_sJ;
  368. lua_assert(getOpMode(o) == isJ);
  369. lua_assert(j <= MAXARG_sJ && (k & ~1) == 0);
  370. return luaK_code(fs, CREATE_sJ(o, j, k));
  371. }
  372. /*
  373. ** Emit an "extra argument" instruction (format 'iAx')
  374. */
  375. static int codeextraarg (FuncState *fs, int a) {
  376. lua_assert(a <= MAXARG_Ax);
  377. return luaK_code(fs, CREATE_Ax(OP_EXTRAARG, a));
  378. }
  379. /*
  380. ** Emit a "load constant" instruction, using either 'OP_LOADK'
  381. ** (if constant index 'k' fits in 18 bits) or an 'OP_LOADKX'
  382. ** instruction with "extra argument".
  383. */
  384. static int luaK_codek (FuncState *fs, int reg, int k) {
  385. if (k <= MAXARG_Bx)
  386. return luaK_codeABx(fs, OP_LOADK, reg, k);
  387. else {
  388. int p = luaK_codeABx(fs, OP_LOADKX, reg, 0);
  389. codeextraarg(fs, k);
  390. return p;
  391. }
  392. }
  393. /*
  394. ** Check register-stack level, keeping track of its maximum size
  395. ** in field 'maxstacksize'
  396. */
  397. void luaK_checkstack (FuncState *fs, int n) {
  398. int newstack = fs->freereg + n;
  399. if (newstack > fs->f->maxstacksize) {
  400. if (newstack >= MAXREGS)
  401. luaX_syntaxerror(fs->ls,
  402. "function or expression needs too many registers");
  403. fs->f->maxstacksize = cast_byte(newstack);
  404. }
  405. }
  406. /*
  407. ** Reserve 'n' registers in register stack
  408. */
  409. void luaK_reserveregs (FuncState *fs, int n) {
  410. luaK_checkstack(fs, n);
  411. fs->freereg += n;
  412. }
  413. /*
  414. ** Free register 'reg', if it is neither a constant index nor
  415. ** a local variable.
  416. )
  417. */
  418. static void freereg (FuncState *fs, int reg) {
  419. if (reg >= luaY_nvarstack(fs)) {
  420. fs->freereg--;
  421. lua_assert(reg == fs->freereg);
  422. }
  423. }
  424. /*
  425. ** Free two registers in proper order
  426. */
  427. static void freeregs (FuncState *fs, int r1, int r2) {
  428. if (r1 > r2) {
  429. freereg(fs, r1);
  430. freereg(fs, r2);
  431. }
  432. else {
  433. freereg(fs, r2);
  434. freereg(fs, r1);
  435. }
  436. }
  437. /*
  438. ** Free register used by expression 'e' (if any)
  439. */
  440. static void freeexp (FuncState *fs, expdesc *e) {
  441. if (e->k == VNONRELOC)
  442. freereg(fs, e->u.info);
  443. }
  444. /*
  445. ** Free registers used by expressions 'e1' and 'e2' (if any) in proper
  446. ** order.
  447. */
  448. static void freeexps (FuncState *fs, expdesc *e1, expdesc *e2) {
  449. int r1 = (e1->k == VNONRELOC) ? e1->u.info : -1;
  450. int r2 = (e2->k == VNONRELOC) ? e2->u.info : -1;
  451. freeregs(fs, r1, r2);
  452. }
  453. /*
  454. ** Add constant 'v' to prototype's list of constants (field 'k').
  455. ** Use scanner's table to cache position of constants in constant list
  456. ** and try to reuse constants. Because some values should not be used
  457. ** as keys (nil cannot be a key, integer keys can collapse with float
  458. ** keys), the caller must provide a useful 'key' for indexing the cache.
  459. */
  460. static int addk (FuncState *fs, TValue *key, TValue *v) {
  461. lua_State *L = fs->ls->L;
  462. Proto *f = fs->f;
  463. TValue *idx = luaH_set(L, fs->ls->h, key); /* index scanner table */
  464. int k, oldsize;
  465. if (ttisinteger(idx)) { /* is there an index there? */
  466. k = cast_int(ivalue(idx));
  467. /* correct value? (warning: must distinguish floats from integers!) */
  468. if (k < fs->nk && ttypetag(&f->k[k]) == ttypetag(v) &&
  469. luaV_rawequalobj(&f->k[k], v))
  470. return k; /* reuse index */
  471. }
  472. /* constant not found; create a new entry */
  473. oldsize = f->sizek;
  474. k = fs->nk;
  475. /* numerical value does not need GC barrier;
  476. table has no metatable, so it does not need to invalidate cache */
  477. setivalue(idx, k);
  478. luaM_growvector(L, f->k, k, f->sizek, TValue, MAXARG_Ax, "constants");
  479. while (oldsize < f->sizek) setnilvalue(&f->k[oldsize++]);
  480. setobj(L, &f->k[k], v);
  481. fs->nk++;
  482. luaC_barrier(L, f, v);
  483. return k;
  484. }
  485. /*
  486. ** Add a string to list of constants and return its index.
  487. */
  488. static int stringK (FuncState *fs, TString *s) {
  489. TValue o;
  490. setsvalue(fs->ls->L, &o, s);
  491. return addk(fs, &o, &o); /* use string itself as key */
  492. }
  493. /*
  494. ** Add an integer to list of constants and return its index.
  495. ** Integers use userdata as keys to avoid collision with floats with
  496. ** same value; conversion to 'void*' is used only for hashing, so there
  497. ** are no "precision" problems.
  498. */
  499. static int luaK_intK (FuncState *fs, lua_Integer n) {
  500. TValue k, o;
  501. setpvalue(&k, cast_voidp(cast_sizet(n)));
  502. setivalue(&o, n);
  503. return addk(fs, &k, &o);
  504. }
  505. /*
  506. ** Add a float to list of constants and return its index.
  507. */
  508. static int luaK_numberK (FuncState *fs, lua_Number r) {
  509. TValue o;
  510. setfltvalue(&o, r);
  511. return addk(fs, &o, &o); /* use number itself as key */
  512. }
  513. /*
  514. ** Add a false to list of constants and return its index.
  515. */
  516. static int boolF (FuncState *fs) {
  517. TValue o;
  518. setbfvalue(&o);
  519. return addk(fs, &o, &o); /* use boolean itself as key */
  520. }
  521. /*
  522. ** Add a true to list of constants and return its index.
  523. */
  524. static int boolT (FuncState *fs) {
  525. TValue o;
  526. setbtvalue(&o);
  527. return addk(fs, &o, &o); /* use boolean itself as key */
  528. }
  529. /*
  530. ** Add nil to list of constants and return its index.
  531. */
  532. static int nilK (FuncState *fs) {
  533. TValue k, v;
  534. setnilvalue(&v);
  535. /* cannot use nil as key; instead use table itself to represent nil */
  536. sethvalue(fs->ls->L, &k, fs->ls->h);
  537. return addk(fs, &k, &v);
  538. }
  539. /*
  540. ** Check whether 'i' can be stored in an 'sC' operand. Equivalent to
  541. ** (0 <= int2sC(i) && int2sC(i) <= MAXARG_C) but without risk of
  542. ** overflows in the hidden addition inside 'int2sC'.
  543. */
  544. static int fitsC (lua_Integer i) {
  545. return (l_castS2U(i) + OFFSET_sC <= cast_uint(MAXARG_C));
  546. }
  547. /*
  548. ** Check whether 'i' can be stored in an 'sBx' operand.
  549. */
  550. static int fitsBx (lua_Integer i) {
  551. return (-OFFSET_sBx <= i && i <= MAXARG_Bx - OFFSET_sBx);
  552. }
  553. void luaK_int (FuncState *fs, int reg, lua_Integer i) {
  554. if (fitsBx(i))
  555. luaK_codeAsBx(fs, OP_LOADI, reg, cast_int(i));
  556. else
  557. luaK_codek(fs, reg, luaK_intK(fs, i));
  558. }
  559. static void luaK_float (FuncState *fs, int reg, lua_Number f) {
  560. lua_Integer fi;
  561. if (luaV_flttointeger(f, &fi, F2Ieq) && fitsBx(fi))
  562. luaK_codeAsBx(fs, OP_LOADF, reg, cast_int(fi));
  563. else
  564. luaK_codek(fs, reg, luaK_numberK(fs, f));
  565. }
  566. /*
  567. ** Convert a constant in 'v' into an expression description 'e'
  568. */
  569. static void const2exp (TValue *v, expdesc *e) {
  570. switch (ttypetag(v)) {
  571. case LUA_VNUMINT:
  572. e->k = VKINT; e->u.ival = ivalue(v);
  573. break;
  574. case LUA_VNUMFLT:
  575. e->k = VKFLT; e->u.nval = fltvalue(v);
  576. break;
  577. case LUA_VFALSE:
  578. e->k = VFALSE;
  579. break;
  580. case LUA_VTRUE:
  581. e->k = VTRUE;
  582. break;
  583. case LUA_VNIL:
  584. e->k = VNIL;
  585. break;
  586. case LUA_VSHRSTR: case LUA_VLNGSTR:
  587. e->k = VKSTR; e->u.strval = tsvalue(v);
  588. break;
  589. default: lua_assert(0);
  590. }
  591. }
  592. /*
  593. ** Fix an expression to return the number of results 'nresults'.
  594. ** Either 'e' is a multi-ret expression (function call or vararg)
  595. ** or 'nresults' is LUA_MULTRET (as any expression can satisfy that).
  596. */
  597. void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) {
  598. Instruction *pc = &getinstruction(fs, e);
  599. if (e->k == VCALL) /* expression is an open function call? */
  600. SETARG_C(*pc, nresults + 1);
  601. else if (e->k == VVARARG) {
  602. SETARG_C(*pc, nresults + 1);
  603. SETARG_A(*pc, fs->freereg);
  604. luaK_reserveregs(fs, 1);
  605. }
  606. else lua_assert(nresults == LUA_MULTRET);
  607. }
  608. /*
  609. ** Convert a VKSTR to a VK
  610. */
  611. static void str2K (FuncState *fs, expdesc *e) {
  612. lua_assert(e->k == VKSTR);
  613. e->u.info = stringK(fs, e->u.strval);
  614. e->k = VK;
  615. }
  616. /*
  617. ** Fix an expression to return one result.
  618. ** If expression is not a multi-ret expression (function call or
  619. ** vararg), it already returns one result, so nothing needs to be done.
  620. ** Function calls become VNONRELOC expressions (as its result comes
  621. ** fixed in the base register of the call), while vararg expressions
  622. ** become VRELOC (as OP_VARARG puts its results where it wants).
  623. ** (Calls are created returning one result, so that does not need
  624. ** to be fixed.)
  625. */
  626. void luaK_setoneret (FuncState *fs, expdesc *e) {
  627. if (e->k == VCALL) { /* expression is an open function call? */
  628. /* already returns 1 value */
  629. lua_assert(GETARG_C(getinstruction(fs, e)) == 2);
  630. e->k = VNONRELOC; /* result has fixed position */
  631. e->u.info = GETARG_A(getinstruction(fs, e));
  632. }
  633. else if (e->k == VVARARG) {
  634. SETARG_C(getinstruction(fs, e), 2);
  635. e->k = VRELOC; /* can relocate its simple result */
  636. }
  637. }
  638. /*
  639. ** Ensure that expression 'e' is not a variable (nor a constant).
  640. ** (Expression still may have jump lists.)
  641. */
  642. void luaK_dischargevars (FuncState *fs, expdesc *e) {
  643. switch (e->k) {
  644. case VCONST: {
  645. const2exp(const2val(fs, e), e);
  646. break;
  647. }
  648. case VLOCAL: { /* already in a register */
  649. e->u.info = e->u.var.sidx;
  650. e->k = VNONRELOC; /* becomes a non-relocatable value */
  651. break;
  652. }
  653. case VUPVAL: { /* move value to some (pending) register */
  654. e->u.info = luaK_codeABC(fs, OP_GETUPVAL, 0, e->u.info, 0);
  655. e->k = VRELOC;
  656. break;
  657. }
  658. case VINDEXUP: {
  659. e->u.info = luaK_codeABC(fs, OP_GETTABUP, 0, e->u.ind.t, e->u.ind.idx);
  660. e->k = VRELOC;
  661. break;
  662. }
  663. case VINDEXI: {
  664. freereg(fs, e->u.ind.t);
  665. e->u.info = luaK_codeABC(fs, OP_GETI, 0, e->u.ind.t, e->u.ind.idx);
  666. e->k = VRELOC;
  667. break;
  668. }
  669. case VINDEXSTR: {
  670. freereg(fs, e->u.ind.t);
  671. e->u.info = luaK_codeABC(fs, OP_GETFIELD, 0, e->u.ind.t, e->u.ind.idx);
  672. e->k = VRELOC;
  673. break;
  674. }
  675. case VINDEXED: {
  676. freeregs(fs, e->u.ind.t, e->u.ind.idx);
  677. e->u.info = luaK_codeABC(fs, OP_GETTABLE, 0, e->u.ind.t, e->u.ind.idx);
  678. e->k = VRELOC;
  679. break;
  680. }
  681. case VVARARG: case VCALL: {
  682. luaK_setoneret(fs, e);
  683. break;
  684. }
  685. default: break; /* there is one value available (somewhere) */
  686. }
  687. }
  688. /*
  689. ** Ensures expression value is in register 'reg' (and therefore
  690. ** 'e' will become a non-relocatable expression).
  691. ** (Expression still may have jump lists.)
  692. */
  693. static void discharge2reg (FuncState *fs, expdesc *e, int reg) {
  694. luaK_dischargevars(fs, e);
  695. switch (e->k) {
  696. case VNIL: {
  697. luaK_nil(fs, reg, 1);
  698. break;
  699. }
  700. case VFALSE: {
  701. luaK_codeABC(fs, OP_LOADFALSE, reg, 0, 0);
  702. break;
  703. }
  704. case VTRUE: {
  705. luaK_codeABC(fs, OP_LOADTRUE, reg, 0, 0);
  706. break;
  707. }
  708. case VKSTR: {
  709. str2K(fs, e);
  710. } /* FALLTHROUGH */
  711. case VK: {
  712. luaK_codek(fs, reg, e->u.info);
  713. break;
  714. }
  715. case VKFLT: {
  716. luaK_float(fs, reg, e->u.nval);
  717. break;
  718. }
  719. case VKINT: {
  720. luaK_int(fs, reg, e->u.ival);
  721. break;
  722. }
  723. case VRELOC: {
  724. Instruction *pc = &getinstruction(fs, e);
  725. SETARG_A(*pc, reg); /* instruction will put result in 'reg' */
  726. break;
  727. }
  728. case VNONRELOC: {
  729. if (reg != e->u.info)
  730. luaK_codeABC(fs, OP_MOVE, reg, e->u.info, 0);
  731. break;
  732. }
  733. default: {
  734. lua_assert(e->k == VJMP);
  735. return; /* nothing to do... */
  736. }
  737. }
  738. e->u.info = reg;
  739. e->k = VNONRELOC;
  740. }
  741. /*
  742. ** Ensures expression value is in any register.
  743. ** (Expression still may have jump lists.)
  744. */
  745. static void discharge2anyreg (FuncState *fs, expdesc *e) {
  746. if (e->k != VNONRELOC) { /* no fixed register yet? */
  747. luaK_reserveregs(fs, 1); /* get a register */
  748. discharge2reg(fs, e, fs->freereg-1); /* put value there */
  749. }
  750. }
  751. static int code_loadbool (FuncState *fs, int A, OpCode op) {
  752. luaK_getlabel(fs); /* those instructions may be jump targets */
  753. return luaK_codeABC(fs, op, A, 0, 0);
  754. }
  755. /*
  756. ** check whether list has any jump that do not produce a value
  757. ** or produce an inverted value
  758. */
  759. static int need_value (FuncState *fs, int list) {
  760. for (; list != NO_JUMP; list = getjump(fs, list)) {
  761. Instruction i = *getjumpcontrol(fs, list);
  762. if (GET_OPCODE(i) != OP_TESTSET) return 1;
  763. }
  764. return 0; /* not found */
  765. }
  766. /*
  767. ** Ensures final expression result (which includes results from its
  768. ** jump lists) is in register 'reg'.
  769. ** If expression has jumps, need to patch these jumps either to
  770. ** its final position or to "load" instructions (for those tests
  771. ** that do not produce values).
  772. */
  773. static void exp2reg (FuncState *fs, expdesc *e, int reg) {
  774. discharge2reg(fs, e, reg);
  775. if (e->k == VJMP) /* expression itself is a test? */
  776. luaK_concat(fs, &e->t, e->u.info); /* put this jump in 't' list */
  777. if (hasjumps(e)) {
  778. int final; /* position after whole expression */
  779. int p_f = NO_JUMP; /* position of an eventual LOAD false */
  780. int p_t = NO_JUMP; /* position of an eventual LOAD true */
  781. if (need_value(fs, e->t) || need_value(fs, e->f)) {
  782. int fj = (e->k == VJMP) ? NO_JUMP : luaK_jump(fs);
  783. p_f = code_loadbool(fs, reg, OP_LFALSESKIP); /* skip next inst. */
  784. p_t = code_loadbool(fs, reg, OP_LOADTRUE);
  785. /* jump around these booleans if 'e' is not a test */
  786. luaK_patchtohere(fs, fj);
  787. }
  788. final = luaK_getlabel(fs);
  789. patchlistaux(fs, e->f, final, reg, p_f);
  790. patchlistaux(fs, e->t, final, reg, p_t);
  791. }
  792. e->f = e->t = NO_JUMP;
  793. e->u.info = reg;
  794. e->k = VNONRELOC;
  795. }
  796. /*
  797. ** Ensures final expression result is in next available register.
  798. */
  799. void luaK_exp2nextreg (FuncState *fs, expdesc *e) {
  800. luaK_dischargevars(fs, e);
  801. freeexp(fs, e);
  802. luaK_reserveregs(fs, 1);
  803. exp2reg(fs, e, fs->freereg - 1);
  804. }
  805. /*
  806. ** Ensures final expression result is in some (any) register
  807. ** and return that register.
  808. */
  809. int luaK_exp2anyreg (FuncState *fs, expdesc *e) {
  810. luaK_dischargevars(fs, e);
  811. if (e->k == VNONRELOC) { /* expression already has a register? */
  812. if (!hasjumps(e)) /* no jumps? */
  813. return e->u.info; /* result is already in a register */
  814. if (e->u.info >= luaY_nvarstack(fs)) { /* reg. is not a local? */
  815. exp2reg(fs, e, e->u.info); /* put final result in it */
  816. return e->u.info;
  817. }
  818. }
  819. luaK_exp2nextreg(fs, e); /* otherwise, use next available register */
  820. return e->u.info;
  821. }
  822. /*
  823. ** Ensures final expression result is either in a register
  824. ** or in an upvalue.
  825. */
  826. void luaK_exp2anyregup (FuncState *fs, expdesc *e) {
  827. if (e->k != VUPVAL || hasjumps(e))
  828. luaK_exp2anyreg(fs, e);
  829. }
  830. /*
  831. ** Ensures final expression result is either in a register
  832. ** or it is a constant.
  833. */
  834. void luaK_exp2val (FuncState *fs, expdesc *e) {
  835. if (hasjumps(e))
  836. luaK_exp2anyreg(fs, e);
  837. else
  838. luaK_dischargevars(fs, e);
  839. }
  840. /*
  841. ** Try to make 'e' a K expression with an index in the range of R/K
  842. ** indices. Return true iff succeeded.
  843. */
  844. static int luaK_exp2K (FuncState *fs, expdesc *e) {
  845. if (!hasjumps(e)) {
  846. int info;
  847. switch (e->k) { /* move constants to 'k' */
  848. case VTRUE: info = boolT(fs); break;
  849. case VFALSE: info = boolF(fs); break;
  850. case VNIL: info = nilK(fs); break;
  851. case VKINT: info = luaK_intK(fs, e->u.ival); break;
  852. case VKFLT: info = luaK_numberK(fs, e->u.nval); break;
  853. case VKSTR: info = stringK(fs, e->u.strval); break;
  854. case VK: info = e->u.info; break;
  855. default: return 0; /* not a constant */
  856. }
  857. if (info <= MAXINDEXRK) { /* does constant fit in 'argC'? */
  858. e->k = VK; /* make expression a 'K' expression */
  859. e->u.info = info;
  860. return 1;
  861. }
  862. }
  863. /* else, expression doesn't fit; leave it unchanged */
  864. return 0;
  865. }
  866. /*
  867. ** Ensures final expression result is in a valid R/K index
  868. ** (that is, it is either in a register or in 'k' with an index
  869. ** in the range of R/K indices).
  870. ** Returns 1 iff expression is K.
  871. */
  872. int luaK_exp2RK (FuncState *fs, expdesc *e) {
  873. if (luaK_exp2K(fs, e))
  874. return 1;
  875. else { /* not a constant in the right range: put it in a register */
  876. luaK_exp2anyreg(fs, e);
  877. return 0;
  878. }
  879. }
  880. static void codeABRK (FuncState *fs, OpCode o, int a, int b,
  881. expdesc *ec) {
  882. int k = luaK_exp2RK(fs, ec);
  883. luaK_codeABCk(fs, o, a, b, ec->u.info, k);
  884. }
  885. /*
  886. ** Generate code to store result of expression 'ex' into variable 'var'.
  887. */
  888. void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) {
  889. switch (var->k) {
  890. case VLOCAL: {
  891. freeexp(fs, ex);
  892. exp2reg(fs, ex, var->u.var.sidx); /* compute 'ex' into proper place */
  893. return;
  894. }
  895. case VUPVAL: {
  896. int e = luaK_exp2anyreg(fs, ex);
  897. luaK_codeABC(fs, OP_SETUPVAL, e, var->u.info, 0);
  898. break;
  899. }
  900. case VINDEXUP: {
  901. codeABRK(fs, OP_SETTABUP, var->u.ind.t, var->u.ind.idx, ex);
  902. break;
  903. }
  904. case VINDEXI: {
  905. codeABRK(fs, OP_SETI, var->u.ind.t, var->u.ind.idx, ex);
  906. break;
  907. }
  908. case VINDEXSTR: {
  909. codeABRK(fs, OP_SETFIELD, var->u.ind.t, var->u.ind.idx, ex);
  910. break;
  911. }
  912. case VINDEXED: {
  913. codeABRK(fs, OP_SETTABLE, var->u.ind.t, var->u.ind.idx, ex);
  914. break;
  915. }
  916. default: lua_assert(0); /* invalid var kind to store */
  917. }
  918. freeexp(fs, ex);
  919. }
  920. /*
  921. ** Emit SELF instruction (convert expression 'e' into 'e:key(e,').
  922. */
  923. void luaK_self (FuncState *fs, expdesc *e, expdesc *key) {
  924. int ereg;
  925. luaK_exp2anyreg(fs, e);
  926. ereg = e->u.info; /* register where 'e' was placed */
  927. freeexp(fs, e);
  928. e->u.info = fs->freereg; /* base register for op_self */
  929. e->k = VNONRELOC; /* self expression has a fixed register */
  930. luaK_reserveregs(fs, 2); /* function and 'self' produced by op_self */
  931. codeABRK(fs, OP_SELF, e->u.info, ereg, key);
  932. freeexp(fs, key);
  933. }
  934. /*
  935. ** Negate condition 'e' (where 'e' is a comparison).
  936. */
  937. static void negatecondition (FuncState *fs, expdesc *e) {
  938. Instruction *pc = getjumpcontrol(fs, e->u.info);
  939. lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET &&
  940. GET_OPCODE(*pc) != OP_TEST);
  941. SETARG_k(*pc, (GETARG_k(*pc) ^ 1));
  942. }
  943. /*
  944. ** Emit instruction to jump if 'e' is 'cond' (that is, if 'cond'
  945. ** is true, code will jump if 'e' is true.) Return jump position.
  946. ** Optimize when 'e' is 'not' something, inverting the condition
  947. ** and removing the 'not'.
  948. */
  949. static int jumponcond (FuncState *fs, expdesc *e, int cond) {
  950. if (e->k == VRELOC) {
  951. Instruction ie = getinstruction(fs, e);
  952. if (GET_OPCODE(ie) == OP_NOT) {
  953. removelastinstruction(fs); /* remove previous OP_NOT */
  954. return condjump(fs, OP_TEST, GETARG_B(ie), 0, 0, !cond);
  955. }
  956. /* else go through */
  957. }
  958. discharge2anyreg(fs, e);
  959. freeexp(fs, e);
  960. return condjump(fs, OP_TESTSET, NO_REG, e->u.info, 0, cond);
  961. }
  962. /*
  963. ** Emit code to go through if 'e' is true, jump otherwise.
  964. */
  965. void luaK_goiftrue (FuncState *fs, expdesc *e) {
  966. int pc; /* pc of new jump */
  967. luaK_dischargevars(fs, e);
  968. switch (e->k) {
  969. case VJMP: { /* condition? */
  970. negatecondition(fs, e); /* jump when it is false */
  971. pc = e->u.info; /* save jump position */
  972. break;
  973. }
  974. case VK: case VKFLT: case VKINT: case VKSTR: case VTRUE: {
  975. pc = NO_JUMP; /* always true; do nothing */
  976. break;
  977. }
  978. default: {
  979. pc = jumponcond(fs, e, 0); /* jump when false */
  980. break;
  981. }
  982. }
  983. luaK_concat(fs, &e->f, pc); /* insert new jump in false list */
  984. luaK_patchtohere(fs, e->t); /* true list jumps to here (to go through) */
  985. e->t = NO_JUMP;
  986. }
  987. /*
  988. ** Emit code to go through if 'e' is false, jump otherwise.
  989. */
  990. void luaK_goiffalse (FuncState *fs, expdesc *e) {
  991. int pc; /* pc of new jump */
  992. luaK_dischargevars(fs, e);
  993. switch (e->k) {
  994. case VJMP: {
  995. pc = e->u.info; /* already jump if true */
  996. break;
  997. }
  998. case VNIL: case VFALSE: {
  999. pc = NO_JUMP; /* always false; do nothing */
  1000. break;
  1001. }
  1002. default: {
  1003. pc = jumponcond(fs, e, 1); /* jump if true */
  1004. break;
  1005. }
  1006. }
  1007. luaK_concat(fs, &e->t, pc); /* insert new jump in 't' list */
  1008. luaK_patchtohere(fs, e->f); /* false list jumps to here (to go through) */
  1009. e->f = NO_JUMP;
  1010. }
  1011. /*
  1012. ** Code 'not e', doing constant folding.
  1013. */
  1014. static void codenot (FuncState *fs, expdesc *e) {
  1015. switch (e->k) {
  1016. case VNIL: case VFALSE: {
  1017. e->k = VTRUE; /* true == not nil == not false */
  1018. break;
  1019. }
  1020. case VK: case VKFLT: case VKINT: case VKSTR: case VTRUE: {
  1021. e->k = VFALSE; /* false == not "x" == not 0.5 == not 1 == not true */
  1022. break;
  1023. }
  1024. case VJMP: {
  1025. negatecondition(fs, e);
  1026. break;
  1027. }
  1028. case VRELOC:
  1029. case VNONRELOC: {
  1030. discharge2anyreg(fs, e);
  1031. freeexp(fs, e);
  1032. e->u.info = luaK_codeABC(fs, OP_NOT, 0, e->u.info, 0);
  1033. e->k = VRELOC;
  1034. break;
  1035. }
  1036. default: lua_assert(0); /* cannot happen */
  1037. }
  1038. /* interchange true and false lists */
  1039. { int temp = e->f; e->f = e->t; e->t = temp; }
  1040. removevalues(fs, e->f); /* values are useless when negated */
  1041. removevalues(fs, e->t);
  1042. }
  1043. /*
  1044. ** Check whether expression 'e' is a small literal string
  1045. */
  1046. static int isKstr (FuncState *fs, expdesc *e) {
  1047. return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_B &&
  1048. ttisshrstring(&fs->f->k[e->u.info]));
  1049. }
  1050. /*
  1051. ** Check whether expression 'e' is a literal integer.
  1052. */
  1053. int luaK_isKint (expdesc *e) {
  1054. return (e->k == VKINT && !hasjumps(e));
  1055. }
  1056. /*
  1057. ** Check whether expression 'e' is a literal integer in
  1058. ** proper range to fit in register C
  1059. */
  1060. static int isCint (expdesc *e) {
  1061. return luaK_isKint(e) && (l_castS2U(e->u.ival) <= l_castS2U(MAXARG_C));
  1062. }
  1063. /*
  1064. ** Check whether expression 'e' is a literal integer in
  1065. ** proper range to fit in register sC
  1066. */
  1067. static int isSCint (expdesc *e) {
  1068. return luaK_isKint(e) && fitsC(e->u.ival);
  1069. }
  1070. /*
  1071. ** Check whether expression 'e' is a literal integer or float in
  1072. ** proper range to fit in a register (sB or sC).
  1073. */
  1074. static int isSCnumber (expdesc *e, int *pi, int *isfloat) {
  1075. lua_Integer i;
  1076. if (e->k == VKINT)
  1077. i = e->u.ival;
  1078. else if (e->k == VKFLT && luaV_flttointeger(e->u.nval, &i, F2Ieq))
  1079. *isfloat = 1;
  1080. else
  1081. return 0; /* not a number */
  1082. if (!hasjumps(e) && fitsC(i)) {
  1083. *pi = int2sC(cast_int(i));
  1084. return 1;
  1085. }
  1086. else
  1087. return 0;
  1088. }
  1089. /*
  1090. ** Create expression 't[k]'. 't' must have its final result already in a
  1091. ** register or upvalue. Upvalues can only be indexed by literal strings.
  1092. ** Keys can be literal strings in the constant table or arbitrary
  1093. ** values in registers.
  1094. */
  1095. void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) {
  1096. if (k->k == VKSTR)
  1097. str2K(fs, k);
  1098. lua_assert(!hasjumps(t) &&
  1099. (t->k == VLOCAL || t->k == VNONRELOC || t->k == VUPVAL));
  1100. if (t->k == VUPVAL && !isKstr(fs, k)) /* upvalue indexed by non 'Kstr'? */
  1101. luaK_exp2anyreg(fs, t); /* put it in a register */
  1102. if (t->k == VUPVAL) {
  1103. t->u.ind.t = t->u.info; /* upvalue index */
  1104. t->u.ind.idx = k->u.info; /* literal string */
  1105. t->k = VINDEXUP;
  1106. }
  1107. else {
  1108. /* register index of the table */
  1109. t->u.ind.t = (t->k == VLOCAL) ? t->u.var.sidx: t->u.info;
  1110. if (isKstr(fs, k)) {
  1111. t->u.ind.idx = k->u.info; /* literal string */
  1112. t->k = VINDEXSTR;
  1113. }
  1114. else if (isCint(k)) {
  1115. t->u.ind.idx = cast_int(k->u.ival); /* int. constant in proper range */
  1116. t->k = VINDEXI;
  1117. }
  1118. else {
  1119. t->u.ind.idx = luaK_exp2anyreg(fs, k); /* register */
  1120. t->k = VINDEXED;
  1121. }
  1122. }
  1123. }
  1124. /*
  1125. ** Return false if folding can raise an error.
  1126. ** Bitwise operations need operands convertible to integers; division
  1127. ** operations cannot have 0 as divisor.
  1128. */
  1129. static int validop (int op, TValue *v1, TValue *v2) {
  1130. switch (op) {
  1131. case LUA_OPBAND: case LUA_OPBOR: case LUA_OPBXOR:
  1132. case LUA_OPSHL: case LUA_OPSHR: case LUA_OPBNOT: { /* conversion errors */
  1133. lua_Integer i;
  1134. return (tointegerns(v1, &i) && tointegerns(v2, &i));
  1135. }
  1136. case LUA_OPDIV: case LUA_OPIDIV: case LUA_OPMOD: /* division by 0 */
  1137. return (nvalue(v2) != 0);
  1138. default: return 1; /* everything else is valid */
  1139. }
  1140. }
  1141. /*
  1142. ** Try to "constant-fold" an operation; return 1 iff successful.
  1143. ** (In this case, 'e1' has the final result.)
  1144. */
  1145. static int constfolding (FuncState *fs, int op, expdesc *e1,
  1146. const expdesc *e2) {
  1147. TValue v1, v2, res;
  1148. if (!tonumeral(e1, &v1) || !tonumeral(e2, &v2) || !validop(op, &v1, &v2))
  1149. return 0; /* non-numeric operands or not safe to fold */
  1150. luaO_rawarith(fs->ls->L, op, &v1, &v2, &res); /* does operation */
  1151. if (ttisinteger(&res)) {
  1152. e1->k = VKINT;
  1153. e1->u.ival = ivalue(&res);
  1154. }
  1155. else { /* folds neither NaN nor 0.0 (to avoid problems with -0.0) */
  1156. lua_Number n = fltvalue(&res);
  1157. if (luai_numisnan(n) || n == 0)
  1158. return 0;
  1159. e1->k = VKFLT;
  1160. e1->u.nval = n;
  1161. }
  1162. return 1;
  1163. }
  1164. /*
  1165. ** Emit code for unary expressions that "produce values"
  1166. ** (everything but 'not').
  1167. ** Expression to produce final result will be encoded in 'e'.
  1168. */
  1169. static void codeunexpval (FuncState *fs, OpCode op, expdesc *e, int line) {
  1170. int r = luaK_exp2anyreg(fs, e); /* opcodes operate only on registers */
  1171. freeexp(fs, e);
  1172. e->u.info = luaK_codeABC(fs, op, 0, r, 0); /* generate opcode */
  1173. e->k = VRELOC; /* all those operations are relocatable */
  1174. luaK_fixline(fs, line);
  1175. }
  1176. /*
  1177. ** Emit code for binary expressions that "produce values"
  1178. ** (everything but logical operators 'and'/'or' and comparison
  1179. ** operators).
  1180. ** Expression to produce final result will be encoded in 'e1'.
  1181. */
  1182. static void finishbinexpval (FuncState *fs, expdesc *e1, expdesc *e2,
  1183. OpCode op, int v2, int flip, int line,
  1184. OpCode mmop, TMS event) {
  1185. int v1 = luaK_exp2anyreg(fs, e1);
  1186. int pc = luaK_codeABCk(fs, op, 0, v1, v2, 0);
  1187. freeexps(fs, e1, e2);
  1188. e1->u.info = pc;
  1189. e1->k = VRELOC; /* all those operations are relocatable */
  1190. luaK_fixline(fs, line);
  1191. luaK_codeABCk(fs, mmop, v1, v2, event, flip); /* to call metamethod */
  1192. luaK_fixline(fs, line);
  1193. }
  1194. /*
  1195. ** Emit code for binary expressions that "produce values" over
  1196. ** two registers.
  1197. */
  1198. static void codebinexpval (FuncState *fs, OpCode op,
  1199. expdesc *e1, expdesc *e2, int line) {
  1200. int v2 = luaK_exp2anyreg(fs, e2); /* both operands are in registers */
  1201. lua_assert(OP_ADD <= op && op <= OP_SHR);
  1202. finishbinexpval(fs, e1, e2, op, v2, 0, line, OP_MMBIN,
  1203. cast(TMS, (op - OP_ADD) + TM_ADD));
  1204. }
  1205. /*
  1206. ** Code binary operators with immediate operands.
  1207. */
  1208. static void codebini (FuncState *fs, OpCode op,
  1209. expdesc *e1, expdesc *e2, int flip, int line,
  1210. TMS event) {
  1211. int v2 = int2sC(cast_int(e2->u.ival)); /* immediate operand */
  1212. lua_assert(e2->k == VKINT);
  1213. finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINI, event);
  1214. }
  1215. /* Try to code a binary operator negating its second operand.
  1216. ** For the metamethod, 2nd operand must keep its original value.
  1217. */
  1218. static int finishbinexpneg (FuncState *fs, expdesc *e1, expdesc *e2,
  1219. OpCode op, int line, TMS event) {
  1220. if (!luaK_isKint(e2))
  1221. return 0; /* not an integer constant */
  1222. else {
  1223. lua_Integer i2 = e2->u.ival;
  1224. if (!(fitsC(i2) && fitsC(-i2)))
  1225. return 0; /* not in the proper range */
  1226. else { /* operating a small integer constant */
  1227. int v2 = cast_int(i2);
  1228. finishbinexpval(fs, e1, e2, op, int2sC(-v2), 0, line, OP_MMBINI, event);
  1229. /* correct metamethod argument */
  1230. SETARG_B(fs->f->code[fs->pc - 1], int2sC(v2));
  1231. return 1; /* successfully coded */
  1232. }
  1233. }
  1234. }
  1235. static void swapexps (expdesc *e1, expdesc *e2) {
  1236. expdesc temp = *e1; *e1 = *e2; *e2 = temp; /* swap 'e1' and 'e2' */
  1237. }
  1238. /*
  1239. ** Code arithmetic operators ('+', '-', ...). If second operand is a
  1240. ** constant in the proper range, use variant opcodes with K operands.
  1241. */
  1242. static void codearith (FuncState *fs, BinOpr opr,
  1243. expdesc *e1, expdesc *e2, int flip, int line) {
  1244. TMS event = cast(TMS, opr + TM_ADD);
  1245. if (tonumeral(e2, NULL) && luaK_exp2K(fs, e2)) { /* K operand? */
  1246. int v2 = e2->u.info; /* K index */
  1247. OpCode op = cast(OpCode, opr + OP_ADDK);
  1248. finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINK, event);
  1249. }
  1250. else { /* 'e2' is neither an immediate nor a K operand */
  1251. OpCode op = cast(OpCode, opr + OP_ADD);
  1252. if (flip)
  1253. swapexps(e1, e2); /* back to original order */
  1254. codebinexpval(fs, op, e1, e2, line); /* use standard operators */
  1255. }
  1256. }
  1257. /*
  1258. ** Code commutative operators ('+', '*'). If first operand is a
  1259. ** numeric constant, change order of operands to try to use an
  1260. ** immediate or K operator.
  1261. */
  1262. static void codecommutative (FuncState *fs, BinOpr op,
  1263. expdesc *e1, expdesc *e2, int line) {
  1264. int flip = 0;
  1265. if (tonumeral(e1, NULL)) { /* is first operand a numeric constant? */
  1266. swapexps(e1, e2); /* change order */
  1267. flip = 1;
  1268. }
  1269. if (op == OPR_ADD && isSCint(e2)) /* immediate operand? */
  1270. codebini(fs, cast(OpCode, OP_ADDI), e1, e2, flip, line, TM_ADD);
  1271. else
  1272. codearith(fs, op, e1, e2, flip, line);
  1273. }
  1274. /*
  1275. ** Code bitwise operations; they are all associative, so the function
  1276. ** tries to put an integer constant as the 2nd operand (a K operand).
  1277. */
  1278. static void codebitwise (FuncState *fs, BinOpr opr,
  1279. expdesc *e1, expdesc *e2, int line) {
  1280. int flip = 0;
  1281. int v2;
  1282. OpCode op;
  1283. if (e1->k == VKINT && luaK_exp2RK(fs, e1)) {
  1284. swapexps(e1, e2); /* 'e2' will be the constant operand */
  1285. flip = 1;
  1286. }
  1287. else if (!(e2->k == VKINT && luaK_exp2RK(fs, e2))) { /* no constants? */
  1288. op = cast(OpCode, opr + OP_ADD);
  1289. codebinexpval(fs, op, e1, e2, line); /* all-register opcodes */
  1290. return;
  1291. }
  1292. v2 = e2->u.info; /* index in K array */
  1293. op = cast(OpCode, opr + OP_ADDK);
  1294. lua_assert(ttisinteger(&fs->f->k[v2]));
  1295. finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINK,
  1296. cast(TMS, opr + TM_ADD));
  1297. }
  1298. /*
  1299. ** Emit code for order comparisons. When using an immediate operand,
  1300. ** 'isfloat' tells whether the original value was a float.
  1301. */
  1302. static void codeorder (FuncState *fs, OpCode op, expdesc *e1, expdesc *e2) {
  1303. int r1, r2;
  1304. int im;
  1305. int isfloat = 0;
  1306. if (isSCnumber(e2, &im, &isfloat)) {
  1307. /* use immediate operand */
  1308. r1 = luaK_exp2anyreg(fs, e1);
  1309. r2 = im;
  1310. op = cast(OpCode, (op - OP_LT) + OP_LTI);
  1311. }
  1312. else if (isSCnumber(e1, &im, &isfloat)) {
  1313. /* transform (A < B) to (B > A) and (A <= B) to (B >= A) */
  1314. r1 = luaK_exp2anyreg(fs, e2);
  1315. r2 = im;
  1316. op = (op == OP_LT) ? OP_GTI : OP_GEI;
  1317. }
  1318. else { /* regular case, compare two registers */
  1319. r1 = luaK_exp2anyreg(fs, e1);
  1320. r2 = luaK_exp2anyreg(fs, e2);
  1321. }
  1322. freeexps(fs, e1, e2);
  1323. e1->u.info = condjump(fs, op, r1, r2, isfloat, 1);
  1324. e1->k = VJMP;
  1325. }
  1326. /*
  1327. ** Emit code for equality comparisons ('==', '~=').
  1328. ** 'e1' was already put as RK by 'luaK_infix'.
  1329. */
  1330. static void codeeq (FuncState *fs, BinOpr opr, expdesc *e1, expdesc *e2) {
  1331. int r1, r2;
  1332. int im;
  1333. int isfloat = 0; /* not needed here, but kept for symmetry */
  1334. OpCode op;
  1335. if (e1->k != VNONRELOC) {
  1336. lua_assert(e1->k == VK || e1->k == VKINT || e1->k == VKFLT);
  1337. swapexps(e1, e2);
  1338. }
  1339. r1 = luaK_exp2anyreg(fs, e1); /* 1st expression must be in register */
  1340. if (isSCnumber(e2, &im, &isfloat)) {
  1341. op = OP_EQI;
  1342. r2 = im; /* immediate operand */
  1343. }
  1344. else if (luaK_exp2RK(fs, e2)) { /* 1st expression is constant? */
  1345. op = OP_EQK;
  1346. r2 = e2->u.info; /* constant index */
  1347. }
  1348. else {
  1349. op = OP_EQ; /* will compare two registers */
  1350. r2 = luaK_exp2anyreg(fs, e2);
  1351. }
  1352. freeexps(fs, e1, e2);
  1353. e1->u.info = condjump(fs, op, r1, r2, isfloat, (opr == OPR_EQ));
  1354. e1->k = VJMP;
  1355. }
  1356. /*
  1357. ** Apply prefix operation 'op' to expression 'e'.
  1358. */
  1359. void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) {
  1360. static const expdesc ef = {VKINT, {0}, NO_JUMP, NO_JUMP};
  1361. luaK_dischargevars(fs, e);
  1362. switch (op) {
  1363. case OPR_MINUS: case OPR_BNOT: /* use 'ef' as fake 2nd operand */
  1364. if (constfolding(fs, op + LUA_OPUNM, e, &ef))
  1365. break;
  1366. /* else */ /* FALLTHROUGH */
  1367. case OPR_LEN:
  1368. codeunexpval(fs, cast(OpCode, op + OP_UNM), e, line);
  1369. break;
  1370. case OPR_NOT: codenot(fs, e); break;
  1371. default: lua_assert(0);
  1372. }
  1373. }
  1374. /*
  1375. ** Process 1st operand 'v' of binary operation 'op' before reading
  1376. ** 2nd operand.
  1377. */
  1378. void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) {
  1379. luaK_dischargevars(fs, v);
  1380. switch (op) {
  1381. case OPR_AND: {
  1382. luaK_goiftrue(fs, v); /* go ahead only if 'v' is true */
  1383. break;
  1384. }
  1385. case OPR_OR: {
  1386. luaK_goiffalse(fs, v); /* go ahead only if 'v' is false */
  1387. break;
  1388. }
  1389. case OPR_CONCAT: {
  1390. luaK_exp2nextreg(fs, v); /* operand must be on the stack */
  1391. break;
  1392. }
  1393. case OPR_ADD: case OPR_SUB:
  1394. case OPR_MUL: case OPR_DIV: case OPR_IDIV:
  1395. case OPR_MOD: case OPR_POW:
  1396. case OPR_BAND: case OPR_BOR: case OPR_BXOR:
  1397. case OPR_SHL: case OPR_SHR: {
  1398. if (!tonumeral(v, NULL))
  1399. luaK_exp2anyreg(fs, v);
  1400. /* else keep numeral, which may be folded with 2nd operand */
  1401. break;
  1402. }
  1403. case OPR_EQ: case OPR_NE: {
  1404. if (!tonumeral(v, NULL))
  1405. luaK_exp2RK(fs, v);
  1406. /* else keep numeral, which may be an immediate operand */
  1407. break;
  1408. }
  1409. case OPR_LT: case OPR_LE:
  1410. case OPR_GT: case OPR_GE: {
  1411. int dummy, dummy2;
  1412. if (!isSCnumber(v, &dummy, &dummy2))
  1413. luaK_exp2anyreg(fs, v);
  1414. /* else keep numeral, which may be an immediate operand */
  1415. break;
  1416. }
  1417. default: lua_assert(0);
  1418. }
  1419. }
  1420. /*
  1421. ** Create code for '(e1 .. e2)'.
  1422. ** For '(e1 .. e2.1 .. e2.2)' (which is '(e1 .. (e2.1 .. e2.2))',
  1423. ** because concatenation is right associative), merge both CONCATs.
  1424. */
  1425. static void codeconcat (FuncState *fs, expdesc *e1, expdesc *e2, int line) {
  1426. Instruction *ie2 = previousinstruction(fs);
  1427. if (GET_OPCODE(*ie2) == OP_CONCAT) { /* is 'e2' a concatenation? */
  1428. int n = GETARG_B(*ie2); /* # of elements concatenated in 'e2' */
  1429. lua_assert(e1->u.info + 1 == GETARG_A(*ie2));
  1430. freeexp(fs, e2);
  1431. SETARG_A(*ie2, e1->u.info); /* correct first element ('e1') */
  1432. SETARG_B(*ie2, n + 1); /* will concatenate one more element */
  1433. }
  1434. else { /* 'e2' is not a concatenation */
  1435. luaK_codeABC(fs, OP_CONCAT, e1->u.info, 2, 0); /* new concat opcode */
  1436. freeexp(fs, e2);
  1437. luaK_fixline(fs, line);
  1438. }
  1439. }
  1440. /*
  1441. ** Finalize code for binary operation, after reading 2nd operand.
  1442. */
  1443. void luaK_posfix (FuncState *fs, BinOpr opr,
  1444. expdesc *e1, expdesc *e2, int line) {
  1445. luaK_dischargevars(fs, e2);
  1446. if (foldbinop(opr) && constfolding(fs, opr + LUA_OPADD, e1, e2))
  1447. return; /* done by folding */
  1448. switch (opr) {
  1449. case OPR_AND: {
  1450. lua_assert(e1->t == NO_JUMP); /* list closed by 'luaK_infix' */
  1451. luaK_concat(fs, &e2->f, e1->f);
  1452. *e1 = *e2;
  1453. break;
  1454. }
  1455. case OPR_OR: {
  1456. lua_assert(e1->f == NO_JUMP); /* list closed by 'luaK_infix' */
  1457. luaK_concat(fs, &e2->t, e1->t);
  1458. *e1 = *e2;
  1459. break;
  1460. }
  1461. case OPR_CONCAT: { /* e1 .. e2 */
  1462. luaK_exp2nextreg(fs, e2);
  1463. codeconcat(fs, e1, e2, line);
  1464. break;
  1465. }
  1466. case OPR_ADD: case OPR_MUL: {
  1467. codecommutative(fs, opr, e1, e2, line);
  1468. break;
  1469. }
  1470. case OPR_SUB: {
  1471. if (finishbinexpneg(fs, e1, e2, OP_ADDI, line, TM_SUB))
  1472. break; /* coded as (r1 + -I) */
  1473. /* ELSE */
  1474. } /* FALLTHROUGH */
  1475. case OPR_DIV: case OPR_IDIV: case OPR_MOD: case OPR_POW: {
  1476. codearith(fs, opr, e1, e2, 0, line);
  1477. break;
  1478. }
  1479. case OPR_BAND: case OPR_BOR: case OPR_BXOR: {
  1480. codebitwise(fs, opr, e1, e2, line);
  1481. break;
  1482. }
  1483. case OPR_SHL: {
  1484. if (isSCint(e1)) {
  1485. swapexps(e1, e2);
  1486. codebini(fs, OP_SHLI, e1, e2, 1, line, TM_SHL); /* I << r2 */
  1487. }
  1488. else if (finishbinexpneg(fs, e1, e2, OP_SHRI, line, TM_SHL)) {
  1489. /* coded as (r1 >> -I) */;
  1490. }
  1491. else /* regular case (two registers) */
  1492. codebinexpval(fs, OP_SHL, e1, e2, line);
  1493. break;
  1494. }
  1495. case OPR_SHR: {
  1496. if (isSCint(e2))
  1497. codebini(fs, OP_SHRI, e1, e2, 0, line, TM_SHR); /* r1 >> I */
  1498. else /* regular case (two registers) */
  1499. codebinexpval(fs, OP_SHR, e1, e2, line);
  1500. break;
  1501. }
  1502. case OPR_EQ: case OPR_NE: {
  1503. codeeq(fs, opr, e1, e2);
  1504. break;
  1505. }
  1506. case OPR_LT: case OPR_LE: {
  1507. OpCode op = cast(OpCode, (opr - OPR_EQ) + OP_EQ);
  1508. codeorder(fs, op, e1, e2);
  1509. break;
  1510. }
  1511. case OPR_GT: case OPR_GE: {
  1512. /* '(a > b)' <=> '(b < a)'; '(a >= b)' <=> '(b <= a)' */
  1513. OpCode op = cast(OpCode, (opr - OPR_NE) + OP_EQ);
  1514. swapexps(e1, e2);
  1515. codeorder(fs, op, e1, e2);
  1516. break;
  1517. }
  1518. default: lua_assert(0);
  1519. }
  1520. }
  1521. /*
  1522. ** Change line information associated with current position, by removing
  1523. ** previous info and adding it again with new line.
  1524. */
  1525. void luaK_fixline (FuncState *fs, int line) {
  1526. removelastlineinfo(fs);
  1527. savelineinfo(fs, fs->f, line);
  1528. }
  1529. void luaK_settablesize (FuncState *fs, int pc, int ra, int asize, int hsize) {
  1530. Instruction *inst = &fs->f->code[pc];
  1531. int rb = (hsize != 0) ? luaO_ceillog2(hsize) + 1 : 0; /* hash size */
  1532. int extra = asize / (MAXARG_C + 1); /* higher bits of array size */
  1533. int rc = asize % (MAXARG_C + 1); /* lower bits of array size */
  1534. int k = (extra > 0); /* true iff needs extra argument */
  1535. *inst = CREATE_ABCk(OP_NEWTABLE, ra, rb, rc, k);
  1536. *(inst + 1) = CREATE_Ax(OP_EXTRAARG, extra);
  1537. }
  1538. /*
  1539. ** Emit a SETLIST instruction.
  1540. ** 'base' is register that keeps table;
  1541. ** 'nelems' is #table plus those to be stored now;
  1542. ** 'tostore' is number of values (in registers 'base + 1',...) to add to
  1543. ** table (or LUA_MULTRET to add up to stack top).
  1544. */
  1545. void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) {
  1546. lua_assert(tostore != 0 && tostore <= LFIELDS_PER_FLUSH);
  1547. if (tostore == LUA_MULTRET)
  1548. tostore = 0;
  1549. if (nelems <= MAXARG_C)
  1550. luaK_codeABC(fs, OP_SETLIST, base, tostore, nelems);
  1551. else {
  1552. int extra = nelems / (MAXARG_C + 1);
  1553. nelems %= (MAXARG_C + 1);
  1554. luaK_codeABCk(fs, OP_SETLIST, base, tostore, nelems, 1);
  1555. codeextraarg(fs, extra);
  1556. }
  1557. fs->freereg = base + 1; /* free registers with list values */
  1558. }
  1559. /*
  1560. ** return the final target of a jump (skipping jumps to jumps)
  1561. */
  1562. static int finaltarget (Instruction *code, int i) {
  1563. int count;
  1564. for (count = 0; count < 100; count++) { /* avoid infinite loops */
  1565. Instruction pc = code[i];
  1566. if (GET_OPCODE(pc) != OP_JMP)
  1567. break;
  1568. else
  1569. i += GETARG_sJ(pc) + 1;
  1570. }
  1571. return i;
  1572. }
  1573. /*
  1574. ** Do a final pass over the code of a function, doing small peephole
  1575. ** optimizations and adjustments.
  1576. */
  1577. void luaK_finish (FuncState *fs) {
  1578. int i;
  1579. Proto *p = fs->f;
  1580. for (i = 0; i < fs->pc; i++) {
  1581. Instruction *pc = &p->code[i];
  1582. lua_assert(i == 0 || isOT(*(pc - 1)) == isIT(*pc));
  1583. switch (GET_OPCODE(*pc)) {
  1584. case OP_RETURN0: case OP_RETURN1: {
  1585. if (!(fs->needclose || p->is_vararg))
  1586. break; /* no extra work */
  1587. /* else use OP_RETURN to do the extra work */
  1588. SET_OPCODE(*pc, OP_RETURN);
  1589. } /* FALLTHROUGH */
  1590. case OP_RETURN: case OP_TAILCALL: {
  1591. if (fs->needclose)
  1592. SETARG_k(*pc, 1); /* signal that it needs to close */
  1593. if (p->is_vararg)
  1594. SETARG_C(*pc, p->numparams + 1); /* signal that it is vararg */
  1595. break;
  1596. }
  1597. case OP_JMP: {
  1598. int target = finaltarget(p->code, i);
  1599. fixjump(fs, i, target);
  1600. break;
  1601. }
  1602. default: break;
  1603. }
  1604. }
  1605. }