Callgrind 报告了 malloc 中的断言冲突,尽管 memcheck 和通常的运行没有显示任何错误:
stp: malloc.c:3096: sSYSMALLOc: 断言`(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof (size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' 失败。
运行命令是:
taskset -c 7 valgrind --main-stacksize=256768768 --tool=callgrind no-asserts-no-cbitp/stp ~/profiling-stp/python-samples-without-const-arr/*.smt
该程序是使用 -O2 -g 选项构建的。在运行 valgrind 之前,会调用“ulimit -s unlimited”。
是否可以获得 Callgrind 报告的错误的堆栈跟踪?如果没有 - 想法如何调试?
谢谢!