2

Anyone who's used PIN? How would you identify a function exactly (in presence of method overloading)? I can see PIN provides RTN_Name() function, which would return the function name, but surely that's no enough… so what else would you use? Would using RTN_Address() in conjunction with RT_Name() suffice?

Many thanks for any help.

Faheem
  • 1,423
  • 2
  • 13
  • 22
  • 1
    ok I just found out about name mangling! It seems even using RTN_Name() should suffice then! – Faheem Oct 16 '13 at 12:56
  • 1
    consider answering your own question for posterity's sake. You might even get upvotes from people. – nitzanms Apr 17 '14 at 14:57

1 Answers1

1

Ok I just found out about name mangling! Apparently C/C++ uses name mangling, and so it seems that even using RTN_Name() should suffice then!

Jeff
  • 12,555
  • 5
  • 33
  • 60
Faheem
  • 1,423
  • 2
  • 13
  • 22