dub 0.2.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dub might be problematic. Click here for more details.

Files changed (277) hide show
  1. data/History.txt +92 -0
  2. data/LICENSE +20 -0
  3. data/README.rdoc +115 -0
  4. data/Rakefile +59 -0
  5. data/dub.gemspec +197 -0
  6. data/lib/dub/argument.rb +286 -0
  7. data/lib/dub/entities_unescape.rb +9 -0
  8. data/lib/dub/function.rb +177 -0
  9. data/lib/dub/function_group.rb +72 -0
  10. data/lib/dub/generator.rb +15 -0
  11. data/lib/dub/group.rb +20 -0
  12. data/lib/dub/klass.rb +338 -0
  13. data/lib/dub/lua/class.cpp.erb +114 -0
  14. data/lib/dub/lua/class_gen.rb +96 -0
  15. data/lib/dub/lua/function.cpp.erb +15 -0
  16. data/lib/dub/lua/function_gen.rb +329 -0
  17. data/lib/dub/lua/group.cpp.erb +9 -0
  18. data/lib/dub/lua/lua_cpp_helper.cpp +259 -0
  19. data/lib/dub/lua/lua_cpp_helper.h +219 -0
  20. data/lib/dub/lua/lua_object.cpp +158 -0
  21. data/lib/dub/lua/lua_object.h +69 -0
  22. data/lib/dub/lua/namespace.cpp.erb +42 -0
  23. data/lib/dub/lua/namespace_gen.rb +69 -0
  24. data/lib/dub/lua.rb +24 -0
  25. data/lib/dub/member_extraction.rb +128 -0
  26. data/lib/dub/namespace.rb +295 -0
  27. data/lib/dub/opts_parser.rb +30 -0
  28. data/lib/dub/parser.rb +46 -0
  29. data/lib/dub/templates/lua_template.erb +21 -0
  30. data/lib/dub/version.rb +3 -0
  31. data/lib/dub.rb +24 -20
  32. data/test/argument_test.rb +581 -0
  33. data/test/fixtures/app/CMakeLists.txt +54 -0
  34. data/test/fixtures/app/Doxyfile +1600 -0
  35. data/test/fixtures/app/bindings/all_lua.cpp +299 -0
  36. data/test/fixtures/app/include/matrix.h +283 -0
  37. data/test/fixtures/app/make_lua_bindings.rb +13 -0
  38. data/test/fixtures/app/vendor/lua/CMakeLists.txt +25 -0
  39. data/test/fixtures/app/vendor/lua/COPYRIGHT +34 -0
  40. data/test/fixtures/app/vendor/lua/HISTORY +183 -0
  41. data/test/fixtures/app/vendor/lua/INSTALL +99 -0
  42. data/test/fixtures/app/vendor/lua/Makefile +183 -0
  43. data/test/fixtures/app/vendor/lua/README +37 -0
  44. data/test/fixtures/app/vendor/lua/lapi.c +1080 -0
  45. data/test/fixtures/app/vendor/lua/lapi.h +16 -0
  46. data/test/fixtures/app/vendor/lua/lauxlib.c +653 -0
  47. data/test/fixtures/app/vendor/lua/lauxlib.h +174 -0
  48. data/test/fixtures/app/vendor/lua/lbaselib.c +643 -0
  49. data/test/fixtures/app/vendor/lua/lcode.c +839 -0
  50. data/test/fixtures/app/vendor/lua/lcode.h +76 -0
  51. data/test/fixtures/app/vendor/lua/ldblib.c +397 -0
  52. data/test/fixtures/app/vendor/lua/ldebug.c +622 -0
  53. data/test/fixtures/app/vendor/lua/ldebug.h +33 -0
  54. data/test/fixtures/app/vendor/lua/ldo.c +516 -0
  55. data/test/fixtures/app/vendor/lua/ldo.h +57 -0
  56. data/test/fixtures/app/vendor/lua/ldump.c +164 -0
  57. data/test/fixtures/app/vendor/lua/lfunc.c +174 -0
  58. data/test/fixtures/app/vendor/lua/lfunc.h +34 -0
  59. data/test/fixtures/app/vendor/lua/lgc.c +711 -0
  60. data/test/fixtures/app/vendor/lua/lgc.h +110 -0
  61. data/test/fixtures/app/vendor/lua/liblua.a +0 -0
  62. data/test/fixtures/app/vendor/lua/linit.c +38 -0
  63. data/test/fixtures/app/vendor/lua/liolib.c +532 -0
  64. data/test/fixtures/app/vendor/lua/llex.c +461 -0
  65. data/test/fixtures/app/vendor/lua/llex.h +81 -0
  66. data/test/fixtures/app/vendor/lua/llimits.h +128 -0
  67. data/test/fixtures/app/vendor/lua/lmathlib.c +263 -0
  68. data/test/fixtures/app/vendor/lua/lmem.c +86 -0
  69. data/test/fixtures/app/vendor/lua/lmem.h +49 -0
  70. data/test/fixtures/app/vendor/lua/loadlib.c +664 -0
  71. data/test/fixtures/app/vendor/lua/lobject.c +214 -0
  72. data/test/fixtures/app/vendor/lua/lobject.h +381 -0
  73. data/test/fixtures/app/vendor/lua/lopcodes.c +102 -0
  74. data/test/fixtures/app/vendor/lua/lopcodes.h +268 -0
  75. data/test/fixtures/app/vendor/lua/loslib.c +244 -0
  76. data/test/fixtures/app/vendor/lua/lparser.c +1337 -0
  77. data/test/fixtures/app/vendor/lua/lparser.h +82 -0
  78. data/test/fixtures/app/vendor/lua/lstate.c +214 -0
  79. data/test/fixtures/app/vendor/lua/lstate.h +168 -0
  80. data/test/fixtures/app/vendor/lua/lstring.c +111 -0
  81. data/test/fixtures/app/vendor/lua/lstring.h +31 -0
  82. data/test/fixtures/app/vendor/lua/lstrlib.c +868 -0
  83. data/test/fixtures/app/vendor/lua/ltable.c +588 -0
  84. data/test/fixtures/app/vendor/lua/ltable.h +40 -0
  85. data/test/fixtures/app/vendor/lua/ltablib.c +278 -0
  86. data/test/fixtures/app/vendor/lua/ltm.c +75 -0
  87. data/test/fixtures/app/vendor/lua/ltm.h +54 -0
  88. data/test/fixtures/app/vendor/lua/lua.c +695 -0
  89. data/test/fixtures/app/vendor/lua/lua.h +385 -0
  90. data/test/fixtures/app/vendor/lua/lua_dub_helper.h +77 -0
  91. data/test/fixtures/app/vendor/lua/luac +0 -0
  92. data/test/fixtures/app/vendor/lua/luac.c +200 -0
  93. data/test/fixtures/app/vendor/lua/luaconf.h +762 -0
  94. data/test/fixtures/app/vendor/lua/lualib.h +53 -0
  95. data/test/fixtures/app/vendor/lua/lundump.c +223 -0
  96. data/test/fixtures/app/vendor/lua/lundump.h +36 -0
  97. data/test/fixtures/app/vendor/lua/lvm.c +765 -0
  98. data/test/fixtures/app/vendor/lua/lvm.h +36 -0
  99. data/test/fixtures/app/vendor/lua/lzio.c +82 -0
  100. data/test/fixtures/app/vendor/lua/lzio.h +67 -0
  101. data/test/fixtures/app/vendor/lua/matrix.h +102 -0
  102. data/test/fixtures/app/vendor/lua/print.c +227 -0
  103. data/test/fixtures/app/vendor/lua/test/README +26 -0
  104. data/test/fixtures/app/vendor/lua/test/bisect.lua +27 -0
  105. data/test/fixtures/app/vendor/lua/test/cf.lua +16 -0
  106. data/test/fixtures/app/vendor/lua/test/echo.lua +5 -0
  107. data/test/fixtures/app/vendor/lua/test/env.lua +7 -0
  108. data/test/fixtures/app/vendor/lua/test/factorial.lua +32 -0
  109. data/test/fixtures/app/vendor/lua/test/fib.lua +40 -0
  110. data/test/fixtures/app/vendor/lua/test/fibfor.lua +13 -0
  111. data/test/fixtures/app/vendor/lua/test/globals.lua +13 -0
  112. data/test/fixtures/app/vendor/lua/test/hello.lua +3 -0
  113. data/test/fixtures/app/vendor/lua/test/life.lua +111 -0
  114. data/test/fixtures/app/vendor/lua/test/luac.lua +7 -0
  115. data/test/fixtures/app/vendor/lua/test/printf.lua +7 -0
  116. data/test/fixtures/app/vendor/lua/test/readonly.lua +12 -0
  117. data/test/fixtures/app/vendor/lua/test/sieve.lua +29 -0
  118. data/test/fixtures/app/vendor/lua/test/sort.lua +66 -0
  119. data/test/fixtures/app/vendor/lua/test/table.lua +12 -0
  120. data/test/fixtures/app/vendor/lua/test/trace-calls.lua +32 -0
  121. data/test/fixtures/app/vendor/lua/test/trace-globals.lua +38 -0
  122. data/test/fixtures/app/vendor/lua/test/xd.lua +14 -0
  123. data/test/fixtures/app/xml/classdub_1_1_base.xml +85 -0
  124. data/test/fixtures/app/xml/classdub_1_1_custom_destructor.xml +67 -0
  125. data/test/fixtures/app/xml/classdub_1_1_deletable_out_of_lua.xml +43 -0
  126. data/test/fixtures/app/xml/classdub_1_1_matrix.xml +482 -0
  127. data/test/fixtures/app/xml/classdub_1_1_no_destructor.xml +49 -0
  128. data/test/fixtures/app/xml/classdub_1_1_priv_sub_base.xml +89 -0
  129. data/test/fixtures/app/xml/classdub_1_1_private_constr.xml +68 -0
  130. data/test/fixtures/app/xml/classdub_1_1_static_constr.xml +69 -0
  131. data/test/fixtures/app/xml/classdub_1_1_sub_base.xml +89 -0
  132. data/test/fixtures/app/xml/classdub_1_1_t_mat.xml +252 -0
  133. data/test/fixtures/app/xml/combine.xslt +15 -0
  134. data/test/fixtures/app/xml/compound.xsd +814 -0
  135. data/test/fixtures/app/xml/dir_53661a2bdeb1d55e60581a7e15deb763.xml +12 -0
  136. data/test/fixtures/app/xml/index.xml +91 -0
  137. data/test/fixtures/app/xml/index.xsd +66 -0
  138. data/test/fixtures/app/xml/matrix_8h.xml +310 -0
  139. data/test/fixtures/app/xml/namespacedub.xml +48 -0
  140. data/test/fixtures/classcv_1_1_mat.xml +1996 -0
  141. data/test/fixtures/classcv_1_1_point__.xml +341 -0
  142. data/test/fixtures/classcv_1_1_scalar__.xml +269 -0
  143. data/test/fixtures/classcv_1_1_size__.xml +270 -0
  144. data/test/fixtures/dummy_class.cpp.erb +1 -0
  145. data/test/fixtures/dummy_function.cpp.erb +1 -0
  146. data/test/fixtures/group___magic_type.xml +406 -0
  147. data/test/fixtures/namespacecv.xml +12659 -0
  148. data/test/function_group_test.rb +43 -0
  149. data/test/function_test.rb +405 -0
  150. data/test/group_test.rb +241 -0
  151. data/test/helper.rb +34 -0
  152. data/test/klass_test.rb +551 -0
  153. data/test/lua_function_gen_test.rb +242 -0
  154. data/test/namespace_test.rb +220 -0
  155. data/test/parser_test.rb +36 -0
  156. metadata +229 -272
  157. checksums.yaml +0 -7
  158. data/lib/open_api_sdk/analytics.rb +0 -99
  159. data/lib/open_api_sdk/domains.rb +0 -353
  160. data/lib/open_api_sdk/dub.rb +0 -88
  161. data/lib/open_api_sdk/links.rb +0 -766
  162. data/lib/open_api_sdk/metatags.rb +0 -54
  163. data/lib/open_api_sdk/models/operations/bulkcreatelinks_response.rb +0 -60
  164. data/lib/open_api_sdk/models/operations/bulkupdatelinks_requestbody.rb +0 -27
  165. data/lib/open_api_sdk/models/operations/bulkupdatelinks_response.rb +0 -60
  166. data/lib/open_api_sdk/models/operations/color.rb +0 -24
  167. data/lib/open_api_sdk/models/operations/createdomain_requestbody.rb +0 -33
  168. data/lib/open_api_sdk/models/operations/createdomain_response.rb +0 -60
  169. data/lib/open_api_sdk/models/operations/createlink_requestbody.rb +0 -95
  170. data/lib/open_api_sdk/models/operations/createlink_response.rb +0 -60
  171. data/lib/open_api_sdk/models/operations/createtag_requestbody.rb +0 -32
  172. data/lib/open_api_sdk/models/operations/createtag_response.rb +0 -60
  173. data/lib/open_api_sdk/models/operations/data.rb +0 -83
  174. data/lib/open_api_sdk/models/operations/deletedomain_request.rb +0 -24
  175. data/lib/open_api_sdk/models/operations/deletedomain_response.rb +0 -60
  176. data/lib/open_api_sdk/models/operations/deletedomain_responsebody.rb +0 -24
  177. data/lib/open_api_sdk/models/operations/deletelink_request.rb +0 -24
  178. data/lib/open_api_sdk/models/operations/deletelink_response.rb +0 -60
  179. data/lib/open_api_sdk/models/operations/deletelink_responsebody.rb +0 -24
  180. data/lib/open_api_sdk/models/operations/event.rb +0 -21
  181. data/lib/open_api_sdk/models/operations/getlinkinfo_request.rb +0 -33
  182. data/lib/open_api_sdk/models/operations/getlinkinfo_response.rb +0 -60
  183. data/lib/open_api_sdk/models/operations/getlinks_request.rb +0 -51
  184. data/lib/open_api_sdk/models/operations/getlinks_response.rb +0 -60
  185. data/lib/open_api_sdk/models/operations/getlinkscount_request.rb +0 -48
  186. data/lib/open_api_sdk/models/operations/getlinkscount_response.rb +0 -60
  187. data/lib/open_api_sdk/models/operations/getmetatags_request.rb +0 -24
  188. data/lib/open_api_sdk/models/operations/getmetatags_response.rb +0 -33
  189. data/lib/open_api_sdk/models/operations/getmetatags_responsebody.rb +0 -30
  190. data/lib/open_api_sdk/models/operations/getqrcode_request.rb +0 -39
  191. data/lib/open_api_sdk/models/operations/getqrcode_response.rb +0 -60
  192. data/lib/open_api_sdk/models/operations/gettags_response.rb +0 -60
  193. data/lib/open_api_sdk/models/operations/getworkspace_request.rb +0 -24
  194. data/lib/open_api_sdk/models/operations/getworkspace_response.rb +0 -60
  195. data/lib/open_api_sdk/models/operations/groupby.rb +0 -28
  196. data/lib/open_api_sdk/models/operations/interval.rb +0 -25
  197. data/lib/open_api_sdk/models/operations/level.rb +0 -21
  198. data/lib/open_api_sdk/models/operations/listdomains_response.rb +0 -60
  199. data/lib/open_api_sdk/models/operations/paymentprocessor.rb +0 -20
  200. data/lib/open_api_sdk/models/operations/requestbody.rb +0 -95
  201. data/lib/open_api_sdk/models/operations/retrieveanalytics_request.rb +0 -81
  202. data/lib/open_api_sdk/models/operations/retrieveanalytics_response.rb +0 -60
  203. data/lib/open_api_sdk/models/operations/sort.rb +0 -20
  204. data/lib/open_api_sdk/models/operations/trackcustomer_requestbody.rb +0 -33
  205. data/lib/open_api_sdk/models/operations/trackcustomer_response.rb +0 -60
  206. data/lib/open_api_sdk/models/operations/trackcustomer_responsebody.rb +0 -33
  207. data/lib/open_api_sdk/models/operations/tracklead_requestbody.rb +0 -42
  208. data/lib/open_api_sdk/models/operations/tracklead_response.rb +0 -60
  209. data/lib/open_api_sdk/models/operations/tracklead_responsebody.rb +0 -42
  210. data/lib/open_api_sdk/models/operations/tracksale_requestbody.rb +0 -42
  211. data/lib/open_api_sdk/models/operations/tracksale_response.rb +0 -60
  212. data/lib/open_api_sdk/models/operations/tracksale_responsebody.rb +0 -42
  213. data/lib/open_api_sdk/models/operations/updatedomain_request.rb +0 -27
  214. data/lib/open_api_sdk/models/operations/updatedomain_requestbody.rb +0 -33
  215. data/lib/open_api_sdk/models/operations/updatedomain_response.rb +0 -60
  216. data/lib/open_api_sdk/models/operations/updatelink_request.rb +0 -27
  217. data/lib/open_api_sdk/models/operations/updatelink_requestbody.rb +0 -95
  218. data/lib/open_api_sdk/models/operations/updatelink_response.rb +0 -60
  219. data/lib/open_api_sdk/models/operations/updatetag_color.rb +0 -24
  220. data/lib/open_api_sdk/models/operations/updatetag_request.rb +0 -27
  221. data/lib/open_api_sdk/models/operations/updatetag_requestbody.rb +0 -32
  222. data/lib/open_api_sdk/models/operations/updatetag_response.rb +0 -60
  223. data/lib/open_api_sdk/models/operations/updateworkspace_request.rb +0 -27
  224. data/lib/open_api_sdk/models/operations/updateworkspace_requestbody.rb +0 -27
  225. data/lib/open_api_sdk/models/operations/updateworkspace_response.rb +0 -60
  226. data/lib/open_api_sdk/models/operations/upsertlink_requestbody.rb +0 -95
  227. data/lib/open_api_sdk/models/operations/upsertlink_response.rb +0 -60
  228. data/lib/open_api_sdk/models/operations.rb +0 -74
  229. data/lib/open_api_sdk/models/shared/badrequest.rb +0 -24
  230. data/lib/open_api_sdk/models/shared/code.rb +0 -18
  231. data/lib/open_api_sdk/models/shared/color.rb +0 -24
  232. data/lib/open_api_sdk/models/shared/conflict.rb +0 -24
  233. data/lib/open_api_sdk/models/shared/conflict_code.rb +0 -18
  234. data/lib/open_api_sdk/models/shared/conflict_error.rb +0 -30
  235. data/lib/open_api_sdk/models/shared/countrycode.rb +0 -267
  236. data/lib/open_api_sdk/models/shared/domains.rb +0 -27
  237. data/lib/open_api_sdk/models/shared/domainschema.rb +0 -48
  238. data/lib/open_api_sdk/models/shared/error.rb +0 -30
  239. data/lib/open_api_sdk/models/shared/forbidden.rb +0 -24
  240. data/lib/open_api_sdk/models/shared/forbidden_code.rb +0 -18
  241. data/lib/open_api_sdk/models/shared/forbidden_error.rb +0 -30
  242. data/lib/open_api_sdk/models/shared/geo.rb +0 -771
  243. data/lib/open_api_sdk/models/shared/internalservererror.rb +0 -24
  244. data/lib/open_api_sdk/models/shared/internalservererror_code.rb +0 -18
  245. data/lib/open_api_sdk/models/shared/internalservererror_error.rb +0 -30
  246. data/lib/open_api_sdk/models/shared/inviteexpired.rb +0 -24
  247. data/lib/open_api_sdk/models/shared/inviteexpired_code.rb +0 -18
  248. data/lib/open_api_sdk/models/shared/inviteexpired_error.rb +0 -30
  249. data/lib/open_api_sdk/models/shared/linkgeotargeting.rb +0 -771
  250. data/lib/open_api_sdk/models/shared/linkschema.rb +0 -142
  251. data/lib/open_api_sdk/models/shared/notfound.rb +0 -24
  252. data/lib/open_api_sdk/models/shared/notfound_code.rb +0 -18
  253. data/lib/open_api_sdk/models/shared/notfound_error.rb +0 -30
  254. data/lib/open_api_sdk/models/shared/plan.rb +0 -24
  255. data/lib/open_api_sdk/models/shared/ratelimitexceeded.rb +0 -24
  256. data/lib/open_api_sdk/models/shared/ratelimitexceeded_code.rb +0 -18
  257. data/lib/open_api_sdk/models/shared/ratelimitexceeded_error.rb +0 -30
  258. data/lib/open_api_sdk/models/shared/role.rb +0 -19
  259. data/lib/open_api_sdk/models/shared/security.rb +0 -24
  260. data/lib/open_api_sdk/models/shared/tagschema.rb +0 -30
  261. data/lib/open_api_sdk/models/shared/unauthorized.rb +0 -24
  262. data/lib/open_api_sdk/models/shared/unauthorized_code.rb +0 -18
  263. data/lib/open_api_sdk/models/shared/unauthorized_error.rb +0 -30
  264. data/lib/open_api_sdk/models/shared/unprocessableentity.rb +0 -24
  265. data/lib/open_api_sdk/models/shared/unprocessableentity_code.rb +0 -18
  266. data/lib/open_api_sdk/models/shared/unprocessableentity_error.rb +0 -30
  267. data/lib/open_api_sdk/models/shared/users.rb +0 -24
  268. data/lib/open_api_sdk/models/shared/workspaceschema.rb +0 -81
  269. data/lib/open_api_sdk/models/shared.rb +0 -49
  270. data/lib/open_api_sdk/qr_codes.rb +0 -97
  271. data/lib/open_api_sdk/sdkconfiguration.rb +0 -52
  272. data/lib/open_api_sdk/tags.rb +0 -272
  273. data/lib/open_api_sdk/track.rb +0 -276
  274. data/lib/open_api_sdk/utils/metadata_fields.rb +0 -150
  275. data/lib/open_api_sdk/utils/t.rb +0 -59
  276. data/lib/open_api_sdk/utils/utils.rb +0 -772
  277. data/lib/open_api_sdk/workspaces.rb +0 -192
