lcode.c 52 KB

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