dbghelp: Remove address field from symt_compiland.
[wine.git] / dlls / dbghelp / stabs.c
blobbadb07e3b5ca81ef190593124bc4e0e03947d8b7
1 /*
2 * File stabs.c - read stabs information from the modules
4 * Copyright (C) 1996, Eric Youngdale.
5 * 1999-2005, Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Maintenance Information
23 * -----------------------
25 * For documentation on the stabs format see for example
26 * The "stabs" debug format
27 * by Julia Menapace, Jim Kingdon, David Mackenzie
28 * of Cygnus Support
29 * available (hopefully) from http://sources.redhat.com/gdb/onlinedocs
32 #include <sys/types.h>
33 #include <fcntl.h>
34 #include <stdint.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <stdio.h>
38 #include <assert.h>
39 #include <stdarg.h>
41 #include "windef.h"
42 #include "winbase.h"
43 #include "winnls.h"
45 #include "dbghelp_private.h"
46 #include "image_private.h"
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_stabs);
52 /* Masks for n_type field */
53 #define N_STAB 0xe0
54 #define N_PEXT 0x10
55 #define N_TYPE 0x1e
56 #define N_EXT 0x01
58 /* Values for (n_type & N_TYPE) */
59 #define N_UNDF 0x00
60 #define N_ABS 0x02
61 #define N_INDR 0x0a
62 #define N_SECT 0x0e
63 #define N_GSYM 0x20
64 #define N_FUN 0x24
65 #define N_STSYM 0x26
66 #define N_LCSYM 0x28
67 #define N_MAIN 0x2a
68 #define N_ROSYM 0x2c
69 #define N_BNSYM 0x2e
70 #define N_OPT 0x3c
71 #define N_RSYM 0x40
72 #define N_SLINE 0x44
73 #define N_ENSYM 0x4e
74 #define N_SO 0x64
75 #define N_OSO 0x66
76 #define N_LSYM 0x80
77 #define N_BINCL 0x82
78 #define N_SOL 0x84
79 #define N_PSYM 0xa0
80 #define N_EINCL 0xa2
81 #define N_LBRAC 0xc0
82 #define N_EXCL 0xc2
83 #define N_RBRAC 0xe0
85 static BOOL stab_strcpy(char* dest, int sz, const char* source)
87 char* ptr = dest;
89 * A strcpy routine that stops when we hit the ':' character.
90 * Faster than copying the whole thing, and then nuking the
91 * ':'.
92 * Takes also care of (valid) a::b constructs
94 while (*source != '\0')
96 if (source[0] != ':' && sz-- > 0) *ptr++ = *source++;
97 else if (source[1] == ':' && (sz -= 2) > 0)
99 *ptr++ = *source++;
100 *ptr++ = *source++;
102 else break;
104 *ptr-- = '\0';
105 /* GCC emits, in some cases, a .<digit>+ suffix.
106 * This is used for static variable inside functions, so
107 * that we can have several such variables with same name in
108 * the same compilation unit
109 * We simply ignore that suffix when present (we also get rid
110 * of it in ELF symtab parsing)
112 if (ptr >= dest && isdigit(*ptr))
114 while (ptr > dest && isdigit(*ptr)) ptr--;
115 if (*ptr == '.') *ptr = '\0';
117 return (sz > 0);
120 typedef struct
122 char* name;
123 ULONG_PTR value;
124 struct symt** vector;
125 int nrofentries;
126 } include_def;
128 #define MAX_INCLUDES 5120
130 static include_def* include_defs = NULL;
131 static int num_include_def = 0;
132 static int num_alloc_include_def = 0;
133 static int cu_include_stack[MAX_INCLUDES];
134 static int cu_include_stk_idx = 0;
135 static struct symt** cu_vector = NULL;
136 static int cu_nrofentries = 0;
137 static struct symt_basic* stabs_basic[36];
139 static int stabs_new_include(const char* file, ULONG_PTR val)
141 if (num_include_def == num_alloc_include_def)
143 if (!include_defs)
145 num_alloc_include_def = 256;
146 include_defs = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
147 sizeof(include_defs[0]) * num_alloc_include_def);
149 else
151 num_alloc_include_def *= 2;
152 include_defs = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, include_defs,
153 sizeof(include_defs[0]) * num_alloc_include_def);
156 include_defs[num_include_def].name = strcpy(HeapAlloc(GetProcessHeap(), 0, strlen(file) + 1), file);
157 include_defs[num_include_def].value = val;
158 include_defs[num_include_def].vector = NULL;
159 include_defs[num_include_def].nrofentries = 0;
161 return num_include_def++;
164 static int stabs_find_include(const char* file, ULONG_PTR val)
166 int i;
168 for (i = 0; i < num_include_def; i++)
170 if (val == include_defs[i].value &&
171 strcmp(file, include_defs[i].name) == 0)
172 return i;
174 return -1;
177 static int stabs_add_include(int idx)
179 if (idx < 0) return -1;
180 cu_include_stk_idx++;
182 /* if this happens, just bump MAX_INCLUDES */
183 /* we could also handle this as another dynarray */
184 assert(cu_include_stk_idx < MAX_INCLUDES);
185 cu_include_stack[cu_include_stk_idx] = idx;
186 return cu_include_stk_idx;
189 static void stabs_reset_includes(void)
192 * The struct symt:s that we would need to use are reset when
193 * we start a new file. (at least the ones in filenr == 0)
195 cu_include_stk_idx = 0;/* keep 0 as index for the .c file itself */
196 memset(cu_vector, 0, sizeof(cu_vector[0]) * cu_nrofentries);
199 static void stabs_free_includes(void)
201 int i;
203 stabs_reset_includes();
204 for (i = 0; i < num_include_def; i++)
206 HeapFree(GetProcessHeap(), 0, include_defs[i].name);
207 HeapFree(GetProcessHeap(), 0, include_defs[i].vector);
209 HeapFree(GetProcessHeap(), 0, include_defs);
210 include_defs = NULL;
211 num_include_def = 0;
212 num_alloc_include_def = 0;
213 HeapFree(GetProcessHeap(), 0, cu_vector);
214 cu_vector = NULL;
215 cu_nrofentries = 0;
218 static struct symt** stabs_find_ref(LONG_PTR filenr, LONG_PTR subnr)
220 struct symt** ret;
222 /* FIXME: I could perhaps create a dummy include_def for each compilation
223 * unit which would allow not to handle those two cases separately
225 if (filenr == 0)
227 if (cu_nrofentries <= subnr)
229 cu_nrofentries = max( cu_nrofentries * 2, subnr + 1 );
230 if (!cu_vector)
231 cu_vector = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
232 sizeof(cu_vector[0]) * cu_nrofentries);
233 else
234 cu_vector = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
235 cu_vector, sizeof(cu_vector[0]) * cu_nrofentries);
237 ret = &cu_vector[subnr];
239 else
241 include_def* idef;
243 assert(filenr <= cu_include_stk_idx);
244 idef = &include_defs[cu_include_stack[filenr]];
246 if (idef->nrofentries <= subnr)
248 idef->nrofentries = max( idef->nrofentries * 2, subnr + 1 );
249 if (!idef->vector)
250 idef->vector = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
251 sizeof(idef->vector[0]) * idef->nrofentries);
252 else
253 idef->vector = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
254 idef->vector, sizeof(idef->vector[0]) * idef->nrofentries);
256 ret = &idef->vector[subnr];
258 TRACE("(%Id,%Id) => %p (%p)\n", filenr, subnr, ret, *ret);
259 return ret;
262 static struct symt** stabs_read_type_enum(const char** x)
264 LONG_PTR filenr, subnr;
265 const char* iter;
266 char* end;
268 iter = *x;
269 if (*iter == '(')
271 ++iter; /* '(' */
272 filenr = strtol(iter, &end, 10); /* <int> */
273 iter = ++end; /* ',' */
274 subnr = strtol(iter, &end, 10); /* <int> */
275 iter = ++end; /* ')' */
277 else
279 filenr = 0;
280 subnr = strtol(iter, &end, 10); /* <int> */
281 iter = end;
283 *x = iter;
284 return stabs_find_ref(filenr, subnr);
287 #define PTS_DEBUG
288 struct ParseTypedefData
290 const char* ptr;
291 char buf[1024];
292 int idx;
293 struct module* module;
294 #ifdef PTS_DEBUG
295 struct PTS_Error
297 const char* ptr;
298 unsigned line;
299 } errors[16];
300 int err_idx;
301 #endif
304 #ifdef PTS_DEBUG
305 static void stabs_pts_push(struct ParseTypedefData* ptd, unsigned line)
307 assert(ptd->err_idx < ARRAY_SIZE(ptd->errors));
308 ptd->errors[ptd->err_idx].line = line;
309 ptd->errors[ptd->err_idx].ptr = ptd->ptr;
310 ptd->err_idx++;
312 #define PTS_ABORTIF(ptd, t) do { if (t) { stabs_pts_push((ptd), __LINE__); return -1;} } while (0)
313 #else
314 #define PTS_ABORTIF(ptd, t) do { if (t) return -1; } while (0)
315 #endif
317 static int stabs_get_basic(struct ParseTypedefData* ptd, unsigned basic, struct symt** symt)
319 PTS_ABORTIF(ptd, basic >= ARRAY_SIZE(stabs_basic));
321 if (!stabs_basic[basic])
323 switch (basic)
325 case 1: stabs_basic[basic] = symt_get_basic(btInt, 4); break; /* int */
326 case 2: stabs_basic[basic] = symt_get_basic(btChar, 1); break; /* char */
327 case 3: stabs_basic[basic] = symt_get_basic(btInt, 2); break; /* short int */
328 case 4: stabs_basic[basic] = symt_get_basic(btInt, 4); break; /* long int */
329 case 5: stabs_basic[basic] = symt_get_basic(btUInt, 1); break; /* unsigned char */
330 case 6: stabs_basic[basic] = symt_get_basic(btInt, 1); break; /* signed char */
331 case 7: stabs_basic[basic] = symt_get_basic(btUInt, 2); break; /* unsigned short int */
332 case 8: stabs_basic[basic] = symt_get_basic(btUInt, 4); break; /* unsigned int */
333 case 9: stabs_basic[basic] = symt_get_basic(btUInt, 2); break; /* unsigned */
334 case 10: stabs_basic[basic] = symt_get_basic(btUInt, 2); break; /* unsigned long int */
335 case 11: stabs_basic[basic] = symt_get_basic(btVoid, 0); break; /* void */
336 case 12: stabs_basic[basic] = symt_get_basic(btFloat, 4); break; /* float */
337 case 13: stabs_basic[basic] = symt_get_basic(btFloat, 8); break; /* double */
338 case 14: stabs_basic[basic] = symt_get_basic(btFloat, 2); break; /* long double", */
339 case 15: stabs_basic[basic] = symt_get_basic(btInt, 4); break; /* integer */
340 case 16: stabs_basic[basic] = symt_get_basic(btBool, 1); break; /* bool */
341 /* case 17: short real */
342 /* case 18: real */
343 case 25: stabs_basic[basic] = symt_get_basic(btComplex, 8); break; /* float complex */
344 case 26: stabs_basic[basic] = symt_get_basic(btComplex, 6); break; /* double complex", */
345 case 30: stabs_basic[basic] = symt_get_basic(btWChar, 2); break; /* wchar_t */
346 case 31: stabs_basic[basic] = symt_get_basic(btInt, 8); break; /* long long int */
347 case 32: stabs_basic[basic] = symt_get_basic(btUInt, 8); break; /* long long unsigned */
348 /* starting at 35 are wine extensions (especially for R implementation) */
349 case 35: stabs_basic[basic] = symt_get_basic(btComplex, 4); break; /* long double complex", */
350 default: PTS_ABORTIF(ptd, 1);
353 *symt = &stabs_basic[basic]->symt;
354 return 0;
357 static int stabs_pts_read_type_def(struct ParseTypedefData* ptd,
358 const char* typename, struct symt** dt);
360 static int stabs_pts_read_id(struct ParseTypedefData* ptd)
362 const char* first = ptd->ptr;
363 unsigned int template = 0;
364 char ch;
366 while ((ch = *ptd->ptr++) != '\0')
368 switch (ch)
370 case ':':
371 if (template == 0)
373 unsigned int len = ptd->ptr - first - 1;
374 PTS_ABORTIF(ptd, len >= sizeof(ptd->buf) - ptd->idx);
375 memcpy(ptd->buf + ptd->idx, first, len);
376 ptd->buf[ptd->idx + len] = '\0';
377 ptd->idx += len + 1;
378 return 0;
380 break;
381 case '<': template++; break;
382 case '>': PTS_ABORTIF(ptd, template == 0); template--; break;
385 return -1;
388 static int stabs_pts_read_number(struct ParseTypedefData* ptd, LONG_PTR* v)
390 char* last;
392 *v = strtol(ptd->ptr, &last, 10);
393 PTS_ABORTIF(ptd, last == ptd->ptr);
394 ptd->ptr = last;
395 return 0;
398 static int stabs_pts_read_type_reference(struct ParseTypedefData* ptd,
399 LONG_PTR* filenr, LONG_PTR* subnr)
401 if (*ptd->ptr == '(')
403 /* '(' <int> ',' <int> ')' */
404 ptd->ptr++;
405 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, filenr) == -1);
406 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
407 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, subnr) == -1);
408 PTS_ABORTIF(ptd, *ptd->ptr++ != ')');
410 else
412 *filenr = 0;
413 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, subnr) == -1);
415 return 0;
418 struct pts_range_value
420 ULONGLONG val;
421 int sign;
424 static int stabs_pts_read_range_value(struct ParseTypedefData* ptd, struct pts_range_value* prv)
426 char* last;
428 switch (*ptd->ptr)
430 case '0':
431 while (*ptd->ptr == '0') ptd->ptr++;
432 if (*ptd->ptr >= '1' && *ptd->ptr <= '7')
434 switch (ptd->ptr[1])
436 case '0':
437 PTS_ABORTIF(ptd, ptd->ptr[0] != '1');
438 prv->sign = -1;
439 prv->val = 0;
440 while (isdigit(*ptd->ptr)) prv->val = (prv->val << 3) + *ptd->ptr++ - '0';
441 break;
442 case '7':
443 prv->sign = 1;
444 prv->val = 0;
445 while (isdigit(*ptd->ptr)) prv->val = (prv->val << 3) + *ptd->ptr++ - '0';
446 break;
447 default: PTS_ABORTIF(ptd, 1); break;
449 } else prv->sign = 0;
450 break;
451 case '-':
452 prv->sign = -1;
453 prv->val = strtoull(++ptd->ptr, &last, 10);
454 ptd->ptr = last;
455 break;
456 case '+':
457 default:
458 prv->sign = 1;
459 prv->val = strtoull(ptd->ptr, &last, 10);
460 ptd->ptr = last;
461 break;
463 return 0;
466 static int stabs_pts_read_range(struct ParseTypedefData* ptd, const char* typename,
467 struct symt** dt)
469 struct symt* ref;
470 struct pts_range_value lo;
471 struct pts_range_value hi;
472 unsigned size;
473 enum BasicType bt;
474 int i;
475 ULONGLONG v;
477 /* type ';' <int> ';' <int> ';' */
478 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &ref) == -1);
479 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
480 PTS_ABORTIF(ptd, stabs_pts_read_range_value(ptd, &lo) == -1);
481 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
482 PTS_ABORTIF(ptd, stabs_pts_read_range_value(ptd, &hi) == -1);
483 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
485 /* basically, we don't use ref... in some cases, for example, float is declared
486 * as a derived type of int... which won't help us... so we guess the types
487 * from the various formats
489 if (lo.sign == 0 && hi.sign < 0)
491 bt = btUInt;
492 size = hi.val;
494 else if (lo.sign < 0 && hi.sign == 0)
496 bt = btUInt;
497 size = lo.val;
499 else if (lo.sign > 0 && hi.sign == 0)
501 bt = btFloat;
502 size = lo.val;
504 else if (lo.sign < 0 && hi.sign > 0)
506 v = 1 << 7;
507 for (i = 7; i < 64; i += 8)
509 if (lo.val == v && hi.val == v - 1)
511 bt = btInt;
512 size = (i + 1) / 8;
513 break;
515 v <<= 8;
517 PTS_ABORTIF(ptd, i >= 64);
519 else if (lo.sign == 0 && hi.sign > 0)
521 if (hi.val == 127) /* specific case for char... */
523 bt = btChar;
524 size = 1;
526 else
528 v = 1;
529 for (i = 8; i <= 64; i += 8)
531 v <<= 8;
532 if (hi.val + 1 == v)
534 bt = btUInt;
535 size = (i + 1) / 8;
536 break;
539 PTS_ABORTIF(ptd, i > 64);
542 else PTS_ABORTIF(ptd, 1);
544 *dt = &symt_get_basic(bt, size)->symt;
545 return 0;
548 static inline int stabs_pts_read_method_info(struct ParseTypedefData* ptd)
550 struct symt* dt;
551 const char* tmp;
552 char mthd;
556 /* get type of return value */
557 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
558 if (*ptd->ptr == ';') ptd->ptr++;
560 /* get types of parameters */
561 if (*ptd->ptr == ':')
563 PTS_ABORTIF(ptd, !(tmp = strchr(ptd->ptr + 1, ';')));
564 ptd->ptr = tmp + 1;
566 PTS_ABORTIF(ptd, !(*ptd->ptr >= '0' && *ptd->ptr <= '9'));
567 ptd->ptr++;
568 PTS_ABORTIF(ptd, !(ptd->ptr[0] >= 'A' && *ptd->ptr <= 'D'));
569 mthd = *++ptd->ptr;
570 PTS_ABORTIF(ptd, mthd != '.' && mthd != '?' && mthd != '*');
571 ptd->ptr++;
572 if (mthd == '*')
574 LONG_PTR ofs;
576 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &ofs) == -1);
577 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
578 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
579 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
581 } while (*ptd->ptr != ';');
582 ptd->ptr++;
584 return 0;
587 static inline int stabs_pts_read_aggregate(struct ParseTypedefData* ptd,
588 struct symt_udt* sdt)
590 LONG_PTR sz, ofs;
591 struct symt* adt;
592 struct symt* dt = NULL;
593 int idx;
594 int doadd;
596 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &sz) == -1);
598 doadd = symt_set_udt_size(ptd->module, sdt, sz);
599 if (*ptd->ptr == '!') /* C++ inheritance */
601 LONG_PTR num_classes;
603 ptd->ptr++;
604 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &num_classes) == -1);
605 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
606 while (--num_classes >= 0)
608 ptd->ptr += 2; /* skip visibility and inheritance */
609 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &ofs) == -1);
610 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
612 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &adt) == -1);
614 if (doadd && adt)
616 char tmp[256];
618 strcpy(tmp, "__inherited_class_");
619 strcat(tmp, symt_get_name(adt));
621 symt_add_udt_element(ptd->module, sdt, tmp, adt, ofs, 0, 0);
623 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
627 /* if the structure has already been filled, just redo the parsing
628 * but don't store results into the struct
629 * FIXME: there's a quite ugly memory leak in there...
632 /* Now parse the individual elements of the structure/union. */
633 while (*ptd->ptr != ';')
635 /* agg_name : type ',' <int:offset> ',' <int:size> */
636 idx = ptd->idx;
638 if (ptd->ptr[0] == '$' && ptd->ptr[1] == 'v')
640 LONG_PTR x;
642 if (ptd->ptr[2] == 'f')
644 /* C++ virtual method table */
645 ptd->ptr += 3;
646 stabs_read_type_enum(&ptd->ptr);
647 PTS_ABORTIF(ptd, *ptd->ptr++ != ':');
648 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
649 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
650 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &x) == -1);
651 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
652 ptd->idx = idx;
653 continue;
655 else if (ptd->ptr[2] == 'b')
657 ptd->ptr += 3;
658 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
659 PTS_ABORTIF(ptd, *ptd->ptr++ != ':');
660 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
661 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
662 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &x) == -1);
663 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
664 ptd->idx = idx;
665 continue;
669 PTS_ABORTIF(ptd, stabs_pts_read_id(ptd) == -1);
670 /* Ref. TSDF R2.130 Section 7.4. When the field name is a method name
671 * it is followed by two colons rather than one.
673 if (*ptd->ptr == ':')
675 ptd->ptr++;
676 stabs_pts_read_method_info(ptd);
677 ptd->idx = idx;
678 continue;
680 else
682 /* skip C++ member protection /0 /1 or /2 */
683 if (*ptd->ptr == '/') ptd->ptr += 2;
685 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &adt) == -1);
687 switch (*ptd->ptr++)
689 case ',':
690 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &ofs) == -1);
691 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
692 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &sz) == -1);
693 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
695 if (doadd) symt_add_udt_element(ptd->module, sdt, ptd->buf + idx, adt, ofs, 0, 0);
696 break;
697 case ':':
699 const char* tmp;
700 /* method parameters... terminated by ';' */
701 PTS_ABORTIF(ptd, !(tmp = strchr(ptd->ptr, ';')));
702 ptd->ptr = tmp + 1;
704 break;
705 default:
706 PTS_ABORTIF(ptd, TRUE);
708 ptd->idx = idx;
710 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
711 if (*ptd->ptr == '~')
713 ptd->ptr++;
714 PTS_ABORTIF(ptd, *ptd->ptr++ != '%');
715 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &dt) == -1);
716 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
718 return 0;
721 static inline int stabs_pts_read_enum(struct ParseTypedefData* ptd,
722 struct symt_enum* edt)
724 LONG_PTR value;
725 int idx;
727 while (*ptd->ptr != ';')
729 idx = ptd->idx;
730 PTS_ABORTIF(ptd, stabs_pts_read_id(ptd) == -1);
731 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &value) == -1);
732 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
733 symt_add_enum_element(ptd->module, edt, ptd->buf + idx, value);
734 ptd->idx = idx;
736 ptd->ptr++;
737 return 0;
740 static inline int stabs_pts_read_array(struct ParseTypedefData* ptd,
741 struct symt** adt)
743 LONG_PTR lo, hi;
744 struct symt* range_dt;
745 struct symt* base_dt;
747 /* ar<typeinfo_nodef>;<int>;<int>;<typeinfo> */
749 PTS_ABORTIF(ptd, *ptd->ptr++ != 'r');
751 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &range_dt) == -1);
752 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
753 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &lo) == -1);
754 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
755 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &hi) == -1);
756 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
758 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &base_dt) == -1);
760 *adt = &symt_new_array(ptd->module, lo, hi - lo + 1, base_dt, range_dt)->symt;
761 return 0;
764 static int stabs_pts_read_type_def(struct ParseTypedefData* ptd, const char* typename,
765 struct symt** ret_dt)
767 int idx;
768 LONG_PTR sz = -1;
769 struct symt* new_dt = NULL; /* newly created data type */
770 struct symt* ref_dt; /* referenced data type (pointer...) */
771 LONG_PTR filenr1, subnr1, tmp;
773 /* things are a bit complicated because of the way the typedefs are stored inside
774 * the file, because addresses can change when realloc is done, so we must call
775 * over and over stabs_find_ref() to keep the correct values around
777 PTS_ABORTIF(ptd, stabs_pts_read_type_reference(ptd, &filenr1, &subnr1) == -1);
779 while (*ptd->ptr == '=')
781 ptd->ptr++;
782 PTS_ABORTIF(ptd, new_dt != NULL);
784 /* first handle attribute if any */
785 switch (*ptd->ptr)
787 case '@':
788 if (*++ptd->ptr == 's')
790 ptd->ptr++;
791 if (stabs_pts_read_number(ptd, &sz) == -1)
793 ERR("Not an attribute... NIY\n");
794 ptd->ptr -= 2;
795 return -1;
797 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
799 break;
801 /* then the real definitions */
802 switch (*ptd->ptr++)
804 case '*':
805 case '&':
806 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &ref_dt) == -1);
807 new_dt = &symt_new_pointer(ptd->module, ref_dt, ptd->module->cpu->word_size)->symt;
808 break;
809 case 'k': /* 'const' modifier */
810 case 'B': /* 'volatile' modifier */
811 /* just kinda ignore the modifier, I guess -gmt */
812 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, typename, &new_dt) == -1);
813 break;
814 case '(':
815 ptd->ptr--;
816 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, typename, &new_dt) == -1);
817 break;
818 case 'a':
819 PTS_ABORTIF(ptd, stabs_pts_read_array(ptd, &new_dt) == -1);
820 break;
821 case 'r':
822 PTS_ABORTIF(ptd, stabs_pts_read_range(ptd, typename, &new_dt) == -1);
823 assert(!*stabs_find_ref(filenr1, subnr1));
824 *stabs_find_ref(filenr1, subnr1) = new_dt;
825 break;
826 case 'f':
827 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &ref_dt) == -1);
828 new_dt = &symt_new_function_signature(ptd->module, ref_dt, -1)->symt;
829 break;
830 case 'e':
831 stabs_get_basic(ptd, 1 /* int */, &ref_dt);
832 new_dt = &symt_new_enum(ptd->module, typename, ref_dt)->symt;
833 PTS_ABORTIF(ptd, stabs_pts_read_enum(ptd, (struct symt_enum*)new_dt) == -1);
834 break;
835 case 's':
836 case 'u':
838 struct symt_udt* udt;
839 enum UdtKind kind = (ptd->ptr[-1] == 's') ? UdtStruct : UdtUnion;
840 /* udt can have been already defined in a forward definition */
841 udt = (struct symt_udt*)*stabs_find_ref(filenr1, subnr1);
842 if (!udt)
844 udt = symt_new_udt(ptd->module, typename, 0, kind);
845 /* we need to set it here, because a struct can hold a pointer
846 * to itself
848 new_dt = *stabs_find_ref(filenr1, subnr1) = &udt->symt;
850 else
852 unsigned l1, l2;
853 if (udt->symt.tag != SymTagUDT)
855 ERR("Forward declaration (%p/%s) is not an aggregate (%u)\n",
856 udt, symt_get_name(&udt->symt), udt->symt.tag);
857 return -1;
859 /* FIXME: we currently don't correctly construct nested C++
860 * classes names. Therefore, we could be here with either:
861 * - typename and udt->hash_elt.name being the same string
862 * (non embedded case)
863 * - typename being foo::bar while udt->hash_elt.name being
864 * just bar
865 * So, we twist the comparison to test both occurrences. When
866 * we have proper C++ types in this file, this twist has to be
867 * removed
869 l1 = strlen(udt->hash_elt.name);
870 l2 = strlen(typename);
871 if (l1 > l2 || strcmp(udt->hash_elt.name, typename + l2 - l1))
872 ERR("Forward declaration name mismatch %s <> %s\n",
873 udt->hash_elt.name, typename);
874 new_dt = &udt->symt;
876 PTS_ABORTIF(ptd, stabs_pts_read_aggregate(ptd, udt) == -1);
878 break;
879 case 'x':
880 idx = ptd->idx;
881 tmp = *ptd->ptr++;
882 PTS_ABORTIF(ptd, stabs_pts_read_id(ptd) == -1);
883 switch (tmp)
885 case 'e':
886 stabs_get_basic(ptd, 1 /* int */, &ref_dt);
887 new_dt = &symt_new_enum(ptd->module, ptd->buf + idx, ref_dt)->symt;
888 break;
889 case 's':
890 new_dt = &symt_new_udt(ptd->module, ptd->buf + idx, 0, UdtStruct)->symt;
891 break;
892 case 'u':
893 new_dt = &symt_new_udt(ptd->module, ptd->buf + idx, 0, UdtUnion)->symt;
894 break;
895 default:
896 return -1;
898 ptd->idx = idx;
899 break;
900 case '-':
902 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &tmp) == -1);
903 PTS_ABORTIF(ptd, stabs_get_basic(ptd, tmp, &new_dt) == -1);
904 PTS_ABORTIF(ptd, *ptd->ptr++ != ';');
906 break;
907 case '#':
908 if (*ptd->ptr == '#')
910 ptd->ptr++;
911 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &ref_dt) == -1);
912 new_dt = &symt_new_function_signature(ptd->module, ref_dt, -1)->symt;
914 else
916 struct symt* cls_dt;
917 struct symt* pmt_dt;
919 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &cls_dt) == -1);
920 PTS_ABORTIF(ptd, *ptd->ptr++ != ',');
921 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &ref_dt) == -1);
922 new_dt = &symt_new_function_signature(ptd->module, ref_dt, -1)->symt;
923 while (*ptd->ptr == ',')
925 ptd->ptr++;
926 PTS_ABORTIF(ptd, stabs_pts_read_type_def(ptd, NULL, &pmt_dt) == -1);
929 break;
930 case 'R':
932 LONG_PTR type, len, unk;
933 int basic;
935 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &type) == -1);
936 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
937 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &len) == -1);
938 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
939 PTS_ABORTIF(ptd, stabs_pts_read_number(ptd, &unk) == -1);
940 PTS_ABORTIF(ptd, *ptd->ptr++ != ';'); /* ';' */
942 switch (type) /* see stabs_get_basic for the details */
944 case 1: basic = 12; break;
945 case 2: basic = 13; break;
946 case 3: basic = 25; break;
947 case 4: basic = 26; break;
948 case 5: basic = 35; break;
949 case 6: basic = 14; break;
950 default: PTS_ABORTIF(ptd, 1);
952 PTS_ABORTIF(ptd, stabs_get_basic(ptd, basic, &new_dt) == -1);
954 break;
955 default:
956 ERR("Unknown type '%c'\n", ptd->ptr[-1]);
957 return -1;
961 if (!new_dt)
963 /* is it a forward declaration that has been filled ? */
964 new_dt = *stabs_find_ref(filenr1, subnr1);
965 /* if not, this should be void (which is defined as a ref to itself, but we
966 * don't correctly catch it)
968 if (!new_dt && typename)
970 new_dt = &symt_get_basic(btVoid, 0)->symt;
971 PTS_ABORTIF(ptd, strcmp(typename, "void"));
975 *stabs_find_ref(filenr1, subnr1) = *ret_dt = new_dt;
977 TRACE("Adding (%Id,%Id) %s\n", filenr1, subnr1, debugstr_a(typename));
979 return 0;
982 static int stabs_parse_typedef(struct module* module, const char* ptr,
983 const char* typename)
985 struct ParseTypedefData ptd;
986 struct symt* dt;
987 int ret = -1;
989 /* check for already existing definition */
991 TRACE("%s => %s\n", typename, debugstr_a(ptr));
992 ptd.module = module;
993 ptd.idx = 0;
994 #ifdef PTS_DEBUG
995 ptd.err_idx = 0;
996 #endif
997 for (ptd.ptr = ptr - 1; ;)
999 ptd.ptr = strchr(ptd.ptr + 1, ':');
1000 if (ptd.ptr == NULL || *++ptd.ptr != ':') break;
1002 if (ptd.ptr)
1004 if (*ptd.ptr != '(') ptd.ptr++;
1005 /* most of type definitions take one char, except Tt */
1006 if (*ptd.ptr != '(') ptd.ptr++;
1007 ret = stabs_pts_read_type_def(&ptd, typename, &dt);
1010 if (ret == -1 || *ptd.ptr)
1012 #ifdef PTS_DEBUG
1013 int i;
1014 TRACE("Failure on %s\n", debugstr_a(ptr));
1015 if (ret == -1)
1017 for (i = 0; i < ptd.err_idx; i++)
1019 TRACE("[%d]: line %d => %s\n",
1020 i, ptd.errors[i].line, debugstr_a(ptd.errors[i].ptr));
1023 else
1024 TRACE("[0]: => %s\n", debugstr_a(ptd.ptr));
1026 #else
1027 ERR("Failure on %s at %s\n", debugstr_a(ptr), debugstr_a(ptd.ptr));
1028 #endif
1029 return FALSE;
1032 return TRUE;
1035 static struct symt* stabs_parse_type(const char* stab)
1037 const char* c = stab - 1;
1040 * Look through the stab definition, and figure out what struct symt
1041 * this represents. If we have something we know about, assign the
1042 * type.
1043 * According to "The \"stabs\" debug format" (Rev 2.130) the name may be
1044 * a C++ name and contain double colons e.g. foo::bar::baz:t5=*6.
1048 if ((c = strchr(c + 1, ':')) == NULL) return NULL;
1049 } while (*++c == ':');
1052 * The next characters say more about the type (i.e. data, function, etc)
1053 * of symbol. Skip them. (C++ for example may have Tt).
1054 * Actually this is a very weak description; I think Tt is the only
1055 * multiple combination we should see.
1057 while (*c && *c != '(' && !isdigit(*c))
1058 c++;
1060 * The next is either an integer or a (integer,integer).
1061 * The stabs_read_type_enum() takes care that stab_types is large enough.
1063 return *stabs_read_type_enum(&c);
1066 enum pending_obj_kind
1068 PENDING_VAR,
1069 PENDING_LINE,
1072 struct pending_loc_var
1074 char name[256];
1075 struct symt* type;
1076 enum DataKind kind;
1077 struct location loc;
1080 struct pending_line
1082 int source_idx;
1083 int line_num;
1084 ULONG_PTR offset;
1085 ULONG_PTR load_offset;
1088 struct pending_object
1090 enum pending_obj_kind tag;
1091 union {
1092 struct pending_loc_var var;
1093 struct pending_line line;
1094 } u;
1097 struct pending_list
1099 struct pending_object* objs;
1100 unsigned num;
1101 unsigned allocated;
1104 static inline void pending_make_room(struct pending_list* pending)
1106 if (pending->num == pending->allocated)
1108 if (!pending->objs)
1110 pending->allocated = 8;
1111 pending->objs = HeapAlloc(GetProcessHeap(), 0,
1112 pending->allocated * sizeof(pending->objs[0]));
1114 else
1116 pending->allocated *= 2;
1117 pending->objs = HeapReAlloc(GetProcessHeap(), 0, pending->objs,
1118 pending->allocated * sizeof(pending->objs[0]));
1123 static inline void pending_add_var(struct pending_list* pending, const char* name,
1124 enum DataKind dt, const struct location* loc)
1126 pending_make_room(pending);
1127 pending->objs[pending->num].tag = PENDING_VAR;
1128 if (!stab_strcpy(pending->objs[pending->num].u.var.name,
1129 sizeof(pending->objs[pending->num].u.var.name), name))
1131 ERR("symbol too long %s\n", debugstr_a(name));
1132 return;
1134 pending->objs[pending->num].u.var.type = stabs_parse_type(name);
1135 pending->objs[pending->num].u.var.kind = dt;
1136 pending->objs[pending->num].u.var.loc = *loc;
1137 pending->num++;
1140 static inline void pending_add_line(struct pending_list* pending, int source_idx,
1141 int line_num, ULONG_PTR offset,
1142 ULONG_PTR load_offset)
1144 pending_make_room(pending);
1145 pending->objs[pending->num].tag = PENDING_LINE;
1146 pending->objs[pending->num].u.line.source_idx = source_idx;
1147 pending->objs[pending->num].u.line.line_num = line_num;
1148 pending->objs[pending->num].u.line.offset = offset;
1149 pending->objs[pending->num].u.line.load_offset = load_offset;
1150 pending->num++;
1153 static void pending_flush(struct pending_list* pending, struct module* module,
1154 struct symt_function* func, struct symt_block* block)
1156 unsigned int i;
1158 for (i = 0; i < pending->num; i++)
1160 switch (pending->objs[i].tag)
1162 case PENDING_VAR:
1163 symt_add_func_local(module, func,
1164 pending->objs[i].u.var.kind, &pending->objs[i].u.var.loc,
1165 block, pending->objs[i].u.var.type, pending->objs[i].u.var.name);
1166 break;
1167 case PENDING_LINE:
1168 if (module->type == DMT_MACHO)
1169 pending->objs[i].u.line.offset -= func->address - pending->objs[i].u.line.load_offset;
1170 symt_add_func_line(module, func, pending->objs[i].u.line.source_idx,
1171 pending->objs[i].u.line.line_num, func->address + pending->objs[i].u.line.offset);
1172 break;
1173 default:
1174 ERR("Unknown pending object tag %u\n", (unsigned)pending->objs[i].tag);
1175 break;
1178 pending->num = 0;
1181 /******************************************************************
1182 * stabs_finalize_function
1184 * Ends function creation: mainly:
1185 * - cleans up line number information
1186 * - tries to set up a debug-start tag (FIXME: heuristic to be enhanced)
1187 * - for stabs which have absolute address in them, initializes the size of the
1188 * function (assuming that current function ends where next function starts)
1190 static void stabs_finalize_function(struct module* module, struct symt_function* func,
1191 ULONG_PTR size)
1193 IMAGEHLP_LINE64 il;
1194 struct location loc;
1195 DWORD disp;
1197 if (!func) return;
1198 /* To define the debug-start of the function, we use the second line number.
1199 * Not 100% bullet proof, but better than nothing
1201 il.SizeOfStruct = sizeof(il);
1202 if (SymGetLineFromAddr64(module->process->handle, func->address, &disp, &il) &&
1203 SymGetLineNext64(module->process->handle, &il))
1205 loc.kind = loc_absolute;
1206 loc.offset = il.Address - func->address;
1207 symt_add_function_point(module, func, SymTagFuncDebugStart,
1208 &loc, NULL);
1210 if (size) func->size = size;
1213 static inline void stabbuf_append(char **buf, unsigned *buf_size, const char *str)
1215 unsigned str_len, buf_len;
1217 str_len = strlen(str);
1218 buf_len = strlen(*buf);
1220 if(str_len+buf_len >= *buf_size) {
1221 *buf_size += buf_len + str_len;
1222 *buf = HeapReAlloc(GetProcessHeap(), 0, *buf, *buf_size);
1225 strcpy(*buf+buf_len, str);
1228 BOOL stabs_parse(struct module* module, ULONG_PTR load_offset,
1229 const char* pv_stab_ptr, size_t nstab, size_t stabsize,
1230 const char* strs, int strtablen,
1231 stabs_def_cb callback, void* user)
1233 struct symt_function* curr_func = NULL;
1234 struct symt_block* block = NULL;
1235 struct symt_compiland* compiland = NULL;
1236 char* srcpath = NULL;
1237 int i;
1238 const char* ptr;
1239 char* stabbuff;
1240 unsigned int stabbufflen;
1241 const struct stab_nlist* stab_ptr;
1242 const char* strs_end;
1243 int strtabinc;
1244 char symname[4096];
1245 unsigned incl[32];
1246 int incl_stk = -1;
1247 int source_idx = -1;
1248 struct pending_list pending_block;
1249 struct pending_list pending_func;
1250 BOOL ret = TRUE;
1251 struct location loc;
1252 unsigned char type;
1253 uint64_t n_value;
1255 strs_end = strs + strtablen;
1257 memset(stabs_basic, 0, sizeof(stabs_basic));
1258 memset(&pending_block, 0, sizeof(pending_block));
1259 memset(&pending_func, 0, sizeof(pending_func));
1262 * Allocate a buffer into which we can build stab strings for cases
1263 * where the stab is continued over multiple lines.
1265 stabbufflen = 65536;
1266 stabbuff = HeapAlloc(GetProcessHeap(), 0, stabbufflen);
1268 strtabinc = 0;
1269 stabbuff[0] = '\0';
1270 for (i = 0; i < nstab; i++)
1272 stab_ptr = (struct stab_nlist *)(pv_stab_ptr + i * stabsize);
1273 n_value = stabsize == sizeof(struct macho64_nlist) ? ((struct macho64_nlist *)stab_ptr)->n_value : stab_ptr->n_value;
1274 ptr = strs + stab_ptr->n_strx;
1275 if ((ptr > strs_end) || (ptr + strlen(ptr) > strs_end))
1277 WARN("Bad stabs string %p\n", ptr);
1278 continue;
1280 if (*ptr != '\0' && (ptr[strlen(ptr) - 1] == '\\'))
1283 * Indicates continuation. Append this to the buffer, and go onto the
1284 * next record. Repeat the process until we find a stab without the
1285 * '/' character, as this indicates we have the whole thing.
1287 stabbuf_append(&stabbuff, &stabbufflen, ptr);
1288 continue;
1290 else if (stabbuff[0] != '\0')
1292 stabbuf_append(&stabbuff, &stabbufflen, ptr);
1293 ptr = stabbuff;
1296 if (stab_ptr->n_type & N_STAB)
1297 type = stab_ptr->n_type;
1298 else
1300 type = (stab_ptr->n_type & N_TYPE);
1301 if (module->type == DMT_MACHO) type &= ~N_PEXT;
1304 /* only symbol entries contain a typedef */
1305 switch (type)
1307 case N_GSYM:
1308 case N_LCSYM:
1309 case N_STSYM:
1310 case N_RSYM:
1311 case N_LSYM:
1312 case N_ROSYM:
1313 case N_PSYM:
1314 if (strchr(ptr, '=') != NULL)
1317 * The stabs aren't in writable memory, so copy it over so we are
1318 * sure we can scribble on it.
1320 if (ptr != stabbuff)
1322 stabbuff[0] = 0;
1323 stabbuf_append(&stabbuff, &stabbufflen, ptr);
1324 ptr = stabbuff;
1326 if (!stab_strcpy(symname, sizeof(symname), ptr) ||
1327 !stabs_parse_typedef(module, ptr, symname))
1329 /* skip this definition */
1330 stabbuff[0] = '\0';
1331 continue;
1336 switch (type)
1338 case N_GSYM:
1340 * These are useless with ELF. They have no value, and you have to
1341 * read the normal symbol table to get the address. Thus we
1342 * ignore them, and when we process the normal symbol table
1343 * we should do the right thing.
1345 * With a.out or mingw, they actually do make some amount of sense.
1347 if (!stab_strcpy(symname, sizeof(symname), ptr))
1349 ERR("symbol too long: %s\n", debugstr_a(ptr));
1350 stabbuff[0] = '\0';
1351 continue;
1353 loc.kind = loc_absolute;
1354 loc.reg = 0;
1355 loc.offset = load_offset + n_value;
1356 symt_new_global_variable(module, compiland, symname, TRUE /* FIXME */,
1357 loc, 0, stabs_parse_type(ptr));
1358 break;
1359 case N_LCSYM:
1360 case N_STSYM:
1361 /* These are static symbols and BSS symbols. */
1362 if (!stab_strcpy(symname, sizeof(symname), ptr))
1364 ERR("symbol too long: %s\n", debugstr_a(ptr));
1365 stabbuff[0] = '\0';
1366 continue;
1368 loc.kind = loc_absolute;
1369 loc.reg = 0;
1370 loc.offset = load_offset + n_value;
1371 symt_new_global_variable(module, compiland, symname, TRUE /* FIXME */,
1372 loc, 0, stabs_parse_type(ptr));
1373 break;
1374 case N_LBRAC:
1375 if (curr_func)
1377 block = symt_open_func_block(module, curr_func, block,
1378 n_value, 0);
1379 pending_flush(&pending_block, module, curr_func, block);
1381 break;
1382 case N_RBRAC:
1383 if (curr_func)
1384 block = symt_close_func_block(module, curr_func, block,
1385 n_value);
1386 break;
1387 case N_PSYM:
1388 /* These are function parameters. */
1389 if (curr_func != NULL)
1391 struct symt* param_type = stabs_parse_type(ptr);
1392 if (!stab_strcpy(symname, sizeof(symname), ptr))
1394 ERR("symbol too long: %s\n", debugstr_a(ptr));
1395 stabbuff[0] = '\0';
1396 continue;
1398 loc.kind = loc_regrel;
1399 loc.reg = module->cpu->frame_regno;
1400 loc.offset = n_value;
1401 symt_add_func_local(module, curr_func,
1402 (int)n_value >= 0 ? DataIsParam : DataIsLocal,
1403 &loc, NULL, param_type, symname);
1404 symt_add_function_signature_parameter(module,
1405 (struct symt_function_signature*)curr_func->type,
1406 param_type);
1408 break;
1409 case N_RSYM:
1410 /* These are registers (as local variables) */
1411 if (curr_func != NULL)
1413 loc.kind = loc_register;
1414 loc.offset = 0;
1416 switch (n_value)
1418 case 0: loc.reg = CV_REG_EAX; break;
1419 case 1: loc.reg = CV_REG_ECX; break;
1420 case 2: loc.reg = CV_REG_EDX; break;
1421 case 3: loc.reg = CV_REG_EBX; break;
1422 case 4: loc.reg = CV_REG_ESP; break;
1423 case 5: loc.reg = CV_REG_EBP; break;
1424 case 6: loc.reg = CV_REG_ESI; break;
1425 case 7: loc.reg = CV_REG_EDI; break;
1426 case 11:
1427 case 12:
1428 case 13:
1429 case 14:
1430 case 15:
1431 case 16:
1432 case 17:
1433 case 18:
1434 case 19: loc.reg = CV_REG_ST0 + n_value - 12; break;
1435 case 21:
1436 case 22:
1437 case 23:
1438 case 24:
1439 case 25:
1440 case 26:
1441 case 27:
1442 case 28: loc.reg = CV_REG_XMM0 + n_value - 21; break;
1443 case 29:
1444 case 30:
1445 case 31:
1446 case 32:
1447 case 33:
1448 case 34:
1449 case 35:
1450 case 36: loc.reg = CV_REG_MM0 + n_value - 29; break;
1451 default:
1452 FIXME("Unknown register value (%Iu)\n", (ULONG_PTR)n_value);
1453 loc.reg = CV_REG_NONE;
1454 break;
1456 if (!stab_strcpy(symname, sizeof(symname), ptr))
1458 ERR("symbol too long: %s\n", debugstr_a(ptr));
1459 stabbuff[0] = '\0';
1460 continue;
1462 if (ptr[strlen(symname) + 1] == 'P')
1464 struct symt* param_type = stabs_parse_type(ptr);
1465 stab_strcpy(symname, sizeof(symname), ptr);
1466 symt_add_func_local(module, curr_func, DataIsParam, &loc,
1467 NULL, param_type, symname);
1468 symt_add_function_signature_parameter(module,
1469 (struct symt_function_signature*)curr_func->type,
1470 param_type);
1472 else
1473 pending_add_var(&pending_block, ptr, DataIsLocal, &loc);
1475 break;
1476 case N_LSYM:
1477 /* These are local variables */
1478 loc.kind = loc_regrel;
1479 loc.reg = module->cpu->frame_regno;
1480 loc.offset = n_value;
1481 if (curr_func != NULL) pending_add_var(&pending_block, ptr, DataIsLocal, &loc);
1482 break;
1483 case N_SLINE:
1485 * This is a line number. These are always relative to the start
1486 * of the function (N_FUN), and this makes the lookup easier.
1488 assert(source_idx >= 0);
1489 if (curr_func != NULL)
1491 ULONG_PTR offset = n_value;
1492 if (module->type == DMT_MACHO)
1493 offset -= curr_func->address - load_offset;
1494 symt_add_func_line(module, curr_func, source_idx,
1495 stab_ptr->n_desc, curr_func->address + offset);
1497 else pending_add_line(&pending_func, source_idx, stab_ptr->n_desc,
1498 n_value, load_offset);
1499 break;
1500 case N_FUN:
1502 * For now, just declare the various functions. Later
1503 * on, we will add the line number information and the
1504 * local symbols.
1507 * Copy the string to a temp buffer so we
1508 * can kill everything after the ':'. We do
1509 * it this way because otherwise we end up dirtying
1510 * all of the pages related to the stabs, and that
1511 * sucks up swap space like crazy.
1513 if (!stab_strcpy(symname, sizeof(symname), ptr))
1515 ERR("symbol too long: %s\n", debugstr_a(ptr));
1516 stabbuff[0] = '\0';
1517 continue;
1519 if (*symname)
1521 struct symt_function_signature* func_type;
1523 if (curr_func)
1525 /* First, clean up the previous function we were working on.
1526 * Assume size of the func is the delta between current offset
1527 * and offset of last function
1529 stabs_finalize_function(module, curr_func,
1530 n_value ?
1531 (load_offset + n_value - curr_func->address) : 0);
1533 func_type = symt_new_function_signature(module,
1534 stabs_parse_type(ptr), -1);
1535 curr_func = symt_new_function(module, compiland, symname,
1536 load_offset + n_value, 0,
1537 &func_type->symt);
1538 pending_flush(&pending_func, module, curr_func, NULL);
1540 else
1542 /* some versions of GCC to use a N_FUN "" to mark the end of a function
1543 * and n_value contains the size of the func
1545 stabs_finalize_function(module, curr_func, n_value);
1546 curr_func = NULL;
1548 break;
1549 case N_SO:
1551 * This indicates a new source file. Append the records
1552 * together, to build the correct path name.
1554 if (*ptr == '\0') /* end of N_SO file */
1556 /* Nuke old path. */
1557 HeapFree(GetProcessHeap(), 0, srcpath);
1558 srcpath = NULL;
1559 stabs_finalize_function(module, curr_func, 0);
1560 curr_func = NULL;
1561 source_idx = -1;
1562 incl_stk = -1;
1563 assert(block == NULL);
1564 compiland = NULL;
1566 else
1568 int len = strlen(ptr);
1569 if (ptr[len-1] != '/')
1571 stabs_reset_includes();
1572 source_idx = source_new(module, srcpath, ptr);
1573 compiland = symt_new_compiland(module, source_idx);
1575 else
1577 srcpath = HeapAlloc(GetProcessHeap(), 0, len + 1);
1578 strcpy(srcpath, ptr);
1581 break;
1582 case N_SOL:
1583 source_idx = source_new(module, srcpath, ptr);
1584 break;
1585 case N_UNDF:
1586 strs += strtabinc;
1587 strtabinc = n_value;
1588 /* I'm not sure this is needed, so trace it before we obsolete it */
1589 if (curr_func)
1591 FIXME("UNDF: curr_func %s\n", curr_func->hash_elt.name);
1592 stabs_finalize_function(module, curr_func, 0); /* FIXME */
1593 curr_func = NULL;
1595 break;
1596 case N_OPT:
1597 /* Ignore this. We don't care what it points to. */
1598 break;
1599 case N_BINCL:
1600 stabs_add_include(stabs_new_include(ptr, n_value));
1601 assert(incl_stk < (int) ARRAY_SIZE(incl) - 1);
1602 incl[++incl_stk] = source_idx;
1603 source_idx = source_new(module, NULL, ptr);
1604 break;
1605 case N_EINCL:
1606 assert(incl_stk >= 0);
1607 source_idx = incl[incl_stk--];
1608 break;
1609 case N_EXCL:
1610 if (stabs_add_include(stabs_find_include(ptr, n_value)) < 0)
1612 ERR("Excluded header not found (%s,%Id)\n", ptr, (ULONG_PTR)n_value);
1613 module_reset_debug_info(module);
1614 ret = FALSE;
1615 goto done;
1617 break;
1618 case N_MAIN:
1619 /* Always ignore these. GCC doesn't even generate them. */
1620 break;
1621 case N_BNSYM:
1622 case N_ENSYM:
1623 case N_OSO:
1624 case N_INDR:
1625 /* Always ignore these, they seem to be used only on Darwin. */
1626 break;
1627 case N_ABS:
1628 case N_SECT:
1629 /* FIXME: Other definition types (N_TEXT, N_DATA, N_BSS, ...)? */
1630 if (callback)
1632 BOOL is_public = (stab_ptr->n_type & N_EXT);
1633 BOOL is_global = is_public;
1635 /* "private extern"; shared among compilation units in a shared
1636 * library, but not accessible from outside the library. */
1637 if (stab_ptr->n_type & N_PEXT)
1639 is_public = FALSE;
1640 is_global = TRUE;
1643 if (*ptr == '_') ptr++;
1644 if (!stab_strcpy(symname, sizeof(symname), ptr))
1646 ERR("symbol too long: %s\n", debugstr_a(ptr));
1647 stabbuff[0] = '\0';
1648 continue;
1651 callback(module, load_offset, symname, n_value,
1652 is_public, is_global, stab_ptr->n_other, compiland, user);
1654 break;
1655 default:
1656 ERR("Unknown stab type 0x%02x\n", type);
1657 break;
1659 stabbuff[0] = '\0';
1660 TRACE("0x%02x %Ix %s\n",
1661 stab_ptr->n_type, (ULONG_PTR)n_value, debugstr_a(strs + stab_ptr->n_strx));
1663 module->module.SymType = SymDia;
1664 module->module.CVSig = 'S' | ('T' << 8) | ('A' << 16) | ('B' << 24);
1665 /* FIXME: we could have a finer grain here */
1666 module->module.LineNumbers = TRUE;
1667 module->module.GlobalSymbols = TRUE;
1668 module->module.TypeInfo = TRUE;
1669 module->module.SourceIndexed = TRUE;
1670 module->module.Publics = TRUE;
1671 done:
1672 HeapFree(GetProcessHeap(), 0, stabbuff);
1673 stabs_free_includes();
1674 HeapFree(GetProcessHeap(), 0, pending_block.objs);
1675 HeapFree(GetProcessHeap(), 0, pending_func.objs);
1676 HeapFree(GetProcessHeap(), 0, srcpath);
1678 return ret;