metamodel: MMLocalClass::[] aborts if no global class
[nit.git] / src / compiling / compiling_global.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Compute and generate tables for classes and modules.
18 package compiling_global
19
20 #import compiling_base
21 private import compiling_methods
22 private import syntax
23
24 # Something that store color of table elements
25 class ColorContext
26 attr _colors: HashMap[TableElt, Int] = null
27
28 # The color of a table element.
29 meth color(e: TableElt): Int
30 do
31 return _colors[e]
32 end
33
34 # Is a table element already colored?
35 meth has_color(e: TableElt): Bool
36 do
37 return _colors != null and _colors.has_key(e)
38 end
39
40 # Assign a color to a table element.
41 meth color=(e: TableElt, c: Int)
42 do
43 if _colors == null then _colors = new HashMap[TableElt, Int]
44 _colors[e] = c
45 var idx = c
46 for i in [0..e.length[ do
47 _colors[e.item(i)] = idx
48 idx = idx + 1
49 end
50 end
51 end
52
53 # All information and results of the global analysis.
54 class GlobalAnalysis
55 special ColorContext
56 # Associate global classes to compiled classes
57 readable attr _compiled_classes: HashMap[MMGlobalClass, CompiledClass]
58
59 # The main module of the program globally analysed
60 readable attr _module: MMModule
61
62 # FIXME: do something better.
63 readable writable attr _max_class_table_length: Int
64
65 init(module: MMSrcModule)
66 do
67 _compiled_classes = new HashMap[MMGlobalClass, CompiledClass]
68 _module = module
69 end
70 end
71
72 redef class CompilerVisitor
73 # The global analysis result, if any
74 readable writable attr _global_analysis: GlobalAnalysis
75 end
76
77 # A compiled class is a class in a program
78 class CompiledClass
79 special ColorContext
80 # The corresponding local class in the main module of the prgram
81 readable attr _local_class: MMLocalClass
82
83 # The identifier of the class
84 readable writable attr _id: Int
85
86 # The full class table of the class
87 readable writable attr _class_table: Array[TableElt]
88
89 # The full instance table of the class
90 readable writable attr _instance_table: Array[TableElt]
91
92 # The proper class table part (no superclasses but all refinements)
93 readable writable attr _class_layout: TableEltComposite
94
95 # The proper instance table part (no superclasses but all refinements)
96 readable writable attr _instance_layout: TableEltComposite
97
98 init(c: MMLocalClass) do _local_class = c
99 end
100
101 redef class MMSrcLocalClass
102 # The table element of the subtype check
103 readable attr _class_color_pos: TableEltClassColor
104
105 # The proper local class table part (nor superclasses nor refinments)
106 readable attr _class_layout: Array[TableElt]
107
108 # The proper local instance table part (nor superclasses nor refinments)
109 readable attr _instance_layout: Array[TableElt]
110
111 # Build the local layout of the class and feed the module table
112 meth build_layout_in(tc: ToolContext, module_table: Array[ModuleTableElt])
113 do
114 var clt = new Array[TableElt]
115 _class_layout = clt
116 var ilt = new Array[TableElt]
117 _instance_layout = ilt
118
119 if global.intro == self then
120 module_table.add(new TableEltClassId(self))
121 _class_color_pos = new TableEltClassColor(self)
122 module_table.add(_class_color_pos)
123 clt.add(new TableEltClassInitTable(self))
124 end
125 for p in src_local_properties do
126 var pg = p.global
127 if pg.intro == p then
128 if p isa MMSrcAttribute then
129 ilt.add(new TableEltAttr(p))
130 else if p isa MMSrcMethod then
131 clt.add(new TableEltMeth(p))
132 end
133 end
134 if p isa MMSrcMethod and p.need_super then
135 clt.add(new TableEltSuper(p))
136 end
137 end
138
139 if not ilt.is_empty then
140 var teg = new ModuleTableEltGroup
141 teg.elements.append(ilt)
142 module_table.add(teg)
143 end
144
145 if not clt.is_empty then
146 var teg = new ModuleTableEltGroup
147 teg.elements.append(clt)
148 module_table.add(teg)
149 end
150 end
151 end
152
153 redef class MMSrcModule
154 # The local table of the module (refers things introduced in the module)
155 attr _local_table: Array[ModuleTableElt]
156
157 # Builds the local tables and local classes layouts
158 meth local_analysis(tc: ToolContext)
159 do
160 var lt = new Array[ModuleTableElt]
161 _local_table = lt
162 for c in src_local_classes do
163 c.build_layout_in(tc, lt)
164 end
165 end
166
167 # Do the complete global analysis
168 meth global_analysis(cctx: ToolContext): GlobalAnalysis
169 do
170 #print "Do the complete global analysis"
171 var ga = new GlobalAnalysis(self)
172 var smallest_classes = new Array[MMLocalClass]
173 var global_properties = new HashSet[MMGlobalProperty]
174 var ctab = new Array[TableElt]
175 var itab = new Array[TableElt]
176
177 ctab.add(new TableEltClassSelfId)
178 itab.add(new TableEltVftPointer)
179
180 var pclassid = -1
181 var classid = 3
182
183 # We have to work on ALL the classes of the module
184 var classes = new Array[MMLocalClass]
185 for c in local_classes do
186 c.compute_super_classes
187 classes.add(c)
188 end
189 (new ClassSorter).sort(classes)
190
191 for c in classes do
192 # Finish processing the class (if invisible)
193 c.compute_ancestors
194 c.inherit_global_properties
195
196 # Associate a CompiledClass to the class
197 var cc = new CompiledClass(c)
198 ga.compiled_classes[c.global] = cc
199
200 # Assign a unique class identifier
201 # (negative are for primitive classes)
202 var gc = c.global
203 var bm = gc.module
204 if c.primitive_info != null then
205 cc.id = pclassid
206 pclassid = pclassid - 4
207 else
208 cc.id = classid
209 classid = classid + 4
210 end
211
212 # Register is the class is a leaf
213 if c.cshe.direct_smallers.is_empty then
214 smallest_classes.add(c)
215 end
216
217 # Store the colortableelt in the class table pool
218 var bc = c.global.intro
219 assert bc isa MMSrcLocalClass
220 ctab.add(bc.class_color_pos)
221 end
222
223 # Compute core and crown classes for colorization
224 var crown_classes = new HashSet[MMLocalClass]
225 var core_classes = new HashSet[MMLocalClass]
226 for c in smallest_classes do
227 while c.cshe.direct_greaters.length == 1 do
228 c = c.cshe.direct_greaters.first
229 end
230 crown_classes.add(c)
231 core_classes.add_all(c.cshe.greaters_and_self)
232 end
233 #print("nbclasses: {classes.length} leaves: {smallest_classes.length} crown: {crown_classes.length} core: {core_classes.length}")
234
235 # Colorize core color for typechecks
236 colorize(ga, ctab, crown_classes, 0)
237
238 # Compute tables for typechecks
239 var maxcolor = 0
240 for c in classes do
241 var cc = ga.compiled_classes[c.global]
242 if core_classes.has(c) then
243 # For core classes, just build the table
244 cc.class_table = build_tables(ga, c, ctab)
245 if maxcolor < cc.class_table.length then maxcolor = cc.class_table.length
246 else
247 # For other classes, it's easier: just append to the parent tables
248 var sc = c.cshe.direct_greaters.first
249 var scc = ga.compiled_classes[sc.global]
250 cc.class_table = scc.class_table.to_a
251 var bc = c.global.intro
252 assert bc isa MMSrcLocalClass
253 var colpos = bc.class_color_pos
254 var colposcolor = cc.class_table.length
255 ga.color(colpos) = colposcolor
256 cc.class_table.add(colpos)
257 if maxcolor < colposcolor then maxcolor = colposcolor
258 end
259 end
260 ga.max_class_table_length = maxcolor + 1
261
262 # Fill class table and instance tables pools
263 for c in classes do
264 var cc = ga.compiled_classes[c.global]
265 var cte = new TableEltComposite(cc)
266 var ite = new TableEltComposite(cc)
267 for sc in c.crhe.greaters_and_self do
268 if sc isa MMSrcLocalClass then
269 cte.add(sc, sc.class_layout)
270 ite.add(sc, sc.instance_layout)
271 end
272 cc.class_layout = cte
273 cc.instance_layout = ite
274 end
275
276 if core_classes.has(c) then
277 if cte.length > 0 then
278 ctab.add(cte)
279 end
280 if ite.length > 0 then
281 itab.add(ite)
282 end
283 end
284 end
285
286 # Colorize all elements in pools tables
287 colorize(ga, ctab, crown_classes, maxcolor+1)
288 colorize(ga, itab, crown_classes, 0)
289
290 # Build class and instance tables now things are colored
291 ga.max_class_table_length = 0
292 for c in classes do
293 var cc = ga.compiled_classes[c.global]
294 if core_classes.has(c) then
295 # For core classes, just build the table
296 cc.class_table = build_tables(ga, c, ctab)
297 cc.instance_table = build_tables(ga, c, itab)
298 else
299 # For other classes, it's easier: just append to the parent tables
300 var sc = c.cshe.direct_greaters.first
301 var scc = ga.compiled_classes[sc.global]
302 cc.class_table = scc.class_table.to_a
303 var bc = c.global.intro
304 assert bc isa MMSrcLocalClass
305 var colpos = bc.class_color_pos
306 cc.class_table[ga.color(colpos)] = colpos
307 while cc.class_table.length <= maxcolor do
308 cc.class_table.add(null)
309 end
310 append_to_table(ga, cc.class_table, cc.class_layout)
311 cc.instance_table = scc.instance_table.to_a
312 append_to_table(ga, cc.instance_table, cc.instance_layout)
313 end
314 end
315
316 return ga
317 end
318
319 private meth append_to_table(cc: ColorContext, table: Array[TableElt], cmp: TableEltComposite)
320 do
321 for j in [0..cmp.length[ do
322 var e = cmp.item(j)
323 cc.color(e) = table.length
324 table.add(e)
325 end
326 end
327
328 private meth build_tables(ga: GlobalAnalysis, c: MMLocalClass, elts: Array[TableElt]): Array[TableElt]
329 do
330 var tab = new HashMap[Int, TableElt]
331 var len = 0
332 for e in elts do
333 if e.is_related_to(c) then
334 var col = ga.color(e)
335 var l = col + e.length
336 tab[col] = e
337 if len < l then
338 len = l
339 end
340 end
341 end
342 var res = new Array[TableElt]
343 var i = 0
344 while i < len do
345 if tab.has_key(i) then
346 var e = tab[i]
347 for j in [0..e.length[ do
348 res[i] = e.item(j)
349 i = i + 1
350 end
351 else
352 res[i] = null
353 i = i + 1
354 end
355 end
356 return res
357 end
358
359 # Perform coloring
360 meth colorize(ga: GlobalAnalysis, elts: Array[TableElt], classes: Collection[MMLocalClass], startcolor: Int)
361 do
362 var colors = new HashMap[Int, Array[TableElt]]
363 var rel_classes = new Array[MMLocalClass]
364 for e in elts do
365 var color = -1
366 var len = e.length
367 if ga.has_color(e) then
368 color = ga.color(e)
369 else
370 rel_classes.clear
371 for c in classes do
372 if e.is_related_to(c) then
373 rel_classes.add(c)
374 end
375 end
376 var trycolor = startcolor
377 while trycolor != color do
378 color = trycolor
379 for c in rel_classes do
380 var idx = 0
381 while idx < len do
382 if colors.has_key(trycolor + idx) and not free_color(colors[trycolor + idx], c) then
383 trycolor = trycolor + idx + 1
384 idx = 0
385 else
386 idx = idx + 1
387 end
388 end
389 end
390 end
391 ga.color(e) = color
392 end
393 for idx in [0..len[ do
394 if colors.has_key(color + idx) then
395 colors[color + idx].add(e)
396 else
397 colors[color + idx] = [e]
398 end
399 end
400 end
401 end
402
403 private meth free_color(es: Array[TableElt], c: MMLocalClass): Bool
404 do
405 for e2 in es do
406 if e2.is_related_to(c) then
407 return false
408 end
409 end
410 return true
411 end
412
413 # Compile module and class tables
414 meth compile_tables_to_c(v: CompilerVisitor)
415 do
416 for m in mhe.greaters_and_self do
417 assert m isa MMSrcModule
418 m.compile_local_table_to_c(v)
419 end
420
421 for c in local_classes do
422 c.compile_tables_to_c(v)
423 end
424 var s = new Buffer.from("classtable_t TAG2VFT[4] = \{NULL")
425 for t in ["Int","Char","Bool"] do
426 if has_global_class_named(t.to_symbol) then
427 s.append(", (const classtable_t)VFT_{t}")
428 else
429 s.append(", NULL")
430 end
431 end
432 s.append("};")
433 v.add_instr(s.to_s)
434 end
435
436 # Declare class table (for _sep.h)
437 meth declare_class_tables_to_c(v: CompilerVisitor)
438 do
439 for c in local_classes do
440 if c.global.module == self then
441 c.declare_tables_to_c(v)
442 end
443 end
444 end
445
446 # Compile main part (for _table.c)
447 meth compile_main_part(v: CompilerVisitor)
448 do
449 v.add_instr("int main(int argc, char **argv) \{")
450 v.indent
451 v.add_instr("prepare_signals();")
452 v.add_instr("glob_argc = argc; glob_argv = argv;")
453 var sysname = once "Sys".to_symbol
454 if not has_global_class_named(sysname) then
455 print("No main")
456 else
457 var sys = class_by_name(sysname)
458 # var initm = sys.select_method(once "init".to_symbol)
459 var mainm = sys.select_method(once "main".to_symbol)
460 if mainm == null then
461 print("No main")
462 else
463 #v.add_instr("G_sys = NEW_{initm.cname}();")
464 v.add_instr("G_sys = NEW_Sys();")
465 v.add_instr("{mainm.cname}(G_sys);")
466 end
467 end
468 v.add_instr("return 0;")
469 v.unindent
470 v.add_instr("}")
471 end
472
473 # Compile sep files
474 meth compile_mod_to_c(v: CompilerVisitor)
475 do
476 v.add_decl("extern const char *LOCATE_{name};")
477 if not v.tc.global then
478 v.add_decl("extern const int SFT_{name}[];")
479 end
480 var i = 0
481 for e in _local_table do
482 var value: String
483 if v.tc.global then
484 value = "{e.value(v.global_analysis)}"
485 else
486 value = "SFT_{name}[{i}]"
487 i = i + 1
488 end
489 e.compile_macros(v, value)
490 end
491 for c in src_local_classes do
492 for pg in c.global_properties do
493 var p = c[pg]
494 if p.local_class == c then
495 p.compile_property_to_c(v)
496 end
497 if pg.is_init_for(c) then
498 # Declare constructors
499 var params = new Array[String]
500 for i in [0..p.signature.arity[ do
501 params.add("val_t p{i}")
502 end
503 v.add_decl("val_t NEW_{c}_{p.global.intro.cname}({params.join(", ")});")
504 end
505 end
506 end
507 end
508
509 # Compile module file for the current module
510 meth compile_local_table_to_c(v: CompilerVisitor)
511 do
512 v.add_instr("const char *LOCATE_{name} = \"{filename}\";")
513
514 if v.tc.global or _local_table.is_empty then
515 return
516 end
517
518 v.add_instr("const int SFT_{name}[{_local_table.length}] = \{")
519 v.indent
520 for e in _local_table do
521 v.add_instr(e.value(v.global_analysis) + ",")
522 end
523 v.unindent
524 v.add_instr("\};")
525 end
526 end
527
528 ###############################################################################
529
530 # An element of a class, an instance or a module table
531 abstract class AbsTableElt
532 # Compile the macro needed to use the element and other related elements
533 meth compile_macros(v: CompilerVisitor, value: String) is abstract
534 end
535
536 # An element of a class or an instance table
537 # Such an elements represent method function pointers, attribute values, etc.
538 abstract class TableElt
539 special AbsTableElt
540 # Is the element conflict to class `c' (used for coloring)
541 meth is_related_to(c: MMLocalClass): Bool is abstract
542
543 # Number of sub-elements. 1 if none
544 meth length: Int do return 1
545
546 # Access the ith subelement.
547 meth item(i: Int): TableElt do return self
548
549 # Return the value of the element for a given class
550 meth compile_to_c(v: CompilerVisitor, c: MMLocalClass): String is abstract
551 end
552
553 # An element of a module table
554 # Such an elements represent colors or identifiers
555 abstract class ModuleTableElt
556 special AbsTableElt
557 # Return the value of the element once the global analisys is performed
558 meth value(ga: GlobalAnalysis): String is abstract
559 end
560
561 # An element of a module table that represents a group of TableElt defined in the same local class
562 class ModuleTableEltGroup
563 special ModuleTableElt
564 readable attr _elements: Array[TableElt] = new Array[TableElt]
565
566 redef meth value(ga) do return "{ga.color(_elements.first)} /* Group of ? */"
567 redef meth compile_macros(v, value)
568 do
569 var i = 0
570 for e in _elements do
571 e.compile_macros(v, "{value} + {i}")
572 i += 1
573 end
574 end
575 end
576
577 # An element that represents a class property
578 abstract class TableEltProp
579 special TableElt
580 attr _property: MMLocalProperty
581
582 init(p: MMLocalProperty)
583 do
584 _property = p
585 end
586 end
587
588 # An element that represents a function pointer to a global method
589 class TableEltMeth
590 special TableEltProp
591 redef meth compile_macros(v, value)
592 do
593 var pg = _property.global
594 v.add_decl("#define {pg.meth_call}(recv) (({pg.intro.cname}_t)CALL((recv), ({value})))")
595 end
596
597 redef meth compile_to_c(v, c)
598 do
599 var p = c[_property.global]
600 return p.cname
601 end
602 end
603
604 # An element that represents a function pointer to the super method of a local method
605 class TableEltSuper
606 special TableEltProp
607 redef meth compile_macros(v, value)
608 do
609 var p = _property
610 v.add_decl("#define {p.super_meth_call}(recv) (({p.cname}_t)CALL((recv), ({value})))")
611 end
612
613 redef meth compile_to_c(v, c)
614 do
615 var pc = _property.local_class
616 var g = _property.global
617 var lin = c.che.linear_extension
618 var found = false
619 for s in lin do
620 #print "{c.module}::{c} for {pc.module}::{pc}::{_property} try {s.module}:{s}"
621 if s == pc then
622 found = true
623 else if found and c.che < s then
624 if s.has_global_property(g) then
625 #print "found {s.module}::{s}::{p}"
626 return s[g].cname
627 end
628 end
629 end
630 assert false
631 return null
632 end
633 end
634
635 # An element that represents the value stored for a global attribute
636 class TableEltAttr
637 special TableEltProp
638 redef meth compile_macros(v, value)
639 do
640 var pg = _property.global
641 v.add_decl("#define {pg.attr_access}(recv) ATTR(recv, ({value}))")
642 end
643
644 redef meth compile_to_c(v, c)
645 do
646 var ga = v.global_analysis
647 var p = c[_property.global]
648 return "/* {ga.color(self)}: Attribute {c}::{p} */"
649 end
650 end
651
652 # An element representing a class information
653 class AbsTableEltClass
654 special AbsTableElt
655 # The local class where the information comes from
656 attr _local_class: MMLocalClass
657
658 init(c: MMLocalClass)
659 do
660 _local_class = c
661 end
662
663 # The C macro name refering the value
664 meth symbol: String is abstract
665
666 redef meth compile_macros(v, value)
667 do
668 v.add_decl("#define {symbol} ({value})")
669 end
670 end
671
672 # An element of a class table representing a class information
673 class TableEltClass
674 special TableElt
675 special AbsTableEltClass
676 redef meth is_related_to(c)
677 do
678 var bc = c.module[_local_class.global]
679 return c.cshe <= bc
680 end
681 end
682
683 # An element representing the id of a class in a module table
684 class TableEltClassId
685 special ModuleTableElt
686 special AbsTableEltClass
687 redef meth symbol do return _local_class.global.id_id
688
689 redef meth value(ga)
690 do
691 return "{ga.compiled_classes[_local_class.global].id} /* Id of {_local_class} */"
692 end
693 end
694
695 # An element representing the constructor marker position in a class table
696 class TableEltClassInitTable
697 special TableEltClass
698 redef meth symbol do return _local_class.global.init_table_pos_id
699
700 redef meth compile_to_c(v, c)
701 do
702 var ga = v.global_analysis
703 var cc = ga.compiled_classes[_local_class.global]
704 var linext = c.cshe.reverse_linear_extension
705 var i = 0
706 while linext[i].global != _local_class.global do
707 i += 1
708 end
709 return "{i} /* {ga.color(self)}: {c} < {cc.local_class}: superclass init_table position */"
710 end
711 end
712
713 # An element used for a cast
714 # Note: this element is both a TableElt and a ModuleTableElt.
715 # At the TableElt offset, there is the id of the super-class
716 # At the ModuleTableElt offset, there is the TableElt offset (ie. the color of the super-class).
717 class TableEltClassColor
718 special TableEltClass
719 special ModuleTableElt
720 redef meth symbol do return _local_class.global.color_id
721
722 redef meth value(ga)
723 do
724 return "{ga.color(self)} /* Color of {_local_class} */"
725 end
726
727 redef meth compile_to_c(v, c)
728 do
729 var ga = v.global_analysis
730 var cc = ga.compiled_classes[_local_class.global]
731 return "{cc.id} /* {ga.color(self)}: {c} < {cc.local_class}: superclass typecheck marker */"
732 end
733 end
734
735 # A Group of elements introduced in the same global-class that are colored together
736 class TableEltComposite
737 special TableElt
738 attr _table: Array[TableElt]
739 attr _cc: CompiledClass
740 attr _offsets: HashMap[MMLocalClass, Int]
741 redef meth length do return _table.length
742 redef meth is_related_to(c) do return c.cshe <= _cc.local_class
743
744 meth add(c: MMLocalClass, tab: Array[TableElt])
745 do
746 _offsets[c] = _table.length
747 _table.append(tab)
748 end
749
750 redef meth item(i) do return _table[i]
751
752 redef meth compile_to_c(v, c) do abort
753
754 init(cc: CompiledClass)
755 do
756 _cc = cc
757 _table = new Array[TableElt]
758 _offsets = new HashMap[MMLocalClass, Int]
759 end
760 end
761
762 # The element that represent the class id
763 class TableEltClassSelfId
764 special TableElt
765 redef meth is_related_to(c) do return true
766 redef meth compile_to_c(v, c)
767 do
768 var ga = v.global_analysis
769 return "{v.global_analysis.compiled_classes[c.global].id} /* {ga.color(self)}: Identity */"
770 end
771 end
772
773 # The element that
774 class TableEltVftPointer
775 special TableElt
776 redef meth is_related_to(c) do return true
777 redef meth compile_to_c(v, c)
778 do
779 var ga = v.global_analysis
780 return "/* {ga.color(self)}: Pointer to the classtable */"
781 end
782 end
783
784 ###############################################################################
785
786 # Used to sort local class in a deterministic total order
787 # The total order superset the class refinement and the class specialisation relations
788 class ClassSorter
789 special AbstractSorter[MMLocalClass]
790 redef meth compare(a, b) do return a.compare(b)
791 init do end
792 end
793
794 redef class MMLocalClass
795 # Comparaison in a total order that superset the class refinement and the class specialisation relations
796 meth compare(b: MMLocalClass): Int
797 do
798 var a = self
799 if a == b then
800 return 0
801 else if a.module.mhe < b.module then
802 return 1
803 else if b.module.mhe < a.module then
804 return -1
805 end
806 var ar = a.cshe.rank
807 var br = b.cshe.rank
808 if ar > br then
809 return 1
810 else if br > ar then
811 return -1
812 else
813 return b.name.to_s <=> a.name.to_s
814 end
815 end
816
817 # Declaration and macros related to the class table
818 meth declare_tables_to_c(v: CompilerVisitor)
819 do
820 v.add_decl("")
821 var pi = primitive_info
822 v.add_decl("extern const classtable_elt_t VFT_{name}[];")
823 if pi == null then
824 # v.add_decl("val_t NEW_{name}(void);")
825 else if not pi.tagged then
826 var t = pi.cname
827 var tbox = "struct TBOX_{name}"
828 v.add_decl("{tbox} \{ const classtable_elt_t * vft; {t} val;};")
829 v.add_decl("val_t BOX_{name}({t} val);")
830 v.add_decl("#define UNBOX_{name}(x) ((({tbox} *)(VAL2OBJ(x)))->val)")
831 end
832 end
833
834 # Compilation of table and new (or box)
835 meth compile_tables_to_c(v: CompilerVisitor)
836 do
837 var cc = v.global_analysis.compiled_classes[self.global]
838 var ctab = cc.class_table
839 var clen = ctab.length
840 if v.global_analysis.max_class_table_length > ctab.length then
841 clen = v.global_analysis.max_class_table_length
842 end
843
844 v.add_instr("const classtable_elt_t VFT_{name}[{clen}] = \{")
845 v.indent
846 for e in ctab do
847 if e == null then
848 v.add_instr("\{0} /* Class Hole :( */,")
849 else
850 v.add_instr("\{(bigint) {e.compile_to_c(v, self)}},")
851 end
852 end
853 if clen > ctab.length then
854 v.add_instr("\{0},"*(clen-ctab.length))
855 end
856 v.unindent
857 v.add_instr("};")
858 var itab = cc.instance_table
859 for e in itab do
860 if e == null then
861 v.add_instr("/* Instance Hole :( */")
862 else
863 v.add_instr(e.compile_to_c(v, self))
864 end
865 end
866
867 var pi = primitive_info
868 if pi == null then
869 v.cfc = new CFunctionContext(v)
870 v.nmc = new NitMethodContext(null)
871 var s = "val_t NEW_{name}(void)"
872 v.add_instr(s + " \{")
873 v.indent
874 var ctx_old = v.ctx
875 v.ctx = new CContext
876
877 var self_var = new ParamVariable(null, null)
878 var self_var_cname = v.cfc.register_variable(self_var)
879 v.nmc.method_params = [self_var]
880
881 v.add_instr("obj_t obj;")
882 v.add_instr("obj = alloc(sizeof(val_t) * {itab.length});")
883 v.add_instr("obj->vft = (classtable_elt_t*)VFT_{name};")
884 v.add_assignment(self_var_cname, "OBJ2VAL(obj)")
885
886 for g in global_properties do
887 var p = self[g]
888 var t = p.signature.return_type
889 if p isa MMAttribute and t != null then
890 # FIXME: Not compatible with sep compilation
891 assert p isa MMSrcAttribute
892 var np = p.node
893 assert np isa AAttrPropdef
894 var ne = np.n_expr
895 if ne != null then
896 var e = ne.compile_expr(v)
897 v.add_instr("{p.global.attr_access}(obj) = {e};")
898 else
899 var pi = t.local_class.primitive_info
900 if pi != null and pi.tagged then
901 var default = t.default_cvalue
902 v.add_instr("{p.global.attr_access}(obj) = {default};")
903 end
904 end
905 end
906 end
907 v.add_instr("return OBJ2VAL(obj);")
908 v.cfc.generate_var_decls
909 ctx_old.append(v.ctx)
910 v.ctx = ctx_old
911 v.unindent
912 v.add_instr("}")
913
914 var init_table_size = cshe.greaters.length + 1
915 var init_table_decl = "int init_table[{init_table_size}] = \{0{", 0" * (init_table_size-1)}};"
916
917 for g in global_properties do
918 var p = self[g]
919 # FIXME skip invisible constructors
920 if not p.global.is_init_for(self) then continue
921 var params = new Array[String]
922 var args = ["self"]
923 for i in [0..p.signature.arity[ do
924 params.add("val_t p{i}")
925 args.add("p{i}")
926 end
927 args.add("init_table")
928 var s = "val_t NEW_{self}_{p.global.intro.cname}({params.join(", ")}) \{"
929 v.add_instr(s)
930 v.indent
931 v.add_instr(init_table_decl)
932 v.add_instr("val_t self = NEW_{name}();")
933 v.add_instr("{p.cname}({args.join(", ")});")
934 v.add_instr("return self;")
935 v.unindent
936 v.add_instr("}")
937 end
938 else if not pi.tagged then
939 var t = pi.cname
940 var tbox = "struct TBOX_{name}"
941 v.add_instr("val_t BOX_{name}({t} val) \{")
942 v.indent
943 v.add_instr("{tbox} *box = ({tbox}*)alloc(sizeof({tbox}));")
944 v.add_instr("box->vft = VFT_{name};")
945 v.add_instr("box->val = val;")
946 v.add_instr("return OBJ2VAL(box);")
947 v.unindent
948 v.add_instr("}")
949 end
950 end
951 end
952