@@ -0,0 +1,214 @@
1
+ /*
2
+ ** $Id: lobject.c,v 2.22 2006/02/10 17:43:52 roberto Exp $
3
+ ** Some generic functions over Lua objects
4
+ ** See Copyright Notice in lua.h
5
+ */
6
+
7
+ #include <ctype.h>
8
+ #include <stdarg.h>
9
+ #include <stdio.h>
10
+ #include <stdlib.h>
11
+ #include <string.h>
12
+
13
+ #define lobject_c
14
+ #define LUA_CORE
15
+
16
+ #include "lua.h"
17
+
18
+ #include "ldo.h"
19
+ #include "lmem.h"
20
+ #include "lobject.h"
21
+ #include "lstate.h"
22
+ #include "lstring.h"
23
+ #include "lvm.h"
24
+
25
+
26
+
27
+ const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL};
28
+
29
+
30
+ /*
31
+ ** converts an integer to a "floating point byte", represented as
32
+ ** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if
33
+ ** eeeee != 0 and (xxx) otherwise.
34
+ */
35
+ int luaO_int2fb (unsigned int x) {
36
+ int e = 0; /* expoent */
37
+ while (x >= 16) {
38
+ x = (x+1) >> 1;
39
+ e++;
40
+ }
41
+ if (x < 8) return x;
42
+ else return ((e+1) << 3) | (cast_int(x) - 8);
43
+ }
44
+
45
+
46
+ /* converts back */
47
+ int luaO_fb2int (int x) {
48
+ int e = (x >> 3) & 31;
49
+ if (e == 0) return x;
50
+ else return ((x & 7)+8) << (e - 1);
51
+ }
52
+
53
+
54
+ int luaO_log2 (unsigned int x) {
55
+ static const lu_byte log_2[256] = {
56
+ 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
57
+ 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
58
+ 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
59
+ 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
60
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
61
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
62
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
63
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
64
+ };
65
+ int l = -1;
66
+ while (x >= 256) { l += 8; x >>= 8; }
67
+ return l + log_2[x];
68
+
69
+ }
70
+
71
+
72
+ int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
73
+ if (ttype(t1) != ttype(t2)) return 0;
74
+ else switch (ttype(t1)) {
75
+ case LUA_TNIL:
76
+ return 1;
77
+ case LUA_TNUMBER:
78
+ return luai_numeq(nvalue(t1), nvalue(t2));
79
+ case LUA_TBOOLEAN:
80
+ return bvalue(t1) == bvalue(t2); /* boolean true must be 1 !! */
81
+ case LUA_TLIGHTUSERDATA:
82
+ return pvalue(t1) == pvalue(t2);
83
+ default:
84
+ lua_assert(iscollectable(t1));
85
+ return gcvalue(t1) == gcvalue(t2);
86
+ }
87
+ }
88
+
89
+
90
+ int luaO_str2d (const char *s, lua_Number *result) {
91
+ char *endptr;
92
+ *result = lua_str2number(s, &endptr);
93
+ if (endptr == s) return 0; /* conversion failed */
94
+ if (*endptr == 'x' || *endptr == 'X') /* maybe an hexadecimal constant? */
95
+ *result = cast_num(strtoul(s, &endptr, 16));
96
+ if (*endptr == '\0') return 1; /* most common case */
97
+ while (isspace(cast(unsigned char, *endptr))) endptr++;
98
+ if (*endptr != '\0') return 0; /* invalid trailing characters? */
99
+ return 1;
100
+ }
101
+
102
+
103
+
104
+ static void pushstr (lua_State *L, const char *str) {
105
+ setsvalue2s(L, L->top, luaS_new(L, str));
106
+ incr_top(L);
107
+ }
108
+
109
+
110
+ /* this function handles only `%d', `%c', %f, %p, and `%s' formats */
111
+ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
112
+ int n = 1;
113
+ pushstr(L, "");
114
+ for (;;) {
115
+ const char *e = strchr(fmt, '%');
116
+ if (e == NULL) break;
117
+ setsvalue2s(L, L->top, luaS_newlstr(L, fmt, e-fmt));
118
+ incr_top(L);
119
+ switch (*(e+1)) {
120
+ case 's': {
121
+ const char *s = va_arg(argp, char *);
122
+ if (s == NULL) s = "(null)";
123
+ pushstr(L, s);
124
+ break;
125
+ }
126
+ case 'c': {
127
+ char buff[2];
128
+ buff[0] = cast(char, va_arg(argp, int));
129
+ buff[1] = '\0';
130
+ pushstr(L, buff);
131
+ break;
132
+ }
133
+ case 'd': {
134
+ setnvalue(L->top, cast_num(va_arg(argp, int)));
135
+ incr_top(L);
136
+ break;
137
+ }
138
+ case 'f': {
139
+ setnvalue(L->top, cast_num(va_arg(argp, l_uacNumber)));
140
+ incr_top(L);
141
+ break;
142
+ }
143
+ case 'p': {
144
+ char buff[4*sizeof(void *) + 8]; /* should be enough space for a `%p' */
145
+ sprintf(buff, "%p", va_arg(argp, void *));
146
+ pushstr(L, buff);
147
+ break;
148
+ }
149
+ case '%': {
150
+ pushstr(L, "%");
151
+ break;
152
+ }
153
+ default: {
154
+ char buff[3];
155
+ buff[0] = '%';
156
+ buff[1] = *(e+1);
157
+ buff[2] = '\0';
158
+ pushstr(L, buff);
159
+ break;
160
+ }
161
+ }
162
+ n += 2;
163
+ fmt = e+2;
164
+ }
165
+ pushstr(L, fmt);
166
+ luaV_concat(L, n+1, cast_int(L->top - L->base) - 1);
167
+ L->top -= n;
168
+ return svalue(L->top - 1);
169
+ }
170
+
171
+
172
+ const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
173
+ const char *msg;
174
+ va_list argp;
175
+ va_start(argp, fmt);
176
+ msg = luaO_pushvfstring(L, fmt, argp);
177
+ va_end(argp);
178
+ return msg;
179
+ }
180
+
181
+
182
+ void luaO_chunkid (char *out, const char *source, size_t bufflen) {
183
+ if (*source == '=') {
184
+ strncpy(out, source+1, bufflen); /* remove first char */
185
+ out[bufflen-1] = '\0'; /* ensures null termination */
186
+ }
187
+ else { /* out = "source", or "...source" */
188
+ if (*source == '@') {
189
+ size_t l;
190
+ source++; /* skip the `@' */
191
+ bufflen -= sizeof(" '...' ");
192
+ l = strlen(source);
193
+ strcpy(out, "");
194
+ if (l > bufflen) {
195
+ source += (l-bufflen); /* get last part of file name */
196
+ strcat(out, "...");
197
+ }
198
+ strcat(out, source);
199
+ }
200
+ else { /* out = [string "string"] */
201
+ size_t len = strcspn(source, "\n\r"); /* stop at first newline */
202
+ bufflen -= sizeof(" [string \"...\"] ");
203
+ if (len > bufflen) len = bufflen;
204
+ strcpy(out, "[string \"");
205
+ if (source[len] != '\0') { /* must truncate? */
206
+ strncat(out, source, len);
207
+ strcat(out, "...");
208
+ }
209
+ else
210
+ strcat(out, source);
211
+ strcat(out, "\"]");
212
+ }
213
+ }
214
+ }
@@ -0,0 +1,381 @@
1
+ /*
2
+ ** $Id: lobject.h,v 2.20 2006/01/18 11:37:34 roberto Exp $
3
+ ** Type definitions for Lua objects
4
+ ** See Copyright Notice in lua.h
5
+ */
6
+
7
+
8
+ #ifndef lobject_h
9
+ #define lobject_h
10
+
11
+
12
+ #include <stdarg.h>
13
+
14
+
15
+ #include "llimits.h"
16
+ #include "lua.h"
17
+
18
+
19
+ /* tags for values visible from Lua */
20
+ #define LAST_TAG LUA_TTHREAD
21
+
22
+ #define NUM_TAGS (LAST_TAG+1)
23
+
24
+
25
+ /*
26
+ ** Extra tags for non-values
27
+ */
28
+ #define LUA_TPROTO (LAST_TAG+1)
29
+ #define LUA_TUPVAL (LAST_TAG+2)
30
+ #define LUA_TDEADKEY (LAST_TAG+3)
31
+
32
+
33
+ /*
34
+ ** Union of all collectable objects
35
+ */
36
+ typedef union GCObject GCObject;
37
+
38
+
39
+ /*
40
+ ** Common Header for all collectable objects (in macro form, to be
41
+ ** included in other objects)
42
+ */
43
+ #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked
44
+
45
+
46
+ /*
47
+ ** Common header in struct form
48
+ */
49
+ typedef struct GCheader {
50
+ CommonHeader;
51
+ } GCheader;
52
+
53
+
54
+
55
+
56
+ /*
57
+ ** Union of all Lua values
58
+ */
59
+ typedef union {
60
+ GCObject *gc;
61
+ void *p;
62
+ lua_Number n;
63
+ int b;
64
+ } Value;
65
+
66
+
67
+ /*
68
+ ** Tagged Values
69
+ */
70
+
71
+ #define TValuefields Value value; int tt
72
+
73
+ typedef struct lua_TValue {
74
+ TValuefields;
75
+ } TValue;
76
+
77
+
78
+ /* Macros to test type */
79
+ #define ttisnil(o) (ttype(o) == LUA_TNIL)
80
+ #define ttisnumber(o) (ttype(o) == LUA_TNUMBER)
81
+ #define ttisstring(o) (ttype(o) == LUA_TSTRING)
82
+ #define ttistable(o) (ttype(o) == LUA_TTABLE)
83
+ #define ttisfunction(o) (ttype(o) == LUA_TFUNCTION)
84
+ #define ttisboolean(o) (ttype(o) == LUA_TBOOLEAN)
85
+ #define ttisuserdata(o) (ttype(o) == LUA_TUSERDATA)
86
+ #define ttisthread(o) (ttype(o) == LUA_TTHREAD)
87
+ #define ttislightuserdata(o) (ttype(o) == LUA_TLIGHTUSERDATA)
88
+
89
+ /* Macros to access values */
90
+ #define ttype(o) ((o)->tt)
91
+ #define gcvalue(o) check_exp(iscollectable(o), (o)->value.gc)
92
+ #define pvalue(o) check_exp(ttislightuserdata(o), (o)->value.p)
93
+ #define nvalue(o) check_exp(ttisnumber(o), (o)->value.n)
94
+ #define rawtsvalue(o) check_exp(ttisstring(o), &(o)->value.gc->ts)
95
+ #define tsvalue(o) (&rawtsvalue(o)->tsv)
96
+ #define rawuvalue(o) check_exp(ttisuserdata(o), &(o)->value.gc->u)
97
+ #define uvalue(o) (&rawuvalue(o)->uv)
98
+ #define clvalue(o) check_exp(ttisfunction(o), &(o)->value.gc->cl)
99
+ #define hvalue(o) check_exp(ttistable(o), &(o)->value.gc->h)
100
+ #define bvalue(o) check_exp(ttisboolean(o), (o)->value.b)
101
+ #define thvalue(o) check_exp(ttisthread(o), &(o)->value.gc->th)
102
+
103
+ #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
104
+
105
+ /*
106
+ ** for internal debug only
107
+ */
108
+ #define checkconsistency(obj) \
109
+ lua_assert(!iscollectable(obj) || (ttype(obj) == (obj)->value.gc->gch.tt))
110
+
111
+ #define checkliveness(g,obj) \
112
+ lua_assert(!iscollectable(obj) || \
113
+ ((ttype(obj) == (obj)->value.gc->gch.tt) && !isdead(g, (obj)->value.gc)))
114
+
115
+
116
+ /* Macros to set values */
117
+ #define setnilvalue(obj) ((obj)->tt=LUA_TNIL)
118
+
119
+ #define setnvalue(obj,x) \
120
+ { TValue *i_o=(obj); i_o->value.n=(x); i_o->tt=LUA_TNUMBER; }
121
+
122
+ #define setpvalue(obj,x) \
123
+ { TValue *i_o=(obj); i_o->value.p=(x); i_o->tt=LUA_TLIGHTUSERDATA; }
124
+
125
+ #define setbvalue(obj,x) \
126
+ { TValue *i_o=(obj); i_o->value.b=(x); i_o->tt=LUA_TBOOLEAN; }
127
+
128
+ #define setsvalue(L,obj,x) \
129
+ { TValue *i_o=(obj); \
130
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TSTRING; \
131
+ checkliveness(G(L),i_o); }
132
+
133
+ #define setuvalue(L,obj,x) \
134
+ { TValue *i_o=(obj); \
135
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TUSERDATA; \
136
+ checkliveness(G(L),i_o); }
137
+
138
+ #define setthvalue(L,obj,x) \
139
+ { TValue *i_o=(obj); \
140
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TTHREAD; \
141
+ checkliveness(G(L),i_o); }
142
+
143
+ #define setclvalue(L,obj,x) \
144
+ { TValue *i_o=(obj); \
145
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TFUNCTION; \
146
+ checkliveness(G(L),i_o); }
147
+
148
+ #define sethvalue(L,obj,x) \
149
+ { TValue *i_o=(obj); \
150
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TTABLE; \
151
+ checkliveness(G(L),i_o); }
152
+
153
+ #define setptvalue(L,obj,x) \
154
+ { TValue *i_o=(obj); \
155
+ i_o->value.gc=cast(GCObject *, (x)); i_o->tt=LUA_TPROTO; \
156
+ checkliveness(G(L),i_o); }
157
+
158
+
159
+
160
+
161
+ #define setobj(L,obj1,obj2) \
162
+ { const TValue *o2=(obj2); TValue *o1=(obj1); \
163
+ o1->value = o2->value; o1->tt=o2->tt; \
164
+ checkliveness(G(L),o1); }
165
+
166
+
167
+ /*
168
+ ** different types of sets, according to destination
169
+ */
170
+
171
+ /* from stack to (same) stack */
172
+ #define setobjs2s setobj
173
+ /* to stack (not from same stack) */
174
+ #define setobj2s setobj
175
+ #define setsvalue2s setsvalue
176
+ #define sethvalue2s sethvalue
177
+ #define setptvalue2s setptvalue
178
+ /* from table to same table */
179
+ #define setobjt2t setobj
180
+ /* to table */
181
+ #define setobj2t setobj
182
+ /* to new object */
183
+ #define setobj2n setobj
184
+ #define setsvalue2n setsvalue
185
+
186
+ #define setttype(obj, tt) (ttype(obj) = (tt))
187
+
188
+
189
+ #define iscollectable(o) (ttype(o) >= LUA_TSTRING)
190
+
191
+
192
+
193
+ typedef TValue *StkId; /* index to stack elements */
194
+
195
+
196
+ /*
197
+ ** String headers for string table
198
+ */
199
+ typedef union TString {
200
+ L_Umaxalign dummy; /* ensures maximum alignment for strings */
201
+ struct {
202
+ CommonHeader;
203
+ lu_byte reserved;
204
+ unsigned int hash;
205
+ size_t len;
206
+ } tsv;
207
+ } TString;
208
+
209
+
210
+ #define getstr(ts) cast(const char *, (ts) + 1)
211
+ #define svalue(o) getstr(tsvalue(o))
212
+
213
+
214
+
215
+ typedef union Udata {
216
+ L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */
217
+ struct {
218
+ CommonHeader;
219
+ struct Table *metatable;
220
+ struct Table *env;
221
+ size_t len;
222
+ } uv;
223
+ } Udata;
224
+
225
+
226
+
227
+
228
+ /*
229
+ ** Function Prototypes
230
+ */
231
+ typedef struct Proto {
232
+ CommonHeader;
233
+ TValue *k; /* constants used by the function */
234
+ Instruction *code;
235
+ struct Proto **p; /* functions defined inside the function */
236
+ int *lineinfo; /* map from opcodes to source lines */
237
+ struct LocVar *locvars; /* information about local variables */
238
+ TString **upvalues; /* upvalue names */
239
+ TString *source;
240
+ int sizeupvalues;
241
+ int sizek; /* size of `k' */
242
+ int sizecode;
243
+ int sizelineinfo;
244
+ int sizep; /* size of `p' */
245
+ int sizelocvars;
246
+ int linedefined;
247
+ int lastlinedefined;
248
+ GCObject *gclist;
249
+ lu_byte nups; /* number of upvalues */
250
+ lu_byte numparams;
251
+ lu_byte is_vararg;
252
+ lu_byte maxstacksize;
253
+ } Proto;
254
+
255
+
256
+ /* masks for new-style vararg */
257
+ #define VARARG_HASARG 1
258
+ #define VARARG_ISVARARG 2
259
+ #define VARARG_NEEDSARG 4
260
+
261
+
262
+ typedef struct LocVar {
263
+ TString *varname;
264
+ int startpc; /* first point where variable is active */
265
+ int endpc; /* first point where variable is dead */
266
+ } LocVar;
267
+
268
+
269
+
270
+ /*
271
+ ** Upvalues
272
+ */
273
+
274
+ typedef struct UpVal {
275
+ CommonHeader;
276
+ TValue *v; /* points to stack or to its own value */
277
+ union {
278
+ TValue value; /* the value (when closed) */
279
+ struct { /* double linked list (when open) */
280
+ struct UpVal *prev;
281
+ struct UpVal *next;
282
+ } l;
283
+ } u;
284
+ } UpVal;
285
+
286
+
287
+ /*
288
+ ** Closures
289
+ */
290
+
291
+ #define ClosureHeader \
292
+ CommonHeader; lu_byte isC; lu_byte nupvalues; GCObject *gclist; \
293
+ struct Table *env
294
+
295
+ typedef struct CClosure {
296
+ ClosureHeader;
297
+ lua_CFunction f;
298
+ TValue upvalue[1];
299
+ } CClosure;
300
+
301
+
302
+ typedef struct LClosure {
303
+ ClosureHeader;
304
+ struct Proto *p;
305
+ UpVal *upvals[1];
306
+ } LClosure;
307
+
308
+
309
+ typedef union Closure {
310
+ CClosure c;
311
+ LClosure l;
312
+ } Closure;
313
+
314
+
315
+ #define iscfunction(o) (ttype(o) == LUA_TFUNCTION && clvalue(o)->c.isC)
316
+ #define isLfunction(o) (ttype(o) == LUA_TFUNCTION && !clvalue(o)->c.isC)
317
+
318
+
319
+ /*
320
+ ** Tables
321
+ */
322
+
323
+ typedef union TKey {
324
+ struct {
325
+ TValuefields;
326
+ struct Node *next; /* for chaining */
327
+ } nk;
328
+ TValue tvk;
329
+ } TKey;
330
+
331
+
332
+ typedef struct Node {
333
+ TValue i_val;
334
+ TKey i_key;
335
+ } Node;
336
+
337
+
338
+ typedef struct Table {
339
+ CommonHeader;
340
+ lu_byte flags; /* 1<<p means tagmethod(p) is not present */
341
+ lu_byte lsizenode; /* log2 of size of `node' array */
342
+ struct Table *metatable;
343
+ TValue *array; /* array part */
344
+ Node *node;
345
+ Node *lastfree; /* any free position is before this position */
346
+ GCObject *gclist;
347
+ int sizearray; /* size of `array' array */
348
+ } Table;
349
+
350
+
351
+
352
+ /*
353
+ ** `module' operation for hashing (size is always a power of 2)
354
+ */
355
+ #define lmod(s,size) \
356
+ (check_exp((size&(size-1))==0, (cast(int, (s) & ((size)-1)))))
357
+
358
+
359
+ #define twoto(x) (1<<(x))
360
+ #define sizenode(t) (twoto((t)->lsizenode))
361
+
362
+
363
+ #define luaO_nilobject (&luaO_nilobject_)
364
+
365
+ LUAI_DATA const TValue luaO_nilobject_;
366
+
367
+ #define ceillog2(x) (luaO_log2((x)-1) + 1)
368
+
369
+ LUAI_FUNC int luaO_log2 (unsigned int x);
370
+ LUAI_FUNC int luaO_int2fb (unsigned int x);
371
+ LUAI_FUNC int luaO_fb2int (int x);
372
+ LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2);
373
+ LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result);
374
+ LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,
375
+ va_list argp);
376
+ LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
377
+ LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len);
378
+
379
+
380
+ #endif
381
+
@@ -0,0 +1,102 @@
1
+ /*
2
+ ** $Id: lopcodes.c,v 1.37 2005/11/08 19:45:36 roberto Exp $
3
+ ** See Copyright Notice in lua.h
4
+ */
5
+
6
+
7
+ #define lopcodes_c
8
+ #define LUA_CORE
9
+
10
+
11
+ #include "lopcodes.h"
12
+
13
+
14
+ /* ORDER OP */
15
+
16
+ const char *const luaP_opnames[NUM_OPCODES+1] = {
17
+ "MOVE",
18
+ "LOADK",
19
+ "LOADBOOL",
20
+ "LOADNIL",
21
+ "GETUPVAL",
22
+ "GETGLOBAL",
23
+ "GETTABLE",
24
+ "SETGLOBAL",
25
+ "SETUPVAL",
26
+ "SETTABLE",
27
+ "NEWTABLE",
28
+ "SELF",
29
+ "ADD",
30
+ "SUB",
31
+ "MUL",
32
+ "DIV",
33
+ "MOD",
34
+ "POW",
35
+ "UNM",
36
+ "NOT",
37
+ "LEN",
38
+ "CONCAT",
39
+ "JMP",
40
+ "EQ",
41
+ "LT",
42
+ "LE",
43
+ "TEST",
44
+ "TESTSET",
45
+ "CALL",
46
+ "TAILCALL",
47
+ "RETURN",
48
+ "FORLOOP",
49
+ "FORPREP",
50
+ "TFORLOOP",
51
+ "SETLIST",
52
+ "CLOSE",
53
+ "CLOSURE",
54
+ "VARARG",
55
+ NULL
56
+ };
57
+
58
+
59
+ #define opmode(t,a,b,c,m) (((t)<<7) | ((a)<<6) | ((b)<<4) | ((c)<<2) | (m))
60
+
61
+ const lu_byte luaP_opmodes[NUM_OPCODES] = {
62
+ /* T A B C mode opcode */
63
+ opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_MOVE */
64
+ ,opmode(0, 1, OpArgK, OpArgN, iABx) /* OP_LOADK */
65
+ ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_LOADBOOL */
66
+ ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_LOADNIL */
67
+ ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_GETUPVAL */
68
+ ,opmode(0, 1, OpArgK, OpArgN, iABx) /* OP_GETGLOBAL */
69
+ ,opmode(0, 1, OpArgR, OpArgK, iABC) /* OP_GETTABLE */
70
+ ,opmode(0, 0, OpArgK, OpArgN, iABx) /* OP_SETGLOBAL */
71
+ ,opmode(0, 0, OpArgU, OpArgN, iABC) /* OP_SETUPVAL */
72
+ ,opmode(0, 0, OpArgK, OpArgK, iABC) /* OP_SETTABLE */
73
+ ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_NEWTABLE */
74
+ ,opmode(0, 1, OpArgR, OpArgK, iABC) /* OP_SELF */
75
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_ADD */
76
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_SUB */
77
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MUL */
78
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_DIV */
79
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MOD */
80
+ ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_POW */
81
+ ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_UNM */
82
+ ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_NOT */
83
+ ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_LEN */
84
+ ,opmode(0, 1, OpArgR, OpArgR, iABC) /* OP_CONCAT */
85
+ ,opmode(0, 0, OpArgR, OpArgN, iAsBx) /* OP_JMP */
86
+ ,opmode(1, 0, OpArgK, OpArgK, iABC) /* OP_EQ */
87
+ ,opmode(1, 0, OpArgK, OpArgK, iABC) /* OP_LT */
88
+ ,opmode(1, 0, OpArgK, OpArgK, iABC) /* OP_LE */
89
+ ,opmode(1, 1, OpArgR, OpArgU, iABC) /* OP_TEST */
90
+ ,opmode(1, 1, OpArgR, OpArgU, iABC) /* OP_TESTSET */
91
+ ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_CALL */
92
+ ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_TAILCALL */
93
+ ,opmode(0, 0, OpArgU, OpArgN, iABC) /* OP_RETURN */
94
+ ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORLOOP */
95
+ ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORPREP */
96
+ ,opmode(1, 0, OpArgN, OpArgU, iABC) /* OP_TFORLOOP */
97
+ ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */
98
+ ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */
99
+ ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */
100
+ ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_VARARG */
101
+ };
102
+