home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / turbopas / tpfort12.arc / TPFORT.DOC < prev   
Text File  |  1989-11-28  |  16KB  |  352 lines

  1. TPFort v 1.2 - A link from Turbo Pascal to MS Fortran.  
  2.  
  3. Copyright (c) 1989 D.J. Murdoch.  All rights reserved.
  4.  
  5. PURPOSE
  6.  
  7. TPFort is a collection of several procedures that allow Microsoft Fortran 
  8. routines to be called from Turbo Pascal.  I wrote it so that I could use the 
  9. binary-only NAG Fortran library for numerical routines in Turbo Pascal 
  10. programs, but it ended up being a general purpose linker.
  11.  
  12. PRICE
  13.  
  14. TPFort is absolutely free to use and incorporate into your own programs for 
  15. any purpose.  Distribute it to anyone you like, but please don't remove my 
  16. copyright notice or modify it in any other way.  Source code is available 
  17. (see below), but is not necessary to be able to use TPFort with Turbo Pascal 
  18. version 5.5. 
  19.  
  20. METHOD 
  21.  
  22. The Fortran routines are compiled into their own loader file which is loaded at 
  23. run time by a Turbo Pascal program, making most of the Fortran subroutines and 
  24. functions available to the Pascal program.  The molasses-slow Fortran compiler 
  25. and linker need only be run once to create the loader; changes to the Pascal 
  26. part of the program don't force recompiling or re-linking of the Fortran part.
  27.  
  28. INSTRUCTIONS
  29.  
  30. There are several steps involved in preparing a Fortran routines to be called 
  31. from Turbo Pascal.  
  32.  
  33. 1.   Preparing the Fortran Program
  34.  
  35. Write a Fortran program which includes the following declarations and a call 
  36. to CALLTP, in the following format: 
  37.  
  38.         EXTERNAL routine1, routine2, ..., routineX
  39.  
  40.         CALL CALLTP(routine1, routine2, ..., routineX, X)
  41.  
  42. where routine1 through to routineX are the names of the Fortran routines you 
  43. wish to make available to your Turbo Pascal program, and X is an integer value
  44. giving the number of routines being passed.  The external declaration is 
  45. extremely important; if not given, Fortran will assume the routine names are 
  46. local integer or real variables, and things will get really messed up.
  47.  
  48. This loader may do anything else, such as reading data from files, allocating 
  49. space, etc.  It's not all that important where the call to CALLTP takes place, 
  50. but more efficient use will be made of the program stack if the call comes 
  51. somewhere in the main program, rather than in a function or subroutine. 
  52.  
  53. After this call and any other initialization necessary, the program should
  54. exit.  As this will close any open files, and I/O done while TP is active
  55. is probably unreliable, it should complete any I/O operations before quitting, 
  56. and the routines being passed should avoid doing I/O.
  57.  
  58. Compile this routine and link it to the object file CALLTP.OBJ.  Be sure to
  59. specify to the linker that a larger than normal stack will be needed - I'd
  60. suggest a minimum of 16K. The Turbo Pascal program will be using this stack 
  61. instead of its own much of the time, and TP makes much heavier use of the 
  62. stack than does Fortran.
  63.  
  64. Warning:  Don't try running the loader program on its own, unless you avoid 
  65. executing the call to CALLTP.  If TP isn't there to catch that call, you're 
  66. very likely to crash.  It might be a good idea to rename the .EXE with a non-
  67. executable extension such as .LDR just to be sure. 
  68.  
  69. 2.   Preparing the TP dummy procedures
  70.  
  71. You need to create dummy versions of all the Fortran routines that you want to 
  72. call.  They _must_ be declared as "far" routines, either through the use of 
  73. the $F+ compiler directive, or by putting them in the interface section of a 
  74. unit.  I'd suggest isolating all of them into their own unit and interfacing 
  75. them.
  76.  
  77. Each of the dummy routines takes an argument list that corresponds exactly to 
  78. the argument list of the Fortran routine.  By default, all Fortran arguments 
  79. are passed by reference, so these should be too, by declaring them as "var" 
  80. parameters.  The following list gives corresponding types between the two 
  81. languages:
  82.  
  83.   Fortran               TP
  84.  
  85.   INTEGER*2             integer
  86.   INTEGER*4             longint
  87.   INTEGER               longint
  88.   REAL                  single
  89.   REAL*4                single
  90.   REAL*8                double
  91.   DOUBLE PRECISION      double
  92.   CHARACTER*n           array[1..n] of char
  93.   COMPLEX               fort_complex8
  94.   COMPLEX*8             fort_complex8        These types will be declared in
  95.   COMPLEX*16            fort_complex16       the FortLink unit someday
  96.   LOGICAL               fort_logical 
  97.   EXTERNAL              (special - see note below)
  98.  
  99. Note also that Fortran and TP use different conventions for the order of
  100. indices in multi-dimensional arrays.  For example, the Fortran array
  101.  
  102.   REAL X(10,20,30)
  103.  
  104. would be declared as
  105.  
  106.   x : array[1..30,1..20,1..10] of single;
  107.  
  108. in TP. Note also that TP (up to version 5.5, at least) has no facility for 
  109. variable dimensions on arrays:  to handle an array which is declared as X(N,M)
  110. you have to declare X as a one-dimensional array and handle the indexing 
  111. yourself.
  112.  
  113. Thus a call to the NAG matrix inversion routine F01AAF with Fortran 
  114. declaration 
  115.  
  116.  SUBROUTINE F01AAF(A, IA, N, UNIT, IUNIT, WKSPCE, IFAIL)
  117.  INTEGER IA, N, IUNIT, IFAIL
  118.  REAL*8 A(IA,N), UNIT(IUNIT,N), WKSPCE(N)
  119.  
  120. would be simulated with dummy declarations something like
  121.  
  122.  procedure f01aaf(var a:realarray;       { realarray is declared in the 
  123.                                            FortLink unit }
  124.                   var ia, n:longint; 
  125.                   var unit:realarray;
  126.                   var iunit:longint;
  127.                   var wkspce:realarray;
  128.                   var ifail:longint);
  129.  
  130. and element A(I,J) would be addressed at a[i+(j-1)*ia].
  131.  
  132. The content of the dummy pascal routine is very simple, and should not be 
  133. varied.  If the Fortran routine is a SUBROUTINE, use a definition like
  134.   
  135.   const 
  136.     f01aaf_num = 1;  { this is the position of F01AAF in the call to CALLTP }
  137.  
  138.   procedure f01aaf;
  139.   begin
  140.     callfort(f01aaf_num);
  141.   end;
  142.  
  143. If desired, additional instructions can be put before the call to callfort;
  144. however, no local variables may be declared and no instructions may follow the 
  145. call.
  146.    
  147. If the Fortran routine is a FUNCTION, what to do depends on the function's 
  148. type.  Fortran and TP agree on the convention for returning values up to 4 
  149. bytes (except singles/REAL*4), so callfort can be used for these functions.
  150. The most common would be a Fortran INTEGER function being declared as a TP 
  151. longint function and using callfort.
  152.  
  153. However, Fortran and TP use different conventions for other return types, and 
  154. you need to use special calls to do the conversion. If the Fortran routine is 
  155. a REAL*8-valued FUNCTION, the "fdouble" procedure replaces callfort.  Use 
  156. "fsingle" for REAL*4 values.  For example, for the Gaussian random number 
  157. generator G05DDF, the Fortran declaration is 
  158.  
  159.  REAL*8 FUNCTION G05DDF(A, B)
  160.  REAL*8 A, B
  161.  
  162. and the Pascal declarations are
  163.  
  164.  function g05ddf(var a,b:double):double;
  165.  
  166. with implementation
  167.  
  168.  const g05ddf_num = 2;
  169.  function g05ddf;
  170.  begin
  171.    fdouble(g05ddf_num);   { Note that this is a procedure! }
  172.  end;
  173.  
  174. Other structured types can also be returned with some care.  You have to 
  175. declare the dummy function to be a pointer to the appropriate type, and use 
  176. the "fpointer(procnum)" call to the Fortran routine.  TPFORT only reserves 
  177. 8 bytes of space for return values, but larger values can be returned with 
  178. some trickery as described in FORTLINK.DOC in the header for fpointer.
  179.  
  180. 3.  Preparing the TP main program 
  181.  
  182. Once you have your dummy procedure unit set up, you have to make some 
  183. modifications to the main program to link in the Fortran at run-time.
  184. This is all done in a single call to 
  185.  
  186.  function loadfort(prog:string;TPentry:pointer):boolean;
  187.  
  188. The prog argument should contain a string giving the fully qualified name of 
  189. the Fortran program to be loaded; TPentry should give the address of a TP 
  190. routine taking no arguments, which is going to do all the calculations with 
  191. the Fortran routines.  It's necessary to do things this way because the call 
  192. to loadfort switches over to the Fortran stack; TPentry^ and any routine it 
  193. calls must be able to execute there.  If LoadFort is successful, it won't exit 
  194. until TPentry^ returns, and it'll give a True return value.  If it fails
  195. for some reason, it'll print a message and return a False value.  In this
  196. case TPEntry^ wasn't executed at all.  It's possible to call loadfort several 
  197. times if you want to switch in and out of "Fortran mode", though I don't know
  198. any reason to do so.  Only the first time will load anything, but they'll all 
  199. attempt to switch to Fortran mode.  Be sure never to call a Fortran 
  200. routine when you're not in Fortran mode, or you're likely to crash (or at 
  201. least get garbage out). To help determine the current status, the FortLink
  202. unit interfaces two variables:
  203.  
  204.   fortloaded     : boolean;    { True indicates Fortran routines are in memory }
  205.   fortsafe       : boolean;    { True indicates you're in Fortran mode }        
  206.  
  207. If you like, you can put tests of fortsafe into your dummy routines before
  208. the callfort or fdouble calls, to abort if there's a problem.
  209.  
  210. PASSING FUNCTION REFERENCES
  211.  
  212. It is possible to pass function or procedure references to a Fortran routine, 
  213. but it's a little tricky.  
  214.  
  215. The Fortran setup is just the same as for any other kind of routine.  Just 
  216. pass the procedure name in CALLTP.
  217.  
  218. The dummy definition is much the same.  Declare the parameter which is the 
  219. routine being passed as type "extval", passed by value.  
  220.  
  221. The main routine then calculates the reference extval using a call to 
  222. "fort_external(procnum)", where procnum is the number of a Fortran procedure 
  223. being passed, or "pas_external(@proc)", where proc is the Pascal procedure 
  224. being passed, and saves the answer in a temporary variable.  It passes this
  225. variable to the dummy routine.
  226.  
  227. The main bug in this procedure is that fort_external and pas_external 
  228. allocate space for a pointer on the stack, and leave it there.  Thus you can't 
  229. execute them in the middle of an expression, or it will get messed up.  
  230. You should call the routine Clean_External as soon as possible after using 
  231. the temporary variable, to restore the stack to normal.  Call it once for each 
  232. call you made to fort_external or pas_external.  In a loop it's probably safe 
  233. to calculate the temporary once at the beginning and only clean it up once at 
  234. the end.  You MUST reassign the temporary variable every time you enter the 
  235. routine that uses it, because its value becomes worthless as soon as you call 
  236. Clean_external or exit. 
  237.  
  238. There's another bug in pas_external - the Pascal routine will be executed 
  239. fully in the Fortran context.  In particular, this means all global references 
  240. will reference the wrong data segment, and TP is likely to overwrite registers 
  241. that Fortran expects to have preserved.  To fix this up, at the very beginning 
  242. you must call Enter_Pascal, and you must call Leave_Pascal just before 
  243. exiting.  This temporarily restores the Pascal context, and saves some 
  244. registers. Note that stack checking has to be disabled in a routine being 
  245. passed this way, since the stack checker makes a reference to the global 
  246. System.Stacklimit, and gets executed before Enter_Pascal.  
  247.  
  248. Calls back to Fortran routines are allowed.  Note that only dummy procedures 
  249. and functions defined with callfort may be recursive; functions using fsingle, 
  250. fdouble or fpointer can not be.  For example, if the Fortran REAL*8 FUNCTION 
  251. Minimizer gets passed the TP Myfunction to minimize, then Myfunction can't 
  252. call Minimizer, but it can call some other Fortran routine.  This isn't such a 
  253. large restriction though, because most Fortran routines don't allow recursive 
  254. calls anyways.  (Actually there's a way around this:  pass the Fortran 
  255. function through CALLTP several times.  If the Fortran routine could handle 
  256. recursive calls normally, then the separate dummy functions will be able to 
  257. call each other.) 
  258.  
  259. This method of passing routines works for TP functions only if they use the 
  260. same function-value passing convention as Fortran.  Effectively this means 
  261. only char, integer and longint valued functions may be passed. There's no way 
  262. to call most other TP functions, but it's possible to construct TP functions 
  263. which simulate any Fortran function.  Fortran expects the caller to allocate
  264. temporary space for larger return values and expects the function to put the 
  265. value there.  So, to write a TP routine that looks to Fortran as though it has 
  266. the declaration 
  267.  
  268.   REAL*8 FUNCTION SUMSQ(N,X)
  269.   INTEGER N
  270.   REAL*8 X(N)
  271.  
  272. write the header as follows: 
  273.  
  274.  function sumsq(var n:longint; var x:realarray; { Mimic the Fortran parameters 
  275.                                                   first }
  276.          value_ofs:word):double_ptr;     { Always add another word for the
  277.                                            return address, and return a 
  278.                                            pointer. "double_ptr" is a 
  279.                                            pointer to a double declared in 
  280.                                            FortLink }
  281.  
  282. See the sample program for the rest of the details.
  283.  
  284. EXAMPLE
  285.  
  286. A sample program is contained in the following files:
  287.  
  288.   PSAMPLE.PAS           The TP source for the main program
  289.   FSAMPLE.FOR           The MS Fortran source for the loader & routines
  290.   FSAMPLE.PAS           The dummy definitions for FSAMPLE
  291.  
  292. Also included is a Borland style MAKEFILE that compiles both parts.  
  293.  
  294. Warning:  There's a bug in MS Fortran 5.0 which means the sample program won't 
  295. run on some XT machines.  If you crash when you try to run it, read about the 
  296. problem and a patch to fix it in FORTRAN.BUG.
  297.  
  298. LIMITATIONS
  299.  
  300. I have real doubts that Fortran I/O will work properly when called from TP, 
  301. but haven't tested it enough to know for sure.
  302.  
  303. Because Fortran keeps so much data in the stack segment, you might not be able 
  304. to increase the stack size large enough.
  305.  
  306. FILES 
  307.  
  308. The following files should be included here:
  309.  
  310. MAKEFILE        A Borland style make file for the demo.  Just run MAKE.
  311. TPFORT   DOC    This file
  312. FSAMPLE  FOR    The demo Fortran source code
  313. CALLTP   OBJ    The object code to be linked to the Fortran routine
  314. FSAMPLE  PAS    The dummy definitions to access the Fortran code
  315. PSAMPLE  PAS    The demo Pascal source code
  316. FORTLINK TPU    The unit that handles the linking, compiled under TP 5.5
  317. FORTLINK DOC    The interface section from FortLink.tpu
  318. FORTRAN  BUG    Description of a bug and a patch for MS FORTRAN 5.0
  319.  
  320. COMMENTS AND QUESTIONS
  321.  
  322. Send any comments and/or bug reports to me at one of the following addresses:
  323.  
  324.   Duncan Murdoch
  325.   79 John St W
  326.   Waterloo, Ontario, Canada
  327.   N2L 1B7
  328.  
  329.   Internet:  dmurdoch@watstat.waterloo.edu
  330.   Fidonet:   dj murdoch at 1:221/180.4
  331.   Compuserve: 71631,122
  332.  
  333. SOURCE CODE 
  334.  
  335. TPFORT makes some use of the Turbo Professional library from TurboPower.  It's 
  336. a mixture of Turbo Pascal 5.5 and A86 assembler, and requires the Turbo 
  337. Professional library to recompile.  The source code can be obtained from me 
  338. for $125.  If you need the source for educational or other non-profit purposes 
  339. and this price is too high, write to me and we may be able to arrange a 
  340. discount. 
  341.  
  342. WARRANTY
  343.  
  344. There is no warranty of any kind with this program.  Use it for free; I hope 
  345. you get some value out of it.  
  346.  
  347. RELEASE HISTORY
  348.  
  349.  1.2  -  added support for floating point emulation.
  350.  1.1  -  added support for limited recursion, and many function return types.
  351.  1.0  -  first release.
  352.