Merge: Portable stack-traces
[nit.git] / src / compiler / abstract_compiler.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 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 # Abstract compiler
18 module abstract_compiler
19
20 import literal
21 import semantize
22 import platform
23 import c_tools
24 private import annotation
25 import mixin
26 import counter
27
28 # Add compiling options
29 redef class ToolContext
30 # --output
31 var opt_output = new OptionString("Output file", "-o", "--output")
32 # --dir
33 var opt_dir = new OptionString("Output directory", "--dir")
34 # --no-cc
35 var opt_no_cc = new OptionBool("Do not invoke C compiler", "--no-cc")
36 # --no-main
37 var opt_no_main = new OptionBool("Do not generate main entry point", "--no-main")
38 # --make-flags
39 var opt_make_flags = new OptionString("Additional options to make", "--make-flags")
40 # --max-c-lines
41 var opt_max_c_lines = new OptionInt("Maximum number of lines in generated C files. Use 0 for unlimited", 10000, "--max-c-lines")
42 # --group-c-files
43 var opt_group_c_files = new OptionBool("Group all generated code in the same series of files", "--group-c-files")
44 # --compile-dir
45 var opt_compile_dir = new OptionString("Directory used to generate temporary files", "--compile-dir")
46 # --hardening
47 var opt_hardening = new OptionBool("Generate contracts in the C code against bugs in the compiler", "--hardening")
48 # --no-check-covariance
49 var opt_no_check_covariance = new OptionBool("Disable type tests of covariant parameters (dangerous)", "--no-check-covariance")
50 # --no-check-attr-isset
51 var opt_no_check_attr_isset = new OptionBool("Disable isset tests before each attribute access (dangerous)", "--no-check-attr-isset")
52 # --no-check-assert
53 var opt_no_check_assert = new OptionBool("Disable the evaluation of explicit 'assert' and 'as' (dangerous)", "--no-check-assert")
54 # --no-check-autocast
55 var opt_no_check_autocast = new OptionBool("Disable implicit casts on unsafe expression usage (dangerous)", "--no-check-autocast")
56 # --no-check-null
57 var opt_no_check_null = new OptionBool("Disable tests of null receiver (dangerous)", "--no-check-null")
58 # --no-check-all
59 var opt_no_check_all = new OptionBool("Disable all tests (dangerous)", "--no-check-all")
60 # --typing-test-metrics
61 var opt_typing_test_metrics = new OptionBool("Enable static and dynamic count of all type tests", "--typing-test-metrics")
62 # --invocation-metrics
63 var opt_invocation_metrics = new OptionBool("Enable static and dynamic count of all method invocations", "--invocation-metrics")
64 # --isset-checks-metrics
65 var opt_isset_checks_metrics = new OptionBool("Enable static and dynamic count of isset checks before attributes access", "--isset-checks-metrics")
66 # --no-stacktrace
67 var opt_no_stacktrace = new OptionBool("Disable the generation of stack traces", "--no-stacktrace")
68 # --no-gcc-directives
69 var opt_no_gcc_directive = new OptionArray("Disable a advanced gcc directives for optimization", "--no-gcc-directive")
70 # --release
71 var opt_release = new OptionBool("Compile in release mode and finalize application", "--release")
72
73 redef init
74 do
75 super
76 self.option_context.add_option(self.opt_output, self.opt_dir, self.opt_no_cc, self.opt_no_main, self.opt_make_flags, self.opt_compile_dir, self.opt_hardening)
77 self.option_context.add_option(self.opt_no_check_covariance, self.opt_no_check_attr_isset, self.opt_no_check_assert, self.opt_no_check_autocast, self.opt_no_check_null, self.opt_no_check_all)
78 self.option_context.add_option(self.opt_typing_test_metrics, self.opt_invocation_metrics, self.opt_isset_checks_metrics)
79 self.option_context.add_option(self.opt_no_stacktrace)
80 self.option_context.add_option(self.opt_no_gcc_directive)
81 self.option_context.add_option(self.opt_release)
82 self.option_context.add_option(self.opt_max_c_lines, self.opt_group_c_files)
83
84 opt_no_main.hidden = true
85 end
86
87 redef fun process_options(args)
88 do
89 super
90
91 if opt_output.value != null and opt_dir.value != null then
92 print "Option Error: cannot use both --dir and --output"
93 exit(1)
94 end
95
96 if opt_no_check_all.value then
97 opt_no_check_covariance.value = true
98 opt_no_check_attr_isset.value = true
99 opt_no_check_assert.value = true
100 opt_no_check_autocast.value = true
101 opt_no_check_null.value = true
102 end
103 end
104 end
105
106 redef class ModelBuilder
107 # Simple indirection to `Toolchain::write_and_make`
108 protected fun write_and_make(compiler: AbstractCompiler)
109 do
110 var platform = compiler.target_platform
111 var toolchain = platform.toolchain(toolcontext, compiler)
112 compiler.toolchain = toolchain
113 toolchain.write_and_make
114 end
115 end
116
117 redef class Platform
118 # The specific tool-chain associated to the platform
119 fun toolchain(toolcontext: ToolContext, compiler: AbstractCompiler): Toolchain
120 do
121 return new MakefileToolchain(toolcontext, compiler)
122 end
123 end
124
125 # Build toolchain for a specific target program, varies per `Platform`
126 class Toolchain
127
128 # Toolcontext
129 var toolcontext: ToolContext
130
131 # Compiler of the target program
132 var compiler: AbstractCompiler
133
134 # Directory where to generate all files
135 #
136 # The option `--compile_dir` change this directory.
137 fun root_compile_dir: String
138 do
139 var compile_dir = toolcontext.opt_compile_dir.value
140 if compile_dir == null then compile_dir = "nit_compile"
141 return compile_dir
142 end
143
144 # Directory where to generate all C files
145 #
146 # By default it is `root_compile_dir` but some platform may require that it is a subdirectory.
147 fun compile_dir: String do return root_compile_dir
148
149 # Write all C files and compile them
150 fun write_and_make is abstract
151 end
152
153 # Default toolchain using a Makefile
154 class MakefileToolchain
155 super Toolchain
156
157 redef fun write_and_make
158 do
159 var compile_dir = compile_dir
160
161 # Remove the compilation directory unless explicitly set
162 var auto_remove = toolcontext.opt_compile_dir.value == null
163
164 # Generate the .h and .c files
165 # A single C file regroups many compiled rumtime functions
166 # Note that we do not try to be clever an a small change in a Nit source file may change the content of all the generated .c files
167 var time0 = get_time
168 self.toolcontext.info("*** WRITING C ***", 1)
169
170 root_compile_dir.mkdir
171 compile_dir.mkdir
172
173 var cfiles = new Array[String]
174 write_files(compile_dir, cfiles)
175
176 # Generate the Makefile
177
178 write_makefile(compile_dir, cfiles)
179
180 var time1 = get_time
181 self.toolcontext.info("*** END WRITING C: {time1-time0} ***", 2)
182
183 # Execute the Makefile
184
185 if self.toolcontext.opt_no_cc.value then return
186
187 time0 = time1
188 self.toolcontext.info("*** COMPILING C ***", 1)
189
190 compile_c_code(compile_dir)
191
192 if auto_remove then
193 sys.system("rm -r -- '{root_compile_dir.escape_to_sh}/'")
194 end
195
196 time1 = get_time
197 self.toolcontext.info("*** END COMPILING C: {time1-time0} ***", 2)
198 end
199
200 # Write all source files to the `compile_dir`
201 fun write_files(compile_dir: String, cfiles: Array[String])
202 do
203 var platform = compiler.target_platform
204 if platform.supports_libunwind then compiler.build_c_to_nit_bindings
205 var cc_opt_with_libgc = "-DWITH_LIBGC"
206 if not platform.supports_libgc then cc_opt_with_libgc = ""
207
208 # Add gc_choser.h to aditionnal bodies
209 var gc_chooser = new ExternCFile("gc_chooser.c", cc_opt_with_libgc)
210 if cc_opt_with_libgc != "" then gc_chooser.pkgconfigs.add "bdw-gc"
211 compiler.extern_bodies.add(gc_chooser)
212 var clib = toolcontext.nit_dir / "clib"
213 compiler.files_to_copy.add "{clib}/gc_chooser.c"
214 compiler.files_to_copy.add "{clib}/gc_chooser.h"
215
216 # FFI
217 for m in compiler.mainmodule.in_importation.greaters do
218 compiler.finalize_ffi_for_module(m)
219 end
220
221 # Copy original .[ch] files to compile_dir
222 for src in compiler.files_to_copy do
223 var basename = src.basename("")
224 var dst = "{compile_dir}/{basename}"
225 src.file_copy_to dst
226 end
227
228 var hfilename = compiler.header.file.name + ".h"
229 var hfilepath = "{compile_dir}/{hfilename}"
230 var h = new FileWriter.open(hfilepath)
231 for l in compiler.header.decl_lines do
232 h.write l
233 h.write "\n"
234 end
235 for l in compiler.header.lines do
236 h.write l
237 h.write "\n"
238 end
239 h.close
240
241 var max_c_lines = toolcontext.opt_max_c_lines.value
242 for f in compiler.files do
243 var i = 0
244 var count = 0
245 var file: nullable FileWriter = null
246 for vis in f.writers do
247 if vis == compiler.header then continue
248 var total_lines = vis.lines.length + vis.decl_lines.length
249 if total_lines == 0 then continue
250 count += total_lines
251 if file == null or (count > max_c_lines and max_c_lines > 0) then
252 i += 1
253 if file != null then file.close
254 var cfilename = "{f.name}.{i}.c"
255 var cfilepath = "{compile_dir}/{cfilename}"
256 self.toolcontext.info("new C source files to compile: {cfilepath}", 3)
257 cfiles.add(cfilename)
258 file = new FileWriter.open(cfilepath)
259 file.write "#include \"{f.name}.0.h\"\n"
260 count = total_lines
261 end
262 for l in vis.decl_lines do
263 file.write l
264 file.write "\n"
265 end
266 for l in vis.lines do
267 file.write l
268 file.write "\n"
269 end
270 end
271 if file == null then continue
272 file.close
273
274 var cfilename = "{f.name}.0.h"
275 var cfilepath = "{compile_dir}/{cfilename}"
276 var hfile: nullable FileWriter = null
277 hfile = new FileWriter.open(cfilepath)
278 hfile.write "#include \"{hfilename}\"\n"
279 for key in f.required_declarations do
280 if not compiler.provided_declarations.has_key(key) then
281 var node = compiler.requirers_of_declarations.get_or_null(key)
282 if node != null then
283 node.debug "No provided declaration for {key}"
284 else
285 print "No provided declaration for {key}"
286 end
287 abort
288 end
289 hfile.write compiler.provided_declarations[key]
290 hfile.write "\n"
291 end
292 hfile.close
293 end
294
295 self.toolcontext.info("Total C source files to compile: {cfiles.length}", 2)
296 end
297
298 # Get the name of the Makefile to use
299 fun makefile_name: String do return "{compiler.mainmodule.c_name}.mk"
300
301 # Get the default name of the executable to produce
302 fun default_outname: String
303 do
304 var mainmodule = compiler.mainmodule.first_real_mmodule
305 return mainmodule.name
306 end
307
308 # Combine options and platform informations to get the final path of the outfile
309 fun outfile(mainmodule: MModule): String
310 do
311 var res = self.toolcontext.opt_output.value
312 if res != null then return res
313 res = default_outname
314 var dir = self.toolcontext.opt_dir.value
315 if dir != null then return dir.join_path(res)
316 return res
317 end
318
319 # Write the Makefile
320 fun write_makefile(compile_dir: String, cfiles: Array[String])
321 do
322 var mainmodule = compiler.mainmodule
323 var platform = compiler.target_platform
324
325 var outname = outfile(mainmodule)
326
327 var real_outpath = compile_dir.relpath(outname)
328 var outpath = real_outpath.escape_to_mk
329 if outpath != real_outpath then
330 # If the name is crazy and need escaping, we will do an indirection
331 # 1. generate the binary in the nit_compile dir under an escaped name
332 # 2. copy the binary at the right place in the `all` goal.
333 outpath = mainmodule.c_name
334 end
335 var makename = makefile_name
336 var makepath = "{compile_dir}/{makename}"
337 var makefile = new FileWriter.open(makepath)
338
339 var linker_options = new HashSet[String]
340 for m in mainmodule.in_importation.greaters do
341 var libs = m.collect_linker_libs
342 if libs != null then linker_options.add_all(libs)
343 end
344
345 makefile.write("CC = ccache cc\nCXX = ccache c++\nCFLAGS = -g -O2 -Wno-unused-value -Wno-switch -Wno-attributes\nCINCL =\nLDFLAGS ?= \nLDLIBS ?= -lm {linker_options.join(" ")}\n\n")
346
347 makefile.write "\n# SPECIAL CONFIGURATION FLAGS\n"
348 if platform.supports_libunwind then
349 if toolcontext.opt_no_stacktrace.value then
350 makefile.write "NO_STACKTRACE=True"
351 else
352 makefile.write "NO_STACKTRACE= # Set to `True` to enable"
353 end
354 end
355
356 # Dynamic adaptations
357 # While `platform` enable complex toolchains, they are statically applied
358 # For a dynamic adaptsation of the compilation, the generated Makefile should check and adapt things itself
359 makefile.write "\n\n"
360
361 # Check and adapt the targeted system
362 makefile.write("uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')\n")
363
364 # Check and adapt for the compiler used
365 # clang need an additionnal `-Qunused-arguments`
366 makefile.write("clang_check := $(shell sh -c '$(CC) -v 2>&1 | grep -q clang; echo $$?')\nifeq ($(clang_check), 0)\n\tCFLAGS += -Qunused-arguments\nendif\n")
367
368 if platform.supports_libunwind then
369 makefile.write """
370 ifneq ($(NO_STACKTRACE), True)
371 # Check and include lib-unwind in a portable way
372 ifneq ($(uname_S),Darwin)
373 # already included on macosx, but need to get the correct flags in other supported platforms.
374 ifeq ($(shell pkg-config --exists 'libunwind'; echo $$?), 0)
375 LDLIBS += `pkg-config --libs libunwind`
376 CFLAGS += `pkg-config --cflags libunwind`
377 else
378 $(warning "[_] stack-traces disabled. Please install libunwind-dev.")
379 CFLAGS += -D NO_STACKTRACE
380 endif
381 endif
382 else
383 # Stacktraces disabled
384 CFLAGS += -D NO_STACKTRACE
385 endif
386
387 """
388 else
389 makefile.write("CFLAGS += -D NO_STACKTRACE\n\n")
390 end
391
392 makefile.write("all: {outpath}\n")
393 if outpath != real_outpath then
394 makefile.write("\tcp -- {outpath.escape_to_sh} {real_outpath.escape_to_sh.replace("$","$$")}")
395 end
396 makefile.write("\n")
397
398 var ofiles = new Array[String]
399 var dep_rules = new Array[String]
400 # Compile each generated file
401 for f in cfiles do
402 var o = f.strip_extension(".c") + ".o"
403 makefile.write("{o}: {f}\n\t$(CC) $(CFLAGS) $(CINCL) -c -o {o} {f}\n\n")
404 ofiles.add(o)
405 dep_rules.add(o)
406 end
407
408 # Generate linker script, if any
409 if not compiler.linker_script.is_empty then
410 var linker_script_path = "{compile_dir}/linker_script"
411 ofiles.add "linker_script"
412 var f = new FileWriter.open(linker_script_path)
413 for l in compiler.linker_script do
414 f.write l
415 f.write "\n"
416 end
417 f.close
418 end
419
420 var java_files = new Array[ExternFile]
421
422 var pkgconfigs = new Array[String]
423 for f in compiler.extern_bodies do
424 pkgconfigs.add_all f.pkgconfigs
425 end
426 # Protect pkg-config
427 if not pkgconfigs.is_empty then
428 makefile.write """
429 # does pkg-config exists?
430 ifneq ($(shell which pkg-config >/dev/null; echo $$?), 0)
431 $(error "Command `pkg-config` not found. Please install it")
432 endif
433 """
434 for p in pkgconfigs do
435 makefile.write """
436 # Check for library {{{p}}}
437 ifneq ($(shell pkg-config --exists '{{{p}}}'; echo $$?), 0)
438 $(error "pkg-config: package {{{p}}} is not found.")
439 endif
440 """
441 end
442 end
443
444 # Compile each required extern body into a specific .o
445 for f in compiler.extern_bodies do
446 var o = f.makefile_rule_name
447 var ff = f.filename.basename("")
448 makefile.write("{o}: {ff}\n")
449 makefile.write("\t{f.makefile_rule_content}\n\n")
450 dep_rules.add(f.makefile_rule_name)
451
452 if f.compiles_to_o_file then ofiles.add(o)
453 if f.add_to_jar then java_files.add(f)
454 end
455
456 if not java_files.is_empty then
457 var jar_file = "{outpath}.jar"
458
459 var class_files_array = new Array[String]
460 for f in java_files do class_files_array.add(f.makefile_rule_name)
461 var class_files = class_files_array.join(" ")
462
463 makefile.write("{jar_file}: {class_files}\n")
464 makefile.write("\tjar cf {jar_file} {class_files}\n\n")
465 dep_rules.add jar_file
466 end
467
468 # Link edition
469 var pkg = ""
470 if not pkgconfigs.is_empty then
471 pkg = "`pkg-config --libs {pkgconfigs.join(" ")}`"
472 end
473 makefile.write("{outpath}: {dep_rules.join(" ")}\n\t$(CC) $(LDFLAGS) -o {outpath.escape_to_sh} {ofiles.join(" ")} $(LDLIBS) {pkg}\n\n")
474 # Clean
475 makefile.write("clean:\n\trm {ofiles.join(" ")} 2>/dev/null\n")
476 if outpath != real_outpath then
477 makefile.write("\trm -- {outpath.escape_to_sh} 2>/dev/null\n")
478 end
479 makefile.close
480 self.toolcontext.info("Generated makefile: {makepath}", 2)
481
482 makepath.file_copy_to "{compile_dir}/Makefile"
483 end
484
485 # The C code is generated, compile it to an executable
486 fun compile_c_code(compile_dir: String)
487 do
488 var makename = makefile_name
489
490 var makeflags = self.toolcontext.opt_make_flags.value
491 if makeflags == null then makeflags = ""
492
493 var command = "make -B -C {compile_dir} -f {makename} -j 4 {makeflags}"
494 self.toolcontext.info(command, 2)
495
496 var res
497 if self.toolcontext.verbose_level >= 3 then
498 res = sys.system("{command} 2>&1")
499 else
500 res = sys.system("{command} 2>&1 >/dev/null")
501 end
502 if res != 0 then
503 toolcontext.error(null, "Compilation Error: `make` failed with error code: {res}. The command was `{command}`.")
504 end
505 end
506 end
507
508 # Singleton that store the knowledge about the compilation process
509 abstract class AbstractCompiler
510 type VISITOR: AbstractCompilerVisitor
511
512 # Table corresponding c_names to nit names (methods)
513 var names = new HashMap[String, String]
514
515 # The main module of the program currently compiled
516 # Is assigned during the separate compilation
517 var mainmodule: MModule is writable
518
519 # The real main module of the program
520 var realmainmodule: MModule is noinit
521
522 # The modelbuilder used to know the model and the AST
523 var modelbuilder: ModelBuilder is protected writable
524
525 # The associated toolchain
526 #
527 # Set by `modelbuilder.write_and_make` and permit sub-routines to access the current toolchain if required.
528 var toolchain: Toolchain is noinit
529
530 # Is hardening asked? (see --hardening)
531 fun hardening: Bool do return self.modelbuilder.toolcontext.opt_hardening.value
532
533 # The targeted specific platform
534 var target_platform: Platform is noinit
535
536 init
537 do
538 self.realmainmodule = mainmodule
539 target_platform = mainmodule.target_platform or else new Platform
540 end
541
542 # Do the full code generation of the program `mainmodule`
543 # It is the main method usually called after the instantiation
544 fun do_compilation is abstract
545
546 # Force the creation of a new file
547 # The point is to avoid contamination between must-be-compiled-separately files
548 fun new_file(name: String): CodeFile
549 do
550 if modelbuilder.toolcontext.opt_group_c_files.value then
551 if self.files.is_empty then
552 var f = new CodeFile(mainmodule.c_name)
553 self.files.add(f)
554 end
555 return self.files.first
556 end
557 var f = new CodeFile(name)
558 self.files.add(f)
559 return f
560 end
561
562 # The list of all associated files
563 # Used to generate .c files
564 var files = new List[CodeFile]
565
566 # Initialize a visitor specific for a compiler engine
567 fun new_visitor: VISITOR is abstract
568
569 # Where global declaration are stored (the main .h)
570 var header: CodeWriter is writable, noinit
571
572 # Additionnal linker script for `ld`.
573 # Mainly used to do specific link-time symbol resolution
574 var linker_script = new Array[String]
575
576 # Provide a declaration that can be requested (before or latter) by a visitor
577 fun provide_declaration(key: String, s: String)
578 do
579 if self.provided_declarations.has_key(key) then
580 assert self.provided_declarations[key] == s
581 end
582 self.provided_declarations[key] = s
583 end
584
585 private var provided_declarations = new HashMap[String, String]
586
587 private var requirers_of_declarations = new HashMap[String, ANode]
588
589 # Builds the .c and .h files to be used when generating a Stack Trace
590 # Binds the generated C function names to Nit function names
591 fun build_c_to_nit_bindings
592 do
593 var compile_dir = toolchain.compile_dir
594
595 var stream = new FileWriter.open("{compile_dir}/c_functions_hash.c")
596 stream.write("#include <string.h>\n")
597 stream.write("#include <stdlib.h>\n")
598 stream.write("#include \"c_functions_hash.h\"\n")
599 stream.write("typedef struct C_Nit_Names\{char* name; char* nit_name;\}C_Nit_Names;\n")
600 stream.write("const char* get_nit_name(register const char* procproc, register unsigned int len)\{\n")
601 stream.write("char* procname = malloc(len+1);")
602 stream.write("memcpy(procname, procproc, len);")
603 stream.write("procname[len] = '\\0';")
604 stream.write("static const C_Nit_Names map[{names.length}] = \{\n")
605 for i in names.keys do
606 stream.write("\{\"")
607 stream.write(i.escape_to_c)
608 stream.write("\",\"")
609 stream.write(names[i].escape_to_c)
610 stream.write("\"\},\n")
611 end
612 stream.write("\};\n")
613 stream.write("int i;")
614 stream.write("for(i = 0; i < {names.length}; i++)\{")
615 stream.write("if(strcmp(procname,map[i].name) == 0)\{")
616 stream.write("free(procname);")
617 stream.write("return map[i].nit_name;")
618 stream.write("\}")
619 stream.write("\}")
620 stream.write("free(procname);")
621 stream.write("return NULL;")
622 stream.write("\}\n")
623 stream.close
624
625 stream = new FileWriter.open("{compile_dir}/c_functions_hash.h")
626 stream.write("const char* get_nit_name(register const char* procname, register unsigned int len);\n")
627 stream.close
628
629 extern_bodies.add(new ExternCFile("{compile_dir}/c_functions_hash.c", ""))
630 end
631
632 # Compile C headers
633 # This method call compile_header_strucs method that has to be refined
634 fun compile_header do
635 self.header.add_decl("#include <stdlib.h>")
636 self.header.add_decl("#include <stdio.h>")
637 self.header.add_decl("#include <string.h>")
638 self.header.add_decl("#include <sys/types.h>\n")
639 self.header.add_decl("#include <unistd.h>\n")
640 self.header.add_decl("#include <stdint.h>\n")
641 self.header.add_decl("#include \"gc_chooser.h\"")
642 self.header.add_decl("#ifdef ANDROID")
643 self.header.add_decl(" #include <android/log.h>")
644 self.header.add_decl(" #define PRINT_ERROR(...) (void)__android_log_print(ANDROID_LOG_WARN, \"Nit\", __VA_ARGS__)")
645 self.header.add_decl("#else")
646 self.header.add_decl(" #define PRINT_ERROR(...) fprintf(stderr, __VA_ARGS__)")
647 self.header.add_decl("#endif")
648
649 compile_header_structs
650 compile_nitni_structs
651
652 var gccd_disable = modelbuilder.toolcontext.opt_no_gcc_directive.value
653 if gccd_disable.has("noreturn") or gccd_disable.has("all") then
654 # Signal handler function prototype
655 self.header.add_decl("void fatal_exit(int);")
656 else
657 self.header.add_decl("void fatal_exit(int) __attribute__ ((noreturn));")
658 end
659
660 if gccd_disable.has("likely") or gccd_disable.has("all") then
661 self.header.add_decl("#define likely(x) (x)")
662 self.header.add_decl("#define unlikely(x) (x)")
663 else if gccd_disable.has("correct-likely") then
664 # invert the `likely` definition
665 # Used by masochists to bench the worst case
666 self.header.add_decl("#define likely(x) __builtin_expect((x),0)")
667 self.header.add_decl("#define unlikely(x) __builtin_expect((x),1)")
668 else
669 self.header.add_decl("#define likely(x) __builtin_expect((x),1)")
670 self.header.add_decl("#define unlikely(x) __builtin_expect((x),0)")
671 end
672
673 # Global variable used by intern methods
674 self.header.add_decl("extern int glob_argc;")
675 self.header.add_decl("extern char **glob_argv;")
676 self.header.add_decl("extern val *glob_sys;")
677 end
678
679 # Declaration of structures for live Nit types
680 protected fun compile_header_structs is abstract
681
682 # Declaration of structures for nitni undelying the FFI
683 protected fun compile_nitni_structs
684 do
685 self.header.add_decl """
686 /* Native reference to Nit objects */
687 /* This structure is used to represent every Nit type in extern methods and custom C code. */
688 struct nitni_ref {
689 struct nitni_ref *next,
690 *prev; /* adjacent global references in global list */
691 int count; /* number of time this global reference has been marked */
692 };
693
694 /* List of global references from C code to Nit objects */
695 /* Instanciated empty at init of Nit system and filled explicitly by user in C code */
696 struct nitni_global_ref_list_t {
697 struct nitni_ref *head, *tail;
698 };
699 extern struct nitni_global_ref_list_t *nitni_global_ref_list;
700
701 /* Initializer of global reference list */
702 extern void nitni_global_ref_list_init();
703
704 /* Intern function to add a global reference to the list */
705 extern void nitni_global_ref_add( struct nitni_ref *ref );
706
707 /* Intern function to remove a global reference from the list */
708 extern void nitni_global_ref_remove( struct nitni_ref *ref );
709
710 /* Increase count on an existing global reference */
711 extern void nitni_global_ref_incr( struct nitni_ref *ref );
712
713 /* Decrease count on an existing global reference */
714 extern void nitni_global_ref_decr( struct nitni_ref *ref );
715 """
716 end
717
718 fun compile_finalizer_function
719 do
720 var finalizable_type = mainmodule.finalizable_type
721 if finalizable_type == null then return
722
723 var finalize_meth = mainmodule.try_get_primitive_method("finalize", finalizable_type.mclass)
724
725 if finalize_meth == null then
726 modelbuilder.toolcontext.error(null, "Error: the `Finalizable` class does not declare the `finalize` method.")
727 return
728 end
729
730 var v = self.new_visitor
731 v.add_decl "void gc_finalize (void *obj, void *client_data) \{"
732 var recv = v.new_expr("obj", finalizable_type)
733 v.send(finalize_meth, [recv])
734 v.add "\}"
735 end
736
737 # Generate the main C function.
738 #
739 # This function:
740 #
741 # * allocate the Sys object if it exists
742 # * call init if is exists
743 # * call main if it exists
744 fun compile_main_function
745 do
746 var v = self.new_visitor
747 v.add_decl("#include <signal.h>")
748 var platform = target_platform
749
750 var no_main = platform.no_main or modelbuilder.toolcontext.opt_no_main.value
751
752 if platform.supports_libunwind then
753 v.add_decl("#ifndef NO_STACKTRACE")
754 v.add_decl("#define UNW_LOCAL_ONLY")
755 v.add_decl("#include <libunwind.h>")
756 v.add_decl("#include \"c_functions_hash.h\"")
757 v.add_decl("#endif")
758 end
759 v.add_decl("int glob_argc;")
760 v.add_decl("char **glob_argv;")
761 v.add_decl("val *glob_sys;")
762
763 if self.modelbuilder.toolcontext.opt_typing_test_metrics.value then
764 for tag in count_type_test_tags do
765 v.add_decl("long count_type_test_resolved_{tag};")
766 v.add_decl("long count_type_test_unresolved_{tag};")
767 v.add_decl("long count_type_test_skipped_{tag};")
768 v.compiler.header.add_decl("extern long count_type_test_resolved_{tag};")
769 v.compiler.header.add_decl("extern long count_type_test_unresolved_{tag};")
770 v.compiler.header.add_decl("extern long count_type_test_skipped_{tag};")
771 end
772 end
773
774 if self.modelbuilder.toolcontext.opt_invocation_metrics.value then
775 v.add_decl("long count_invoke_by_tables;")
776 v.add_decl("long count_invoke_by_direct;")
777 v.add_decl("long count_invoke_by_inline;")
778 v.compiler.header.add_decl("extern long count_invoke_by_tables;")
779 v.compiler.header.add_decl("extern long count_invoke_by_direct;")
780 v.compiler.header.add_decl("extern long count_invoke_by_inline;")
781 end
782
783 if self.modelbuilder.toolcontext.opt_isset_checks_metrics.value then
784 v.add_decl("long count_attr_reads = 0;")
785 v.add_decl("long count_isset_checks = 0;")
786 v.compiler.header.add_decl("extern long count_attr_reads;")
787 v.compiler.header.add_decl("extern long count_isset_checks;")
788 end
789
790 v.add_decl("static void show_backtrace(void) \{")
791 if platform.supports_libunwind then
792 v.add_decl("#ifndef NO_STACKTRACE")
793 v.add_decl("char* opt = getenv(\"NIT_NO_STACK\");")
794 v.add_decl("unw_cursor_t cursor;")
795 v.add_decl("if(opt==NULL)\{")
796 v.add_decl("unw_context_t uc;")
797 v.add_decl("unw_word_t ip;")
798 v.add_decl("char* procname = malloc(sizeof(char) * 100);")
799 v.add_decl("unw_getcontext(&uc);")
800 v.add_decl("unw_init_local(&cursor, &uc);")
801 v.add_decl("PRINT_ERROR(\"-------------------------------------------------\\n\");")
802 v.add_decl("PRINT_ERROR(\"-- Stack Trace ------------------------------\\n\");")
803 v.add_decl("PRINT_ERROR(\"-------------------------------------------------\\n\");")
804 v.add_decl("while (unw_step(&cursor) > 0) \{")
805 v.add_decl(" unw_get_proc_name(&cursor, procname, 100, &ip);")
806 v.add_decl(" const char* recv = get_nit_name(procname, strlen(procname));")
807 v.add_decl(" if (recv != NULL)\{")
808 v.add_decl(" PRINT_ERROR(\"` %s\\n\", recv);")
809 v.add_decl(" \}else\{")
810 v.add_decl(" PRINT_ERROR(\"` %s\\n\", procname);")
811 v.add_decl(" \}")
812 v.add_decl("\}")
813 v.add_decl("PRINT_ERROR(\"-------------------------------------------------\\n\");")
814 v.add_decl("free(procname);")
815 v.add_decl("\}")
816 v.add_decl("#endif /* NO_STACKTRACE */")
817 end
818 v.add_decl("\}")
819
820 v.add_decl("void sig_handler(int signo)\{")
821 v.add_decl("PRINT_ERROR(\"Caught signal : %s\\n\", strsignal(signo));")
822 v.add_decl("show_backtrace();")
823 # rethrows
824 v.add_decl("signal(signo, SIG_DFL);")
825 v.add_decl("kill(getpid(), signo);")
826 v.add_decl("\}")
827
828 v.add_decl("void fatal_exit(int status) \{")
829 v.add_decl("show_backtrace();")
830 v.add_decl("exit(status);")
831 v.add_decl("\}")
832
833 if no_main then
834 v.add_decl("int nit_main(int argc, char** argv) \{")
835 else
836 v.add_decl("int main(int argc, char** argv) \{")
837 end
838
839 v.add("signal(SIGABRT, sig_handler);")
840 v.add("signal(SIGFPE, sig_handler);")
841 v.add("signal(SIGILL, sig_handler);")
842 v.add("signal(SIGINT, sig_handler);")
843 v.add("signal(SIGTERM, sig_handler);")
844 v.add("signal(SIGSEGV, sig_handler);")
845 v.add("signal(SIGPIPE, sig_handler);")
846
847 v.add("glob_argc = argc; glob_argv = argv;")
848 v.add("initialize_gc_option();")
849
850 v.add "initialize_nitni_global_refs();"
851
852 var main_type = mainmodule.sys_type
853 if main_type != null then
854 var mainmodule = v.compiler.mainmodule
855 var glob_sys = v.init_instance(main_type)
856 v.add("glob_sys = {glob_sys};")
857 var main_init = mainmodule.try_get_primitive_method("init", main_type.mclass)
858 if main_init != null then
859 v.send(main_init, [glob_sys])
860 end
861 var main_method = mainmodule.try_get_primitive_method("run", main_type.mclass) or else
862 mainmodule.try_get_primitive_method("main", main_type.mclass)
863 if main_method != null then
864 v.send(main_method, [glob_sys])
865 end
866 end
867
868 if self.modelbuilder.toolcontext.opt_typing_test_metrics.value then
869 v.add_decl("long count_type_test_resolved_total = 0;")
870 v.add_decl("long count_type_test_unresolved_total = 0;")
871 v.add_decl("long count_type_test_skipped_total = 0;")
872 v.add_decl("long count_type_test_total_total = 0;")
873 for tag in count_type_test_tags do
874 v.add_decl("long count_type_test_total_{tag};")
875 v.add("count_type_test_total_{tag} = count_type_test_resolved_{tag} + count_type_test_unresolved_{tag} + count_type_test_skipped_{tag};")
876 v.add("count_type_test_resolved_total += count_type_test_resolved_{tag};")
877 v.add("count_type_test_unresolved_total += count_type_test_unresolved_{tag};")
878 v.add("count_type_test_skipped_total += count_type_test_skipped_{tag};")
879 v.add("count_type_test_total_total += count_type_test_total_{tag};")
880 end
881 v.add("printf(\"# dynamic count_type_test: total %l\\n\");")
882 v.add("printf(\"\\tresolved\\tunresolved\\tskipped\\ttotal\\n\");")
883 var tags = count_type_test_tags.to_a
884 tags.add("total")
885 for tag in tags do
886 v.add("printf(\"{tag}\");")
887 v.add("printf(\"\\t%ld (%.2f%%)\", count_type_test_resolved_{tag}, 100.0*count_type_test_resolved_{tag}/count_type_test_total_total);")
888 v.add("printf(\"\\t%ld (%.2f%%)\", count_type_test_unresolved_{tag}, 100.0*count_type_test_unresolved_{tag}/count_type_test_total_total);")
889 v.add("printf(\"\\t%ld (%.2f%%)\", count_type_test_skipped_{tag}, 100.0*count_type_test_skipped_{tag}/count_type_test_total_total);")
890 v.add("printf(\"\\t%ld (%.2f%%)\\n\", count_type_test_total_{tag}, 100.0*count_type_test_total_{tag}/count_type_test_total_total);")
891 end
892 end
893
894 if self.modelbuilder.toolcontext.opt_invocation_metrics.value then
895 v.add_decl("long count_invoke_total;")
896 v.add("count_invoke_total = count_invoke_by_tables + count_invoke_by_direct + count_invoke_by_inline;")
897 v.add("printf(\"# dynamic count_invocation: total %ld\\n\", count_invoke_total);")
898 v.add("printf(\"by table: %ld (%.2f%%)\\n\", count_invoke_by_tables, 100.0*count_invoke_by_tables/count_invoke_total);")
899 v.add("printf(\"direct: %ld (%.2f%%)\\n\", count_invoke_by_direct, 100.0*count_invoke_by_direct/count_invoke_total);")
900 v.add("printf(\"inlined: %ld (%.2f%%)\\n\", count_invoke_by_inline, 100.0*count_invoke_by_inline/count_invoke_total);")
901 end
902
903 if self.modelbuilder.toolcontext.opt_isset_checks_metrics.value then
904 v.add("printf(\"# dynamic attribute reads: %ld\\n\", count_attr_reads);")
905 v.add("printf(\"# dynamic isset checks: %ld\\n\", count_isset_checks);")
906 end
907
908 v.add("return 0;")
909 v.add("\}")
910
911 for m in mainmodule.in_importation.greaters do
912 var f = "FILE_"+m.c_name
913 v.add "const char {f}[] = \"{m.location.file.filename.escape_to_c}\";"
914 provide_declaration(f, "extern const char {f}[];")
915 end
916 end
917
918 # Copile all C functions related to the [incr|decr]_ref features of the FFI
919 fun compile_nitni_global_ref_functions
920 do
921 var v = self.new_visitor
922 v.add """
923 struct nitni_global_ref_list_t *nitni_global_ref_list;
924 void initialize_nitni_global_refs() {
925 nitni_global_ref_list = (struct nitni_global_ref_list_t*)nit_alloc(sizeof(struct nitni_global_ref_list_t));
926 nitni_global_ref_list->head = NULL;
927 nitni_global_ref_list->tail = NULL;
928 }
929
930 void nitni_global_ref_add( struct nitni_ref *ref ) {
931 if ( nitni_global_ref_list->head == NULL ) {
932 nitni_global_ref_list->head = ref;
933 ref->prev = NULL;
934 } else {
935 nitni_global_ref_list->tail->next = ref;
936 ref->prev = nitni_global_ref_list->tail;
937 }
938 nitni_global_ref_list->tail = ref;
939
940 ref->next = NULL;
941 }
942
943 void nitni_global_ref_remove( struct nitni_ref *ref ) {
944 if ( ref->prev == NULL ) {
945 nitni_global_ref_list->head = ref->next;
946 } else {
947 ref->prev->next = ref->next;
948 }
949
950 if ( ref->next == NULL ) {
951 nitni_global_ref_list->tail = ref->prev;
952 } else {
953 ref->next->prev = ref->prev;
954 }
955 }
956
957 extern void nitni_global_ref_incr( struct nitni_ref *ref ) {
958 if ( ref->count == 0 ) /* not registered */
959 {
960 /* add to list */
961 nitni_global_ref_add( ref );
962 }
963
964 ref->count ++;
965 }
966
967 extern void nitni_global_ref_decr( struct nitni_ref *ref ) {
968 if ( ref->count == 1 ) /* was last reference */
969 {
970 /* remove from list */
971 nitni_global_ref_remove( ref );
972 }
973
974 ref->count --;
975 }
976 """
977 end
978
979 # List of additional files required to compile (FFI)
980 var extern_bodies = new Array[ExternFile]
981
982 # List of source files to copy over to the compile dir
983 var files_to_copy = new Array[String]
984
985 # This is used to avoid adding an extern file more than once
986 private var seen_extern = new ArraySet[String]
987
988 # Generate code that initialize the attributes on a new instance
989 fun generate_init_attr(v: VISITOR, recv: RuntimeVariable, mtype: MClassType)
990 do
991 var cds = mtype.collect_mclassdefs(self.mainmodule).to_a
992 self.mainmodule.linearize_mclassdefs(cds)
993 for cd in cds do
994 for npropdef in modelbuilder.collect_attr_propdef(cd) do
995 npropdef.init_expr(v, recv)
996 end
997 end
998 end
999
1000 # Generate code that check if an attribute is correctly initialized
1001 fun generate_check_attr(v: VISITOR, recv: RuntimeVariable, mtype: MClassType)
1002 do
1003 var cds = mtype.collect_mclassdefs(self.mainmodule).to_a
1004 self.mainmodule.linearize_mclassdefs(cds)
1005 for cd in cds do
1006 for npropdef in modelbuilder.collect_attr_propdef(cd) do
1007 npropdef.check_expr(v, recv)
1008 end
1009 end
1010 end
1011
1012 # stats
1013
1014 var count_type_test_tags: Array[String] = ["isa", "as", "auto", "covariance", "erasure"]
1015 var count_type_test_resolved: HashMap[String, Int] = init_count_type_test_tags
1016 var count_type_test_unresolved: HashMap[String, Int] = init_count_type_test_tags
1017 var count_type_test_skipped: HashMap[String, Int] = init_count_type_test_tags
1018
1019 protected fun init_count_type_test_tags: HashMap[String, Int]
1020 do
1021 var res = new HashMap[String, Int]
1022 for tag in count_type_test_tags do
1023 res[tag] = 0
1024 end
1025 return res
1026 end
1027
1028 # Display stats about compilation process
1029 #
1030 # Metrics used:
1031 #
1032 # * type tests against resolved types (`x isa Collection[Animal]`)
1033 # * type tests against unresolved types (`x isa Collection[E]`)
1034 # * type tests skipped
1035 # * type tests total
1036 fun display_stats
1037 do
1038 if self.modelbuilder.toolcontext.opt_typing_test_metrics.value then
1039 print "# static count_type_test"
1040 print "\tresolved:\tunresolved\tskipped\ttotal"
1041 var count_type_test_total = init_count_type_test_tags
1042 count_type_test_resolved["total"] = 0
1043 count_type_test_unresolved["total"] = 0
1044 count_type_test_skipped["total"] = 0
1045 count_type_test_total["total"] = 0
1046 for tag in count_type_test_tags do
1047 count_type_test_total[tag] = count_type_test_resolved[tag] + count_type_test_unresolved[tag] + count_type_test_skipped[tag]
1048 count_type_test_resolved["total"] += count_type_test_resolved[tag]
1049 count_type_test_unresolved["total"] += count_type_test_unresolved[tag]
1050 count_type_test_skipped["total"] += count_type_test_skipped[tag]
1051 count_type_test_total["total"] += count_type_test_total[tag]
1052 end
1053 var count_type_test = count_type_test_total["total"]
1054 var tags = count_type_test_tags.to_a
1055 tags.add("total")
1056 for tag in tags do
1057 printn tag
1058 printn "\t{count_type_test_resolved[tag]} ({div(count_type_test_resolved[tag],count_type_test)}%)"
1059 printn "\t{count_type_test_unresolved[tag]} ({div(count_type_test_unresolved[tag],count_type_test)}%)"
1060 printn "\t{count_type_test_skipped[tag]} ({div(count_type_test_skipped[tag],count_type_test)}%)"
1061 printn "\t{count_type_test_total[tag]} ({div(count_type_test_total[tag],count_type_test)}%)"
1062 print ""
1063 end
1064 end
1065 end
1066
1067 fun finalize_ffi_for_module(mmodule: MModule) do mmodule.finalize_ffi(self)
1068 end
1069
1070 # A file unit (may be more than one file if
1071 # A file unit aim to be autonomous and is made or one or more `CodeWriter`s
1072 class CodeFile
1073 var name: String
1074 var writers = new Array[CodeWriter]
1075 var required_declarations = new HashSet[String]
1076 end
1077
1078 # Where to store generated lines
1079 class CodeWriter
1080 var file: CodeFile
1081 var lines: List[String] = new List[String]
1082 var decl_lines: List[String] = new List[String]
1083
1084 # Add a line in the main part of the generated C
1085 fun add(s: String) do self.lines.add(s)
1086
1087 # Add a line in the
1088 # (used for local or global declaration)
1089 fun add_decl(s: String) do self.decl_lines.add(s)
1090
1091 init
1092 do
1093 file.writers.add(self)
1094 end
1095 end
1096
1097 # A visitor on the AST of property definition that generate the C code.
1098 abstract class AbstractCompilerVisitor
1099
1100 type COMPILER: AbstractCompiler
1101
1102 # The associated compiler
1103 var compiler: COMPILER
1104
1105 # The current visited AST node
1106 var current_node: nullable ANode = null is writable
1107
1108 # The current `StaticFrame`
1109 var frame: nullable StaticFrame = null is writable
1110
1111 # Alias for self.compiler.mainmodule.object_type
1112 fun object_type: MClassType do return self.compiler.mainmodule.object_type
1113
1114 # Alias for self.compiler.mainmodule.bool_type
1115 fun bool_type: MClassType do return self.compiler.mainmodule.bool_type
1116
1117 var writer: CodeWriter is noinit
1118
1119 init
1120 do
1121 self.writer = new CodeWriter(compiler.files.last)
1122 end
1123
1124 # Force to get the primitive property named `name` in the instance `recv` or abort
1125 fun get_property(name: String, recv: MType): MMethod
1126 do
1127 assert recv isa MClassType
1128 return self.compiler.modelbuilder.force_get_primitive_method(self.current_node, name, recv.mclass, self.compiler.mainmodule)
1129 end
1130
1131 fun compile_callsite(callsite: CallSite, arguments: Array[RuntimeVariable]): nullable RuntimeVariable
1132 do
1133 var initializers = callsite.mpropdef.initializers
1134 if not initializers.is_empty then
1135 var recv = arguments.first
1136
1137 var i = 1
1138 for p in initializers do
1139 if p isa MMethod then
1140 var args = [recv]
1141 for x in p.intro.msignature.mparameters do
1142 args.add arguments[i]
1143 i += 1
1144 end
1145 self.send(p, args)
1146 else if p isa MAttribute then
1147 self.write_attribute(p, recv, arguments[i])
1148 i += 1
1149 else abort
1150 end
1151 assert i == arguments.length
1152
1153 return self.send(callsite.mproperty, [recv])
1154 end
1155
1156 return self.send(callsite.mproperty, arguments)
1157 end
1158
1159 fun native_array_instance(elttype: MType, length: RuntimeVariable): RuntimeVariable is abstract
1160
1161 fun calloc_array(ret_type: MType, arguments: Array[RuntimeVariable]) is abstract
1162
1163 fun native_array_def(pname: String, ret_type: nullable MType, arguments: Array[RuntimeVariable]) is abstract
1164
1165 # Return an element of a native array.
1166 # The method is unsafe and is just a direct wrapper for the specific implementation of native arrays
1167 fun native_array_get(native_array: RuntimeVariable, index: Int): RuntimeVariable is abstract
1168
1169 # Store an element in a native array.
1170 # The method is unsafe and is just a direct wrapper for the specific implementation of native arrays
1171 fun native_array_set(native_array: RuntimeVariable, index: Int, value: RuntimeVariable) is abstract
1172
1173 # Evaluate `args` as expressions in the call of `mpropdef` on `recv`.
1174 # This method is used to manage varargs in signatures and returns the real array
1175 # of runtime variables to use in the call.
1176 fun varargize(mpropdef: MMethodDef, map: nullable SignatureMap, recv: RuntimeVariable, args: SequenceRead[AExpr]): Array[RuntimeVariable]
1177 do
1178 var msignature = mpropdef.new_msignature or else mpropdef.msignature.as(not null)
1179 var res = new Array[RuntimeVariable]
1180 res.add(recv)
1181
1182 if msignature.arity == 0 then return res
1183
1184 if map == null then
1185 assert args.length == msignature.arity
1186 for ne in args do
1187 res.add self.expr(ne, null)
1188 end
1189 return res
1190 end
1191
1192 # Eval in order of arguments, not parameters
1193 var exprs = new Array[RuntimeVariable].with_capacity(args.length)
1194 for ne in args do
1195 exprs.add self.expr(ne, null)
1196 end
1197
1198 # Fill `res` with the result of the evaluation according to the mapping
1199 for i in [0..msignature.arity[ do
1200 var param = msignature.mparameters[i]
1201 var j = map.map.get_or_null(i)
1202 if j == null then
1203 # default value
1204 res.add(null_instance)
1205 continue
1206 end
1207 if param.is_vararg and map.vararg_decl > 0 then
1208 var vararg = exprs.sub(j, map.vararg_decl)
1209 var elttype = param.mtype
1210 var arg = self.vararg_instance(mpropdef, recv, vararg, elttype)
1211 res.add(arg)
1212 continue
1213 end
1214 res.add exprs[j]
1215 end
1216 return res
1217 end
1218
1219 # Type handling
1220
1221 # Anchor a type to the main module and the current receiver
1222 fun anchor(mtype: MType): MType
1223 do
1224 if not mtype.need_anchor then return mtype
1225 return mtype.anchor_to(self.compiler.mainmodule, self.frame.receiver)
1226 end
1227
1228 fun resolve_for(mtype: MType, recv: RuntimeVariable): MType
1229 do
1230 if not mtype.need_anchor then return mtype
1231 return mtype.resolve_for(recv.mcasttype, self.frame.receiver, self.compiler.mainmodule, true)
1232 end
1233
1234 # Unsafely cast a value to a new type
1235 # ie the result share the same C variable but my have a different mcasttype
1236 # NOTE: if the adaptation is useless then `value` is returned as it.
1237 # ENSURE: `result.name == value.name`
1238 fun autoadapt(value: RuntimeVariable, mtype: MType): RuntimeVariable
1239 do
1240 mtype = self.anchor(mtype)
1241 var valmtype = value.mcasttype
1242 if valmtype.is_subtype(self.compiler.mainmodule, null, mtype) then
1243 return value
1244 end
1245
1246 if valmtype isa MNullableType and valmtype.mtype.is_subtype(self.compiler.mainmodule, null, mtype) then
1247 var res = new RuntimeVariable(value.name, valmtype, valmtype.mtype)
1248 return res
1249 else
1250 var res = new RuntimeVariable(value.name, valmtype, mtype)
1251 return res
1252 end
1253 end
1254
1255 # Generate a super call from a method definition
1256 fun supercall(m: MMethodDef, recvtype: MClassType, args: Array[RuntimeVariable]): nullable RuntimeVariable is abstract
1257
1258 # Adapt the arguments of a method according to targetted `MMethodDef`
1259 fun adapt_signature(m: MMethodDef, args: Array[RuntimeVariable]) is abstract
1260
1261 # Unbox all the arguments of a method when implemented `extern` or `intern`
1262 fun unbox_signature_extern(m: MMethodDef, args: Array[RuntimeVariable]) is abstract
1263
1264 # Box or unbox a value to another type iff a C type conversion is needed
1265 # ENSURE: `result.mtype.ctype == mtype.ctype`
1266 fun autobox(value: RuntimeVariable, mtype: MType): RuntimeVariable is abstract
1267
1268 # Box extern classes to be used in the generated code
1269 fun box_extern(value: RuntimeVariable, mtype: MType): RuntimeVariable is abstract
1270
1271 # Unbox extern classes to be used in extern code (legacy NI and FFI)
1272 fun unbox_extern(value: RuntimeVariable, mtype: MType): RuntimeVariable is abstract
1273
1274 # Generate a polymorphic subtype test
1275 fun type_test(value: RuntimeVariable, mtype: MType, tag: String): RuntimeVariable is abstract
1276
1277 # Generate the code required to dynamically check if 2 objects share the same runtime type
1278 fun is_same_type_test(value1, value2: RuntimeVariable): RuntimeVariable is abstract
1279
1280 # Generate a Nit "is" for two runtime_variables
1281 fun equal_test(value1, value2: RuntimeVariable): RuntimeVariable is abstract
1282
1283 # Sends
1284
1285 # Generate a static call on a method definition
1286 fun call(m: MMethodDef, recvtype: MClassType, args: Array[RuntimeVariable]): nullable RuntimeVariable is abstract
1287
1288 # Generate a polymorphic send for the method `m` and the arguments `args`
1289 fun send(m: MMethod, args: Array[RuntimeVariable]): nullable RuntimeVariable is abstract
1290
1291 # Generate a monomorphic send for the method `m`, the type `t` and the arguments `args`
1292 fun monomorphic_send(m: MMethod, t: MType, args: Array[RuntimeVariable]): nullable RuntimeVariable
1293 do
1294 assert t isa MClassType
1295 var propdef = m.lookup_first_definition(self.compiler.mainmodule, t)
1296 return self.call(propdef, t, args)
1297 end
1298
1299 # Generate a monomorphic super send from the method `m`, the type `t` and the arguments `args`
1300 fun monomorphic_super_send(m: MMethodDef, t: MType, args: Array[RuntimeVariable]): nullable RuntimeVariable
1301 do
1302 assert t isa MClassType
1303 m = m.lookup_next_definition(self.compiler.mainmodule, t)
1304 return self.call(m, t, args)
1305 end
1306
1307 # Attributes handling
1308
1309 # Generate a polymorphic attribute is_set test
1310 fun isset_attribute(a: MAttribute, recv: RuntimeVariable): RuntimeVariable is abstract
1311
1312 # Generate a polymorphic attribute read
1313 fun read_attribute(a: MAttribute, recv: RuntimeVariable): RuntimeVariable is abstract
1314
1315 # Generate a polymorphic attribute write
1316 fun write_attribute(a: MAttribute, recv: RuntimeVariable, value: RuntimeVariable) is abstract
1317
1318 # Checks
1319
1320 # Add a check and an abort for a null receiver if needed
1321 fun check_recv_notnull(recv: RuntimeVariable)
1322 do
1323 if self.compiler.modelbuilder.toolcontext.opt_no_check_null.value then return
1324
1325 var maybenull = recv.mcasttype isa MNullableType or recv.mcasttype isa MNullType
1326 if maybenull then
1327 self.add("if (unlikely({recv} == NULL)) \{")
1328 self.add_abort("Receiver is null")
1329 self.add("\}")
1330 end
1331 end
1332
1333 # Names handling
1334
1335 private var names = new HashSet[String]
1336 private var last: Int = 0
1337
1338 # Return a new name based on `s` and unique in the visitor
1339 fun get_name(s: String): String
1340 do
1341 if not self.names.has(s) then
1342 self.names.add(s)
1343 return s
1344 end
1345 var i = self.last + 1
1346 loop
1347 var s2 = s + i.to_s
1348 if not self.names.has(s2) then
1349 self.last = i
1350 self.names.add(s2)
1351 return s2
1352 end
1353 i = i + 1
1354 end
1355 end
1356
1357 # Return an unique and stable identifier associated with an escapemark
1358 fun escapemark_name(e: nullable EscapeMark): String
1359 do
1360 assert e != null
1361 if frame.escapemark_names.has_key(e) then return frame.escapemark_names[e]
1362 var name = e.name
1363 if name == null then name = "label"
1364 name = get_name(name)
1365 frame.escapemark_names[e] = name
1366 return name
1367 end
1368
1369 # Insert a C label for associated with an escapemark
1370 fun add_escape_label(e: nullable EscapeMark)
1371 do
1372 if e == null then return
1373 if e.escapes.is_empty then return
1374 add("BREAK_{escapemark_name(e)}: (void)0;")
1375 end
1376
1377 # Return a "const char*" variable associated to the classname of the dynamic type of an object
1378 # NOTE: we do not return a `RuntimeVariable` "NativeString" as the class may not exist in the module/program
1379 fun class_name_string(value: RuntimeVariable): String is abstract
1380
1381 # Variables handling
1382
1383 protected var variables = new HashMap[Variable, RuntimeVariable]
1384
1385 # Return the local runtime_variable associated to a Nit local variable
1386 fun variable(variable: Variable): RuntimeVariable
1387 do
1388 if self.variables.has_key(variable) then
1389 return self.variables[variable]
1390 else
1391 var name = self.get_name("var_{variable.name}")
1392 var mtype = variable.declared_type.as(not null)
1393 mtype = self.anchor(mtype)
1394 var res = new RuntimeVariable(name, mtype, mtype)
1395 self.add_decl("{mtype.ctype} {name} /* var {variable}: {mtype} */;")
1396 self.variables[variable] = res
1397 return res
1398 end
1399 end
1400
1401 # Return a new uninitialized local runtime_variable
1402 fun new_var(mtype: MType): RuntimeVariable
1403 do
1404 mtype = self.anchor(mtype)
1405 var name = self.get_name("var")
1406 var res = new RuntimeVariable(name, mtype, mtype)
1407 self.add_decl("{mtype.ctype} {name} /* : {mtype} */;")
1408 return res
1409 end
1410
1411 # The difference with `new_var` is the C static type of the local variable
1412 fun new_var_extern(mtype: MType): RuntimeVariable
1413 do
1414 mtype = self.anchor(mtype)
1415 var name = self.get_name("var")
1416 var res = new RuntimeVariable(name, mtype, mtype)
1417 self.add_decl("{mtype.ctype_extern} {name} /* : {mtype} for extern */;")
1418 return res
1419 end
1420
1421 # Return a new uninitialized named runtime_variable
1422 fun new_named_var(mtype: MType, name: String): RuntimeVariable
1423 do
1424 mtype = self.anchor(mtype)
1425 var res = new RuntimeVariable(name, mtype, mtype)
1426 self.add_decl("{mtype.ctype} {name} /* : {mtype} */;")
1427 return res
1428 end
1429
1430 # Correctly assign a left and a right value
1431 # Boxing and unboxing is performed if required
1432 fun assign(left, right: RuntimeVariable)
1433 do
1434 right = self.autobox(right, left.mtype)
1435 self.add("{left} = {right};")
1436 end
1437
1438 # Generate instances
1439
1440 # Generate a alloc-instance + init-attributes
1441 fun init_instance(mtype: MClassType): RuntimeVariable is abstract
1442
1443 # Allocate and init attributes of an instance of a standard or extern class
1444 #
1445 # Does not support universals and the pseudo-internal `NativeArray` class.
1446 fun init_instance_or_extern(mtype: MClassType): RuntimeVariable
1447 do
1448 var recv
1449 var ctype = mtype.ctype
1450 assert mtype.mclass.name != "NativeArray"
1451 if not mtype.is_c_primitive then
1452 recv = init_instance(mtype)
1453 else if ctype == "char*" then
1454 recv = new_expr("NULL/*special!*/", mtype)
1455 else
1456 recv = new_expr("({ctype})0/*special!*/", mtype)
1457 end
1458 return recv
1459 end
1460
1461 # Set a GC finalizer on `recv`, only if `recv` isa Finalizable
1462 fun set_finalizer(recv: RuntimeVariable)
1463 do
1464 var mtype = recv.mtype
1465 var finalizable_type = compiler.mainmodule.finalizable_type
1466 if finalizable_type != null and not mtype.need_anchor and
1467 mtype.is_subtype(compiler.mainmodule, null, finalizable_type) then
1468 add "gc_register_finalizer({recv});"
1469 end
1470 end
1471
1472 # The currently processed module
1473 #
1474 # alias for `compiler.mainmodule`
1475 fun mmodule: MModule do return compiler.mainmodule
1476
1477 # Generate an integer value
1478 fun int_instance(value: Int): RuntimeVariable
1479 do
1480 var t = mmodule.int_type
1481 var res = new RuntimeVariable("{value.to_s}l", t, t)
1482 return res
1483 end
1484
1485 # Generate a byte value
1486 fun byte_instance(value: Byte): RuntimeVariable
1487 do
1488 var t = mmodule.byte_type
1489 var res = new RuntimeVariable("((unsigned char){value.to_s})", t, t)
1490 return res
1491 end
1492
1493 # Generate a char value
1494 fun char_instance(value: Char): RuntimeVariable
1495 do
1496 var t = mmodule.char_type
1497 var res = new RuntimeVariable("'{value.to_s.escape_to_c}'", t, t)
1498 return res
1499 end
1500
1501 # Generate a float value
1502 #
1503 # FIXME pass a Float, not a string
1504 fun float_instance(value: String): RuntimeVariable
1505 do
1506 var t = mmodule.float_type
1507 var res = new RuntimeVariable("{value}", t, t)
1508 return res
1509 end
1510
1511 # Generate an integer value
1512 fun bool_instance(value: Bool): RuntimeVariable
1513 do
1514 var s = if value then "1" else "0"
1515 var res = new RuntimeVariable(s, bool_type, bool_type)
1516 return res
1517 end
1518
1519 # Generate the `null` value
1520 fun null_instance: RuntimeVariable
1521 do
1522 var t = compiler.mainmodule.model.null_type
1523 var res = new RuntimeVariable("((val*)NULL)", t, t)
1524 return res
1525 end
1526
1527 # Generate a string value
1528 fun string_instance(string: String): RuntimeVariable
1529 do
1530 var mtype = mmodule.string_type
1531 var name = self.get_name("varonce")
1532 self.add_decl("static {mtype.ctype} {name};")
1533 var res = self.new_var(mtype)
1534 self.add("if (likely({name}!=NULL)) \{")
1535 self.add("{res} = {name};")
1536 self.add("\} else \{")
1537 var native_mtype = mmodule.native_string_type
1538 var nat = self.new_var(native_mtype)
1539 self.add("{nat} = \"{string.escape_to_c}\";")
1540 var length = self.int_instance(string.length)
1541 self.add("{res} = {self.send(self.get_property("to_s_with_length", native_mtype), [nat, length]).as(not null)};")
1542 self.add("{name} = {res};")
1543 self.add("\}")
1544 return res
1545 end
1546
1547 fun value_instance(object: Object): RuntimeVariable
1548 do
1549 if object isa Int then
1550 return int_instance(object)
1551 else if object isa Bool then
1552 return bool_instance(object)
1553 else if object isa String then
1554 return string_instance(object)
1555 else
1556 abort
1557 end
1558 end
1559
1560 # Generate an array value
1561 fun array_instance(array: Array[RuntimeVariable], elttype: MType): RuntimeVariable is abstract
1562
1563 # Get an instance of a array for a vararg
1564 fun vararg_instance(mpropdef: MPropDef, recv: RuntimeVariable, varargs: Array[RuntimeVariable], elttype: MType): RuntimeVariable is abstract
1565
1566 # Code generation
1567
1568 # Add a line in the main part of the generated C
1569 fun add(s: String) do self.writer.lines.add(s)
1570
1571 # Add a line in the
1572 # (used for local or global declaration)
1573 fun add_decl(s: String) do self.writer.decl_lines.add(s)
1574
1575 # Request the presence of a global declaration
1576 fun require_declaration(key: String)
1577 do
1578 var reqs = self.writer.file.required_declarations
1579 if reqs.has(key) then return
1580 reqs.add(key)
1581 var node = current_node
1582 if node != null then compiler.requirers_of_declarations[key] = node
1583 end
1584
1585 # Add a declaration in the local-header
1586 # The declaration is ensured to be present once
1587 fun declare_once(s: String)
1588 do
1589 self.compiler.provide_declaration(s, s)
1590 self.require_declaration(s)
1591 end
1592
1593 # Look for a needed .h and .c file for a given module
1594 # This is used for the legacy FFI
1595 fun add_extern(mmodule: MModule)
1596 do
1597 var file = mmodule.location.file.filename
1598 file = file.strip_extension(".nit")
1599 var tryfile = file + ".nit.h"
1600 if tryfile.file_exists then
1601 self.declare_once("#include \"{tryfile.basename("")}\"")
1602 self.compiler.files_to_copy.add(tryfile)
1603 end
1604 tryfile = file + "_nit.h"
1605 if tryfile.file_exists then
1606 self.declare_once("#include \"{tryfile.basename("")}\"")
1607 self.compiler.files_to_copy.add(tryfile)
1608 end
1609
1610 if self.compiler.seen_extern.has(file) then return
1611 self.compiler.seen_extern.add(file)
1612 tryfile = file + ".nit.c"
1613 if not tryfile.file_exists then
1614 tryfile = file + "_nit.c"
1615 if not tryfile.file_exists then return
1616 end
1617 var f = new ExternCFile(tryfile.basename(""), "")
1618 self.compiler.extern_bodies.add(f)
1619 self.compiler.files_to_copy.add(tryfile)
1620 end
1621
1622 # Return a new local runtime_variable initialized with the C expression `cexpr`.
1623 fun new_expr(cexpr: String, mtype: MType): RuntimeVariable
1624 do
1625 var res = new_var(mtype)
1626 self.add("{res} = {cexpr};")
1627 return res
1628 end
1629
1630 # Generate generic abort
1631 # used by aborts, asserts, casts, etc.
1632 fun add_abort(message: String)
1633 do
1634 self.add("PRINT_ERROR(\"Runtime error: %s\", \"{message.escape_to_c}\");")
1635 add_raw_abort
1636 end
1637
1638 fun add_raw_abort
1639 do
1640 if self.current_node != null and self.current_node.location.file != null and
1641 self.current_node.location.file.mmodule != null then
1642 var f = "FILE_{self.current_node.location.file.mmodule.c_name}"
1643 self.require_declaration(f)
1644 self.add("PRINT_ERROR(\" (%s:%d)\\n\", {f}, {current_node.location.line_start});")
1645 else
1646 self.add("PRINT_ERROR(\"\\n\");")
1647 end
1648 self.add("fatal_exit(1);")
1649 end
1650
1651 # Add a dynamic cast
1652 fun add_cast(value: RuntimeVariable, mtype: MType, tag: String)
1653 do
1654 var res = self.type_test(value, mtype, tag)
1655 self.add("if (unlikely(!{res})) \{")
1656 var cn = self.class_name_string(value)
1657 self.add("PRINT_ERROR(\"Runtime error: Cast failed. Expected `%s`, got `%s`\", \"{mtype.to_s.escape_to_c}\", {cn});")
1658 self.add_raw_abort
1659 self.add("\}")
1660 end
1661
1662 # Generate a return with the value `s`
1663 fun ret(s: RuntimeVariable)
1664 do
1665 self.assign(self.frame.returnvar.as(not null), s)
1666 self.add("goto {self.frame.returnlabel.as(not null)};")
1667 end
1668
1669 # Compile a statement (if any)
1670 fun stmt(nexpr: nullable AExpr)
1671 do
1672 if nexpr == null then return
1673 if nexpr.mtype == null and not nexpr.is_typed then
1674 # Untyped expression.
1675 # Might mean dead code
1676 # So just return
1677 return
1678 end
1679
1680 var narray = nexpr.comprehension
1681 if narray != null then
1682 var recv = frame.comprehension.as(not null)
1683 var val = expr(nexpr, narray.element_mtype)
1684 compile_callsite(narray.push_callsite.as(not null), [recv, val])
1685 return
1686 end
1687
1688 var old = self.current_node
1689 self.current_node = nexpr
1690 nexpr.stmt(self)
1691 self.current_node = old
1692 end
1693
1694 # Compile an expression an return its result
1695 # `mtype` is the expected return type, pass null if no specific type is expected.
1696 fun expr(nexpr: AExpr, mtype: nullable MType): RuntimeVariable
1697 do
1698 if nexpr.mtype == null then
1699 # Untyped expression.
1700 # Might mean dead code
1701 # so return a placebo result
1702 if mtype == null then mtype = compiler.mainmodule.object_type
1703 return new_var(mtype)
1704 end
1705 var old = self.current_node
1706 self.current_node = nexpr
1707 var res = nexpr.expr(self).as(not null)
1708 if mtype != null then
1709 mtype = self.anchor(mtype)
1710 res = self.autobox(res, mtype)
1711 end
1712 res = autoadapt(res, nexpr.mtype.as(not null))
1713 var implicit_cast_to = nexpr.implicit_cast_to
1714 if implicit_cast_to != null and not self.compiler.modelbuilder.toolcontext.opt_no_check_autocast.value then
1715 add_cast(res, implicit_cast_to, "auto")
1716 res = autoadapt(res, implicit_cast_to)
1717 end
1718 self.current_node = old
1719 return res
1720 end
1721
1722 # Alias for `self.expr(nexpr, self.bool_type)`
1723 fun expr_bool(nexpr: AExpr): RuntimeVariable do return expr(nexpr, bool_type)
1724
1725 # Safely show a debug message on the current node and repeat the message in the C code as a comment
1726 fun debug(message: String)
1727 do
1728 var node = self.current_node
1729 if node == null then
1730 print "?: {message}"
1731 else
1732 node.debug(message)
1733 end
1734 self.add("/* DEBUG: {message} */")
1735 end
1736 end
1737
1738 # A C function associated to a Nit method
1739 # Because of customization, a given Nit method can be compiler more that once
1740 abstract class AbstractRuntimeFunction
1741
1742 type COMPILER: AbstractCompiler
1743 type VISITOR: AbstractCompilerVisitor
1744
1745 # The associated Nit method
1746 var mmethoddef: MMethodDef
1747
1748 # The mangled c name of the runtime_function
1749 # Subclasses should redefine `build_c_name` instead
1750 fun c_name: String
1751 do
1752 var res = self.c_name_cache
1753 if res != null then return res
1754 res = self.build_c_name
1755 self.c_name_cache = res
1756 return res
1757 end
1758
1759 # Non cached version of `c_name`
1760 protected fun build_c_name: String is abstract
1761
1762 protected var c_name_cache: nullable String = null is writable
1763
1764 # Implements a call of the runtime_function
1765 # May inline the body or generate a C function call
1766 fun call(v: VISITOR, arguments: Array[RuntimeVariable]): nullable RuntimeVariable is abstract
1767
1768 # Generate the code for the `AbstractRuntimeFunction`
1769 # Warning: compile more than once compilation makes CC unhappy
1770 fun compile_to_c(compiler: COMPILER) is abstract
1771 end
1772
1773 # A runtime variable hold a runtime value in C.
1774 # Runtime variables are associated to Nit local variables and intermediate results in Nit expressions.
1775 #
1776 # The tricky point is that a single C variable can be associated to more than one `RuntimeVariable` because the static knowledge of the type of an expression can vary in the C code.
1777 class RuntimeVariable
1778 # The name of the variable in the C code
1779 var name: String
1780
1781 # The static type of the variable (as declard in C)
1782 var mtype: MType
1783
1784 # The current casted type of the variable (as known in Nit)
1785 var mcasttype: MType is writable
1786
1787 # If the variable exaclty a mcasttype?
1788 # false (usual value) means that the variable is a mcasttype or a subtype.
1789 var is_exact: Bool = false is writable
1790
1791 init
1792 do
1793 assert not mtype.need_anchor
1794 assert not mcasttype.need_anchor
1795 end
1796
1797 redef fun to_s do return name
1798
1799 redef fun inspect
1800 do
1801 var exact_str
1802 if self.is_exact then
1803 exact_str = " exact"
1804 else
1805 exact_str = ""
1806 end
1807 var type_str
1808 if self.mtype == self.mcasttype then
1809 type_str = "{mtype}{exact_str}"
1810 else
1811 type_str = "{mtype}({mcasttype}{exact_str})"
1812 end
1813 return "<{name}:{type_str}>"
1814 end
1815 end
1816
1817 # The static context of a visited property in a `AbstractCompilerVisitor`
1818 class StaticFrame
1819
1820 type VISITOR: AbstractCompilerVisitor
1821
1822 # The associated visitor
1823 var visitor: VISITOR
1824
1825 # The executed property.
1826 # A Method in case of a call, an attribute in case of a default initialization.
1827 var mpropdef: MPropDef
1828
1829 # The static type of the receiver
1830 var receiver: MClassType
1831
1832 # Arguments of the method (the first is the receiver)
1833 var arguments: Array[RuntimeVariable]
1834
1835 # The runtime_variable associated to the return (in a function)
1836 var returnvar: nullable RuntimeVariable = null is writable
1837
1838 # The label at the end of the property
1839 var returnlabel: nullable String = null is writable
1840
1841 # Labels associated to a each escapemarks.
1842 # Because of inlinings, escape-marks must be associated to their context (the frame)
1843 private var escapemark_names = new HashMap[EscapeMark, String]
1844
1845 # The array comprehension currently filled, if any
1846 private var comprehension: nullable RuntimeVariable = null
1847 end
1848
1849 redef class MType
1850 # Return the C type associated to a given Nit static type
1851 fun ctype: String do return "val*"
1852
1853 # C type outside of the compiler code and in boxes
1854 fun ctype_extern: String do return "val*"
1855
1856 # Short name of the `ctype` to use in unions
1857 fun ctypename: String do return "val"
1858
1859 # Is the associated C type a primitive one?
1860 #
1861 # ENSURE `result == (ctype != "val*")`
1862 fun is_c_primitive: Bool do return false
1863 end
1864
1865 redef class MClassType
1866
1867 redef var ctype is lazy do
1868 if mclass.name == "Int" then
1869 return "long"
1870 else if mclass.name == "Bool" then
1871 return "short int"
1872 else if mclass.name == "Char" then
1873 return "uint32_t"
1874 else if mclass.name == "Float" then
1875 return "double"
1876 else if mclass.name == "Byte" then
1877 return "unsigned char"
1878 else if mclass.name == "NativeString" then
1879 return "unsigned char*"
1880 else if mclass.name == "NativeArray" then
1881 return "val*"
1882 else
1883 return "val*"
1884 end
1885 end
1886
1887 redef var is_c_primitive is lazy do return ctype != "val*"
1888
1889 redef fun ctype_extern: String
1890 do
1891 if mclass.kind == extern_kind then
1892 return "void*"
1893 else
1894 return ctype
1895 end
1896 end
1897
1898 redef fun ctypename: String
1899 do
1900 if mclass.name == "Int" then
1901 return "l"
1902 else if mclass.name == "Bool" then
1903 return "s"
1904 else if mclass.name == "Char" then
1905 return "c"
1906 else if mclass.name == "Float" then
1907 return "d"
1908 else if mclass.name == "Byte" then
1909 return "b"
1910 else if mclass.name == "NativeString" then
1911 return "str"
1912 else if mclass.name == "NativeArray" then
1913 #return "{self.arguments.first.ctype}*"
1914 return "val"
1915 else
1916 return "val"
1917 end
1918 end
1919 end
1920
1921 redef class MPropDef
1922 type VISITOR: AbstractCompilerVisitor
1923 end
1924
1925 redef class MMethodDef
1926 # Can the body be inlined?
1927 fun can_inline(v: VISITOR): Bool
1928 do
1929 if is_abstract then return true
1930 var modelbuilder = v.compiler.modelbuilder
1931 var node = modelbuilder.mpropdef2node(self)
1932 if node isa APropdef then
1933 return node.can_inline
1934 else if node isa AClassdef then
1935 # Automatic free init is always inlined since it is empty or contains only attribtes assigments
1936 return true
1937 else
1938 abort
1939 end
1940 end
1941
1942 # Inline the body in another visitor
1943 fun compile_inside_to_c(v: VISITOR, arguments: Array[RuntimeVariable]): nullable RuntimeVariable
1944 do
1945 var modelbuilder = v.compiler.modelbuilder
1946 var val = constant_value
1947 var node = modelbuilder.mpropdef2node(self)
1948
1949 if is_abstract then
1950 var cn = v.class_name_string(arguments.first)
1951 v.current_node = node
1952 v.add("PRINT_ERROR(\"Runtime error: Abstract method `%s` called on `%s`\", \"{mproperty.name.escape_to_c}\", {cn});")
1953 v.add_raw_abort
1954 return null
1955 end
1956
1957 if node isa APropdef then
1958 var oldnode = v.current_node
1959 v.current_node = node
1960 self.compile_parameter_check(v, arguments)
1961 node.compile_to_c(v, self, arguments)
1962 v.current_node = oldnode
1963 else if node isa AClassdef then
1964 var oldnode = v.current_node
1965 v.current_node = node
1966 self.compile_parameter_check(v, arguments)
1967 node.compile_to_c(v, self, arguments)
1968 v.current_node = oldnode
1969 else if val != null then
1970 v.ret(v.value_instance(val))
1971 else
1972 abort
1973 end
1974 return null
1975 end
1976
1977 # Generate type checks in the C code to check covariant parameters
1978 fun compile_parameter_check(v: VISITOR, arguments: Array[RuntimeVariable])
1979 do
1980 if v.compiler.modelbuilder.toolcontext.opt_no_check_covariance.value then return
1981
1982 for i in [0..msignature.arity[ do
1983 # skip test for vararg since the array is instantiated with the correct polymorphic type
1984 if msignature.vararg_rank == i then continue
1985
1986 # skip if the cast is not required
1987 var origmtype = self.mproperty.intro.msignature.mparameters[i].mtype
1988 if not origmtype.need_anchor then continue
1989
1990 # get the parameter type
1991 var mtype = self.msignature.mparameters[i].mtype
1992
1993 # generate the cast
1994 # note that v decides if and how to implements the cast
1995 v.add("/* Covariant cast for argument {i} ({self.msignature.mparameters[i].name}) {arguments[i+1].inspect} isa {mtype} */")
1996 v.add_cast(arguments[i+1], mtype, "covariance")
1997 end
1998 end
1999 end
2000
2001 # Node visit
2002
2003 redef class APropdef
2004 fun compile_to_c(v: AbstractCompilerVisitor, mpropdef: MMethodDef, arguments: Array[RuntimeVariable])
2005 do
2006 v.add("PRINT_ERROR(\"NOT YET IMPLEMENTED {class_name} {mpropdef} at {location.to_s}\\n\");")
2007 debug("Not yet implemented")
2008 end
2009
2010 fun can_inline: Bool do return true
2011 end
2012
2013 redef class AMethPropdef
2014 redef fun compile_to_c(v, mpropdef, arguments)
2015 do
2016 # Call the implicit super-init
2017 var auto_super_inits = self.auto_super_inits
2018 if auto_super_inits != null then
2019 var args = [arguments.first]
2020 for auto_super_init in auto_super_inits do
2021 assert auto_super_init.mproperty != mpropdef.mproperty
2022 args.clear
2023 for i in [0..auto_super_init.msignature.arity+1[ do
2024 args.add(arguments[i])
2025 end
2026 assert auto_super_init.mproperty != mpropdef.mproperty
2027 v.compile_callsite(auto_super_init, args)
2028 end
2029 end
2030 if auto_super_call then
2031 v.supercall(mpropdef, arguments.first.mtype.as(MClassType), arguments)
2032 end
2033
2034 # Try special compilation
2035 if mpropdef.is_intern then
2036 if compile_intern_to_c(v, mpropdef, arguments) then return
2037 else if mpropdef.is_extern then
2038 if mpropdef.mproperty.is_init then
2039 if compile_externinit_to_c(v, mpropdef, arguments) then return
2040 else
2041 if compile_externmeth_to_c(v, mpropdef, arguments) then return
2042 end
2043 end
2044
2045 # Compile block if any
2046 var n_block = n_block
2047 if n_block != null then
2048 for i in [0..mpropdef.msignature.arity[ do
2049 var variable = self.n_signature.n_params[i].variable.as(not null)
2050 v.assign(v.variable(variable), arguments[i+1])
2051 end
2052 v.stmt(n_block)
2053 return
2054 end
2055
2056 # We have a problem
2057 var cn = v.class_name_string(arguments.first)
2058 v.add("PRINT_ERROR(\"Runtime error: uncompiled method `%s` called on `%s`. NOT YET IMPLEMENTED\", \"{mpropdef.mproperty.name.escape_to_c}\", {cn});")
2059 v.add_raw_abort
2060 end
2061
2062 redef fun can_inline
2063 do
2064 if self.auto_super_inits != null then return false
2065 var nblock = self.n_block
2066 if nblock == null then return true
2067 if (mpropdef.mproperty.name == "==" or mpropdef.mproperty.name == "!=") and mpropdef.mclassdef.mclass.name == "Object" then return true
2068 if nblock isa ABlockExpr and nblock.n_expr.length == 0 then return true
2069 return false
2070 end
2071
2072 fun compile_intern_to_c(v: AbstractCompilerVisitor, mpropdef: MMethodDef, arguments: Array[RuntimeVariable]): Bool
2073 do
2074 var pname = mpropdef.mproperty.name
2075 var cname = mpropdef.mclassdef.mclass.name
2076 var ret = mpropdef.msignature.return_mtype
2077 if ret != null then
2078 ret = v.resolve_for(ret, arguments.first)
2079 end
2080 if pname != "==" and pname != "!=" then
2081 v.adapt_signature(mpropdef, arguments)
2082 v.unbox_signature_extern(mpropdef, arguments)
2083 end
2084 if cname == "Int" then
2085 if pname == "output" then
2086 v.add("printf(\"%ld\\n\", {arguments.first});")
2087 return true
2088 else if pname == "object_id" then
2089 v.ret(arguments.first)
2090 return true
2091 else if pname == "+" then
2092 v.ret(v.new_expr("{arguments[0]} + {arguments[1]}", ret.as(not null)))
2093 return true
2094 else if pname == "-" then
2095 v.ret(v.new_expr("{arguments[0]} - {arguments[1]}", ret.as(not null)))
2096 return true
2097 else if pname == "unary -" then
2098 v.ret(v.new_expr("-{arguments[0]}", ret.as(not null)))
2099 return true
2100 else if pname == "unary +" then
2101 v.ret(arguments[0])
2102 return true
2103 else if pname == "*" then
2104 v.ret(v.new_expr("{arguments[0]} * {arguments[1]}", ret.as(not null)))
2105 return true
2106 else if pname == "/" then
2107 v.ret(v.new_expr("{arguments[0]} / {arguments[1]}", ret.as(not null)))
2108 return true
2109 else if pname == "%" then
2110 v.ret(v.new_expr("{arguments[0]} % {arguments[1]}", ret.as(not null)))
2111 return true
2112 else if pname == "lshift" then
2113 v.ret(v.new_expr("{arguments[0]} << {arguments[1]}", ret.as(not null)))
2114 return true
2115 else if pname == "rshift" then
2116 v.ret(v.new_expr("{arguments[0]} >> {arguments[1]}", ret.as(not null)))
2117 return true
2118 else if pname == "==" then
2119 v.ret(v.equal_test(arguments[0], arguments[1]))
2120 return true
2121 else if pname == "!=" then
2122 var res = v.equal_test(arguments[0], arguments[1])
2123 v.ret(v.new_expr("!{res}", ret.as(not null)))
2124 return true
2125 else if pname == "<" then
2126 v.ret(v.new_expr("{arguments[0]} < {arguments[1]}", ret.as(not null)))
2127 return true
2128 else if pname == ">" then
2129 v.ret(v.new_expr("{arguments[0]} > {arguments[1]}", ret.as(not null)))
2130 return true
2131 else if pname == "<=" then
2132 v.ret(v.new_expr("{arguments[0]} <= {arguments[1]}", ret.as(not null)))
2133 return true
2134 else if pname == ">=" then
2135 v.ret(v.new_expr("{arguments[0]} >= {arguments[1]}", ret.as(not null)))
2136 return true
2137 else if pname == "to_f" then
2138 v.ret(v.new_expr("(double){arguments[0]}", ret.as(not null)))
2139 return true
2140 else if pname == "to_b" then
2141 v.ret(v.new_expr("(unsigned char){arguments[0]}", ret.as(not null)))
2142 return true
2143 else if pname == "ascii" then
2144 v.ret(v.new_expr("(uint32_t){arguments[0]}", ret.as(not null)))
2145 return true
2146 end
2147 else if cname == "Char" then
2148 if pname == "output" then
2149 v.add("printf(\"%c\", ((unsigned char){arguments.first}));")
2150 return true
2151 else if pname == "object_id" then
2152 v.ret(v.new_expr("(long){arguments.first}", ret.as(not null)))
2153 return true
2154 else if pname == "successor" then
2155 v.ret(v.new_expr("{arguments[0]} + {arguments[1]}", ret.as(not null)))
2156 return true
2157 else if pname == "predecessor" then
2158 v.ret(v.new_expr("{arguments[0]} - {arguments[1]}", ret.as(not null)))
2159 return true
2160 else if pname == "==" then
2161 v.ret(v.equal_test(arguments[0], arguments[1]))
2162 return true
2163 else if pname == "!=" then
2164 var res = v.equal_test(arguments[0], arguments[1])
2165 v.ret(v.new_expr("!{res}", ret.as(not null)))
2166 return true
2167 else if pname == "<" then
2168 v.ret(v.new_expr("{arguments[0]} < {arguments[1]}", ret.as(not null)))
2169 return true
2170 else if pname == ">" then
2171 v.ret(v.new_expr("{arguments[0]} > {arguments[1]}", ret.as(not null)))
2172 return true
2173 else if pname == "<=" then
2174 v.ret(v.new_expr("{arguments[0]} <= {arguments[1]}", ret.as(not null)))
2175 return true
2176 else if pname == ">=" then
2177 v.ret(v.new_expr("{arguments[0]} >= {arguments[1]}", ret.as(not null)))
2178 return true
2179 else if pname == "to_i" then
2180 v.ret(v.new_expr("{arguments[0]}-'0'", ret.as(not null)))
2181 return true
2182 else if pname == "ascii" then
2183 v.ret(v.new_expr("(long){arguments[0]}", ret.as(not null)))
2184 return true
2185 end
2186 else if cname == "Byte" then
2187 if pname == "output" then
2188 v.add("printf(\"%x\\n\", {arguments.first});")
2189 return true
2190 else if pname == "object_id" then
2191 v.ret(v.new_expr("(long){arguments.first}", ret.as(not null)))
2192 return true
2193 else if pname == "+" then
2194 v.ret(v.new_expr("{arguments[0]} + {arguments[1]}", ret.as(not null)))
2195 return true
2196 else if pname == "-" then
2197 v.ret(v.new_expr("{arguments[0]} - {arguments[1]}", ret.as(not null)))
2198 return true
2199 else if pname == "unary -" then
2200 v.ret(v.new_expr("-{arguments[0]}", ret.as(not null)))
2201 return true
2202 else if pname == "unary +" then
2203 v.ret(arguments[0])
2204 return true
2205 else if pname == "*" then
2206 v.ret(v.new_expr("{arguments[0]} * {arguments[1]}", ret.as(not null)))
2207 return true
2208 else if pname == "/" then
2209 v.ret(v.new_expr("{arguments[0]} / {arguments[1]}", ret.as(not null)))
2210 return true
2211 else if pname == "%" then
2212 v.ret(v.new_expr("{arguments[0]} % {arguments[1]}", ret.as(not null)))
2213 return true
2214 else if pname == "lshift" then
2215 v.ret(v.new_expr("{arguments[0]} << {arguments[1]}", ret.as(not null)))
2216 return true
2217 else if pname == "rshift" then
2218 v.ret(v.new_expr("{arguments[0]} >> {arguments[1]}", ret.as(not null)))
2219 return true
2220 else if pname == "==" then
2221 v.ret(v.equal_test(arguments[0], arguments[1]))
2222 return true
2223 else if pname == "!=" then
2224 var res = v.equal_test(arguments[0], arguments[1])
2225 v.ret(v.new_expr("!{res}", ret.as(not null)))
2226 return true
2227 else if pname == "<" then
2228 v.ret(v.new_expr("{arguments[0]} < {arguments[1]}", ret.as(not null)))
2229 return true
2230 else if pname == ">" then
2231 v.ret(v.new_expr("{arguments[0]} > {arguments[1]}", ret.as(not null)))
2232 return true
2233 else if pname == "<=" then
2234 v.ret(v.new_expr("{arguments[0]} <= {arguments[1]}", ret.as(not null)))
2235 return true
2236 else if pname == ">=" then
2237 v.ret(v.new_expr("{arguments[0]} >= {arguments[1]}", ret.as(not null)))
2238 return true
2239 else if pname == "to_i" then
2240 v.ret(v.new_expr("(long){arguments[0]}", ret.as(not null)))
2241 return true
2242 else if pname == "to_f" then
2243 v.ret(v.new_expr("(double){arguments[0]}", ret.as(not null)))
2244 return true
2245 else if pname == "ascii" then
2246 v.ret(v.new_expr("{arguments[0]}", ret.as(not null)))
2247 return true
2248 end
2249 else if cname == "Bool" then
2250 if pname == "output" then
2251 v.add("printf({arguments.first}?\"true\\n\":\"false\\n\");")
2252 return true
2253 else if pname == "object_id" then
2254 v.ret(v.new_expr("(long){arguments.first}", ret.as(not null)))
2255 return true
2256 else if pname == "==" then
2257 v.ret(v.equal_test(arguments[0], arguments[1]))
2258 return true
2259 else if pname == "!=" then
2260 var res = v.equal_test(arguments[0], arguments[1])
2261 v.ret(v.new_expr("!{res}", ret.as(not null)))
2262 return true
2263 end
2264 else if cname == "Float" then
2265 if pname == "output" then
2266 v.add("printf(\"%f\\n\", {arguments.first});")
2267 return true
2268 else if pname == "object_id" then
2269 v.ret(v.new_expr("(double){arguments.first}", ret.as(not null)))
2270 return true
2271 else if pname == "+" then
2272 v.ret(v.new_expr("{arguments[0]} + {arguments[1]}", ret.as(not null)))
2273 return true
2274 else if pname == "-" then
2275 v.ret(v.new_expr("{arguments[0]} - {arguments[1]}", ret.as(not null)))
2276 return true
2277 else if pname == "unary -" then
2278 v.ret(v.new_expr("-{arguments[0]}", ret.as(not null)))
2279 return true
2280 else if pname == "unary +" then
2281 v.ret(arguments[0])
2282 return true
2283 else if pname == "succ" then
2284 v.ret(v.new_expr("{arguments[0]}+1", ret.as(not null)))
2285 return true
2286 else if pname == "prec" then
2287 v.ret(v.new_expr("{arguments[0]}-1", ret.as(not null)))
2288 return true
2289 else if pname == "*" then
2290 v.ret(v.new_expr("{arguments[0]} * {arguments[1]}", ret.as(not null)))
2291 return true
2292 else if pname == "/" then
2293 v.ret(v.new_expr("{arguments[0]} / {arguments[1]}", ret.as(not null)))
2294 return true
2295 else if pname == "==" then
2296 v.ret(v.equal_test(arguments[0], arguments[1]))
2297 return true
2298 else if pname == "!=" then
2299 var res = v.equal_test(arguments[0], arguments[1])
2300 v.ret(v.new_expr("!{res}", ret.as(not null)))
2301 return true
2302 else if pname == "<" then
2303 v.ret(v.new_expr("{arguments[0]} < {arguments[1]}", ret.as(not null)))
2304 return true
2305 else if pname == ">" then
2306 v.ret(v.new_expr("{arguments[0]} > {arguments[1]}", ret.as(not null)))
2307 return true
2308 else if pname == "<=" then
2309 v.ret(v.new_expr("{arguments[0]} <= {arguments[1]}", ret.as(not null)))
2310 return true
2311 else if pname == ">=" then
2312 v.ret(v.new_expr("{arguments[0]} >= {arguments[1]}", ret.as(not null)))
2313 return true
2314 else if pname == "to_i" then
2315 v.ret(v.new_expr("(long){arguments[0]}", ret.as(not null)))
2316 return true
2317 else if pname == "to_b" then
2318 v.ret(v.new_expr("(unsigned char){arguments[0]}", ret.as(not null)))
2319 return true
2320 end
2321 else if cname == "NativeString" then
2322 if pname == "[]" then
2323 v.ret(v.new_expr("(uint32_t){arguments[0]}[{arguments[1]}]", ret.as(not null)))
2324 return true
2325 else if pname == "[]=" then
2326 v.add("{arguments[0]}[{arguments[1]}]=(unsigned char){arguments[2]};")
2327 return true
2328 else if pname == "copy_to" then
2329 v.add("memmove({arguments[1]}+{arguments[4]},{arguments[0]}+{arguments[3]},{arguments[2]});")
2330 return true
2331 else if pname == "atoi" then
2332 v.ret(v.new_expr("atoi({arguments[0]});", ret.as(not null)))
2333 return true
2334 else if pname == "fast_cstring" then
2335 v.ret(v.new_expr("{arguments[0]} + {arguments[1]}", ret.as(not null)))
2336 return true
2337 else if pname == "new" then
2338 v.ret(v.new_expr("(unsigned char*)nit_alloc({arguments[1]})", ret.as(not null)))
2339 return true
2340 end
2341 else if cname == "NativeArray" then
2342 v.native_array_def(pname, ret, arguments)
2343 return true
2344 end
2345 if pname == "exit" then
2346 v.add("exit({arguments[1]});")
2347 return true
2348 else if pname == "sys" then
2349 v.ret(v.new_expr("glob_sys", ret.as(not null)))
2350 return true
2351 else if pname == "calloc_string" then
2352 v.ret(v.new_expr("(unsigned char*)nit_alloc({arguments[1]})", ret.as(not null)))
2353 return true
2354 else if pname == "calloc_array" then
2355 v.calloc_array(ret.as(not null), arguments)
2356 return true
2357 else if pname == "object_id" then
2358 v.ret(v.new_expr("(long){arguments.first}", ret.as(not null)))
2359 return true
2360 else if pname == "is_same_type" then
2361 v.ret(v.is_same_type_test(arguments[0], arguments[1]))
2362 return true
2363 else if pname == "is_same_instance" then
2364 v.ret(v.equal_test(arguments[0], arguments[1]))
2365 return true
2366 else if pname == "output_class_name" then
2367 var nat = v.class_name_string(arguments.first)
2368 v.add("printf(\"%s\\n\", {nat});")
2369 return true
2370 else if pname == "native_class_name" then
2371 var nat = v.class_name_string(arguments.first)
2372 v.ret(v.new_expr("(char*){nat}", ret.as(not null)))
2373 return true
2374 else if pname == "force_garbage_collection" then
2375 v.add("nit_gcollect();")
2376 return true
2377 else if pname == "native_argc" then
2378 v.ret(v.new_expr("glob_argc", ret.as(not null)))
2379 return true
2380 else if pname == "native_argv" then
2381 v.ret(v.new_expr("glob_argv[{arguments[1]}]", ret.as(not null)))
2382 return true
2383 end
2384 return false
2385 end
2386
2387 # Compile an extern method
2388 # Return `true` if the compilation was successful, `false` if a fall-back is needed
2389 fun compile_externmeth_to_c(v: AbstractCompilerVisitor, mpropdef: MMethodDef, arguments: Array[RuntimeVariable]): Bool
2390 do
2391 var externname
2392 var at = self.get_single_annotation("extern", v.compiler.modelbuilder)
2393 if at != null and at.n_args.length == 1 then
2394 externname = at.arg_as_string(v.compiler.modelbuilder)
2395 if externname == null then return false
2396 else
2397 return false
2398 end
2399 v.add_extern(mpropdef.mclassdef.mmodule)
2400 var res: nullable RuntimeVariable = null
2401 var ret = mpropdef.msignature.return_mtype
2402 if ret != null then
2403 ret = v.resolve_for(ret, arguments.first)
2404 res = v.new_var_extern(ret)
2405 end
2406 v.adapt_signature(mpropdef, arguments)
2407 v.unbox_signature_extern(mpropdef, arguments)
2408
2409 if res == null then
2410 v.add("{externname}({arguments.join(", ")});")
2411 else
2412 v.add("{res} = {externname}({arguments.join(", ")});")
2413 res = v.box_extern(res, ret.as(not null))
2414 v.ret(res)
2415 end
2416 return true
2417 end
2418
2419 # Compile an extern factory
2420 # Return `true` if the compilation was successful, `false` if a fall-back is needed
2421 fun compile_externinit_to_c(v: AbstractCompilerVisitor, mpropdef: MMethodDef, arguments: Array[RuntimeVariable]): Bool
2422 do
2423 var externname
2424 var at = self.get_single_annotation("extern", v.compiler.modelbuilder)
2425 if at != null then
2426 externname = at.arg_as_string(v.compiler.modelbuilder)
2427 if externname == null then return false
2428 else
2429 return false
2430 end
2431 v.add_extern(mpropdef.mclassdef.mmodule)
2432 v.adapt_signature(mpropdef, arguments)
2433 v.unbox_signature_extern(mpropdef, arguments)
2434 var ret = arguments.first.mtype
2435 var res = v.new_var_extern(ret)
2436
2437 arguments.shift
2438
2439 v.add("{res} = {externname}({arguments.join(", ")});")
2440 res = v.box_extern(res, ret)
2441 v.ret(res)
2442 return true
2443 end
2444 end
2445
2446 redef class AAttrPropdef
2447 redef fun can_inline: Bool do return not is_lazy
2448
2449 redef fun compile_to_c(v, mpropdef, arguments)
2450 do
2451 if mpropdef == mreadpropdef then
2452 assert arguments.length == 1
2453 var recv = arguments.first
2454 var res
2455 if is_lazy then
2456 var set
2457 var ret = self.mpropdef.static_mtype
2458 var useiset = not ret.is_c_primitive and not ret isa MNullableType
2459 var guard = self.mlazypropdef.mproperty
2460 if useiset then
2461 set = v.isset_attribute(self.mpropdef.mproperty, recv)
2462 else
2463 set = v.read_attribute(guard, recv)
2464 end
2465 v.add("if(likely({set})) \{")
2466 res = v.read_attribute(self.mpropdef.mproperty, recv)
2467 v.add("\} else \{")
2468
2469 var value = evaluate_expr(v, recv)
2470
2471 v.assign(res, value)
2472 if not useiset then
2473 var true_v = v.bool_instance(true)
2474 v.write_attribute(guard, arguments.first, true_v)
2475 end
2476 v.add("\}")
2477 else
2478 res = v.read_attribute(self.mpropdef.mproperty, arguments.first)
2479 end
2480 v.assign(v.frame.returnvar.as(not null), res)
2481 else if mpropdef == mwritepropdef then
2482 assert arguments.length == 2
2483 v.write_attribute(self.mpropdef.mproperty, arguments.first, arguments[1])
2484 if is_lazy then
2485 var ret = self.mpropdef.static_mtype
2486 var useiset = not ret.is_c_primitive and not ret isa MNullableType
2487 if not useiset then
2488 v.write_attribute(self.mlazypropdef.mproperty, arguments.first, v.bool_instance(true))
2489 end
2490 end
2491 else
2492 abort
2493 end
2494 end
2495
2496 fun init_expr(v: AbstractCompilerVisitor, recv: RuntimeVariable)
2497 do
2498 if has_value and not is_lazy and not n_expr isa ANullExpr then evaluate_expr(v, recv)
2499 end
2500
2501 # Evaluate, store and return the default value of the attribute
2502 private fun evaluate_expr(v: AbstractCompilerVisitor, recv: RuntimeVariable): RuntimeVariable
2503 do
2504 var oldnode = v.current_node
2505 v.current_node = self
2506 var old_frame = v.frame
2507 var frame = new StaticFrame(v, self.mpropdef.as(not null), recv.mcasttype.undecorate.as(MClassType), [recv])
2508 v.frame = frame
2509
2510 var value
2511 var mtype = self.mpropdef.static_mtype
2512 assert mtype != null
2513
2514 var nexpr = self.n_expr
2515 var nblock = self.n_block
2516 if nexpr != null then
2517 value = v.expr(nexpr, mtype)
2518 else if nblock != null then
2519 value = v.new_var(mtype)
2520 frame.returnvar = value
2521 frame.returnlabel = v.get_name("RET_LABEL")
2522 v.add("\{")
2523 v.stmt(nblock)
2524 v.add("{frame.returnlabel.as(not null)}:(void)0;")
2525 v.add("\}")
2526 else
2527 abort
2528 end
2529
2530 v.write_attribute(self.mpropdef.mproperty, recv, value)
2531
2532 v.frame = old_frame
2533 v.current_node = oldnode
2534
2535 return value
2536 end
2537
2538 fun check_expr(v: AbstractCompilerVisitor, recv: RuntimeVariable)
2539 do
2540 var nexpr = self.n_expr
2541 if nexpr != null then return
2542
2543 var oldnode = v.current_node
2544 v.current_node = self
2545 var old_frame = v.frame
2546 var frame = new StaticFrame(v, self.mpropdef.as(not null), recv.mtype.as(MClassType), [recv])
2547 v.frame = frame
2548 # Force read to check the initialization
2549 v.read_attribute(self.mpropdef.mproperty, recv)
2550 v.frame = old_frame
2551 v.current_node = oldnode
2552 end
2553 end
2554
2555 redef class AClassdef
2556 private fun compile_to_c(v: AbstractCompilerVisitor, mpropdef: MMethodDef, arguments: Array[RuntimeVariable])
2557 do
2558 if mpropdef == self.mfree_init then
2559 assert mpropdef.mproperty.is_root_init
2560 assert arguments.length == 1
2561 if not mpropdef.is_intro then
2562 v.supercall(mpropdef, arguments.first.mtype.as(MClassType), arguments)
2563 end
2564 return
2565 else
2566 abort
2567 end
2568 end
2569 end
2570
2571 redef class AExpr
2572 # Try to compile self as an expression
2573 # Do not call this method directly, use `v.expr` instead
2574 private fun expr(v: AbstractCompilerVisitor): nullable RuntimeVariable
2575 do
2576 v.add("PRINT_ERROR(\"NOT YET IMPLEMENTED {class_name}:{location.to_s}\\n\");")
2577 var mtype = self.mtype
2578 if mtype == null then
2579 return null
2580 else
2581 var res = v.new_var(mtype)
2582 v.add("/* {res} = NOT YET {class_name} */")
2583 return res
2584 end
2585 end
2586
2587 # Try to compile self as a statement
2588 # Do not call this method directly, use `v.stmt` instead
2589 private fun stmt(v: AbstractCompilerVisitor)
2590 do
2591 expr(v)
2592 end
2593 end
2594
2595 redef class ABlockExpr
2596 redef fun stmt(v)
2597 do
2598 for e in self.n_expr do v.stmt(e)
2599 end
2600 redef fun expr(v)
2601 do
2602 var last = self.n_expr.last
2603 for e in self.n_expr do
2604 if e == last then break
2605 v.stmt(e)
2606 end
2607 return v.expr(last, null)
2608 end
2609 end
2610
2611 redef class AVardeclExpr
2612 redef fun stmt(v)
2613 do
2614 var variable = self.variable.as(not null)
2615 var ne = self.n_expr
2616 if ne != null then
2617 var i = v.expr(ne, variable.declared_type)
2618 v.assign(v.variable(variable), i)
2619 end
2620 end
2621 end
2622
2623 redef class AVarExpr
2624 redef fun expr(v)
2625 do
2626 var res = v.variable(self.variable.as(not null))
2627 var mtype = self.mtype.as(not null)
2628 return v.autoadapt(res, mtype)
2629 end
2630 end
2631
2632 redef class AVarAssignExpr
2633 redef fun expr(v)
2634 do
2635 var variable = self.variable.as(not null)
2636 var i = v.expr(self.n_value, variable.declared_type)
2637 v.assign(v.variable(variable), i)
2638 return i
2639 end
2640 end
2641
2642 redef class AVarReassignExpr
2643 redef fun stmt(v)
2644 do
2645 var variable = self.variable.as(not null)
2646 var vari = v.variable(variable)
2647 var value = v.expr(self.n_value, variable.declared_type)
2648 var res = v.compile_callsite(self.reassign_callsite.as(not null), [vari, value])
2649 assert res != null
2650 v.assign(v.variable(variable), res)
2651 end
2652 end
2653
2654 redef class ASelfExpr
2655 redef fun expr(v) do return v.frame.arguments.first
2656 end
2657
2658 redef class AImplicitSelfExpr
2659 redef fun expr(v) do
2660 if not is_sys then return super
2661 return v.new_expr("glob_sys", mtype.as(not null))
2662 end
2663 end
2664
2665 redef class AEscapeExpr
2666 redef fun stmt(v) do v.add("goto BREAK_{v.escapemark_name(self.escapemark)};")
2667 end
2668
2669 redef class AReturnExpr
2670 redef fun stmt(v)
2671 do
2672 var nexpr = self.n_expr
2673 if nexpr != null then
2674 var returnvar = v.frame.returnvar.as(not null)
2675 var i = v.expr(nexpr, returnvar.mtype)
2676 v.assign(returnvar, i)
2677 end
2678 v.add("goto {v.frame.returnlabel.as(not null)};")
2679 end
2680 end
2681
2682 redef class AAbortExpr
2683 redef fun stmt(v) do v.add_abort("Aborted")
2684 end
2685
2686 redef class AIfExpr
2687 redef fun stmt(v)
2688 do
2689 var cond = v.expr_bool(self.n_expr)
2690 v.add("if ({cond})\{")
2691 v.stmt(self.n_then)
2692 v.add("\} else \{")
2693 v.stmt(self.n_else)
2694 v.add("\}")
2695 end
2696
2697 redef fun expr(v)
2698 do
2699 var res = v.new_var(self.mtype.as(not null))
2700 var cond = v.expr_bool(self.n_expr)
2701 v.add("if ({cond})\{")
2702 v.assign(res, v.expr(self.n_then.as(not null), null))
2703 v.add("\} else \{")
2704 v.assign(res, v.expr(self.n_else.as(not null), null))
2705 v.add("\}")
2706 return res
2707 end
2708 end
2709
2710 redef class AIfexprExpr
2711 redef fun expr(v)
2712 do
2713 var res = v.new_var(self.mtype.as(not null))
2714 var cond = v.expr_bool(self.n_expr)
2715 v.add("if ({cond})\{")
2716 v.assign(res, v.expr(self.n_then, null))
2717 v.add("\} else \{")
2718 v.assign(res, v.expr(self.n_else, null))
2719 v.add("\}")
2720 return res
2721 end
2722 end
2723
2724 redef class ADoExpr
2725 redef fun stmt(v)
2726 do
2727 v.stmt(self.n_block)
2728 v.add_escape_label(break_mark)
2729 end
2730 end
2731
2732 redef class AWhileExpr
2733 redef fun stmt(v)
2734 do
2735 v.add("for(;;) \{")
2736 var cond = v.expr_bool(self.n_expr)
2737 v.add("if (!{cond}) break;")
2738 v.stmt(self.n_block)
2739 v.add_escape_label(continue_mark)
2740 v.add("\}")
2741 v.add_escape_label(break_mark)
2742 end
2743 end
2744
2745 redef class ALoopExpr
2746 redef fun stmt(v)
2747 do
2748 v.add("for(;;) \{")
2749 v.stmt(self.n_block)
2750 v.add_escape_label(continue_mark)
2751 v.add("\}")
2752 v.add_escape_label(break_mark)
2753 end
2754 end
2755
2756 redef class AForExpr
2757 redef fun stmt(v)
2758 do
2759 var cl = v.expr(self.n_expr, null)
2760 var it_meth = self.method_iterator
2761 assert it_meth != null
2762 var it = v.compile_callsite(it_meth, [cl])
2763 assert it != null
2764 v.add("for(;;) \{")
2765 var isok_meth = self.method_is_ok
2766 assert isok_meth != null
2767 var ok = v.compile_callsite(isok_meth, [it])
2768 assert ok != null
2769 v.add("if(!{ok}) break;")
2770 if self.variables.length == 1 then
2771 var item_meth = self.method_item
2772 assert item_meth != null
2773 var i = v.compile_callsite(item_meth, [it])
2774 assert i != null
2775 v.assign(v.variable(variables.first), i)
2776 else if self.variables.length == 2 then
2777 var key_meth = self.method_key
2778 assert key_meth != null
2779 var i = v.compile_callsite(key_meth, [it])
2780 assert i != null
2781 v.assign(v.variable(variables[0]), i)
2782 var item_meth = self.method_item
2783 assert item_meth != null
2784 i = v.compile_callsite(item_meth, [it])
2785 assert i != null
2786 v.assign(v.variable(variables[1]), i)
2787 else
2788 abort
2789 end
2790 v.stmt(self.n_block)
2791 v.add_escape_label(continue_mark)
2792 var next_meth = self.method_next
2793 assert next_meth != null
2794 v.compile_callsite(next_meth, [it])
2795 v.add("\}")
2796 v.add_escape_label(break_mark)
2797
2798 var method_finish = self.method_finish
2799 if method_finish != null then
2800 # TODO: Find a way to call this also in long escape (e.g. return)
2801 v.compile_callsite(method_finish, [it])
2802 end
2803 end
2804 end
2805
2806 redef class AAssertExpr
2807 redef fun stmt(v)
2808 do
2809 if v.compiler.modelbuilder.toolcontext.opt_no_check_assert.value then return
2810
2811 var cond = v.expr_bool(self.n_expr)
2812 v.add("if (unlikely(!{cond})) \{")
2813 v.stmt(self.n_else)
2814 var nid = self.n_id
2815 if nid != null then
2816 v.add_abort("Assert '{nid.text}' failed")
2817 else
2818 v.add_abort("Assert failed")
2819 end
2820 v.add("\}")
2821 end
2822 end
2823
2824 redef class AOrExpr
2825 redef fun expr(v)
2826 do
2827 var res = v.new_var(self.mtype.as(not null))
2828 var i1 = v.expr_bool(self.n_expr)
2829 v.add("if ({i1}) \{")
2830 v.add("{res} = 1;")
2831 v.add("\} else \{")
2832 var i2 = v.expr_bool(self.n_expr2)
2833 v.add("{res} = {i2};")
2834 v.add("\}")
2835 return res
2836 end
2837 end
2838
2839 redef class AImpliesExpr
2840 redef fun expr(v)
2841 do
2842 var res = v.new_var(self.mtype.as(not null))
2843 var i1 = v.expr_bool(self.n_expr)
2844 v.add("if (!{i1}) \{")
2845 v.add("{res} = 1;")
2846 v.add("\} else \{")
2847 var i2 = v.expr_bool(self.n_expr2)
2848 v.add("{res} = {i2};")
2849 v.add("\}")
2850 return res
2851 end
2852 end
2853
2854 redef class AAndExpr
2855 redef fun expr(v)
2856 do
2857 var res = v.new_var(self.mtype.as(not null))
2858 var i1 = v.expr_bool(self.n_expr)
2859 v.add("if (!{i1}) \{")
2860 v.add("{res} = 0;")
2861 v.add("\} else \{")
2862 var i2 = v.expr_bool(self.n_expr2)
2863 v.add("{res} = {i2};")
2864 v.add("\}")
2865 return res
2866 end
2867 end
2868
2869 redef class ANotExpr
2870 redef fun expr(v)
2871 do
2872 var cond = v.expr_bool(self.n_expr)
2873 return v.new_expr("!{cond}", self.mtype.as(not null))
2874 end
2875 end
2876
2877 redef class AOrElseExpr
2878 redef fun expr(v)
2879 do
2880 var res = v.new_var(self.mtype.as(not null))
2881 var i1 = v.expr(self.n_expr, null)
2882 v.add("if ({i1}!=NULL) \{")
2883 v.assign(res, i1)
2884 v.add("\} else \{")
2885 var i2 = v.expr(self.n_expr2, null)
2886 v.assign(res, i2)
2887 v.add("\}")
2888 return res
2889 end
2890 end
2891
2892 redef class AIntExpr
2893 redef fun expr(v) do return v.int_instance(self.value.as(not null))
2894 end
2895
2896 redef class AByteExpr
2897 redef fun expr(v) do return v.byte_instance(self.value.as(not null))
2898 end
2899
2900 redef class AFloatExpr
2901 redef fun expr(v) do return v.float_instance("{self.n_float.text}") # FIXME use value, not n_float
2902 end
2903
2904 redef class ACharExpr
2905 redef fun expr(v) do return v.char_instance(self.value.as(not null))
2906 end
2907
2908 redef class AArrayExpr
2909 redef fun expr(v)
2910 do
2911 var mtype = self.element_mtype.as(not null)
2912 var array = new Array[RuntimeVariable]
2913 var res = v.array_instance(array, mtype)
2914
2915 var old_comprehension = v.frame.comprehension
2916 v.frame.comprehension = res
2917 for nexpr in self.n_exprs do
2918 v.stmt(nexpr)
2919 end
2920 v.frame.comprehension = old_comprehension
2921
2922 return res
2923 end
2924 end
2925
2926 redef class AStringFormExpr
2927 redef fun expr(v) do return v.string_instance(self.value.as(not null))
2928 end
2929
2930 redef class ASuperstringExpr
2931 redef fun expr(v)
2932 do
2933 var type_string = mtype.as(not null)
2934
2935 # Collect elements of the superstring
2936 var array = new Array[AExpr]
2937 for ne in self.n_exprs do
2938 # Drop literal empty string.
2939 # They appears in things like "{a}" that is ["", a, ""]
2940 if ne isa AStringFormExpr and ne.value == "" then continue # skip empty sub-strings
2941 array.add(ne)
2942 end
2943
2944 # Store the allocated native array in a static variable
2945 # For reusing later
2946 var varonce = v.get_name("varonce")
2947 v.add("if (unlikely({varonce}==NULL)) \{")
2948
2949 # The native array that will contains the elements to_s-ized.
2950 # For fast concatenation.
2951 var a = v.native_array_instance(type_string, v.int_instance(array.length))
2952
2953 v.add_decl("static {a.mtype.ctype} {varonce};")
2954
2955 # Pre-fill the array with the literal string parts.
2956 # So they do not need to be filled again when reused
2957 for i in [0..array.length[ do
2958 var ne = array[i]
2959 if not ne isa AStringFormExpr then continue
2960 var e = v.expr(ne, null)
2961 v.native_array_set(a, i, e)
2962 end
2963
2964 v.add("\} else \{")
2965 # Take the native-array from the store.
2966 # The point is to prevent that some recursive execution use (and corrupt) the same native array
2967 # WARNING: not thread safe! (FIXME?)
2968 v.add("{a} = {varonce};")
2969 v.add("{varonce} = NULL;")
2970 v.add("\}")
2971
2972 # Stringify the elements and put them in the native array
2973 var to_s_method = v.get_property("to_s", v.object_type)
2974 for i in [0..array.length[ do
2975 var ne = array[i]
2976 if ne isa AStringFormExpr then continue
2977 var e = v.expr(ne, null)
2978 # Skip the `to_s` if the element is already a String
2979 if not e.mcasttype.is_subtype(v.compiler.mainmodule, null, type_string) then
2980 e = v.send(to_s_method, [e]).as(not null)
2981 end
2982 v.native_array_set(a, i, e)
2983 end
2984
2985 # Fast join the native string to get the result
2986 var res = v.send(v.get_property("native_to_s", a.mtype), [a])
2987
2988 # We finish to work with the native array,
2989 # so store it so that it can be reused
2990 v.add("{varonce} = {a};")
2991 return res
2992 end
2993 end
2994
2995 redef class ACrangeExpr
2996 redef fun expr(v)
2997 do
2998 var i1 = v.expr(self.n_expr, null)
2999 var i2 = v.expr(self.n_expr2, null)
3000 var mtype = self.mtype.as(MClassType)
3001 var res = v.init_instance(mtype)
3002 v.compile_callsite(init_callsite.as(not null), [res, i1, i2])
3003 return res
3004 end
3005 end
3006
3007 redef class AOrangeExpr
3008 redef fun expr(v)
3009 do
3010 var i1 = v.expr(self.n_expr, null)
3011 var i2 = v.expr(self.n_expr2, null)
3012 var mtype = self.mtype.as(MClassType)
3013 var res = v.init_instance(mtype)
3014 v.compile_callsite(init_callsite.as(not null), [res, i1, i2])
3015 return res
3016 end
3017 end
3018
3019 redef class ATrueExpr
3020 redef fun expr(v) do return v.bool_instance(true)
3021 end
3022
3023 redef class AFalseExpr
3024 redef fun expr(v) do return v.bool_instance(false)
3025 end
3026
3027 redef class ANullExpr
3028 redef fun expr(v) do return v.null_instance
3029 end
3030
3031 redef class AIsaExpr
3032 redef fun expr(v)
3033 do
3034 var i = v.expr(self.n_expr, null)
3035 return v.type_test(i, self.cast_type.as(not null), "isa")
3036 end
3037 end
3038
3039 redef class AAsCastExpr
3040 redef fun expr(v)
3041 do
3042 var i = v.expr(self.n_expr, null)
3043 if v.compiler.modelbuilder.toolcontext.opt_no_check_assert.value then return i
3044
3045 v.add_cast(i, self.mtype.as(not null), "as")
3046 return i
3047 end
3048 end
3049
3050 redef class AAsNotnullExpr
3051 redef fun expr(v)
3052 do
3053 var i = v.expr(self.n_expr, null)
3054 if v.compiler.modelbuilder.toolcontext.opt_no_check_assert.value then return i
3055
3056 if i.mtype.is_c_primitive then return i
3057
3058 v.add("if (unlikely({i} == NULL)) \{")
3059 v.add_abort("Cast failed")
3060 v.add("\}")
3061 return i
3062 end
3063 end
3064
3065 redef class AParExpr
3066 redef fun expr(v) do return v.expr(self.n_expr, null)
3067 end
3068
3069 redef class AOnceExpr
3070 redef fun expr(v)
3071 do
3072 var mtype = self.mtype.as(not null)
3073 var name = v.get_name("varonce")
3074 var guard = v.get_name(name + "_guard")
3075 v.add_decl("static {mtype.ctype} {name};")
3076 v.add_decl("static int {guard};")
3077 var res = v.new_var(mtype)
3078 v.add("if (likely({guard})) \{")
3079 v.add("{res} = {name};")
3080 v.add("\} else \{")
3081 var i = v.expr(self.n_expr, mtype)
3082 v.add("{res} = {i};")
3083 v.add("{name} = {res};")
3084 v.add("{guard} = 1;")
3085 v.add("\}")
3086 return res
3087 end
3088 end
3089
3090 redef class ASendExpr
3091 redef fun expr(v)
3092 do
3093 var recv = v.expr(self.n_expr, null)
3094 var callsite = self.callsite.as(not null)
3095 var args = v.varargize(callsite.mpropdef, callsite.signaturemap, recv, self.raw_arguments)
3096 return v.compile_callsite(callsite, args)
3097 end
3098 end
3099
3100 redef class ASendReassignFormExpr
3101 redef fun stmt(v)
3102 do
3103 var recv = v.expr(self.n_expr, null)
3104 var callsite = self.callsite.as(not null)
3105 var args = v.varargize(callsite.mpropdef, callsite.signaturemap, recv, self.raw_arguments)
3106
3107 var value = v.expr(self.n_value, null)
3108
3109 var left = v.compile_callsite(callsite, args)
3110 assert left != null
3111
3112 var res = v.compile_callsite(self.reassign_callsite.as(not null), [left, value])
3113 assert res != null
3114
3115 args.add(res)
3116 v.compile_callsite(self.write_callsite.as(not null), args)
3117 end
3118 end
3119
3120 redef class ASuperExpr
3121 redef fun expr(v)
3122 do
3123 var recv = v.frame.arguments.first
3124
3125 var callsite = self.callsite
3126 if callsite != null then
3127 var args
3128
3129 if self.n_args.n_exprs.is_empty then
3130 # Add automatic arguments for the super init call
3131 args = [recv]
3132 for i in [0..callsite.msignature.arity[ do
3133 args.add(v.frame.arguments[i+1])
3134 end
3135 else
3136 args = v.varargize(callsite.mpropdef, callsite.signaturemap, recv, self.n_args.n_exprs)
3137 end
3138
3139 # Super init call
3140 var res = v.compile_callsite(callsite, args)
3141 return res
3142 end
3143
3144 var mpropdef = self.mpropdef.as(not null)
3145
3146 var args
3147 if self.n_args.n_exprs.is_empty then
3148 args = v.frame.arguments
3149 else
3150 args = v.varargize(mpropdef, signaturemap, recv, self.n_args.n_exprs)
3151 end
3152
3153 # Standard call-next-method
3154 return v.supercall(mpropdef, recv.mtype.as(MClassType), args)
3155 end
3156 end
3157
3158 redef class ANewExpr
3159 redef fun expr(v)
3160 do
3161 var mtype = self.recvtype
3162 assert mtype != null
3163
3164 if mtype.mclass.name == "NativeArray" then
3165 assert self.n_args.n_exprs.length == 1
3166 var l = v.expr(self.n_args.n_exprs.first, null)
3167 assert mtype isa MGenericType
3168 var elttype = mtype.arguments.first
3169 return v.native_array_instance(elttype, l)
3170 end
3171
3172 var recv = v.init_instance_or_extern(mtype)
3173
3174 var callsite = self.callsite
3175 if callsite == null then return recv
3176
3177 var args = v.varargize(callsite.mpropdef, callsite.signaturemap, recv, self.n_args.n_exprs)
3178 var res2 = v.compile_callsite(callsite, args)
3179 if res2 != null then
3180 #self.debug("got {res2} from {mproperty}. drop {recv}")
3181 return res2
3182 end
3183 return recv
3184 end
3185 end
3186
3187 redef class AAttrExpr
3188 redef fun expr(v)
3189 do
3190 var recv = v.expr(self.n_expr, null)
3191 var mproperty = self.mproperty.as(not null)
3192 return v.read_attribute(mproperty, recv)
3193 end
3194 end
3195
3196 redef class AAttrAssignExpr
3197 redef fun expr(v)
3198 do
3199 var recv = v.expr(self.n_expr, null)
3200 var i = v.expr(self.n_value, null)
3201 var mproperty = self.mproperty.as(not null)
3202 v.write_attribute(mproperty, recv, i)
3203 return i
3204 end
3205 end
3206
3207 redef class AAttrReassignExpr
3208 redef fun stmt(v)
3209 do
3210 var recv = v.expr(self.n_expr, null)
3211 var value = v.expr(self.n_value, null)
3212 var mproperty = self.mproperty.as(not null)
3213 var attr = v.read_attribute(mproperty, recv)
3214 var res = v.compile_callsite(self.reassign_callsite.as(not null), [attr, value])
3215 assert res != null
3216 v.write_attribute(mproperty, recv, res)
3217 end
3218 end
3219
3220 redef class AIssetAttrExpr
3221 redef fun expr(v)
3222 do
3223 var recv = v.expr(self.n_expr, null)
3224 var mproperty = self.mproperty.as(not null)
3225 return v.isset_attribute(mproperty, recv)
3226 end
3227 end
3228
3229 redef class AVarargExpr
3230 redef fun expr(v)
3231 do
3232 return v.expr(self.n_expr, null)
3233 end
3234 end
3235
3236 redef class ANamedargExpr
3237 redef fun expr(v)
3238 do
3239 return v.expr(self.n_expr, null)
3240 end
3241 end
3242
3243 redef class ADebugTypeExpr
3244 redef fun stmt(v)
3245 do
3246 # do nothing
3247 end
3248 end
3249
3250 # Utils
3251
3252 redef class Array[E]
3253 # Return a new `Array` with the elements only contened in self and not in `o`
3254 fun -(o: Array[E]): Array[E] do
3255 var res = new Array[E]
3256 for e in self do if not o.has(e) then res.add(e)
3257 return res
3258 end
3259 end
3260
3261 redef class MModule
3262 # All `MProperty` associated to all `MClassDef` of `mclass`
3263 fun properties(mclass: MClass): Set[MProperty] do
3264 if not self.properties_cache.has_key(mclass) then
3265 var properties = new HashSet[MProperty]
3266 var parents = new Array[MClass]
3267 if self.flatten_mclass_hierarchy.has(mclass) then
3268 parents.add_all(mclass.in_hierarchy(self).direct_greaters)
3269 end
3270 for parent in parents do
3271 properties.add_all(self.properties(parent))
3272 end
3273 for mclassdef in mclass.mclassdefs do
3274 if not self.in_importation <= mclassdef.mmodule then continue
3275 for mprop in mclassdef.intro_mproperties do
3276 properties.add(mprop)
3277 end
3278 end
3279 self.properties_cache[mclass] = properties
3280 end
3281 return properties_cache[mclass]
3282 end
3283 private var properties_cache: Map[MClass, Set[MProperty]] = new HashMap[MClass, Set[MProperty]]
3284
3285 # Write FFI and nitni results to file
3286 fun finalize_ffi(c: AbstractCompiler) do end
3287
3288 # Give requided addinional system libraries (as given to LD_LIBS)
3289 # Note: can return null instead of an empty set
3290 fun collect_linker_libs: nullable Array[String] do return null
3291 end
3292
3293 # Create a tool context to handle options and paths
3294 var toolcontext = new ToolContext
3295
3296 toolcontext.tooldescription = "Usage: nitc [OPTION]... file.nit...\nCompiles Nit programs."
3297
3298 # We do not add other options, so process them now!
3299 toolcontext.process_options(args)
3300
3301 # We need a model to collect stufs
3302 var model = new Model
3303 # An a model builder to parse files
3304 var modelbuilder = new ModelBuilder(model, toolcontext)
3305
3306 var arguments = toolcontext.option_context.rest
3307 if arguments.length > 1 and toolcontext.opt_output.value != null then
3308 print "Option Error: --output needs a single source file. Do you prefer --dir?"
3309 exit 1
3310 end
3311
3312 # Here we load an process all modules passed on the command line
3313 var mmodules = modelbuilder.parse(arguments)
3314
3315 if mmodules.is_empty then return
3316 modelbuilder.run_phases
3317
3318 for mmodule in mmodules do
3319 toolcontext.info("*** PROCESS {mmodule} ***", 1)
3320 var ms = [mmodule]
3321 toolcontext.run_global_phases(ms)
3322 end