lvm.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  1. /*
  2. ** $Id: lvm.c $
  3. ** Lua virtual machine
  4. ** See Copyright Notice in lua.h
  5. */
  6. #define lvm_c
  7. #define LUA_CORE
  8. #include "lprefix.h"
  9. #include <float.h>
  10. #include <limits.h>
  11. #include <math.h>
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include "lua.h"
  16. #include "ldebug.h"
  17. #include "ldo.h"
  18. #include "lfunc.h"
  19. #include "lgc.h"
  20. #include "lobject.h"
  21. #include "lopcodes.h"
  22. #include "lstate.h"
  23. #include "lstring.h"
  24. #include "ltable.h"
  25. #include "ltm.h"
  26. #include "lvm.h"
  27. /*
  28. ** By default, use jump tables in the main interpreter loop on gcc
  29. ** and compatible compilers.
  30. */
  31. #if !defined(LUA_USE_JUMPTABLE)
  32. #if defined(__GNUC__)
  33. #define LUA_USE_JUMPTABLE 1
  34. #else
  35. #define LUA_USE_JUMPTABLE 0
  36. #endif
  37. #endif
  38. /* limit for table tag-method chains (to avoid infinite loops) */
  39. #define MAXTAGLOOP 2000
  40. /*
  41. ** 'l_intfitsf' checks whether a given integer is in the range that
  42. ** can be converted to a float without rounding. Used in comparisons.
  43. */
  44. /* number of bits in the mantissa of a float */
  45. #define NBM (l_floatatt(MANT_DIG))
  46. /*
  47. ** Check whether some integers may not fit in a float, testing whether
  48. ** (maxinteger >> NBM) > 0. (That implies (1 << NBM) <= maxinteger.)
  49. ** (The shifts are done in parts, to avoid shifting by more than the size
  50. ** of an integer. In a worst case, NBM == 113 for long double and
  51. ** sizeof(long) == 32.)
  52. */
  53. #if ((((LUA_MAXINTEGER >> (NBM / 4)) >> (NBM / 4)) >> (NBM / 4)) \
  54. >> (NBM - (3 * (NBM / 4)))) > 0
  55. /* limit for integers that fit in a float */
  56. #define MAXINTFITSF ((lua_Unsigned)1 << NBM)
  57. /* check whether 'i' is in the interval [-MAXINTFITSF, MAXINTFITSF] */
  58. #define l_intfitsf(i) ((MAXINTFITSF + l_castS2U(i)) <= (2 * MAXINTFITSF))
  59. #else /* all integers fit in a float precisely */
  60. #define l_intfitsf(i) 1
  61. #endif
  62. /*
  63. ** Try to convert a value from string to a number value.
  64. ** If the value is not a string or is a string not representing
  65. ** a valid numeral (or if coercions from strings to numbers
  66. ** are disabled via macro 'cvt2num'), do not modify 'result'
  67. ** and return 0.
  68. */
  69. static int l_strton (const TValue *obj, TValue *result) {
  70. lua_assert(obj != result);
  71. if (!cvt2num(obj)) /* is object not a string? */
  72. return 0;
  73. else
  74. return (luaO_str2num(svalue(obj), result) == vslen(obj) + 1);
  75. }
  76. /*
  77. ** Try to convert a value to a float. The float case is already handled
  78. ** by the macro 'tonumber'.
  79. */
  80. int luaV_tonumber_ (const TValue *obj, lua_Number *n) {
  81. TValue v;
  82. if (ttisinteger(obj)) {
  83. *n = cast_num(ivalue(obj));
  84. return 1;
  85. }
  86. else if (l_strton(obj, &v)) { /* string coercible to number? */
  87. *n = nvalue(&v); /* convert result of 'luaO_str2num' to a float */
  88. return 1;
  89. }
  90. else
  91. return 0; /* conversion failed */
  92. }
  93. /*
  94. ** try to convert a float to an integer, rounding according to 'mode'.
  95. */
  96. int luaV_flttointeger (lua_Number n, lua_Integer *p, F2Imod mode) {
  97. lua_Number f = l_floor(n);
  98. if (n != f) { /* not an integral value? */
  99. if (mode == F2Ieq) return 0; /* fails if mode demands integral value */
  100. else if (mode == F2Iceil) /* needs ceil? */
  101. f += 1; /* convert floor to ceil (remember: n != f) */
  102. }
  103. return lua_numbertointeger(f, p);
  104. }
  105. /*
  106. ** try to convert a value to an integer, rounding according to 'mode',
  107. ** without string coercion.
  108. ** ("Fast track" handled by macro 'tointegerns'.)
  109. */
  110. int luaV_tointegerns (const TValue *obj, lua_Integer *p, F2Imod mode) {
  111. if (ttisfloat(obj))
  112. return luaV_flttointeger(fltvalue(obj), p, mode);
  113. else if (ttisinteger(obj)) {
  114. *p = ivalue(obj);
  115. return 1;
  116. }
  117. else
  118. return 0;
  119. }
  120. /*
  121. ** try to convert a value to an integer.
  122. */
  123. int luaV_tointeger (const TValue *obj, lua_Integer *p, F2Imod mode) {
  124. TValue v;
  125. if (l_strton(obj, &v)) /* does 'obj' point to a numerical string? */
  126. obj = &v; /* change it to point to its corresponding number */
  127. return luaV_tointegerns(obj, p, mode);
  128. }
  129. /*
  130. ** Try to convert a 'for' limit to an integer, preserving the semantics
  131. ** of the loop. Return true if the loop must not run; otherwise, '*p'
  132. ** gets the integer limit.
  133. ** (The following explanation assumes a positive step; it is valid for
  134. ** negative steps mutatis mutandis.)
  135. ** If the limit is an integer or can be converted to an integer,
  136. ** rounding down, that is the limit.
  137. ** Otherwise, check whether the limit can be converted to a float. If
  138. ** the float is too large, clip it to LUA_MAXINTEGER. If the float
  139. ** is too negative, the loop should not run, because any initial
  140. ** integer value is greater than such limit; so, the function returns
  141. ** true to signal that. (For this latter case, no integer limit would be
  142. ** correct; even a limit of LUA_MININTEGER would run the loop once for
  143. ** an initial value equal to LUA_MININTEGER.)
  144. */
  145. static int forlimit (lua_State *L, lua_Integer init, const TValue *lim,
  146. lua_Integer *p, lua_Integer step) {
  147. if (!luaV_tointeger(lim, p, (step < 0 ? F2Iceil : F2Ifloor))) {
  148. /* not coercible to in integer */
  149. lua_Number flim; /* try to convert to float */
  150. if (!tonumber(lim, &flim)) /* cannot convert to float? */
  151. luaG_forerror(L, lim, "limit");
  152. /* else 'flim' is a float out of integer bounds */
  153. if (luai_numlt(0, flim)) { /* if it is positive, it is too large */
  154. if (step < 0) return 1; /* initial value must be less than it */
  155. *p = LUA_MAXINTEGER; /* truncate */
  156. }
  157. else { /* it is less than min integer */
  158. if (step > 0) return 1; /* initial value must be greater than it */
  159. *p = LUA_MININTEGER; /* truncate */
  160. }
  161. }
  162. return (step > 0 ? init > *p : init < *p); /* not to run? */
  163. }
  164. /*
  165. ** Prepare a numerical for loop (opcode OP_FORPREP).
  166. ** Return true to skip the loop. Otherwise,
  167. ** after preparation, stack will be as follows:
  168. ** ra : internal index (safe copy of the control variable)
  169. ** ra + 1 : loop counter (integer loops) or limit (float loops)
  170. ** ra + 2 : step
  171. ** ra + 3 : control variable
  172. */
  173. static int forprep (lua_State *L, StkId ra) {
  174. TValue *pinit = s2v(ra);
  175. TValue *plimit = s2v(ra + 1);
  176. TValue *pstep = s2v(ra + 2);
  177. if (ttisinteger(pinit) && ttisinteger(pstep)) { /* integer loop? */
  178. lua_Integer init = ivalue(pinit);
  179. lua_Integer step = ivalue(pstep);
  180. lua_Integer limit;
  181. if (step == 0)
  182. luaG_runerror(L, "'for' step is zero");
  183. setivalue(s2v(ra + 3), init); /* control variable */
  184. if (forlimit(L, init, plimit, &limit, step))
  185. return 1; /* skip the loop */
  186. else { /* prepare loop counter */
  187. lua_Unsigned count;
  188. if (step > 0) { /* ascending loop? */
  189. count = l_castS2U(limit) - l_castS2U(init);
  190. if (step != 1) /* avoid division in the too common case */
  191. count /= l_castS2U(step);
  192. }
  193. else { /* step < 0; descending loop */
  194. count = l_castS2U(init) - l_castS2U(limit);
  195. /* 'step+1' avoids negating 'mininteger' */
  196. count /= l_castS2U(-(step + 1)) + 1u;
  197. }
  198. /* store the counter in place of the limit (which won't be
  199. needed anymore */
  200. setivalue(plimit, l_castU2S(count));
  201. }
  202. }
  203. else { /* try making all values floats */
  204. lua_Number init; lua_Number limit; lua_Number step;
  205. if (unlikely(!tonumber(plimit, &limit)))
  206. luaG_forerror(L, plimit, "limit");
  207. if (unlikely(!tonumber(pstep, &step)))
  208. luaG_forerror(L, pstep, "step");
  209. if (unlikely(!tonumber(pinit, &init)))
  210. luaG_forerror(L, pinit, "initial value");
  211. if (step == 0)
  212. luaG_runerror(L, "'for' step is zero");
  213. if (luai_numlt(0, step) ? luai_numlt(limit, init)
  214. : luai_numlt(init, limit))
  215. return 1; /* skip the loop */
  216. else {
  217. /* make sure internal values are all floats */
  218. setfltvalue(plimit, limit);
  219. setfltvalue(pstep, step);
  220. setfltvalue(s2v(ra), init); /* internal index */
  221. setfltvalue(s2v(ra + 3), init); /* control variable */
  222. }
  223. }
  224. return 0;
  225. }
  226. /*
  227. ** Execute a step of a float numerical for loop, returning
  228. ** true iff the loop must continue. (The integer case is
  229. ** written online with opcode OP_FORLOOP, for performance.)
  230. */
  231. static int floatforloop (StkId ra) {
  232. lua_Number step = fltvalue(s2v(ra + 2));
  233. lua_Number limit = fltvalue(s2v(ra + 1));
  234. lua_Number idx = fltvalue(s2v(ra)); /* internal index */
  235. idx = luai_numadd(L, idx, step); /* increment index */
  236. if (luai_numlt(0, step) ? luai_numle(idx, limit)
  237. : luai_numle(limit, idx)) {
  238. chgfltvalue(s2v(ra), idx); /* update internal index */
  239. setfltvalue(s2v(ra + 3), idx); /* and control variable */
  240. return 1; /* jump back */
  241. }
  242. else
  243. return 0; /* finish the loop */
  244. }
  245. /*
  246. ** Finish the table access 'val = t[key]'.
  247. ** if 'slot' is NULL, 't' is not a table; otherwise, 'slot' points to
  248. ** t[k] entry (which must be empty).
  249. */
  250. void luaV_finishget (lua_State *L, const TValue *t, TValue *key, StkId val,
  251. const TValue *slot) {
  252. int loop; /* counter to avoid infinite loops */
  253. const TValue *tm; /* metamethod */
  254. for (loop = 0; loop < MAXTAGLOOP; loop++) {
  255. if (slot == NULL) { /* 't' is not a table? */
  256. lua_assert(!ttistable(t));
  257. tm = luaT_gettmbyobj(L, t, TM_INDEX);
  258. if (unlikely(notm(tm)))
  259. luaG_typeerror(L, t, "index"); /* no metamethod */
  260. /* else will try the metamethod */
  261. }
  262. else { /* 't' is a table */
  263. lua_assert(isempty(slot));
  264. tm = fasttm(L, hvalue(t)->metatable, TM_INDEX); /* table's metamethod */
  265. if (tm == NULL) { /* no metamethod? */
  266. setnilvalue(s2v(val)); /* result is nil */
  267. return;
  268. }
  269. /* else will try the metamethod */
  270. }
  271. if (ttisfunction(tm)) { /* is metamethod a function? */
  272. luaT_callTMres(L, tm, t, key, val); /* call it */
  273. return;
  274. }
  275. t = tm; /* else try to access 'tm[key]' */
  276. if (luaV_fastget(L, t, key, slot, luaH_get)) { /* fast track? */
  277. setobj2s(L, val, slot); /* done */
  278. return;
  279. }
  280. /* else repeat (tail call 'luaV_finishget') */
  281. }
  282. luaG_runerror(L, "'__index' chain too long; possible loop");
  283. }
  284. /*
  285. ** Finish a table assignment 't[key] = val'.
  286. ** If 'slot' is NULL, 't' is not a table. Otherwise, 'slot' points
  287. ** to the entry 't[key]', or to a value with an absent key if there
  288. ** is no such entry. (The value at 'slot' must be empty, otherwise
  289. ** 'luaV_fastget' would have done the job.)
  290. */
  291. void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
  292. TValue *val, const TValue *slot) {
  293. int loop; /* counter to avoid infinite loops */
  294. for (loop = 0; loop < MAXTAGLOOP; loop++) {
  295. const TValue *tm; /* '__newindex' metamethod */
  296. if (slot != NULL) { /* is 't' a table? */
  297. Table *h = hvalue(t); /* save 't' table */
  298. lua_assert(isempty(slot)); /* slot must be empty */
  299. tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */
  300. if (tm == NULL) { /* no metamethod? */
  301. if (isabstkey(slot)) /* no previous entry? */
  302. slot = luaH_newkey(L, h, key); /* create one */
  303. /* no metamethod and (now) there is an entry with given key */
  304. setobj2t(L, cast(TValue *, slot), val); /* set its new value */
  305. invalidateTMcache(h);
  306. luaC_barrierback(L, obj2gco(h), val);
  307. return;
  308. }
  309. /* else will try the metamethod */
  310. }
  311. else { /* not a table; check metamethod */
  312. tm = luaT_gettmbyobj(L, t, TM_NEWINDEX);
  313. if (unlikely(notm(tm)))
  314. luaG_typeerror(L, t, "index");
  315. }
  316. /* try the metamethod */
  317. if (ttisfunction(tm)) {
  318. luaT_callTM(L, tm, t, key, val);
  319. return;
  320. }
  321. t = tm; /* else repeat assignment over 'tm' */
  322. if (luaV_fastget(L, t, key, slot, luaH_get)) {
  323. luaV_finishfastset(L, t, slot, val);
  324. return; /* done */
  325. }
  326. /* else 'return luaV_finishset(L, t, key, val, slot)' (loop) */
  327. }
  328. luaG_runerror(L, "'__newindex' chain too long; possible loop");
  329. }
  330. /*
  331. ** Compare two strings 'ls' x 'rs', returning an integer less-equal-
  332. ** -greater than zero if 'ls' is less-equal-greater than 'rs'.
  333. ** The code is a little tricky because it allows '\0' in the strings
  334. ** and it uses 'strcoll' (to respect locales) for each segments
  335. ** of the strings.
  336. */
  337. static int l_strcmp (const TString *ls, const TString *rs) {
  338. const char *l = getstr(ls);
  339. size_t ll = tsslen(ls);
  340. const char *r = getstr(rs);
  341. size_t lr = tsslen(rs);
  342. for (;;) { /* for each segment */
  343. int temp = strcoll(l, r);
  344. if (temp != 0) /* not equal? */
  345. return temp; /* done */
  346. else { /* strings are equal up to a '\0' */
  347. size_t len = strlen(l); /* index of first '\0' in both strings */
  348. if (len == lr) /* 'rs' is finished? */
  349. return (len == ll) ? 0 : 1; /* check 'ls' */
  350. else if (len == ll) /* 'ls' is finished? */
  351. return -1; /* 'ls' is less than 'rs' ('rs' is not finished) */
  352. /* both strings longer than 'len'; go on comparing after the '\0' */
  353. len++;
  354. l += len; ll -= len; r += len; lr -= len;
  355. }
  356. }
  357. }
  358. /*
  359. ** Check whether integer 'i' is less than float 'f'. If 'i' has an
  360. ** exact representation as a float ('l_intfitsf'), compare numbers as
  361. ** floats. Otherwise, use the equivalence 'i < f <=> i < ceil(f)'.
  362. ** If 'ceil(f)' is out of integer range, either 'f' is greater than
  363. ** all integers or less than all integers.
  364. ** (The test with 'l_intfitsf' is only for performance; the else
  365. ** case is correct for all values, but it is slow due to the conversion
  366. ** from float to int.)
  367. ** When 'f' is NaN, comparisons must result in false.
  368. */
  369. static int LTintfloat (lua_Integer i, lua_Number f) {
  370. if (l_intfitsf(i))
  371. return luai_numlt(cast_num(i), f); /* compare them as floats */
  372. else { /* i < f <=> i < ceil(f) */
  373. lua_Integer fi;
  374. if (luaV_flttointeger(f, &fi, F2Iceil)) /* fi = ceil(f) */
  375. return i < fi; /* compare them as integers */
  376. else /* 'f' is either greater or less than all integers */
  377. return f > 0; /* greater? */
  378. }
  379. }
  380. /*
  381. ** Check whether integer 'i' is less than or equal to float 'f'.
  382. ** See comments on previous function.
  383. */
  384. static int LEintfloat (lua_Integer i, lua_Number f) {
  385. if (l_intfitsf(i))
  386. return luai_numle(cast_num(i), f); /* compare them as floats */
  387. else { /* i <= f <=> i <= floor(f) */
  388. lua_Integer fi;
  389. if (luaV_flttointeger(f, &fi, F2Ifloor)) /* fi = floor(f) */
  390. return i <= fi; /* compare them as integers */
  391. else /* 'f' is either greater or less than all integers */
  392. return f > 0; /* greater? */
  393. }
  394. }
  395. /*
  396. ** Check whether float 'f' is less than integer 'i'.
  397. ** See comments on previous function.
  398. */
  399. static int LTfloatint (lua_Number f, lua_Integer i) {
  400. if (l_intfitsf(i))
  401. return luai_numlt(f, cast_num(i)); /* compare them as floats */
  402. else { /* f < i <=> floor(f) < i */
  403. lua_Integer fi;
  404. if (luaV_flttointeger(f, &fi, F2Ifloor)) /* fi = floor(f) */
  405. return fi < i; /* compare them as integers */
  406. else /* 'f' is either greater or less than all integers */
  407. return f < 0; /* less? */
  408. }
  409. }
  410. /*
  411. ** Check whether float 'f' is less than or equal to integer 'i'.
  412. ** See comments on previous function.
  413. */
  414. static int LEfloatint (lua_Number f, lua_Integer i) {
  415. if (l_intfitsf(i))
  416. return luai_numle(f, cast_num(i)); /* compare them as floats */
  417. else { /* f <= i <=> ceil(f) <= i */
  418. lua_Integer fi;
  419. if (luaV_flttointeger(f, &fi, F2Iceil)) /* fi = ceil(f) */
  420. return fi <= i; /* compare them as integers */
  421. else /* 'f' is either greater or less than all integers */
  422. return f < 0; /* less? */
  423. }
  424. }
  425. /*
  426. ** Return 'l < r', for numbers.
  427. */
  428. static int LTnum (const TValue *l, const TValue *r) {
  429. lua_assert(ttisnumber(l) && ttisnumber(r));
  430. if (ttisinteger(l)) {
  431. lua_Integer li = ivalue(l);
  432. if (ttisinteger(r))
  433. return li < ivalue(r); /* both are integers */
  434. else /* 'l' is int and 'r' is float */
  435. return LTintfloat(li, fltvalue(r)); /* l < r ? */
  436. }
  437. else {
  438. lua_Number lf = fltvalue(l); /* 'l' must be float */
  439. if (ttisfloat(r))
  440. return luai_numlt(lf, fltvalue(r)); /* both are float */
  441. else /* 'l' is float and 'r' is int */
  442. return LTfloatint(lf, ivalue(r));
  443. }
  444. }
  445. /*
  446. ** Return 'l <= r', for numbers.
  447. */
  448. static int LEnum (const TValue *l, const TValue *r) {
  449. lua_assert(ttisnumber(l) && ttisnumber(r));
  450. if (ttisinteger(l)) {
  451. lua_Integer li = ivalue(l);
  452. if (ttisinteger(r))
  453. return li <= ivalue(r); /* both are integers */
  454. else /* 'l' is int and 'r' is float */
  455. return LEintfloat(li, fltvalue(r)); /* l <= r ? */
  456. }
  457. else {
  458. lua_Number lf = fltvalue(l); /* 'l' must be float */
  459. if (ttisfloat(r))
  460. return luai_numle(lf, fltvalue(r)); /* both are float */
  461. else /* 'l' is float and 'r' is int */
  462. return LEfloatint(lf, ivalue(r));
  463. }
  464. }
  465. /*
  466. ** return 'l < r' for non-numbers.
  467. */
  468. static int lessthanothers (lua_State *L, const TValue *l, const TValue *r) {
  469. lua_assert(!ttisnumber(l) || !ttisnumber(r));
  470. if (ttisstring(l) && ttisstring(r)) /* both are strings? */
  471. return l_strcmp(tsvalue(l), tsvalue(r)) < 0;
  472. else
  473. return luaT_callorderTM(L, l, r, TM_LT);
  474. }
  475. /*
  476. ** Main operation less than; return 'l < r'.
  477. */
  478. int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) {
  479. if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */
  480. return LTnum(l, r);
  481. else return lessthanothers(L, l, r);
  482. }
  483. /*
  484. ** return 'l <= r' for non-numbers.
  485. */
  486. static int lessequalothers (lua_State *L, const TValue *l, const TValue *r) {
  487. lua_assert(!ttisnumber(l) || !ttisnumber(r));
  488. if (ttisstring(l) && ttisstring(r)) /* both are strings? */
  489. return l_strcmp(tsvalue(l), tsvalue(r)) <= 0;
  490. else
  491. return luaT_callorderTM(L, l, r, TM_LE);
  492. }
  493. /*
  494. ** Main operation less than or equal to; return 'l <= r'.
  495. */
  496. int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) {
  497. if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */
  498. return LEnum(l, r);
  499. else return lessequalothers(L, l, r);
  500. }
  501. /*
  502. ** Main operation for equality of Lua values; return 't1 == t2'.
  503. ** L == NULL means raw equality (no metamethods)
  504. */
  505. int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) {
  506. const TValue *tm;
  507. if (ttypetag(t1) != ttypetag(t2)) { /* not the same variant? */
  508. if (ttype(t1) != ttype(t2) || ttype(t1) != LUA_TNUMBER)
  509. return 0; /* only numbers can be equal with different variants */
  510. else { /* two numbers with different variants */
  511. lua_Integer i1, i2; /* compare them as integers */
  512. return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2);
  513. }
  514. }
  515. /* values have same type and same variant */
  516. switch (ttypetag(t1)) {
  517. case LUA_VNIL: case LUA_VFALSE: case LUA_VTRUE: return 1;
  518. case LUA_VNUMINT: return (ivalue(t1) == ivalue(t2));
  519. case LUA_VNUMFLT: return luai_numeq(fltvalue(t1), fltvalue(t2));
  520. case LUA_VLIGHTUSERDATA: return pvalue(t1) == pvalue(t2);
  521. case LUA_VLCF: return fvalue(t1) == fvalue(t2);
  522. case LUA_VSHRSTR: return eqshrstr(tsvalue(t1), tsvalue(t2));
  523. case LUA_VLNGSTR: return luaS_eqlngstr(tsvalue(t1), tsvalue(t2));
  524. case LUA_VUSERDATA: {
  525. if (uvalue(t1) == uvalue(t2)) return 1;
  526. else if (L == NULL) return 0;
  527. tm = fasttm(L, uvalue(t1)->metatable, TM_EQ);
  528. if (tm == NULL)
  529. tm = fasttm(L, uvalue(t2)->metatable, TM_EQ);
  530. break; /* will try TM */
  531. }
  532. case LUA_VTABLE: {
  533. if (hvalue(t1) == hvalue(t2)) return 1;
  534. else if (L == NULL) return 0;
  535. tm = fasttm(L, hvalue(t1)->metatable, TM_EQ);
  536. if (tm == NULL)
  537. tm = fasttm(L, hvalue(t2)->metatable, TM_EQ);
  538. break; /* will try TM */
  539. }
  540. default:
  541. return gcvalue(t1) == gcvalue(t2);
  542. }
  543. if (tm == NULL) /* no TM? */
  544. return 0; /* objects are different */
  545. else {
  546. luaT_callTMres(L, tm, t1, t2, L->top); /* call TM */
  547. return !l_isfalse(s2v(L->top));
  548. }
  549. }
  550. /* macro used by 'luaV_concat' to ensure that element at 'o' is a string */
  551. #define tostring(L,o) \
  552. (ttisstring(o) || (cvt2str(o) && (luaO_tostring(L, o), 1)))
  553. #define isemptystr(o) (ttisshrstring(o) && tsvalue(o)->shrlen == 0)
  554. /* copy strings in stack from top - n up to top - 1 to buffer */
  555. static void copy2buff (StkId top, int n, char *buff) {
  556. size_t tl = 0; /* size already copied */
  557. do {
  558. size_t l = vslen(s2v(top - n)); /* length of string being copied */
  559. memcpy(buff + tl, svalue(s2v(top - n)), l * sizeof(char));
  560. tl += l;
  561. } while (--n > 0);
  562. }
  563. /*
  564. ** Main operation for concatenation: concat 'total' values in the stack,
  565. ** from 'L->top - total' up to 'L->top - 1'.
  566. */
  567. void luaV_concat (lua_State *L, int total) {
  568. lua_assert(total >= 2);
  569. do {
  570. StkId top = L->top;
  571. int n = 2; /* number of elements handled in this pass (at least 2) */
  572. if (!(ttisstring(s2v(top - 2)) || cvt2str(s2v(top - 2))) ||
  573. !tostring(L, s2v(top - 1)))
  574. luaT_tryconcatTM(L);
  575. else if (isemptystr(s2v(top - 1))) /* second operand is empty? */
  576. cast_void(tostring(L, s2v(top - 2))); /* result is first operand */
  577. else if (isemptystr(s2v(top - 2))) { /* first operand is empty string? */
  578. setobjs2s(L, top - 2, top - 1); /* result is second op. */
  579. }
  580. else {
  581. /* at least two non-empty string values; get as many as possible */
  582. size_t tl = vslen(s2v(top - 1));
  583. TString *ts;
  584. /* collect total length and number of strings */
  585. for (n = 1; n < total && tostring(L, s2v(top - n - 1)); n++) {
  586. size_t l = vslen(s2v(top - n - 1));
  587. if (unlikely(l >= (MAX_SIZE/sizeof(char)) - tl))
  588. luaG_runerror(L, "string length overflow");
  589. tl += l;
  590. }
  591. if (tl <= LUAI_MAXSHORTLEN) { /* is result a short string? */
  592. char buff[LUAI_MAXSHORTLEN];
  593. copy2buff(top, n, buff); /* copy strings to buffer */
  594. ts = luaS_newlstr(L, buff, tl);
  595. }
  596. else { /* long string; copy strings directly to final result */
  597. ts = luaS_createlngstrobj(L, tl);
  598. copy2buff(top, n, getstr(ts));
  599. }
  600. setsvalue2s(L, top - n, ts); /* create result */
  601. }
  602. total -= n-1; /* got 'n' strings to create 1 new */
  603. L->top -= n-1; /* popped 'n' strings and pushed one */
  604. } while (total > 1); /* repeat until only 1 result left */
  605. }
  606. /*
  607. ** Main operation 'ra = #rb'.
  608. */
  609. void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) {
  610. const TValue *tm;
  611. switch (ttypetag(rb)) {
  612. case LUA_VTABLE: {
  613. Table *h = hvalue(rb);
  614. tm = fasttm(L, h->metatable, TM_LEN);
  615. if (tm) break; /* metamethod? break switch to call it */
  616. setivalue(s2v(ra), luaH_getn(h)); /* else primitive len */
  617. return;
  618. }
  619. case LUA_VSHRSTR: {
  620. setivalue(s2v(ra), tsvalue(rb)->shrlen);
  621. return;
  622. }
  623. case LUA_VLNGSTR: {
  624. setivalue(s2v(ra), tsvalue(rb)->u.lnglen);
  625. return;
  626. }
  627. default: { /* try metamethod */
  628. tm = luaT_gettmbyobj(L, rb, TM_LEN);
  629. if (unlikely(notm(tm))) /* no metamethod? */
  630. luaG_typeerror(L, rb, "get length of");
  631. break;
  632. }
  633. }
  634. luaT_callTMres(L, tm, rb, rb, ra);
  635. }
  636. /*
  637. ** Integer division; return 'm // n', that is, floor(m/n).
  638. ** C division truncates its result (rounds towards zero).
  639. ** 'floor(q) == trunc(q)' when 'q >= 0' or when 'q' is integer,
  640. ** otherwise 'floor(q) == trunc(q) - 1'.
  641. */
  642. lua_Integer luaV_idiv (lua_State *L, lua_Integer m, lua_Integer n) {
  643. if (unlikely(l_castS2U(n) + 1u <= 1u)) { /* special cases: -1 or 0 */
  644. if (n == 0)
  645. luaG_runerror(L, "attempt to divide by zero");
  646. return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */
  647. }
  648. else {
  649. lua_Integer q = m / n; /* perform C division */
  650. if ((m ^ n) < 0 && m % n != 0) /* 'm/n' would be negative non-integer? */
  651. q -= 1; /* correct result for different rounding */
  652. return q;
  653. }
  654. }
  655. /*
  656. ** Integer modulus; return 'm % n'. (Assume that C '%' with
  657. ** negative operands follows C99 behavior. See previous comment
  658. ** about luaV_idiv.)
  659. */
  660. lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) {
  661. if (unlikely(l_castS2U(n) + 1u <= 1u)) { /* special cases: -1 or 0 */
  662. if (n == 0)
  663. luaG_runerror(L, "attempt to perform 'n%%0'");
  664. return 0; /* m % -1 == 0; avoid overflow with 0x80000...%-1 */
  665. }
  666. else {
  667. lua_Integer r = m % n;
  668. if (r != 0 && (r ^ n) < 0) /* 'm/n' would be non-integer negative? */
  669. r += n; /* correct result for different rounding */
  670. return r;
  671. }
  672. }
  673. /*
  674. ** Float modulus
  675. */
  676. lua_Number luaV_modf (lua_State *L, lua_Number m, lua_Number n) {
  677. lua_Number r;
  678. luai_nummod(L, m, n, r);
  679. return r;
  680. }
  681. /* number of bits in an integer */
  682. #define NBITS cast_int(sizeof(lua_Integer) * CHAR_BIT)
  683. /*
  684. ** Shift left operation. (Shift right just negates 'y'.)
  685. */
  686. #define luaV_shiftr(x,y) luaV_shiftl(x,-(y))
  687. lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) {
  688. if (y < 0) { /* shift right? */
  689. if (y <= -NBITS) return 0;
  690. else return intop(>>, x, -y);
  691. }
  692. else { /* shift left */
  693. if (y >= NBITS) return 0;
  694. else return intop(<<, x, y);
  695. }
  696. }
  697. /*
  698. ** create a new Lua closure, push it in the stack, and initialize
  699. ** its upvalues.
  700. */
  701. static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base,
  702. StkId ra) {
  703. int nup = p->sizeupvalues;
  704. Upvaldesc *uv = p->upvalues;
  705. int i;
  706. LClosure *ncl = luaF_newLclosure(L, nup);
  707. ncl->p = p;
  708. setclLvalue2s(L, ra, ncl); /* anchor new closure in stack */
  709. for (i = 0; i < nup; i++) { /* fill in its upvalues */
  710. if (uv[i].instack) /* upvalue refers to local variable? */
  711. ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx);
  712. else /* get upvalue from enclosing function */
  713. ncl->upvals[i] = encup[uv[i].idx];
  714. luaC_objbarrier(L, ncl, ncl->upvals[i]);
  715. }
  716. }
  717. /*
  718. ** finish execution of an opcode interrupted by a yield
  719. */
  720. void luaV_finishOp (lua_State *L) {
  721. CallInfo *ci = L->ci;
  722. StkId base = ci->func + 1;
  723. Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */
  724. OpCode op = GET_OPCODE(inst);
  725. switch (op) { /* finish its execution */
  726. case OP_MMBIN: case OP_MMBINI: case OP_MMBINK: {
  727. setobjs2s(L, base + GETARG_A(*(ci->u.l.savedpc - 2)), --L->top);
  728. break;
  729. }
  730. case OP_UNM: case OP_BNOT: case OP_LEN:
  731. case OP_GETTABUP: case OP_GETTABLE: case OP_GETI:
  732. case OP_GETFIELD: case OP_SELF: {
  733. setobjs2s(L, base + GETARG_A(inst), --L->top);
  734. break;
  735. }
  736. case OP_LT: case OP_LE:
  737. case OP_LTI: case OP_LEI:
  738. case OP_GTI: case OP_GEI:
  739. case OP_EQ: { /* note that 'OP_EQI'/'OP_EQK' cannot yield */
  740. int res = !l_isfalse(s2v(L->top - 1));
  741. L->top--;
  742. #if defined(LUA_COMPAT_LT_LE)
  743. if (ci->callstatus & CIST_LEQ) { /* "<=" using "<" instead? */
  744. ci->callstatus ^= CIST_LEQ; /* clear mark */
  745. res = !res; /* negate result */
  746. }
  747. #endif
  748. lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
  749. if (res != GETARG_k(inst)) /* condition failed? */
  750. ci->u.l.savedpc++; /* skip jump instruction */
  751. break;
  752. }
  753. case OP_CONCAT: {
  754. StkId top = L->top - 1; /* top when 'luaT_tryconcatTM' was called */
  755. int a = GETARG_A(inst); /* first element to concatenate */
  756. int total = cast_int(top - 1 - (base + a)); /* yet to concatenate */
  757. setobjs2s(L, top - 2, top); /* put TM result in proper position */
  758. if (total > 1) { /* are there elements to concat? */
  759. L->top = top - 1; /* top is one after last element (at top-2) */
  760. luaV_concat(L, total); /* concat them (may yield again) */
  761. }
  762. break;
  763. }
  764. default: {
  765. /* only these other opcodes can yield */
  766. lua_assert(op == OP_TFORCALL || op == OP_CALL ||
  767. op == OP_TAILCALL || op == OP_SETTABUP || op == OP_SETTABLE ||
  768. op == OP_SETI || op == OP_SETFIELD);
  769. break;
  770. }
  771. }
  772. }
  773. /*
  774. ** {==================================================================
  775. ** Macros for arithmetic/bitwise/comparison opcodes in 'luaV_execute'
  776. ** ===================================================================
  777. */
  778. #define l_addi(L,a,b) intop(+, a, b)
  779. #define l_subi(L,a,b) intop(-, a, b)
  780. #define l_muli(L,a,b) intop(*, a, b)
  781. #define l_band(a,b) intop(&, a, b)
  782. #define l_bor(a,b) intop(|, a, b)
  783. #define l_bxor(a,b) intop(^, a, b)
  784. #define l_lti(a,b) (a < b)
  785. #define l_lei(a,b) (a <= b)
  786. #define l_gti(a,b) (a > b)
  787. #define l_gei(a,b) (a >= b)
  788. /*
  789. ** Arithmetic operations with immediate operands. 'iop' is the integer
  790. ** operation, 'fop' is the float operation.
  791. */
  792. #define op_arithI(L,iop,fop) { \
  793. TValue *v1 = vRB(i); \
  794. int imm = GETARG_sC(i); \
  795. if (ttisinteger(v1)) { \
  796. lua_Integer iv1 = ivalue(v1); \
  797. pc++; setivalue(s2v(ra), iop(L, iv1, imm)); \
  798. } \
  799. else if (ttisfloat(v1)) { \
  800. lua_Number nb = fltvalue(v1); \
  801. lua_Number fimm = cast_num(imm); \
  802. pc++; setfltvalue(s2v(ra), fop(L, nb, fimm)); \
  803. }}
  804. /*
  805. ** Auxiliary function for arithmetic operations over floats and others
  806. ** with two register operands.
  807. */
  808. #define op_arithf_aux(L,v1,v2,fop) { \
  809. lua_Number n1; lua_Number n2; \
  810. if (tonumberns(v1, n1) && tonumberns(v2, n2)) { \
  811. pc++; setfltvalue(s2v(ra), fop(L, n1, n2)); \
  812. }}
  813. /*
  814. ** Arithmetic operations over floats and others with register operands.
  815. */
  816. #define op_arithf(L,fop) { \
  817. TValue *v1 = vRB(i); \
  818. TValue *v2 = vRC(i); \
  819. op_arithf_aux(L, v1, v2, fop); }
  820. /*
  821. ** Arithmetic operations with K operands for floats.
  822. */
  823. #define op_arithfK(L,fop) { \
  824. TValue *v1 = vRB(i); \
  825. TValue *v2 = KC(i); \
  826. op_arithf_aux(L, v1, v2, fop); }
  827. /*
  828. ** Arithmetic operations over integers and floats.
  829. */
  830. #define op_arith_aux(L,v1,v2,iop,fop) { \
  831. if (ttisinteger(v1) && ttisinteger(v2)) { \
  832. lua_Integer i1 = ivalue(v1); lua_Integer i2 = ivalue(v2); \
  833. pc++; setivalue(s2v(ra), iop(L, i1, i2)); \
  834. } \
  835. else op_arithf_aux(L, v1, v2, fop); }
  836. /*
  837. ** Arithmetic operations with register operands.
  838. */
  839. #define op_arith(L,iop,fop) { \
  840. TValue *v1 = vRB(i); \
  841. TValue *v2 = vRC(i); \
  842. op_arith_aux(L, v1, v2, iop, fop); }
  843. /*
  844. ** Arithmetic operations with K operands.
  845. */
  846. #define op_arithK(L,iop,fop) { \
  847. TValue *v1 = vRB(i); \
  848. TValue *v2 = KC(i); \
  849. op_arith_aux(L, v1, v2, iop, fop); }
  850. /*
  851. ** Bitwise operations with constant operand.
  852. */
  853. #define op_bitwiseK(L,op) { \
  854. TValue *v1 = vRB(i); \
  855. TValue *v2 = KC(i); \
  856. lua_Integer i1; \
  857. lua_Integer i2 = ivalue(v2); \
  858. if (tointegerns(v1, &i1)) { \
  859. pc++; setivalue(s2v(ra), op(i1, i2)); \
  860. }}
  861. /*
  862. ** Bitwise operations with register operands.
  863. */
  864. #define op_bitwise(L,op) { \
  865. TValue *v1 = vRB(i); \
  866. TValue *v2 = vRC(i); \
  867. lua_Integer i1; lua_Integer i2; \
  868. if (tointegerns(v1, &i1) && tointegerns(v2, &i2)) { \
  869. pc++; setivalue(s2v(ra), op(i1, i2)); \
  870. }}
  871. /*
  872. ** Order operations with register operands. 'opn' actually works
  873. ** for all numbers, but the fast track improves performance for
  874. ** integers.
  875. */
  876. #define op_order(L,opi,opn,other) { \
  877. int cond; \
  878. TValue *rb = vRB(i); \
  879. if (ttisinteger(s2v(ra)) && ttisinteger(rb)) { \
  880. lua_Integer ia = ivalue(s2v(ra)); \
  881. lua_Integer ib = ivalue(rb); \
  882. cond = opi(ia, ib); \
  883. } \
  884. else if (ttisnumber(s2v(ra)) && ttisnumber(rb)) \
  885. cond = opn(s2v(ra), rb); \
  886. else \
  887. Protect(cond = other(L, s2v(ra), rb)); \
  888. docondjump(); }
  889. /*
  890. ** Order operations with immediate operand. (Immediate operand is
  891. ** always small enough to have an exact representation as a float.)
  892. */
  893. #define op_orderI(L,opi,opf,inv,tm) { \
  894. int cond; \
  895. int im = GETARG_sB(i); \
  896. if (ttisinteger(s2v(ra))) \
  897. cond = opi(ivalue(s2v(ra)), im); \
  898. else if (ttisfloat(s2v(ra))) { \
  899. lua_Number fa = fltvalue(s2v(ra)); \
  900. lua_Number fim = cast_num(im); \
  901. cond = opf(fa, fim); \
  902. } \
  903. else { \
  904. int isf = GETARG_C(i); \
  905. Protect(cond = luaT_callorderiTM(L, s2v(ra), im, inv, isf, tm)); \
  906. } \
  907. docondjump(); }
  908. /* }================================================================== */
  909. /*
  910. ** {==================================================================
  911. ** Function 'luaV_execute': main interpreter loop
  912. ** ===================================================================
  913. */
  914. /*
  915. ** some macros for common tasks in 'luaV_execute'
  916. */
  917. #define RA(i) (base+GETARG_A(i))
  918. #define RB(i) (base+GETARG_B(i))
  919. #define vRB(i) s2v(RB(i))
  920. #define KB(i) (k+GETARG_B(i))
  921. #define RC(i) (base+GETARG_C(i))
  922. #define vRC(i) s2v(RC(i))
  923. #define KC(i) (k+GETARG_C(i))
  924. #define RKC(i) ((TESTARG_k(i)) ? k + GETARG_C(i) : s2v(base + GETARG_C(i)))
  925. #define updatetrap(ci) (trap = ci->u.l.trap)
  926. #define updatebase(ci) (base = ci->func + 1)
  927. #define updatestack(ci) { if (trap) { updatebase(ci); ra = RA(i); } }
  928. /*
  929. ** Execute a jump instruction. The 'updatetrap' allows signals to stop
  930. ** tight loops. (Without it, the local copy of 'trap' could never change.)
  931. */
  932. #define dojump(ci,i,e) { pc += GETARG_sJ(i) + e; updatetrap(ci); }
  933. /* for test instructions, execute the jump instruction that follows it */
  934. #define donextjump(ci) { Instruction ni = *pc; dojump(ci, ni, 1); }
  935. /*
  936. ** do a conditional jump: skip next instruction if 'cond' is not what
  937. ** was expected (parameter 'k'), else do next instruction, which must
  938. ** be a jump.
  939. */
  940. #define docondjump() if (cond != GETARG_k(i)) pc++; else donextjump(ci);
  941. /*
  942. ** Correct global 'pc'.
  943. */
  944. #define savepc(L) (ci->u.l.savedpc = pc)
  945. /*
  946. ** Whenever code can raise errors, the global 'pc' and the global
  947. ** 'top' must be correct to report occasional errors.
  948. */
  949. #define savestate(L,ci) (savepc(L), L->top = ci->top)
  950. /*
  951. ** Protect code that, in general, can raise errors, reallocate the
  952. ** stack, and change the hooks.
  953. */
  954. #define Protect(exp) (savestate(L,ci), (exp), updatetrap(ci))
  955. /* special version that does not change the top */
  956. #define ProtectNT(exp) (savepc(L), (exp), updatetrap(ci))
  957. /*
  958. ** Protect code that will finish the loop (returns) or can only raise
  959. ** errors. (That is, it will not return to the interpreter main loop
  960. ** after changing the stack or hooks.)
  961. */
  962. #define halfProtect(exp) (savestate(L,ci), (exp))
  963. /* idem, but without changing the stack */
  964. #define halfProtectNT(exp) (savepc(L), (exp))
  965. #define checkGC(L,c) \
  966. { luaC_condGC(L, L->top = (c), /* limit of live values */ \
  967. updatetrap(ci)); \
  968. luai_threadyield(L); }
  969. /* fetch an instruction and prepare its execution */
  970. #define vmfetch() { \
  971. if (trap) { /* stack reallocation or hooks? */ \
  972. trap = luaG_traceexec(L, pc); /* handle hooks */ \
  973. updatebase(ci); /* correct stack */ \
  974. } \
  975. i = *(pc++); \
  976. ra = RA(i); /* WARNING: any stack reallocation invalidates 'ra' */ \
  977. }
  978. #define vmdispatch(o) switch(o)
  979. #define vmcase(l) case l:
  980. #define vmbreak break
  981. void luaV_execute (lua_State *L, CallInfo *ci) {
  982. LClosure *cl;
  983. TValue *k;
  984. StkId base;
  985. const Instruction *pc;
  986. int trap;
  987. #if LUA_USE_JUMPTABLE
  988. #include "ljumptab.h"
  989. #endif
  990. tailcall:
  991. trap = L->hookmask;
  992. cl = clLvalue(s2v(ci->func));
  993. k = cl->p->k;
  994. pc = ci->u.l.savedpc;
  995. if (trap) {
  996. if (cl->p->is_vararg)
  997. trap = 0; /* hooks will start after VARARGPREP instruction */
  998. else if (pc == cl->p->code) /* first instruction (not resuming)? */
  999. luaD_hookcall(L, ci);
  1000. ci->u.l.trap = 1; /* there may be other hooks */
  1001. }
  1002. base = ci->func + 1;
  1003. /* main loop of interpreter */
  1004. for (;;) {
  1005. Instruction i; /* instruction being executed */
  1006. StkId ra; /* instruction's A register */
  1007. vmfetch();
  1008. lua_assert(base == ci->func + 1);
  1009. lua_assert(base <= L->top && L->top < L->stack + L->stacksize);
  1010. /* invalidate top for instructions not expecting it */
  1011. lua_assert(isIT(i) || (cast_void(L->top = base), 1));
  1012. vmdispatch (GET_OPCODE(i)) {
  1013. vmcase(OP_MOVE) {
  1014. setobjs2s(L, ra, RB(i));
  1015. vmbreak;
  1016. }
  1017. vmcase(OP_LOADI) {
  1018. lua_Integer b = GETARG_sBx(i);
  1019. setivalue(s2v(ra), b);
  1020. vmbreak;
  1021. }
  1022. vmcase(OP_LOADF) {
  1023. int b = GETARG_sBx(i);
  1024. setfltvalue(s2v(ra), cast_num(b));
  1025. vmbreak;
  1026. }
  1027. vmcase(OP_LOADK) {
  1028. TValue *rb = k + GETARG_Bx(i);
  1029. setobj2s(L, ra, rb);
  1030. vmbreak;
  1031. }
  1032. vmcase(OP_LOADKX) {
  1033. TValue *rb;
  1034. rb = k + GETARG_Ax(*pc); pc++;
  1035. setobj2s(L, ra, rb);
  1036. vmbreak;
  1037. }
  1038. vmcase(OP_LOADFALSE) {
  1039. setbfvalue(s2v(ra));
  1040. vmbreak;
  1041. }
  1042. vmcase(OP_LFALSESKIP) {
  1043. setbfvalue(s2v(ra));
  1044. pc++; /* skip next instruction */
  1045. vmbreak;
  1046. }
  1047. vmcase(OP_LOADTRUE) {
  1048. setbtvalue(s2v(ra));
  1049. vmbreak;
  1050. }
  1051. vmcase(OP_LOADNIL) {
  1052. int b = GETARG_B(i);
  1053. do {
  1054. setnilvalue(s2v(ra++));
  1055. } while (b--);
  1056. vmbreak;
  1057. }
  1058. vmcase(OP_GETUPVAL) {
  1059. int b = GETARG_B(i);
  1060. setobj2s(L, ra, cl->upvals[b]->v);
  1061. vmbreak;
  1062. }
  1063. vmcase(OP_SETUPVAL) {
  1064. UpVal *uv = cl->upvals[GETARG_B(i)];
  1065. setobj(L, uv->v, s2v(ra));
  1066. luaC_barrier(L, uv, s2v(ra));
  1067. vmbreak;
  1068. }
  1069. vmcase(OP_GETTABUP) {
  1070. const TValue *slot;
  1071. TValue *upval = cl->upvals[GETARG_B(i)]->v;
  1072. TValue *rc = KC(i);
  1073. TString *key = tsvalue(rc); /* key must be a string */
  1074. if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) {
  1075. setobj2s(L, ra, slot);
  1076. }
  1077. else
  1078. Protect(luaV_finishget(L, upval, rc, ra, slot));
  1079. vmbreak;
  1080. }
  1081. vmcase(OP_GETTABLE) {
  1082. const TValue *slot;
  1083. TValue *rb = vRB(i);
  1084. TValue *rc = vRC(i);
  1085. lua_Unsigned n;
  1086. if (ttisinteger(rc) /* fast track for integers? */
  1087. ? (cast_void(n = ivalue(rc)), luaV_fastgeti(L, rb, n, slot))
  1088. : luaV_fastget(L, rb, rc, slot, luaH_get)) {
  1089. setobj2s(L, ra, slot);
  1090. }
  1091. else
  1092. Protect(luaV_finishget(L, rb, rc, ra, slot));
  1093. vmbreak;
  1094. }
  1095. vmcase(OP_GETI) {
  1096. const TValue *slot;
  1097. TValue *rb = vRB(i);
  1098. int c = GETARG_C(i);
  1099. if (luaV_fastgeti(L, rb, c, slot)) {
  1100. setobj2s(L, ra, slot);
  1101. }
  1102. else {
  1103. TValue key;
  1104. setivalue(&key, c);
  1105. Protect(luaV_finishget(L, rb, &key, ra, slot));
  1106. }
  1107. vmbreak;
  1108. }
  1109. vmcase(OP_GETFIELD) {
  1110. const TValue *slot;
  1111. TValue *rb = vRB(i);
  1112. TValue *rc = KC(i);
  1113. TString *key = tsvalue(rc); /* key must be a string */
  1114. if (luaV_fastget(L, rb, key, slot, luaH_getshortstr)) {
  1115. setobj2s(L, ra, slot);
  1116. }
  1117. else
  1118. Protect(luaV_finishget(L, rb, rc, ra, slot));
  1119. vmbreak;
  1120. }
  1121. vmcase(OP_SETTABUP) {
  1122. const TValue *slot;
  1123. TValue *upval = cl->upvals[GETARG_A(i)]->v;
  1124. TValue *rb = KB(i);
  1125. TValue *rc = RKC(i);
  1126. TString *key = tsvalue(rb); /* key must be a string */
  1127. if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) {
  1128. luaV_finishfastset(L, upval, slot, rc);
  1129. }
  1130. else
  1131. Protect(luaV_finishset(L, upval, rb, rc, slot));
  1132. vmbreak;
  1133. }
  1134. vmcase(OP_SETTABLE) {
  1135. const TValue *slot;
  1136. TValue *rb = vRB(i); /* key (table is in 'ra') */
  1137. TValue *rc = RKC(i); /* value */
  1138. lua_Unsigned n;
  1139. if (ttisinteger(rb) /* fast track for integers? */
  1140. ? (cast_void(n = ivalue(rb)), luaV_fastgeti(L, s2v(ra), n, slot))
  1141. : luaV_fastget(L, s2v(ra), rb, slot, luaH_get)) {
  1142. luaV_finishfastset(L, s2v(ra), slot, rc);
  1143. }
  1144. else
  1145. Protect(luaV_finishset(L, s2v(ra), rb, rc, slot));
  1146. vmbreak;
  1147. }
  1148. vmcase(OP_SETI) {
  1149. const TValue *slot;
  1150. int c = GETARG_B(i);
  1151. TValue *rc = RKC(i);
  1152. if (luaV_fastgeti(L, s2v(ra), c, slot)) {
  1153. luaV_finishfastset(L, s2v(ra), slot, rc);
  1154. }
  1155. else {
  1156. TValue key;
  1157. setivalue(&key, c);
  1158. Protect(luaV_finishset(L, s2v(ra), &key, rc, slot));
  1159. }
  1160. vmbreak;
  1161. }
  1162. vmcase(OP_SETFIELD) {
  1163. const TValue *slot;
  1164. TValue *rb = KB(i);
  1165. TValue *rc = RKC(i);
  1166. TString *key = tsvalue(rb); /* key must be a string */
  1167. if (luaV_fastget(L, s2v(ra), key, slot, luaH_getshortstr)) {
  1168. luaV_finishfastset(L, s2v(ra), slot, rc);
  1169. }
  1170. else
  1171. Protect(luaV_finishset(L, s2v(ra), rb, rc, slot));
  1172. vmbreak;
  1173. }
  1174. vmcase(OP_NEWTABLE) {
  1175. int b = GETARG_B(i); /* log2(hash size) + 1 */
  1176. int c = GETARG_C(i); /* array size */
  1177. Table *t;
  1178. if (b > 0)
  1179. b = 1 << (b - 1); /* size is 2^(b - 1) */
  1180. lua_assert((!TESTARG_k(i)) == (GETARG_Ax(*pc) == 0));
  1181. if (TESTARG_k(i)) /* non-zero extra argument? */
  1182. c += GETARG_Ax(*pc) * (MAXARG_C + 1); /* add it to size */
  1183. pc++; /* skip extra argument */
  1184. L->top = ra + 1; /* correct top in case of emergency GC */
  1185. t = luaH_new(L); /* memory allocation */
  1186. sethvalue2s(L, ra, t);
  1187. if (b != 0 || c != 0)
  1188. luaH_resize(L, t, c, b); /* idem */
  1189. checkGC(L, ra + 1);
  1190. vmbreak;
  1191. }
  1192. vmcase(OP_SELF) {
  1193. const TValue *slot;
  1194. TValue *rb = vRB(i);
  1195. TValue *rc = RKC(i);
  1196. TString *key = tsvalue(rc); /* key must be a string */
  1197. setobj2s(L, ra + 1, rb);
  1198. if (luaV_fastget(L, rb, key, slot, luaH_getstr)) {
  1199. setobj2s(L, ra, slot);
  1200. }
  1201. else
  1202. Protect(luaV_finishget(L, rb, rc, ra, slot));
  1203. vmbreak;
  1204. }
  1205. vmcase(OP_ADDI) {
  1206. op_arithI(L, l_addi, luai_numadd);
  1207. vmbreak;
  1208. }
  1209. vmcase(OP_ADDK) {
  1210. op_arithK(L, l_addi, luai_numadd);
  1211. vmbreak;
  1212. }
  1213. vmcase(OP_SUBK) {
  1214. op_arithK(L, l_subi, luai_numsub);
  1215. vmbreak;
  1216. }
  1217. vmcase(OP_MULK) {
  1218. op_arithK(L, l_muli, luai_nummul);
  1219. vmbreak;
  1220. }
  1221. vmcase(OP_MODK) {
  1222. op_arithK(L, luaV_mod, luaV_modf);
  1223. vmbreak;
  1224. }
  1225. vmcase(OP_POWK) {
  1226. op_arithfK(L, luai_numpow);
  1227. vmbreak;
  1228. }
  1229. vmcase(OP_DIVK) {
  1230. op_arithfK(L, luai_numdiv);
  1231. vmbreak;
  1232. }
  1233. vmcase(OP_IDIVK) {
  1234. op_arithK(L, luaV_idiv, luai_numidiv);
  1235. vmbreak;
  1236. }
  1237. vmcase(OP_BANDK) {
  1238. op_bitwiseK(L, l_band);
  1239. vmbreak;
  1240. }
  1241. vmcase(OP_BORK) {
  1242. op_bitwiseK(L, l_bor);
  1243. vmbreak;
  1244. }
  1245. vmcase(OP_BXORK) {
  1246. op_bitwiseK(L, l_bxor);
  1247. vmbreak;
  1248. }
  1249. vmcase(OP_SHRI) {
  1250. TValue *rb = vRB(i);
  1251. int ic = GETARG_sC(i);
  1252. lua_Integer ib;
  1253. if (tointegerns(rb, &ib)) {
  1254. pc++; setivalue(s2v(ra), luaV_shiftl(ib, -ic));
  1255. }
  1256. vmbreak;
  1257. }
  1258. vmcase(OP_SHLI) {
  1259. TValue *rb = vRB(i);
  1260. int ic = GETARG_sC(i);
  1261. lua_Integer ib;
  1262. if (tointegerns(rb, &ib)) {
  1263. pc++; setivalue(s2v(ra), luaV_shiftl(ic, ib));
  1264. }
  1265. vmbreak;
  1266. }
  1267. vmcase(OP_ADD) {
  1268. op_arith(L, l_addi, luai_numadd);
  1269. vmbreak;
  1270. }
  1271. vmcase(OP_SUB) {
  1272. op_arith(L, l_subi, luai_numsub);
  1273. vmbreak;
  1274. }
  1275. vmcase(OP_MUL) {
  1276. op_arith(L, l_muli, luai_nummul);
  1277. vmbreak;
  1278. }
  1279. vmcase(OP_MOD) {
  1280. op_arith(L, luaV_mod, luaV_modf);
  1281. vmbreak;
  1282. }
  1283. vmcase(OP_POW) {
  1284. op_arithf(L, luai_numpow);
  1285. vmbreak;
  1286. }
  1287. vmcase(OP_DIV) { /* float division (always with floats) */
  1288. op_arithf(L, luai_numdiv);
  1289. vmbreak;
  1290. }
  1291. vmcase(OP_IDIV) { /* floor division */
  1292. op_arith(L, luaV_idiv, luai_numidiv);
  1293. vmbreak;
  1294. }
  1295. vmcase(OP_BAND) {
  1296. op_bitwise(L, l_band);
  1297. vmbreak;
  1298. }
  1299. vmcase(OP_BOR) {
  1300. op_bitwise(L, l_bor);
  1301. vmbreak;
  1302. }
  1303. vmcase(OP_BXOR) {
  1304. op_bitwise(L, l_bxor);
  1305. vmbreak;
  1306. }
  1307. vmcase(OP_SHR) {
  1308. op_bitwise(L, luaV_shiftr);
  1309. vmbreak;
  1310. }
  1311. vmcase(OP_SHL) {
  1312. op_bitwise(L, luaV_shiftl);
  1313. vmbreak;
  1314. }
  1315. vmcase(OP_MMBIN) {
  1316. Instruction pi = *(pc - 2); /* original arith. expression */
  1317. TValue *rb = vRB(i);
  1318. TMS tm = (TMS)GETARG_C(i);
  1319. StkId result = RA(pi);
  1320. lua_assert(OP_ADD <= GET_OPCODE(pi) && GET_OPCODE(pi) <= OP_SHR);
  1321. Protect(luaT_trybinTM(L, s2v(ra), rb, result, tm));
  1322. vmbreak;
  1323. }
  1324. vmcase(OP_MMBINI) {
  1325. Instruction pi = *(pc - 2); /* original arith. expression */
  1326. int imm = GETARG_sB(i);
  1327. TMS tm = (TMS)GETARG_C(i);
  1328. int flip = GETARG_k(i);
  1329. StkId result = RA(pi);
  1330. Protect(luaT_trybiniTM(L, s2v(ra), imm, flip, result, tm));
  1331. vmbreak;
  1332. }
  1333. vmcase(OP_MMBINK) {
  1334. Instruction pi = *(pc - 2); /* original arith. expression */
  1335. TValue *imm = KB(i);
  1336. TMS tm = (TMS)GETARG_C(i);
  1337. int flip = GETARG_k(i);
  1338. StkId result = RA(pi);
  1339. Protect(luaT_trybinassocTM(L, s2v(ra), imm, flip, result, tm));
  1340. vmbreak;
  1341. }
  1342. vmcase(OP_UNM) {
  1343. TValue *rb = vRB(i);
  1344. lua_Number nb;
  1345. if (ttisinteger(rb)) {
  1346. lua_Integer ib = ivalue(rb);
  1347. setivalue(s2v(ra), intop(-, 0, ib));
  1348. }
  1349. else if (tonumberns(rb, nb)) {
  1350. setfltvalue(s2v(ra), luai_numunm(L, nb));
  1351. }
  1352. else
  1353. Protect(luaT_trybinTM(L, rb, rb, ra, TM_UNM));
  1354. vmbreak;
  1355. }
  1356. vmcase(OP_BNOT) {
  1357. TValue *rb = vRB(i);
  1358. lua_Integer ib;
  1359. if (tointegerns(rb, &ib)) {
  1360. setivalue(s2v(ra), intop(^, ~l_castS2U(0), ib));
  1361. }
  1362. else
  1363. Protect(luaT_trybinTM(L, rb, rb, ra, TM_BNOT));
  1364. vmbreak;
  1365. }
  1366. vmcase(OP_NOT) {
  1367. TValue *rb = vRB(i);
  1368. if (l_isfalse(rb))
  1369. setbtvalue(s2v(ra));
  1370. else
  1371. setbfvalue(s2v(ra));
  1372. vmbreak;
  1373. }
  1374. vmcase(OP_LEN) {
  1375. Protect(luaV_objlen(L, ra, vRB(i)));
  1376. vmbreak;
  1377. }
  1378. vmcase(OP_CONCAT) {
  1379. int n = GETARG_B(i); /* number of elements to concatenate */
  1380. L->top = ra + n; /* mark the end of concat operands */
  1381. ProtectNT(luaV_concat(L, n));
  1382. checkGC(L, L->top); /* 'luaV_concat' ensures correct top */
  1383. vmbreak;
  1384. }
  1385. vmcase(OP_CLOSE) {
  1386. Protect(luaF_close(L, ra, LUA_OK));
  1387. vmbreak;
  1388. }
  1389. vmcase(OP_TBC) {
  1390. /* create new to-be-closed upvalue */
  1391. halfProtect(luaF_newtbcupval(L, ra));
  1392. vmbreak;
  1393. }
  1394. vmcase(OP_JMP) {
  1395. dojump(ci, i, 0);
  1396. vmbreak;
  1397. }
  1398. vmcase(OP_EQ) {
  1399. int cond;
  1400. TValue *rb = vRB(i);
  1401. Protect(cond = luaV_equalobj(L, s2v(ra), rb));
  1402. docondjump();
  1403. vmbreak;
  1404. }
  1405. vmcase(OP_LT) {
  1406. op_order(L, l_lti, LTnum, lessthanothers);
  1407. vmbreak;
  1408. }
  1409. vmcase(OP_LE) {
  1410. op_order(L, l_lei, LEnum, lessequalothers);
  1411. vmbreak;
  1412. }
  1413. vmcase(OP_EQK) {
  1414. TValue *rb = KB(i);
  1415. /* basic types do not use '__eq'; we can use raw equality */
  1416. int cond = luaV_rawequalobj(s2v(ra), rb);
  1417. docondjump();
  1418. vmbreak;
  1419. }
  1420. vmcase(OP_EQI) {
  1421. int cond;
  1422. int im = GETARG_sB(i);
  1423. if (ttisinteger(s2v(ra)))
  1424. cond = (ivalue(s2v(ra)) == im);
  1425. else if (ttisfloat(s2v(ra)))
  1426. cond = luai_numeq(fltvalue(s2v(ra)), cast_num(im));
  1427. else
  1428. cond = 0; /* other types cannot be equal to a number */
  1429. docondjump();
  1430. vmbreak;
  1431. }
  1432. vmcase(OP_LTI) {
  1433. op_orderI(L, l_lti, luai_numlt, 0, TM_LT);
  1434. vmbreak;
  1435. }
  1436. vmcase(OP_LEI) {
  1437. op_orderI(L, l_lei, luai_numle, 0, TM_LE);
  1438. vmbreak;
  1439. }
  1440. vmcase(OP_GTI) {
  1441. op_orderI(L, l_gti, luai_numgt, 1, TM_LT);
  1442. vmbreak;
  1443. }
  1444. vmcase(OP_GEI) {
  1445. op_orderI(L, l_gei, luai_numge, 1, TM_LE);
  1446. vmbreak;
  1447. }
  1448. vmcase(OP_TEST) {
  1449. int cond = !l_isfalse(s2v(ra));
  1450. docondjump();
  1451. vmbreak;
  1452. }
  1453. vmcase(OP_TESTSET) {
  1454. TValue *rb = vRB(i);
  1455. if (l_isfalse(rb) == GETARG_k(i))
  1456. pc++;
  1457. else {
  1458. setobj2s(L, ra, rb);
  1459. donextjump(ci);
  1460. }
  1461. vmbreak;
  1462. }
  1463. vmcase(OP_CALL) {
  1464. int b = GETARG_B(i);
  1465. int nresults = GETARG_C(i) - 1;
  1466. if (b != 0) /* fixed number of arguments? */
  1467. L->top = ra + b; /* top signals number of arguments */
  1468. /* else previous instruction set top */
  1469. ProtectNT(luaD_call(L, ra, nresults));
  1470. vmbreak;
  1471. }
  1472. vmcase(OP_TAILCALL) {
  1473. int b = GETARG_B(i); /* number of arguments + 1 (function) */
  1474. int nparams1 = GETARG_C(i);
  1475. /* delat is virtual 'func' - real 'func' (vararg functions) */
  1476. int delta = (nparams1) ? ci->u.l.nextraargs + nparams1 : 0;
  1477. if (b != 0)
  1478. L->top = ra + b;
  1479. else /* previous instruction set top */
  1480. b = cast_int(L->top - ra);
  1481. savepc(ci); /* some calls here can raise errors */
  1482. if (TESTARG_k(i)) {
  1483. /* close upvalues from current call; the compiler ensures
  1484. that there are no to-be-closed variables here, so this
  1485. call cannot change the stack */
  1486. luaF_close(L, base, NOCLOSINGMETH);
  1487. lua_assert(base == ci->func + 1);
  1488. }
  1489. while (!ttisfunction(s2v(ra))) { /* not a function? */
  1490. luaD_tryfuncTM(L, ra); /* try '__call' metamethod */
  1491. b++; /* there is now one extra argument */
  1492. checkstackp(L, 1, ra);
  1493. }
  1494. if (!ttisLclosure(s2v(ra))) { /* C function? */
  1495. luaD_call(L, ra, LUA_MULTRET); /* call it */
  1496. updatetrap(ci);
  1497. updatestack(ci); /* stack may have been relocated */
  1498. ci->func -= delta;
  1499. luaD_poscall(L, ci, cast_int(L->top - ra));
  1500. return;
  1501. }
  1502. ci->func -= delta;
  1503. luaD_pretailcall(L, ci, ra, b); /* prepare call frame */
  1504. goto tailcall;
  1505. }
  1506. vmcase(OP_RETURN) {
  1507. int n = GETARG_B(i) - 1; /* number of results */
  1508. int nparams1 = GETARG_C(i);
  1509. if (n < 0) /* not fixed? */
  1510. n = cast_int(L->top - ra); /* get what is available */
  1511. savepc(ci);
  1512. if (TESTARG_k(i)) { /* may there be open upvalues? */
  1513. if (L->top < ci->top)
  1514. L->top = ci->top;
  1515. luaF_close(L, base, LUA_OK);
  1516. updatetrap(ci);
  1517. updatestack(ci);
  1518. }
  1519. if (nparams1) /* vararg function? */
  1520. ci->func -= ci->u.l.nextraargs + nparams1;
  1521. L->top = ra + n; /* set call for 'luaD_poscall' */
  1522. luaD_poscall(L, ci, n);
  1523. return;
  1524. }
  1525. vmcase(OP_RETURN0) {
  1526. if (L->hookmask) {
  1527. L->top = ra;
  1528. halfProtectNT(luaD_poscall(L, ci, 0)); /* no hurry... */
  1529. }
  1530. else { /* do the 'poscall' here */
  1531. int nres = ci->nresults;
  1532. L->ci = ci->previous; /* back to caller */
  1533. L->top = base - 1;
  1534. while (nres-- > 0)
  1535. setnilvalue(s2v(L->top++)); /* all results are nil */
  1536. }
  1537. return;
  1538. }
  1539. vmcase(OP_RETURN1) {
  1540. if (L->hookmask) {
  1541. L->top = ra + 1;
  1542. halfProtectNT(luaD_poscall(L, ci, 1)); /* no hurry... */
  1543. }
  1544. else { /* do the 'poscall' here */
  1545. int nres = ci->nresults;
  1546. L->ci = ci->previous; /* back to caller */
  1547. if (nres == 0)
  1548. L->top = base - 1; /* asked for no results */
  1549. else {
  1550. setobjs2s(L, base - 1, ra); /* at least this result */
  1551. L->top = base;
  1552. while (--nres > 0) /* complete missing results */
  1553. setnilvalue(s2v(L->top++));
  1554. }
  1555. }
  1556. return;
  1557. }
  1558. vmcase(OP_FORLOOP) {
  1559. if (ttisinteger(s2v(ra + 2))) { /* integer loop? */
  1560. lua_Unsigned count = l_castS2U(ivalue(s2v(ra + 1)));
  1561. if (count > 0) { /* still more iterations? */
  1562. lua_Integer step = ivalue(s2v(ra + 2));
  1563. lua_Integer idx = ivalue(s2v(ra)); /* internal index */
  1564. chgivalue(s2v(ra + 1), count - 1); /* update counter */
  1565. idx = intop(+, idx, step); /* add step to index */
  1566. chgivalue(s2v(ra), idx); /* update internal index */
  1567. setivalue(s2v(ra + 3), idx); /* and control variable */
  1568. pc -= GETARG_Bx(i); /* jump back */
  1569. }
  1570. }
  1571. else if (floatforloop(ra)) /* float loop */
  1572. pc -= GETARG_Bx(i); /* jump back */
  1573. updatetrap(ci); /* allows a signal to break the loop */
  1574. vmbreak;
  1575. }
  1576. vmcase(OP_FORPREP) {
  1577. savestate(L, ci); /* in case of errors */
  1578. if (forprep(L, ra))
  1579. pc += GETARG_Bx(i) + 1; /* skip the loop */
  1580. vmbreak;
  1581. }
  1582. vmcase(OP_TFORPREP) {
  1583. /* create to-be-closed upvalue (if needed) */
  1584. halfProtect(luaF_newtbcupval(L, ra + 3));
  1585. pc += GETARG_Bx(i);
  1586. i = *(pc++); /* go to next instruction */
  1587. lua_assert(GET_OPCODE(i) == OP_TFORCALL && ra == RA(i));
  1588. goto l_tforcall;
  1589. }
  1590. vmcase(OP_TFORCALL) {
  1591. l_tforcall:
  1592. /* 'ra' has the iterator function, 'ra + 1' has the state,
  1593. 'ra + 2' has the control variable, and 'ra + 3' has the
  1594. to-be-closed variable. The call will use the stack after
  1595. these values (starting at 'ra + 4')
  1596. */
  1597. /* push function, state, and control variable */
  1598. memcpy(ra + 4, ra, 3 * sizeof(*ra));
  1599. L->top = ra + 4 + 3;
  1600. ProtectNT(luaD_call(L, ra + 4, GETARG_C(i))); /* do the call */
  1601. updatestack(ci); /* stack may have changed */
  1602. i = *(pc++); /* go to next instruction */
  1603. lua_assert(GET_OPCODE(i) == OP_TFORLOOP && ra == RA(i));
  1604. goto l_tforloop;
  1605. }
  1606. vmcase(OP_TFORLOOP) {
  1607. l_tforloop:
  1608. if (!ttisnil(s2v(ra + 4))) { /* continue loop? */
  1609. setobjs2s(L, ra + 2, ra + 4); /* save control variable */
  1610. pc -= GETARG_Bx(i); /* jump back */
  1611. }
  1612. vmbreak;
  1613. }
  1614. vmcase(OP_SETLIST) {
  1615. int n = GETARG_B(i);
  1616. unsigned int last = GETARG_C(i);
  1617. Table *h = hvalue(s2v(ra));
  1618. if (n == 0)
  1619. n = cast_int(L->top - ra) - 1; /* get up to the top */
  1620. else
  1621. L->top = ci->top; /* correct top in case of emergency GC */
  1622. last += n;
  1623. if (TESTARG_k(i)) {
  1624. last += GETARG_Ax(*pc) * (MAXARG_C + 1);
  1625. pc++;
  1626. }
  1627. if (last > luaH_realasize(h)) /* needs more space? */
  1628. luaH_resizearray(L, h, last); /* preallocate it at once */
  1629. for (; n > 0; n--) {
  1630. TValue *val = s2v(ra + n);
  1631. setobj2t(L, &h->array[last - 1], val);
  1632. last--;
  1633. luaC_barrierback(L, obj2gco(h), val);
  1634. }
  1635. vmbreak;
  1636. }
  1637. vmcase(OP_CLOSURE) {
  1638. Proto *p = cl->p->p[GETARG_Bx(i)];
  1639. halfProtect(pushclosure(L, p, cl->upvals, base, ra));
  1640. checkGC(L, ra + 1);
  1641. vmbreak;
  1642. }
  1643. vmcase(OP_VARARG) {
  1644. int n = GETARG_C(i) - 1; /* required results */
  1645. Protect(luaT_getvarargs(L, ci, ra, n));
  1646. vmbreak;
  1647. }
  1648. vmcase(OP_VARARGPREP) {
  1649. luaT_adjustvarargs(L, GETARG_A(i), ci, cl->p);
  1650. updatetrap(ci);
  1651. if (trap) {
  1652. luaD_hookcall(L, ci);
  1653. L->oldpc = pc + 1; /* next opcode will be seen as a "new" line */
  1654. }
  1655. updatebase(ci); /* function has new base after adjustment */
  1656. vmbreak;
  1657. }
  1658. vmcase(OP_EXTRAARG) {
  1659. lua_assert(0);
  1660. vmbreak;
  1661. }
  1662. }
  1663. }
  1664. }
  1665. /* }================================================================== */