set debug information for be_Call
[libfirm] / ir / be / TEMPLATE / TEMPLATE_gen_decls.c
1 /**
2  * Dumps global variables and constants as TEMPLATE assembler.
3  * @date 14.02.2006
4  * @version $Id$
5  */
6
7 #include <stdlib.h>
8 #include <string.h>
9 #include <ctype.h>
10 #include <assert.h>
11
12 #include "xmalloc.h"
13 #include <obstack.h>
14
15 #ifdef obstack_chunk_alloc
16 # undef obstack_chunk_alloc
17 # define obstack_chunk_alloc xmalloc
18 #else
19 # define obstack_chunk_alloc xmalloc
20 # define obstack_chunk_free free
21 #endif
22
23 #include "tv.h"
24 #include "irnode.h"
25 #include "entity.h"
26 #include "irprog.h"
27
28 #include "TEMPLATE_gen_decls.h"
29
30 /************************************************************************/
31
32 /*
33  * returns the highest bit value
34  */
35 static unsigned highest_bit(unsigned v)
36 {
37   int res = -1;
38
39   if (v >= (1U << 16U)) {
40     res += 16;
41     v >>= 16;
42   }
43   if (v >= (1U << 8U)) {
44     res += 8;
45     v >>= 8;
46   }
47   if (v >= (1U << 4U)) {
48     res += 4;
49     v >>= 4;
50   }
51   if (v >= (1U << 2U)) {
52     res += 2;
53     v >>= 2;
54   }
55   if (v >= (1U << 1U)) {
56     res += 1;
57     v >>= 1;
58   }
59   if (v >= 1)
60     res += 1;
61
62   return res;
63 }
64
65 /*
66  * output the alignment
67  */
68 static void TEMPLATE_dump_align(struct obstack *obst, int align)
69 {
70   int h = highest_bit(align);
71
72   if ((1 << h) < align)
73     ++h;
74   align = (1 << h);
75
76   if (align > 1)
77     obstack_printf(obst, "\t.align %d\n", align);
78 }
79
80 static void dump_arith_tarval(struct obstack *obst, tarval *tv, int bytes)
81 {
82   switch (bytes) {
83
84   case 1:
85     obstack_printf(obst, "0x%02x", get_tarval_sub_bits(tv, 0));
86     break;
87
88   case 2:
89     obstack_printf(obst, "0x%02x%02x", get_tarval_sub_bits(tv, 1), get_tarval_sub_bits(tv, 0));
90     break;
91
92   case 4:
93     obstack_printf(obst, "0x%02x%02x%02x%02x",
94         get_tarval_sub_bits(tv, 3), get_tarval_sub_bits(tv, 2), get_tarval_sub_bits(tv, 1), get_tarval_sub_bits(tv, 0));
95     break;
96
97   case 8:
98     obstack_printf(obst, "0x%02x%02x%02x%02x%02x%02x%02x%02x",
99         get_tarval_sub_bits(tv, 7), get_tarval_sub_bits(tv, 6), get_tarval_sub_bits(tv, 5), get_tarval_sub_bits(tv, 4),
100         get_tarval_sub_bits(tv, 3), get_tarval_sub_bits(tv, 2), get_tarval_sub_bits(tv, 1), get_tarval_sub_bits(tv, 0));
101     break;
102
103   case 10:
104   case 12:
105     break;
106
107   default:
108     fprintf(stderr, "Try to dump an tarval with %d bytes\n", bytes);
109     assert(0);
110   }
111 }
112
113 /*
114  * dump an arithmetic tarval
115  */
116 static void TEMPLATE_dump_arith_tarval(struct obstack *obst, tarval *tv, int bytes)
117 {
118   switch (bytes) {
119
120   case 1:
121     obstack_printf(obst, "\t.byte\t");
122     break;
123
124   case 2:
125     obstack_printf(obst, "\t.value\t");
126     break;
127
128   case 4:
129     obstack_printf(obst, "\t.long\t");
130     break;
131
132   case 8:
133     obstack_printf(obst, "\t.quad\t");
134     break;
135
136   case 10:
137   case 12:
138     break;
139
140   default:
141     fprintf(stderr, "Try to dump an tarval with %d bytes\n", bytes);
142     assert(0);
143   }
144   dump_arith_tarval(obst, tv, bytes);
145 }
146
147
148 /*
149  * dump an atomic value
150  */
151 static void do_dump_atomic_init(struct obstack *obst, ir_node *init)
152 {
153   ir_mode *mode = get_irn_mode(init);
154   int bytes     = get_mode_size_bytes(mode);
155   tarval *tv;
156
157   switch (get_irn_opcode(init)) {
158
159   case iro_Cast:
160     do_dump_atomic_init(obst, get_Cast_op(init));
161     return;
162
163   case iro_Conv:
164     do_dump_atomic_init(obst, get_Conv_op(init));
165     return;
166
167   case iro_Const:
168     tv = get_Const_tarval(init);
169
170     /* beware of old stuff */
171     assert(! mode_is_reference(mode));
172
173     /* it's a arithmetic value */
174     dump_arith_tarval(obst, tv, bytes);
175     return;
176
177   case iro_SymConst:
178     switch (get_SymConst_kind(init)) {
179     case symconst_addr_name:
180       obstack_printf(obst, "%s", get_id_str(get_SymConst_name(init)));
181       break;
182
183     case symconst_addr_ent:
184       obstack_printf(obst, "%s", get_entity_ld_name(get_SymConst_entity(init)));
185       break;
186
187     case symconst_type_size:
188       obstack_printf(obst, "%d", get_type_size_bytes(get_SymConst_type(init)));
189       break;
190
191     case symconst_type_align:
192       obstack_printf(obst, "%d", get_type_alignment_bytes(get_SymConst_type(init)));
193       break;
194
195     default:
196       assert(0 && "dump_atomic_init(): don't know how to init from this SymConst");
197     }
198     return;
199
200   case iro_Add:
201     do_dump_atomic_init(obst, get_Add_left(init));
202     obstack_printf(obst, " + ");
203     do_dump_atomic_init(obst, get_Add_right(init));
204     return;
205
206   case iro_Sub:
207     do_dump_atomic_init(obst, get_Sub_left(init));
208     obstack_printf(obst, " - ");
209     do_dump_atomic_init(obst, get_Sub_right(init));
210     return;
211
212   case iro_Mul:
213     do_dump_atomic_init(obst, get_Mul_left(init));
214     obstack_printf(obst, " * ");
215     do_dump_atomic_init(obst, get_Mul_right(init));
216     return;
217
218   default:
219     assert(0 && "dump_atomic_init(): unknown IR-node");
220   }
221 }
222
223 /*
224  * dump an atomic value
225  */
226 static void dump_atomic_init(struct obstack *obst, ir_node *init)
227 {
228   ir_mode *mode = get_irn_mode(init);
229   int bytes     = get_mode_size_bytes(mode);
230
231   switch (bytes) {
232
233   case 1:
234     obstack_printf(obst, "\t.byte\t");
235     break;
236
237   case 2:
238     obstack_printf(obst, "\t.value\t");
239     break;
240
241   case 4:
242     obstack_printf(obst, "\t.long\t");
243     break;
244
245   case 8:
246     obstack_printf(obst, "\t.quad\t");
247     break;
248
249   case 10:
250   case 12:
251     /* handled in arith */
252     break;
253
254   default:
255     fprintf(stderr, "Try to dump an tarval with %d bytes\n", bytes);
256     assert(0);
257   }
258
259   do_dump_atomic_init(obst, init);
260   obstack_printf(obst, "\n");
261 }
262
263 /************************************************************************/
264 /* Routines to dump global variables                                    */
265 /************************************************************************/
266
267 /**
268  * Determine if an entity is a string constant
269  * @param ent The entity
270  * @return 1 if it is a string constant, 0 otherwise
271  */
272 static int ent_is_string_const(entity *ent)
273 {
274   int res = 0;
275   ir_type *ty;
276
277   ty = get_entity_type(ent);
278
279   /* if it's an array */
280   if (is_Array_type(ty)) {
281     ir_type *elm_ty = get_array_element_type(ty);
282
283     /* and the array's element type is primitive */
284     if (is_Primitive_type(elm_ty)) {
285       ir_mode *mode = get_type_mode(elm_ty);
286
287       /*
288        * and the mode of the element type is an int of
289        * the same size as the byte mode
290        */
291       if (mode_is_int(mode)
292          && get_mode_size_bits(mode) == get_mode_size_bits(mode_Bs))
293       {
294         int i, c, n;
295
296         n = get_compound_ent_n_values(ent);
297         for (i = 0; i < n; ++i) {
298           ir_node *irn = get_compound_ent_value(ent, i);
299           if(get_irn_opcode(irn) != iro_Const)
300             return 0;
301
302           c = (int) get_tarval_long(get_Const_tarval(irn));
303
304           if((i < n - 1 && !(isgraph(c) || isspace(c)))
305              || (i == n - 1 && c != '\0'))
306             return 0;
307         }
308
309         res = 1;
310       }
311     }
312   }
313
314   return res;
315 }
316
317 /**
318  * Dump a atring constant.
319  * No checks are made!!
320  * @param obst The obst to dump on.
321  * @param ent The entity to dump.
322  */
323 static void dump_string_cst(struct obstack *obst, entity *ent)
324 {
325   int i, n;
326
327   obstack_printf(obst, "\t.string \"");
328   n = get_compound_ent_n_values(ent);
329
330   for (i = 0; i < n-1; ++i) {
331     ir_node *irn;
332     int c;
333
334     irn = get_compound_ent_value(ent, i);
335     c = (int) get_tarval_long(get_Const_tarval(irn));
336
337     switch (c) {
338     case '"' : obstack_printf(obst, "\\\""); break;
339     case '\n': obstack_printf(obst, "\\n"); break;
340     case '\r': obstack_printf(obst, "\\r"); break;
341     case '\t': obstack_printf(obst, "\\t"); break;
342     default  :
343       if (isprint(c))
344         obstack_printf(obst, "%c", c);
345       else
346         obstack_printf(obst, "%O", c);
347       break;
348     }
349   }
350   obstack_printf(obst, "\"\n");
351 }
352
353 struct arr_info {
354   int n_elems;
355   int visit_cnt;
356   int size;
357 };
358
359 /*
360  * Dumps the initialization of global variables that are not
361  * "uninitialized".
362  */
363 static void dump_global(struct obstack *rdata_obstack, struct obstack *data_obstack, struct obstack *comm_obstack, entity *ent)
364 {
365   ir_type *ty         = get_entity_type(ent);
366   const char *ld_name = get_entity_ld_name(ent);
367   int align, h;
368   struct obstack *obst = data_obstack;
369
370   /*
371    * FIXME: did NOT work for partly constant values
372    */
373   if (! is_Method_type(ty)) {
374     ent_variability variability = get_entity_variability(ent);
375     visibility visibility = get_entity_visibility(ent);
376
377     if (variability == variability_constant) {
378       /* a constant entity, put it on the rdata */
379       obst = rdata_obstack;
380     }
381
382     /* check, wether it is initialized, if yes create data */
383     if (variability != variability_uninitialized) {
384       if (visibility == visibility_external_visible) {
385         obstack_printf(obst, ".globl\t%s\n", ld_name);
386       }
387       obstack_printf(obst, "\t.type\t%s,@object\n", ld_name);
388       obstack_printf(obst, "\t.size\t%s,%d\n", ld_name, (get_type_size_bits(ty) + 7) >> 3);
389
390       align = get_type_alignment_bytes(ty);
391       TEMPLATE_dump_align(obst, align);
392
393       obstack_printf(obst, "%s:\n", ld_name);
394
395       if (is_atomic_type(ty)) {
396         if (get_entity_visibility(ent) != visibility_external_allocated)
397           dump_atomic_init(obst, get_atomic_ent_value(ent));
398       }
399       else {
400         int i, size = 0;
401
402         if (ent_is_string_const(ent)) {
403           dump_string_cst(obst, ent);
404         }
405         else if (is_Array_type(ty)) {
406           int filler;
407
408           /* potential spare values should be already included! */
409           for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
410             entity *step = get_compound_ent_value_member(ent, i);
411             ir_type *stype = get_entity_type(step);
412
413             if (get_type_mode(stype)) {
414               int align = (get_type_alignment_bits(stype) + 7) >> 3;
415               int n     = size % align;
416
417               if (n > 0) {
418                 obstack_printf(obst, "\t.zero\t%d\n", align - n);
419                 size += align - n;
420               }
421             }
422             dump_atomic_init(obst, get_compound_ent_value(ent, i));
423             size += get_type_size_bytes(stype);
424           }
425           filler = get_type_size_bytes(ty) - size;
426
427           if (filler > 0)
428             obstack_printf(obst, "\t.zero\t%d\n", filler);
429         }
430         else if (is_compound_type(ty)) {
431           ir_node **vals;
432           int type_size, j;
433
434           /* Compound entities are NOT sorted.
435            * The sorting strategy used doesn't work for `value' compound fields nor
436            * for partially_constant entities.
437            */
438
439           /*
440            * in the worst case, every entity allocates one byte, so the type
441            * size should be equal or bigger the number of fields
442            */
443           type_size = get_type_size_bytes(ty);
444           vals      = xcalloc(type_size, sizeof(*vals));
445
446           /* collect the values and store them at the offsets */
447           for(i = 0; i < get_compound_ent_n_values(ent); ++i) {
448             int                 graph_length, aipos, offset;
449             struct arr_info     *ai;
450             int                 all_n = 1;
451             compound_graph_path *path = get_compound_ent_value_path(ent, i);
452
453             /* get the access path to the costant value */
454             graph_length = get_compound_graph_path_length(path);
455             ai = xcalloc(graph_length, sizeof(struct arr_info));
456
457             /* We wanna know how many arrays are on the path to the entity. We also have to know how
458              * many elements each array holds to calculate the offset for the entity. */
459             for (j = 0; j < graph_length; j++) {
460               entity  *step      = get_compound_graph_path_node(path, j);
461               ir_type *step_type = get_entity_type(step);
462               int     ty_size    = (get_type_size_bits(step_type) + 7) >> 3;
463               int     k, n       = 0;
464
465               if (is_Array_type(step_type))
466                 for (k = 0; k < get_array_n_dimensions(step_type); k++)
467                   n += get_tarval_long(get_Const_tarval(get_array_upper_bound(step_type, k)));
468               if (n) all_n *= n;
469               ai[j].n_elems = n ? all_n + 1 : 0;
470               ai[j].visit_cnt = 0;
471               ai[j].size = ty_size;
472             }
473
474             aipos = graph_length - 1;
475             if (aipos) aipos--;
476
477             for (offset = j = 0; j < graph_length; j++) {
478               entity *step       = get_compound_graph_path_node(path, j);
479               ir_type *step_type = get_entity_type(step);
480               int ent_ofs        = get_entity_offset_bytes(step);
481               int stepsize       = 0;
482
483               /* add all positive offsets (= offsets in structs) */
484               if (ent_ofs >= 0) offset += ent_ofs;
485
486               if (j == graph_length - 1) {
487                 stepsize = (get_type_size_bits(step_type) + 7) >> 3;
488
489                 /* Search the next free position in vals depending on the information from above (ai). */
490                 while (vals[offset]) {
491                   if (ai[aipos].visit_cnt < ai[aipos].n_elems) {
492                     offset += stepsize;
493                     ai[aipos].visit_cnt++;
494                   }
495                   else
496                     while (aipos >= 0 && ai[aipos].visit_cnt == ai[aipos].n_elems) {
497                       stepsize = ai[aipos--].size;
498                       offset  += stepsize;
499                   }
500                 }
501
502                 assert(aipos >= 0 && "couldn't store entity");
503                 vals[offset] = get_compound_ent_value(ent, i);
504               }
505             }
506
507             free(ai);
508           }
509
510           /* now write them sorted */
511           for(i = 0; i < type_size; ) {
512             if (vals[i]) {
513               dump_atomic_init(obst, vals[i]);
514               i += (get_mode_size_bytes(get_irn_mode(vals[i])));
515             }
516             else {
517               /* a gap */
518               obstack_printf(obst, "\t.byte\t0\n");
519               ++i;
520             }
521           }
522           free(vals);
523         }
524         else {
525           assert(0 && "unsupported type");
526         }
527       }
528       obstack_printf(obst, "\n");
529     }
530     else if (visibility != visibility_external_allocated) {
531       if (visibility == visibility_local) {
532         obstack_printf(comm_obstack, "\t.local\t%s\n", ld_name);
533       }
534
535       /* calculate the alignment */
536       align = get_type_alignment_bytes(ty);
537       h = highest_bit(align);
538
539       if ((1 << h) < align)
540         ++h;
541       align = (1 << h);
542
543       if (align < 1)
544         align = 1;
545
546       obstack_printf(comm_obstack, "\t.comm\t%s,%d,%d\n", ld_name, (get_type_size_bits(ty) + 7) >> 3, align);
547     }
548   }
549 }
550
551 /*
552  * Dumps declarations of global variables and the initialization code.
553  */
554 void TEMPLATE_dump_globals(struct obstack *rdata_obstack, struct obstack *data_obstack, struct obstack *comm_obstack)
555 {
556   ir_type *gt = get_glob_type();
557   int i, n = get_class_n_members(gt);
558
559   for (i = 0; i < n; i++)
560     dump_global(rdata_obstack, data_obstack, comm_obstack, get_class_member(gt, i));
561 }
562
563 /************************************************************************/
564
565 void TEMPLATE_gen_decls(FILE *out) {
566   struct obstack rodata, data, comm;
567   int    size;
568   char   *cp;
569
570   obstack_init(&rodata);
571   obstack_init(&data);
572   obstack_init(&comm);
573
574   TEMPLATE_dump_globals(&rodata, &data, &comm);
575
576   size = obstack_object_size(&data);
577   cp   = obstack_finish(&data);
578   if (size > 0) {
579     fprintf(out, "\t.data\n");
580     fwrite(cp, 1, size, out);
581   }
582
583   size = obstack_object_size(&rodata);
584   cp   = obstack_finish(&rodata);
585   if (size > 0) {
586     fprintf(out, "\t.section\t.rodata\n");
587     fwrite(cp, 1, size, out);
588   }
589
590   size = obstack_object_size(&comm);
591   cp   = obstack_finish(&comm);
592   if (size > 0) {
593     fprintf(out, "\t.common\n");
594     fwrite(cp, 1, size, out);
595   }
596
597   obstack_free(&rodata, NULL);
598   obstack_free(&data, NULL);
599   obstack_free(&comm, NULL);
600 }