ext_ffi_api.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>ffi.* API Functions</title>
  5. <meta charset="utf-8">
  6. <meta name="Copyright" content="Copyright (C) 2005-2022">
  7. <meta name="Language" content="en">
  8. <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
  9. <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
  10. <style type="text/css">
  11. table.abitable { width: 30em; line-height: 1.2; }
  12. tr.abihead td { font-weight: bold; }
  13. td.abiparam { font-weight: bold; width: 6em; }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="site">
  18. <a href="https://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
  19. </div>
  20. <div id="head">
  21. <h1><tt>ffi.*</tt> API Functions</h1>
  22. </div>
  23. <div id="nav">
  24. <ul><li>
  25. <a href="luajit.html">LuaJIT</a>
  26. <ul><li>
  27. <a href="https://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
  28. </li><li>
  29. <a href="install.html">Installation</a>
  30. </li><li>
  31. <a href="running.html">Running</a>
  32. </li></ul>
  33. </li><li>
  34. <a href="extensions.html">Extensions</a>
  35. <ul><li>
  36. <a href="ext_ffi.html">FFI Library</a>
  37. <ul><li>
  38. <a href="ext_ffi_tutorial.html">FFI Tutorial</a>
  39. </li><li>
  40. <a class="current" href="ext_ffi_api.html">ffi.* API</a>
  41. </li><li>
  42. <a href="ext_ffi_semantics.html">FFI Semantics</a>
  43. </li></ul>
  44. </li><li>
  45. <a href="ext_buffer.html">String Buffers</a>
  46. </li><li>
  47. <a href="ext_jit.html">jit.* Library</a>
  48. </li><li>
  49. <a href="ext_c_api.html">Lua/C API</a>
  50. </li><li>
  51. <a href="ext_profiler.html">Profiler</a>
  52. </li></ul>
  53. </li><li>
  54. <a href="status.html">Status</a>
  55. </li><li>
  56. <a href="faq.html">FAQ</a>
  57. </li><li>
  58. <a href="http://wiki.luajit.org/">Wiki <span class="ext">&raquo;</span></a>
  59. </li><li>
  60. <a href="https://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
  61. </li></ul>
  62. </div>
  63. <div id="main">
  64. <p>
  65. This page describes the API functions provided by the FFI library in
  66. detail. It's recommended to read through the
  67. <a href="ext_ffi.html">introduction</a> and the
  68. <a href="ext_ffi_tutorial.html">FFI tutorial</a> first.
  69. </p>
  70. <h2 id="glossary">Glossary</h2>
  71. <ul>
  72. <li><b>cdecl</b> &mdash; An abstract C&nbsp;type declaration (a Lua
  73. string).</li>
  74. <li><b>ctype</b> &mdash; A C&nbsp;type object. This is a special kind of
  75. <b>cdata</b> returned by <tt>ffi.typeof()</tt>. It serves as a
  76. <b>cdata</b> <a href="#ffi_new">constructor</a> when called.</li>
  77. <li><b>cdata</b> &mdash; A C&nbsp;data object. It holds a value of the
  78. corresponding <b>ctype</b>.</li>
  79. <li><b>ct</b> &mdash; A C&nbsp;type specification which can be used for
  80. most of the API functions. Either a <b>cdecl</b>, a <b>ctype</b> or a
  81. <b>cdata</b> serving as a template type.</li>
  82. <li><b>cb</b> &mdash; A callback object. This is a C&nbsp;data object
  83. holding a special function pointer. Calling this function from
  84. C&nbsp;code runs an associated Lua function.</li>
  85. <li><b>VLA</b> &mdash; A variable-length array is declared with a
  86. <tt>?</tt> instead of the number of elements, e.g. <tt>"int[?]"</tt>.
  87. The number of elements (<tt>nelem</tt>) must be given when it's
  88. <a href="#ffi_new">created</a>.</li>
  89. <li><b>VLS</b> &mdash; A variable-length struct is a <tt>struct</tt> C
  90. type where the last element is a <b>VLA</b>. The same rules for
  91. declaration and creation apply.</li>
  92. </ul>
  93. <h2 id="decl">Declaring and Accessing External Symbols</h2>
  94. <p>
  95. External symbols must be declared first and can then be accessed by
  96. indexing a <a href="ext_ffi_semantics.html#clib">C&nbsp;library
  97. namespace</a>, which automatically binds the symbol to a specific
  98. library.
  99. </p>
  100. <h3 id="ffi_cdef"><tt>ffi.cdef(def)</tt></h3>
  101. <p>
  102. Adds multiple C&nbsp;declarations for types or external symbols (named
  103. variables or functions). <tt>def</tt> must be a Lua string. It's
  104. recommended to use the syntactic sugar for string arguments as
  105. follows:
  106. </p>
  107. <pre class="code">
  108. ffi.cdef[[
  109. <span style="color:#00a000;">typedef struct foo { int a, b; } foo_t; // Declare a struct and typedef.
  110. int dofoo(foo_t *f, int n); /* Declare an external C function. */</span>
  111. ]]
  112. </pre>
  113. <p>
  114. The contents of the string (the part in green above) must be a
  115. sequence of
  116. <a href="ext_ffi_semantics.html#clang">C&nbsp;declarations</a>,
  117. separated by semicolons. The trailing semicolon for a single
  118. declaration may be omitted.
  119. </p>
  120. <p>
  121. Please note, that external symbols are only <em>declared</em>, but they
  122. are <em>not bound</em> to any specific address, yet. Binding is
  123. achieved with C&nbsp;library namespaces (see below).
  124. </p>
  125. <p style="color: #c00000;">
  126. C&nbsp;declarations are not passed through a C&nbsp;pre-processor,
  127. yet. No pre-processor tokens are allowed, except for
  128. <tt>#pragma&nbsp;pack</tt>. Replace <tt>#define</tt> in existing
  129. C&nbsp;header files with <tt>enum</tt>, <tt>static&nbsp;const</tt>
  130. or <tt>typedef</tt> and/or pass the files through an external
  131. C&nbsp;pre-processor (once). Be careful not to include unneeded or
  132. redundant declarations from unrelated header files.
  133. </p>
  134. <h3 id="ffi_C"><tt>ffi.C</tt></h3>
  135. <p>
  136. This is the default C&nbsp;library namespace &mdash; note the
  137. uppercase <tt>'C'</tt>. It binds to the default set of symbols or
  138. libraries on the target system. These are more or less the same as a
  139. C&nbsp;compiler would offer by default, without specifying extra link
  140. libraries.
  141. </p>
  142. <p>
  143. On POSIX systems, this binds to symbols in the default or global
  144. namespace. This includes all exported symbols from the executable and
  145. any libraries loaded into the global namespace. This includes at least
  146. <tt>libc</tt>, <tt>libm</tt>, <tt>libdl</tt> (on Linux),
  147. <tt>libgcc</tt> (if compiled with GCC), as well as any exported
  148. symbols from the Lua/C&nbsp;API provided by LuaJIT itself.
  149. </p>
  150. <p>
  151. On Windows systems, this binds to symbols exported from the
  152. <tt>*.exe</tt>, the <tt>lua51.dll</tt> (i.e. the Lua/C&nbsp;API
  153. provided by LuaJIT itself), the C&nbsp;runtime library LuaJIT was linked
  154. with (<tt>msvcrt*.dll</tt>), <tt>kernel32.dll</tt>,
  155. <tt>user32.dll</tt> and <tt>gdi32.dll</tt>.
  156. </p>
  157. <h3 id="ffi_load"><tt>clib = ffi.load(name [,global])</tt></h3>
  158. <p>
  159. This loads the dynamic library given by <tt>name</tt> and returns
  160. a new C&nbsp;library namespace which binds to its symbols. On POSIX
  161. systems, if <tt>global</tt> is <tt>true</tt>, the library symbols are
  162. loaded into the global namespace, too.
  163. </p>
  164. <p>
  165. If <tt>name</tt> is a path, the library is loaded from this path.
  166. Otherwise <tt>name</tt> is canonicalized in a system-dependent way and
  167. searched in the default search path for dynamic libraries:
  168. </p>
  169. <p>
  170. On POSIX systems, if the name contains no dot, the extension
  171. <tt>.so</tt> is appended. Also, the <tt>lib</tt> prefix is prepended
  172. if necessary. So <tt>ffi.load("z")</tt> looks for <tt>"libz.so"</tt>
  173. in the default shared library search path.
  174. </p>
  175. <p>
  176. On Windows systems, if the name contains no dot, the extension
  177. <tt>.dll</tt> is appended. So <tt>ffi.load("ws2_32")</tt> looks for
  178. <tt>"ws2_32.dll"</tt> in the default DLL search path.
  179. </p>
  180. <h2 id="create">Creating cdata Objects</h2>
  181. <p>
  182. The following API functions create cdata objects (<tt>type()</tt>
  183. returns <tt>"cdata"</tt>). All created cdata objects are
  184. <a href="ext_ffi_semantics.html#gc">garbage collected</a>.
  185. </p>
  186. <h3 id="ffi_new"><tt>cdata = ffi.new(ct [,nelem] [,init...])<br>
  187. cdata = <em>ctype</em>([nelem,] [init...])</tt></h3>
  188. <p>
  189. Creates a cdata object for the given <tt>ct</tt>. VLA/VLS types
  190. require the <tt>nelem</tt> argument. The second syntax uses a ctype as
  191. a constructor and is otherwise fully equivalent.
  192. </p>
  193. <p>
  194. The cdata object is initialized according to the
  195. <a href="ext_ffi_semantics.html#init">rules for initializers</a>,
  196. using the optional <tt>init</tt> arguments. Excess initializers cause
  197. an error.
  198. </p>
  199. <p>
  200. Performance notice: if you want to create many objects of one kind,
  201. parse the cdecl only once and get its ctype with
  202. <tt>ffi.typeof()</tt>. Then use the ctype as a constructor repeatedly.
  203. </p>
  204. <p style="font-size: 8pt;">
  205. Please note, that an anonymous <tt>struct</tt> declaration implicitly
  206. creates a new and distinguished ctype every time you use it for
  207. <tt>ffi.new()</tt>. This is probably <b>not</b> what you want,
  208. especially if you create more than one cdata object. Different anonymous
  209. <tt>structs</tt> are not considered assignment-compatible by the
  210. C&nbsp;standard, even though they may have the same fields! Also, they
  211. are considered different types by the JIT-compiler, which may cause an
  212. excessive number of traces. It's strongly suggested to either declare
  213. a named <tt>struct</tt> or <tt>typedef</tt> with <tt>ffi.cdef()</tt>
  214. or to create a single ctype object for an anonymous <tt>struct</tt>
  215. with <tt>ffi.typeof()</tt>.
  216. </p>
  217. <h3 id="ffi_typeof"><tt>ctype = ffi.typeof(ct)</tt></h3>
  218. <p>
  219. Creates a ctype object for the given <tt>ct</tt>.
  220. </p>
  221. <p>
  222. This function is especially useful to parse a cdecl only once and then
  223. use the resulting ctype object as a <a href="#ffi_new">constructor</a>.
  224. </p>
  225. <h3 id="ffi_cast"><tt>cdata = ffi.cast(ct, init)</tt></h3>
  226. <p>
  227. Creates a scalar cdata object for the given <tt>ct</tt>. The cdata
  228. object is initialized with <tt>init</tt> using the "cast" variant of
  229. the <a href="ext_ffi_semantics.html#convert">C&nbsp;type conversion
  230. rules</a>.
  231. </p>
  232. <p>
  233. This functions is mainly useful to override the pointer compatibility
  234. checks or to convert pointers to addresses or vice versa.
  235. </p>
  236. <h3 id="ffi_metatype"><tt>ctype = ffi.metatype(ct, metatable)</tt></h3>
  237. <p>
  238. Creates a ctype object for the given <tt>ct</tt> and associates it with
  239. a metatable. Only <tt>struct</tt>/<tt>union</tt> types, complex numbers
  240. and vectors are allowed. Other types may be wrapped in a
  241. <tt>struct</tt>, if needed.
  242. </p>
  243. <p>
  244. The association with a metatable is permanent and cannot be changed
  245. afterwards. Neither the contents of the <tt>metatable</tt> nor the
  246. contents of an <tt>__index</tt> table (if any) may be modified
  247. afterwards. The associated metatable automatically applies to all uses
  248. of this type, no matter how the objects are created or where they
  249. originate from. Note that predefined operations on types have
  250. precedence (e.g. declared field names cannot be overridden).
  251. </p>
  252. <p>
  253. All standard Lua metamethods are implemented. These are called directly,
  254. without shortcuts, and on any mix of types. For binary operations, the
  255. left operand is checked first for a valid ctype metamethod. The
  256. <tt>__gc</tt> metamethod only applies to <tt>struct</tt>/<tt>union</tt>
  257. types and performs an implicit <a href="#ffi_gc"><tt>ffi.gc()</tt></a>
  258. call during creation of an instance.
  259. </p>
  260. <h3 id="ffi_gc"><tt>cdata = ffi.gc(cdata, finalizer)</tt></h3>
  261. <p>
  262. Associates a finalizer with a pointer or aggregate cdata object. The
  263. cdata object is returned unchanged.
  264. </p>
  265. <p>
  266. This function allows safe integration of unmanaged resources into the
  267. automatic memory management of the LuaJIT garbage collector. Typical
  268. usage:
  269. </p>
  270. <pre class="code">
  271. local p = ffi.gc(ffi.C.malloc(n), ffi.C.free)
  272. ...
  273. p = nil -- Last reference to p is gone.
  274. -- GC will eventually run finalizer: ffi.C.free(p)
  275. </pre>
  276. <p>
  277. A cdata finalizer works like the <tt>__gc</tt> metamethod for userdata
  278. objects: when the last reference to a cdata object is gone, the
  279. associated finalizer is called with the cdata object as an argument. The
  280. finalizer can be a Lua function or a cdata function or cdata function
  281. pointer. An existing finalizer can be removed by setting a <tt>nil</tt>
  282. finalizer, e.g. right before explicitly deleting a resource:
  283. </p>
  284. <pre class="code">
  285. ffi.C.free(ffi.gc(p, nil)) -- Manually free the memory.
  286. </pre>
  287. <h2 id="info">C&nbsp;Type Information</h2>
  288. <p>
  289. The following API functions return information about C&nbsp;types.
  290. They are most useful for inspecting cdata objects.
  291. </p>
  292. <h3 id="ffi_sizeof"><tt>size = ffi.sizeof(ct [,nelem])</tt></h3>
  293. <p>
  294. Returns the size of <tt>ct</tt> in bytes. Returns <tt>nil</tt> if
  295. the size is not known (e.g. for <tt>"void"</tt> or function types).
  296. Requires <tt>nelem</tt> for VLA/VLS types, except for cdata objects.
  297. </p>
  298. <h3 id="ffi_alignof"><tt>align = ffi.alignof(ct)</tt></h3>
  299. <p>
  300. Returns the minimum required alignment for <tt>ct</tt> in bytes.
  301. </p>
  302. <h3 id="ffi_offsetof"><tt>ofs [,bpos,bsize] = ffi.offsetof(ct, field)</tt></h3>
  303. <p>
  304. Returns the offset (in bytes) of <tt>field</tt> relative to the start
  305. of <tt>ct</tt>, which must be a <tt>struct</tt>. Additionally returns
  306. the position and the field size (in bits) for bit fields.
  307. </p>
  308. <h3 id="ffi_istype"><tt>status = ffi.istype(ct, obj)</tt></h3>
  309. <p>
  310. Returns <tt>true</tt> if <tt>obj</tt> has the C&nbsp;type given by
  311. <tt>ct</tt>. Returns <tt>false</tt> otherwise.
  312. </p>
  313. <p>
  314. C&nbsp;type qualifiers (<tt>const</tt> etc.) are ignored. Pointers are
  315. checked with the standard pointer compatibility rules, but without any
  316. special treatment for <tt>void&nbsp;*</tt>. If <tt>ct</tt> specifies a
  317. <tt>struct</tt>/<tt>union</tt>, then a pointer to this type is accepted,
  318. too. Otherwise the types must match exactly.
  319. </p>
  320. <p>
  321. Note: this function accepts all kinds of Lua objects for the
  322. <tt>obj</tt> argument, but always returns <tt>false</tt> for non-cdata
  323. objects.
  324. </p>
  325. <h2 id="util">Utility Functions</h2>
  326. <h3 id="ffi_errno"><tt>err = ffi.errno([newerr])</tt></h3>
  327. <p>
  328. Returns the error number set by the last C&nbsp;function call which
  329. indicated an error condition. If the optional <tt>newerr</tt> argument
  330. is present, the error number is set to the new value and the previous
  331. value is returned.
  332. </p>
  333. <p>
  334. This function offers a portable and OS-independent way to get and set the
  335. error number. Note that only <em>some</em> C&nbsp;functions set the error
  336. number. And it's only significant if the function actually indicated an
  337. error condition (e.g. with a return value of <tt>-1</tt> or
  338. <tt>NULL</tt>). Otherwise, it may or may not contain any previously set
  339. value.
  340. </p>
  341. <p>
  342. You're advised to call this function only when needed and as close as
  343. possible after the return of the related C&nbsp;function. The
  344. <tt>errno</tt> value is preserved across hooks, memory allocations,
  345. invocations of the JIT compiler and other internal VM activity. The same
  346. applies to the value returned by <tt>GetLastError()</tt> on Windows, but
  347. you need to declare and call it yourself.
  348. </p>
  349. <h3 id="ffi_string"><tt>str = ffi.string(ptr [,len])</tt></h3>
  350. <p>
  351. Creates an interned Lua string from the data pointed to by
  352. <tt>ptr</tt>.
  353. </p>
  354. <p>
  355. If the optional argument <tt>len</tt> is missing, <tt>ptr</tt> is
  356. converted to a <tt>"char&nbsp;*"</tt> and the data is assumed to be
  357. zero-terminated. The length of the string is computed with
  358. <tt>strlen()</tt>.
  359. </p>
  360. <p>
  361. Otherwise <tt>ptr</tt> is converted to a <tt>"void&nbsp;*"</tt> and
  362. <tt>len</tt> gives the length of the data. The data may contain
  363. embedded zeros and need not be byte-oriented (though this may cause
  364. endianess issues).
  365. </p>
  366. <p>
  367. This function is mainly useful to convert (temporary)
  368. <tt>"const&nbsp;char&nbsp;*"</tt> pointers returned by
  369. C&nbsp;functions to Lua strings and store them or pass them to other
  370. functions expecting a Lua string. The Lua string is an (interned) copy
  371. of the data and bears no relation to the original data area anymore.
  372. Lua strings are 8&nbsp;bit clean and may be used to hold arbitrary,
  373. non-character data.
  374. </p>
  375. <p>
  376. Performance notice: it's faster to pass the length of the string, if
  377. it's known. E.g. when the length is returned by a C&nbsp;call like
  378. <tt>sprintf()</tt>.
  379. </p>
  380. <h3 id="ffi_copy"><tt>ffi.copy(dst, src, len)<br>
  381. ffi.copy(dst, str)</tt></h3>
  382. <p>
  383. Copies the data pointed to by <tt>src</tt> to <tt>dst</tt>.
  384. <tt>dst</tt> is converted to a <tt>"void&nbsp;*"</tt> and <tt>src</tt>
  385. is converted to a <tt>"const void&nbsp;*"</tt>.
  386. </p>
  387. <p>
  388. In the first syntax, <tt>len</tt> gives the number of bytes to copy.
  389. Caveat: if <tt>src</tt> is a Lua string, then <tt>len</tt> must not
  390. exceed <tt>#src+1</tt>.
  391. </p>
  392. <p>
  393. In the second syntax, the source of the copy must be a Lua string. All
  394. bytes of the string <em>plus a zero-terminator</em> are copied to
  395. <tt>dst</tt> (i.e. <tt>#src+1</tt> bytes).
  396. </p>
  397. <p>
  398. Performance notice: <tt>ffi.copy()</tt> may be used as a faster
  399. (inlinable) replacement for the C&nbsp;library functions
  400. <tt>memcpy()</tt>, <tt>strcpy()</tt> and <tt>strncpy()</tt>.
  401. </p>
  402. <h3 id="ffi_fill"><tt>ffi.fill(dst, len [,c])</tt></h3>
  403. <p>
  404. Fills the data pointed to by <tt>dst</tt> with <tt>len</tt> constant
  405. bytes, given by <tt>c</tt>. If <tt>c</tt> is omitted, the data is
  406. zero-filled.
  407. </p>
  408. <p>
  409. Performance notice: <tt>ffi.fill()</tt> may be used as a faster
  410. (inlinable) replacement for the C&nbsp;library function
  411. <tt>memset(dst,&nbsp;c,&nbsp;len)</tt>. Please note the different
  412. order of arguments!
  413. </p>
  414. <h2 id="target">Target-specific Information</h2>
  415. <h3 id="ffi_abi"><tt>status = ffi.abi(param)</tt></h3>
  416. <p>
  417. Returns <tt>true</tt> if <tt>param</tt> (a Lua string) applies for the
  418. target ABI (Application Binary Interface). Returns <tt>false</tt>
  419. otherwise. The following parameters are currently defined:
  420. </p>
  421. <table class="abitable">
  422. <tr class="abihead">
  423. <td class="abiparam">Parameter</td>
  424. <td class="abidesc">Description</td>
  425. </tr>
  426. <tr class="odd separate">
  427. <td class="abiparam">32bit</td><td class="abidesc">32 bit architecture</td></tr>
  428. <tr class="even">
  429. <td class="abiparam">64bit</td><td class="abidesc">64 bit architecture</td></tr>
  430. <tr class="odd separate">
  431. <td class="abiparam">le</td><td class="abidesc">Little-endian architecture</td></tr>
  432. <tr class="even">
  433. <td class="abiparam">be</td><td class="abidesc">Big-endian architecture</td></tr>
  434. <tr class="odd separate">
  435. <td class="abiparam">fpu</td><td class="abidesc">Target has a hardware FPU</td></tr>
  436. <tr class="even">
  437. <td class="abiparam">softfp</td><td class="abidesc">softfp calling conventions</td></tr>
  438. <tr class="odd">
  439. <td class="abiparam">hardfp</td><td class="abidesc">hardfp calling conventions</td></tr>
  440. <tr class="even separate">
  441. <td class="abiparam">eabi</td><td class="abidesc">EABI variant of the standard ABI</td></tr>
  442. <tr class="odd">
  443. <td class="abiparam">win</td><td class="abidesc">Windows variant of the standard ABI</td></tr>
  444. <tr class="even">
  445. <td class="abiparam">uwp</td><td class="abidesc">Universal Windows Platform</td></tr>
  446. <tr class="odd">
  447. <td class="abiparam">gc64</td><td class="abidesc">64 bit GC references</td></tr>
  448. </table>
  449. <h3 id="ffi_os"><tt>ffi.os</tt></h3>
  450. <p>
  451. Contains the target OS name. Same contents as
  452. <a href="ext_jit.html#jit_os"><tt>jit.os</tt></a>.
  453. </p>
  454. <h3 id="ffi_arch"><tt>ffi.arch</tt></h3>
  455. <p>
  456. Contains the target architecture name. Same contents as
  457. <a href="ext_jit.html#jit_arch"><tt>jit.arch</tt></a>.
  458. </p>
  459. <h2 id="callback">Methods for Callbacks</h2>
  460. <p>
  461. The C&nbsp;types for <a href="ext_ffi_semantics.html#callback">callbacks</a>
  462. have some extra methods:
  463. </p>
  464. <h3 id="callback_free"><tt>cb:free()</tt></h3>
  465. <p>
  466. Free the resources associated with a callback. The associated Lua
  467. function is unanchored and may be garbage collected. The callback
  468. function pointer is no longer valid and must not be called again
  469. (it may be reused by a subsequently created callback).
  470. </p>
  471. <h3 id="callback_set"><tt>cb:set(func)</tt></h3>
  472. <p>
  473. Associate a new Lua function with a callback. The C&nbsp;type of the
  474. callback and the callback function pointer are unchanged.
  475. </p>
  476. <p>
  477. This method is useful to dynamically switch the receiver of callbacks
  478. without creating a new callback each time and registering it again (e.g.
  479. with a GUI library).
  480. </p>
  481. <h2 id="extended">Extended Standard Library Functions</h2>
  482. <p>
  483. The following standard library functions have been extended to work
  484. with cdata objects:
  485. </p>
  486. <h3 id="tonumber"><tt>n = tonumber(cdata)</tt></h3>
  487. <p>
  488. Converts a number cdata object to a <tt>double</tt> and returns it as
  489. a Lua number. This is particularly useful for boxed 64&nbsp;bit
  490. integer values. Caveat: this conversion may incur a precision loss.
  491. </p>
  492. <h3 id="tostring"><tt>s = tostring(cdata)</tt></h3>
  493. <p>
  494. Returns a string representation of the value of 64&nbsp;bit integers
  495. (<tt><b>"</b>nnn<b>LL"</b></tt> or <tt><b>"</b>nnn<b>ULL"</b></tt>) or
  496. complex numbers (<tt><b>"</b>re&plusmn;im<b>i"</b></tt>). Otherwise
  497. returns a string representation of the C&nbsp;type of a ctype object
  498. (<tt><b>"ctype&lt;</b>type<b>&gt;"</b></tt>) or a cdata object
  499. (<tt><b>"cdata&lt;</b>type<b>&gt;:&nbsp;</b>address"</tt>), unless you
  500. override it with a <tt>__tostring</tt> metamethod (see
  501. <a href="#ffi_metatype"><tt>ffi.metatype()</tt></a>).
  502. </p>
  503. <h3 id="pairs"><tt>iter, obj, start = pairs(cdata)<br>
  504. iter, obj, start = ipairs(cdata)<br></tt></h3>
  505. <p>
  506. Calls the <tt>__pairs</tt> or <tt>__ipairs</tt> metamethod of the
  507. corresponding ctype.
  508. </p>
  509. <h2 id="literals">Extensions to the Lua Parser</h2>
  510. <p>
  511. The parser for Lua source code treats numeric literals with the
  512. suffixes <tt>LL</tt> or <tt>ULL</tt> as signed or unsigned 64&nbsp;bit
  513. integers. Case doesn't matter, but uppercase is recommended for
  514. readability. It handles decimal (<tt>42LL</tt>), hexadecimal
  515. (<tt>0x2aLL</tt>) and binary (<tt>0b101010LL</tt>) literals.
  516. </p>
  517. <p>
  518. The imaginary part of complex numbers can be specified by suffixing
  519. number literals with <tt>i</tt> or <tt>I</tt>, e.g. <tt>12.5i</tt>.
  520. Caveat: you'll need to use <tt>1i</tt> to get an imaginary part with
  521. the value one, since <tt>i</tt> itself still refers to a variable
  522. named <tt>i</tt>.
  523. </p>
  524. <br class="flush">
  525. </div>
  526. <div id="foot">
  527. <hr class="hide">
  528. Copyright &copy; 2005-2022
  529. <span class="noprint">
  530. &middot;
  531. <a href="contact.html">Contact</a>
  532. </span>
  533. </div>
  534. </body>
  535. </html>