Changes in v2: - Rebased on top of: Subject: [PATCH 0/2] target-i386: move CPU object creation to cpu.c (v2) - Wrote a sed script that can be used to reproduce exactly the same changes from patch 3: https://gist.github.com/4271991
Git tree for testing: git://github.com/ehabkost/qemu-hacks.git x86-cpu-feature-array.v2 https://github.com/ehabkost/qemu-hacks/tree/x86-cpu-feature-array.v2 Original description: I was planning to implement this only after we finished the rest of the work, the changes are a bit intrusive. But now it looks like the CPUID feature bits are getting into our way (e.g. the feature word array will allow us to simplify the -cpu host and -cpu check/enforce code a lot, making it easier to convert that code to use CPU subclasses), so I decided to submit it now. Eduardo Habkost (3): target-i386: add EXT2_PPRO_FEATURES #define target-i386/cpu.c: coding style fix target-i386: replace cpuid_*features fields with a feature word array hw/kvm/clock.c | 2 +- linux-user/elfload.c | 2 +- linux-user/main.c | 4 +- target-i386/cpu.c | 582 +++++++++++++++++++++++----------------------- target-i386/cpu.h | 30 +-- target-i386/helper.c | 4 +- target-i386/kvm.c | 5 +- target-i386/misc_helper.c | 14 +- target-i386/translate.c | 10 +- 9 files changed, 334 insertions(+), 319 deletions(-) -- 1.7.11.7