* [Qemu-devel] Problem with QEMU on PPC
@ 2004-11-04 15:29 Helmar Wodtke
2004-11-05 12:37 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Helmar Wodtke @ 2004-11-04 15:29 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1.1: Type: text/plain, Size: 609 bytes --]
Hi,
I want to run x86 code (more specific my FORTH at http://www.printly.de/HelFORTH/ ) with user mode emulation on PPC linux.
I've made some debugging and figured out that the following code (for fasm) does not run:
------------------------------------
format elf executable
entry main
main:
mov ebx,bla
inc dword [ebx]
xor ebx,ebx
xor eax,eax
inc eax
int 80h
bla: dd 0
------------------------------------
x86/x86 works fine, so I think this is a bug in PPC version. Also "inc dword [bla[" would work.
Thank you.
Helmar
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: Helmar Wodtke.vcf --]
[-- Type: text/x-vCard; name="Helmar Wodtke.vcf", Size: 186 bytes --]
BEGIN:VCARD
VERSION:2.1
N:Wodtke;Helmar;;;
FN:Helmar Wodtke
ADR;HOME:;;Hauptstraße 12;Belgershain;;04683;Deutschland
EMAIL;INTERNET:helmwo@web.de
EMAIL;INTERNET:helmwo@web.de
END:VCARD
\0
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 1433 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [Qemu-devel] Problem with QEMU on PPC
2004-11-04 15:29 [Qemu-devel] Problem with QEMU on PPC Helmar Wodtke
@ 2004-11-05 12:37 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2004-11-05 12:37 UTC (permalink / raw)
To: qemu-devel
Hi,
On Thu, 4 Nov 2004, Helmar Wodtke wrote:
> I want to run x86 code (more specific my FORTH at
> http://www.printly.de/HelFORTH/ ) with user mode emulation on PPC
> linux. I've made some debugging and figured out that the following code
> (for fasm)
> does not run:
Means segmentation fault? Or does not start? Or does nothing?
> x86/x86 works fine, so I think this is a bug in PPC version. Also "inc
> dword [bla[" would work.
Tip: Enable single stepping, enable all logging (or at least in_asm and
cpu) and then compare between PPC and x86 host. You should get an idea
which insn is causing the glitch.
Hth,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] Problem with QEMU on PPC
@ 2004-11-06 9:46 Helmar Wodtke
2004-11-06 14:34 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Helmar Wodtke @ 2004-11-06 9:46 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1.1: Type: text/plain, Size: 1370 bytes --]
> Hi,
>
> On Thu, 4 Nov 2004, Helmar Wodtke wrote:
>
> > I want to run x86 code (more specific my FORTH at
> > http://www.printly.de/HelFORTH/ ) with user mode emulation on PPC
> > linux. I've made some debugging and figured out that the following code
> > (for fasm)
> > does not run:
>
> Means segmentation fault? Or does not start? Or does nothing?
It says:
helmar@imac helforth04b $ bin/qemu-i386 hf
()<1234567qemu: uncaught target signal 11 (Segmentation fault) - exiting
helmar@imac helforth04b $ bin/qemu-i386 test
qemu: uncaught target signal 11 (Segmentation fault) - exiting
helmar@imac helforth04b $
The first command is my FORTH with some debugging code I added and "test" is the code I send in last mail. BTW: Does the segmentation fault message mean it's the emulator or it's the program?
> > x86/x86 works fine, so I think this is a bug in PPC version. Also "inc
> > dword [bla[" would work.
>
> Tip: Enable single stepping, enable all logging (or at least in_asm and
> cpu) and then compare between PPC and x86 host. You should get an idea
> which insn is causing the glitch.
How? Can you point me to documentation? I dont know structure of QEMU well - as far as I've seen there are a lot optimisations for PCC. I dont understand PPC-assembler and dont like to learn it for this problem (I would implement a C-FORTH instead...).
Bis dann,
Helmar
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: Helmar Wodtke.vcf --]
[-- Type: text/x-vCard; name="Helmar Wodtke.vcf", Size: 186 bytes --]
BEGIN:VCARD
VERSION:2.1
N:Wodtke;Helmar;;;
FN:Helmar Wodtke
ADR;HOME:;;Hauptstraße 12;Belgershain;;04683;Deutschland
EMAIL;INTERNET:helmwo@web.de
EMAIL;INTERNET:helmwo@web.de
END:VCARD
\0
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 1433 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] Problem with QEMU on PPC
2004-11-06 9:46 Helmar Wodtke
@ 2004-11-06 14:34 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2004-11-06 14:34 UTC (permalink / raw)
To: qemu-devel
Hi,
On Sat, 6 Nov 2004, Helmar Wodtke wrote:
> helmar@imac helforth04b $ bin/qemu-i386 hf
> ()<1234567qemu: uncaught target signal 11 (Segmentation fault) - exiting
> helmar@imac helforth04b $ bin/qemu-i386 test
> qemu: uncaught target signal 11 (Segmentation fault) - exiting
This means that QEmu tries to access memory which was not mapped, i.e.
something like *(char*)0x0.
> > Tip: Enable single stepping, enable all logging (or at least in_asm and
> > cpu) and then compare between PPC and x86 host. You should get an idea
> > which insn is causing the glitch.
>
> How? Can you point me to documentation? I dont know structure of QEMU
> well - as far as I've seen there are a lot optimisations for PCC. I dont
> understand PPC-assembler and dont like to learn it for this problem (I
> would implement a C-FORTH instead...).
If you look into target-i386/translate.c, and search for CF_SINGLE_INSN,
you will probably know what I mean. Just make the if() succeed all the
time (so that only one insn is translated into one Translated Block).
BTW, PPC-assembler is not that complicated. And I think it'd be good to
squash that bug.
Hth,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-11-06 14:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-04 15:29 [Qemu-devel] Problem with QEMU on PPC Helmar Wodtke
2004-11-05 12:37 ` Johannes Schindelin
-- strict thread matches above, loose matches on Subject: below --
2004-11-06 9:46 Helmar Wodtke
2004-11-06 14:34 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).