Re: [RFC PATCH v2 10/30] target/loongarch: Add other core instructions support

2021-11-14 Thread Richard Henderson
On 11/11/21 2:35 AM, Xiaojuan Yang wrote: +if (qemu_loglevel_mask(CPU_LOG_INT)) { +qemu_log("%s: TLBRERA 0x%lx\n", __func__, env->CSR_TLBRERA); +} This is qemu_log_mask, two instances. With that, Reviewed-by: Richard Henderson +void helper_ldpte(CPULoongArchStat

[RFC PATCH v2 10/30] target/loongarch: Add other core instructions support

2021-11-10 Thread Xiaojuan Yang
This includes: -CACOP -LDDIR -LDPTE -ERTN -DBCL -IDLE Signed-off-by: Xiaojuan Yang Signed-off-by: Song Gao --- target/loongarch/cpu.h | 2 + target/loongarch/helper.h| 4 + target/loongarch/insn_trans/trans_core.c.inc | 62 +++ target/loon