blob: 5b9dcfc0a05ab7cd6ea5cf06225538811ab8f445 [file] [log] [blame]
Petr Machatae99af272012-10-26 00:29:52 +02001/*
2 * This file is part of ltrace.
Petr Machata98ff3092013-03-08 22:11:36 +01003 * Copyright (C) 2012,2013 Petr Machata, Red Hat Inc.
Petr Machatae99af272012-10-26 00:29:52 +02004 * Copyright (C) 1998,1999,2003,2004,2008,2009 Juan Cespedes
5 * Copyright (C) 2006 Ian Wienand
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
Juan Cespedesac3db291998-04-25 14:31:58 +020023#include "config.h"
Juan Cespedesac3db291998-04-25 14:31:58 +020024
Juan Cespedesac3db291998-04-25 14:31:58 +020025#include <string.h>
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020026#include <stdlib.h>
27#include <stdio.h>
Juan Cespedesac3db291998-04-25 14:31:58 +020028
Petr Machata3ac8db62012-11-23 18:43:10 +010029#include "demangle.h"
30#include "dict.h"
31#include "debug.h"
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020032
Juan Cespedesd914a202004-11-10 00:15:33 +010033#ifdef USE_DEMANGLE
34
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020035/*****************************************************************************/
36
Petr Machatad7e4ca82012-11-28 03:38:47 +010037static struct dict *name_cache = NULL;
Juan Cespedescac15c32003-01-31 18:58:58 +010038
Juan Cespedesf1350522008-12-16 18:19:58 +010039const char *
40my_demangle(const char *function_name) {
Petr Machatacdd17b82012-06-01 19:35:24 +020041#ifdef USE_CXA_DEMANGLE
Ian Wienand2d45b1a2006-02-20 22:48:07 +010042 extern char *__cxa_demangle(const char *, char *, size_t *, int *);
Juan Cespedesd914a202004-11-10 00:15:33 +010043#endif
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020044
Juan Cespedescd8976d2009-05-14 13:47:58 +020045 debug(DEBUG_FUNCTION, "my_demangle(name=%s)", function_name);
46
Petr Machatad7e4ca82012-11-28 03:38:47 +010047 if (name_cache == NULL) {
48 name_cache = malloc(sizeof(*name_cache));
49 if (name_cache != NULL)
Peter Wu97485502013-09-26 00:55:56 +020050 DICT_INIT(name_cache, char *, const char *,
Petr Machatad7e4ca82012-11-28 03:38:47 +010051 dict_hash_string, dict_eq_string, NULL);
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020052 }
Petr Machatad7e4ca82012-11-28 03:38:47 +010053
Petr Machata98ff3092013-03-08 22:11:36 +010054 const char *tmp = NULL;
55 if (name_cache != NULL
56 && DICT_FIND_VAL(name_cache, &function_name, &tmp) == 0)
57 return tmp;
Petr Machatad7e4ca82012-11-28 03:38:47 +010058
59#ifdef HAVE_LIBIBERTY
Petr Machata98ff3092013-03-08 22:11:36 +010060 tmp = cplus_demangle(function_name,
Petr Machatad7e4ca82012-11-28 03:38:47 +010061 DMGL_ANSI | DMGL_PARAMS);
62#elif defined USE_CXA_DEMANGLE
63 int status = 0;
Petr Machata98ff3092013-03-08 22:11:36 +010064 tmp = __cxa_demangle(function_name, NULL, NULL, &status);
Petr Machatad7e4ca82012-11-28 03:38:47 +010065#endif
66 if (name_cache == NULL || tmp == NULL) {
67 fail:
68 if (tmp == NULL)
69 return function_name;
70 return tmp;
71 }
72
73 const char *fn_copy = strdup(function_name);
74 if (fn_copy == NULL)
75 goto fail;
76
77 if (DICT_INSERT(name_cache, &fn_copy, &tmp) < 0) {
78 free((char *)fn_copy);
79 goto fail;
80 }
81
Juan Cespedes1b9cfd61999-08-30 19:34:50 +020082 return tmp;
Juan Cespedesac3db291998-04-25 14:31:58 +020083}
84
85#endif