Re: [PATCH 04/27] arc: TCG and decoder glue code and helpers
On 4/5/21 7:31 AM, cupertinomira...@gmail.com wrote: +static inline target_ulong +carry_add_flag(target_ulong dest, target_ulong b, target_ulong c, uint8_t size) +{ +target_ulong t1, t2, t3; + +t1 = b & c; +t2 = b & (~dest); +t3 = c & (~dest); +t1 = t1 | t2 | t3; +return (
[PATCH 04/27] arc: TCG and decoder glue code and helpers
From: Cupertino Miranda Signed-off-by: Cupertino Miranda --- target/arc/extra_mapping.def | 63 + target/arc/helper.c| 281 +++ target/arc/helper.h| 39 target/arc/op_helper.c | 406 + target/arc/se