<p dir="ltr">I'm reading <a href="http://mentorembedded.github.io/cxx-abi/abi.html#mangling">http://mentorembedded.github.io/cxx-abi/abi.html#mangling</a> on how to mangle C++ names. I believe that's the base for Gnu/Linux and thus how Clang handles it?</p>

<p dir="ltr">It describes vendor specific types being encoded with a starting v, a digit, and a type. It appears that vector types are being encoded by clang++ with this scheme or something similar, like v2_i. I have a situation where I'm defining my own vector types and care about how the names are being mangled. Is there any official documentation on how these names are generated? Or is the working specification in libcxxabi's cxa_demangle?</p>

<p dir="ltr">Thanks,<br>
Matthew<br>
</p>