mbox series

[v3,00/13] i386 + x86_64 mttcg

Message ID 20180911202823.21657-1-cota@braap.org (mailing list archive)
Headers show
Series i386 + x86_64 mttcg | expand

Message

Emilio Cota Sept. 11, 2018, 8:28 p.m. UTC
v2: https://lists.gnu.org/archive/html/qemu-devel/2018-09/msg01122.html

Changes since v2:

- Add rth's R-b tag to the last patch
- Drop v2's first 10 patches, since Paolo already picked those up
- Move TCG temps + x86_64_hregs to DisasContext
  + While at it, drop the cpu_ prefix from the TCG temps,
    e.g. cpu_A0 -> s->A0
  + Split the conversion into separate patches to ease review.
    The patches are quite boring and long because the temps
    are everywhere, and I had to add DisasContext *s to quite a few
    functions

The series is checkpatch-clean.

You can fetch these patches from:
  https://github.com/cota/qemu/tree/i386-mttcg-v3

Thanks,

		Emilio

Comments

Paolo Bonzini Sept. 12, 2018, 12:46 p.m. UTC | #1
On 11/09/2018 22:28, Emilio G. Cota wrote:
> v2: https://lists.gnu.org/archive/html/qemu-devel/2018-09/msg01122.html
> 
> Changes since v2:
> 
> - Add rth's R-b tag to the last patch
> - Drop v2's first 10 patches, since Paolo already picked those up
> - Move TCG temps + x86_64_hregs to DisasContext
>   + While at it, drop the cpu_ prefix from the TCG temps,
>     e.g. cpu_A0 -> s->A0
>   + Split the conversion into separate patches to ease review.
>     The patches are quite boring and long because the temps
>     are everywhere, and I had to add DisasContext *s to quite a few
>     functions
> 
> The series is checkpatch-clean.
> 
> You can fetch these patches from:
>   https://github.com/cota/qemu/tree/i386-mttcg-v3

Great, thanks!

Paolo