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 *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* The interactive toplevel loop *)
|
|
|
|
|
|
|
|
open Lexing
|
1999-11-08 09:06:33 -08:00
|
|
|
open Formatmsg
|
1996-04-18 09:35:43 -07:00
|
|
|
open Config
|
1995-05-04 03:15:53 -07:00
|
|
|
open Misc
|
|
|
|
open Parsetree
|
1996-09-23 04:32:19 -07:00
|
|
|
open Types
|
1995-05-04 03:15:53 -07:00
|
|
|
open Typedtree
|
|
|
|
open Printval
|
|
|
|
|
|
|
|
type directive_fun =
|
|
|
|
Directive_none of (unit -> unit)
|
|
|
|
| Directive_string of (string -> unit)
|
|
|
|
| Directive_int of (int -> unit)
|
|
|
|
| Directive_ident of (Longident.t -> unit)
|
|
|
|
|
1997-07-03 07:32:35 -07:00
|
|
|
(* Hooks for parsing functions *)
|
|
|
|
|
|
|
|
let parse_toplevel_phrase = ref Parse.toplevel_phrase
|
|
|
|
let parse_use_file = ref Parse.use_file
|
|
|
|
let print_location = Location.print
|
|
|
|
let print_warning = Location.print_warning
|
|
|
|
let input_name = Location.input_name
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Load in-core and execute a lambda term *)
|
|
|
|
|
|
|
|
type evaluation_outcome = Result of Obj.t | Exception of exn
|
|
|
|
|
|
|
|
let load_lambda lam =
|
1995-12-15 02:21:43 -08:00
|
|
|
if !Clflags.dump_rawlambda then begin
|
1995-05-04 03:15:53 -07:00
|
|
|
Printlambda.lambda lam; print_newline()
|
|
|
|
end;
|
1995-12-15 02:21:43 -08:00
|
|
|
let slam = Simplif.simplify_lambda lam in
|
|
|
|
if !Clflags.dump_lambda then begin
|
|
|
|
Printlambda.lambda slam; print_newline()
|
|
|
|
end;
|
|
|
|
let (init_code, fun_code) = Bytegen.compile_phrase slam in
|
1995-05-04 03:15:53 -07:00
|
|
|
if !Clflags.dump_instr then begin
|
|
|
|
Printinstr.instrlist init_code;
|
|
|
|
Printinstr.instrlist fun_code;
|
|
|
|
print_newline()
|
|
|
|
end;
|
|
|
|
let (code, code_size, reloc) = Emitcode.to_memory init_code fun_code in
|
|
|
|
let can_free = (fun_code = []) in
|
|
|
|
let initial_symtable = Symtable.current_state() in
|
|
|
|
Symtable.patch_object code reloc;
|
|
|
|
Symtable.update_global_table();
|
|
|
|
try
|
1996-05-28 05:43:41 -07:00
|
|
|
let retval = (Meta.reify_bytecode code code_size) () in
|
1995-05-04 03:15:53 -07:00
|
|
|
if can_free then Meta.static_free code;
|
|
|
|
Result retval
|
|
|
|
with x ->
|
|
|
|
if can_free then Meta.static_free code;
|
|
|
|
Symtable.restore_state initial_symtable;
|
|
|
|
Exception x
|
|
|
|
|
|
|
|
(* Print the outcome of an evaluation *)
|
|
|
|
|
1996-05-16 08:58:57 -07:00
|
|
|
let rec print_items env = function
|
|
|
|
Tsig_value(id, decl)::rem ->
|
1997-02-04 00:03:29 -08:00
|
|
|
open_box 2;
|
1996-04-22 04:15:41 -07:00
|
|
|
begin match decl.val_kind with
|
|
|
|
Val_prim p ->
|
|
|
|
print_string "external "; Printtyp.ident id;
|
|
|
|
print_string " :"; print_space();
|
|
|
|
Printtyp.type_scheme decl.val_type; print_space();
|
|
|
|
print_string "= "; Primitive.print_description p
|
|
|
|
| _ ->
|
1995-05-04 03:15:53 -07:00
|
|
|
print_string "val "; Printtyp.ident id;
|
|
|
|
print_string " :"; print_space();
|
|
|
|
Printtyp.type_scheme decl.val_type;
|
|
|
|
print_string " ="; print_space();
|
|
|
|
print_value env (Symtable.get_global_value id) decl.val_type
|
|
|
|
end;
|
1996-05-16 08:58:57 -07:00
|
|
|
close_box();
|
|
|
|
print_space (); print_items env rem
|
|
|
|
| Tsig_type(id, decl)::rem ->
|
|
|
|
Printtyp.type_declaration id decl;
|
|
|
|
print_space (); print_items env rem
|
|
|
|
| Tsig_exception(id, decl)::rem ->
|
|
|
|
Printtyp.exception_declaration id decl;
|
|
|
|
print_space (); print_items env rem
|
|
|
|
| Tsig_module(id, mty)::rem ->
|
1997-02-04 00:03:29 -08:00
|
|
|
open_box 2; print_string "module "; Printtyp.ident id;
|
1996-05-16 08:58:57 -07:00
|
|
|
print_string " :"; print_space(); Printtyp.modtype mty; close_box();
|
|
|
|
print_space (); print_items env rem
|
|
|
|
| Tsig_modtype(id, decl)::rem ->
|
|
|
|
Printtyp.modtype_declaration id decl;
|
|
|
|
print_space (); print_items env rem
|
1998-06-24 12:22:26 -07:00
|
|
|
| Tsig_class(id, decl)::cltydecl::tydecl1::tydecl2::rem ->
|
|
|
|
Printtyp.class_declaration id decl;
|
|
|
|
print_space (); print_items env rem
|
|
|
|
| Tsig_cltype(id, decl)::tydecl1::tydecl2::rem ->
|
|
|
|
Printtyp.cltype_declaration id decl;
|
1996-05-16 08:58:57 -07:00
|
|
|
print_space (); print_items env rem
|
|
|
|
| _ ->
|
|
|
|
()
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Print an exception produced by an evaluation *)
|
|
|
|
|
|
|
|
let print_exception_outcome = function
|
|
|
|
Sys.Break ->
|
|
|
|
print_string "Interrupted."; print_newline()
|
|
|
|
| Out_of_memory ->
|
|
|
|
Gc.full_major();
|
1997-07-03 07:32:35 -07:00
|
|
|
print_string "Out of memory during evaluation.";
|
1995-05-04 03:15:53 -07:00
|
|
|
print_newline()
|
1997-07-03 07:32:35 -07:00
|
|
|
| Stack_overflow ->
|
|
|
|
print_string "Stack overflow during evaluation (looping recursion?).";
|
|
|
|
print_newline();
|
1995-05-04 03:15:53 -07:00
|
|
|
| exn ->
|
1997-02-04 00:03:29 -08:00
|
|
|
open_box 0;
|
1995-05-04 03:15:53 -07:00
|
|
|
print_string "Uncaught exception: ";
|
|
|
|
print_exception (Obj.repr exn);
|
|
|
|
print_newline()
|
|
|
|
|
|
|
|
(* The table of toplevel directives.
|
|
|
|
Filled by functions from module topdirs. *)
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
let directive_table = (Hashtbl.create 13 : (string, directive_fun) Hashtbl.t)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Execute a toplevel phrase *)
|
|
|
|
|
|
|
|
let toplevel_env = ref Env.empty
|
|
|
|
|
1997-07-03 07:32:35 -07:00
|
|
|
let execute_phrase print_outcome phr =
|
1995-05-04 03:15:53 -07:00
|
|
|
match phr with
|
|
|
|
Ptop_def sstr ->
|
|
|
|
let (str, sg, newenv) = Typemod.type_structure !toplevel_env sstr in
|
|
|
|
let lam = Translmod.transl_toplevel_definition str in
|
|
|
|
let res = load_lambda lam in
|
|
|
|
begin match res with
|
|
|
|
Result v ->
|
1997-07-03 07:32:35 -07:00
|
|
|
if print_outcome then begin
|
|
|
|
match str with
|
|
|
|
[Tstr_eval exp] ->
|
|
|
|
open_box 0;
|
|
|
|
print_string "- : ";
|
|
|
|
Printtyp.type_scheme exp.exp_type;
|
|
|
|
print_space(); print_string "="; print_space();
|
|
|
|
print_value newenv v exp.exp_type;
|
|
|
|
close_box();
|
|
|
|
print_newline()
|
|
|
|
| _ ->
|
|
|
|
open_vbox 0;
|
|
|
|
print_items newenv sg;
|
|
|
|
close_box();
|
|
|
|
print_flush()
|
1995-05-04 03:15:53 -07:00
|
|
|
end;
|
1995-09-02 11:55:37 -07:00
|
|
|
toplevel_env := newenv;
|
|
|
|
true
|
1995-05-04 03:15:53 -07:00
|
|
|
| Exception exn ->
|
1995-09-02 11:55:37 -07:00
|
|
|
print_exception_outcome exn;
|
|
|
|
false
|
1995-05-04 03:15:53 -07:00
|
|
|
end
|
|
|
|
| Ptop_dir(dir_name, dir_arg) ->
|
|
|
|
try
|
|
|
|
match (Hashtbl.find directive_table dir_name, dir_arg) with
|
1995-09-02 11:55:37 -07:00
|
|
|
(Directive_none f, Pdir_none) -> f (); true
|
|
|
|
| (Directive_string f, Pdir_string s) -> f s; true
|
|
|
|
| (Directive_int f, Pdir_int n) -> f n; true
|
|
|
|
| (Directive_ident f, Pdir_ident lid) -> f lid; true
|
1995-05-04 03:15:53 -07:00
|
|
|
| (_, _) ->
|
|
|
|
print_string "Wrong type of argument for directive `";
|
1995-09-02 11:55:37 -07:00
|
|
|
print_string dir_name; print_string "'"; print_newline();
|
|
|
|
false
|
1995-05-04 03:15:53 -07:00
|
|
|
with Not_found ->
|
|
|
|
print_string "Unknown directive `"; print_string dir_name;
|
1995-09-02 11:55:37 -07:00
|
|
|
print_string "'"; print_newline();
|
|
|
|
false
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-07-03 07:32:35 -07:00
|
|
|
(* Temporary assignment to a reference *)
|
|
|
|
|
|
|
|
let protect r newval body =
|
|
|
|
let oldval = !r in
|
|
|
|
try
|
|
|
|
r := newval;
|
|
|
|
let res = body() in
|
|
|
|
r := oldval;
|
|
|
|
res
|
|
|
|
with x ->
|
|
|
|
r := oldval;
|
|
|
|
raise x
|
|
|
|
|
|
|
|
(* Read and execute commands from a file *)
|
|
|
|
|
|
|
|
let use_print_results = ref true
|
|
|
|
|
|
|
|
let use_file name =
|
|
|
|
try
|
|
|
|
let filename = find_in_path !Config.load_path name in
|
|
|
|
let ic = open_in_bin filename in
|
|
|
|
let lb = Lexing.from_channel ic in
|
|
|
|
(* Skip initial #! line if any *)
|
|
|
|
let buffer = String.create 2 in
|
|
|
|
if input ic buffer 0 2 = 2 && buffer = "#!"
|
1999-02-24 07:21:50 -08:00
|
|
|
then ignore(input_line ic)
|
1997-07-03 07:32:35 -07:00
|
|
|
else seek_in ic 0;
|
|
|
|
let success =
|
|
|
|
protect Location.input_name filename (fun () ->
|
|
|
|
try
|
|
|
|
List.iter
|
|
|
|
(fun ph ->
|
|
|
|
if execute_phrase !use_print_results ph then () else raise Exit)
|
|
|
|
(!parse_use_file lb);
|
|
|
|
true
|
|
|
|
with
|
|
|
|
Exit -> false
|
|
|
|
| Sys.Break ->
|
|
|
|
print_string "Interrupted."; print_newline(); false
|
|
|
|
| x ->
|
|
|
|
Errors.report_error x; false) in
|
|
|
|
close_in ic;
|
|
|
|
success
|
|
|
|
with Not_found ->
|
|
|
|
print_string "Cannot find file "; print_string name; print_newline();
|
|
|
|
false
|
|
|
|
|
|
|
|
let use_silently name =
|
|
|
|
protect use_print_results false (fun () -> use_file name)
|
|
|
|
|
|
|
|
(* Reading function for interactive use *)
|
1995-09-08 01:56:21 -07:00
|
|
|
|
1996-07-25 06:18:36 -07:00
|
|
|
let first_line = ref true
|
1997-04-16 06:19:29 -07:00
|
|
|
let got_eof = ref false;;
|
1996-07-25 06:18:36 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let refill_lexbuf buffer len =
|
1997-04-16 06:19:29 -07:00
|
|
|
if !got_eof then (got_eof := false; 0) else begin
|
|
|
|
output_string stdout (if !first_line then "# " else " "); flush stdout;
|
|
|
|
first_line := false;
|
|
|
|
let i = ref 0 in
|
|
|
|
try
|
|
|
|
while !i < len && (let c = input_char stdin in buffer.[!i] <- c; c<>'\n')
|
|
|
|
do incr i done;
|
|
|
|
!i + 1
|
|
|
|
with End_of_file ->
|
|
|
|
Location.echo_eof ();
|
|
|
|
if !i > 0
|
|
|
|
then (got_eof := true; !i)
|
|
|
|
else 0
|
|
|
|
end
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Discard everything already in a lexer buffer *)
|
|
|
|
|
|
|
|
let empty_lexbuf lb =
|
|
|
|
let l = String.length lb.lex_buffer in
|
|
|
|
lb.lex_abs_pos <- (-l);
|
|
|
|
lb.lex_curr_pos <- l
|
|
|
|
|
1995-12-15 02:21:43 -08:00
|
|
|
(* Toplevel initialization. Performed here instead of at the
|
1997-04-08 08:18:38 -07:00
|
|
|
beginning of loop() so that user code linked in with ocamlmktop
|
1995-12-15 02:21:43 -08:00
|
|
|
can call directives from Topdirs. *)
|
|
|
|
|
|
|
|
let _ =
|
1998-10-20 05:58:23 -07:00
|
|
|
Sys.interactive := true;
|
1995-12-15 02:21:43 -08:00
|
|
|
Symtable.init_toplevel();
|
1997-04-08 08:18:38 -07:00
|
|
|
Clflags.thread_safe := true;
|
1997-07-03 07:32:35 -07:00
|
|
|
Compile.init_path()
|
1995-12-15 02:21:43 -08:00
|
|
|
|
1998-11-12 06:53:46 -08:00
|
|
|
let load_ocamlinit () =
|
1999-02-24 07:21:50 -08:00
|
|
|
if Sys.file_exists ".ocamlinit" then ignore(use_silently ".ocamlinit")
|
1998-11-12 06:53:46 -08:00
|
|
|
|
1997-07-03 07:32:35 -07:00
|
|
|
(* The interactive loop *)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-06-16 08:34:13 -07:00
|
|
|
exception PPerror
|
1996-05-22 05:43:11 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
let loop() =
|
1997-04-16 06:19:29 -07:00
|
|
|
print_string " Objective Caml version ";
|
1995-05-04 03:15:53 -07:00
|
|
|
print_string Config.version;
|
|
|
|
print_newline(); print_newline();
|
1996-04-18 09:35:43 -07:00
|
|
|
(* Add whatever -I options have been specified on the command line,
|
1996-07-25 06:18:36 -07:00
|
|
|
but keep the directories that user code linked in with ocamlmktop
|
1996-04-18 09:35:43 -07:00
|
|
|
may have added to load_path. *)
|
|
|
|
load_path := "" :: (List.rev !Clflags.include_dirs @ !load_path);
|
1996-02-05 08:21:46 -08:00
|
|
|
toplevel_env := Compile.initial_env();
|
1995-05-04 03:15:53 -07:00
|
|
|
let lb = Lexing.from_function refill_lexbuf in
|
|
|
|
Location.input_name := "";
|
|
|
|
Location.input_lexbuf := Some lb;
|
|
|
|
Sys.catch_break true;
|
1998-11-12 06:53:46 -08:00
|
|
|
load_ocamlinit ();
|
1995-05-04 03:15:53 -07:00
|
|
|
while true do
|
|
|
|
try
|
|
|
|
empty_lexbuf lb;
|
1996-05-30 07:53:51 -07:00
|
|
|
Location.reset();
|
1996-07-25 06:18:36 -07:00
|
|
|
first_line := true;
|
1997-06-16 08:34:13 -07:00
|
|
|
let phr = try !parse_toplevel_phrase lb with Exit -> raise PPerror in
|
1999-02-24 07:21:50 -08:00
|
|
|
ignore(execute_phrase true phr)
|
1995-05-04 03:15:53 -07:00
|
|
|
with
|
1997-04-15 12:19:45 -07:00
|
|
|
End_of_file -> exit 0
|
1995-05-04 03:15:53 -07:00
|
|
|
| Sys.Break ->
|
|
|
|
print_string "Interrupted."; print_newline()
|
1997-06-16 08:34:13 -07:00
|
|
|
| PPerror -> ()
|
1995-05-04 03:15:53 -07:00
|
|
|
| x ->
|
|
|
|
Errors.report_error x
|
|
|
|
done
|
1997-07-03 07:32:35 -07:00
|
|
|
|
|
|
|
(* Execute a script *)
|
|
|
|
|
|
|
|
let run_script name =
|
|
|
|
Compile.init_path();
|
|
|
|
toplevel_env := Compile.initial_env();
|
1999-11-08 09:06:33 -08:00
|
|
|
Formatmsg.set_output Format.err_formatter;
|
1997-10-24 08:54:20 -07:00
|
|
|
use_silently name
|