What does %c mean in GCC inline assembly code?

£可爱£侵袭症+ 提交于 2019-12-01 04:01:45
Ned

From the GCC internals documentation:

`%cdigit' can be used to substitute an operand that is a constant value without the syntax that normally indicates an immediate operand.

Check the assembly output (with gcc -S, or maybe disassemble the object file) and it may be clearer.

My guess is that it stands for constant. hypercall_page looks like a table of instructions that each do a syscall. Maybe this will generate a call hypercall_page + {constant based on the expression given}, essentially having computed the address of this offset at compile time.

As an aside, this __HYPERVISOR##name stuff really reminds me of the __NR_name_of_syscall type convention you see for syscalls in Linux's <asm/unistd.h> and similar places.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!