From: Avi Kivity <avi@redhat.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Hagen Paul Pfeifer <hagen@jauu.net>,
David Miller <davem@davemloft.net>,
netdev <netdev@vger.kernel.org>,
Arnaldo Carvalho de Melo <acme@infradead.org>,
Ben Hutchings <bhutchings@solarflare.com>
Subject: Re: [PATCH v2] net: filter: Just In Time compiler
Date: Thu, 14 Apr 2011 18:53:26 +0300 [thread overview]
Message-ID: <4DA71876.803@redhat.com> (raw)
In-Reply-To: <1302795951.3248.14.camel@edumazet-laptop>
On 04/14/2011 06:45 PM, Eric Dumazet wrote:
> Le jeudi 14 avril 2011 à 18:41 +0300, Avi Kivity a écrit :
>
> > I'm talking about optimizing the generated code. For example, bpf has
> > just two registers so a complex program generates a lot of loads and
> > stores. An optimizing compiler can use extra target registers to avoid
> > those spills, and doesn't need to keep A and X in fixed registers.
> >
>
> Thats not exactly true.
>
> A bpf filter also uses up to 16 mem[] 'registers'.
>
That's what I referred as loads and stores. Since you can't use mem[]
to index into a packet, you have to spill X into mem[], calculate a new
X, use it to access the packet, and reload X.
> A risc cpu (with a lot of registers) could use registers to hold part of
> the mem[] array.
An optimizing compiler will dynamically assign mem[] into registers,
even on i386. Liveness analysis means the same machine register can be
used for different mem[] locations.
> > If you translate the bpf program to C and optimize that with gcc you'll
> > probably get much better machine code that the jit in the patch.
> >
>
> Well, gcc wont optimize a lot a bpf program if you ask me.
IMO, it will. I'll try to have gcc optimize your example filter later.
> You would better make tcpdump not generate bpf but direct C code.
That involves breaking the interface (plus, we might not trust tcpdump).
--
error compiling committee.c: too many arguments to function
next prev parent reply other threads:[~2011-04-14 15:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-02 22:28 [PATCH v1] net: filter: Just In Time compiler Eric Dumazet
2011-04-02 22:50 ` Hagen Paul Pfeifer
2011-04-03 5:41 ` Eric Dumazet
2011-04-02 22:53 ` Ben Hutchings
2011-04-03 13:56 ` [PATCH v2] " Eric Dumazet
2011-04-04 5:07 ` David Miller
2011-04-04 5:21 ` Eric Dumazet
2011-04-14 14:40 ` Avi Kivity
2011-04-14 14:55 ` Hagen Paul Pfeifer
2011-04-14 15:41 ` Avi Kivity
2011-04-14 15:45 ` Eric Dumazet
2011-04-14 15:53 ` Avi Kivity [this message]
2011-04-14 16:05 ` Eric Dumazet
2011-04-20 7:41 ` Avi Kivity
2011-04-20 8:07 ` Eric Dumazet
2011-04-20 8:14 ` David Miller
2011-04-20 8:27 ` Hagen Paul Pfeifer
2011-04-20 19:27 ` Eric Dumazet
2011-04-28 6:05 ` David Miller
2011-04-20 8:12 ` David Miller
2011-04-14 15:40 ` Eric Dumazet
2011-04-14 15:45 ` Avi Kivity
2011-04-03 5:43 ` [PATCH v1] " David Miller
2011-04-03 9:04 ` Eric Dumazet
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=4DA71876.803@redhat.com \
--to=avi@redhat.com \
--cc=acme@infradead.org \
--cc=bhutchings@solarflare.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=hagen@jauu.net \
--cc=netdev@vger.kernel.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 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).