Re: [Qemu-devel] [PATCH v8 1/4] Add moxie target code

2013-03-05 Thread Richard Henderson
On 03/04/2013 04:29 AM, Anthony Green wrote: > +void tlb_fill(CPUMoxieState *env, target_ulong addr, int is_write, int > mmu_idx, > + uintptr_t retaddr) > +{ > +int ret; > + > +ret = cpu_moxie_handle_mmu_fault(env, addr, is_write, mmu_idx); > +if (unlikely(ret)) { > +

[Qemu-devel] [PATCH v8 1/4] Add moxie target code

2013-03-04 Thread Anthony Green
Signed-off-by: Anthony Green --- target-moxie/Makefile.objs |2 + target-moxie/cpu.c | 172 target-moxie/cpu.h | 172 target-moxie/helper.c | 170 target-moxie/helper.h |9 + target-moxie/machine.c | 27 ++ target-moxie/machin