-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFunctionDef.cpp
More file actions
104 lines (82 loc) · 1.95 KB
/
FunctionDef.cpp
File metadata and controls
104 lines (82 loc) · 1.95 KB
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
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The Initial Developer of this code is David Baum.
* Portions created by David Baum are Copyright (C) 1999 David Baum.
* All Rights Reserved.
*
* Portions created by John Hansen are Copyright (C) 2005 John Hansen.
* All Rights Reserved.
*
*/
#include "FunctionDef.h"
#include "Stmt.h"
#include "Scope.h"
#include "Program.h"
FunctionDef::FunctionDef()
{
fBody = 0;
fName = 0;
fExpanded = false;
fListingEnabled = true;
}
FunctionDef::~FunctionDef()
{
delete fBody;
}
bool FunctionDef::AddArg(const Symbol *name, ArgType type)
{
Arg a;
for(size_t i=0; i<fArgs.size(); i++)
{
if (fArgs[i].fName == name) return false;
}
a.fName = name;
a.fType = type;
fArgs.push_back(a);
return true;
}
void FunctionDef::SetBody(Stmt *s)
{
delete fBody;
fBody = s;
}
void FunctionDef::CreateArgVars()
{
for(size_t i=0; i<fArgs.size(); i++)
{
int var;
var = gProgram->NextVirtualVar();
switch(fArgs[i].fType)
{
case kConstantArg:
var |= kVirtualConstantFlag | kVirtualReadOnlyFlag;
break;
case kConstRefArg:
case kSensorArg:
var |= kVirtualReadOnlyFlag;
break;
case kPointerArg:
var |= kPointerFlag;
break;
case kConstPtrArg:
var |= kVirtualReadOnlyFlag | kPointerFlag;
break;
default:
break;
}
fArgs[i].fVar = var;
gProgram->DefineVar(fArgs[i].fName, var, false,
((fArgs[i].fType == kPointerArg) || (fArgs[i].fType == kConstPtrArg)),
false);
}
}
void FunctionDef::SetLocations(LocationNode *start, LocationNode *end)
{
fStart = start->GetLoc();
delete start;
fEnd = end->GetLoc();
delete end;
}