Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | target-i386: compute eflags outside rcl/rcr helper | Paolo Bonzini | 2013-02-18 | 1 | -8/+4 |
| | | | | | | | | | | | | | | Always compute EFLAGS first since it is needed whenever the shift is non-zero, i.e. most of the time. This makes it possible to remove some writes of CC_OP_EFLAGS to cpu_cc_op and more importantly removes cases where s->cc_op becomes CC_OP_DYNAMIC. Also, we can remove cc_tmp and just modify cc_src from within the helper. Finally, always follow gen_compute_eflags(cpu_cc_src) by setting s->cc_op and discarding cpu_cc_dst. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Richard Henderson <rth@twiddle.net> | ||||
* | x86: avoid AREG0 for integer helpers | Blue Swirl | 2012-08-14 | 1 | -2/+4 |
| | | | | | | Add an explicit CPUX86State parameter instead of relying on AREG0. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | ||||
* | x86: avoid AREG0 for condition code helpers | Blue Swirl | 2012-08-14 | 1 | -2/+2 |
| | | | | | | Add an explicit CPUX86State parameter instead of relying on AREG0. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | ||||
* | x86: split condition code and shift templates | Blue Swirl | 2012-06-28 | 1 | -0/+110 |
Move shift templates from helper_template.h to shift_helper_template.h and the condition code helpers to cc_helper_template.h. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> |