src/Pure/ML/ml_compiler.ML
author wenzelm
Thu, 06 Aug 2015 21:31:54 +0200
changeset 60858 7bf2188a0998
parent 56618 874bdedb2313
child 60956 10d463883dc2
permissions -rw-r--r--
evaluate ML expressions within debugger context; redirected writeln/warning for ML compiler;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/ML/ml_compiler.ML
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     3
56303
4cc3f4db3447 clarified Isabelle/ML bootstrap, such that Execution does not require ML_Compiler;
wenzelm
parents: 56281
diff changeset
     4
Runtime compilation and evaluation -- generic version.
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     5
*)
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     6
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     7
signature ML_COMPILER =
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
     8
sig
60858
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
     9
  type flags =
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    10
    {SML: bool, exchange: bool, redirect: bool, verbose: bool,
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    11
      writeln: string -> unit, warning: string -> unit}
56304
40274e4f5ebf redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents: 56303
diff changeset
    12
  val flags: flags
40274e4f5ebf redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents: 56303
diff changeset
    13
  val verbose: bool -> flags -> flags
56275
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 54387
diff changeset
    14
  val eval: flags -> Position.T -> ML_Lex.token list -> unit
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    15
end
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    16
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    17
structure ML_Compiler: ML_COMPILER =
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    18
struct
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    19
60858
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    20
type flags =
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    21
  {SML: bool, exchange: bool, redirect: bool, verbose: bool,
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    22
    writeln: string -> unit, warning: string -> unit};
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    23
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    24
val flags: flags =
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    25
  {SML = false, exchange = false, redirect = false, verbose = false,
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    26
    writeln = writeln, warning = warning};
56618
874bdedb2313 added command 'SML_export' and 'SML_import' for exchange of toplevel bindings;
wenzelm
parents: 56304
diff changeset
    27
874bdedb2313 added command 'SML_export' and 'SML_import' for exchange of toplevel bindings;
wenzelm
parents: 56304
diff changeset
    28
fun verbose b (flags: flags) =
60858
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    29
  {SML = #SML flags, exchange = #exchange flags, redirect = #redirect flags, verbose = b,
7bf2188a0998 evaluate ML expressions within debugger context;
wenzelm
parents: 56618
diff changeset
    30
    writeln = #writeln flags, warning = #warning flags};
56275
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 54387
diff changeset
    31
56304
40274e4f5ebf redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents: 56303
diff changeset
    32
fun eval (flags: flags) pos toks =
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    33
  let
56304
40274e4f5ebf redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents: 56303
diff changeset
    34
    val _ = if #SML flags then error ("Standard ML is unsupported on " ^ ML_System.name) else ();
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    35
    val line = the_default 1 (Position.line_of pos);
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    36
    val file = the_default "ML" (Position.file_of pos);
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    37
    val text = ML_Lex.flatten toks;
56304
40274e4f5ebf redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents: 56303
diff changeset
    38
  in Secure.use_text ML_Env.local_context (line, file) (#verbose flags) text end;
31333
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    39
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    40
end;
fcd010617e6c added structure ML_Compiler: runtime compilation, with advanced version for Poly/ML 5.3 (formerly ML_Test);
wenzelm
parents:
diff changeset
    41