1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
c Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
c Copyright (C) INRIA
c
c This file must be used under the terms of the CeCILL.
c This source file is licensed as described in the file COPYING, which
c you should have received as part of this distribution. The terms
c are also available at
c http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
c this include file contains code relative to interfaces calling.
c We use
c include file instead of subroutine to avoid recursion pbs. This file
c must be included in each routine which compute an external
60 call parse
if(fun.eq.99) then
if(err.gt.0.or.err1.gt.0) then
c . test if we are under errcatch('stop') mode (imode=3)
imode = mod(abs(errct)/100000,8)
if (imode.ne.3) goto 97
endif
fun = 0
goto 200
endif
if(err.gt.0) goto 97
c
c recursion on gateway
ERROR_GW_ID = -1
END_OVERLOAD = -2
GW_CORE_ID = 13
GW_IO_ID = 5
GW_USER_ID = 14
GW_USER2_ID = 24
GW_FUNCTIONS_ID = 31
RECURSION_CALL_COMP = 1
RECURSION_CALL_EXEC1 = 2
RECURSION_CALL_EXECSTR = 3
RECURSION_CALL_GETF = 4
RECURSION_CALL_SAVE = 5
RECURSION_CALL_LOAD = 6
RECURSION_CALL_DEFF = 7
RECURSION_CALL_DISP = 8
RECURSION_CALL_EXEC2 = 9
k = ERROR_GW_ID
bok = isrecursioncalltofunction()
if(bok.eq.1) then
ir = rstk(pt) - 900
if (RECURSION_CALL_COMP .eq. ir) then
c see comp (sci_comp.f)
k = GW_CORE_ID
else if (RECURSION_CALL_EXEC1 .eq. ir) then
c see exec (intexec.f)
k = GW_FUNCTIONS_ID
else if (RECURSION_CALL_EXECSTR .eq. ir) then
c see execstr (intexecstr.f)
k = GW_FUNCTIONS_ID
else if (RECURSION_CALL_GETF .eq. ir) then
c see getf (intgetf.f)
k = GW_FUNCTIONS_ID
else if (RECURSION_CALL_SAVE .eq. ir) then
c see save (newsave.f)
k = GW_IO_ID
else if (RECURSION_CALL_LOAD .eq. ir) then
c see load (newsave.f)
k = GW_IO_ID
else if (RECURSION_CALL_DEFF .eq. ir) then
c see deff (intdeff.f)
c call comp by fun & fin
k = GW_FUNCTIONS_ID
else if (RECURSION_CALL_DISP .eq. ir) then
c see disp (intdisp.f)
k = GW_OUTPUT_STREAM_ID
else if (RECURSION_CALL_EXEC2 .eq. ir) then
c see exec (intexec.f)
k = GW_FUNCTIONS_ID
else if (ir .eq. 10) then
c end of overloaded function
k = END_OVERLOAD
else if(ir.gt.40) then
c back to gw_user2
k = GW_USER2_ID
else if(ir.gt.20) then
c back to gw_user
k = GW_USER_ID
else
k = ERROR_GW_ID
endif
goto 95
endif
c
89 if(top.lt.rhs ) then
call error(22)
goto 97
endif
if(top-rhs+lhs+1.ge.bot) then
call error(18)
goto 97
endif
c ireftop used to reset top if an error occurs during the function evaluation
ireftop = top - max(0,rhs)
goto 91
c
90 if(err.gt.0) goto 97
91 k = fun
fun = 0
if(k.eq.krec) then
krec = -1
call error(22)
goto 97
endif
krec = -1
if (k.eq.0 ) goto 60
95 continue
if (k.eq.END_OVERLOAD) then
goto 96
endif
if (k.eq.ERROR_GW_ID) then
goto 89
endif
if (.not.allowptr(k)) call ref2val
krec = k
call callinterf(k)
C if (k.eq.krec) krec = 99999
krec = -1
if(fun.ge.0) then
if (top-lhs+1.gt.0) call iset(rhs,0,infstk(top-lhs+1),1)
if(paus.gt.0) goto 91
if (err1.gt.0) top = ireftop
goto 90
endif
c called interface ask for a scilab function to perform the function (fun=-1)
c the function name is given in ids(1,pt+1)
c call ref2val removed here because if forces overloading function to
C be called by value
c call ref2val
fun = 0
call funs(ids(1,pt+1))
if(err.gt.0) goto 97
if(fun.gt.0) then
if (isbyref(fun).eq.0) call ref2val
goto 91
endif
if(fin.eq.0) then
call error(246)
if(err.gt.0) goto 97
goto 90
endif
pt = pt+1
fin = lstk(fin)
rstk(pt) = 910
icall = 5
fun = 0
c *call* macro
goto 60
96 pt = pt - 1
goto 90
c error handling
97 if(niv.gt.0.and.paus.gt.0) then
fun = 0
goto 60
endif
goto 9999
|