[Qemu-devel] [PATCH v3 00/13] i386 + x86_64 mttcg

Emilio G. Cota posted 13 patches 7 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180911202823.21657-1-cota@braap.org
Test docker-clang@ubuntu failed
Test checkpatch passed
[Qemu-devel] [PATCH v3 00/13] i386 + x86_64 mttcg
Posted by Emilio G. Cota 7 years, 1 month ago
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



Re: [Qemu-devel] [PATCH v3 00/13] i386 + x86_64 mttcg
Posted by Paolo Bonzini 7 years, 1 month ago
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