📄 astnodes.cc
字号:
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "platform/platform.h"
#include "console/console.h"
#include "console/telnetDebugger.h"
#include "platform/event.h"
#include "console/ast.h"
#include "core/tAlgorithm.h"
#include "core/resManager.h"
#include "core/findMatch.h"
#include "console/consoleInternal.h"
#include "core/fileStream.h"
#include "console/compiler.h"
#include "console/simBase.h"
// This enables extra breakpoint lines in the DSO output at the
// exit points of functions as well as on code outside of functions
// in the main body of a script file. We #ifdef this because it
// currently adds many nops to the codeblock to do this.
#ifdef TORQUE_DEBUG
#define TORQUE_EXTRA_BREAKLINES
#endif
namespace Compiler
{
U32 precompileBlock(StmtNode *block, U32 loopCount)
{
U32 sum = 0;
for(StmtNode *walk = block; walk; walk = walk->getNext())
sum += walk->precompileStmt(loopCount);
return sum;
}
U32 compileBlock(StmtNode *block, U32 *codeStream, U32 ip, U32 continuePoint, U32 breakPoint)
{
for(StmtNode *walk = block; walk; walk = walk->getNext())
ip = walk->compileStmt(codeStream, ip, continuePoint, breakPoint);
return ip;
}
};
using namespace Compiler;
//-----------------------------------------------------------------------------
void StmtNode::addBreakCount()
{
#ifndef TORQUE_EXTRA_BREAKLINES
if(CodeBlock::smInFunction)
#endif
CodeBlock::smBreakLineCount++;
}
void StmtNode::addBreakLine(U32 ip)
{
#ifndef TORQUE_EXTRA_BREAKLINES
if(CodeBlock::smInFunction)
{
#endif
U32 line = CodeBlock::smBreakLineCount * 2;
CodeBlock::smBreakLineCount++;
if(getBreakCodeBlock()->lineBreakPairs)
{
getBreakCodeBlock()->lineBreakPairs[line] = dbgLineNumber;
getBreakCodeBlock()->lineBreakPairs[line+1] = ip;
}
#ifndef TORQUE_EXTRA_BREAKLINES
}
#endif
}
//------------------------------------------------------------
StmtNode::StmtNode()
{
next = NULL;
dbgFileName = CodeBlock::smCurrentParser->getCurrentFile();
dbgLineNumber = CodeBlock::smCurrentParser->getCurrentLine();
}
void StmtNode::setPackage(StringTableEntry)
{
}
void StmtNode::append(StmtNode *next)
{
StmtNode *walk = this;
while(walk->next)
walk = walk->next;
walk->next = next;
}
void FunctionDeclStmtNode::setPackage(StringTableEntry packageName)
{
package = packageName;
}
//------------------------------------------------------------
//
// Console language compilers
//
//------------------------------------------------------------
static U32 conversionOp(TypeReq src, TypeReq dst)
{
if(src == TypeReqString)
{
switch(dst)
{
case TypeReqUInt:
return OP_STR_TO_UINT;
case TypeReqFloat:
return OP_STR_TO_FLT;
case TypeReqNone:
return OP_STR_TO_NONE;
}
}
else if(src == TypeReqFloat)
{
switch(dst)
{
case TypeReqUInt:
return OP_FLT_TO_UINT;
case TypeReqString:
return OP_FLT_TO_STR;
case TypeReqNone:
return OP_FLT_TO_NONE;
}
}
else if(src == TypeReqUInt)
{
switch(dst)
{
case TypeReqFloat:
return OP_UINT_TO_FLT;
case TypeReqString:
return OP_UINT_TO_STR;
case TypeReqNone:
return OP_UINT_TO_NONE;
}
}
return OP_INVALID;
}
//------------------------------------------------------------
U32 BreakStmtNode::precompileStmt(U32 loopCount)
{
if(loopCount)
{
addBreakCount();
return 2;
}
Con::warnf(ConsoleLogEntry::General, "%s (%d): break outside of loop... ignoring.", dbgFileName, dbgLineNumber);
return 0;
}
U32 BreakStmtNode::compileStmt(U32 *codeStream, U32 ip, U32, U32 breakPoint)
{
if(breakPoint)
{
addBreakLine(ip);
codeStream[ip++] = OP_JMP;
codeStream[ip++] = breakPoint;
}
return ip;
}
//------------------------------------------------------------
U32 ContinueStmtNode::precompileStmt(U32 loopCount)
{
if(loopCount)
{
addBreakCount();
return 2;
}
Con::warnf(ConsoleLogEntry::General, "%s (%d): continue outside of loop... ignoring.", dbgFileName, dbgLineNumber);
return 0;
}
U32 ContinueStmtNode::compileStmt(U32 *codeStream, U32 ip, U32 continuePoint, U32)
{
if(continuePoint)
{
addBreakLine(ip);
codeStream[ip++] = OP_JMP;
codeStream[ip++] = continuePoint;
}
return ip;
}
//------------------------------------------------------------
U32 ExprNode::precompileStmt(U32)
{
addBreakCount();
return precompile(TypeReqNone);
}
U32 ExprNode::compileStmt(U32 *codeStream, U32 ip, U32, U32)
{
addBreakLine(ip);
return compile(codeStream, ip, TypeReqNone);
}
//------------------------------------------------------------
U32 ReturnStmtNode::precompileStmt(U32)
{
addBreakCount();
if(!expr)
return 1;
else
return 1 + expr->precompile(TypeReqString);
}
U32 ReturnStmtNode::compileStmt(U32 *codeStream, U32 ip, U32, U32)
{
addBreakLine(ip);
if(!expr)
codeStream[ip++] = OP_RETURN;
else
{
ip = expr->compile(codeStream, ip, TypeReqString);
codeStream[ip++] = OP_RETURN;
}
return ip;
}
//------------------------------------------------------------
ExprNode *IfStmtNode::getSwitchOR(ExprNode *left, ExprNode *list, bool string)
{
ExprNode *nextExpr = (ExprNode *) list->getNext();
ExprNode *test;
if(string)
test = StreqExprNode::alloc(left, list, true);
else
test = IntBinaryExprNode::alloc(opEQ, left, list);
if(!nextExpr)
return test;
return IntBinaryExprNode::alloc(opOR, test, getSwitchOR(left, nextExpr, string));
}
void IfStmtNode::propagateSwitchExpr(ExprNode *left, bool string)
{
testExpr = getSwitchOR(left, testExpr, string);
if(propagate && elseBlock)
((IfStmtNode *) elseBlock)->propagateSwitchExpr(left, string);
}
U32 IfStmtNode::precompileStmt(U32 loopCount)
{
U32 exprSize;
addBreakCount();
if(testExpr->getPreferredType() == TypeReqUInt)
{
exprSize = testExpr->precompile(TypeReqUInt);
integer = true;
}
else
{
exprSize = testExpr->precompile(TypeReqFloat);
integer = false;
}
// next is the JMPIFNOT or JMPIFFNOT - size of 2
U32 ifSize = precompileBlock(ifBlock, loopCount);
if(!elseBlock)
endifOffset = ifSize + 2 + exprSize;
else
{
elseOffset = exprSize + 2 + ifSize + 2;
U32 elseSize = precompileBlock(elseBlock, loopCount);
endifOffset = elseOffset + elseSize;
}
return endifOffset;
}
U32 IfStmtNode::compileStmt(U32 *codeStream, U32 ip, U32 continuePoint, U32 breakPoint)
{
U32 start = ip;
addBreakLine(ip);
ip = testExpr->compile(codeStream, ip, integer ? TypeReqUInt : TypeReqFloat);
codeStream[ip++] = integer ? OP_JMPIFNOT : OP_JMPIFFNOT;
/*
//elseBlock
OP_JMPIFNOT
start + elseOffset
eval ifBlock
OP_JMP
endifOffset
eval elseBlock
// ifBlock
OP_JMPIFNOT
endifOffset
eval ifBlock
*/
if(elseBlock)
{
codeStream[ip++] = start + elseOffset;
ip = compileBlock(ifBlock, codeStream, ip, continuePoint, breakPoint);
codeStream[ip++] = OP_JMP;
codeStream[ip++] = start + endifOffset;
ip = compileBlock(elseBlock, codeStream, ip, continuePoint, breakPoint);
}
else
{
codeStream[ip++] = start + endifOffset;
ip = compileBlock(ifBlock, codeStream, ip, continuePoint, breakPoint);
}
return ip;
}
//------------------------------------------------------------
U32 LoopStmtNode::precompileStmt(U32 loopCount)
{
U32 initSize = 0;
addBreakCount();
if(initExpr)
initSize = initExpr->precompile(TypeReqNone);
U32 testSize;
if(testExpr->getPreferredType() == TypeReqUInt)
{
integer = true;
testSize = testExpr->precompile(TypeReqUInt);
}
else
{
integer = false;
testSize = testExpr->precompile(TypeReqFloat);
}
U32 blockSize = precompileBlock(loopBlock, loopCount + 1);
U32 endLoopSize = 0;
if(endLoopExpr)
endLoopSize = endLoopExpr->precompile(TypeReqNone);
// if it's a for loop or a while loop it goes:
// initExpr
// testExpr
// OP_JMPIFNOT to break point
// loopStartPoint:
// loopBlock
// continuePoint:
// endLoopExpr
// testExpr
// OP_JMPIF loopStartPoint
// breakPoint:
// otherwise if it's a do ... while() it goes:
// initExpr
// loopStartPoint:
// loopBlock
// continuePoint:
// endLoopExpr
// testExpr
// OP_JMPIF loopStartPoint
// breakPoint:
if(!isDoLoop)
{
loopBlockStartOffset = initSize + testSize + 2;
continueOffset = loopBlockStartOffset + blockSize;
breakOffset = continueOffset + endLoopSize + testSize + 2;
}
else
{
loopBlockStartOffset = initSize;
continueOffset = initSize + blockSize;
breakOffset = continueOffset + endLoopSize + testSize + 2;
}
return breakOffset;
}
U32 LoopStmtNode::compileStmt(U32 *codeStream, U32 ip, U32, U32)
{
addBreakLine(ip);
U32 start = ip;
if(initExpr)
ip = initExpr->compile(codeStream, ip, TypeReqNone);
if(!isDoLoop)
{
ip = testExpr->compile(codeStream, ip, integer ? TypeReqUInt : TypeReqFloat);
codeStream[ip++] = integer ? OP_JMPIFNOT : OP_JMPIFFNOT;
codeStream[ip++] = start + breakOffset;
}
// Compile internals of loop.
ip = compileBlock(loopBlock, codeStream, ip, start + continueOffset, start + breakOffset);
if(endLoopExpr)
ip = endLoopExpr->compile(codeStream, ip, TypeReqNone);
ip = testExpr->compile(codeStream, ip, integer ? TypeReqUInt : TypeReqFloat);
codeStream[ip++] = integer ? OP_JMPIF : OP_JMPIFF;
codeStream[ip++] = start + loopBlockStartOffset;
return ip;
}
//------------------------------------------------------------
U32 ConditionalExprNode::precompile(TypeReq type)
{
// code is testExpr
// JMPIFNOT falseStart
// trueExpr
// JMP end
// falseExpr
U32 exprSize;
if(testExpr->getPreferredType() == TypeReqUInt)
{
exprSize = testExpr->precompile(TypeReqUInt);
integer = true;
}
else
{
exprSize = testExpr->precompile(TypeReqFloat);
integer = false;
}
return exprSize +
trueExpr->precompile(type) +
falseExpr->precompile(type) + 4;
}
U32 ConditionalExprNode::compile(U32 *codeStream, U32 ip, TypeReq type)
{
ip = testExpr->compile(codeStream, ip, integer ? TypeReqUInt : TypeReqFloat);
codeStream[ip++] = integer ? OP_JMPIFNOT : OP_JMPIFFNOT;
U32 jumpElseIp = ip++;
ip = trueExpr->compile(codeStream, ip, type);
codeStream[ip++] = OP_JMP;
U32 jumpEndIp = ip++;
codeStream[jumpElseIp] = ip;
ip = falseExpr->compile(codeStream, ip, type);
codeStream[jumpEndIp] = ip;
return ip;
}
TypeReq ConditionalExprNode::getPreferredType()
{
return trueExpr->getPreferredType();
}
//------------------------------------------------------------
U32 FloatBinaryExprNode::precompile(TypeReq type)
{
U32 addSize = left->precompile(TypeReqFloat) + right->precompile(TypeReqFloat) + 1;
if(type != TypeReqFloat)
addSize++;
return addSize;
}
U32 FloatBinaryExprNode::compile(U32 *codeStream, U32 ip, TypeReq type)
{
ip = right->compile(codeStream, ip, TypeReqFloat);
ip = left->compile(codeStream, ip, TypeReqFloat);
U32 operand = OP_INVALID;
switch(op)
{
case '+':
operand = OP_ADD;
break;
case '-':
operand = OP_SUB;
break;
case '/':
operand = OP_DIV;
break;
case '*':
operand = OP_MUL;
break;
}
codeStream[ip++] = operand;
if(type != TypeReqFloat)
codeStream[ip++] =conversionOp(TypeReqFloat, type);
return ip;
}
TypeReq FloatBinaryExprNode::getPreferredType()
{
return TypeReqFloat;
}
//------------------------------------------------------------
void IntBinaryExprNode::getSubTypeOperand()
{
subType = TypeReqUInt;
switch(op)
{
case '^':
operand = OP_XOR;
break;
case '%':
operand = OP_MOD;
break;
case '&':
operand = OP_BITAND;
break;
case '|':
operand = OP_BITOR;
break;
case '<':
operand = OP_CMPLT;
subType = TypeReqFloat;
break;
case '>':
operand = OP_CMPGR;
subType = TypeReqFloat;
break;
case opGE:
operand = OP_CMPGE;
subType = TypeReqFloat;
break;
case opLE:
operand = OP_CMPLE;
subType = TypeReqFloat;
break;
case opEQ:
operand = OP_CMPEQ;
subType = TypeReqFloat;
break;
case opNE:
operand = OP_CMPNE;
subType = TypeReqFloat;
break;
case opOR:
operand = OP_OR;
break;
case opAND:
operand = OP_AND;
break;
case opSHR:
operand = OP_SHR;
break;
case opSHL:
operand = OP_SHL;
break;
}
}
U32 IntBinaryExprNode::precompile(TypeReq type)
{
getSubTypeOperand();
U32 addSize = left->precompile(subType) + right->precompile(subType) + 1;
if(operand == OP_OR || operand == OP_AND)
addSize++;
if(type != TypeReqUInt)
addSize++;
return addSize;
}
U32 IntBinaryExprNode::compile(U32 *codeStream, U32 ip, TypeReq type)
{
if(operand == OP_OR || operand == OP_AND)
{
ip = left->compile(codeStream, ip, subType);
codeStream[ip++] = operand == OP_OR ? OP_JMPIF_NP : OP_JMPIFNOT_NP;
U32 jmpIp = ip++;
ip = right->compile(codeStream, ip, subType);
codeStream[jmpIp] = ip;
}
else
{
ip = right->compile(codeStream, ip, subType);
ip = left->compile(codeStream, ip, subType);
codeStream[ip++] = operand;
}
if(type != TypeReqUInt)
codeStream[ip++] =conversionOp(TypeReqUInt, type);
return ip;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -