BTS/BTR performance
From: Christian Neubert (spamtrap_at_crayne.org)
Date: 10/17/04
- Next message: Betov : "Re: Which assembler to choose?"
- Previous message: Shawn Windle: "Incrementing and printing numbers"
- Next in thread: wolfgang kern: "Re: BTS/BTR performance"
- Reply: wolfgang kern: "Re: BTS/BTR performance"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sun, 17 Oct 2004 17:53:39 +0000 (UTC)
I want to know which way is faster:
mov ebx,1
shl ebx,cl
mov edx,[esi+4*eax]
xor edx,ebx
mov [esi+4*eax],edx
or
mov edx,[esi+4*eax]
btr edx,ecx
mov [esi+4*eax],edx
And would it be faster if I write it so:
xor [esi+4*eax],ebx
or
btr [esi+4*eax],ecx
FlashBurn
- Next message: Betov : "Re: Which assembler to choose?"
- Previous message: Shawn Windle: "Incrementing and printing numbers"
- Next in thread: wolfgang kern: "Re: BTS/BTR performance"
- Reply: wolfgang kern: "Re: BTS/BTR performance"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|