Re: [PATCH v6 08/26] tcg: Build ffi data structures for helpers

2021-06-01 Thread Richard Henderson
On 5/31/21 11:55 AM, Philippe Mathieu-Daudé wrote: Hi Richard, On 5/3/21 1:57 AM, Richard Henderson wrote: Add libffi as a build requirement for TCI. Add libffi to the dockerfiles to satisfy that requirement. Construct an ffi_cif structure for each unique typemask. Record the result in a

Re: [PATCH v6 08/26] tcg: Build ffi data structures for helpers

2021-05-31 Thread Philippe Mathieu-Daudé
Hi Richard, On 5/3/21 1:57 AM, Richard Henderson wrote: > Add libffi as a build requirement for TCI. > Add libffi to the dockerfiles to satisfy that requirement. > > Construct an ffi_cif structure for each unique typemask. > Record the result in a separate hash table for later lookup; > this

[PATCH v6 08/26] tcg: Build ffi data structures for helpers

2021-05-02 Thread Richard Henderson
Add libffi as a build requirement for TCI. Add libffi to the dockerfiles to satisfy that requirement. Construct an ffi_cif structure for each unique typemask. Record the result in a separate hash table for later lookup; this allows helper_table to stay const. Signed-off-by: Richard Henderson