Re: [Qemu-devel] [RFC PATCH 2/3] *-user targets object files decoupling

2017-01-24 Thread Alessandro Di Federico
On Tue, 24 Jan 2017 10:09:25 + Marc-André Lureau wrote: > > diff --git a/exec.c b/exec.c > index 47835c1dc1..66f8187281 100644 > --- a/exec.c > +++ b/exec.c > @@ -672,9 +672,11 @@ void cpu_exec_unrealizefn(CPUState *cpu) > if (cc->vmsd != NULL) { >

Re: [Qemu-devel] [RFC PATCH 2/3] *-user targets object files decoupling

2017-01-24 Thread Marc-André Lureau
On Sat, Jan 21, 2017 at 12:49 PM Alessandro Di Federico < ale+q...@clearmind.me> wrote: Move some functions around in target/$arch/*.c to reduce the coupling among the various compilation unit. In particular, we want to make the various translate.c as much standalone as possible, so that they

[Qemu-devel] [RFC PATCH 2/3] *-user targets object files decoupling

2017-01-21 Thread Alessandro Di Federico
Move some functions around in target/$arch/*.c to reduce the coupling among the various compilation unit. In particular, we want to make the various translate.c as much standalone as possible, so that they will be easily employed by libtcg. --- exec.c | 2 +