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.

learn more… | top users | synonyms

2
votes
1answer
49 views

Symbol name generated has additional leading underscore

I am having a MinGW compiler setup in windows. and having project setup where some third party *.a files are directly copied from Linux machine. Tried compiling a simple C program and when I look ...
0
votes
0answers
42 views

Create an MSVC library that MinGW can link

I'm trying to create a static library using MS Visual Studio 2012 that MinGW will be able to link to (I'm handling the MinGW-side of this process with Code::Blocks). To avoid name-mangling problems, ...
0
votes
0answers
51 views

Can I rewrite this boost interprocess set of typedefs and avoid the name length exceeded warning in vc 2008?

Is this warning about name length always harmless? If not, how do I know if I'm in trouble? One lovely thing in C++ type manging is when name length is exceeded. The linked question shows how to ...
2
votes
0answers
54 views

Best way to access name mangled names in Python outside the class

I would like to use a name mangled name in Python, to avoid subclasses from accessing the attribute. I know I can just do _classname__attributename, but according to ...
2
votes
2answers
100 views

Can I change mangled C++ DLL export symbols? (Binary-compatible but Source-incompatible)

Our C++ project (still) uses the option Treat wchar_t as Built-in: No (/Zc:wchar_t-) from back in the days when it was compiled on VS6. This results in wchar_t being just a typedef for unsigned short ...
0
votes
1answer
76 views

Universal name demangling [closed]

I'm implementing a little function which purpose is to demangle type names, but for now demangles only gcc names: #include <typeinfo> #include <string> #include <iostream> #ifdef ...
4
votes
1answer
147 views

Why mangled names found within an exe?

I have an MS C/C++ statically linked release exe (no debug info on it), that does not export any symbol, but when browsing it with a hex viewer I see things like .?AVElxInterface@@ ...
2
votes
1answer
50 views

Name mangling in linux sparc so library

I ve got some sparc libraries and I want to have list of exporting function with real names. Using objdump or nm I get names like __1cEnameIcopyType6MpnIASN1CTXT_rnLAsn1TObject_4_v_ or ...
2
votes
1answer
79 views

C++ name mangling in a so

Here's what i did: I changed a .h file from SomeObj* getCacheObj( int i = 0 ); to SomeObj* getCacheObj( int i ); SomeObj* getCacheObj(); I recompiled the code (no problems), the changes went ...
0
votes
3answers
84 views

Wrong function name mangling

I have a static library exporting the function time_t SomeClass::getTime(); After compilation its name is mangled as ?getTime@SomeClass@@QAE_JXZ When I try to use it, VS returns an error error ...
2
votes
1answer
92 views

What does the GCC function suffix “isra” mean?

While profiling a program compiled with gcc, I noticed functions like foo.isra.3. What does isra indicate? I notice that one of the functions is only called in a few places, and one of the arguments ...
1
vote
2answers
82 views

extern const linkage specification being seemingly ignored by G++

I have a situation building a C codebase with a C++ compiler that parallels this: lib.h extern int const values[2] = {1, 2}; lib.c #include "lib.h" main.c #include <iostream> extern int ...
3
votes
1answer
72 views

Visual Studio Name Mangling “YAPEAV” and Mysql connector

I'm getting unresolved external symbol error when linking my code with MySQL Connector C++ 1.1.0. Here's the error message: 6>database.lib(db_manager.obj) : error LNK2019: unresolved external ...
3
votes
1answer
520 views

OpenCV Unresolved symbols - name mangling mismatch - xcode

I built the i386 flavor of OpenCV locally on my Macbook running Lion, by using cmake -G "Unix Makefiles" -D CMAKE_OSX_ARCHITECTURES=i386 -D CMAKE_C_FLAGS=-m32 -D CMAKE_CXX_FLAGS=-m32 .. make -j8 ...
0
votes
0answers
61 views

c++ name mangling with namespace

