ni: intro of frontier files between nit code and extern code
[nit.git] / src / nitc.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Nit compiler main module
18 package nitc
19
20 import abstracttool
21 import analysis
22 import program
23 private import compiling
24 private import syntax
25 import native_interface
26
27 # The main class of the nitcompiler program
28 class NitCompiler
29 super AbstractCompiler
30 readable var _opt_output: OptionString = new OptionString("Output file", "-o", "--output")
31 readable var _opt_boost: OptionBool = new OptionBool("Optimize compilation", "-O", "--boost")
32 readable var _opt_no_cc: OptionBool = new OptionBool("Do not invoke C compiler", "--no-cc")
33 readable var _opt_cc_no_link: OptionBool = new OptionBool("Do not invoke C linker", "--cc-no-link")
34 readable var _opt_cc_lib_paths: OptionArray = new OptionArray("Path to libraries for C compiler", "--cc-lib-path")
35 readable var _opt_cc_libs: OptionArray = new OptionArray("Name of library to use for C compiler", "--cc-lib-name")
36 readable var _opt_cc_include_paths: OptionArray = new OptionArray("Path to .h files for C compiler", "--cc-header-path")
37 readable var _opt_global: OptionBool = new OptionBool("Use global compilation", "--global")
38 readable var _opt_global_no_STF_opt: OptionBool = new OptionBool("Do not use SFT optimization", "--no-global-SFT-optimization")
39 readable var _opt_global_no_DMR_opt: OptionBool = new OptionBool("Do not use dead method removal optimization", "--no-global-DMR-optimization")
40 readable var _opt_global_no_inline_get_set: OptionBool = new OptionBool("Do not automatically inline getters/setters", "--no-global-get-set-inlining")
41 readable var _opt_global_no_out_of_init_get_test_opt: OptionBool = new OptionBool("Do not remove get tests outside object initialization", "--no-global-OOIT-optimization")
42 readable var _opt_global_no_RFIMA: OptionBool = new OptionBool("Do not use a specialized algorithm to find reachable methods from initializers", "--no-global-RFIM-analysis")
43 readable var _opt_global_callgraph: OptionEnum = new OptionEnum(["none", "cha", "rta"], "The algorithm to use to build the callgraph", 2, "--global-callgraph")
44 readable var _opt_clibdir: OptionString = new OptionString("NIT C library directory", "--clibdir")
45 readable var _opt_bindir: OptionString = new OptionString("NIT tools directory", "--bindir")
46 readable var _opt_compdir: OptionString = new OptionString("Intermediate compilation directory", "--compdir")
47 readable var _opt_extension_prefix: OptionString = new OptionString("Append prefix to file extension", "-p", "--extension-prefix")
48 readable var _opt_output_format: OptionEnum = new OptionEnum(["none", "C", "icode"], "The type of code we want to be generated", 1, "--output-format")
49
50 init
51 do
52 super("nitc")
53 option_context.add_option(opt_output, opt_boost, opt_no_cc, opt_cc_no_link, opt_cc_libs, opt_cc_lib_paths, opt_cc_include_paths, opt_global, opt_clibdir, opt_bindir, opt_compdir, opt_extension_prefix, opt_global_no_STF_opt, opt_global_no_DMR_opt, opt_global_callgraph, opt_global_no_inline_get_set, opt_global_no_RFIMA, opt_global_no_out_of_init_get_test_opt, opt_output_format)
54 end
55
56 redef fun process_options
57 do
58 super
59 output_file = opt_output.value
60 boost = opt_boost.value
61 no_cc = opt_no_cc.value
62 cc_link = not opt_cc_no_link.value
63 cc_lib_paths = opt_cc_lib_paths.value
64 cc_libs = opt_cc_libs.value
65 cc_include_paths = opt_cc_include_paths.value
66 var ext = opt_extension_prefix.value
67 if ext != null then ext_prefix = ext else ext_prefix = ""
68 global = opt_global.value
69 use_SFT_optimization = not opt_global_no_STF_opt.value
70 no_dead_method_removal = opt_global_no_DMR_opt.value
71 no_inline_get_set = opt_global_no_inline_get_set.value
72 no_callgraph_from_init = opt_global_no_RFIMA.value
73 no_out_of_init_get_test_removal = opt_global_no_out_of_init_get_test_opt.value
74 global_callgraph = opt_global_callgraph.value_name
75 compdir = opt_compdir.value
76 if compdir == null then
77 var dir = once ("NIT_COMPDIR".to_symbol).environ
78 if not dir.is_empty then
79 compdir = dir
80 end
81 if compdir == null then
82 compdir = ".nit_compile"
83 end
84 end
85 compdir += ext_prefix
86
87 clibdir = opt_clibdir.value
88 if clibdir == null then
89 var dir = once ("NIT_DIR".to_symbol).environ
90 if dir.is_empty then
91 dir = "{sys.program_name.dirname}/../clib"
92 if dir.file_exists then clibdir = dir
93 else
94 dir = "{dir}/clib"
95 if dir.file_exists then clibdir = dir
96 end
97 if clibdir == null then
98 fatal_error(null, "Error: Cannot locate NIT C library directory. Uses --clibdir or envvar NIT_DIR.")
99 end
100 end
101 bindir = opt_bindir.value
102
103 if bindir == null then
104 var dir = once ("NIT_DIR".to_symbol).environ
105 if dir.is_empty then
106 dir = "{sys.program_name.dirname}/../bin"
107 if dir.file_exists then bindir = dir
108 else
109 dir = "{dir}/bin"
110 if dir.file_exists then bindir = dir
111 end
112 if bindir == null then
113 fatal_error(null, "Error: Cannot locate NIT tools directory. Uses --bindir or envvar NIT_DIR.")
114 end
115 end
116 end
117
118 redef fun perform_work(mods)
119 do
120 for mod in mods do
121 var p = new Program(mod, self)
122 p.output_format = opt_output_format.value_name
123 p.compute_main_method
124 p.generate_allocation_iroutines
125 if global then
126 p.do_global_pre_analysis_optimizations
127 p.do_global_analysis
128 p.do_global_post_analysis_optimizations
129 if opt_log.value then
130 p.dump_global_optimizations_information(log_directory)
131 p.dump_global_analysis_information(log_directory)
132 end
133 end
134 p.do_table_computation
135 p.compile_prog
136 end
137 end
138 end
139
140 var c = new NitCompiler
141 c.exec_cmd_line