/* * Copyright (C) 2023 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include namespace unwindstack { static std::string Demangle(const char* name, size_t length) { if (length < 2 || name[0] != '_') { return name; } char* demangled_str = nullptr; if (name[1] == 'Z') { // Try to demangle C++ name. demangled_str = abi::__cxa_demangle(name, nullptr, nullptr, nullptr); } else if (name[1] == 'R') { // Try to demangle rust name. demangled_str = rustc_demangle(name, nullptr, nullptr, nullptr); } if (demangled_str == nullptr) { return name; } std::string demangled_name(demangled_str); free(demangled_str); return demangled_name; } std::string DemangleNameIfNeeded(const std::string& name) { // This is special, the Android linker has functions of the form __dl_XXX, // where the XX might be a mangled name. Try to demangle that part and // add the __dl_ back. if (name.starts_with("__dl_")) { return "__dl_" + Demangle(&name[5], name.length() - 5); } return Demangle(name.c_str(), name.length()); } } // namespace unwindstack