gprof 输出显示不存在的调用图边缘

gprof output shows a nonexistent call graph edge

我有兴趣分析函数 grep_source_is_binary()[1],其代码如下:

static int grep_source_is_binary(struct grep_source *gs,
                 struct index_state *istate)
{
    grep_source_load_driver(gs, istate);
    if (gs->driver->binary != -1)
        return gs->driver->binary;

    if (!grep_source_load(gs))
        return buffer_is_binary(gs->buf, gs->size);

    return 0;
}

gprof 的调用图为我提供了以下信息:

                0.00    1.58  304254/304254      grep_source_1 [6]
[7]     72.9    0.00    1.58  304254         grep_source_is_binary [7]
                0.01    1.20  304254/304254      show_line_header [8]
                0.00    0.37  303314/607568      grep_source_load [15]

这对我来说似乎很奇怪,因为 show_line_header() 既没有被 grep_source_binary() 调用,也没有被它的任何子代调用。我是否误解了 gprof 的输出?

[1]:在 https://github.com/git/git/blob/master/grep.c#L2183

检查您的代码是否正在被编译器优化。如果是,则使用 -O0.

禁用它