Re: Is je more effective than jg
- From: leon800219@xxxxxxxxx
- Date: 26 Nov 2006 21:22:08 -0800
"Ratch 写道:
"
<leon800219@xxxxxxxxx> wrote in messageSorry for confusion my question is on JE and JG, by effective I mean
news:1164592812.095934.170610@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi all:
I wonder is jne more effective than jbe, if so why?
The statement:
for(i=0;i<=10;++i)
{
}
seems slower than:
for(i=0;i!=10;++i)
{
}
?
In the subject of this message you ask about JE. In the body of this
message you ask about JBE. So I am confused. Anyway the question is what
is "effective". JE,JBE, and JG are three different instructions that do
different things. So is addition more "effective" than multiplication or
subtraction? Ratch
which instruction less time and resouce consuming, since they act like
same functionality in
for loop. Is that make sense?
.
- Follow-Ups:
- Re: Is je more effective than jg
- From: Ratch
- Re: Is je more effective than jg
- References:
- Is je more effective than jg
- From: leon800219
- Re: Is je more effective than jg
- From: Ratch
- Is je more effective than jg
- Prev by Date: Re: Is je more effective than jg
- Next by Date: GeForce / ATI?
- Previous by thread: Re: Is je more effective than jg
- Next by thread: Re: Is je more effective than jg
- Index(es):
Relevant Pages
|