使用GDB调试va_list args

时间:2017-02-06 16:14:18

标签: c gcc gdb variadic-functions

我尝试调试Va_list参数并打印变量值示例代码为:

#include <stdarg.h>
#include <stdio.h>
double average(int count, ...)
{
    va_list ap;
    int j;
    double sum = 0;
    va_start(ap, count); /* Requires the last fixed parameter (to get the address) */
    for (j = 0; j < count; j++) {
        sum += va_arg(ap, int); /* Increments ap to the next argument. */
    }
    va_end(ap);
    return sum / count;
}
int main(int argc, char const *argv[])
{
    printf("%f\n", average(3, 1, 2, 3) );
    return 0;
}

所以我试着调试ap va_list参数而我写了

   (gdb) p *(int *)(((char *)ap[0].reg_save_area)+ap[0].gp_offset)

但是我得到了GDB的结果

Attempt to dereference a generic pointer.

这是结果的图像:

1 个答案:

答案 0 :(得分:0)

当您在gdb的第8行停止时,这行代码尚未执行:

va_start(ap, count); /* Requires the last fixed parameter (to get the address) */

因此ap变量尚未初始化,您无法打印它。您应该执行下一行代码并再次打印ap

(gdb) n
9       for (j = 0; j < count; j++) {
(gdb) p *(int *)(((char *)ap[0].reg_save_area)+ap[0].gp_offset)
$1 = 1