Tagged Questions
Name-mangling is a technique used by compilers (mainly C++ compilers) to encode information in strings that can be supported by linkers designed to handle C code.
33
votes
10answers
13k views
Why do we need extern “C”{ #include <foo.h> } in C++?
Specifically:
When should we use it?
What is happening at the compiler/linker level that requires us to use it?
How in terms of compilation/linking does this solve the problems which require us ...
32
votes
7answers
16k views
How do I list the symbols in a .so file
How do list the symbols being exported from a .so file. If possible, I'd also like to know their source (e.g. if they are pulled in from a static library).
I'm using gcc 4.0.2, if that makes a ...
24
votes
6answers
6k views
what does extern “C” in C++ source?
I was wondering what exactly putting 'extern "C"' in your C++ program does.
like in :
extern "C" {
void foo();
}
12
votes
5answers
1k views
What is name mangling, and how does it work?
Please explain what is name mangling, how it works, what problem it solves, and in which contexts and languages is used. Name mangling strategies (e.g. what name is chosen by the compiler and why) a ...
11
votes
10answers
3k views
Unmangling the result of std::type_info::name
I'm currently working on some logging code that supposed to - among other things - print information about the calling function. This should be relatively easy, standard C++ has a type_info class. ...
10
votes
3answers
5k views
Scala: How do I dynamically instantiate an object and invoke a method using reflection?
In Scala, what's the best way to dynamically instantiate an object and invoke a method using reflection?
I would like to do Scala-equivalent of the following Java code:
Class class = ...
9
votes
2answers
655 views
8
votes
1answer
115 views
Demangling typeclass functions in GHC profiler output
When profiling a Haskell program written in GHC, the names of typeclass functions are mangled in the .prof file to distinguish one instance's implementations of them from another. How can I demangle ...
8
votes
5answers
301 views
Difference in linkage between C and C++?
I have read the existing questions on external/internal linkage over here on SO. My question is different - what happens if I have multiple definitions of the same variable with external linkage in ...
7
votes
4answers
1k views
questions about name mangling in C++
I am trying to learn and understand name mangling in C++. Here are some questions:
(1) From devx
When a global function is overloaded, the generated mangled name for each overloaded version is ...
6
votes
2answers
127 views
VC++ prevent all symbol name decorations
I'm working on a DLL which will be used from another language (so no import libs and including the dll's headers) using the _stdcall calling convetion. The problem is that VC++ seems to always do some ...
6
votes
3answers
4k views
typeid() returns extra characters in g++
class foo
{
public:
void say_type_name()
{
std::cout << typeid(this).name() << std::endl;
}
};
int main()
{
foo f;;
f.say_type_name();
}
Above code prints P3foo on my ...
5
votes
2answers
492 views
C++ get the mangled names of a function/method
Hi I need to determine the mangled name of a function from within an c++ app itself.
Is there any equivalent to the __FUNCDNAME__ macro in g++ ?
5
votes
2answers
727 views
Can I ungarble GCC's RTTI names?
Using gcc, when I ask for an object/variable's type using typeid, I get a different result from the type_info::name method from what I'd expect to get on Windows. I Googled around a bit, and found out ...
5
votes
2answers
1k views
How can I see symbols of (C and C++) binary on linux?
Which tools do you guys use? How do demangle c++ symbols do be able to pass it to profiler tools, such as opannotate?
Thanks
5
votes
4answers
1k views
What is the benefit of private name mangling in Python?
Python provides private name mangling for class methods and attributes.
Are there any concrete cases where this feature is required, or is it just a carry over from Java and C++?
Please describe a ...
5
votes
6answers
995 views
View Compiler Mangled Names in C++
How do I view the compiler-generated mangled names for overloaded functions in C++? I'm using VC9 but answers for other compilers are welcome too.
Edit: I find all the answers useful here. Accepting ...
4
votes
1answer
296 views
Mangling/Exporting Problem with Mingw
I'm working on a shared C++ DLL using Netbeans and MinGW under Windows.
My first question is: will mangling be different between MinGW and Microsoft Visual C++?
I read that mangling is compiler ...
4
votes
3answers
325 views
Is C++ name mangling (decoration) deterministic?
I hope to LoadLibrary on an unmanaged C++ DLL with managed code, and then call GetProcAddress on extern functions which have been mangled. My question is are the mangled names you get from a C++ ...
4
votes
2answers
259 views
How do I unmangle Windows filenames in Java?
From Java, I'm extracting an executable into a location specified using File.createTempFile(). When I try to run my executable, my program hangs when it tries to read the first line of output.
I ...
4
votes
3answers
1k views
Python: dynamic class generation: overwrite members
I have a python class hierarchy, that I want to extend at runtime. Furthermore every class in this hierarchy has a static attribute 'dict', that I want to overwrite in every subclass. Simplyfied it ...
4
votes
3answers
2k views
Is there a way to suppress c++ name mangling?
I have a DLL that is written in C++ and I want to suppress the name mangling for a few exported methods. The methods are global and are not members of any class. Is there a way to achieve this?
BTW: ...
3
votes
2answers
1k views
stdcall name mangling using extern c and dllexport vs module definitions (msvc++)
I was trying to export a simple test function for a dll to work with an application (fyi: mIRC) that specifies the calling convention as:
int __stdcall test_func(HWND mWnd, HWND aWnd, char *data, ...
3
votes
2answers
406 views
g++ template name mangling
I need to use the address of a member of a template class in g++ inline assembly (as a compile-time constant value). Is it possible to express this? (I think that I need the mangled name of ...
3
votes
1answer
128 views
Convert symbol in Classname::FunctionName( Para1, Para2 )
I'm using the GNU extension "char** backtrace_symbols(void *buffer, int size)" to get the stack trace, when an exception is thrown. Is there a library function which converts the symbol into a "human ...
3
votes
1answer
711 views
g++: How to unmangle exported symbols
I'm trying to compile a Java library that uses JNI. When I start the program, I see a crash with an UnsatisfiedLinkError, which says that a particular method could not be found in the DLL.
On closer ...
3
votes
2answers
790 views
How to make gdb show the orignal non-mangling function name on diassembly model?
void outputString(const char *str) {
cout << "outputString(const char *str) : " << str << endl;
}
turns out to be
Dump of assembler code for function _Z12outputStringPKc:
...
3
votes
3answers
669 views
Is there anything to change the exports name mangling scheme in GCC?
I'm trying to build a project I have and it has several exported functions. The functions follow the stdcall convention and they get mangled if compiled with GCC as
Func@X
Other compilers mangle ...
3
votes
2answers
291 views
How can I truncate the mangled C++ identifiers shown by GDB's disassemble command?
GDB's disassemble command is nice for short C identifiers, e.g. main. For long, mangled C++ identifiers the verbosity is overkill. For example, using icpc I see results like
(gdb) disassemble ...
3
votes
4answers
2k views
Where is documentation on the Microsoft Visual Studio C++ Name Mangling Scheme?
I am interested in finding either official or reverse engineered documentation detailing the name mangling scheme used by the Visual Studio C++ Compiler to translate C++ names into symbols in ...
3
votes
5answers
5k views
OSX 10.5 Leopard Symbol Mangling with $non_lazy_ptr
Why does Leopard mangle some symbols with $non_lazy_ptr? More importantly what is the best method to fix undefined symbol errors because a symbol has been mangled with $non_lazy_ptr?
2
votes
4answers
111 views
Can't prevent name mangling
I am trying to build a dll written in C and which will be imported by other programs also written in C.
So all the function that the dll is exporting are defined in a .dll "without ...
2
votes
3answers
210 views
python How to create private class variables using setattr or exec?
I've just run into a situation where pseudo-private class member names aren't getting mangled when using setattr or exec.
In [1]: class T:
...: def __init__(self, **kwargs):
...: ...
2
votes
2answers
127 views
Compiler agnostic fortran name mangling function
I am dynamically linking to a fortran static object and need to be able (at run time) to take the name of the fortran function (which is a C++ string) and name mangle it appropriately for the ...
2
votes
2answers
440 views
Prevent name mangling in C (not C++) with MinGW for dynamic symbol search
I have a C program where I get function pointers "dynamically" by the function name (ie. I pass the function name as a string and get a pointer to the function). I already do this in Linux using ...
2
votes
4answers
467 views
C++ name mangling by hand
I am writing a script for the IDA Pro disassembler in Python using the idapython plugin. Using this, I am able to fill in the gaps where IDA's auto-analysis falls short.
One area that has me stumped ...
2
votes
3answers
217 views
Exported function symbol name mangling
I have a D DLL that is being loaded by a C++ program that I have no control over. The program LoadLibrarys my DLL and uses GetProcAddress to find a function named "extension_load" that takes one ...
2
votes
4answers
132 views
Is ASP.NET name-mangling consistent?
When you have an ASP control like this:
<asp:TreeView ID="TreeItems" runat="server"></asp:TreeView>
The html that it generates mangles the names. If I want to access the ids of the ...
2
votes
1answer
181 views
Seeking STL-aware c++filt
In my development environment, I'm compiling a code base using GNU C++ 3.4.6. Code is under development, and unfortunately crashes now and then. It's nice to be able to run the traceback through a ...
2
votes
3answers
647 views
Compiler Generated Cruft
I am attempting to recover source from an assembly using Reg Gate's Reflector. The original source took advantage of several C# 3.0 features which has made it a little difficult to recover. For ...
2
votes
1answer
494 views
undecorate function names with visual studio sdk
To undecorate mangled C++ names that Visual Studio generates, you can use undname.exe.
But what if you want to avoid the overhead of creating a full-blown process every time you need undecoration?
...
2
votes
4answers
583 views
Delphi - unmangle names in BPL's
Is it possible to unmangle names like these in Delphi?
If so, where do I get more information?
Example of an error message where it cannot find a certain entry in the dbrtl100.bpl
I want to know ...
2
votes
4answers
3k views
How do I stop name-mangling of my DLL's exported function?
I'm trying to create a DLL that exports a function called "GetName". I'd like other code to be able to call this function without having to know the mangled function name.
My header file looks like ...
2
votes
2answers
741 views
Generating C++ BackTraces in OS/X (10.5.7)
I've been utilizing backtrace and backtrace_symbols to generate programmatic stack traces for the purposes of logging/diagnosis. It seems to roughly work, however, I'm getting a little bit of ...
2
votes
6answers
3k views
C++ : Finding out decorated names
How can I find out the decorated name that will be asigned to each method name ? I'm trying to find out what the decorated name is , so that I may export it , in a DLL .
1
vote
1answer
103 views
Visual C++ 6.0 Name mangling, even within extern “C” and dllexport, RPC Stubs not generating
Hey guys im working on creating a new function in legacy visual C++ 6.0 dll project, so that a C# dll can call into, however i unable to do so due to name mangling and it seems no matter what I do I ...
1
vote
1answer
229 views
using 3rd party library (libconfig) with Qt (C++)
I'm having trouble getting a third party library (libconfig++) to work in Qt.
When compiling in Qt, I get error messages such as:
undefined reference to `_imp___ZN9libconfig6ConfigC1Ev'
undefined ...
1
vote
5answers
246 views
How to handle elements ID when using jQuery and ASP.NET user controls
I have some user controls in ASP.NET that I am using as simply HTML, that is, without any code-behind.
I one control I have an element with a fixed ID and I am pointing it with some jQuery client ...
1
vote
3answers
184 views
Does static library avoids name mangling issues?
I have a C++\MFC application written in Visual Studio 2003 SP1 links to an external static library "SomeExtStaticLib.lib". I also include the header files provided with "SomeExtStaticLib.lib" to ...
1
vote
0answers
96 views
Radstudio name mangling for a Visual Studio DLL
I am attempting to use import a new DLL written in Visual Studio 2010 to a Rad Studio 2010 executable. __declspec(dllexport) does not seem to allow the Rad Studio exectuable to declare a class from ...