1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
2002-02-08 01:27:48 -08:00
|
|
|
(* Copyright 2002 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-07-02 09:51:07 -07:00
|
|
|
(* The batch compiler *)
|
|
|
|
|
|
|
|
open Misc
|
|
|
|
open Config
|
2000-03-06 21:02:33 -08:00
|
|
|
open Format
|
1995-07-02 09:51:07 -07:00
|
|
|
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 () =
|
1997-11-18 09:14:54 -08:00
|
|
|
let dirs =
|
2003-07-17 01:38:28 -07:00
|
|
|
if !Clflags.use_threads
|
2000-11-07 06:41:12 -08:00
|
|
|
then "+threads" :: !Clflags.include_dirs
|
|
|
|
else !Clflags.include_dirs in
|
|
|
|
let exp_dirs =
|
2000-12-27 21:02:43 -08:00
|
|
|
List.map (expand_directory Config.standard_library) dirs in
|
2002-02-14 07:17:11 -08:00
|
|
|
load_path := "" :: List.rev_append exp_dirs (Clflags.std_include_dir ());
|
2005-07-31 05:03:40 -07:00
|
|
|
Env.reset_cache ()
|
1995-07-02 09:51:07 -07:00
|
|
|
|
|
|
|
(* Return the initial environment in which compilation proceeds. *)
|
|
|
|
|
|
|
|
let initial_env () =
|
2003-05-12 02:34:05 -07:00
|
|
|
Ident.reinit();
|
1995-07-02 09:51:07 -07:00
|
|
|
try
|
|
|
|
if !Clflags.nopervasives
|
|
|
|
then Env.initial
|
|
|
|
else Env.open_pers_signature "Pervasives" Env.initial
|
|
|
|
with Not_found ->
|
|
|
|
fatal_error "cannot open Pervasives.cmi"
|
|
|
|
|
1996-04-25 09:06:43 -07:00
|
|
|
(* Compile a .mli file *)
|
|
|
|
|
2004-06-13 05:46:41 -07:00
|
|
|
let interface ppf sourcefile outputprefix =
|
2005-07-31 05:03:40 -07:00
|
|
|
init_path ();
|
2004-06-13 05:46:41 -07:00
|
|
|
let modulename =
|
|
|
|
String.capitalize(Filename.basename(chop_extension_if_any sourcefile)) in
|
2005-07-31 05:03:40 -07:00
|
|
|
Env.set_unit_name modulename;
|
2002-02-08 02:14:31 -08:00
|
|
|
let inputfile = Pparse.preprocess sourcefile in
|
|
|
|
try
|
|
|
|
let ast =
|
|
|
|
Pparse.file ppf inputfile Parse.interface ast_intf_magic_number in
|
|
|
|
if !Clflags.dump_parsetree then fprintf ppf "%a@." Printast.interface ast;
|
|
|
|
let sg = Typemod.transl_signature (initial_env()) ast in
|
|
|
|
if !Clflags.print_types then
|
2005-08-08 02:41:52 -07:00
|
|
|
fprintf std_formatter "%a@." Printtyp.signature
|
|
|
|
(Typemod.simplify_signature sg);
|
2002-02-08 02:14:31 -08:00
|
|
|
Warnings.check_fatal ();
|
2003-06-23 06:22:09 -07:00
|
|
|
if not !Clflags.print_types then
|
2004-06-13 05:46:41 -07:00
|
|
|
Env.save_signature sg modulename (outputprefix ^ ".cmi");
|
2002-02-08 02:14:31 -08:00
|
|
|
Pparse.remove_preprocessed inputfile
|
|
|
|
with e ->
|
|
|
|
Pparse.remove_preprocessed_if_ast inputfile;
|
|
|
|
raise e
|
1995-07-02 09:51:07 -07:00
|
|
|
|
|
|
|
(* Compile a .ml file *)
|
|
|
|
|
2000-03-27 07:44:50 -08:00
|
|
|
let print_if ppf flag printer arg =
|
|
|
|
if !flag then fprintf ppf "%a@." printer arg;
|
1995-07-02 09:51:07 -07:00
|
|
|
arg
|
|
|
|
|
1998-04-27 08:16:48 -07:00
|
|
|
let (++) x f = f x
|
|
|
|
let (+++) (x, y) f = (x, f y)
|
|
|
|
|
2004-06-13 05:46:41 -07:00
|
|
|
let implementation ppf sourcefile outputprefix =
|
2005-07-31 05:03:40 -07:00
|
|
|
init_path ();
|
2004-06-13 05:46:41 -07:00
|
|
|
let modulename =
|
|
|
|
String.capitalize(Filename.basename(chop_extension_if_any sourcefile)) in
|
2005-07-31 05:03:40 -07:00
|
|
|
Env.set_unit_name modulename;
|
2002-02-08 02:14:31 -08:00
|
|
|
let inputfile = Pparse.preprocess sourcefile in
|
1998-04-27 08:16:48 -07:00
|
|
|
let env = initial_env() in
|
2005-08-01 08:51:09 -07:00
|
|
|
Compilenv.reset ?packname:!Clflags.for_package modulename;
|
2002-02-08 02:14:31 -08:00
|
|
|
try
|
2003-06-23 06:22:09 -07:00
|
|
|
if !Clflags.print_types then ignore(
|
|
|
|
Pparse.file ppf inputfile Parse.implementation ast_impl_magic_number
|
|
|
|
++ print_if ppf Clflags.dump_parsetree Printast.implementation
|
2004-11-06 12:17:47 -08:00
|
|
|
++ Unused_var.warn ppf
|
2004-06-13 05:46:41 -07:00
|
|
|
++ Typemod.type_implementation sourcefile outputprefix modulename env)
|
2003-06-23 06:22:09 -07:00
|
|
|
else begin
|
|
|
|
Pparse.file ppf inputfile Parse.implementation ast_impl_magic_number
|
|
|
|
++ print_if ppf Clflags.dump_parsetree Printast.implementation
|
2004-11-06 12:17:47 -08:00
|
|
|
++ Unused_var.warn ppf
|
2004-06-13 05:46:41 -07:00
|
|
|
++ Typemod.type_implementation sourcefile outputprefix modulename env
|
2003-06-23 06:22:09 -07:00
|
|
|
++ Translmod.transl_store_implementation modulename
|
|
|
|
+++ print_if ppf Clflags.dump_rawlambda Printlambda.lambda
|
|
|
|
+++ Simplif.simplify_lambda
|
|
|
|
+++ print_if ppf Clflags.dump_lambda Printlambda.lambda
|
2004-06-13 05:46:41 -07:00
|
|
|
++ Asmgen.compile_implementation outputprefix ppf;
|
|
|
|
Compilenv.save_unit_info (outputprefix ^ ".cmx");
|
2003-06-23 06:22:09 -07:00
|
|
|
end;
|
2002-02-08 02:14:31 -08:00
|
|
|
Warnings.check_fatal ();
|
|
|
|
Pparse.remove_preprocessed inputfile
|
|
|
|
with x ->
|
|
|
|
Pparse.remove_preprocessed_if_ast inputfile;
|
|
|
|
raise x
|
1995-07-02 09:51:07 -07:00
|
|
|
|
|
|
|
let c_file name =
|
1998-11-06 07:39:43 -08:00
|
|
|
if Ccomp.compile_file name <> 0 then exit 2
|