Re: [Qemu-devel] [PATCH 5/7] target-mips:Support for Cavium specific instructions

2011-09-28 Thread Andreas Färber
Am 27.09.2011 06:17, schrieb kha...@kics.edu.pk: > From: Ehsan-ul-Haq, Abdul Qadeer, Abdul Waheed, Khansa Butt > > > > Signed-off-by: Khansa Butt ...nor all of mine from previous rounds. Including From vs. Signed-off-by mixup (From is who sent the patch, not whom the code originated from), Codi

Re: [Qemu-devel] [PATCH 5/7] target-mips:Support for Cavium specific instructions

2011-09-27 Thread Richard Henderson
On 09/26/2011 09:17 PM, kha...@kics.edu.pk wrote: > +switch (opc) { > +case OPC_SEQI: > +tcg_gen_setcondi_tl(TCG_COND_LT, cpu_gpr[rt], t0, 1); > +opn = "seqi"; > +break; > +case OPC_SNEI: > +tcg_gen_setcondi_tl(TCG_COND_GT, cpu_gpr[rt], t0, 0); > +

[Qemu-devel] [PATCH 5/7] target-mips:Support for Cavium specific instructions

2011-09-26 Thread khansa
From: Ehsan-ul-Haq, Abdul Qadeer, Abdul Waheed, Khansa Butt Signed-off-by: Khansa Butt --- target-mips/cpu.h |7 + target-mips/helper.h|5 + target-mips/machine.c | 12 ++ target-mips/op_helper.c | 72 target-mips/translate.c | 424