- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Firstly, I apologize if this is the wrong forum; I could not find any other more relevant.
I'm looking for clarification in regards to a statement made that asserts there is a 1-cycle difference between the instructions:
0x3B (cmp reg, mem)
0x39 (cmp mem, reg)
As the two are functionally equivalent, I assume it would have to have something to do with the decoding circuit logic, but would like clarification if this statement reigns true in the first place.
Additionally, if this is true, where would I be able to find documentation of such details? All of the manuals I've read (even the IA32 optimization manual) does not mention these things.
Thanks,
Matt.
Firstly, I apologize if this is the wrong forum; I could not find any other more relevant.
I'm looking for clarification in regards to a statement made that asserts there is a 1-cycle difference between the instructions:
0x3B (cmp reg, mem)
0x39 (cmp mem, reg)
As the two are functionally equivalent, I assume it would have to have something to do with the decoding circuit logic, but would like clarification if this statement reigns true in the first place.
Additionally, if this is true, where would I be able to find documentation of such details? All of the manuals I've read (even the IA32 optimization manual) does not mention these things.
Thanks,
Matt.
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Any ideas, anyone?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - matt.j
Any ideas, anyone?
no idea, but here is the best place I know forthis kind of subtleties:
http://www.agner.org/optimize/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - matt.j
Hi,
Firstly, I apologize if this is the wrong forum; I could not find any other more relevant.
I'm looking for clarification in regards to a statement made that asserts there is a 1-cycle difference between the instructions:
0x3B (cmp reg, mem)
0x39 (cmp mem, reg)
As the two are functionally equivalent, I assume it would have to have something to do with the decoding circuit logic, but would like clarification if this statement reigns true in the first place.
Additionally, if this is true, where would I be able to find documentation of such details? All of the manuals I've read (even the IA32 optimization manual) does not mention these things.
Thanks,
Matt.
Firstly, I apologize if this is the wrong forum; I could not find any other more relevant.
I'm looking for clarification in regards to a statement made that asserts there is a 1-cycle difference between the instructions:
0x3B (cmp reg, mem)
0x39 (cmp mem, reg)
As the two are functionally equivalent, I assume it would have to have something to do with the decoding circuit logic, but would like clarification if this statement reigns true in the first place.
Additionally, if this is true, where would I be able to find documentation of such details? All of the manuals I've read (even the IA32 optimization manual) does not mention these things.
Thanks,
Matt.
Just a guess, but normally an instruction with a memory location as the 'destination' operand takes an extra cycle for the write operation. cmp doesn't actually write anything to the destination, but it might simplify the logic to handle these instructions uniformly and skip the write at a later point (where latencymight also beless of an issue). Compilers shouldn't emit this anyway, so they can make compromises like these.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page