summaryrefslogtreecommitdiff
path: root/modules/functions/macros/recompilefunction.sci
blob: cb1ac402dd5edcd78787bdc9294a97567a469846 (plain)
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
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution.  The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt

function recompilefunction(funname,kind,force)
    if argn(2) < 1 then
        error(sprintf(_("%s: Wrong number of input argument(s): %d to %d expected.\n"), "recompilefunction", 1, 3));
    end
    if ~exists("force","local") then force=%f; end
    if ~exists("kind","local") then kind="c"; end
    if ~exists(funname)
        error(msprintf(gettext("No variable named: %s.\n"),funname))
    end
    clear fvar funtext tempfun
    execstr("fvar="+funname)
    if ~or(type(fvar)==[11 13]) then
        error(msprintf(gettext("%s: Wrong value for input argument #%d: A Scilab function name is expected.\n"),"recompilefunction",1))
    end
    if type(fvar)==11 & ~force then
        oldkind="n"
        if kind=="n" then
            warning(msprintf(gettext("%s is already noncompiled.\n"),funname))
            return
        end
        //can't avoid "Warning: redefining function: fvar", sorry
        //    if kind=="c" then comp(fvar); end
        //    if kind=="p" then comp(fvar,2); end
        //    execstr(funname+"=resume(fvar)")
        //or:
        [out,in,funtext]=string(fvar);
        deff("["+strcat(out,",")+"]=tempfun("+strcat(in,",")+")",..
        funtext,kind)
        execstr(funname+"=resume(tempfun)")
    elseif type(fvar)==13 then
        lst=macr2lst(fvar)
        if lst(5)(1)=="25" then oldkind="p"; else oldkind="c"; end
        if kind=="c" & oldkind=="c" & ~force then
            warning(msprintf(gettext("%s is already compiled.\n"),funname))
            return
        end
        if kind=="p" & oldkind=="p" & ~force then
            warning(msprintf(gettext("%s is already compiled for profiling.\n"),funname))
            return
        end
        funtext=fun2string(lst,"tempfun")
        deff(strsubst(funtext(1),"function ",""),funtext(2:$-1),kind)
        execstr(funname+"=resume(tempfun)")
    end
endfunction