lcode.c 56 KB

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