在 do_IRQ 中,您可以找到以下代码!
#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 是什么意思?
我记得括号里的符号应该是C变量,就像输出部分中的esp一样,但在输入部分它看起来像一个整数而不是C符号,有没有帮助
最佳答案
"0"
约束意味着:使用与第 0 个操作数相同的约束( http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html#ss6.1 和 6.1.3 Matching(Digit) 约束)。
基本上,这个片段将 THREAD_SIZE - 1
作为输入寄存器,并在同一个寄存器中输出一个 anded 值。该寄存器在源代码中被称为 esp
变量。
关于linux - 在 i386 的 linux 内核 2.6.11 中,此内联程序集(:"0"(THREAD_SIZE - 1))的含义是什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21904753/