有关内嵌气体的文档
当阅读 linux 0.01 内核时,我抛出了一些内联气体,这对我来说很难解码:
__asm__("movl $0x3ff000,%%eax\n\t"
"movl %%eax,%%db0\n\t"
"movl $0x000d0303,%%eax\n\t"
"movl %%eax,%%db7"
:::"ax")
或者
__asm__("push %%fs;mov %%ax,%%fs;movl %%fs:%2,%%eax;pop %%fs" \
:"=a" (__res):"0" (seg),"m" (*(addr))); \
__res;})
我不明白如何解释 ':' 之间的内容。
有人有关于它的一些文档吗?
谢谢
When reading the linux 0.01 kernel I pass throw some inline gas which is hard for me to decode:
__asm__("movl $0x3ff000,%%eax\n\t"
"movl %%eax,%%db0\n\t"
"movl $0x000d0303,%%eax\n\t"
"movl %%eax,%%db7"
:::"ax")
or
__asm__("push %%fs;mov %%ax,%%fs;movl %%fs:%2,%%eax;pop %%fs" \
:"=a" (__res):"0" (seg),"m" (*(addr))); \
__res;})
I don't understand how to interpret the stuff in between the ':'.
Does anyone got some documentation about it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html
Google 搜索“gcc 内联程序集”。
http://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html
6th result on a Google search for "gcc inline assembly".