3

For example callq 401400 <_ZNSaIcEC1Ev@plt> I want to know the name of this function

My compiler is g++

clay
  • 79
  • 7

1 Answers1

6

You can use the c++filt tool that should be included with your compiler. Example:

$ echo 'callq 401400 <_ZNSaIcEC1Ev@plt>' | c++filt
callq 401400 <std::allocator<char>::allocator()@plt>
0x5453
  • 12,753
  • 1
  • 32
  • 61