src/Pure/ML-Systems/polyml-5.1.ML
author wenzelm
Sat, 06 Jun 2009 19:58:10 +0200
changeset 31471 e3987b32e401
parent 31427 5a07cc86675d
child 32776 1504f9c2d060
permissions -rw-r--r--
use_text: pass file name to compiler, tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26381
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/ML-Systems/polyml-5.1.ML
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
     2
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
     3
Compatibility wrapper for Poly/ML 5.1.
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
     4
*)
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
     5
31427
5a07cc86675d reraise exceptions to preserve original position (ML system specific);
wenzelm
parents: 31313
diff changeset
     6
fun reraise exn = raise exn;
5a07cc86675d reraise exceptions to preserve original position (ML system specific);
wenzelm
parents: 31313
diff changeset
     7
28836
dd361ca41f69 disabled threads -- as advertized;
wenzelm
parents: 28254
diff changeset
     8
use "ML-Systems/thread_dummy.ML";
30672
beaadd5af500 more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
wenzelm
parents: 30627
diff changeset
     9
use "ML-Systems/ml_name_space.ML";
26381
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
    10
use "ML-Systems/polyml_common.ML";
31312
1c00e4ff3c99 more modular setup of runtime compilation;
wenzelm
parents: 30672
diff changeset
    11
use "ML-Systems/compiler_polyml-5.0.ML";
31313
97800f7e80b4 renamed polyml_pp.ML to pp_polyml.ML;
wenzelm
parents: 31312
diff changeset
    12
use "ML-Systems/pp_polyml.ML";
26381
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
    13
509a1ca9d35c Compatibility wrapper for Poly/ML 5.1.
wenzelm
parents:
diff changeset
    14
val pointer_eq = PolyML.pointerEq;
29638
1f8f3d26a2cf added share_common_data -- reduces heap space, but takes long;
wenzelm
parents: 29564
diff changeset
    15
1f8f3d26a2cf added share_common_data -- reduces heap space, but takes long;
wenzelm
parents: 29564
diff changeset
    16
fun share_common_data () = PolyML.shareCommonData PolyML.rootFunction;
1f8f3d26a2cf added share_common_data -- reduces heap space, but takes long;
wenzelm
parents: 29564
diff changeset
    17