On i386 Windows, after C++ names have been Itanium-mangled, the C name
mangling specific to its call convention may also be applied on top.
This change teaches symbolizer to be able to demangle this type of
mangled names.
As part of this change, demanglePE32ExternCFunc has also been modified
to fix unwanted stripping for vectorcall names when the demangled name
is supposed to contain a leading _. Notice that the vectorcall
mangling does not add either an _ or @ prefix. The old code always
tries to strip the prefix first, which for Itanium mangled names in
vectorcall, the leading underscore of the Itanium name gets stripped
instead and breaks the Itanium demangler.
I see that the demanglePE32ExternCFunc function is restructured a fair bit here, but I kinda fail to see exactly what the intent is - is this a functional change, and in what cases does it change the output/behaviour?