1 | \chapter{\CFA Demangler} \label{demangler} |
---|
2 | |
---|
3 | \section{Introduction} |
---|
4 | While \CFA is a translator for additional features that C does not support, |
---|
5 | all the extensions compiled down to C code. As a result, the executable file |
---|
6 | marks the DWARF tag \verb|DW_AT_language| with the fixed hexadecimal value for |
---|
7 | the C language. Because it is possible to have one frame in C code and another |
---|
8 | frame in Assembly code, GDB encodes a language flag for each frame. \CFA adds |
---|
9 | to this list, as it is essential to know when a stack frame contains mangled |
---|
10 | names versus C and assembler unmangled names. Thus, GDB must be told \CFA is a |
---|
11 | distinct source-language. |
---|
12 | |
---|
13 | \section{Design Constraints} |
---|
14 | Most GDB targets use the DWARF format. The GDB DWARF reader initializes all |
---|
15 | the appropriate information read from the DIE structures in object or |
---|
16 | executable files, as mentioned in Chapter \ref{GDB}. However, GDB currently |
---|
17 | does not understand the new DWARF language-code assigned to the language \CFA, |
---|
18 | so the DWARF reader must be updated to recognize \CFA. |
---|
19 | |
---|
20 | Additionally, when a user enters a name into GDB, GDB needs to lookup if the |
---|
21 | name exists in the program. However, different languages may have different |
---|
22 | hierarchical structure for dynamic scope, so an implementation for nonlocal |
---|
23 | symbol lookup is required, so an appropriate name lookup routine must be added. |
---|
24 | |
---|
25 | \section{Implementation} |
---|
26 | Most of the implementation work discussed below is from reading GDB's internals |
---|
27 | wiki page and understanding how other languages are supported in GDB \cite{Reference5}. |
---|
28 | |
---|
29 | A new entry is added to GDB's list of language definition in |
---|
30 | \verb|gdb/defs.h|. Hence, a new instance of type \verb|struct language_def| |
---|
31 | must be created to add a language definition for \CFA. This instance is the |
---|
32 | entry point for new functions that are only applicable to \CFA. These new |
---|
33 | functions are invoked by GDB during debugging if there are operations that are |
---|
34 | applicable specifically to \CFA. For instance, \CFA can implement its own |
---|
35 | symbol lookup function for non-local variables because \CFA can have a |
---|
36 | different scope hierarchy. The final step for registering \CFA in GDB, as a |
---|
37 | new source language, is adding the instance of type \verb|struct language_def| |
---|
38 | into the list of language definitions, which is found in |
---|
39 | \verb|gdb/language.h|. This setup is shown in listing \ref{cfa-lang-def}. |
---|
40 | |
---|
41 | \begin{figure} |
---|
42 | \begin{lstlisting}[style=C++, caption={Language definition declaration for |
---|
43 | \CFA}, label={cfa-lang-def}, basicstyle=\small] |
---|
44 | // In gdb/language.h |
---|
45 | extern const struct language_defn cforall_language_defn; |
---|
46 | |
---|
47 | // In gdb/language.c |
---|
48 | static const struct language_defn *languages[] = { |
---|
49 | &unknown_language_defn, |
---|
50 | &auto_language_defn, |
---|
51 | &c_language_defn, |
---|
52 | ... |
---|
53 | &cforall_language_defn, |
---|
54 | ... |
---|
55 | } |
---|
56 | |
---|
57 | // In gdb/cforall-lang.c |
---|
58 | extern const struct language_defn cforall_language_defn = { |
---|
59 | "cforall", /* Language name */ |
---|
60 | "CForAll", /* Natural name */ |
---|
61 | language_cforall, |
---|
62 | range_check_off, |
---|
63 | case_sensitive_on, |
---|
64 | ... |
---|
65 | cp_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */ |
---|
66 | ... |
---|
67 | cforall_demangle, /* Language specific demangler */ |
---|
68 | cforall_sniff_from_mangled_name, |
---|
69 | .. |
---|
70 | } |
---|
71 | \end{lstlisting} |
---|
72 | \end{figure} |
---|
73 | |
---|
74 | The next step is updating the DWARF reader, so the reader can translate the |
---|
75 | DWARF code to an enum value defined above. However, this assumes that the |
---|
76 | language has an assigned language code. The language code is a hexadecimal |
---|
77 | literal value assigned to a particular language, which is maintained by |
---|
78 | GCC. For \CFA, the hexadecimal value \verb|0x0025| is added to |
---|
79 | \verb|include/dwarf2.h| to denote \CFA, which is shown in listing |
---|
80 | \ref{cfa-dwarf}. |
---|
81 | \begin{lstlisting}[style=C++, caption={DWARF language code for \CFA}, |
---|
82 | label={cfa-dwarf}, basicstyle=\small] |
---|
83 | // In include/dwarf2.h |
---|
84 | enum dwarf_source_language { // Source language names and codes. |
---|
85 | DW_LANG_C89 = 0x0001, |
---|
86 | ... |
---|
87 | DW_LANG_CForAll = 0x0025, |
---|
88 | } |
---|
89 | \end{lstlisting} |
---|
90 | |
---|
91 | Once the demangler implementation goes into the \verb|libiberty| directory |
---|
92 | along with other demanglers, the demangler can be called by updating the |
---|
93 | language definition defined in listing \ref{cfa-lang-def} with the entry point |
---|
94 | of the \CFA demangler, and adding a check if the current demangling style is |
---|
95 | \verb|CFORALL_DEMANGLING| as seen in listing \ref{cfa-demangler}. GDB then |
---|
96 | automatically invokes this \CFA demangler when GDB detects the source language |
---|
97 | is \CFA. In addition to the automatic invocation of the demangler, GDB provides |
---|
98 | an option to manually set which demangling style to use in the command line |
---|
99 | interface. This option can be turned on for \CFA in GDB by adding a new enum |
---|
100 | value for \CFA in the list of demangling styles along with setting the |
---|
101 | appropriate mask for this style in \verb|include/demangle.h|. After doing this |
---|
102 | step, users can now choose if they want to use the \CFA demangler in GDB by |
---|
103 | calling \verb|set demangle-style <language>|, where the language name is |
---|
104 | defined by the preprocessor macro \verb|CFORALL_DEMANGLING_STYLE_STRING| in |
---|
105 | listing \ref{cfa-demangler-style}. |
---|
106 | |
---|
107 | \begin{figure} |
---|
108 | \begin{lstlisting}[style=C++, caption={libiberty setup for the \CFA demangler}, |
---|
109 | label={cfa-demangler}, basicstyle=\small] |
---|
110 | // In libiberty/cplus-dem.c |
---|
111 | const struct demangler_engine libiberty_demanglers[] = { |
---|
112 | { |
---|
113 | NO_DEMANGLING_STYLE_STRING, |
---|
114 | no_demangling, |
---|
115 | "Demangling disabled" |
---|
116 | }, |
---|
117 | ... |
---|
118 | { |
---|
119 | CFORALL_DEMANGLING_STYLE_STRING, |
---|
120 | cforall_demangling, |
---|
121 | "Cforall style demangling" |
---|
122 | }, |
---|
123 | } |
---|
124 | ... |
---|
125 | char * cplus_demangle(const char *mangled, int options) { |
---|
126 | ... |
---|
127 | /* The V3 ABI demangling is implemented elsewhere. */ |
---|
128 | if (GNU_V3_DEMANGLING || RUST_DEMANGLING || AUTO_DEMANGLING) { ... } |
---|
129 | ... |
---|
130 | if (CFORALL_DEMANGLING) { |
---|
131 | ret = cforall_demangle (mangled, options); |
---|
132 | if (ret) { return ret; } |
---|
133 | } |
---|
134 | } |
---|
135 | \end{lstlisting} |
---|
136 | |
---|
137 | \begin{lstlisting}[style=C++, caption={Setup \CFA demangler style}, |
---|
138 | label={cfa-demangler-style}, basicstyle=\small] |
---|
139 | // In gdb/demangle.h |
---|
140 | #define DMGL_CFORALL (1 << 18) |
---|
141 | ... |
---|
142 | /* If none are set, use 'current_demangling_style' as the default. */ |
---|
143 | #define DMGL_STYLE_MASK |
---|
144 | (DMGL_AUTO|DMGL_GNU|DMGL_LUCID|DMGL_ARM|DMGL_HP|DMGL_EDG|DMGL_GNU_V3 |
---|
145 | |DMGL_JAVA|DMGL_GNAT|DMGL_DLANG|DMGL_RUST|DMGL_CFORALL) |
---|
146 | ... |
---|
147 | extern enum demangling_styles { |
---|
148 | no_demangling = -1, |
---|
149 | unknown_demangling = 0, |
---|
150 | ... |
---|
151 | cforall_demangling = DMGL_CFORALL |
---|
152 | } current_demangling_style; |
---|
153 | ... |
---|
154 | #define CFORALL_DEMANGLING_STYLE_STRING "cforall" |
---|
155 | ... |
---|
156 | #define CFORALL_DEMANGLING (((int)CURRENT_DEMANGLING_STYLE)&DMGL_CFORALL) |
---|
157 | \end{lstlisting} |
---|
158 | \end{figure} |
---|
159 | |
---|
160 | However, the setup for the \CFA demangler above does not demangle mangled |
---|
161 | symbols during symbol-table lookup while the program is in progress. Therefore, |
---|
162 | additional work needs to be done in \verb|gdb/symtab.c|. Prior to looking up |
---|
163 | the symbol, GDB attempts to demangle the name of the symbol, which can either |
---|
164 | be a mangled or unmangled name, to see if it can detect the language, and select |
---|
165 | the appropriate demangler to demangle the symbol. This work enables invocation |
---|
166 | of the \CFA demangler during symbol lookup. |
---|
167 | \begin{lstlisting}[style=C++, caption={\CFA demangler setup for symbol lookup}, |
---|
168 | label={cfa-symstab-setup}, basicstyle=\small] |
---|
169 | // In gdb/symtab.c |
---|
170 | const char * demangle_for_lookup ( const char *name, enum language lang, |
---|
171 | demangle_result_storage &storage ) { |
---|
172 | /* When using C++, D, or Go, demangle the name before doing a |
---|
173 | lookup to use the binary search. */ |
---|
174 | if (lang == language_cplus) { |
---|
175 | char *demangled_name = gdb_demangle(name, DMGL_ANSI|DMGL_PARAMS); |
---|
176 | if (demangled_name != NULL) |
---|
177 | return storage.set_malloc_ptr (demangled_name); |
---|
178 | } |
---|
179 | ... |
---|
180 | else if (lang == language_cforall) { |
---|
181 | char *demangled_name = cforall_demangle (name, 0); |
---|
182 | if (demangled_name != NULL) |
---|
183 | return storage.set_malloc_ptr (demangled_name); |
---|
184 | } |
---|
185 | ... |
---|
186 | } |
---|
187 | \end{lstlisting} |
---|
188 | |
---|
189 | \section{Result} |
---|
190 | The addition of hooks throughout GDB enables the invocation of the new \CFA |
---|
191 | demangler during symbol lookup and during the usage of \verb|binutils| tools |
---|
192 | such as \verb|objdump| and \verb|nm|. Additionally, these \verb|binutils| tools |
---|
193 | also understand \CFA because of the addition of the \CFA language code. |
---|
194 | However, as the language develops, symbol lookup for non-local variables must |
---|
195 | be implemented to produce the correct output. |
---|