I have a method defined in a dll: class __declspec(dllexport) CWindowsServiceUpdate { public: virtual bool UpdateWindowsService(const CString& serviceName, std::tr1::function<CString ()> ...
3
votes
1answer
273 views

64bit name mangling for c++

I have a bit of code which has the following line #pragma comment(linker, "/include:_test@12") The project which uses this code works fine when I compile the code using C++ Visual Studio 2010 ...
9
votes
2answers
319 views

C++ template-argument dependent decltype in ABI mangled name

Consider the following function: template <typename A, typename B> auto Min(A&& a, B&& b) -> decltype(a < b ? std::forward<A>(a) : std::forward<B>(b)) ...
3
votes
2answers
109 views

Preventing mangled names in Ada DLL

Is there a simple way to prevent Ada names from getting mangled when creating an Ada DLL? Here is my .adb code with Ada.Text_IO; package body testDLL is procedure Print_Call is begin ...
0
votes
5answers
186 views

Manual name mangling in C

I would like to implement some kind of name mangling for a C interface. I will have functions and types like struct Foo; struct Foo* Foo_create(struct Bar* bar); void Foo_destroy(struct Foo* obj); ...
6
votes
1answer
338 views

How to demangle names in Visual Studio assembler output?

Using Visual Studio 2010/2012, one can compile a c++ source file with the /FAs switch to generate the assembly output of the resulting code. But the generated asm file contains all symbols in their ...
0
votes
2answers
55 views

How variables defined in __init__ of Thread module get renamed to _Thread_<variable name>

I am going through the code of threading module(<Python Home>/lib/threading.py) on Active python 2.7.2 32 bit for Windows. In the __init__ function of the class Thread, there are many variables ...
2
votes
1answer
78 views

Name mangaling of static objects

I came across this article on dynamic linking in C++. We can create a C++ factory which would return an object of the class we are interested. Also, we should create a static object in file scope for ...
1
vote
2answers
179 views

unresolved external symbol due to name mangling

I am facing linker error for a XERCES function while upgrading it from 2.6 to 2.8 unresolved external symbol (?resolveEntity@HandlerBase@xercesc_2_8@@UAEPAVInputSource@2@QBG0@Z) I checked the ...
0
votes
2answers
193 views

Intel Visual Fortran Compiler name mangling, is my compiler just being crazy?

I am using Intel Visual Fortran Composer XE 2011 to build my Fortran project in MS Visual Studio 2008. I am getting linker errors: LNK2019 unresolved external symbol. I did a dumpbin on my obj files ...
5
votes
1answer
357 views

Getting mangled name from demangled name [g++]

Is there any way to get back the mangled name from demangled name in g++. For example I have the demangled name func(char*, int), what should I do to get the mangled name i.e _Z4funcPci back? My ...
3
votes
2answers
153 views

Using C++ mangled functions from C

I have a .lib file, source code of which I don't have. I need an exported function from it, but I'm writing in C, and the function is C++ name-mangled. I can't write extern "C", because I don't have ...
0
votes
1answer
217 views

How to use audiere dll with MinGW

I am building a project using wxWidgets compiled with MinGW g++ compiler. I was also using a component of the wxWidgets platform to play mp3 sound clips, but it has been unreliable so I went looking ...
2
votes
2answers
378 views

String Mangling in C/C++

I'm searching for a way to do string mangling in C/C++. The requirements for the software is that no plain text strings exist(No encryption needed, just mangling) and I'm attmping to figure out the ...
1
vote
3answers
80 views

Symbols in C++ – are they exported in non-debug build?

C++ mangles symbol names. The names can then be used when debugging – but only, if binary is not stripped. Other use scenario is shared library – the symbol names may be exported and visible in the ...
0
votes
1answer
252 views

Get name mangling when I try to use exceptions [CodeBlocks, C++]

I am trying to use exceptions for the first time but even though it is quite a simple example I just cannot get it to compile, I have looked at several examples and tried coding it in many, many ...
7
votes
4answers
363 views

Dealing with C library anonymous struct types in C++

We have a big, old C++ application with a lot of legacy code and a few external libraries written in C. These libraries are very rarely updated - only if we find a bug and the vendor supplies a patch. ...
-3
votes
1answer
194 views

Name mangling in an exported c++ member function to C# (Unity) [duplicate]

Possible Duplicate: C++ plugin for Unity “EntryPointNotFoundExeption” I understand how to prevent name mangling with extern "C" on individual functions in c++, but is there any ...
0
votes
0answers
175 views

Exception - EntryPoint for <function> not found in the dll

I've created a C++ DLL which I import to C# application to re-use a function. the function code in C++ is static bool IsDisplayDeviceAttached(char *Arg1[]) When I use DllImport as below in C# ...
0
votes
1answer
1k views

how to use DumpBin.exe for getting mangled names

Hi I've created a C++ DLL which I import to C# application to re-use a function. the function code in C++ is static bool IsSomethingAttached(char *Arg1[]) When I use DllImport as below in C# program, ...
5
votes
1answer
264 views

Python name mangling function

Is there a function in the Python standard library to reproduce Python's name mangling scheme with a "private" attribute name? It seems like there would be, but I can't find it for the life of me. I ...
1
vote
2answers
534 views

Avoid name mangling on a shared object C interface under linux

Under windows we have a C interface (extern "C" { // interface }) to our C++ library, that exports unmangled functions using a module definition file (.def). I am trying to recreate the same thing ...
8
votes
1answer
325 views

CUDA Driver API and Function Mangling

I have a project that requires C++11, so I separate the files into two categories: those that use C++11, and those that use C++03 and hence are compatible with the nvcc compiler. When I have a kernel ...
5
votes
2answers
491 views

Why is name mangling not standardized

I'm just wondering why name mangling was never standardized by the c++ standard. Clearly having different name mangling algorithms hurts interopability[1] and I don't see any advantage of having it ...
0
votes
1answer
60 views

Name mangling in existing libs - conflict

We have a lot of compiled C++ tools including some statically linked C++ libraries. We had extended some libs and of course recompiled it -> now the newer dll's are not compatible with the older C++ ...
0
votes
0answers
100 views

java library for C++ name mangling/demangling?

(similar to this question: C++ Name Mangling Library for Python) I'm trying to experiment with some static analysis tools in Java that operate on C++ disassembly. I know there's "c++filt", but I'd ...
6
votes
1answer
315 views

Can objdump un-mangle names of C++ template functions?

I have a C++ object file that contains instantiations of some C++ template functions. The object file in question instantiates the same function for a few different combinations of template ...
2
votes
3answers
837 views

How to undecorate name from decorated name?

At a post of Raymond Chen, he seems to be able to know the function's undecorated name from the decorated name. I have no idea how could he do this. In this decorated name, ...
0
votes
1answer
57 views

Should use “__imp__ApiName@N” or “_ApiName@N”?

I have dumped a Windows SDK .lib file (kernel32.lib) with DUMPBIN, the output show me that there are two "versions" for every API name, for example: _imp_ExitProcess@4 and _ExitProcess@4 So, why ...
2
votes
4answers
578 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 ...
3
votes
3answers
951 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): ...: ...
1
vote
1answer
365 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 ...
2
votes
2answers
292 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 ...
1
vote
1answer
535 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 ...
2
votes
6answers
2k 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 ...
6
votes
2answers
598 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 ...

1 2 3