如何知道gcc选择哪个函数重载

时间:2015-03-19 09:33:58

标签: c++ gcc overloading

这是我的背景:

#include <string>
#include <map>
#include <sstream>
#include <iostream>

namespace na {
    enum XXX { X1, X2 };

    std::string to_string(XXX x) {
        static const std::map<XXX, std::string> MAP { {X1, "X1"}, {X2, "X2"} };

        return MAP.at(x);
    }
}

namespace nb {
    enum YYY { Y1 = 1001, Y2 = 1002 };
}

typedef char priority;

std::string to_string(priority p) {
    std::ostringstream oss;
    oss << p;
    return oss.str();
}

int main()
{
    na::XXX x = na::X1;

    std::cout << "x: " << to_string(x) << "\n";

    nb::YYY y = nb::Y2;

    std::cout << "y: " << to_string(y) << "\n";

    return 0;
}

to_string(y)的调用是一个&#34;错误&#34;因为类型to_string不存在函数nb::YYY。但实际上这有效!

我用以下代码编译:

g++ -o main.o -c -std=c++11 -Wall -Wextra -pedantic main.cpp
g++ -o function_overloading main.o

这个编译没有错误,没有警告。在这个简单的例子中,我知道当GCC对to_string(y)进行名称查找时,它会找到to_string(priority)但是在一个大项目中,找到GCC选择的函数并不简单。

那么,有没有办法确定GCC选择哪个函数,&#34;后验&#34;,通过检查.o,或者通过将选项传递给GCC?

我在linux上使用GCC 4.7.2。

1 个答案:

答案 0 :(得分:2)

您可能会使用源信息进行objdump。让我们试试你的例子(为了清楚起见,我将使用gcc 4.9.2:

g++ -c -O0 -gdwarf-2 gccover.cpp -std=c++11
objdump -Sdr gccover.o >& gccover.dis

你会看到:

<_ZN2na9to_stringENS_3XXXE>:
std::string to_string(XXX x)

<_Z9to_stringc>:
std::string to_string(priority p)

现在只需转到调用点并查看实际调用的内容。

      std::cout << "y: " << to_string(y) << "\n";
 296: 8b 45 e8              mov    -0x18(%rbp),%eax
 299: 0f be d0              movsbl %al,%edx
 29c: 48 8d 45 e0           lea    -0x20(%rbp),%rax
 2a0: 89 d6                 mov    %edx,%esi
 2a2: 48 89 c7              mov    %rax,%rdi
 2a5: e8 00 00 00 00        callq  2aa <main+0x76>
      2a6: R_X86_64_PC32  _Z9to_stringc-0x4

我认为,一切都很清楚。