Admin/polyml/README
author wenzelm
Mon, 20 Dec 2010 23:19:16 +0100
changeset 41578 a4d9831c21d4
parent 38787 5c6c5d63f3c3
child 41579 8cdadd543fc8
permissions -rw-r--r--
updated for Poly/ML 5.4.0;
     1 Poly/ML for Isabelle
     2 ====================
     3 
     4 This compilation is based on the official Poly/ML 5.4 sources from
     5 http://www.polyml.org with the following change in the SVN (which is
     6 also part of the fixes-5.4 source tree):
     7 
     8 ------------------------------------------------------------------------
     9 r1214 | dcjm | 2010-09-14 20:03:52 +0200 (Tue, 14 Sep 2010) | 1 line
    10 
    11 Fix to arbitrary precision emulation for X86.  A GC during emulating
    12 an operation could cause the stack to move resulting in the result of
    13 the operation not being stored into the result register.
    14 ------------------------------------------------------------------------
    15 diff libpolyml/x86_dep.cpp libpolyml/x86_dep.cpp.orig
    16 1308,1311c1308
    17 <                     if (! inConsts) {
    18 <                         destReg = get_reg(taskData, rrr); // May have moved because of a GC.
    19 <                         *destReg = PolyWord::FromUnsigned(destReg->AsUnsigned()+1);
    20 <                     }
    21 ---
    22 >                     if (! inConsts) *destReg = PolyWord::FromUnsigned(destReg->AsUnsigned()+1);
    23 1344,1347c1341
    24 <                     if (! inConsts) {
    25 <                         destReg = get_reg(taskData, rrr); // May have moved because of a GC.
    26 <                         *destReg = PolyWord::FromUnsigned(destReg->AsUnsigned()-1);
    27 <                     }
    28 ---
    29 >                     if (! inConsts) *destReg = PolyWord::FromUnsigned(destReg->AsUnsigned()-1);
    30 
    31 ------------------------------------------------------------------------
    32 
    33 The included build script is used like this:
    34 
    35   ./build src x86-linux --with-gmp
    36   ./build src x86_64-linux --with-gmp
    37   ./build src x86-darwin --without-gmp
    38   ./build src x86_64-darwin --without-gmp
    39   ./build src x86-cygwin --with-gmp
    40 
    41 The multi-platform directory layout for executables and shared
    42 libraries accommodates the standard ML_HOME settings for Isabelle.
    43 
    44 
    45 	Makarius
    46 	20-Dec-2010