-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCFunctionDefinitionNode.cpp
More file actions
84 lines (66 loc) · 2.08 KB
/
CFunctionDefinitionNode.cpp
File metadata and controls
84 lines (66 loc) · 2.08 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
/*
* CFunctionDefinitionNode.cpp
* HyperCompiler
*
* Created by Uli Kusterer on 10.05.07.
* Copyright 2007 M. Uli Kusterer. All rights reserved.
*
*/
#include "CFunctionDefinitionNode.h"
#include "CParser.h"
#include "CCodeBlock.h"
namespace Carlson
{
CFunctionDefinitionNode::~CFunctionDefinitionNode()
{
//printf("poof.\n");
}
void CFunctionDefinitionNode::AddLocalVar( const std::string& inName,
const std::string& inUserName,
TVariantType theType,
bool initWithName,
bool isParam,
bool isGlobal,
bool dontDispose )
{
CVariableEntry newEntry( inUserName, theType, initWithName,
isParam, isGlobal || GetAllVarsAreGlobals(), dontDispose );
std::map<std::string,CVariableEntry>::iterator foundVariable = mLocals.find( inName );
if( foundVariable == mLocals.end() )
mLocals[inName] = newEntry;
if( isGlobal || GetAllVarsAreGlobals() )
{
foundVariable = mGlobals.find( inName );
if( foundVariable == mGlobals.end() )
mGlobals[inName] = newEntry;
}
}
int16_t CFunctionDefinitionNode::GetBPRelativeOffsetForLocalVar( const std::string& inName )
{
std::map<std::string,CVariableEntry>::iterator foundVariable = mLocals.find( inName );
if( foundVariable != mLocals.end() )
{
int16_t bpRelOffs = foundVariable->second.mBPRelativeOffset;
if( bpRelOffs == INT16_MAX )
{
bpRelOffs = mLocalVariableCount++;
foundVariable->second.mBPRelativeOffset = bpRelOffs;
}
return bpRelOffs;
}
else
return INT16_MAX;
}
void CFunctionDefinitionNode::DebugPrint( std::ostream& destStream, size_t indentLevel )
{
INDENT_PREPARE(indentLevel);
destStream << indentChars << (mIsCommand ? "Command " : "Function ") << mName << std::endl;
DebugPrintInner( destStream, indentLevel );
}
void CFunctionDefinitionNode::GenerateCode( CCodeBlock* inCodeBlock )
{
inCodeBlock->GenerateFunctionPrologForName( mIsCommand, mName, mLocals, mLineNum );
CCodeBlockNodeBase::GenerateCode( inCodeBlock );
inCodeBlock->GenerateFunctionEpilogForName( mIsCommand, mName, mLocals, mEndLineNum );
}
} /* namespace Carlson */