Re: [Qemu-devel] [PATCH v3 1/1] configure: Define target access alignment in configure

2019-07-30 Thread Aleksandar Markovic
On Tue, Jul 30, 2019 at 10:06 PM Peter Maydell wrote: > On Tue, 30 Jul 2019 at 21:00, Aleksandar Markovic > wrote: > > > > On Thu, Jul 25, 2019 at 3:25 AM wrote: > > > > > Rename ALIGNED_ONLY to TARGET_ALIGNED_ONLY for clarity and move > > > defines out of target/foo/cpu.h into configure, as we

Re: [Qemu-devel] [PATCH v3 1/1] configure: Define target access alignment in configure

2019-07-30 Thread Peter Maydell
On Tue, 30 Jul 2019 at 21:00, Aleksandar Markovic wrote: > > On Thu, Jul 25, 2019 at 3:25 AM wrote: > > > Rename ALIGNED_ONLY to TARGET_ALIGNED_ONLY for clarity and move > > defines out of target/foo/cpu.h into configure, as we do with > > TARGET_WORDS_BIGENDIAN, so that it is always defined earl

Re: [Qemu-devel] [PATCH v3 1/1] configure: Define target access alignment in configure

2019-07-30 Thread Aleksandar Markovic
On Thu, Jul 25, 2019 at 3:25 AM wrote: > Rename ALIGNED_ONLY to TARGET_ALIGNED_ONLY for clarity and move > defines out of target/foo/cpu.h into configure, as we do with > TARGET_WORDS_BIGENDIAN, so that it is always defined early. > > Also, poison the symbol in include/exec/poison.h to prevent us

[Qemu-devel] [PATCH v3 1/1] configure: Define target access alignment in configure

2019-07-24 Thread tony.nguyen
Rename ALIGNED_ONLY to TARGET_ALIGNED_ONLY for clarity and move defines out of target/foo/cpu.h into configure, as we do with TARGET_WORDS_BIGENDIAN, so that it is always defined early. Also, poison the symbol in include/exec/poison.h to prevent use in common code. Reviewed-by: Philippe Mathieu-D