|
|
|
|
|
by userbinator
523 days ago
|
|
That instruction only encodes to 2 bytes, so size-wise it's the most efficient. In isolation it's the smallest, but it's no longer the smallest if you consider that the value, which in this example is the loop counter, needs to be preserved, meaning you'll need at least 2 bytes for another mov to make a copy. With test, the value doesn't get modified. |
|