From: Richard Henderson <rth@cygnus.com>
To: Paul.Mackerras@cs.anu.edu.au
Cc: Jes.Sorensen@cern.ch, Geert.Uytterhoeven@cs.kuleuven.ac.be,
linuxppc-dev@lists.linuxppc.org, linux-fbdev@vuser.vu.union.edu
Subject: Re: [linux-fbdev] Re: readl() and friends and eieio on PPC
Date: Wed, 11 Aug 1999 22:43:44 -0700 [thread overview]
Message-ID: <19990811224344.A14713@cygnus.com> (raw)
In-Reply-To: <199908120500.PAA30022@tango.anu.edu.au>; from Paul Mackerras on Thu, Aug 12, 1999 at 03:00:46PM +1000
[-- Attachment #1: Type: text/plain, Size: 883 bytes --]
On Thu, Aug 12, 1999 at 03:00:46PM +1000, Paul Mackerras wrote:
> Show us the numbers?
Attached is a quick userland study wrt main memory. How much
more accurate to a real device do I need to get to convice you
that the test is valid enough?
As I see it, testing against main memory should be the lower
bound of the numbers, since it's the quickest to respond. A
real device will take longer to respond, so any enforced delays
(or failures to write-combine) will only exagerate the difference.
Anyway, the results (in cycles) from my 533MHz sx164 are:
10
10
10
10
10
223
94
94
94
94
So the cost of wmb for 8 store+wmb, versus 8 stores with one wmb,
is over 9:1.
> I don't believe the frame-buffer guys will actually
> see any measurable improvement in performance from taking out the
> eieio from readl/writel on PPC.
For grins, will you try the same test on your ppc?
r~
[-- Attachment #2: z.c --]
[-- Type: text/plain, Size: 652 bytes --]
#include <stdio.h>
main()
{
int i;
unsigned s, e;
unsigned long mem;
for (i = 0; i < 5; ++i)
{
asm("rpcc %0
stq $31,%2
stq $31,%2
stq $31,%2
stq $31,%2
stq $31,%2
stq $31,%2
stq $31,%2
wmb
stq $31,%2
rpcc %1"
: "=r"(s), "=r"(e), "=m"(mem));
printf("%u\n", e-s);
}
for (i = 0; i < 5; ++i)
{
asm("rpcc %0
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
stq $31,%2
wmb
rpcc %1"
: "=r"(s), "=r"(e), "=m"(mem));
printf("%u\n", e-s);
}
}
next prev parent reply other threads:[~1999-08-12 5:43 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
1999-08-09 8:17 readl() and friends and eieio on PPC Geert Uytterhoeven
1999-08-09 17:19 ` David A. Gatwood
1999-08-10 1:00 ` Paul Mackerras
1999-08-10 7:18 ` [linux-fbdev] " Jes Sorensen
1999-08-11 0:23 ` Paul Mackerras
1999-08-11 7:23 ` Jes Sorensen
1999-08-11 7:38 ` Richard Henderson
1999-08-12 0:13 ` Paul Mackerras
1999-08-12 1:39 ` Peter Chang
1999-08-12 4:52 ` Paul Mackerras
1999-08-12 6:17 ` Peter Chang
1999-08-12 0:17 ` Paul Mackerras
1999-08-12 4:40 ` Richard Henderson
1999-08-12 5:00 ` Paul Mackerras
1999-08-12 5:43 ` Richard Henderson [this message]
1999-08-12 7:07 ` Paul Mackerras
1999-08-12 7:33 ` Richard Henderson
1999-08-12 9:58 ` Paul Mackerras
1999-08-12 12:31 ` Geert Uytterhoeven
1999-08-13 12:18 ` Paul Mackerras
1999-08-18 11:02 ` Gabriel Paubert
1999-08-13 18:33 ` Richard Henderson
1999-08-12 5:16 ` David Edelsohn
1999-08-12 5:27 ` Paul Mackerras
1999-08-12 5:52 ` Richard Henderson
1999-08-12 7:11 ` Paul Mackerras
1999-08-12 7:32 ` Jes Sorensen
1999-08-11 23:52 ` Paul Mackerras
1999-08-12 7:38 ` Jes Sorensen
1999-08-12 19:00 ` David A. Gatwood
1999-08-13 1:51 ` Paul Mackerras
[not found] <Pine.LNX.3.96.990813143741.27557B-100000@mvista.com>
[not found] ` <d3so5mdyta.fsf@lxp03.cern.ch>
1999-08-14 18:34 ` Geert Uytterhoeven
1999-08-14 18:36 ` David A. Gatwood
1999-08-14 19:48 ` Jes Sorensen
1999-08-15 1:28 ` David A. Gatwood
1999-08-14 21:39 ` Richard Henderson
1999-08-15 23:16 ` Paul Mackerras
1999-08-16 0:29 ` Richard Henderson
1999-08-16 7:11 ` Jes Sorensen
[not found] <m3672hkxri.fsf@soma.andreas.org>
1999-08-15 13:39 ` James Simmons
[not found] <d3pv0p72yr.fsf@lxp03.cern.ch>
1999-08-15 19:43 ` David A. Gatwood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=19990811224344.A14713@cygnus.com \
--to=rth@cygnus.com \
--cc=Geert.Uytterhoeven@cs.kuleuven.ac.be \
--cc=Jes.Sorensen@cern.ch \
--cc=Paul.Mackerras@cs.anu.edu.au \
--cc=linux-fbdev@vuser.vu.union.edu \
--cc=linuxppc-dev@lists.linuxppc.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.