3 ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h
15 #include "lj_ccallback.h"
17 /* -- Conversion errors --------------------------------------------------- */
20 LJ_NORET
static void cconv_err_conv(CTState
*cts
, CType
*d
, CType
*s
,
23 const char *dst
= strdata(lj_ctype_repr(cts
->L
, ctype_typeid(cts
, d
), NULL
));
25 if ((flags
& CCF_FROMTV
))
26 src
= lj_obj_typename
[1+(ctype_isnum(s
->info
) ? LUA_TNUMBER
:
27 ctype_isarray(s
->info
) ? LUA_TSTRING
: LUA_TNIL
)];
29 src
= strdata(lj_ctype_repr(cts
->L
, ctype_typeid(cts
, s
), NULL
));
30 if (CCF_GETARG(flags
))
31 lj_err_argv(cts
->L
, CCF_GETARG(flags
), LJ_ERR_FFI_BADCONV
, src
, dst
);
33 lj_err_callerv(cts
->L
, LJ_ERR_FFI_BADCONV
, src
, dst
);
36 /* Bad conversion from TValue. */
37 LJ_NORET
static void cconv_err_convtv(CTState
*cts
, CType
*d
, TValue
*o
,
40 const char *dst
= strdata(lj_ctype_repr(cts
->L
, ctype_typeid(cts
, d
), NULL
));
41 const char *src
= typename(o
);
42 if (CCF_GETARG(flags
))
43 lj_err_argv(cts
->L
, CCF_GETARG(flags
), LJ_ERR_FFI_BADCONV
, src
, dst
);
45 lj_err_callerv(cts
->L
, LJ_ERR_FFI_BADCONV
, src
, dst
);
48 /* Initializer overflow. */
49 LJ_NORET
static void cconv_err_initov(CTState
*cts
, CType
*d
)
51 const char *dst
= strdata(lj_ctype_repr(cts
->L
, ctype_typeid(cts
, d
), NULL
));
52 lj_err_callerv(cts
->L
, LJ_ERR_FFI_INITOV
, dst
);
55 /* -- C type compatibility checks ----------------------------------------- */
57 /* Get raw type and qualifiers for a child type. Resolves enums, too. */
58 static CType
*cconv_childqual(CTState
*cts
, CType
*ct
, CTInfo
*qual
)
60 ct
= ctype_child(cts
, ct
);
62 if (ctype_isattrib(ct
->info
)) {
63 if (ctype_attrib(ct
->info
) == CTA_QUAL
) *qual
|= ct
->size
;
64 } else if (!ctype_isenum(ct
->info
)) {
67 ct
= ctype_child(cts
, ct
);
69 *qual
|= (ct
->info
& CTF_QUAL
);
73 /* Check for compatible types when converting to a pointer.
74 ** Note: these checks are more relaxed than what C99 mandates.
76 int lj_cconv_compatptr(CTState
*cts
, CType
*d
, CType
*s
, CTInfo flags
)
78 if (!((flags
& CCF_CAST
) || d
== s
)) {
79 CTInfo dqual
= 0, squal
= 0;
80 d
= cconv_childqual(cts
, d
, &dqual
);
81 if (!ctype_isstruct(s
->info
))
82 s
= cconv_childqual(cts
, s
, &squal
);
83 if ((flags
& CCF_SAME
)) {
85 return 0; /* Different qualifiers. */
86 } else if (!(flags
& CCF_IGNQUAL
)) {
87 if ((dqual
& squal
) != squal
)
88 return 0; /* Discarded qualifiers. */
89 if (ctype_isvoid(d
->info
) || ctype_isvoid(s
->info
))
90 return 1; /* Converting to/from void * is always ok. */
92 if (ctype_type(d
->info
) != ctype_type(s
->info
) ||
94 return 0; /* Different type or different size. */
95 if (ctype_isnum(d
->info
)) {
96 if (((d
->info
^ s
->info
) & (CTF_BOOL
|CTF_FP
)))
97 return 0; /* Different numeric types. */
98 } else if (ctype_ispointer(d
->info
)) {
99 /* Check child types for compatibility. */
100 return lj_cconv_compatptr(cts
, d
, s
, flags
|CCF_SAME
);
101 } else if (ctype_isstruct(d
->info
)) {
103 return 0; /* Must be exact same type for struct/union. */
104 } else if (ctype_isfunc(d
->info
)) {
105 /* NYI: structural equality of functions. */
108 return 1; /* Types are compatible. */
111 /* -- C type to C type conversion ----------------------------------------- */
113 /* Convert C type to C type. Caveat: expects to get the raw CType!
115 ** Note: This is only used by the interpreter and not optimized at all.
116 ** The JIT compiler will do a much better job specializing for each case.
118 void lj_cconv_ct_ct(CTState
*cts
, CType
*d
, CType
*s
,
119 uint8_t *dp
, uint8_t *sp
, CTInfo flags
)
121 CTSize dsize
= d
->size
, ssize
= s
->size
;
122 CTInfo dinfo
= d
->info
, sinfo
= s
->info
;
125 lua_assert(!ctype_isenum(dinfo
) && !ctype_isenum(sinfo
));
126 lua_assert(!ctype_isattrib(dinfo
) && !ctype_isattrib(sinfo
));
128 if (ctype_type(dinfo
) > CT_MAYCONVERT
|| ctype_type(sinfo
) > CT_MAYCONVERT
)
131 /* Some basic sanity checks. */
132 lua_assert(!ctype_isnum(dinfo
) || dsize
> 0);
133 lua_assert(!ctype_isnum(sinfo
) || ssize
> 0);
134 lua_assert(!ctype_isbool(dinfo
) || dsize
== 1);
135 lua_assert(!ctype_isbool(sinfo
) || ssize
== 1);
136 lua_assert(!ctype_isinteger(dinfo
) || (1u<<lj_fls(dsize
)) == dsize
);
137 lua_assert(!ctype_isinteger(sinfo
) || (1u<<lj_fls(ssize
)) == ssize
);
139 switch (cconv_idx2(dinfo
, sinfo
)) {
140 /* Destination is a bool. */
142 *dp
= *sp
; /* Source operand is already normalized. */
147 for (i
= 0; i
< ssize
; i
++) b
|= sp
[i
];
153 if (ssize
== sizeof(double)) b
= (*(double *)sp
!= 0);
154 else if (ssize
== sizeof(float)) b
= (*(float *)sp
!= 0);
155 else goto err_conv
; /* NYI: long double. */
160 /* Destination is an integer. */
164 if (dsize
> ssize
) { /* Zero-extend or sign-extend LSB. */
166 uint8_t fill
= (!(sinfo
& CTF_UNSIGNED
) && (sp
[ssize
-1]&0x80)) ? 0xff : 0;
167 memcpy(dp
, sp
, ssize
);
168 memset(dp
+ ssize
, fill
, dsize
-ssize
);
170 uint8_t fill
= (!(sinfo
& CTF_UNSIGNED
) && (sp
[0]&0x80)) ? 0xff : 0;
171 memset(dp
, fill
, dsize
-ssize
);
172 memcpy(dp
+ (dsize
-ssize
), sp
, ssize
);
174 } else { /* Copy LSB. */
176 memcpy(dp
, sp
, dsize
);
178 memcpy(dp
, sp
+ (ssize
-dsize
), dsize
);
183 double n
; /* Always convert via double. */
185 /* Convert source to double. */
186 if (ssize
== sizeof(double)) n
= *(double *)sp
;
187 else if (ssize
== sizeof(float)) n
= (double)*(float *)sp
;
188 else goto err_conv
; /* NYI: long double. */
189 /* Then convert double to integer. */
190 /* The conversion must exactly match the semantics of JIT-compiled code! */
191 if (dsize
< 4 || (dsize
== 4 && !(dinfo
& CTF_UNSIGNED
))) {
192 int32_t i
= (int32_t)n
;
193 if (dsize
== 4) *(int32_t *)dp
= i
;
194 else if (dsize
== 2) *(int16_t *)dp
= (int16_t)i
;
195 else *(int8_t *)dp
= (int8_t)i
;
196 } else if (dsize
== 4) {
197 *(uint32_t *)dp
= (uint32_t)n
;
198 } else if (dsize
== 8) {
199 if (!(dinfo
& CTF_UNSIGNED
))
200 *(int64_t *)dp
= (int64_t)n
;
202 *(uint64_t *)dp
= lj_num2u64(n
);
204 goto err_conv
; /* NYI: conversion to >64 bit integers. */
209 s
= ctype_child(cts
, s
);
212 goto conv_I_F
; /* Just convert re. */
214 if (!(flags
& CCF_CAST
)) goto err_conv
;
215 sinfo
= CTINFO(CT_NUM
, CTF_UNSIGNED
);
218 if (!(flags
& CCF_CAST
)) goto err_conv
;
219 sinfo
= CTINFO(CT_NUM
, CTF_UNSIGNED
);
222 sp
= (uint8_t *)&tmpptr
;
225 /* Destination is a floating-point number. */
228 double n
; /* Always convert via double. */
230 /* First convert source to double. */
231 /* The conversion must exactly match the semantics of JIT-compiled code! */
232 if (ssize
< 4 || (ssize
== 4 && !(sinfo
& CTF_UNSIGNED
))) {
236 } else if (!(sinfo
& CTF_UNSIGNED
)) {
237 if (ssize
== 2) i
= *(int16_t *)sp
;
238 else i
= *(int8_t *)sp
;
240 if (ssize
== 2) i
= *(uint16_t *)sp
;
241 else i
= *(uint8_t *)sp
;
244 } else if (ssize
== 4) {
245 n
= (double)*(uint32_t *)sp
;
246 } else if (ssize
== 8) {
247 if (!(sinfo
& CTF_UNSIGNED
)) n
= (double)*(int64_t *)sp
;
248 else n
= (double)*(uint64_t *)sp
;
250 goto err_conv
; /* NYI: conversion from >64 bit integers. */
252 /* Convert double to destination. */
253 if (dsize
== sizeof(double)) *(double *)dp
= n
;
254 else if (dsize
== sizeof(float)) *(float *)dp
= (float)n
;
255 else goto err_conv
; /* NYI: long double. */
259 double n
; /* Always convert via double. */
261 if (ssize
== dsize
) goto copyval
;
262 /* Convert source to double. */
263 if (ssize
== sizeof(double)) n
= *(double *)sp
;
264 else if (ssize
== sizeof(float)) n
= (double)*(float *)sp
;
265 else goto err_conv
; /* NYI: long double. */
266 /* Convert double to destination. */
267 if (dsize
== sizeof(double)) *(double *)dp
= n
;
268 else if (dsize
== sizeof(float)) *(float *)dp
= (float)n
;
269 else goto err_conv
; /* NYI: long double. */
273 s
= ctype_child(cts
, s
);
276 goto conv_F_F
; /* Ignore im, and convert from re. */
278 /* Destination is a complex number. */
280 d
= ctype_child(cts
, d
);
283 memset(dp
+ dsize
, 0, dsize
); /* Clear im. */
284 goto conv_F_I
; /* Convert to re. */
286 d
= ctype_child(cts
, d
);
289 memset(dp
+ dsize
, 0, dsize
); /* Clear im. */
290 goto conv_F_F
; /* Convert to re. */
293 if (dsize
!= ssize
) { /* Different types: convert re/im separately. */
294 CType
*dc
= ctype_child(cts
, d
);
295 CType
*sc
= ctype_child(cts
, s
);
296 lj_cconv_ct_ct(cts
, dc
, sc
, dp
, sp
, flags
);
297 lj_cconv_ct_ct(cts
, dc
, sc
, dp
+ dc
->size
, sp
+ sc
->size
, flags
);
300 goto copyval
; /* Otherwise this is easy. */
302 /* Destination is a vector. */
306 CType
*dc
= ctype_child(cts
, d
);
308 /* First convert the scalar to the first element. */
309 lj_cconv_ct_ct(cts
, dc
, s
, dp
, sp
, flags
);
310 /* Then replicate it to the other elements (splat). */
311 for (sp
= dp
, esize
= dc
->size
; dsize
> esize
; dsize
-= esize
) {
313 memcpy(dp
, sp
, esize
);
319 /* Copy same-sized vectors, even for different lengths/element-types. */
320 if (dsize
!= ssize
) goto err_conv
;
323 /* Destination is a pointer. */
325 if (!(flags
& CCF_CAST
)) goto err_conv
;
326 dinfo
= CTINFO(CT_NUM
, CTF_UNSIGNED
);
330 if (!(flags
& CCF_CAST
) || !(flags
& CCF_FROMTV
)) goto err_conv
;
331 /* The signed conversion is cheaper. x64 really has 47 bit pointers. */
332 dinfo
= CTINFO(CT_NUM
, (LJ_64
&& dsize
== 8) ? 0 : CTF_UNSIGNED
);
336 if (!lj_cconv_compatptr(cts
, d
, s
, flags
)) goto err_conv
;
337 cdata_setptr(dp
, dsize
, cdata_getptr(sp
, ssize
));
342 if (!lj_cconv_compatptr(cts
, d
, s
, flags
)) goto err_conv
;
343 cdata_setptr(dp
, dsize
, sp
);
346 /* Destination is an array. */
348 if ((flags
& CCF_CAST
) || (d
->info
& CTF_VLA
) || dsize
!= ssize
||
349 d
->size
== CTSIZE_INVALID
|| !lj_cconv_compatptr(cts
, d
, s
, flags
))
353 /* Destination is a struct/union. */
355 if ((flags
& CCF_CAST
) || (d
->info
& CTF_VLA
) || d
!= s
)
356 goto err_conv
; /* Must be exact same type. */
357 copyval
: /* Copy value. */
358 lua_assert(dsize
== ssize
);
359 memcpy(dp
, sp
, dsize
);
364 cconv_err_conv(cts
, d
, s
, flags
);
368 /* -- C type to TValue conversion ----------------------------------------- */
370 /* Convert C type to TValue. Caveat: expects to get the raw CType! */
371 int lj_cconv_tv_ct(CTState
*cts
, CType
*s
, CTypeID sid
,
372 TValue
*o
, uint8_t *sp
)
374 CTInfo sinfo
= s
->info
;
375 lua_assert(!ctype_isenum(sinfo
));
376 if (ctype_isnum(sinfo
)) {
377 if (!ctype_isbool(sinfo
)) {
378 if (ctype_isinteger(sinfo
) && s
->size
> 4) goto copyval
;
379 if (LJ_DUALNUM
&& ctype_isinteger(sinfo
)) {
381 lj_cconv_ct_ct(cts
, ctype_get(cts
, CTID_INT32
), s
,
382 (uint8_t *)&i
, sp
, 0);
383 if ((sinfo
& CTF_UNSIGNED
) && i
< 0)
384 setnumV(o
, (lua_Number
)(uint32_t)i
);
388 lj_cconv_ct_ct(cts
, ctype_get(cts
, CTID_DOUBLE
), s
,
389 (uint8_t *)&o
->n
, sp
, 0);
390 /* Numbers are NOT canonicalized here! Beware of uninitialized data. */
391 lua_assert(tvisnum(o
));
394 uint32_t b
= (*sp
!= 0);
396 setboolV(&cts
->g
->tmptv2
, b
); /* Remember for trace recorder. */
399 } else if (ctype_isrefarray(sinfo
) || ctype_isstruct(sinfo
)) {
400 /* Create reference. */
401 setcdataV(cts
->L
, o
, lj_cdata_newref(cts
, sp
, sid
));
402 return 1; /* Need GC step. */
406 copyval
: /* Copy value. */
408 lua_assert(sz
!= CTSIZE_INVALID
);
409 /* Attributes are stripped, qualifiers are kept (but mostly ignored). */
410 cd
= lj_cdata_new(cts
, ctype_typeid(cts
, s
), sz
);
411 setcdataV(cts
->L
, o
, cd
);
412 memcpy(cdataptr(cd
), sp
, sz
);
413 return 1; /* Need GC step. */
417 /* Convert bitfield to TValue. */
418 int lj_cconv_tv_bf(CTState
*cts
, CType
*s
, TValue
*o
, uint8_t *sp
)
420 CTInfo info
= s
->info
;
423 lua_assert(ctype_isbitfield(info
));
424 /* NYI: packed bitfields may cause misaligned reads. */
425 switch (ctype_bitcsz(info
)) {
426 case 4: val
= *(uint32_t *)sp
; break;
427 case 2: val
= *(uint16_t *)sp
; break;
428 case 1: val
= *(uint8_t *)sp
; break;
429 default: lua_assert(0); val
= 0; break;
431 /* Check if a packed bitfield crosses a container boundary. */
432 pos
= ctype_bitpos(info
);
433 bsz
= ctype_bitbsz(info
);
434 lua_assert(pos
< 8*ctype_bitcsz(info
));
435 lua_assert(bsz
> 0 && bsz
<= 8*ctype_bitcsz(info
));
436 if (pos
+ bsz
> 8*ctype_bitcsz(info
))
437 lj_err_caller(cts
->L
, LJ_ERR_FFI_NYIPACKBIT
);
438 if (!(info
& CTF_BOOL
)) {
439 CTSize shift
= 32 - bsz
;
440 if (!(info
& CTF_UNSIGNED
)) {
441 setintV(o
, (int32_t)(val
<< (shift
-pos
)) >> shift
);
443 val
= (val
<< (shift
-pos
)) >> shift
;
444 if (!LJ_DUALNUM
|| (int32_t)val
< 0)
445 setnumV(o
, (lua_Number
)(uint32_t)val
);
447 setintV(o
, (int32_t)val
);
450 lua_assert(bsz
== 1);
451 setboolV(o
, (val
>> pos
) & 1);
453 return 0; /* No GC step needed. */
456 /* -- TValue to C type conversion ----------------------------------------- */
458 /* Convert table to array. */
459 static void cconv_array_tab(CTState
*cts
, CType
*d
,
460 uint8_t *dp
, GCtab
*t
, CTInfo flags
)
463 CType
*dc
= ctype_rawchild(cts
, d
); /* Array element type. */
464 CTSize size
= d
->size
, esize
= dc
->size
, ofs
= 0;
466 TValue
*tv
= (TValue
*)lj_tab_getint(t
, i
);
467 if (!tv
|| tvisnil(tv
)) {
468 if (i
== 0) continue; /* Try again for 1-based tables. */
469 break; /* Stop at first nil. */
472 cconv_err_initov(cts
, d
);
473 lj_cconv_ct_tv(cts
, dc
, dp
+ ofs
, tv
, flags
);
476 if (size
!= CTSIZE_INVALID
) { /* Only fill up arrays with known size. */
477 if (ofs
== esize
) { /* Replicate a single element. */
478 for (; ofs
< size
; ofs
+= esize
) memcpy(dp
+ ofs
, dp
, esize
);
479 } else { /* Otherwise fill the remainder with zero. */
480 memset(dp
+ ofs
, 0, size
- ofs
);
485 /* Convert table to sub-struct/union. */
486 static void cconv_substruct_tab(CTState
*cts
, CType
*d
, uint8_t *dp
,
487 GCtab
*t
, int32_t *ip
, CTInfo flags
)
491 CType
*df
= ctype_get(cts
, id
);
493 if (ctype_isfield(df
->info
) || ctype_isbitfield(df
->info
)) {
496 if (!gcref(df
->name
)) continue; /* Ignore unnamed fields. */
499 tv
= (TValue
*)lj_tab_getint(t
, i
);
500 if (!tv
|| tvisnil(tv
)) {
501 if (i
== 0) { i
= 1; goto retry
; } /* 1-based tables. */
502 break; /* Stop at first nil. */
506 tv
= (TValue
*)lj_tab_getstr(t
, gco2str(gcref(df
->name
)));
507 if (!tv
|| tvisnil(tv
)) continue;
509 if (ctype_isfield(df
->info
))
510 lj_cconv_ct_tv(cts
, ctype_rawchild(cts
, df
), dp
+df
->size
, tv
, flags
);
512 lj_cconv_bf_tv(cts
, df
, dp
+df
->size
, tv
);
513 if ((d
->info
& CTF_UNION
)) break;
514 } else if (ctype_isxattrib(df
->info
, CTA_SUBTYPE
)) {
515 cconv_substruct_tab(cts
, ctype_child(cts
, df
), dp
+df
->size
, t
, ip
, flags
);
516 } /* Ignore all other entries in the chain. */
520 /* Convert table to struct/union. */
521 static void cconv_struct_tab(CTState
*cts
, CType
*d
,
522 uint8_t *dp
, GCtab
*t
, CTInfo flags
)
525 memset(dp
, 0, d
->size
); /* Much simpler to clear the struct first. */
526 if (t
->hmask
) i
= -1; else if (t
->asize
== 0) return; /* Fast exit. */
527 cconv_substruct_tab(cts
, d
, dp
, t
, &i
, flags
);
530 /* Convert TValue to C type. Caveat: expects to get the raw CType! */
531 void lj_cconv_ct_tv(CTState
*cts
, CType
*d
,
532 uint8_t *dp
, TValue
*o
, CTInfo flags
)
534 CTypeID sid
= CTID_P_VOID
;
537 uint8_t tmpbool
, *sp
= (uint8_t *)&tmpptr
;
538 if (LJ_LIKELY(tvisint(o
))) {
539 sp
= (uint8_t *)&o
->i
;
542 } else if (LJ_LIKELY(tvisnum(o
))) {
543 sp
= (uint8_t *)&o
->n
;
546 } else if (tviscdata(o
)) {
547 sp
= cdataptr(cdataV(o
));
548 sid
= cdataV(o
)->typeid;
549 s
= ctype_get(cts
, sid
);
550 if (ctype_isref(s
->info
)) { /* Resolve reference for value. */
551 lua_assert(s
->size
== CTSIZE_PTR
);
553 sid
= ctype_cid(s
->info
);
555 s
= ctype_raw(cts
, sid
);
556 if (ctype_isfunc(s
->info
)) {
557 sid
= lj_ctype_intern(cts
, CTINFO(CT_PTR
, CTALIGN_PTR
|sid
), CTSIZE_PTR
);
559 if (ctype_isenum(s
->info
)) s
= ctype_child(cts
, s
);
562 } else if (tvisstr(o
)) {
563 GCstr
*str
= strV(o
);
564 if (ctype_isenum(d
->info
)) { /* Match string against enum constant. */
566 CType
*cct
= lj_ctype_getfield(cts
, d
, str
, &ofs
);
567 if (!cct
|| !ctype_isconstval(cct
->info
))
569 lua_assert(d
->size
== 4);
570 sp
= (uint8_t *)&cct
->size
;
571 sid
= ctype_cid(cct
->info
);
572 } else if (ctype_isrefarray(d
->info
)) { /* Copy string to array. */
573 CType
*dc
= ctype_rawchild(cts
, d
);
574 CTSize sz
= str
->len
+1;
575 if (!ctype_isinteger(dc
->info
) || dc
->size
!= 1)
577 if (d
->size
!= 0 && d
->size
< sz
)
579 memcpy(dp
, strdata(str
), sz
);
581 } else { /* Otherwise pass it as a const char[]. */
582 sp
= (uint8_t *)strdata(str
);
586 } else if (tvistab(o
)) {
587 if (ctype_isarray(d
->info
)) {
588 cconv_array_tab(cts
, d
, dp
, tabV(o
), flags
);
590 } else if (ctype_isstruct(d
->info
)) {
591 cconv_struct_tab(cts
, d
, dp
, tabV(o
), flags
);
596 } else if (tvisbool(o
)) {
600 } else if (tvisnil(o
)) {
603 } else if (tvisudata(o
)) {
604 tmpptr
= uddata(udataV(o
));
605 } else if (tvislightud(o
)) {
606 tmpptr
= lightudV(o
);
607 } else if (tvisfunc(o
)) {
608 void *p
= lj_ccallback_new(cts
, d
, funcV(o
));
616 cconv_err_convtv(cts
, d
, o
, flags
);
618 s
= ctype_get(cts
, sid
);
620 if (ctype_isenum(d
->info
)) d
= ctype_child(cts
, d
);
621 lj_cconv_ct_ct(cts
, d
, s
, dp
, sp
, flags
);
624 /* Convert TValue to bitfield. */
625 void lj_cconv_bf_tv(CTState
*cts
, CType
*d
, uint8_t *dp
, TValue
*o
)
627 CTInfo info
= d
->info
;
630 lua_assert(ctype_isbitfield(info
));
631 if ((info
& CTF_BOOL
)) {
633 lua_assert(ctype_bitbsz(info
) == 1);
634 lj_cconv_ct_tv(cts
, ctype_get(cts
, CTID_BOOL
), &tmpbool
, o
, 0);
637 CTypeID did
= (info
& CTF_UNSIGNED
) ? CTID_UINT32
: CTID_INT32
;
638 lj_cconv_ct_tv(cts
, ctype_get(cts
, did
), (uint8_t *)&val
, o
, 0);
640 pos
= ctype_bitpos(info
);
641 bsz
= ctype_bitbsz(info
);
642 lua_assert(pos
< 8*ctype_bitcsz(info
));
643 lua_assert(bsz
> 0 && bsz
<= 8*ctype_bitcsz(info
));
644 /* Check if a packed bitfield crosses a container boundary. */
645 if (pos
+ bsz
> 8*ctype_bitcsz(info
))
646 lj_err_caller(cts
->L
, LJ_ERR_FFI_NYIPACKBIT
);
647 mask
= ((1u << bsz
) - 1u) << pos
;
648 val
= (val
<< pos
) & mask
;
649 /* NYI: packed bitfields may cause misaligned reads/writes. */
650 switch (ctype_bitcsz(info
)) {
651 case 4: *(uint32_t *)dp
= (*(uint32_t *)dp
& ~mask
) | (uint32_t)val
; break;
652 case 2: *(uint16_t *)dp
= (*(uint16_t *)dp
& ~mask
) | (uint16_t)val
; break;
653 case 1: *(uint8_t *)dp
= (*(uint8_t *)dp
& ~mask
) | (uint8_t)val
; break;
654 default: lua_assert(0); break;
658 /* -- Initialize C type with TValues -------------------------------------- */
660 /* Initialize an array with TValues. */
661 static void cconv_array_init(CTState
*cts
, CType
*d
, CTSize sz
, uint8_t *dp
,
662 TValue
*o
, MSize len
)
664 CType
*dc
= ctype_rawchild(cts
, d
); /* Array element type. */
665 CTSize ofs
, esize
= dc
->size
;
668 cconv_err_initov(cts
, d
);
669 for (i
= 0, ofs
= 0; i
< len
; i
++, ofs
+= esize
)
670 lj_cconv_ct_tv(cts
, dc
, dp
+ ofs
, o
+ i
, 0);
671 if (ofs
== esize
) { /* Replicate a single element. */
672 for (; ofs
< sz
; ofs
+= esize
) memcpy(dp
+ ofs
, dp
, esize
);
673 } else { /* Otherwise fill the remainder with zero. */
674 memset(dp
+ ofs
, 0, sz
- ofs
);
678 /* Initialize a sub-struct/union with TValues. */
679 static void cconv_substruct_init(CTState
*cts
, CType
*d
, uint8_t *dp
,
680 TValue
*o
, MSize len
, MSize
*ip
)
684 CType
*df
= ctype_get(cts
, id
);
686 if (ctype_isfield(df
->info
) || ctype_isbitfield(df
->info
)) {
688 if (!gcref(df
->name
)) continue; /* Ignore unnamed fields. */
691 if (ctype_isfield(df
->info
))
692 lj_cconv_ct_tv(cts
, ctype_rawchild(cts
, df
), dp
+df
->size
, o
+ i
, 0);
694 lj_cconv_bf_tv(cts
, df
, dp
+df
->size
, o
+ i
);
695 if ((d
->info
& CTF_UNION
)) break;
696 } else if (ctype_isxattrib(df
->info
, CTA_SUBTYPE
)) {
697 cconv_substruct_init(cts
, ctype_child(cts
, df
), dp
+df
->size
, o
, len
, ip
);
698 } /* Ignore all other entries in the chain. */
702 /* Initialize a struct/union with TValues. */
703 static void cconv_struct_init(CTState
*cts
, CType
*d
, CTSize sz
, uint8_t *dp
,
704 TValue
*o
, MSize len
)
707 memset(dp
, 0, sz
); /* Much simpler to clear the struct first. */
708 cconv_substruct_init(cts
, d
, dp
, o
, len
, &i
);
710 cconv_err_initov(cts
, d
);
713 /* Check whether to use a multi-value initializer.
714 ** This is true if an aggregate is to be initialized with a value.
715 ** Valarrays are treated as values here so ct_tv handles (V|C, I|F).
717 int lj_cconv_multi_init(CType
*d
, TValue
*o
)
719 if (!(ctype_isrefarray(d
->info
) || ctype_isstruct(d
->info
)))
720 return 0; /* Destination is not an aggregate. */
721 if (tvistab(o
) || (tvisstr(o
) && !ctype_isstruct(d
->info
)))
722 return 0; /* Initializer is not a value. */
723 return 1; /* Otherwise the initializer is a value. */
726 /* Initialize C type with TValues. Caveat: expects to get the raw CType! */
727 void lj_cconv_ct_init(CTState
*cts
, CType
*d
, CTSize sz
,
728 uint8_t *dp
, TValue
*o
, MSize len
)
732 else if (len
== 1 && !lj_cconv_multi_init(d
, o
))
733 lj_cconv_ct_tv(cts
, d
, dp
, o
, 0);
734 else if (ctype_isarray(d
->info
)) /* Also handles valarray init with len>1. */
735 cconv_array_init(cts
, d
, sz
, dp
, o
, len
);
736 else if (ctype_isstruct(d
->info
))
737 cconv_struct_init(cts
, d
, sz
, dp
, o
, len
);
739 cconv_err_initov(cts
, d
);