Changeset 75334 in vbox for trunk/src/VBox/Runtime/common/string/memcmp.asm
- Timestamp:
- Nov 9, 2018 1:21:05 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/memcmp.asm
r75129 r75334 35 35 RT_NOCRT_BEGINPROC memcmp 36 36 cld 37 xor eax, eax38 37 39 38 ; Do the bulk of the work. … … 50 49 %endif 51 50 shr rcx, 3 51 xor eax, eax 52 52 repe cmpsq 53 53 jne .not_equal_qword … … 69 69 jecxz .done 70 70 shr ecx, 2 71 xor eax, eax 71 72 repe cmpsd 72 73 jne .not_equal_dword
Note:
See TracChangeset
for help on using the changeset viewer.