#ifdef CONFIG_DEBUG_STACKOVERFLOW
/* Debugging check for stack overflow: is there less than 1KB free? */
{
long esp;
__asm__ __volatile__("andl %%esp,%0" :
"=r" (esp) : "0" (THREAD_SIZE - 1));
if (unlikely(esp < (sizeof(struct thread_info) + STACK_WARN))) {
printk("do_IRQ: stack overflow: %ld\n",
esp - sizeof(struct thread_info));
dump_stack();
}
}
#endif
我不明白这个asm组装的含义 asm _ volatile _(“andl %% esp,%0”: “= r”(esp):“0”(THREAD_SIZE - 1)); THREAD_SIZE - 1意味着什么? 我记得括号中的符号应该像输出部分中的esp一样是C变量,但是在输入部分它看起来像一个整数而不是C符号,可以有些帮助
答案 0 :(得分:3)
"0"
约束意味着:使用与第0个操作数(http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html#ss6.1和6.1.3匹配(数字)约束)相同的约束。
基本上,此片段将THREAD_SIZE - 1
作为输入寄存器,并在同一寄存器中输出anded值。该寄存器在源代码中被引用为esp
变量。