74d032b6f2f8af936fd87601095721e037ac385d
[nit.git] / src / separate_compiler.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Separate compilation of a Nit program
16 module separate_compiler
17
18 import abstract_compiler
19 import layout_builders
20 import rapid_type_analysis
21 import compiler_ffi
22
23 # Add separate compiler specific options
24 redef class ToolContext
25 # --separate
26 var opt_separate: OptionBool = new OptionBool("Use separate compilation", "--separate")
27 # --no-inline-intern
28 var opt_no_inline_intern: OptionBool = new OptionBool("Do not inline call to intern methods", "--no-inline-intern")
29 # --no-union-attribute
30 var opt_no_union_attribute: OptionBool = new OptionBool("Put primitive attibutes in a box instead of an union", "--no-union-attribute")
31 # --no-shortcut-equate
32 var opt_no_shortcut_equate: OptionBool = new OptionBool("Always call == in a polymorphic way", "--no-shortcut-equal")
33 # --inline-coloring-numbers
34 var opt_inline_coloring_numbers: OptionBool = new OptionBool("Inline colors and ids", "--inline-coloring-numbers")
35 # --use-naive-coloring
36 var opt_bm_typing: OptionBool = new OptionBool("Colorize items incrementaly, used to simulate binary matrix typing", "--bm-typing")
37 # --use-mod-perfect-hashing
38 var opt_phmod_typing: OptionBool = new OptionBool("Replace coloration by perfect hashing (with mod operator)", "--phmod-typing")
39 # --use-and-perfect-hashing
40 var opt_phand_typing: OptionBool = new OptionBool("Replace coloration by perfect hashing (with and operator)", "--phand-typing")
41 # --tables-metrics
42 var opt_tables_metrics: OptionBool = new OptionBool("Enable static size measuring of tables used for vft, typing and resolution", "--tables-metrics")
43
44 redef init
45 do
46 super
47 self.option_context.add_option(self.opt_separate)
48 self.option_context.add_option(self.opt_no_inline_intern)
49 self.option_context.add_option(self.opt_no_union_attribute)
50 self.option_context.add_option(self.opt_no_shortcut_equate)
51 self.option_context.add_option(self.opt_inline_coloring_numbers)
52 self.option_context.add_option(self.opt_bm_typing)
53 self.option_context.add_option(self.opt_phmod_typing)
54 self.option_context.add_option(self.opt_phand_typing)
55 self.option_context.add_option(self.opt_tables_metrics)
56 end
57 end
58
59 redef class ModelBuilder
60 fun run_separate_compiler(mainmodule: MModule, runtime_type_analysis: nullable RapidTypeAnalysis)
61 do
62 var time0 = get_time
63 self.toolcontext.info("*** GENERATING C ***", 1)
64
65 var compiler = new SeparateCompiler(mainmodule, self, runtime_type_analysis)
66 compiler.compile_header
67
68 # compile class structures
69 self.toolcontext.info("Property coloring", 2)
70 compiler.new_file("{mainmodule.name}.classes")
71 compiler.do_property_coloring
72 for m in mainmodule.in_importation.greaters do
73 for mclass in m.intro_mclasses do
74 if mclass.kind == abstract_kind or mclass.kind == interface_kind then continue
75 compiler.compile_class_to_c(mclass)
76 end
77 end
78
79 # The main function of the C
80 compiler.new_file("{mainmodule.name}.main")
81 compiler.compile_main_function
82
83 # compile methods
84 for m in mainmodule.in_importation.greaters do
85 self.toolcontext.info("Generate C for module {m}", 2)
86 compiler.new_file("{m.name}.sep")
87 compiler.compile_module_to_c(m)
88 end
89
90 # compile live & cast type structures
91 self.toolcontext.info("Type coloring", 2)
92 compiler.new_file("{mainmodule.name}.types")
93 var mtypes = compiler.do_type_coloring
94 for t in mtypes do
95 compiler.compile_type_to_c(t)
96 end
97 # compile remaining types structures (useless but needed for the symbol resolution at link-time)
98 for t in compiler.undead_types do
99 if mtypes.has(t) then continue
100 compiler.compile_type_to_c(t)
101 end
102
103 compiler.display_stats
104
105 var time1 = get_time
106 self.toolcontext.info("*** END GENERATING C: {time1-time0} ***", 2)
107 write_and_make(compiler)
108 end
109
110 # Count number of invocations by VFT
111 private var nb_invok_by_tables = 0
112 # Count number of invocations by direct call
113 private var nb_invok_by_direct = 0
114 # Count number of invocations by inlining
115 private var nb_invok_by_inline = 0
116 end
117
118 # Singleton that store the knowledge about the separate compilation process
119 class SeparateCompiler
120 super AbstractCompiler
121
122 redef type VISITOR: SeparateCompilerVisitor
123
124 # The result of the RTA (used to know live types and methods)
125 var runtime_type_analysis: nullable RapidTypeAnalysis
126
127 private var undead_types: Set[MType] = new HashSet[MType]
128 private var live_unresolved_types: Map[MClassDef, Set[MType]] = new HashMap[MClassDef, HashSet[MType]]
129
130 private var type_layout: nullable Layout[MType]
131 private var resolution_layout: nullable Layout[MType]
132 protected var method_layout: nullable Layout[PropertyLayoutElement]
133 protected var attr_layout: nullable Layout[MAttribute]
134
135 init(mainmodule: MModule, mmbuilder: ModelBuilder, runtime_type_analysis: nullable RapidTypeAnalysis) do
136 super(mainmodule, mmbuilder)
137 var file = new_file("nit.common")
138 self.header = new CodeWriter(file)
139 self.runtime_type_analysis = runtime_type_analysis
140 self.compile_box_kinds
141 end
142
143 redef fun compile_header_structs do
144 self.header.add_decl("typedef void(*nitmethod_t)(void); /* general C type representing a Nit method. */")
145 self.compile_header_attribute_structs
146 self.header.add_decl("struct class \{ int box_kind; nitmethod_t vft[]; \}; /* general C type representing a Nit class. */")
147
148 # With resolution_table_table, all live type resolution are stored in a big table: resolution_table
149 self.header.add_decl("struct type \{ int id; const char *name; int color; short int is_nullable; const struct types *resolution_table; int table_size; int type_table[]; \}; /* general C type representing a Nit type. */")
150 self.header.add_decl("struct instance \{ const struct type *type; const struct class *class; nitattribute_t attrs[]; \}; /* general C type representing a Nit instance. */")
151
152 if modelbuilder.toolcontext.opt_phmod_typing.value or modelbuilder.toolcontext.opt_phand_typing.value then
153 self.header.add_decl("struct types \{ int mask; const struct type *types[]; \}; /* a list types (used for vts, fts and unresolved lists). */")
154 else
155 self.header.add_decl("struct types \{ int dummy; const struct type *types[]; \}; /* a list types (used for vts, fts and unresolved lists). */")
156 end
157
158 if modelbuilder.toolcontext.opt_phmod_typing.value then
159 self.header.add_decl("#define HASH(mask, id) ((mask)%(id))")
160 else if modelbuilder.toolcontext.opt_phand_typing.value then
161 self.header.add_decl("#define HASH(mask, id) ((mask)&(id))")
162 end
163
164 self.header.add_decl("typedef struct instance val; /* general C type representing a Nit instance. */")
165 end
166
167 fun compile_header_attribute_structs
168 do
169 if modelbuilder.toolcontext.opt_no_union_attribute.value then
170 self.header.add_decl("typedef void* nitattribute_t; /* general C type representing a Nit attribute. */")
171 else
172 self.header.add_decl("typedef union \{")
173 self.header.add_decl("void* val;")
174 for c, v in self.box_kinds do
175 var t = c.mclass_type
176 self.header.add_decl("{t.ctype} {t.ctypename};")
177 end
178 self.header.add_decl("\} nitattribute_t; /* general C type representing a Nit attribute. */")
179 end
180 end
181
182 fun compile_box_kinds
183 do
184 # Collect all bas box class
185 # FIXME: this is not completely fine with a separate compilation scheme
186 for classname in ["Int", "Bool", "Char", "Float", "NativeString", "Pointer"] do
187 var classes = self.mainmodule.model.get_mclasses_by_name(classname)
188 if classes == null then continue
189 assert classes.length == 1 else print classes.join(", ")
190 self.box_kinds[classes.first] = self.box_kinds.length + 1
191 end
192 end
193
194 var box_kinds = new HashMap[MClass, Int]
195
196 fun box_kind_of(mclass: MClass): Int
197 do
198 if mclass.mclass_type.ctype == "val*" then
199 return 0
200 else if mclass.kind == extern_kind then
201 return self.box_kinds[self.mainmodule.get_primitive_class("Pointer")]
202 else
203 return self.box_kinds[mclass]
204 end
205
206 end
207
208 fun compile_color_consts(colors: Map[Object, Int]) do
209 var v = new_visitor
210 for m, c in colors do
211 compile_color_const(v, m, c)
212 end
213 end
214
215 fun compile_color_const(v: SeparateCompilerVisitor, m: Object, color: Int) do
216 if color_consts_done.has(m) then return
217 if m isa MProperty then
218 if modelbuilder.toolcontext.opt_inline_coloring_numbers.value then
219 self.provide_declaration(m.const_color, "#define {m.const_color} {color}")
220 else
221 self.provide_declaration(m.const_color, "extern const int {m.const_color};")
222 v.add("const int {m.const_color} = {color};")
223 end
224 else if m isa MPropDef then
225 if modelbuilder.toolcontext.opt_inline_coloring_numbers.value then
226 self.provide_declaration(m.const_color, "#define {m.const_color} {color}")
227 else
228 self.provide_declaration(m.const_color, "extern const int {m.const_color};")
229 v.add("const int {m.const_color} = {color};")
230 end
231 else if m isa MType then
232 if modelbuilder.toolcontext.opt_inline_coloring_numbers.value then
233 self.provide_declaration(m.const_color, "#define {m.const_color} {color}")
234 else
235 self.provide_declaration(m.const_color, "extern const int {m.const_color};")
236 v.add("const int {m.const_color} = {color};")
237 end
238 end
239 color_consts_done.add(m)
240 end
241
242 private var color_consts_done = new HashSet[Object]
243
244 # colorize classe properties
245 fun do_property_coloring do
246 var mclasses = new HashSet[MClass].from(modelbuilder.model.mclasses)
247
248 # Layouts
249 var method_layout_builder: PropertyLayoutBuilder[PropertyLayoutElement]
250 var attribute_layout_builder: PropertyLayoutBuilder[MAttribute]
251 #FIXME PH and BM layouts too slow for large programs
252 #if modelbuilder.toolcontext.opt_bm_typing.value then
253 # method_layout_builder = new MMethodBMizer(self.mainmodule)
254 # attribute_layout_builder = new MAttributeBMizer(self.mainmodule)
255 #else if modelbuilder.toolcontext.opt_phmod_typing.value then
256 # method_layout_builder = new MMethodHasher(new PHModOperator, self.mainmodule)
257 # attribute_layout_builder = new MAttributeHasher(new PHModOperator, self.mainmodule)
258 #else if modelbuilder.toolcontext.opt_phand_typing.value then
259 # method_layout_builder = new MMethodHasher(new PHAndOperator, self.mainmodule)
260 # attribute_layout_builder = new MAttributeHasher(new PHAndOperator, self.mainmodule)
261 #else
262
263 var class_layout_builder = new MClassColorer(self.mainmodule)
264 class_layout_builder.build_layout(mclasses)
265 method_layout_builder = new MPropertyColorer[PropertyLayoutElement](self.mainmodule, class_layout_builder)
266 attribute_layout_builder = new MPropertyColorer[MAttribute](self.mainmodule, class_layout_builder)
267 #end
268
269 # lookup properties to build layout with
270 var mmethods = new HashMap[MClass, Set[PropertyLayoutElement]]
271 var mattributes = new HashMap[MClass, Set[MAttribute]]
272 for mclass in mclasses do
273 mmethods[mclass] = new HashSet[PropertyLayoutElement]
274 mattributes[mclass] = new HashSet[MAttribute]
275 for mprop in self.mainmodule.properties(mclass) do
276 if mprop isa MMethod then
277 mmethods[mclass].add(mprop)
278 else if mprop isa MAttribute then
279 mattributes[mclass].add(mprop)
280 end
281 end
282 end
283
284 # Collect all super calls (dead or not)
285 var all_super_calls = new HashSet[MMethodDef]
286 for mmodule in self.mainmodule.in_importation.greaters do
287 for mclassdef in mmodule.mclassdefs do
288 for mpropdef in mclassdef.mpropdefs do
289 if not mpropdef isa MMethodDef then continue
290 if mpropdef.has_supercall then
291 all_super_calls.add(mpropdef)
292 end
293 end
294 end
295 end
296
297 # lookup super calls and add it to the list of mmethods to build layout with
298 var super_calls
299 if runtime_type_analysis != null then
300 super_calls = runtime_type_analysis.live_super_sends
301 else
302 super_calls = all_super_calls
303 end
304
305 for mmethoddef in super_calls do
306 var mclass = mmethoddef.mclassdef.mclass
307 mmethods[mclass].add(mmethoddef)
308 for descendant in mclass.in_hierarchy(self.mainmodule).smallers do
309 mmethods[descendant].add(mmethoddef)
310 end
311 end
312
313 # methods coloration
314 self.method_layout = method_layout_builder.build_layout(mmethods)
315 self.method_tables = build_method_tables(mclasses, super_calls)
316 self.compile_color_consts(method_layout.pos)
317
318 # attribute null color to dead supercalls
319 for mpropdef in all_super_calls do
320 if super_calls.has(mpropdef) then continue
321 compile_color_const(new_visitor, mpropdef, -1)
322 end
323
324 # attributes coloration
325 self.attr_layout = attribute_layout_builder.build_layout(mattributes)
326 self.attr_tables = build_attr_tables(mclasses)
327 self.compile_color_consts(attr_layout.pos)
328 end
329
330 fun build_method_tables(mclasses: Set[MClass], super_calls: Set[MMethodDef]): Map[MClass, Array[nullable MPropDef]] do
331 var layout = self.method_layout
332 var tables = new HashMap[MClass, Array[nullable MPropDef]]
333 for mclass in mclasses do
334 var table = new Array[nullable MPropDef]
335 var supercalls = new List[MMethodDef]
336
337 # first, fill table from parents by reverse linearization order
338 var parents = new Array[MClass]
339 if mainmodule.flatten_mclass_hierarchy.has(mclass) then
340 parents = mclass.in_hierarchy(mainmodule).greaters.to_a
341 self.mainmodule.linearize_mclasses(parents)
342 end
343
344 for parent in parents do
345 if parent == mclass then continue
346 for mproperty in self.mainmodule.properties(parent) do
347 if not mproperty isa MMethod then continue
348 var color = layout.pos[mproperty]
349 if table.length <= color then
350 for i in [table.length .. color[ do
351 table[i] = null
352 end
353 end
354 for mpropdef in mproperty.mpropdefs do
355 if mpropdef.mclassdef.mclass == parent then
356 table[color] = mpropdef
357 end
358 end
359 end
360
361 # lookup for super calls in super classes
362 for mmethoddef in super_calls do
363 for mclassdef in parent.mclassdefs do
364 if mclassdef.mpropdefs.has(mmethoddef) then
365 supercalls.add(mmethoddef)
366 end
367 end
368 end
369 end
370
371 # then override with local properties
372 for mproperty in self.mainmodule.properties(mclass) do
373 if not mproperty isa MMethod then continue
374 var color = layout.pos[mproperty]
375 if table.length <= color then
376 for i in [table.length .. color[ do
377 table[i] = null
378 end
379 end
380 for mpropdef in mproperty.mpropdefs do
381 if mpropdef.mclassdef.mclass == mclass then
382 table[color] = mpropdef
383 end
384 end
385 end
386
387 # lookup for super calls in local class
388 for mmethoddef in super_calls do
389 for mclassdef in mclass.mclassdefs do
390 if mclassdef.mpropdefs.has(mmethoddef) then
391 supercalls.add(mmethoddef)
392 end
393 end
394 end
395 # insert super calls in table according to receiver
396 for supercall in supercalls do
397 var color = layout.pos[supercall]
398 if table.length <= color then
399 for i in [table.length .. color[ do
400 table[i] = null
401 end
402 end
403 var mmethoddef = supercall.lookup_next_definition(self.mainmodule, mclass.intro.bound_mtype)
404 table[color] = mmethoddef
405 end
406 tables[mclass] = table
407 end
408 return tables
409 end
410
411 fun build_attr_tables(mclasses: Set[MClass]): Map[MClass, Array[nullable MPropDef]] do
412 var layout = self.attr_layout
413 var tables = new HashMap[MClass, Array[nullable MPropDef]]
414 for mclass in mclasses do
415 var table = new Array[nullable MPropDef]
416 # first, fill table from parents by reverse linearization order
417 var parents = new Array[MClass]
418 if mainmodule.flatten_mclass_hierarchy.has(mclass) then
419 parents = mclass.in_hierarchy(mainmodule).greaters.to_a
420 self.mainmodule.linearize_mclasses(parents)
421 end
422 for parent in parents do
423 if parent == mclass then continue
424 for mproperty in self.mainmodule.properties(parent) do
425 if not mproperty isa MAttribute then continue
426 var color = layout.pos[mproperty]
427 if table.length <= color then
428 for i in [table.length .. color[ do
429 table[i] = null
430 end
431 end
432 for mpropdef in mproperty.mpropdefs do
433 if mpropdef.mclassdef.mclass == parent then
434 table[color] = mpropdef
435 end
436 end
437 end
438 end
439
440 # then override with local properties
441 for mproperty in self.mainmodule.properties(mclass) do
442 if not mproperty isa MAttribute then continue
443 var color = layout.pos[mproperty]
444 if table.length <= color then
445 for i in [table.length .. color[ do
446 table[i] = null
447 end
448 end
449 for mpropdef in mproperty.mpropdefs do
450 if mpropdef.mclassdef.mclass == mclass then
451 table[color] = mpropdef
452 end
453 end
454 end
455 tables[mclass] = table
456 end
457 return tables
458 end
459
460 # colorize live types of the program
461 private fun do_type_coloring: POSet[MType] do
462 var mtypes = new HashSet[MType]
463 mtypes.add_all(self.runtime_type_analysis.live_types)
464 mtypes.add_all(self.runtime_type_analysis.live_cast_types)
465 for c in self.box_kinds.keys do
466 mtypes.add(c.mclass_type)
467 end
468
469 # Typing Layout
470 var layout_builder: TypingLayoutBuilder[MType]
471 if modelbuilder.toolcontext.opt_bm_typing.value then
472 layout_builder = new MTypeBMizer(self.mainmodule)
473 else if modelbuilder.toolcontext.opt_phmod_typing.value then
474 layout_builder = new MTypeHasher(new PHModOperator, self.mainmodule)
475 else if modelbuilder.toolcontext.opt_phand_typing.value then
476 layout_builder = new MTypeHasher(new PHAndOperator, self.mainmodule)
477 else
478 layout_builder = new MTypeColorer(self.mainmodule)
479 end
480
481 # colorize types
482 self.type_layout = layout_builder.build_layout(mtypes)
483 var poset = layout_builder.poset.as(not null)
484 self.type_tables = self.build_type_tables(poset)
485
486 # VT and FT are stored with other unresolved types in the big resolution_tables
487 self.compile_resolution_tables(mtypes)
488
489 return poset
490 end
491
492 # Build type tables
493 fun build_type_tables(mtypes: POSet[MType]): Map[MType, Array[nullable MType]] do
494 var tables = new HashMap[MType, Array[nullable MType]]
495 var layout = self.type_layout
496 for mtype in mtypes do
497 var table = new Array[nullable MType]
498 for sup in mtypes[mtype].greaters do
499 var color: Int
500 if layout isa PHLayout[MType, MType] then
501 color = layout.hashes[mtype][sup]
502 else
503 color = layout.pos[sup]
504 end
505 if table.length <= color then
506 for i in [table.length .. color[ do
507 table[i] = null
508 end
509 end
510 table[color] = sup
511 end
512 tables[mtype] = table
513 end
514 return tables
515 end
516
517 protected fun compile_resolution_tables(mtypes: Set[MType]) do
518 # resolution_tables is used to perform a type resolution at runtime in O(1)
519
520 # During the visit of the body of classes, live_unresolved_types are collected
521 # and associated to
522 # Collect all live_unresolved_types (visited in the body of classes)
523
524 # Determinate fo each livetype what are its possible requested anchored types
525 var mtype2unresolved = new HashMap[MClassType, Set[MType]]
526 for mtype in self.runtime_type_analysis.live_types do
527 var set = new HashSet[MType]
528 for cd in mtype.collect_mclassdefs(self.mainmodule) do
529 if self.live_unresolved_types.has_key(cd) then
530 set.add_all(self.live_unresolved_types[cd])
531 end
532 end
533 mtype2unresolved[mtype] = set
534 end
535
536 # Compute the table layout with the prefered method
537 var resolution_builder: ResolutionLayoutBuilder
538 if modelbuilder.toolcontext.opt_bm_typing.value then
539 resolution_builder = new ResolutionBMizer
540 else if modelbuilder.toolcontext.opt_phmod_typing.value then
541 resolution_builder = new ResolutionHasher(new PHModOperator)
542 else if modelbuilder.toolcontext.opt_phand_typing.value then
543 resolution_builder = new ResolutionHasher(new PHAndOperator)
544 else
545 resolution_builder = new ResolutionColorer
546 end
547 self.resolution_layout = resolution_builder.build_layout(mtype2unresolved)
548 self.resolution_tables = self.build_resolution_tables(mtype2unresolved)
549
550 # Compile a C constant for each collected unresolved type.
551 # Either to a color, or to -1 if the unresolved type is dead (no live receiver can require it)
552 var all_unresolved = new HashSet[MType]
553 for t in self.live_unresolved_types.values do
554 all_unresolved.add_all(t)
555 end
556 var all_unresolved_types_colors = new HashMap[MType, Int]
557 for t in all_unresolved do
558 if self.resolution_layout.pos.has_key(t) then
559 all_unresolved_types_colors[t] = self.resolution_layout.pos[t]
560 else
561 all_unresolved_types_colors[t] = -1
562 end
563 end
564 self.compile_color_consts(all_unresolved_types_colors)
565
566 #print "tables"
567 #for k, v in unresolved_types_tables.as(not null) do
568 # print "{k}: {v.join(", ")}"
569 #end
570 #print ""
571 end
572
573 fun build_resolution_tables(elements: Map[MClassType, Set[MType]]): Map[MClassType, Array[nullable MType]] do
574 var tables = new HashMap[MClassType, Array[nullable MType]]
575 var layout = self.resolution_layout
576 for mclasstype, mtypes in elements do
577 var table = new Array[nullable MType]
578 for mtype in mtypes do
579 var color: Int
580 if layout isa PHLayout[MClassType, MType] then
581 color = layout.hashes[mclasstype][mtype]
582 else
583 color = layout.pos[mtype]
584 end
585 if table.length <= color then
586 for i in [table.length .. color[ do
587 table[i] = null
588 end
589 end
590 table[color] = mtype
591 end
592 tables[mclasstype] = table
593 end
594 return tables
595 end
596
597 # Separately compile all the method definitions of the module
598 fun compile_module_to_c(mmodule: MModule)
599 do
600 var old_module = self.mainmodule
601 self.mainmodule = mmodule
602 for cd in mmodule.mclassdefs do
603 for pd in cd.mpropdefs do
604 if not pd isa MMethodDef then continue
605 #print "compile {pd} @ {cd} @ {mmodule}"
606 var r = pd.separate_runtime_function
607 r.compile_to_c(self)
608 var r2 = pd.virtual_runtime_function
609 r2.compile_to_c(self)
610 end
611 end
612 self.mainmodule = old_module
613 end
614
615 # Globaly compile the type structure of a live type
616 fun compile_type_to_c(mtype: MType)
617 do
618 assert not mtype.need_anchor
619 var layout = self.type_layout
620 var is_live = mtype isa MClassType and runtime_type_analysis.live_types.has(mtype)
621 var is_cast_live = runtime_type_analysis.live_cast_types.has(mtype)
622 var c_name = mtype.c_name
623 var v = new SeparateCompilerVisitor(self)
624 v.add_decl("/* runtime type {mtype} */")
625
626 # extern const struct type_X
627 self.provide_declaration("type_{c_name}", "extern const struct type type_{c_name};")
628
629 # const struct type_X
630 v.add_decl("const struct type type_{c_name} = \{")
631
632 # type id (for cast target)
633 if is_cast_live then
634 v.add_decl("{layout.ids[mtype]},")
635 else
636 v.add_decl("-1, /*CAST DEAD*/")
637 end
638
639 # type name
640 v.add_decl("\"{mtype}\", /* class_name_string */")
641
642 # type color (for cast target)
643 if is_cast_live then
644 if layout isa PHLayout[MType, MType] then
645 v.add_decl("{layout.masks[mtype]},")
646 else
647 v.add_decl("{layout.pos[mtype]},")
648 end
649 else
650 v.add_decl("-1, /*CAST DEAD*/")
651 end
652
653 # is_nullable bit
654 if mtype isa MNullableType then
655 v.add_decl("1,")
656 else
657 v.add_decl("0,")
658 end
659
660 # resolution table (for receiver)
661 if is_live then
662 var mclass_type = mtype
663 if mclass_type isa MNullableType then mclass_type = mclass_type.mtype
664 assert mclass_type isa MClassType
665 if resolution_tables[mclass_type].is_empty then
666 v.add_decl("NULL, /*NO RESOLUTIONS*/")
667 else
668 compile_type_resolution_table(mtype)
669 v.require_declaration("resolution_table_{c_name}")
670 v.add_decl("&resolution_table_{c_name},")
671 end
672 else
673 v.add_decl("NULL, /*DEAD*/")
674 end
675
676 # cast table (for receiver)
677 if is_live then
678 v.add_decl("{self.type_tables[mtype].length},")
679 v.add_decl("\{")
680 for stype in self.type_tables[mtype] do
681 if stype == null then
682 v.add_decl("-1, /* empty */")
683 else
684 v.add_decl("{layout.ids[stype]}, /* {stype} */")
685 end
686 end
687 v.add_decl("\},")
688 else
689 v.add_decl("0, \{\}, /*DEAD TYPE*/")
690 end
691 v.add_decl("\};")
692 end
693
694 fun compile_type_resolution_table(mtype: MType) do
695
696 var mclass_type: MClassType
697 if mtype isa MNullableType then
698 mclass_type = mtype.mtype.as(MClassType)
699 else
700 mclass_type = mtype.as(MClassType)
701 end
702
703 var layout = self.resolution_layout
704
705 # extern const struct resolution_table_X resolution_table_X
706 self.provide_declaration("resolution_table_{mtype.c_name}", "extern const struct types resolution_table_{mtype.c_name};")
707
708 # const struct fts_table_X fts_table_X
709 var v = new_visitor
710 v.add_decl("const struct types resolution_table_{mtype.c_name} = \{")
711 if layout isa PHLayout[MClassType, MType] then
712 v.add_decl("{layout.masks[mclass_type]},")
713 else
714 v.add_decl("0, /* dummy */")
715 end
716 v.add_decl("\{")
717 for t in self.resolution_tables[mclass_type] do
718 if t == null then
719 v.add_decl("NULL, /* empty */")
720 else
721 # The table stores the result of the type resolution
722 # Therefore, for a receiver `mclass_type`, and a unresolved type `t`
723 # the value stored is tv.
724 var tv = t.resolve_for(mclass_type, mclass_type, self.mainmodule, true)
725 # FIXME: What typeids means here? How can a tv not be live?
726 if self.type_layout.ids.has_key(tv) then
727 v.require_declaration("type_{tv.c_name}")
728 v.add_decl("&type_{tv.c_name}, /* {t}: {tv} */")
729 else
730 v.add_decl("NULL, /* empty ({t}: {tv} not a live type) */")
731 end
732 end
733 end
734 v.add_decl("\}")
735 v.add_decl("\};")
736 end
737
738 # Globally compile the table of the class mclass
739 # In a link-time optimisation compiler, tables are globally computed
740 # In a true separate compiler (a with dynamic loading) you cannot do this unfortnally
741 fun compile_class_to_c(mclass: MClass)
742 do
743 var mtype = mclass.intro.bound_mtype
744 var c_name = mclass.c_name
745 var c_instance_name = mclass.c_instance_name
746
747 var vft = self.method_tables[mclass]
748 var attrs = self.attr_tables[mclass]
749 var v = new_visitor
750
751 var is_dead = runtime_type_analysis != null and not runtime_type_analysis.live_classes.has(mclass) and mtype.ctype == "val*" and mclass.name != "NativeArray"
752
753 v.add_decl("/* runtime class {c_name} */")
754
755 # Build class vft
756 if not is_dead then
757 self.provide_declaration("class_{c_name}", "extern const struct class class_{c_name};")
758 v.add_decl("const struct class class_{c_name} = \{")
759 v.add_decl("{self.box_kind_of(mclass)}, /* box_kind */")
760 v.add_decl("\{")
761 for i in [0 .. vft.length[ do
762 var mpropdef = vft[i]
763 if mpropdef == null then
764 v.add_decl("NULL, /* empty */")
765 else
766 assert mpropdef isa MMethodDef
767 var rf = mpropdef.virtual_runtime_function
768 v.require_declaration(rf.c_name)
769 v.add_decl("(nitmethod_t){rf.c_name}, /* pointer to {mclass.intro_mmodule}:{mclass}:{mpropdef} */")
770 end
771 end
772 v.add_decl("\}")
773 v.add_decl("\};")
774 end
775
776 if mtype.ctype != "val*" then
777 if mtype.mclass.name == "Pointer" or mtype.mclass.kind != extern_kind then
778 #Build instance struct
779 self.header.add_decl("struct instance_{c_instance_name} \{")
780 self.header.add_decl("const struct type *type;")
781 self.header.add_decl("const struct class *class;")
782 self.header.add_decl("{mtype.ctype} value;")
783 self.header.add_decl("\};")
784 end
785
786 if not self.runtime_type_analysis.live_types.has(mtype) then return
787
788 #Build BOX
789 self.provide_declaration("BOX_{c_name}", "val* BOX_{c_name}({mtype.ctype});")
790 v.add_decl("/* allocate {mtype} */")
791 v.add_decl("val* BOX_{mtype.c_name}({mtype.ctype} value) \{")
792 v.add("struct instance_{c_instance_name}*res = nit_alloc(sizeof(struct instance_{c_instance_name}));")
793 v.require_declaration("type_{c_name}")
794 v.add("res->type = &type_{c_name};")
795 v.require_declaration("class_{c_name}")
796 v.add("res->class = &class_{c_name};")
797 v.add("res->value = value;")
798 v.add("return (val*)res;")
799 v.add("\}")
800 return
801 else if mclass.name == "NativeArray" then
802 #Build instance struct
803 self.header.add_decl("struct instance_{c_instance_name} \{")
804 self.header.add_decl("const struct type *type;")
805 self.header.add_decl("const struct class *class;")
806 # NativeArrays are just a instance header followed by an array of values
807 self.header.add_decl("val* values[0];")
808 self.header.add_decl("\};")
809
810 #Build NEW
811 self.provide_declaration("NEW_{c_name}", "{mtype.ctype} NEW_{c_name}(int length, const struct type* type);")
812 v.add_decl("/* allocate {mtype} */")
813 v.add_decl("{mtype.ctype} NEW_{c_name}(int length, const struct type* type) \{")
814 var res = v.new_named_var(mtype, "self")
815 res.is_exact = true
816 var mtype_elt = mtype.arguments.first
817 v.add("{res} = nit_alloc(sizeof(struct instance_{c_instance_name}) + length*sizeof({mtype_elt.ctype}));")
818 v.add("{res}->type = type;")
819 hardening_live_type(v, "type")
820 v.require_declaration("class_{c_name}")
821 v.add("{res}->class = &class_{c_name};")
822 v.add("return {res};")
823 v.add("\}")
824 return
825 end
826
827 #Build NEW
828 self.provide_declaration("NEW_{c_name}", "{mtype.ctype} NEW_{c_name}(const struct type* type);")
829 v.add_decl("/* allocate {mtype} */")
830 v.add_decl("{mtype.ctype} NEW_{c_name}(const struct type* type) \{")
831 if is_dead then
832 v.add_abort("{mclass} is DEAD")
833 else
834 var res = v.new_named_var(mtype, "self")
835 res.is_exact = true
836 v.add("{res} = nit_alloc(sizeof(struct instance) + {attrs.length}*sizeof(nitattribute_t));")
837 v.add("{res}->type = type;")
838 hardening_live_type(v, "type")
839 v.require_declaration("class_{c_name}")
840 v.add("{res}->class = &class_{c_name};")
841 self.generate_init_attr(v, res, mtype)
842 v.add("return {res};")
843 end
844 v.add("\}")
845 end
846
847 # Add a dynamic test to ensure that the type referenced by `t` is a live type
848 fun hardening_live_type(v: VISITOR, t: String)
849 do
850 if not v.compiler.modelbuilder.toolcontext.opt_hardening.value then return
851 v.add("if({t} == NULL) \{")
852 v.add_abort("type null")
853 v.add("\}")
854 v.add("if({t}->table_size == 0) \{")
855 v.add("fprintf(stderr, \"Insantiation of a dead type: %s\\n\", {t}->name);")
856 v.add_abort("type dead")
857 v.add("\}")
858 end
859
860 redef fun new_visitor do return new SeparateCompilerVisitor(self)
861
862 # Stats
863
864 private var type_tables: Map[MType, Array[nullable MType]] = new HashMap[MType, Array[nullable MType]]
865 private var resolution_tables: Map[MClassType, Array[nullable MType]] = new HashMap[MClassType, Array[nullable MType]]
866 protected var method_tables: Map[MClass, Array[nullable MPropDef]] = new HashMap[MClass, Array[nullable MPropDef]]
867 protected var attr_tables: Map[MClass, Array[nullable MPropDef]] = new HashMap[MClass, Array[nullable MPropDef]]
868
869 redef fun display_stats
870 do
871 super
872 if self.modelbuilder.toolcontext.opt_tables_metrics.value then
873 display_sizes
874 end
875
876 var tc = self.modelbuilder.toolcontext
877 tc.info("# implementation of method invocation",2)
878 var nb_invok_total = modelbuilder.nb_invok_by_tables + modelbuilder.nb_invok_by_direct + modelbuilder.nb_invok_by_inline
879 tc.info("total number of invocations: {nb_invok_total}",2)
880 tc.info("invocations by VFT send: {modelbuilder.nb_invok_by_tables} ({div(modelbuilder.nb_invok_by_tables,nb_invok_total)}%)",2)
881 tc.info("invocations by direct call: {modelbuilder.nb_invok_by_direct} ({div(modelbuilder.nb_invok_by_direct,nb_invok_total)}%)",2)
882 tc.info("invocations by inlining: {modelbuilder.nb_invok_by_inline} ({div(modelbuilder.nb_invok_by_inline,nb_invok_total)}%)",2)
883 end
884
885 fun display_sizes
886 do
887 print "# size of subtyping tables"
888 print "\ttotal \tholes"
889 var total = 0
890 var holes = 0
891 for t, table in type_tables do
892 total += table.length
893 for e in table do if e == null then holes += 1
894 end
895 print "\t{total}\t{holes}"
896
897 print "# size of resolution tables"
898 print "\ttotal \tholes"
899 total = 0
900 holes = 0
901 for t, table in resolution_tables do
902 total += table.length
903 for e in table do if e == null then holes += 1
904 end
905 print "\t{total}\t{holes}"
906
907 print "# size of methods tables"
908 print "\ttotal \tholes"
909 total = 0
910 holes = 0
911 for t, table in method_tables do
912 total += table.length
913 for e in table do if e == null then holes += 1
914 end
915 print "\t{total}\t{holes}"
916
917 print "# size of attributes tables"
918 print "\ttotal \tholes"
919 total = 0
920 holes = 0
921 for t, table in attr_tables do
922 total += table.length
923 for e in table do if e == null then holes += 1
924 end
925 print "\t{total}\t{holes}"
926 end
927
928 redef fun compile_nitni_structs
929 do
930 self.header.add_decl("struct nitni_instance \{struct instance *value;\};")
931 end
932
933 redef fun finalize_ffi_for_module(nmodule)
934 do
935 var old_module = self.mainmodule
936 self.mainmodule = nmodule.mmodule.as(not null)
937 super
938 self.mainmodule = old_module
939 end
940 end
941
942 # A visitor on the AST of property definition that generate the C code of a separate compilation process.
943 class SeparateCompilerVisitor
944 super AbstractCompilerVisitor
945
946 redef type COMPILER: SeparateCompiler
947
948 redef fun adapt_signature(m, args)
949 do
950 var msignature = m.msignature.resolve_for(m.mclassdef.bound_mtype, m.mclassdef.bound_mtype, m.mclassdef.mmodule, true)
951 var recv = args.first
952 if recv.mtype.ctype != m.mclassdef.mclass.mclass_type.ctype then
953 args.first = self.autobox(args.first, m.mclassdef.mclass.mclass_type)
954 end
955 for i in [0..msignature.arity[ do
956 var t = msignature.mparameters[i].mtype
957 if i == msignature.vararg_rank then
958 t = args[i+1].mtype
959 end
960 args[i+1] = self.autobox(args[i+1], t)
961 end
962 end
963
964 redef fun autobox(value, mtype)
965 do
966 if value.mtype == mtype then
967 return value
968 else if value.mtype.ctype == "val*" and mtype.ctype == "val*" then
969 return value
970 else if value.mtype.ctype == "val*" then
971 return self.new_expr("((struct instance_{mtype.c_instance_name}*){value})->value; /* autounbox from {value.mtype} to {mtype} */", mtype)
972 else if mtype.ctype == "val*" then
973 var valtype = value.mtype.as(MClassType)
974 var res = self.new_var(mtype)
975 if compiler.runtime_type_analysis != null and not compiler.runtime_type_analysis.live_types.has(valtype) then
976 self.add("/*no autobox from {value.mtype} to {mtype}: {value.mtype} is not live! */")
977 self.add("printf(\"Dead code executed!\\n\"); show_backtrace(1);")
978 return res
979 end
980 self.require_declaration("BOX_{valtype.c_name}")
981 self.add("{res} = BOX_{valtype.c_name}({value}); /* autobox from {value.mtype} to {mtype} */")
982 return res
983 else if value.mtype.cname_blind == "void*" and mtype.cname_blind == "void*" then
984 return value
985 else
986 # Bad things will appen!
987 var res = self.new_var(mtype)
988 self.add("/* {res} left unintialized (cannot convert {value.mtype} to {mtype}) */")
989 self.add("printf(\"Cast error: Cannot cast %s to %s.\\n\", \"{value.mtype}\", \"{mtype}\"); show_backtrace(1);")
990 return res
991 end
992 end
993
994 # Return a C expression returning the runtime type structure of the value
995 # The point of the method is to works also with primitives types.
996 fun type_info(value: RuntimeVariable): String
997 do
998 if value.mtype.ctype == "val*" then
999 return "{value}->type"
1000 else
1001 compiler.undead_types.add(value.mtype)
1002 self.require_declaration("type_{value.mtype.c_name}")
1003 return "(&type_{value.mtype.c_name})"
1004 end
1005 end
1006
1007 redef fun send(mmethod, arguments)
1008 do
1009 self.varargize(mmethod.intro, mmethod.intro.msignature.as(not null), arguments)
1010
1011 if arguments.first.mcasttype.ctype != "val*" then
1012 # In order to shortcut the primitive, we need to find the most specific method
1013 # Howverr, because of performance (no flattening), we always work on the realmainmodule
1014 var m = self.compiler.mainmodule
1015 self.compiler.mainmodule = self.compiler.realmainmodule
1016 var res = self.monomorphic_send(mmethod, arguments.first.mcasttype, arguments)
1017 self.compiler.mainmodule = m
1018 return res
1019 end
1020
1021 return table_send(mmethod, arguments, mmethod.const_color)
1022 end
1023
1024 private fun table_send(mmethod: MMethod, arguments: Array[RuntimeVariable], const_color: String): nullable RuntimeVariable
1025 do
1026 compiler.modelbuilder.nb_invok_by_tables += 1
1027
1028 assert arguments.length == mmethod.intro.msignature.arity + 1 else debug("Invalid arity for {mmethod}. {arguments.length} arguments given.")
1029
1030 var res: nullable RuntimeVariable
1031 var msignature = mmethod.intro.msignature.resolve_for(mmethod.intro.mclassdef.bound_mtype, mmethod.intro.mclassdef.bound_mtype, mmethod.intro.mclassdef.mmodule, true)
1032 var ret = msignature.return_mtype
1033 if mmethod.is_new then
1034 ret = arguments.first.mtype
1035 res = self.new_var(ret)
1036 else if ret == null then
1037 res = null
1038 else
1039 res = self.new_var(ret)
1040 end
1041
1042 var s = new Buffer
1043 var ss = new Buffer
1044
1045 var recv = arguments.first
1046 s.append("val*")
1047 ss.append("{recv}")
1048 for i in [0..msignature.arity[ do
1049 var a = arguments[i+1]
1050 var t = msignature.mparameters[i].mtype
1051 if i == msignature.vararg_rank then
1052 t = arguments[i+1].mcasttype
1053 end
1054 s.append(", {t.ctype}")
1055 a = self.autobox(a, t)
1056 ss.append(", {a}")
1057 end
1058
1059 var consider_null = not self.compiler.modelbuilder.toolcontext.opt_no_check_other.value or mmethod.name == "==" or mmethod.name == "!="
1060 var maybenull = recv.mcasttype isa MNullableType and consider_null
1061 if maybenull then
1062 self.add("if ({recv} == NULL) \{")
1063 if mmethod.name == "==" then
1064 assert res != null
1065 var arg = arguments[1]
1066 if arg.mcasttype isa MNullableType then
1067 self.add("{res} = ({arg} == NULL);")
1068 else if arg.mcasttype isa MNullType then
1069 self.add("{res} = 1; /* is null */")
1070 else
1071 self.add("{res} = 0; /* {arg.inspect} cannot be null */")
1072 end
1073 else if mmethod.name == "!=" then
1074 assert res != null
1075 var arg = arguments[1]
1076 if arg.mcasttype isa MNullableType then
1077 self.add("{res} = ({arg} != NULL);")
1078 else if arg.mcasttype isa MNullType then
1079 self.add("{res} = 0; /* is null */")
1080 else
1081 self.add("{res} = 1; /* {arg.inspect} cannot be null */")
1082 end
1083 else
1084 self.add_abort("Receiver is null")
1085 end
1086 self.add("\} else \{")
1087 end
1088 if not self.compiler.modelbuilder.toolcontext.opt_no_shortcut_equate.value and (mmethod.name == "==" or mmethod.name == "!=") then
1089 assert res != null
1090 # Recv is not null, thus is arg is, it is easy to conclude (and respect the invariants)
1091 var arg = arguments[1]
1092 if arg.mcasttype isa MNullType then
1093 if mmethod.name == "==" then
1094 self.add("{res} = 0; /* arg is null but recv is not */")
1095 else
1096 self.add("{res} = 1; /* arg is null and recv is not */")
1097 end
1098 if maybenull then
1099 self.add("\}")
1100 end
1101 return res
1102 end
1103 end
1104
1105 var r
1106 if ret == null then r = "void" else r = ret.ctype
1107 self.require_declaration(const_color)
1108 var call = "(({r} (*)({s}))({arguments.first}->class->vft[{const_color}]))({ss}) /* {mmethod} on {arguments.first.inspect}*/"
1109
1110 if res != null then
1111 self.add("{res} = {call};")
1112 else
1113 self.add("{call};")
1114 end
1115
1116 if maybenull then
1117 self.add("\}")
1118 end
1119
1120 return res
1121 end
1122
1123 redef fun call(mmethoddef, recvtype, arguments)
1124 do
1125 assert arguments.length == mmethoddef.msignature.arity + 1 else debug("Invalid arity for {mmethoddef}. {arguments.length} arguments given.")
1126
1127 var res: nullable RuntimeVariable
1128 var ret = mmethoddef.msignature.return_mtype
1129 if mmethoddef.mproperty.is_new then
1130 ret = arguments.first.mtype
1131 res = self.new_var(ret)
1132 else if ret == null then
1133 res = null
1134 else
1135 ret = ret.resolve_for(mmethoddef.mclassdef.bound_mtype, mmethoddef.mclassdef.bound_mtype, mmethoddef.mclassdef.mmodule, true)
1136 res = self.new_var(ret)
1137 end
1138
1139 if mmethoddef.is_intern and not compiler.modelbuilder.toolcontext.opt_no_inline_intern.value then
1140 compiler.modelbuilder.nb_invok_by_inline += 1
1141 var frame = new Frame(self, mmethoddef, recvtype, arguments)
1142 frame.returnlabel = self.get_name("RET_LABEL")
1143 frame.returnvar = res
1144 var old_frame = self.frame
1145 self.frame = frame
1146 self.add("\{ /* Inline {mmethoddef} ({arguments.join(",")}) */")
1147 mmethoddef.compile_inside_to_c(self, arguments)
1148 self.add("{frame.returnlabel.as(not null)}:(void)0;")
1149 self.add("\}")
1150 self.frame = old_frame
1151 return res
1152 end
1153 compiler.modelbuilder.nb_invok_by_direct += 1
1154
1155 # Autobox arguments
1156 self.adapt_signature(mmethoddef, arguments)
1157
1158 self.require_declaration(mmethoddef.c_name)
1159 if res == null then
1160 self.add("{mmethoddef.c_name}({arguments.join(", ")});")
1161 return null
1162 else
1163 self.add("{res} = {mmethoddef.c_name}({arguments.join(", ")});")
1164 end
1165
1166 return res
1167 end
1168
1169 redef fun supercall(m: MMethodDef, recvtype: MClassType, arguments: Array[RuntimeVariable]): nullable RuntimeVariable
1170 do
1171 if arguments.first.mcasttype.ctype != "val*" then
1172 # In order to shortcut the primitive, we need to find the most specific method
1173 # However, because of performance (no flattening), we always work on the realmainmodule
1174 var main = self.compiler.mainmodule
1175 self.compiler.mainmodule = self.compiler.realmainmodule
1176 var res = self.monomorphic_super_send(m, recvtype, arguments)
1177 self.compiler.mainmodule = main
1178 return res
1179 end
1180 return table_send(m.mproperty, arguments, m.const_color)
1181 end
1182
1183 redef fun vararg_instance(mpropdef, recv, varargs, elttype)
1184 do
1185 # A vararg must be stored into an new array
1186 # The trick is that the dymaic type of the array may depends on the receiver
1187 # of the method (ie recv) if the static type is unresolved
1188 # This is more complex than usual because the unresolved type must not be resolved
1189 # with the current receiver (ie self).
1190 # Therefore to isolate the resolution from self, a local Frame is created.
1191 # One can see this implementation as an inlined method of the receiver whose only
1192 # job is to allocate the array
1193 var old_frame = self.frame
1194 var frame = new Frame(self, mpropdef, mpropdef.mclassdef.bound_mtype, [recv])
1195 self.frame = frame
1196 #print "required Array[{elttype}] for recv {recv.inspect}. bound=Array[{self.resolve_for(elttype, recv)}]. selfvar={frame.arguments.first.inspect}"
1197 var res = self.array_instance(varargs, elttype)
1198 self.frame = old_frame
1199 return res
1200 end
1201
1202 redef fun isset_attribute(a, recv)
1203 do
1204 self.check_recv_notnull(recv)
1205 var res = self.new_var(bool_type)
1206
1207 # What is the declared type of the attribute?
1208 var mtype = a.intro.static_mtype.as(not null)
1209 var intromclassdef = a.intro.mclassdef
1210 mtype = mtype.resolve_for(intromclassdef.bound_mtype, intromclassdef.bound_mtype, intromclassdef.mmodule, true)
1211
1212 if mtype isa MNullableType then
1213 self.add("{res} = 1; /* easy isset: {a} on {recv.inspect} */")
1214 return res
1215 end
1216
1217 self.require_declaration(a.const_color)
1218 if self.compiler.modelbuilder.toolcontext.opt_no_union_attribute.value then
1219 self.add("{res} = {recv}->attrs[{a.const_color}] != NULL; /* {a} on {recv.inspect}*/")
1220 else
1221
1222 if mtype.ctype == "val*" then
1223 self.add("{res} = {recv}->attrs[{a.const_color}].val != NULL; /* {a} on {recv.inspect} */")
1224 else
1225 self.add("{res} = 1; /* NOT YET IMPLEMENTED: isset of primitives: {a} on {recv.inspect} */")
1226 end
1227 end
1228 return res
1229 end
1230
1231 redef fun read_attribute(a, recv)
1232 do
1233 self.check_recv_notnull(recv)
1234
1235 # What is the declared type of the attribute?
1236 var ret = a.intro.static_mtype.as(not null)
1237 var intromclassdef = a.intro.mclassdef
1238 ret = ret.resolve_for(intromclassdef.bound_mtype, intromclassdef.bound_mtype, intromclassdef.mmodule, true)
1239
1240 self.require_declaration(a.const_color)
1241 if self.compiler.modelbuilder.toolcontext.opt_no_union_attribute.value then
1242 # Get the attribute or a box (ie. always a val*)
1243 var cret = self.object_type.as_nullable
1244 var res = self.new_var(cret)
1245 res.mcasttype = ret
1246
1247 self.add("{res} = {recv}->attrs[{a.const_color}]; /* {a} on {recv.inspect} */")
1248
1249 # Check for Uninitialized attribute
1250 if not ret isa MNullableType and not self.compiler.modelbuilder.toolcontext.opt_no_check_initialization.value then
1251 self.add("if (unlikely({res} == NULL)) \{")
1252 self.add_abort("Uninitialized attribute {a.name}")
1253 self.add("\}")
1254 end
1255
1256 # Return the attribute or its unboxed version
1257 # Note: it is mandatory since we reuse the box on write, we do not whant that the box escapes
1258 return self.autobox(res, ret)
1259 else
1260 var res = self.new_var(ret)
1261 self.add("{res} = {recv}->attrs[{a.const_color}].{ret.ctypename}; /* {a} on {recv.inspect} */")
1262
1263 # Check for Uninitialized attribute
1264 if ret.ctype == "val*" and not ret isa MNullableType and not self.compiler.modelbuilder.toolcontext.opt_no_check_initialization.value then
1265 self.add("if (unlikely({res} == NULL)) \{")
1266 self.add_abort("Uninitialized attribute {a.name}")
1267 self.add("\}")
1268 end
1269
1270 return res
1271 end
1272 end
1273
1274 redef fun write_attribute(a, recv, value)
1275 do
1276 self.check_recv_notnull(recv)
1277
1278 # What is the declared type of the attribute?
1279 var mtype = a.intro.static_mtype.as(not null)
1280 var intromclassdef = a.intro.mclassdef
1281 mtype = mtype.resolve_for(intromclassdef.bound_mtype, intromclassdef.bound_mtype, intromclassdef.mmodule, true)
1282
1283 # Adapt the value to the declared type
1284 value = self.autobox(value, mtype)
1285
1286 self.require_declaration(a.const_color)
1287 if self.compiler.modelbuilder.toolcontext.opt_no_union_attribute.value then
1288 var attr = "{recv}->attrs[{a.const_color}]"
1289 if mtype.ctype != "val*" then
1290 assert mtype isa MClassType
1291 # The attribute is primitive, thus we store it in a box
1292 # The trick is to create the box the first time then resuse the box
1293 self.add("if ({attr} != NULL) \{")
1294 self.add("((struct instance_{mtype.c_instance_name}*){attr})->value = {value}; /* {a} on {recv.inspect} */")
1295 self.add("\} else \{")
1296 value = self.autobox(value, self.object_type.as_nullable)
1297 self.add("{attr} = {value}; /* {a} on {recv.inspect} */")
1298 self.add("\}")
1299 else
1300 # The attribute is not primitive, thus store it direclty
1301 self.add("{attr} = {value}; /* {a} on {recv.inspect} */")
1302 end
1303 else
1304 self.add("{recv}->attrs[{a.const_color}].{mtype.ctypename} = {value}; /* {a} on {recv.inspect} */")
1305 end
1306 end
1307
1308 # Check that mtype is a live open type
1309 fun hardening_live_open_type(mtype: MType)
1310 do
1311 if not compiler.modelbuilder.toolcontext.opt_hardening.value then return
1312 self.require_declaration(mtype.const_color)
1313 var col = mtype.const_color
1314 self.add("if({col} == -1) \{")
1315 self.add("fprintf(stderr, \"Resolution of a dead open type: %s\\n\", \"{mtype.to_s.escape_to_c}\");")
1316 self.add_abort("open type dead")
1317 self.add("\}")
1318 end
1319
1320 # Check that mtype it a pointer to a live cast type
1321 fun hardening_cast_type(t: String)
1322 do
1323 if not compiler.modelbuilder.toolcontext.opt_hardening.value then return
1324 add("if({t} == NULL) \{")
1325 add_abort("cast type null")
1326 add("\}")
1327 add("if({t}->id == -1 || {t}->color == -1) \{")
1328 add("fprintf(stderr, \"Try to cast on a dead cast type: %s\\n\", {t}->name);")
1329 add_abort("cast type dead")
1330 add("\}")
1331 end
1332
1333 redef fun init_instance(mtype)
1334 do
1335 self.require_declaration("NEW_{mtype.mclass.c_name}")
1336 var compiler = self.compiler
1337 if mtype isa MGenericType and mtype.need_anchor then
1338 hardening_live_open_type(mtype)
1339 link_unresolved_type(self.frame.mpropdef.mclassdef, mtype)
1340 var recv = self.frame.arguments.first
1341 var recv_type_info = self.type_info(recv)
1342 self.require_declaration(mtype.const_color)
1343 if compiler.modelbuilder.toolcontext.opt_phmod_typing.value or compiler.modelbuilder.toolcontext.opt_phand_typing.value then
1344 return self.new_expr("NEW_{mtype.mclass.c_name}({recv_type_info}->resolution_table->types[HASH({recv_type_info}->resolution_table->mask, {mtype.const_color})])", mtype)
1345 else
1346 return self.new_expr("NEW_{mtype.mclass.c_name}({recv_type_info}->resolution_table->types[{mtype.const_color}])", mtype)
1347 end
1348 end
1349 compiler.undead_types.add(mtype)
1350 self.require_declaration("type_{mtype.c_name}")
1351 return self.new_expr("NEW_{mtype.mclass.c_name}(&type_{mtype.c_name})", mtype)
1352 end
1353
1354 redef fun type_test(value, mtype, tag)
1355 do
1356 self.add("/* {value.inspect} isa {mtype} */")
1357 var compiler = self.compiler
1358
1359 var recv = self.frame.arguments.first
1360 var recv_type_info = self.type_info(recv)
1361
1362 var res = self.new_var(bool_type)
1363
1364 var cltype = self.get_name("cltype")
1365 self.add_decl("int {cltype};")
1366 var idtype = self.get_name("idtype")
1367 self.add_decl("int {idtype};")
1368
1369 var maybe_null = self.maybe_null(value)
1370 var accept_null = "0"
1371 var ntype = mtype
1372 if ntype isa MNullableType then
1373 ntype = ntype.mtype
1374 accept_null = "1"
1375 end
1376
1377 if value.mcasttype.is_subtype(self.frame.mpropdef.mclassdef.mmodule, self.frame.mpropdef.mclassdef.bound_mtype, mtype) then
1378 self.add("{res} = 1; /* easy {value.inspect} isa {mtype}*/")
1379 if compiler.modelbuilder.toolcontext.opt_typing_test_metrics.value then
1380 self.compiler.count_type_test_skipped[tag] += 1
1381 self.add("count_type_test_skipped_{tag}++;")
1382 end
1383 return res
1384 end
1385
1386 if ntype.need_anchor then
1387 var type_struct = self.get_name("type_struct")
1388 self.add_decl("const struct type* {type_struct};")
1389
1390 # Either with resolution_table with a direct resolution
1391 hardening_live_open_type(mtype)
1392 link_unresolved_type(self.frame.mpropdef.mclassdef, mtype)
1393 self.require_declaration(mtype.const_color)
1394 if compiler.modelbuilder.toolcontext.opt_phmod_typing.value or compiler.modelbuilder.toolcontext.opt_phand_typing.value then
1395 self.add("{type_struct} = {recv_type_info}->resolution_table->types[HASH({recv_type_info}->resolution_table->mask, {mtype.const_color})];")
1396 else
1397 self.add("{type_struct} = {recv_type_info}->resolution_table->types[{mtype.const_color}];")
1398 end
1399 if compiler.modelbuilder.toolcontext.opt_typing_test_metrics.value then
1400 self.compiler.count_type_test_unresolved[tag] += 1
1401 self.add("count_type_test_unresolved_{tag}++;")
1402 end
1403 hardening_cast_type(type_struct)
1404 self.add("{cltype} = {type_struct}->color;")
1405 self.add("{idtype} = {type_struct}->id;")
1406 if maybe_null and accept_null == "0" then
1407 var is_nullable = self.get_name("is_nullable")
1408 self.add_decl("short int {is_nullable};")
1409 self.add("{is_nullable} = {type_struct}->is_nullable;")
1410 accept_null = is_nullable.to_s
1411 end
1412 else if ntype isa MClassType then
1413 compiler.undead_types.add(mtype)
1414 self.require_declaration("type_{mtype.c_name}")
1415 hardening_cast_type("(&type_{mtype.c_name})")
1416 self.add("{cltype} = type_{mtype.c_name}.color;")
1417 self.add("{idtype} = type_{mtype.c_name}.id;")
1418 if compiler.modelbuilder.toolcontext.opt_typing_test_metrics.value then
1419 self.compiler.count_type_test_resolved[tag] += 1
1420 self.add("count_type_test_resolved_{tag}++;")
1421 end
1422 else
1423 self.add("printf(\"NOT YET IMPLEMENTED: type_test(%s, {mtype}).\\n\", \"{value.inspect}\"); show_backtrace(1);")
1424 end
1425
1426 # check color is in table
1427 if maybe_null then
1428 self.add("if({value} == NULL) \{")
1429 self.add("{res} = {accept_null};")
1430 self.add("\} else \{")
1431 end
1432 var value_type_info = self.type_info(value)
1433 if compiler.modelbuilder.toolcontext.opt_phmod_typing.value or compiler.modelbuilder.toolcontext.opt_phand_typing.value then
1434 self.add("{cltype} = HASH({value_type_info}->color, {idtype});")
1435 end
1436 self.add("if({cltype} >= {value_type_info}->table_size) \{")
1437 self.add("{res} = 0;")
1438 self.add("\} else \{")
1439 self.add("{res} = {value_type_info}->type_table[{cltype}] == {idtype};")
1440 self.add("\}")
1441 if maybe_null then
1442 self.add("\}")
1443 end
1444
1445 return res
1446 end
1447
1448 redef fun is_same_type_test(value1, value2)
1449 do
1450 var res = self.new_var(bool_type)
1451 # Swap values to be symetric
1452 if value2.mtype.ctype != "val*" and value1.mtype.ctype == "val*" then
1453 var tmp = value1
1454 value1 = value2
1455 value2 = tmp
1456 end
1457 if value1.mtype.ctype != "val*" then
1458 if value2.mtype == value1.mtype then
1459 self.add("{res} = 1; /* is_same_type_test: compatible types {value1.mtype} vs. {value2.mtype} */")
1460 else if value2.mtype.ctype != "val*" then
1461 self.add("{res} = 0; /* is_same_type_test: incompatible types {value1.mtype} vs. {value2.mtype}*/")
1462 else
1463 var mtype1 = value1.mtype.as(MClassType)
1464 self.require_declaration("class_{mtype1.c_name}")
1465 self.add("{res} = ({value2} != NULL) && ({value2}->class == &class_{mtype1.c_name}); /* is_same_type_test */")
1466 end
1467 else
1468 self.add("{res} = ({value1} == {value2}) || ({value1} != NULL && {value2} != NULL && {value1}->class == {value2}->class); /* is_same_type_test */")
1469 end
1470 return res
1471 end
1472
1473 redef fun class_name_string(value)
1474 do
1475 var res = self.get_name("var_class_name")
1476 self.add_decl("const char* {res};")
1477 if value.mtype.ctype == "val*" then
1478 self.add "{res} = {value} == NULL ? \"null\" : {value}->type->name;"
1479 else if value.mtype isa MClassType and value.mtype.as(MClassType).mclass.kind == extern_kind then
1480 self.add "{res} = \"{value.mtype.as(MClassType).mclass}\";"
1481 else
1482 self.require_declaration("type_{value.mtype.c_name}")
1483 self.add "{res} = type_{value.mtype.c_name}.name;"
1484 end
1485 return res
1486 end
1487
1488 redef fun equal_test(value1, value2)
1489 do
1490 var res = self.new_var(bool_type)
1491 if value2.mtype.ctype != "val*" and value1.mtype.ctype == "val*" then
1492 var tmp = value1
1493 value1 = value2
1494 value2 = tmp
1495 end
1496 if value1.mtype.ctype != "val*" then
1497 if value2.mtype == value1.mtype then
1498 self.add("{res} = {value1} == {value2};")
1499 else if value2.mtype.ctype != "val*" then
1500 self.add("{res} = 0; /* incompatible types {value1.mtype} vs. {value2.mtype}*/")
1501 else
1502 var mtype1 = value1.mtype.as(MClassType)
1503 self.require_declaration("class_{mtype1.c_name}")
1504 self.add("{res} = ({value2} != NULL) && ({value2}->class == &class_{mtype1.c_name});")
1505 self.add("if ({res}) \{")
1506 self.add("{res} = ({self.autobox(value2, value1.mtype)} == {value1});")
1507 self.add("\}")
1508 end
1509 return res
1510 end
1511 var maybe_null = true
1512 var test = new Array[String]
1513 var t1 = value1.mcasttype
1514 if t1 isa MNullableType then
1515 test.add("{value1} != NULL")
1516 t1 = t1.mtype
1517 else
1518 maybe_null = false
1519 end
1520 var t2 = value2.mcasttype
1521 if t2 isa MNullableType then
1522 test.add("{value2} != NULL")
1523 t2 = t2.mtype
1524 else
1525 maybe_null = false
1526 end
1527
1528 var incompatible = false
1529 var primitive
1530 if t1.ctype != "val*" then
1531 primitive = t1
1532 if t1 == t2 then
1533 # No need to compare class
1534 else if t2.ctype != "val*" then
1535 incompatible = true
1536 else if can_be_primitive(value2) then
1537 test.add("{value1}->class == {value2}->class")
1538 else
1539 incompatible = true
1540 end
1541 else if t2.ctype != "val*" then
1542 primitive = t2
1543 if can_be_primitive(value1) then
1544 test.add("{value1}->class == {value2}->class")
1545 else
1546 incompatible = true
1547 end
1548 else
1549 primitive = null
1550 end
1551
1552 if incompatible then
1553 if maybe_null then
1554 self.add("{res} = {value1} == {value2}; /* incompatible types {t1} vs. {t2}; but may be NULL*/")
1555 return res
1556 else
1557 self.add("{res} = 0; /* incompatible types {t1} vs. {t2}; cannot be NULL */")
1558 return res
1559 end
1560 end
1561 if primitive != null then
1562 test.add("((struct instance_{primitive.c_instance_name}*){value1})->value == ((struct instance_{primitive.c_instance_name}*){value2})->value")
1563 else if can_be_primitive(value1) and can_be_primitive(value2) then
1564 test.add("{value1}->class == {value2}->class")
1565 var s = new Array[String]
1566 for t, v in self.compiler.box_kinds do
1567 s.add "({value1}->class->box_kind == {v} && ((struct instance_{t.c_instance_name}*){value1})->value == ((struct instance_{t.c_instance_name}*){value2})->value)"
1568 end
1569 test.add("({s.join(" || ")})")
1570 else
1571 self.add("{res} = {value1} == {value2};")
1572 return res
1573 end
1574 self.add("{res} = {value1} == {value2} || ({test.join(" && ")});")
1575 return res
1576 end
1577
1578 fun can_be_primitive(value: RuntimeVariable): Bool
1579 do
1580 var t = value.mcasttype
1581 if t isa MNullableType then t = t.mtype
1582 if not t isa MClassType then return false
1583 var k = t.mclass.kind
1584 return k == interface_kind or t.ctype != "val*"
1585 end
1586
1587 fun maybe_null(value: RuntimeVariable): Bool
1588 do
1589 var t = value.mcasttype
1590 return t isa MNullableType or t isa MNullType
1591 end
1592
1593 redef fun array_instance(array, elttype)
1594 do
1595 var nclass = self.get_class("NativeArray")
1596 var arrayclass = self.get_class("Array")
1597 var arraytype = arrayclass.get_mtype([elttype])
1598 var res = self.init_instance(arraytype)
1599 self.add("\{ /* {res} = array_instance Array[{elttype}] */")
1600 var length = self.int_instance(array.length)
1601 var nat = native_array_instance(elttype, length)
1602 for i in [0..array.length[ do
1603 var r = self.autobox(array[i], self.object_type)
1604 self.add("((struct instance_{nclass.c_name}*){nat})->values[{i}] = (val*) {r};")
1605 end
1606 self.send(self.get_property("with_native", arrayclass.intro.bound_mtype), [res, nat, length])
1607 self.add("\}")
1608 return res
1609 end
1610
1611 fun native_array_instance(elttype: MType, length: RuntimeVariable): RuntimeVariable
1612 do
1613 var mtype = self.get_class("NativeArray").get_mtype([elttype])
1614 self.require_declaration("NEW_{mtype.mclass.c_name}")
1615 assert mtype isa MGenericType
1616 var compiler = self.compiler
1617 if mtype.need_anchor then
1618 hardening_live_open_type(mtype)
1619 link_unresolved_type(self.frame.mpropdef.mclassdef, mtype)
1620 var recv = self.frame.arguments.first
1621 var recv_type_info = self.type_info(recv)
1622 self.require_declaration(mtype.const_color)
1623 if compiler.modelbuilder.toolcontext.opt_phmod_typing.value or compiler.modelbuilder.toolcontext.opt_phand_typing.value then
1624 return self.new_expr("NEW_{mtype.mclass.c_name}({length}, {recv_type_info}->resolution_table->types[HASH({recv_type_info}->resolution_table->mask, {mtype.const_color})])", mtype)
1625 else
1626 return self.new_expr("NEW_{mtype.mclass.c_name}({length}, {recv_type_info}->resolution_table->types[{mtype.const_color}])", mtype)
1627 end
1628 end
1629 compiler.undead_types.add(mtype)
1630 self.require_declaration("type_{mtype.c_name}")
1631 return self.new_expr("NEW_{mtype.mclass.c_name}({length}, &type_{mtype.c_name})", mtype)
1632 end
1633
1634 redef fun native_array_def(pname, ret_type, arguments)
1635 do
1636 var elttype = arguments.first.mtype
1637 var nclass = self.get_class("NativeArray")
1638 var recv = "((struct instance_{nclass.c_instance_name}*){arguments[0]})->values"
1639 if pname == "[]" then
1640 self.ret(self.new_expr("{recv}[{arguments[1]}]", ret_type.as(not null)))
1641 return
1642 else if pname == "[]=" then
1643 self.add("{recv}[{arguments[1]}]={arguments[2]};")
1644 return
1645 else if pname == "copy_to" then
1646 var recv1 = "((struct instance_{nclass.c_instance_name}*){arguments[1]})->values"
1647 self.add("memcpy({recv1}, {recv}, {arguments[2]}*sizeof({elttype.ctype}));")
1648 return
1649 end
1650 end
1651
1652 redef fun calloc_array(ret_type, arguments)
1653 do
1654 var mclass = self.get_class("ArrayCapable")
1655 var ft = mclass.mclass_type.arguments.first.as(MParameterType)
1656 var res = self.native_array_instance(ft, arguments[1])
1657 self.ret(res)
1658 end
1659
1660 fun link_unresolved_type(mclassdef: MClassDef, mtype: MType) do
1661 assert mtype.need_anchor
1662 var compiler = self.compiler
1663 if not compiler.live_unresolved_types.has_key(self.frame.mpropdef.mclassdef) then
1664 compiler.live_unresolved_types[self.frame.mpropdef.mclassdef] = new HashSet[MType]
1665 end
1666 compiler.live_unresolved_types[self.frame.mpropdef.mclassdef].add(mtype)
1667 end
1668 end
1669
1670 redef class MMethodDef
1671 fun separate_runtime_function: AbstractRuntimeFunction
1672 do
1673 var res = self.separate_runtime_function_cache
1674 if res == null then
1675 res = new SeparateRuntimeFunction(self)
1676 self.separate_runtime_function_cache = res
1677 end
1678 return res
1679 end
1680 private var separate_runtime_function_cache: nullable SeparateRuntimeFunction
1681
1682 fun virtual_runtime_function: AbstractRuntimeFunction
1683 do
1684 var res = self.virtual_runtime_function_cache
1685 if res == null then
1686 res = new VirtualRuntimeFunction(self)
1687 self.virtual_runtime_function_cache = res
1688 end
1689 return res
1690 end
1691 private var virtual_runtime_function_cache: nullable VirtualRuntimeFunction
1692 end
1693
1694 # The C function associated to a methoddef separately compiled
1695 class SeparateRuntimeFunction
1696 super AbstractRuntimeFunction
1697
1698 redef fun build_c_name: String do return "{mmethoddef.c_name}"
1699
1700 redef fun to_s do return self.mmethoddef.to_s
1701
1702 redef fun compile_to_c(compiler)
1703 do
1704 var mmethoddef = self.mmethoddef
1705
1706 var recv = self.mmethoddef.mclassdef.bound_mtype
1707 var v = compiler.new_visitor
1708 var selfvar = new RuntimeVariable("self", recv, recv)
1709 var arguments = new Array[RuntimeVariable]
1710 var frame = new Frame(v, mmethoddef, recv, arguments)
1711 v.frame = frame
1712
1713 var msignature = mmethoddef.msignature.resolve_for(mmethoddef.mclassdef.bound_mtype, mmethoddef.mclassdef.bound_mtype, mmethoddef.mclassdef.mmodule, true)
1714
1715 var sig = new Buffer
1716 var comment = new Buffer
1717 var ret = msignature.return_mtype
1718 if ret != null then
1719 sig.append("{ret.ctype} ")
1720 else if mmethoddef.mproperty.is_new then
1721 ret = recv
1722 sig.append("{ret.ctype} ")
1723 else
1724 sig.append("void ")
1725 end
1726 sig.append(self.c_name)
1727 sig.append("({selfvar.mtype.ctype} {selfvar}")
1728 comment.append("({selfvar}: {selfvar.mtype}")
1729 arguments.add(selfvar)
1730 for i in [0..msignature.arity[ do
1731 var mtype = msignature.mparameters[i].mtype
1732 if i == msignature.vararg_rank then
1733 mtype = v.get_class("Array").get_mtype([mtype])
1734 end
1735 comment.append(", {mtype}")
1736 sig.append(", {mtype.ctype} p{i}")
1737 var argvar = new RuntimeVariable("p{i}", mtype, mtype)
1738 arguments.add(argvar)
1739 end
1740 sig.append(")")
1741 comment.append(")")
1742 if ret != null then
1743 comment.append(": {ret}")
1744 end
1745 compiler.provide_declaration(self.c_name, "{sig};")
1746
1747 v.add_decl("/* method {self} for {comment} */")
1748 v.add_decl("{sig} \{")
1749 if ret != null then
1750 frame.returnvar = v.new_var(ret)
1751 end
1752 frame.returnlabel = v.get_name("RET_LABEL")
1753
1754 if recv != arguments.first.mtype then
1755 #print "{self} {recv} {arguments.first}"
1756 end
1757 mmethoddef.compile_inside_to_c(v, arguments)
1758
1759 v.add("{frame.returnlabel.as(not null)}:;")
1760 if ret != null then
1761 v.add("return {frame.returnvar.as(not null)};")
1762 end
1763 v.add("\}")
1764 if not self.c_name.has_substring("VIRTUAL", 0) then compiler.names[self.c_name] = "{mmethoddef.mclassdef.mmodule.name}::{mmethoddef.mclassdef.mclass.name}::{mmethoddef.mproperty.name} ({mmethoddef.location.file.filename}:{mmethoddef.location.line_start})"
1765 end
1766 end
1767
1768 # The C function associated to a methoddef on a primitive type, stored into a VFT of a class
1769 # The first parameter (the reciever) is always typed by val* in order to accept an object value
1770 class VirtualRuntimeFunction
1771 super AbstractRuntimeFunction
1772
1773 redef fun build_c_name: String do return "VIRTUAL_{mmethoddef.c_name}"
1774
1775 redef fun to_s do return self.mmethoddef.to_s
1776
1777 redef fun compile_to_c(compiler)
1778 do
1779 var mmethoddef = self.mmethoddef
1780
1781 var recv = self.mmethoddef.mclassdef.bound_mtype
1782 var v = compiler.new_visitor
1783 var selfvar = new RuntimeVariable("self", v.object_type, recv)
1784 var arguments = new Array[RuntimeVariable]
1785 var frame = new Frame(v, mmethoddef, recv, arguments)
1786 v.frame = frame
1787
1788 var sig = new Buffer
1789 var comment = new Buffer
1790
1791 # Because the function is virtual, the signature must match the one of the original class
1792 var intromclassdef = self.mmethoddef.mproperty.intro.mclassdef
1793 var msignature = mmethoddef.mproperty.intro.msignature.resolve_for(intromclassdef.bound_mtype, intromclassdef.bound_mtype, intromclassdef.mmodule, true)
1794 var ret = msignature.return_mtype
1795 if ret != null then
1796 sig.append("{ret.ctype} ")
1797 else if mmethoddef.mproperty.is_new then
1798 ret = recv
1799 sig.append("{ret.ctype} ")
1800 else
1801 sig.append("void ")
1802 end
1803 sig.append(self.c_name)
1804 sig.append("({selfvar.mtype.ctype} {selfvar}")
1805 comment.append("({selfvar}: {selfvar.mtype}")
1806 arguments.add(selfvar)
1807 for i in [0..msignature.arity[ do
1808 var mtype = msignature.mparameters[i].mtype
1809 if i == msignature.vararg_rank then
1810 mtype = v.get_class("Array").get_mtype([mtype])
1811 end
1812 comment.append(", {mtype}")
1813 sig.append(", {mtype.ctype} p{i}")
1814 var argvar = new RuntimeVariable("p{i}", mtype, mtype)
1815 arguments.add(argvar)
1816 end
1817 sig.append(")")
1818 comment.append(")")
1819 if ret != null then
1820 comment.append(": {ret}")
1821 end
1822 compiler.provide_declaration(self.c_name, "{sig};")
1823
1824 v.add_decl("/* method {self} for {comment} */")
1825 v.add_decl("{sig} \{")
1826 if ret != null then
1827 frame.returnvar = v.new_var(ret)
1828 end
1829 frame.returnlabel = v.get_name("RET_LABEL")
1830
1831 var subret = v.call(mmethoddef, recv, arguments)
1832 if ret != null then
1833 assert subret != null
1834 v.assign(frame.returnvar.as(not null), subret)
1835 end
1836
1837 v.add("{frame.returnlabel.as(not null)}:;")
1838 if ret != null then
1839 v.add("return {frame.returnvar.as(not null)};")
1840 end
1841 v.add("\}")
1842 if not self.c_name.has_substring("VIRTUAL", 0) then compiler.names[self.c_name] = "{mmethoddef.mclassdef.mmodule.name}::{mmethoddef.mclassdef.mclass.name}::{mmethoddef.mproperty.name} ({mmethoddef.location.file.filename}--{mmethoddef.location.line_start})"
1843 end
1844
1845 # TODO ?
1846 redef fun call(v, arguments) do abort
1847 end
1848
1849 redef class MType
1850 fun const_color: String do return "COLOR_{c_name}"
1851
1852 # C name of the instance type to use
1853 fun c_instance_name: String do return c_name
1854 end
1855
1856 redef class MClassType
1857 redef fun c_instance_name do return mclass.c_instance_name
1858 end
1859
1860 redef class MClass
1861 # Extern classes use the C instance of kernel::Pointer
1862 fun c_instance_name: String
1863 do
1864 if kind == extern_kind then
1865 return "kernel__Pointer"
1866 else return c_name
1867 end
1868 end
1869
1870 redef class MProperty
1871 fun const_color: String do return "COLOR_{c_name}"
1872 end
1873
1874 redef class MPropDef
1875 fun const_color: String do return "COLOR_{c_name}"
1876 end