summaryrefslogtreecommitdiff
path: root/2.3-1/macros/ASTManagement/AST_HandleEndProgram.sci
blob: 2d6d77a9f30b0031a40cec4a15ed4adeb1340560 (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
55
56
57
58
59
60
61
62
function SharedInfo = AST_HandleEndProgram(FileInfo,SharedInfo)
// function SharedInfo = AST_HandleEndProgram(FileInfo,SharedInfo)
// -----------------------------------------------------------------
// Handles the EndProgram tag of the AST.
//
//
// Input data:
// //NUT: add description here
//
// Output data:
// //NUT: add description here
//
// Status:
// 12-Jun-2007 -- Raffaele Nutricato: Author.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),2,2);

// -----------------------
// --- Initialization. ---
// -----------------------
nxtscifunname      = SharedInfo.NextSCIFunName;
nxtscifunnumber    = SharedInfo.NextSCIFunNumber;
ReportFileName     = FileInfo.Funct(nxtscifunnumber).ReportFileName;
CPass1FileName     = FileInfo.Funct(nxtscifunnumber).CPass1FileName

IndentLevel        = SharedInfo.NIndent;
CCall  = '';
PrintStepInfo('Handling EndProgram',ReportFileName,'file');
tmpposfirstscalar = SharedInfo.CurrentFunInfo.PosFirstOutScalar;

if (1==2)
   //NUT: disabled because at the moment I am able to decode the return instruction.
   if (SharedInfo.CurrentFunInfo.CFunctionName == SharedInfo.CMainFunName)
      CCall = CCall+'return(0);';
   else
      if (SharedInfo.CurrentFunInfo.PosFirstOutScalar > 0)
         CCall = CCall+'return('+SharedInfo.CurrentFunInfo.OutArg(tmpposfirstscalar).Name+');'
      end
   end
   
   PrintStringInfo('   '+CCall,ReportFileName,'file','y');
   PrintStringInfo(C_IndentBlanks(IndentLevel)+CCall,CPass1FileName,'file','y');
end


SharedInfo.NIndent = SharedInfo.NIndent - 1;
IndentLevel        = SharedInfo.NIndent;
PrintStringInfo('   }',ReportFileName,'file','y');
PrintStringInfo(C_IndentBlanks(IndentLevel)+'}',CPass1FileName,'file','y');

// --- Close the copy of the scilab file. ---
PrintStringInfo('   Closing: '+FileInfo.Funct(nxtscifunnumber).SCICopyFileName,ReportFileName,'file','y');
mclose(FileInfo.Funct(nxtscifunnumber).SCICopyFileFid);

endfunction