“__cxa_demangle”中的“cxa”前缀是什么意思?

anz*_*cha 5 c++ linux prefix

我有一段代码,在其中我看到了__cxa_前缀。例如,以下摘录包含它:

    std::unique_ptr<char, void (*)(void *)> own(
#ifndef _MSC_VER
            abi::__cxa_demangle(typeid(TR).name(), nullptr,
                                nullptr, nullptr),
#else
            nullptr,
#endif
            std::free
    );
Run Code Online (Sandbox Code Playgroud)

我很乐意对 的含义进行一些解释cxa

For*_*veR 3

它只是函数名称,但可能是CXxAbi.