Re: [Qemu-devel] [PATCH v3 24/35] target-arm: Split cp helper API to new C file

2015-07-18 Thread Paolo Bonzini
On 18/07/2015 11:40, Peter Crosthwaite wrote: > diff --git a/target-arm/cp.c b/target-arm/cp.c > new file mode 100644 > index 000..39a15ee > --- /dev/null > +++ b/target-arm/cp.c > @@ -0,0 +1,328 @@ > +#include "qemu-common.h" > +#include "../cpu.h" > + Shouldn't this still be "cpu.h" at thi

[Qemu-devel] [PATCH v3 24/35] target-arm: Split cp helper API to new C file

2015-07-18 Thread Peter Crosthwaite
Move the ARM coprocessor API to a new C file. helper.c is huge and splitting off this self contained piece increases modularity. Signed-off-by: Peter Crosthwaite --- I also need this for multi-arch where, this file needs to remain obj-y while the others in target-arm are converted to arch-obj-y.