| To: | Thiemo Seufer <ths@networkno.de> |
|---|---|
| Subject: | Re: [PATCH] mm/pg-r4k.c: Dump the generated code |
| From: | Franck Bui-Huu <vagabon.xyz@gmail.com> |
| Date: | Mon, 15 Oct 2007 21:35:59 +0200 |
| Cc: | "Maciej W. Rozycki" <macro@linux-mips.org>, Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=qOPllCOmPWxHHHe8Zal/cb3NU26XR9+bFfn50dmzFZA=; b=V7ZaJW928h1sxpWmIyZYlTa3ymULdEYsQHF2xOC02MNt8mYO2ypAlpWGaMxZLd++ilbqkwXf+jvSeMBsz6hFVBIYX1OVmepyrNQbYiMGiFHU84eaml50qeXHUxL6dkGvnUEtQrcQWjSKUnqXxB8yp9tMK5THEdUUGiqWQCI+6aM= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=aSVRR2KGELTQnNz39jDsjzXEzBsrDhvxaXBiBMGll/pwrwMRnoyaYia13WuEgrBBsZ5qsRoseBTc98k7/qeKRR8F9/wcy0OZ5//lmaYt4xNkR74u1GVe5MZIM2tgr5v2Tmf1jwLbV9JXoz6nm/RO4feBLNxSpqxUv8VNTL3bEyg= |
| In-reply-to: | <20071014195324.GT3379@networkno.de> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <20071004121557.GA28928@linux-mips.org> <4705004C.5000705@gmail.com> <Pine.LNX.4.64N.0710041616570.10573@blysk.ds.pg.gda.pl> <4705EFE5.7090704@gmail.com> <Pine.LNX.4.64N.0710051312490.17849@blysk.ds.pg.gda.pl> <470A4349.9090301@gmail.com> <Pine.LNX.4.64N.0710081611460.8873@blysk.ds.pg.gda.pl> <470BE1F4.3070800@gmail.com> <Pine.LNX.4.64N.0710101231290.9821@blysk.ds.pg.gda.pl> <47126EDC.1060305@gmail.com> <20071014195324.GT3379@networkno.de> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Thunderbird 2.0.0.5 (X11/20070719) |
Thiemo Seufer wrote:
> Could you check what "-march=mips32r2 -smartmips -mtune=4ksd" does?
> I expect it to have the same result than "-march=4ksd".
>
OK, I give it a try and here are some figures:
$ mipsel-linux-size mipssde-6.05.00-20061023/vmlinux~*
text data bss dec hex filename
1446130 58456 93056 1597642 1860ca mipssde-6.05.00-20061023/vmlinux~4ksd
1472034 58456 93056 1623546 18c5fa
mipssde-6.05.00-20061023/vmlinux~mips32r2-smartmips
1446130 58456 93056 1597642 1860ca
mipssde-6.05.00-20061023/vmlinux~mips32r2-smartmips-mtune4ksd
So you're right "-march=mips32r2 -smartmips -mtune=4ksd" gives the
same result as "-march=4ksd"
And the extra space given by "-march=mips32r2 -smartmips" is coming
from some additional nop instructions:
$ mipsel-linux-objdump -D vmlinux~mips32r2-smartmips >
vmlinux~mips32r2-smartmips.S
$ mipsel-linux-objdump -D vmlinux~4ksd > vmlinux~4ksd.S
$ grep -c nop *.S
vmlinux~4ksd.S:18708
vmlinux~mips32r2-smartmips.S:27895
It seems that these extra nops are used for load delays. For example:
vmlinux~4ksd.S:
--------------
<snip>
c00008b4: 8fa40040 lw a0,64(sp)
c00008b8: 27a40018 addiu a0,sp,24
c00008bc: 0c000148 jal c0000520 <try_name>
<snip>
vmlinux~mips32r2-smartmips.S:
---------------------------
c00008b8: 8fa40040 lw a0,64(sp)
c00008bc: 00000000 nop
c00008c0: 27a40018 addiu a0,sp,24
c00008c4: 0c000148 jal c0000520 <try_name>
Franck
|
| Previous by Date: | Re: [PATCH][1/2][MIPS] update AU1000 get_ethernet_addr(), Jeff Garzik |
|---|---|
| Next by Date: | Re: [RFC] Add __initbss section, Franck Bui-Huu |
| Previous by Thread: | Re: [PATCH] mm/pg-r4k.c: Dump the generated code, Franck Bui-Huu |
| Next by Thread: | Re: [PATCH] mm/pg-r4k.c: Dump the generated code, Nigel Stephens |
| Indexes: | [Date] [Thread] [Top] [All Lists] |