1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-07-02 09:51:07 -07:00
|
|
|
(* The batch compiler *)
|
|
|
|
|
|
|
|
open Misc
|
|
|
|
open Config
|
|
|
|
open Format
|
|
|
|
open Typedtree
|
|
|
|
|
|
|
|
(* Initialize the search path.
|
|
|
|
The current directory is always searched first,
|
|
|
|
then the directories specified with the -I option (in command-line order),
|
|
|
|
then the standard library directory. *)
|
|
|
|
|
|
|
|
let init_path () =
|
|
|
|
load_path :=
|
|
|
|
"" :: List.rev (Config.standard_library :: !Clflags.include_dirs);
|
|
|
|
Env.reset_cache()
|
|
|
|
|
|
|
|
(* Return the initial environment in which compilation proceeds. *)
|
|
|
|
|
|
|
|
let initial_env () =
|
|
|
|
init_path();
|
|
|
|
try
|
|
|
|
if !Clflags.nopervasives
|
|
|
|
then Env.initial
|
|
|
|
else Env.open_pers_signature "Pervasives" Env.initial
|
|
|
|
with Not_found ->
|
|
|
|
fatal_error "cannot open Pervasives.cmi"
|
|
|
|
|
|
|
|
(* Compile a .mli file *)
|
|
|
|
|
|
|
|
let interface sourcefile =
|
1995-10-24 08:37:23 -07:00
|
|
|
let prefixname = Filename.chop_extension sourcefile in
|
1995-07-02 09:51:07 -07:00
|
|
|
let modulename = capitalize(Filename.basename prefixname) in
|
|
|
|
let ic = open_in_bin sourcefile in
|
|
|
|
let lb = Lexing.from_channel ic in
|
|
|
|
Location.input_name := sourcefile;
|
|
|
|
try
|
|
|
|
let sg = Typemod.transl_signature (initial_env()) (Parse.interface lb) in
|
|
|
|
close_in ic;
|
|
|
|
if !Clflags.print_types then (Printtyp.signature sg; print_flush());
|
|
|
|
Env.save_signature sg modulename (prefixname ^ ".cmi");
|
|
|
|
()
|
|
|
|
with x ->
|
|
|
|
close_in ic;
|
|
|
|
raise x
|
|
|
|
|
|
|
|
(* Compile a .ml file *)
|
|
|
|
|
|
|
|
let print_if flag printer arg =
|
|
|
|
if !flag then begin printer arg; print_newline() end;
|
|
|
|
arg
|
|
|
|
|
|
|
|
let implementation sourcefile =
|
1995-10-24 08:37:23 -07:00
|
|
|
let prefixname = Filename.chop_extension sourcefile in
|
1995-07-02 09:51:07 -07:00
|
|
|
let modulename = capitalize(Filename.basename prefixname) in
|
|
|
|
let ic = open_in_bin sourcefile in
|
|
|
|
let lb = Lexing.from_channel ic in
|
|
|
|
Location.input_name := sourcefile;
|
|
|
|
try
|
|
|
|
let (str, sg, finalenv) =
|
|
|
|
Typemod.type_structure (initial_env()) (Parse.implementation lb) in
|
|
|
|
if !Clflags.print_types then (Printtyp.signature sg; print_flush());
|
|
|
|
let (coercion, crc) =
|
|
|
|
if Sys.file_exists (prefixname ^ ".mli") then begin
|
1995-08-08 06:37:34 -07:00
|
|
|
let intf_file =
|
|
|
|
try find_in_path !load_path (prefixname ^ ".cmi")
|
|
|
|
with Not_found -> prefixname ^ ".cmi" in
|
|
|
|
let (dclsig, crc) = Env.read_signature modulename intf_file in
|
1995-09-02 11:55:37 -07:00
|
|
|
(Includemod.compunit sourcefile sg intf_file dclsig, crc)
|
1995-07-02 09:51:07 -07:00
|
|
|
end else begin
|
|
|
|
let crc = Env.save_signature sg modulename (prefixname ^ ".cmi") in
|
1995-09-02 11:55:37 -07:00
|
|
|
Typemod.check_nongen_schemes str;
|
1995-07-02 09:51:07 -07:00
|
|
|
(Tcoerce_none, crc)
|
|
|
|
end in
|
|
|
|
Compilenv.reset modulename crc;
|
1996-02-18 06:43:18 -08:00
|
|
|
let (compunit_size, lam) =
|
|
|
|
Translmod.transl_store_implementation modulename str coercion in
|
|
|
|
Asmgen.compile_implementation prefixname compunit_size
|
1995-07-02 09:51:07 -07:00
|
|
|
(print_if Clflags.dump_lambda Printlambda.lambda
|
1995-12-15 02:19:25 -08:00
|
|
|
(Simplif.simplify_lambda
|
1996-02-18 06:43:18 -08:00
|
|
|
(print_if Clflags.dump_rawlambda Printlambda.lambda lam)));
|
1995-07-02 09:51:07 -07:00
|
|
|
Compilenv.save_unit_info (prefixname ^ ".cmx");
|
|
|
|
close_in ic
|
|
|
|
with x ->
|
|
|
|
close_in ic;
|
|
|
|
raise x
|
|
|
|
|
|
|
|
let c_file name =
|
|
|
|
if Sys.command
|
|
|
|
(Printf.sprintf
|
|
|
|
"%s -c %s -I%s %s"
|
1995-07-18 01:41:46 -07:00
|
|
|
Config.native_c_compiler
|
1995-07-02 09:51:07 -07:00
|
|
|
(String.concat " "
|
|
|
|
(List.map (fun dir -> "-I" ^ dir)
|
|
|
|
(List.rev !Clflags.include_dirs)))
|
|
|
|
Config.standard_library
|
|
|
|
name)
|
|
|
|
<> 0
|
|
|
|
then exit 2
|