这个内联汇编的含义是什么(:“0”(THREAD_SIZE - 1))在linux内核2.6.11 for i386中

时间:2014-02-20 10:19:08

标签: linux assembly kernel i386 irq

<_>在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意味着什么? 我记得括号中的符号应该像输出部分中的esp一样是C变量,但是在输入部分它看起来像一个整数而不是C符号,可以有些帮助

1 个答案:

答案 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变量。