File: demangle-cxx.cpp

package info (click to toggle)
linux 6.12.43-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,676,260 kB
  • sloc: ansic: 25,921,022; asm: 269,579; sh: 136,424; python: 65,440; makefile: 55,721; perl: 37,752; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (49 lines) | stat: -rw-r--r-- 1,300 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-License-Identifier: GPL-2.0
#include "demangle-cxx.h"
#include <stdlib.h>
#include <string.h>
#include <linux/compiler.h>

#ifdef HAVE_LIBBFD_SUPPORT
#define PACKAGE 'perf'
#include <bfd.h>
#endif

#ifdef HAVE_CXA_DEMANGLE_SUPPORT
#include <cxxabi.h>
#endif

#if defined(HAVE_LIBBFD_SUPPORT) || defined(HAVE_CPLUS_DEMANGLE_SUPPORT)
#ifndef DMGL_PARAMS
#define DMGL_PARAMS     (1 << 0)  /* Include function args */
#define DMGL_ANSI       (1 << 1)  /* Include const, volatile, etc */
#endif
#endif

/*
 * Demangle C++ function signature
 *
 * Note: caller is responsible for freeing demangled string
 */
extern "C"
char *cxx_demangle_sym(const char *str, bool params __maybe_unused,
                       bool modifiers __maybe_unused)
{
#ifdef HAVE_LIBBFD_SUPPORT
        int flags = (params ? DMGL_PARAMS : 0) | (modifiers ? DMGL_ANSI : 0);

        return bfd_demangle(NULL, str, flags);
#elif defined(HAVE_CPLUS_DEMANGLE_SUPPORT)
        int flags = (params ? DMGL_PARAMS : 0) | (modifiers ? DMGL_ANSI : 0);

        return cplus_demangle(str, flags);
#elif defined(HAVE_CXA_DEMANGLE_SUPPORT)
        char *output;
        int status;

        output = abi::__cxa_demangle(str, /*output_buffer=*/NULL, /*length=*/NULL, &status);
        return output;
#else
        return NULL;
#endif
}