fixed syntax of fpa ldf/stf instructions
[libfirm] / ir / be / bestabs.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Stabs support.
23  * @author  Michael Beck
24  * @date    11.9.2006
25  * @version $Id$
26  */
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <assert.h>
34
35 #include "obst.h"
36 #include "irprog.h"
37 #include "irgraph.h"
38 #include "tv.h"
39 #include "xmalloc.h"
40 #include "pmap.h"
41 #include "pdeq.h"
42 #include "irtools.h"
43 #include "obst.h"
44 #include "array.h"
45 #include "be_dbgout.h"
46 #include "beabi.h"
47
48 /* Non-Stab Symbol and Stab Symbol Types */
49 enum stabs_types {
50         N_UNDF    = 0x00,    /**< 0: Undefined symbol */
51         N_ABS     = 0x02,    /**< 2: File scope absolute symbol */
52         N_TEXT    = 0x04,    /**< 4: File scope text symbol */
53         N_DATA    = 0x06,    /**< 6: File scope data symbol */
54         N_BSS     = 0x08,    /**< 8: File scope BSS symbol */
55         N_INDR    = 0x0A,    /**< 10: Symbol is indirected to another symbol */
56         N_FN_SEQ  = 0x0C,    /**< 12: Same as N_FN, for Sequent compilers */
57         N_COMM    = 0x12,    /**< 18: Common--visible after shared library dynamic link */
58         N_SETA    = 0x14,    /**< 20: Absolute set element */
59         N_SETT    = 0x17,    /**< 23: Text segment set element */
60         N_SETD    = 0x18,    /**< 24: Data segment set element */
61         N_SETB    = 0x1A,    /**< 26: BSS segment set element */
62         N_SETV    = 0x1C,    /**< 28: Pointer to set vector */
63         N_WARNING = 0x1E,    /**< 30: Print a warning message during linking */
64         N_FN      = 0x1F,    /**< 31: File name of a `.o' file */
65         N_GSYM    = 0x20,    /**< 32: Global symbol */
66         N_FNAME   = 0x22,    /**< 34: Function name (for BSD Fortran) */
67         N_FUN     = 0x24,    /**< 36: Function name */
68         N_STSYM   = 0x26,    /**< 38: Data segment file-scope variable */
69         N_LCSYM   = 0x28,    /**< 40: BSS segment file-scope variable */
70         N_MAIN    = 0x2A,    /**< 42: Name of main routine */
71         N_ROSYM   = 0x2C,    /**< 44: Variable in .rodata section */
72         N_PC      = 0x30,    /**< 48: Global symbol (for Pascal) */
73         N_NSYMS   = 0x32,    /**< 50: Number of symbols (according to Ultrix V4.0) */
74         N_NOMAP   = 0x34,    /**< 52: No DST map */
75         N_OBJ     = 0x38,    /**< 56: Object file (Solaris2) */
76         N_OPT     = 0x3C,    /**< 60: Debugger options (Solaris2) */
77         N_RSYM    = 0x40,    /**< 64: Register variable */
78         N_M2C     = 0x42,    /**< 66: Modula-2 compilation unit */
79         N_SLINE   = 0x44,    /**< 68: Line number in text segment */
80         N_DSLINE  = 0x46,    /**< 70: Line number in data segment */
81         N_BSLINE  = 0x48,    /**< 72: Line number in bss segment */
82         N_BROWS   = 0x48,    /**< 72: Sun source code browser, path to `.cb' file */
83         N_DEFD    = 0x4A,    /**< 74: GNU Modula2 definition module dependency */
84         N_FLINE   = 0x4C,    /**< 76: Function start/body/end line numbers (Solaris2) */
85         N_EHDECL  = 0x50,    /**< 80: GNU C++ exception variable */
86         N_MOD2    = 0x50,    /**< 80: Modula2 info "for imc" (according to Ultrix V4.0) */
87         N_CATCH   = 0x54,    /**< 84: GNU C++ catch clause */
88         N_SSYM    = 0x60,    /**< 96: Structure of union element */
89         N_ENDM    = 0x62,    /**< 98: Last stab for module (Solaris2) */
90         N_SO      = 0x64,    /**< 100: Path and name of source file */
91         N_LSYM    = 0x80,    /**< 128: Stack variable */
92         N_BINCL   = 0x82,    /**< 130: Beginning of an include file (Sun only) */
93         N_SOL     = 0x84,    /**< 132: Name of include file */
94         N_PSYM    = 0xA0,    /**< 160: Parameter variable */
95         N_EINCL   = 0xA2,    /**< 162: End of an include file */
96         N_ENTRY   = 0xA4,    /**< 164: Alternate entry point */
97         N_LBRAC   = 0xC0,    /**< 192: Beginning of a lexical block */
98         N_EXCL    = 0xC2,    /**< 194: Place holder for a deleted include file */
99         N_SCOPE   = 0xC4,    /**< 196: Modula2 scope information (Sun linker) */
100         N_RBRAC   = 0xE0,    /**< 224: End of a lexical block */
101         N_BCOMM   = 0xE2,    /**< 226: Begin named common block */
102         N_ECOMM   = 0xE4,    /**< 228: End named common block */
103         N_ECOML   = 0xE8,    /**< 232: Member of a common block */
104         N_WITH    = 0xEA,    /**< 234: Pascal with statement: type,,0,0,offset (Solaris2) */
105         N_NBTEXT  = 0xF0,    /**< 240: Gould non-base registers */
106         N_NBDATA  = 0xF2,    /**< 242: Gould non-base registers */
107         N_NBBSS   = 0xF4,    /**< 244: Gould non-base registers */
108         N_NBSTS   = 0xF6,    /**< 246: Gould non-base registers */
109         N_NBLCS   = 0xF8,    /**< 248: Gould non-base registers */
110 };
111
112 /**
113  * The stabs handle.
114  */
115 typedef struct stabs_handle {
116         dbg_handle              base;         /**< the base class */
117         FILE                    *f;           /**< the file write to */
118         ir_entity               *cur_ent;     /**< current method entity */
119         const be_stack_layout_t *layout;      /**< current stack layout */
120         unsigned                next_type_nr; /**< next type number */
121         pmap                    *type_map;    /**< a map from type to type number */
122         const char              *main_file;   /**< name of the main source file */
123         const char              *curr_file;   /**< name of teh current source file */
124 } stabs_handle;
125
126 /**
127  * Returns the stabs type number of a Firm type.
128  */
129 static unsigned get_type_number(stabs_handle *h, ir_type *tp) {
130         pmap_entry *entry;
131         unsigned num;
132
133         if (tp == NULL) {
134                 /* map to the void type */
135                 return 0;
136         }
137         entry = pmap_find(h->type_map, tp);
138         if (! entry) {
139                 num = h->next_type_nr++;
140                 pmap_insert(h->type_map, tp, INT_TO_PTR(num));
141         } else {
142                 num = PTR_TO_INT(entry->value);
143         }
144         return num;
145 }  /* get_type_number */
146
147 /**
148  * generate the void type.
149  */
150 static void gen_void_type(stabs_handle *h) {
151         fprintf(h->f, "\t.stabs\t\"void:t%u=%u\",%d,0,0,0\n", 0, 0, N_LSYM);
152 }  /* gen_void_type */
153
154 typedef struct walker_env {
155         stabs_handle *h;
156         waitq        *wq;
157 } wenv_t;
158
159 /* a type is not ready: put it on the wait queue */
160 #define SET_TYPE_NOT_READY(wq, tp) \
161   do { \
162     set_type_link(tp, (void *)1);  \
163     waitq_put(wq, tp);             \
164   } while(0)
165
166 /* a the is ready */
167 #define SET_TYPE_READY(tp)     set_type_link(tp, NULL)
168
169 /* check whether a type is ready */
170 #define IS_TYPE_READY(tp)      (get_type_link(tp) == NULL)
171
172 #ifdef EXPLICITE_PTR_TYPES
173 #define SKIP_PTR(tp)  tp
174 #else
175 #define SKIP_PTR(tp)   (is_Pointer_type(tp) ? get_pointer_points_to_type(tp) : tp)
176 #endif
177
178 /**
179  * Generates a primitive type.
180  *
181  * @param h    the stabs handle
182  * @param tp   the type
183  */
184 static void gen_primitive_type(stabs_handle *h, ir_type *tp)
185 {
186         ir_mode *mode = get_type_mode(tp);
187         unsigned type_num;
188
189         SET_TYPE_READY(tp);
190         if (mode == mode_T) {
191     /* jack and FirmJC compiler use mode_T for the void type.
192                 Ignore it here as it's name is remapped to "void". */
193                 return;
194         }  /* if */
195
196         if (0 && get_mode_size_bits(mode) & 7) {
197                 /* this is a bitfield type, ignore it */
198                 return;
199         }  /* if */
200
201         type_num = get_type_number(h, tp);
202
203         if (mode_is_int(mode)) {
204                 char buf[64];
205                 fprintf(h->f, "\t.stabs\t\"%s:t%u=r%u;", get_type_name(tp), type_num, type_num);
206                 tarval_snprintf(buf, sizeof(buf), get_mode_min(mode));
207                 fprintf(h->f, "%s;", buf);
208                 tarval_snprintf(buf, sizeof(buf), get_mode_max(mode));
209                 fprintf(h->f, "%s;\",%d,0,0,0\n", buf, N_LSYM);
210         } else if (mode_is_float(mode)) {
211                 int size = get_type_size_bytes(tp);
212                 fprintf(h->f, "\t.stabs\t\"%s:t%u=r1;%d;0;\",%d,0,0,0\n", get_type_name(tp), type_num, size, N_LSYM);
213         }
214 }  /* gen_primitive_type */
215
216 /**
217  * Generates an enum type
218  *
219  * @param h    the stabs handle
220  * @param tp   the type
221  */
222 static void gen_enum_type(stabs_handle *h, ir_type *tp) {
223         unsigned type_num = get_type_number(h, tp);
224         int i, n;
225
226         SET_TYPE_READY(tp);
227         fprintf(h->f, "\t.stabs\t\"%s:T%u=e", get_type_name(tp), type_num);
228         for (i = 0, n = get_enumeration_n_enums(tp); i < n; ++i) {
229                 ir_enum_const *ec = get_enumeration_const(tp, i);
230                 char buf[64];
231
232                 tarval_snprintf(buf, sizeof(buf), get_enumeration_value(ec));
233                 fprintf(h->f, "%s:%s,", get_enumeration_name(ec), buf);
234         }
235         fprintf(h->f, ";\",%d,0,0,0\n", N_LSYM);
236 }  /* gen_enum_type */
237
238 /**
239  * Generates a pointer type
240  *
241  * @param env  the walker environment
242  * @param tp   the type
243  */
244 static void gen_pointer_type(wenv_t *env, ir_type *tp) {
245         stabs_handle *h       = env->h;
246         unsigned     type_num = get_type_number(h, tp);
247         ir_type      *el_tp   = get_pointer_points_to_type(tp);
248         unsigned     el_num   = get_type_number(h, el_tp);
249
250         SET_TYPE_READY(tp);
251         if (! IS_TYPE_READY(el_tp))
252                 waitq_put(env->wq, el_tp);
253         fprintf(h->f, "\t.stabs\t\"%s:t%u=*%u\",%d,0,0,0\n",
254                 get_type_name(tp), type_num, el_num, N_LSYM);
255 }  /* gen_pointer_type */
256
257 /**
258  * Generates a struct/union type
259  *
260  * @param env  the walker environment
261  * @param tp   the type
262  */
263 static void gen_struct_union_type(wenv_t *env, ir_type *tp) {
264         stabs_handle *h       = env->h;
265         unsigned     type_num = get_type_number(h, tp);
266         int          i, n;
267         char         desc = 's';
268
269         SET_TYPE_READY(tp);
270         if (is_Struct_type(tp)) {
271                 desc = 's';
272                 if (get_type_mode(tp) != NULL) {
273                         /* this is a bitfield type, ignore it safely */
274                         return;
275                 }
276         }
277         else if (is_Union_type(tp))
278                 desc = 'u';
279
280         fprintf(h->f, "\t.stabs\t\"%s:Tt%u=%c%d",
281                 get_type_name(tp), type_num, desc, get_type_size_bytes(tp));
282
283         for (i = 0, n = get_compound_n_members(tp); i < n; ++i) {
284                 ir_entity *ent = get_compound_member(tp, i);
285                 ir_type   *mtp = get_entity_type(ent);
286                 int ofs, size;
287
288                 if (! IS_TYPE_READY(mtp))
289                         waitq_put(env->wq, mtp);
290                 ofs  = get_entity_offset(ent);
291                 if (is_Struct_type(mtp) && get_type_mode(mtp) != NULL) {
292                         /* this structure is a bitfield, skip */
293                         int i, n;
294
295                         for (i = 0, n = get_struct_n_members(mtp); i < n; ++i) {
296                                 ir_entity *ent = get_struct_member(mtp, i);
297                                 ir_type *tp = get_entity_type(ent);
298                                 int bofs;
299
300                                 type_num = get_type_number(h, tp);
301                                 size = get_type_size_bits(tp);
302                                 bofs = (ofs + get_entity_offset(ent)) * 8 + get_entity_offset_bits_remainder(ent);
303
304                                 /* name:type, bit offset from the start of the struct', number of bits in the element. */
305                                 fprintf(h->f, "%s:%u,%d,%d;", get_entity_name(ent), type_num, bofs, size);
306                         }
307                 } else {
308                         /* no bitfield */
309                         type_num = get_type_number(h, mtp);
310                         size = get_type_size_bits(mtp);
311
312                         /* name:type, bit offset from the start of the struct', number of bits in the element. */
313                         fprintf(h->f, "%s:%u,%d,%d;", get_entity_name(ent), type_num, ofs, size);
314                 }
315         }
316         fprintf(h->f, ";\",%d,0,0,0\n", N_LSYM);
317 }  /* gen_struct_type */
318
319 /**
320  * Generates an array type
321  *
322  * @param env  the walker environment
323  * @param tp   the type
324  */
325 static void gen_array_type(wenv_t *env, ir_type *tp) {
326         stabs_handle *h       = env->h;
327         unsigned     type_num = get_type_number(h, tp);
328         int          i, n = get_array_n_dimensions(tp);
329         ir_type      *etp = get_array_element_type(tp);
330         int          *perm;
331
332         SET_TYPE_READY(tp);
333         if (! IS_TYPE_READY(etp))
334                 waitq_put(env->wq, etp);
335
336         NEW_ARR_A(int, perm, n);
337         for (i = 0; i < n; ++i) {
338                 perm[i] = get_array_order(tp, i);
339         }
340         fprintf(h->f, "\t.stabs\t\"%s:t%u=a", get_type_name(tp), type_num);
341
342         for (i = 0; i < n; ++i) {
343                 int dim = perm[i];
344
345                 if (is_Const(get_array_lower_bound(tp, dim)) && is_Const(get_array_upper_bound(tp, dim))) {
346                         long min = get_array_lower_bound_int(tp, dim);
347                         long max = get_array_upper_bound_int(tp, dim);
348
349                         /* FIXME r1 must be integer type, but seems to work for now */
350                         fprintf(h->f, "r1;%ld;%ld;", min, max-1);
351                 }
352         }
353
354         type_num = get_type_number(h, etp);
355         fprintf(h->f, "%d\",%d,0,0,0\n", type_num, N_LSYM);
356 }  /* gen_array_type */
357
358 /**
359  * Generates a method type
360  *
361  * @param env  the walker environment
362  * @param tp   the type
363  */
364 static void gen_method_type(wenv_t *env, ir_type *tp) {
365         stabs_handle *h       = env->h;
366         unsigned     type_num = get_type_number(h, tp);
367         ir_type *rtp = NULL;
368         unsigned res_type_num;
369         int i, n = get_method_n_ress(tp);
370
371         SET_TYPE_READY(tp);
372         if (n > 0) {
373                 rtp = get_method_res_type(tp, 0);
374                 if (! IS_TYPE_READY(rtp))
375                         waitq_put(env->wq, rtp);
376         }
377         res_type_num = get_type_number(h, rtp);
378
379         fprintf(h->f, "\t.stabs\t\"%s:t%u=f%u", get_type_name(tp), type_num, res_type_num);
380
381         /* handle more than one return type */
382         for (i = 1; i < n; ++i) {
383                 rtp = get_method_res_type(tp, i);
384                 if (! IS_TYPE_READY(rtp))
385                         waitq_put(env->wq, rtp);
386                 res_type_num = get_type_number(h, rtp);
387                 fprintf(h->f, ",%u", res_type_num);
388         }
389         fprintf(h->f, "\",%d,0,0,0\n", N_LSYM);
390 }  /* gen_method_type */
391
392 /**
393  * type-walker: generate declaration for simple types,
394  * put all other types on a wait queue
395  */
396 static void walk_type(type_or_ent *tore, void *ctx)
397 {
398         wenv_t *env = ctx;
399         ir_type  *tp;
400
401         if (get_kind(tore) == k_type) {
402                 tp = (ir_type *)tore;
403
404                 /* ignore the unknown type */
405                 if (tp == firm_unknown_type)
406                         return;
407         } else {
408                 return;
409         }  /* if */
410
411         switch (get_type_tpop_code(tp)) {
412         case tpo_class:
413                 if (tp == get_glob_type()) {
414                         SET_TYPE_READY(tp);
415                         break;
416                 }
417                 /* fall through */
418         case tpo_struct:
419         case tpo_union:
420                 gen_struct_union_type(env, tp);
421                 break;
422
423         case tpo_enumeration:
424                 gen_enum_type(env->h, tp);
425                 break;
426
427         case tpo_primitive:
428                 gen_primitive_type(env->h, tp);
429                 break;
430
431         case tpo_method:
432                 gen_method_type(env, tp);
433                 break;
434
435         case tpo_array:
436                 gen_array_type(env, tp);
437                 break;
438
439         case tpo_pointer:
440                 gen_pointer_type(env, tp);
441                 break;
442
443         case tpo_unknown:
444                 /* the unknown type: ignore */
445                 SET_TYPE_READY(tp);
446                 break;
447         default:
448                 assert(! "Unknown tpop code");
449         }  /* switch */
450 }  /* walk_type */
451
452 /**
453  * generate declaration for all types
454  */
455 static void finish_types(wenv_t *env)
456 {
457         waitq *wq = env->wq;
458         ir_type *tp;
459
460         while (! waitq_empty(wq)) {
461                 tp = waitq_get(wq);
462                 if (IS_TYPE_READY(tp))
463                         continue;
464
465                 switch (get_type_tpop_code(tp)) {
466                 case tpo_method:
467                         gen_method_type(env, tp);
468                         break;
469                 case tpo_class:
470                 case tpo_union:
471                 case tpo_struct:
472                         gen_struct_union_type(env, tp);
473                         break;
474                 case tpo_enumeration:
475                         gen_enum_type(env->h, tp);
476                         break;
477                 case tpo_primitive:
478                         gen_primitive_type(env->h, tp);
479                         break;
480                 case tpo_array:
481                         gen_array_type(env, tp);
482                         break;
483                 case tpo_pointer:
484                         gen_pointer_type(env, tp);
485                         break;
486                 case tpo_unknown:
487                         /* the unknown type: ignore */
488                         SET_TYPE_READY(tp);
489                         break;
490                 default:
491                         assert(! "Unknown tpop code");
492                 }  /* switch */
493         }  /* while */
494 }  /* finish_types */
495
496 /**
497  * generate all types.
498  */
499 static void gen_types(stabs_handle *h) {
500         wenv_t env;
501
502         env.h  = h;
503         env.wq = new_waitq();
504         type_walk(NULL, walk_type, &env);
505         finish_types(&env);
506         del_waitq(env.wq);
507 }  /* gen_types */
508
509
510 /* -------------------------- I/F ----------------------------- */
511
512 /**
513  * start a new source object (compilation unit)
514  */
515 static void stabs_so(dbg_handle *handle, const char *filename) {
516         stabs_handle *h = (stabs_handle *)handle;
517         h->main_file = h->curr_file = filename;
518         fprintf(h->f, "\t.stabs\t\"%s\",%d,0,0,.Ltext0\n", filename, N_SO);
519 }  /* stabs_so */
520
521 /**
522  * end an include file
523  */
524 static void stabs_include_end(dbg_handle *handle) {
525         stabs_handle *h = (stabs_handle *)handle;
526         h->curr_file = h->main_file;
527 }  /* stabs_include_end */
528
529 /**
530  * start an include file
531  */
532 static void stabs_include_begin(dbg_handle *handle, const char *filename) {
533         stabs_handle *h = (stabs_handle *)handle;
534         if (h->main_file != h->curr_file)
535                 stabs_include_end(handle);
536         h->curr_file = filename;
537         fprintf(h->f, "\t.stabs\t\"%s\",%d,0,0,0\n", filename, N_SOL);
538 }  /* stabs_include_begin */
539
540 /**
541  * Main Program
542  */
543 static void stabs_main_program(dbg_handle *handle) {
544         stabs_handle *h = (stabs_handle *)handle;
545         ir_graph *irg = get_irp_main_irg();
546         if (irg) {
547                 fprintf(h->f, "\t.stabs\t\"%s\",%d,0,0,0\n", get_entity_name(get_irg_entity(irg)), N_MAIN);
548         }
549 }  /* stabs_main_program */
550
551 /**
552  * prints a line number
553  */
554 static void stabs_line(dbg_handle *handle, unsigned lineno, const char *address) {
555         stabs_handle *h = (stabs_handle *)handle;
556         fprintf(h->f, "\t.stabn\t%d, 0, %u, %s-%s\n", N_SLINE, lineno, address, get_entity_ld_name(h->cur_ent));
557 }  /* stabs_line */
558
559 /**
560  * dump the stabs for a method begin
561  */
562 static void stabs_method_begin(dbg_handle *handle, ir_entity *ent, const be_stack_layout_t *layout) {
563         stabs_handle *h = (stabs_handle *)handle;
564         ir_type      *mtp, *rtp;
565         unsigned     type_num;
566         int          i, n, between_size;
567
568         h->cur_ent = ent;
569         h->layout  = layout;
570
571         /* create the method entry */
572         mtp = get_entity_type(ent);
573         if (is_lowered_type(mtp))
574                 mtp = get_associated_type(mtp);
575         if (get_method_n_ress(mtp) > 0)
576                 rtp = get_method_res_type(mtp, 0);
577         else
578                 rtp = NULL;
579         type_num = get_type_number(h, rtp);
580         fprintf(h->f, "\t.stabs\t\"%s:%c%u\",%u,0,0,%s\n",
581                 get_entity_name(ent),
582                 get_entity_visibility(ent) == visibility_external_visible ? 'F' : 'f',
583                 type_num,
584                 N_FUN,
585                 get_entity_ld_name(ent));
586
587         /* create parameter entries */
588         between_size = get_type_size_bytes(layout->between_type);
589         for (i = 0, n = get_method_n_params(mtp); i < n; ++i) {
590                 ir_type *ptp      = get_method_param_type(mtp, i);
591         const char *name  = get_method_param_name(mtp, i);
592                 unsigned type_num = get_type_number(h, ptp);
593         char buf[16];
594         int ofs = 0;
595                 ir_entity *stack_ent;
596
597         if (! name) {
598           snprintf(buf, sizeof(buf), "arg%d", i);
599           name = buf;
600         }
601                 /* check if this parameter has a stack entity. If it has, it
602                    it transmitted on the stack, else in a register */
603                 stack_ent = layout->param_map[i];
604                 if (stack_ent) {
605                         ofs = get_entity_offset(stack_ent) + between_size;
606                 }
607                 fprintf(h->f, "\t.stabs\t\"%s:p%u\",%d,0,0,%d\n", name, type_num, N_PSYM, ofs);
608         }
609 }  /* stabs_method_begin */
610
611 /**
612  * dump the stabs for a method end
613  */
614 static void stabs_method_end(dbg_handle *handle) {
615         stabs_handle            *h = (stabs_handle *)handle;
616         ir_entity               *ent = h->cur_ent;
617         const be_stack_layout_t *layout = h->layout;
618         const char              *ld_name = get_entity_ld_name(ent);
619         int                     i, n, frame_size;
620         static unsigned         scope_nr = 0;
621
622         /* create entries for automatic variables on the stack */
623         frame_size = get_type_size_bytes(layout->frame_type);
624         for (i = 0, n = get_compound_n_members(layout->frame_type); i < n; ++i) {
625                 ir_entity *ent = get_compound_member(layout->frame_type, i);
626                 ir_type *tp;
627                 int ofs;
628                 unsigned type_num;
629
630                 /* ignore spill slots and other helper objects */
631                 if (is_entity_compiler_generated(ent))
632                         continue;
633
634                 tp = get_entity_type(ent);
635                 /* should not happen in backend but ... */
636                 if (is_Method_type(tp))
637                         continue;
638                 type_num = get_type_number(h, tp);
639                 ofs      = -frame_size + get_entity_offset(ent);
640
641                 fprintf(h->f, "\t.stabs\t\"%s:%u\",%d,0,0,%d\n",
642                         get_entity_name(ent), type_num, N_LSYM, ofs);
643         }
644         /* we need a lexical block here */
645         fprintf(h->f, "\t.stabn\t%d,0,0,%s-%s\n", N_LBRAC, ld_name, ld_name);
646         fprintf(h->f, "\t.stabn\t%d,0,0,.Lscope%u-%s\n", N_RBRAC, scope_nr, ld_name);
647         fprintf(h->f, ".Lscope%u:\n", scope_nr);
648         ++scope_nr;
649
650         h->cur_ent = NULL;
651         h->layout  = NULL;
652 }  /* stabs_method_end */
653
654 /**
655  * dump types
656  */
657 static void stabs_types(dbg_handle *handle) {
658         stabs_handle *h = (stabs_handle *)handle;
659
660         /* allocate the zero for the void type */
661         h->next_type_nr++;
662         gen_void_type(h);
663         gen_types(h);
664 }  /* stabs_types */
665
666 /**
667  * dump a variable in the global type
668  */
669 static void stabs_variable(dbg_handle *handle, struct obstack *obst, ir_entity *ent) {
670         stabs_handle *h = (stabs_handle *)handle;
671         unsigned tp_num = get_type_number(h, get_entity_type(ent));
672         char buf[1024];
673
674         if (get_entity_visibility(ent) == visibility_external_visible) {
675                 /* a global variable */
676                 snprintf(buf, sizeof(buf), "\t.stabs\t\"%s:G%u\",%d,0,0,0\n",
677                         get_entity_name(ent), tp_num, N_GSYM);
678         } else { /* some kind of local */
679                 ir_variability variability = get_entity_variability(ent);
680                 int kind = N_STSYM;
681
682                 if (variability == variability_uninitialized)
683                         kind = N_LCSYM;
684                 else if (variability == variability_constant)
685                         kind = N_ROSYM;
686                 snprintf(buf, sizeof(buf), "\t.stabs\t\"%s:S%u\",%d,0,0,%s\n",
687                         get_entity_name(ent), tp_num, kind, get_entity_ld_name(ent));
688         }
689         buf[sizeof(buf) - 1] = '\0';
690
691         if (obst)
692                 obstack_printf(obst, "%s", buf);
693         else
694                 fprintf(h->f, "%s", buf);
695 }  /* stabs_variable */
696
697 /**
698  * Close the stabs handler.
699  */
700 static void stabs_close(dbg_handle *handle) {
701         stabs_handle *h = (stabs_handle *)handle;
702         pmap_destroy(h->type_map);
703         free(h);
704 }  /* stabs_close */
705
706 /** The stabs operations. */
707 static const debug_ops stabs_ops = {
708         stabs_close,
709         stabs_so,
710     stabs_include_begin,
711     stabs_include_end,
712         stabs_main_program,
713         stabs_method_begin,
714         stabs_method_end,
715         stabs_line,
716         stabs_types,
717         stabs_variable
718 };
719
720 /* Opens the NULL handler */
721 dbg_handle *be_nulldbg_open(void) {
722         return NULL;
723 }  /* be_nulldbg_open */
724
725 /* Opens a stabs handler */
726 dbg_handle *be_stabs_open(FILE *out) {
727         stabs_handle *h = xmalloc(sizeof(*h));
728
729         h->base.ops     = &stabs_ops;
730         h->f            = out;
731         h->cur_ent      = NULL;
732         h->layout       = NULL;
733         h->next_type_nr = 0;
734         h->type_map     = pmap_create_ex(64);
735         h->main_file    = NULL;
736         h->curr_file    = NULL;
737
738         return &h->base;
739 }  /* stabs_open */
740
741 /** close a debug handler. */
742 void be_dbg_close(dbg_handle *h) {
743         if (h && h->ops->close)
744                 h->ops->close(h);
745 }  /* be_dbg_close */
746
747 /**
748  * start a new source object (compilation unit)
749  */
750 void be_dbg_so(dbg_handle *h, const char *filename) {
751         if (h && h->ops->so)
752                 h->ops->so(h, filename);
753 }  /* be_dbg_begin */
754
755 /**
756  * start an include file
757  */
758 void be_dbg_include_begin(dbg_handle *h, const char *filename) {
759         if (h && h->ops->include_begin)
760                 h->ops->include_begin(h, filename);
761 }  /* stabs_include_begin */
762
763 /**
764  * end an include file
765  */
766 void be_dbg_include_end(dbg_handle *h) {
767         if (h && h->ops->include_end)
768                 h->ops->include_end(h);
769 }  /* stabs_include_end */
770
771 /**
772  * Main program
773  */
774 void be_dbg_main_program(dbg_handle *h) {
775         if (h && h->ops->main_program)
776                 h->ops->main_program(h);
777 }  /* be_dbg_main_program */
778
779 /** debug for a method begin */
780 void be_dbg_method_begin(dbg_handle *h, ir_entity *ent, const be_stack_layout_t *layout) {
781         if (h && h->ops->method_begin)
782                 h->ops->method_begin(h, ent, layout);
783 }  /* be_dbg_method_begin */
784
785 /** debug for a method end */
786 void be_dbg_method_end(dbg_handle *h) {
787         if (h && h->ops->method_end)
788                 h->ops->method_end(h);
789 }  /* be_dbg_method_end */
790
791 /** debug for line number */
792 void be_dbg_line(dbg_handle *h, unsigned lineno, const char *address) {
793         if (h && h->ops->line)
794                 h->ops->line(h, lineno, address);
795 }  /* be_dbg_line */
796
797 /** dump types */
798 void be_dbg_types(dbg_handle *h) {
799         if (h && h->ops->types)
800                 h->ops->types(h);
801 }  /* be_dbg_types */
802
803 /** dump a global */
804 void be_dbg_variable(dbg_handle *h, struct obstack *obst, ir_entity *ent) {
805         if (h && h->ops->variable)
806                 h->ops->variable(h, obst, ent);
807 }  /* be_dbg_variable */