[Qemu-devel] [PATCH 06/50] target-arm: make cpu-qom.h not target specific

2016-05-16 Thread Paolo Bonzini
Make ARMCPU an opaque type within cpu-qom.h, and move all definitions of private methods, as well as all type definitions that require knowledge of the layout to cpu.h. This helps making files independent of NEED_CPU_H if they only need to pass around CPU pointers. Reviewed-by: Alex Bennée Signe

Re: [Qemu-devel] [PATCH 06/50] target-arm: make cpu-qom.h not target specific

2016-04-21 Thread Alex Bennée
Paolo Bonzini writes: > Make ARMCPU an opaque type within cpu-qom.h, and move all definitions of > private methods, as well as all type definitions that require knowledge > of the layout to cpu.h. This helps making files independent of NEED_CPU_H > if they only need to pass around CPU pointers.

[Qemu-devel] [PATCH 06/50] target-arm: make cpu-qom.h not target specific

2016-04-08 Thread Paolo Bonzini
Make ARMCPU an opaque type within cpu-qom.h, and move all definitions of private methods, as well as all type definitions that require knowledge of the layout to cpu.h. This helps making files independent of NEED_CPU_H if they only need to pass around CPU pointers. Signed-off-by: Paolo Bonzini -