[Qemu-devel] [Bug 1085658] Re: exec, cpu log

2012-12-02 Thread Daniil Troshkov
** Changed in: qemu Assignee: (unassigned) => Daniil Troshkov (troshkovdanil) ** Changed in: qemu Status: New => Invalid -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1085658

[Qemu-devel] [Bug 1085658] Re: exec, cpu log

2012-12-02 Thread Daniil Troshkov
** Description changed: Hello! CPU_LOG_EXEC (and CPU_LOG_TB_CPU) does not work (i.e. not of each tb dumped) because tb links is occur. Patch: diff --git a/cpu-exec.c b/cpu-exec.c index 904ee73..509d50c 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -582,7 +582,11 @@ int cpu_exe

[Qemu-devel] [Bug 1085658] [NEW] exec, cpu log

2012-12-02 Thread Daniil Troshkov
Public bug reported: Hello! CPU_LOG_EXEC (and CPU_LOG_TB_CPU) does not work (i.e. not of each tb dumped) because tb links is occur. Patch: diff --git a/cpu-exec.c b/cpu-exec.c index 904ee73..509d50c 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -582,7 +582,11 @@ int cpu_exec(CPUArchState *env)

[Qemu-devel] [Bug 1085658] Re: exec, cpu log

2012-12-02 Thread Daniil Troshkov
** Attachment added: "patch_exec" https://bugs.launchpad.net/qemu/+bug/1085658/+attachment/3449861/+files/patch_exec -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1085658 Title: exec, cpu log

[Qemu-devel] [Bug 904308] Re: x86: BT/BTS/BTR/BTC: ZF flag is unaffected

2011-12-14 Thread Daniil Troshkov
>Best to be conservative here. What is it means? -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/904308 Title: x86: BT/BTS/BTR/BTC: ZF flag is unaffected Status in QEMU: New Bug description: He

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-12-14 Thread Daniil Troshkov
I say about #define FPU_MIN(size, a, b) float ## size ## _lt(a, b, &env->sse_status) ? (a) : (b) #define FPU_MAX(size, a, b) float ## size ## _lt(b, a, &env->sse_status) ? (b) : (a) -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. ht

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-12-14 Thread Daniil Troshkov
May be commit you patch -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorrect Status in QEMU: New Bug description: Dear All, Bug was found in qemu.git

[Qemu-devel] [Bug 904308] Re: x86: BT/BTS/BTR/BTC: ZF flag is unaffected

2011-12-14 Thread Daniil Troshkov
** Patch added: "patch" https://bugs.launchpad.net/bugs/904308/+attachment/2633025/+files/patch2 -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/904308 Title: x86: BT/BTS/BTR/BTC: ZF flag is unaff

[Qemu-devel] [Bug 904308] [NEW] x86: BT/BTS/BTR/BTC: ZF flag is unaffected

2011-12-14 Thread Daniil Troshkov
Public bug reported: Hello! Bug was found in qemu.git. See target-i386/translate.c: case 0x1ba: /* bt/bts/btr/btc Gv, im */ ot = dflag + OT_WORD; modrm = ldub_code(s->pc++); op = (modrm >> 3) & 7; mod = (modrm >> 6) & 3; rm = (modrm & 7) | REX_B(s);

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-12-14 Thread Daniil Troshkov
Yes, but you patch is correct... -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorrect Status in QEMU: New Bug description: Dear All, Bug was found in

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-12-14 Thread Daniil Troshkov
Hello! Can I commit this patch (in development branch), and close this bug... Or you must do it? -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorrect Status

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-11-11 Thread Daniil Troshkov
482.sphinx3: http://www.spec.org/cpu2006/CFP2006/ -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorrect Status in QEMU: New Bug description: Dear All,

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-11-11 Thread Daniil Troshkov
** Patch added: "test.useprof.exe" https://bugs.launchpad.net/bugs/889053/+attachment/2593057/+files/test.useprof.exe -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, F

[Qemu-devel] [Bug 889053] [NEW] x86: FPU_MAX, FPU_MIN incorrect

2011-11-11 Thread Daniil Troshkov
Public bug reported: Dear All, Bug was found in qemu.git. Now (0.15, 1.0) all fpu is softfpu. See target-i386/ops_sse.h: #define FPU_MIN(size, a, b) (a) < (b) ? (a) : (b) #define FPU_MAX(size, a, b) (a) > (b) ? (a) : (b) It is incorrect now, becouse float64 (or 32) is (typedef) uint64_t (or 32).

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-11-11 Thread Daniil Troshkov
misprint: spec sphinx3 test data -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorrect Status in QEMU: New Bug description: Dear All, Bug was found in

[Qemu-devel] [Bug 889053] Re: x86: FPU_MAX, FPU_MIN incorrect

2011-11-11 Thread Daniil Troshkov
** Attachment added: "patch" https://bugs.launchpad.net/qemu/+bug/889053/+attachment/2593058/+files/patch -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/889053 Title: x86: FPU_MAX, FPU_MIN incorr