Subject: Re: shocking speed performance!
To: Bruce Martin <BruceM@cat.co.za>
From: None <kim@pvv.ntnu.no>
List: port-arm32
Date: 05/20/1999 10:12:46
> My question was not intended to attack the operating system,
> but rather to try and find where I was going wrong - I'll
> let you all know when I find the problem.

You may do what I did:
Compile to assembler source code, and then examine it.
If you find stuff like: 
a <- b * c
a <- a + d

Then you have bad code. Fast code should look something like:
a <- b * c
e <- Array[x]
a <- a + d

I.e. interlieve instructions.

Kim0