Changeset d68253a4 in mainline for kernel/arch/amd64/include/memstr.h
- Timestamp:
- 2008-06-02T12:47:33Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f44f04
- Parents:
- d2bdd245
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/memstr.h
rd2bdd245 rd68253a4 89 89 "addq $1, %0\n\t" 90 90 "1:\n" 91 : "=a" (ret), "= %S" (d0), "=&D" (d1), "=&c" (d2)91 : "=a" (ret), "=&S" (d0), "=&D" (d1), "=&c" (d2) 92 92 : "0" (0), "1" (src), "2" (dst), "3" ((unative_t)cnt) 93 93 ); … … 111 111 asm volatile ( 112 112 "rep stosw\n\t" 113 : "=&D" (d0), "=&c" (d1), "= a" (x)113 : "=&D" (d0), "=&c" (d1), "=&a" (x) 114 114 : "0" (dst), "1" ((unative_t)cnt), "2" (x) 115 115 : "memory" … … 133 133 asm volatile ( 134 134 "rep stosb\n\t" 135 : "=&D" (d0), "=&c" (d1), "= a" (x)135 : "=&D" (d0), "=&c" (d1), "=&a" (x) 136 136 : "0" (dst), "1" ((unative_t)cnt), "2" (x) 137 137 : "memory"
Note:
See TracChangeset
for help on using the changeset viewer.