mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-14 00:21:34 +00:00
Added basic pretty printing for AST dumps
This commit is contained in:
parent
a7bbe299e3
commit
726ecaf01b
1 changed files with 430 additions and 243 deletions
|
@ -4,7 +4,8 @@
|
||||||
#include "zcc_parser.h"
|
#include "zcc_parser.h"
|
||||||
#include "zcc-parse.h"
|
#include "zcc-parse.h"
|
||||||
|
|
||||||
extern void (* const TreeNodePrinter[NUM_AST_NODE_TYPES])(FString &, ZCC_TreeNode *);
|
class FLispString;
|
||||||
|
extern void (* const TreeNodePrinter[NUM_AST_NODE_TYPES])(FLispString &, ZCC_TreeNode *);
|
||||||
|
|
||||||
static const char *BuiltInTypeNames[] =
|
static const char *BuiltInTypeNames[] =
|
||||||
{
|
{
|
||||||
|
@ -23,7 +24,129 @@ static const char *BuiltInTypeNames[] =
|
||||||
"usertype"
|
"usertype"
|
||||||
};
|
};
|
||||||
|
|
||||||
static void PrintNode(FString &out, ZCC_TreeNode *node)
|
class FLispString
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
operator FString &() { return Str; }
|
||||||
|
|
||||||
|
FLispString()
|
||||||
|
{
|
||||||
|
NestDepth = Column = 0;
|
||||||
|
WrapWidth = 72;
|
||||||
|
NeedSpace = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Open(const char *label)
|
||||||
|
{
|
||||||
|
size_t labellen = label != NULL ? strlen(label) : 0;
|
||||||
|
CheckWrap(labellen + 1 + NeedSpace);
|
||||||
|
if (NeedSpace)
|
||||||
|
{
|
||||||
|
Str << ' ';
|
||||||
|
}
|
||||||
|
Str << '(';
|
||||||
|
if (label != NULL)
|
||||||
|
{
|
||||||
|
Str.AppendCStrPart(label, labellen);
|
||||||
|
}
|
||||||
|
Column += labellen + 1 + NeedSpace;
|
||||||
|
NestDepth++;
|
||||||
|
NeedSpace = (label != NULL);
|
||||||
|
}
|
||||||
|
void Close()
|
||||||
|
{
|
||||||
|
assert(NestDepth != 0);
|
||||||
|
Str << ')';
|
||||||
|
Column++;
|
||||||
|
NestDepth--;
|
||||||
|
NeedSpace = true;
|
||||||
|
}
|
||||||
|
void Break()
|
||||||
|
{
|
||||||
|
// Don't break if not needed.
|
||||||
|
if (Column != NestDepth)
|
||||||
|
{
|
||||||
|
Str << '\n';
|
||||||
|
Column = NestDepth;
|
||||||
|
NeedSpace = false;
|
||||||
|
if (NestDepth > 0)
|
||||||
|
{
|
||||||
|
Str.AppendFormat("%*s", NestDepth, "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bool CheckWrap(size_t len)
|
||||||
|
{
|
||||||
|
if (len + Column > WrapWidth)
|
||||||
|
{
|
||||||
|
Break();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
void Add(const char *str, size_t len)
|
||||||
|
{
|
||||||
|
CheckWrap(len + NeedSpace);
|
||||||
|
if (NeedSpace)
|
||||||
|
{
|
||||||
|
Str << ' ';
|
||||||
|
}
|
||||||
|
Str.AppendCStrPart(str, len);
|
||||||
|
Column += len + NeedSpace;
|
||||||
|
NeedSpace = true;
|
||||||
|
}
|
||||||
|
void Add(const char *str)
|
||||||
|
{
|
||||||
|
Add(str, strlen(str));
|
||||||
|
}
|
||||||
|
void Add(FString &str)
|
||||||
|
{
|
||||||
|
Add(str.GetChars(), str.Len());
|
||||||
|
}
|
||||||
|
void AddName(FName name)
|
||||||
|
{
|
||||||
|
size_t namelen = strlen(name.GetChars());
|
||||||
|
CheckWrap(namelen + 2 + NeedSpace);
|
||||||
|
if (NeedSpace)
|
||||||
|
{
|
||||||
|
NeedSpace = false;
|
||||||
|
Str << ' ';
|
||||||
|
}
|
||||||
|
Str << '\'' << name.GetChars() << '\'';
|
||||||
|
Column += namelen + 2 + NeedSpace;
|
||||||
|
NeedSpace = true;
|
||||||
|
}
|
||||||
|
void AddChar(char c)
|
||||||
|
{
|
||||||
|
Add(&c, 1);
|
||||||
|
}
|
||||||
|
void AddInt(int i)
|
||||||
|
{
|
||||||
|
char buf[16];
|
||||||
|
size_t len = mysnprintf(buf, countof(buf), "%d", i);
|
||||||
|
Add(buf, len);
|
||||||
|
}
|
||||||
|
void AddHex(unsigned x)
|
||||||
|
{
|
||||||
|
char buf[10];
|
||||||
|
size_t len = mysnprintf(buf, countof(buf), "%08x", x);
|
||||||
|
Add(buf, len);
|
||||||
|
}
|
||||||
|
void AddFloat(double f)
|
||||||
|
{
|
||||||
|
char buf[32];
|
||||||
|
size_t len = mysnprintf(buf, countof(buf), "%g", f);
|
||||||
|
Add(buf, len);
|
||||||
|
}
|
||||||
|
private:
|
||||||
|
FString Str;
|
||||||
|
size_t NestDepth;
|
||||||
|
size_t Column;
|
||||||
|
size_t WrapWidth;
|
||||||
|
bool NeedSpace;
|
||||||
|
};
|
||||||
|
|
||||||
|
static void PrintNode(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
assert(TreeNodePrinter[NUM_AST_NODE_TYPES-1] != NULL);
|
assert(TreeNodePrinter[NUM_AST_NODE_TYPES-1] != NULL);
|
||||||
if (node->NodeType >= 0 && node->NodeType < NUM_AST_NODE_TYPES)
|
if (node->NodeType >= 0 && node->NodeType < NUM_AST_NODE_TYPES)
|
||||||
|
@ -32,528 +155,592 @@ static void PrintNode(FString &out, ZCC_TreeNode *node)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out.AppendFormat("(unknown-node-type-%d)", node->NodeType);
|
out.Open("unknown-node-type");
|
||||||
|
out.AddInt(node->NodeType);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintNodes(FString &out, ZCC_TreeNode *node, char addchar=' ')
|
static void PrintNodes(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_TreeNode *p;
|
ZCC_TreeNode *p;
|
||||||
|
|
||||||
if (node == NULL)
|
if (node == NULL)
|
||||||
{
|
{
|
||||||
out << "nil";
|
out.Add("nil", 3);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out << '(';
|
out.Open(NULL);
|
||||||
p = node;
|
p = node;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
PrintNode(out, p);
|
PrintNode(out, p);
|
||||||
p = p->SiblingNext;
|
p = p->SiblingNext;
|
||||||
if (p != node)
|
|
||||||
{
|
|
||||||
out << ' ';
|
|
||||||
}
|
|
||||||
} while (p != node);
|
} while (p != node);
|
||||||
out << ')';
|
out.Close();
|
||||||
}
|
|
||||||
if (addchar != '\0')
|
|
||||||
{
|
|
||||||
out << addchar;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintBuiltInType(FString &out, EZCCBuiltinType type, bool addspace)
|
static void PrintBuiltInType(FLispString &out, EZCCBuiltinType type)
|
||||||
{
|
{
|
||||||
assert(ZCC_NUM_BUILT_IN_TYPES == countof(BuiltInTypeNames));
|
assert(ZCC_NUM_BUILT_IN_TYPES == countof(BuiltInTypeNames));
|
||||||
if (unsigned(type) >= unsigned(ZCC_NUM_BUILT_IN_TYPES))
|
if (unsigned(type) >= unsigned(ZCC_NUM_BUILT_IN_TYPES))
|
||||||
{
|
{
|
||||||
out.AppendFormat("bad-type-%u", type);
|
char buf[30];
|
||||||
|
size_t len = mysnprintf(buf, countof(buf), "bad-type-%u", type);
|
||||||
|
out.Add(buf, len);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out << BuiltInTypeNames[type];
|
out.Add(BuiltInTypeNames[type]);
|
||||||
}
|
|
||||||
if (addspace)
|
|
||||||
{
|
|
||||||
out << ' ';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintIdentifier(FString &out, ZCC_TreeNode *node)
|
static void PrintIdentifier(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Identifier *inode = (ZCC_Identifier *)node;
|
ZCC_Identifier *inode = (ZCC_Identifier *)node;
|
||||||
out.AppendFormat("(identifier '%s')", FName(inode->Id).GetChars());
|
out.Open("identifier");
|
||||||
|
out.AddName(inode->Id);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStringConst(FString &out, FString str)
|
static void PrintStringConst(FLispString &out, FString str)
|
||||||
{
|
{
|
||||||
out << '"';
|
FString outstr;
|
||||||
|
outstr << '"';
|
||||||
for (size_t i = 0; i < str.Len(); ++i)
|
for (size_t i = 0; i < str.Len(); ++i)
|
||||||
{
|
{
|
||||||
if (str[i] == '"')
|
if (str[i] == '"')
|
||||||
{
|
{
|
||||||
out << "\"";
|
outstr << "\"";
|
||||||
}
|
}
|
||||||
else if (str[i] == '\\')
|
else if (str[i] == '\\')
|
||||||
{
|
{
|
||||||
out << "\\\\";
|
outstr << "\\\\";
|
||||||
}
|
}
|
||||||
else if (str[i] >= 32)
|
else if (str[i] >= 32)
|
||||||
{
|
{
|
||||||
out << str[i];
|
outstr << str[i];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out.AppendFormat("\\x%02X", str[i]);
|
outstr.AppendFormat("\\x%02X", str[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
out.Add(outstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintClass(FString &out, ZCC_TreeNode *node)
|
static void PrintClass(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Class *cnode = (ZCC_Class *)node;
|
ZCC_Class *cnode = (ZCC_Class *)node;
|
||||||
out << "\n(class ";
|
out.Open("class");
|
||||||
PrintNodes(out, cnode->ClassName);
|
PrintNodes(out, cnode->ClassName);
|
||||||
PrintNodes(out, cnode->ParentName);
|
PrintNodes(out, cnode->ParentName);
|
||||||
PrintNodes(out, cnode->Replaces);
|
PrintNodes(out, cnode->Replaces);
|
||||||
out.AppendFormat("%08x ", cnode->Flags);
|
out.AddHex(cnode->Flags);
|
||||||
PrintNodes(out, cnode->Body, ')');
|
PrintNodes(out, cnode->Body);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStruct(FString &out, ZCC_TreeNode *node)
|
static void PrintStruct(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Struct *snode = (ZCC_Struct *)node;
|
ZCC_Struct *snode = (ZCC_Struct *)node;
|
||||||
out.AppendFormat("\n(struct '%s' ", FName(snode->StructName).GetChars());
|
out.Break();
|
||||||
PrintNodes(out, snode->Body, ')');
|
out.Open("struct");
|
||||||
|
out.AddName(snode->StructName);
|
||||||
|
PrintNodes(out, snode->Body);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintEnum(FString &out, ZCC_TreeNode *node)
|
static void PrintEnum(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Enum *enode = (ZCC_Enum *)node;
|
ZCC_Enum *enode = (ZCC_Enum *)node;
|
||||||
out.AppendFormat("\n(enum '%s' ", FName(enode->EnumName).GetChars());
|
out.Break();
|
||||||
PrintBuiltInType(out, enode->EnumType, true);
|
out.Open("enum");
|
||||||
PrintNodes(out, enode->Elements, ')');
|
out.AddName(enode->EnumName);
|
||||||
|
PrintBuiltInType(out, enode->EnumType);
|
||||||
|
PrintNodes(out, enode->Elements);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintEnumNode(FString &out, ZCC_TreeNode *node)
|
static void PrintEnumNode(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_EnumNode *enode = (ZCC_EnumNode *)node;
|
ZCC_EnumNode *enode = (ZCC_EnumNode *)node;
|
||||||
out.AppendFormat("(enum-node '%s' ", FName(enode->ElemName).GetChars());
|
out.Open("enum-node");
|
||||||
PrintNodes(out, enode->ElemValue, ')');
|
out.AddName(enode->ElemName);
|
||||||
|
PrintNodes(out, enode->ElemValue);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStates(FString &out, ZCC_TreeNode *node)
|
static void PrintStates(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_States *snode = (ZCC_States *)node;
|
ZCC_States *snode = (ZCC_States *)node;
|
||||||
out << "\n(states ";
|
out.Break();
|
||||||
PrintNodes(out, snode->Body, ')');
|
out.Open("states");
|
||||||
|
PrintNodes(out, snode->Body);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStatePart(FString &out, ZCC_TreeNode *node)
|
static void PrintStatePart(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(state-part)";
|
out.Open("state-part");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateLabel(FString &out, ZCC_TreeNode *node)
|
static void PrintStateLabel(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_StateLabel *snode = (ZCC_StateLabel *)node;
|
ZCC_StateLabel *snode = (ZCC_StateLabel *)node;
|
||||||
out.AppendFormat("\n(state-label '%s')", FName(snode->Label).GetChars());
|
out.Break();
|
||||||
|
out.Open("state-label");
|
||||||
|
out.AddName(snode->Label);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateStop(FString &out, ZCC_TreeNode *node)
|
static void PrintStateStop(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(state-stop)";
|
out.Open("state-stop");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateWait(FString &out, ZCC_TreeNode *node)
|
static void PrintStateWait(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(state-wait)";
|
out.Open("state-wait");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateFail(FString &out, ZCC_TreeNode *node)
|
static void PrintStateFail(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(state-fail)";
|
out.Open("state-fail");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateLoop(FString &out, ZCC_TreeNode *node)
|
static void PrintStateLoop(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(state-loop)";
|
out.Open("state-loop");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateGoto(FString &out, ZCC_TreeNode *node)
|
static void PrintStateGoto(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_StateGoto *snode = (ZCC_StateGoto *)node;
|
ZCC_StateGoto *snode = (ZCC_StateGoto *)node;
|
||||||
out << "(state-goto ";
|
out.Open("state-goto");
|
||||||
PrintNodes(out, snode->Label);
|
PrintNodes(out, snode->Label);
|
||||||
PrintNodes(out, snode->Offset, ')');
|
PrintNodes(out, snode->Offset);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStateLine(FString &out, ZCC_TreeNode *node)
|
static void PrintStateLine(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_StateLine *snode = (ZCC_StateLine *)node;
|
ZCC_StateLine *snode = (ZCC_StateLine *)node;
|
||||||
out.AppendFormat("\n(state-line %c%c%c%c %s %s ",
|
out.Break();
|
||||||
snode->Sprite[0], snode->Sprite[1], snode->Sprite[2], snode->Sprite[3],
|
out.Open("state-line");
|
||||||
snode->bBright ? "bright " : "",
|
out.Add(snode->Sprite, 4);
|
||||||
snode->Frames->GetChars());
|
if (snode->bBright)
|
||||||
|
{
|
||||||
|
out.Add("bright", 6);
|
||||||
|
}
|
||||||
|
out.Add(*(snode->Frames));
|
||||||
PrintNodes(out, snode->Offset);
|
PrintNodes(out, snode->Offset);
|
||||||
PrintNodes(out, snode->Action, ')');
|
PrintNodes(out, snode->Action);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintVarName(FString &out, ZCC_TreeNode *node)
|
static void PrintVarName(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_VarName *vnode = (ZCC_VarName *)node;
|
ZCC_VarName *vnode = (ZCC_VarName *)node;
|
||||||
out.AppendFormat("(var-name '%s')", FName(vnode->Name).GetChars());
|
out.Open("var-name");
|
||||||
|
out.AddName(vnode->Name);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintType(FString &out, ZCC_TreeNode *node)
|
static void PrintType(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Type *tnode = (ZCC_Type *)node;
|
ZCC_Type *tnode = (ZCC_Type *)node;
|
||||||
out << "(bad-type ";
|
out.Open("bad-type");
|
||||||
PrintNodes(out, tnode->ArraySize, ')');
|
PrintNodes(out, tnode->ArraySize);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintBasicType(FString &out, ZCC_TreeNode *node)
|
static void PrintBasicType(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_BasicType *tnode = (ZCC_BasicType *)node;
|
ZCC_BasicType *tnode = (ZCC_BasicType *)node;
|
||||||
out << "(basic-type ";
|
out.Open("basic-type");
|
||||||
PrintNodes(out, tnode->ArraySize);
|
PrintNodes(out, tnode->ArraySize);
|
||||||
PrintBuiltInType(out, tnode->Type, true);
|
PrintBuiltInType(out, tnode->Type);
|
||||||
PrintNodes(out, tnode->UserType, ')');
|
PrintNodes(out, tnode->UserType);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintMapType(FString &out, ZCC_TreeNode *node)
|
static void PrintMapType(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_MapType *tnode = (ZCC_MapType *)node;
|
ZCC_MapType *tnode = (ZCC_MapType *)node;
|
||||||
out << "(map-type ";
|
out.Open("map-type");
|
||||||
PrintNodes(out, tnode->ArraySize);
|
PrintNodes(out, tnode->ArraySize);
|
||||||
PrintNodes(out, tnode->KeyType);
|
PrintNodes(out, tnode->KeyType);
|
||||||
PrintNodes(out, tnode->ValueType, ')');
|
PrintNodes(out, tnode->ValueType);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintDynArrayType(FString &out, ZCC_TreeNode *node)
|
static void PrintDynArrayType(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_DynArrayType *tnode = (ZCC_DynArrayType *)node;
|
ZCC_DynArrayType *tnode = (ZCC_DynArrayType *)node;
|
||||||
out << "(dyn-array-type ";
|
out.Open("dyn-array-type");
|
||||||
PrintNodes(out, tnode->ArraySize);
|
PrintNodes(out, tnode->ArraySize);
|
||||||
PrintNodes(out, tnode->ElementType, ')');
|
PrintNodes(out, tnode->ElementType);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintClassType(FString &out, ZCC_TreeNode *node)
|
static void PrintClassType(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ClassType *tnode = (ZCC_ClassType *)node;
|
ZCC_ClassType *tnode = (ZCC_ClassType *)node;
|
||||||
out << "(class-type ";
|
out.Open("class-type");
|
||||||
PrintNodes(out, tnode->ArraySize);
|
PrintNodes(out, tnode->ArraySize);
|
||||||
PrintNodes(out, tnode->Restriction, ')');
|
PrintNodes(out, tnode->Restriction);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprType(FString &out, EZCCExprType type)
|
static void OpenExprType(FLispString &out, EZCCExprType type)
|
||||||
{
|
{
|
||||||
static const char *const types[] =
|
static const char *const types[] =
|
||||||
{
|
{
|
||||||
"nil ",
|
"nil",
|
||||||
"id ",
|
"id",
|
||||||
"super ",
|
"super",
|
||||||
"self ",
|
"self",
|
||||||
"string-const ",
|
"string-const",
|
||||||
"int-const ",
|
"int-const",
|
||||||
"uint-const ",
|
"uint-const",
|
||||||
"float-const ",
|
"float-const",
|
||||||
"func-call ",
|
"func-call",
|
||||||
"array-access ",
|
"array-access",
|
||||||
"member-access ",
|
"member-access",
|
||||||
"post-inc ",
|
"post-inc",
|
||||||
"post-dec ",
|
"post-dec",
|
||||||
"pre-inc ",
|
"pre-inc",
|
||||||
"pre-dec ",
|
"pre-dec",
|
||||||
"negate ",
|
"negate",
|
||||||
"anti-negate ",
|
"anti-negate",
|
||||||
"bit-not ",
|
"bit-not",
|
||||||
"bool-not ",
|
"bool-not",
|
||||||
"size-of ",
|
"size-of",
|
||||||
"align-of ",
|
"align-of",
|
||||||
"add ",
|
"add",
|
||||||
"sub ",
|
"sub",
|
||||||
"mul ",
|
"mul",
|
||||||
"div ",
|
"div",
|
||||||
"mod ",
|
"mod",
|
||||||
"pow ",
|
"pow",
|
||||||
"cross-product ",
|
"cross-product",
|
||||||
"dot-product ",
|
"dot-product",
|
||||||
"left-shift ",
|
"left-shift",
|
||||||
"right-shift ",
|
"right-shift",
|
||||||
"concat ",
|
"concat",
|
||||||
"lt ",
|
"lt",
|
||||||
"gt ",
|
"gt",
|
||||||
"lteq ",
|
"lteq",
|
||||||
"gteq ",
|
"gteq",
|
||||||
"ltgteq ",
|
"ltgteq",
|
||||||
"is ",
|
"is",
|
||||||
"eqeq ",
|
"eqeq",
|
||||||
"neq ",
|
"neq",
|
||||||
"apreq ",
|
"apreq",
|
||||||
"bit-and ",
|
"bit-and",
|
||||||
"bit-or ",
|
"bit-or",
|
||||||
"bit-xor ",
|
"bit-xor",
|
||||||
"bool-and ",
|
"bool-and",
|
||||||
"bool-or ",
|
"bool-or",
|
||||||
"scope ",
|
"scope",
|
||||||
"trinary ",
|
"trinary",
|
||||||
};
|
};
|
||||||
assert(countof(types) == PEX_COUNT_OF);
|
assert(countof(types) == PEX_COUNT_OF);
|
||||||
|
|
||||||
|
char buf[32];
|
||||||
|
|
||||||
if (unsigned(type) < countof(types))
|
if (unsigned(type) < countof(types))
|
||||||
{
|
{
|
||||||
out << types[type];
|
mysnprintf(buf, countof(buf), "expr-%s", types[type]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out.AppendFormat("bad-pex-%u ", type);
|
mysnprintf(buf, countof(buf), "bad-pex-%u", type);
|
||||||
}
|
}
|
||||||
|
out.Open(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExpression(FString &out, ZCC_TreeNode *node)
|
static void PrintExpression(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Expression *enode = (ZCC_Expression *)node;
|
ZCC_Expression *enode = (ZCC_Expression *)node;
|
||||||
out << "(expr-";
|
OpenExprType(out, enode->Operation);
|
||||||
PrintExprType(out, enode->Operation);
|
out.Close();
|
||||||
out << ')';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprID(FString &out, ZCC_TreeNode *node)
|
static void PrintExprID(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprID *enode = (ZCC_ExprID *)node;
|
ZCC_ExprID *enode = (ZCC_ExprID *)node;
|
||||||
assert(enode->Operation == PEX_ID);
|
assert(enode->Operation == PEX_ID);
|
||||||
out.AppendFormat("(expr-id '%s')", FName(enode->Identifier).GetChars());
|
out.Open("expr-id");
|
||||||
|
out.AddName(enode->Identifier);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprString(FString &out, ZCC_TreeNode *node)
|
static void PrintExprString(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprString *enode = (ZCC_ExprString *)node;
|
ZCC_ExprString *enode = (ZCC_ExprString *)node;
|
||||||
assert(enode->Operation == PEX_StringConst);
|
assert(enode->Operation == PEX_StringConst);
|
||||||
out.AppendFormat("(expr-string-const ");
|
out.Open("expr-string-const");
|
||||||
PrintStringConst(out, *enode->Value);
|
PrintStringConst(out, *enode->Value);
|
||||||
out << ')';
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprInt(FString &out, ZCC_TreeNode *node)
|
static void PrintExprInt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprInt *enode = (ZCC_ExprInt *)node;
|
ZCC_ExprInt *enode = (ZCC_ExprInt *)node;
|
||||||
assert(enode->Operation == PEX_IntConst || enode->Operation == PEX_UIntConst);
|
assert(enode->Operation == PEX_IntConst || enode->Operation == PEX_UIntConst);
|
||||||
out << "(expr-";
|
OpenExprType(out, enode->Operation);
|
||||||
PrintExprType(out, enode->Operation);
|
out.AddInt(enode->Value);
|
||||||
out.AppendFormat("%d)", enode->Value);
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprFloat(FString &out, ZCC_TreeNode *node)
|
static void PrintExprFloat(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprFloat *enode = (ZCC_ExprFloat *)node;
|
ZCC_ExprFloat *enode = (ZCC_ExprFloat *)node;
|
||||||
assert(enode->Operation == PEX_FloatConst);
|
assert(enode->Operation == PEX_FloatConst);
|
||||||
out.AppendFormat("(expr-float-const %g)", enode->Value);
|
out.Open("expr-float-const");
|
||||||
|
out.AddFloat(enode->Value);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprFuncCall(FString &out, ZCC_TreeNode *node)
|
static void PrintExprFuncCall(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprFuncCall *enode = (ZCC_ExprFuncCall *)node;
|
ZCC_ExprFuncCall *enode = (ZCC_ExprFuncCall *)node;
|
||||||
assert(enode->Operation == PEX_FuncCall);
|
assert(enode->Operation == PEX_FuncCall);
|
||||||
out << "(expr-func-call ";
|
out.Open("expr-func-call");
|
||||||
PrintNodes(out, enode->Function);
|
PrintNodes(out, enode->Function);
|
||||||
PrintNodes(out, enode->Parameters, ')');
|
PrintNodes(out, enode->Parameters);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprMemberAccess(FString &out, ZCC_TreeNode *node)
|
static void PrintExprMemberAccess(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprMemberAccess *enode = (ZCC_ExprMemberAccess *)node;
|
ZCC_ExprMemberAccess *enode = (ZCC_ExprMemberAccess *)node;
|
||||||
assert(enode->Operation == PEX_MemberAccess);
|
assert(enode->Operation == PEX_MemberAccess);
|
||||||
out << "(expr-member-access ";
|
out.Open("expr-member-access");
|
||||||
PrintNodes(out, enode->Left);
|
PrintNodes(out, enode->Left);
|
||||||
out.AppendFormat("'%s')", FName(enode->Right).GetChars());
|
out.AddName(enode->Right);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprUnary(FString &out, ZCC_TreeNode *node)
|
static void PrintExprUnary(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprUnary *enode = (ZCC_ExprUnary *)node;
|
ZCC_ExprUnary *enode = (ZCC_ExprUnary *)node;
|
||||||
out << "(expr-";
|
OpenExprType(out, enode->Operation);
|
||||||
PrintExprType(out, enode->Operation);
|
PrintNodes(out, enode->Operand);
|
||||||
PrintNodes(out, enode->Operand, ')');
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprBinary(FString &out, ZCC_TreeNode *node)
|
static void PrintExprBinary(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprBinary *enode = (ZCC_ExprBinary *)node;
|
ZCC_ExprBinary *enode = (ZCC_ExprBinary *)node;
|
||||||
out << "(expr-";
|
OpenExprType(out, enode->Operation);
|
||||||
PrintExprType(out, enode->Operation);
|
|
||||||
PrintNodes(out, enode->Left);
|
PrintNodes(out, enode->Left);
|
||||||
PrintNodes(out, enode->Right, ')');
|
PrintNodes(out, enode->Right);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExprTrinary(FString &out, ZCC_TreeNode *node)
|
static void PrintExprTrinary(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExprTrinary *enode = (ZCC_ExprTrinary *)node;
|
ZCC_ExprTrinary *enode = (ZCC_ExprTrinary *)node;
|
||||||
out << "(expr-";
|
OpenExprType(out, enode->Operation);
|
||||||
PrintExprType(out, enode->Operation);
|
|
||||||
PrintNodes(out, enode->Test);
|
PrintNodes(out, enode->Test);
|
||||||
PrintNodes(out, enode->Left);
|
PrintNodes(out, enode->Left);
|
||||||
PrintNodes(out, enode->Right, ')');
|
PrintNodes(out, enode->Right);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintFuncParam(FString &out, ZCC_TreeNode *node)
|
static void PrintFuncParam(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_FuncParm *pnode = (ZCC_FuncParm *)node;
|
ZCC_FuncParm *pnode = (ZCC_FuncParm *)node;
|
||||||
out.AppendFormat("(func-parm %s ", FName(pnode->Label).GetChars());;
|
out.Open("func-parm");
|
||||||
PrintNodes(out, pnode->Value, ')');
|
out.AddName(pnode->Label);
|
||||||
|
PrintNodes(out, pnode->Value);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintStatement(FString &out, ZCC_TreeNode *node)
|
static void PrintStatement(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(statement)";
|
out.Open("statement");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintCompoundStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintCompoundStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_CompoundStmt *snode = (ZCC_CompoundStmt *)node;
|
ZCC_CompoundStmt *snode = (ZCC_CompoundStmt *)node;
|
||||||
out << "(compound-stmt ";
|
out.Open("compound-stmt");
|
||||||
PrintNodes(out, snode->Content, ')');
|
PrintNodes(out, snode->Content);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintContinueStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintContinueStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(continue-stmt)";
|
out.Open("continue-stmt");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintBreakStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintBreakStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
out << "(break-stmt)";
|
out.Open("break-stmt");
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintReturnStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintReturnStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ReturnStmt *snode = (ZCC_ReturnStmt *)node;
|
ZCC_ReturnStmt *snode = (ZCC_ReturnStmt *)node;
|
||||||
out << "(return-stmt ";
|
out.Open("return-stmt");
|
||||||
PrintNodes(out, snode->Values, ')');
|
PrintNodes(out, snode->Values);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintExpressionStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintExpressionStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ExpressionStmt *snode = (ZCC_ExpressionStmt *)node;
|
ZCC_ExpressionStmt *snode = (ZCC_ExpressionStmt *)node;
|
||||||
out << "(expression-stmt ";
|
out.Open("expression-stmt");
|
||||||
PrintNodes(out, snode->Expression, ')');
|
PrintNodes(out, snode->Expression);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintIterationStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintIterationStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_IterationStmt *snode = (ZCC_IterationStmt *)node;
|
ZCC_IterationStmt *snode = (ZCC_IterationStmt *)node;
|
||||||
out << "(iteration-stmt ";
|
out.Open("iteration-stmt");
|
||||||
out << (snode->CheckAt == ZCC_IterationStmt::Start) ? "start " : "end ";
|
out.Add((snode->CheckAt == ZCC_IterationStmt::Start) ? "start" : "end");
|
||||||
PrintNodes(out, snode->LoopCondition);
|
PrintNodes(out, snode->LoopCondition);
|
||||||
PrintNodes(out, snode->LoopBumper);
|
PrintNodes(out, snode->LoopBumper);
|
||||||
PrintNodes(out, snode->LoopStatement, true);
|
PrintNodes(out, snode->LoopStatement);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintIfStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintIfStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_IfStmt *snode = (ZCC_IfStmt *)node;
|
ZCC_IfStmt *snode = (ZCC_IfStmt *)node;
|
||||||
out << "(if-stmt ";
|
out.Open("if-stmt");
|
||||||
PrintNodes(out, snode->Condition);
|
PrintNodes(out, snode->Condition);
|
||||||
PrintNodes(out, snode->TruePath);
|
PrintNodes(out, snode->TruePath);
|
||||||
PrintNodes(out, snode->FalsePath, ')');
|
PrintNodes(out, snode->FalsePath);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintSwitchStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintSwitchStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_SwitchStmt *snode = (ZCC_SwitchStmt *)node;
|
ZCC_SwitchStmt *snode = (ZCC_SwitchStmt *)node;
|
||||||
out << "(switch-stmt ";
|
out.Open("switch-stmt");
|
||||||
PrintNodes(out, snode->Condition);
|
PrintNodes(out, snode->Condition);
|
||||||
PrintNodes(out, snode->Content, ')');
|
PrintNodes(out, snode->Content);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintCaseStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintCaseStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_CaseStmt *snode = (ZCC_CaseStmt *)node;
|
ZCC_CaseStmt *snode = (ZCC_CaseStmt *)node;
|
||||||
out << "(case-stmt ";
|
out.Open("case-stmt");
|
||||||
PrintNodes(out, snode->Condition, ')');
|
PrintNodes(out, snode->Condition);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintAssignStmt(FString &out, ZCC_TreeNode *node)
|
static void BadAssignOp(FLispString &out, int op)
|
||||||
|
{
|
||||||
|
char buf[32];
|
||||||
|
size_t len = mysnprintf(buf, countof(buf), "assign-op-%d", op);
|
||||||
|
out.Add(buf, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void PrintAssignStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_AssignStmt *snode = (ZCC_AssignStmt *)node;
|
ZCC_AssignStmt *snode = (ZCC_AssignStmt *)node;
|
||||||
out << "(assign-stmt ";
|
out.Open("assign-stmt");
|
||||||
switch (snode->AssignOp)
|
switch (snode->AssignOp)
|
||||||
{
|
{
|
||||||
case ZCC_EQ: out << "= "; break;
|
case ZCC_EQ: out.AddChar('='); break;
|
||||||
case ZCC_MULEQ: out << "*= "; break;
|
case ZCC_MULEQ: out.Add("*=", 2); break;
|
||||||
case ZCC_DIVEQ: out << "/= "; break;
|
case ZCC_DIVEQ: out.Add("/=", 2); break;
|
||||||
case ZCC_MODEQ: out << "%= "; break;
|
case ZCC_MODEQ: out.Add("%=", 2); break;
|
||||||
case ZCC_ADDEQ: out << "+= "; break;
|
case ZCC_ADDEQ: out.Add("+=", 2); break;
|
||||||
case ZCC_SUBEQ: out << "-= "; break;
|
case ZCC_SUBEQ: out.Add("-=", 2); break;
|
||||||
case ZCC_LSHEQ: out << "<<= "; break;
|
case ZCC_LSHEQ: out.Add("<<=", 2); break;
|
||||||
case ZCC_RSHEQ: out << ">>= "; break;
|
case ZCC_RSHEQ: out.Add(">>=", 2); break;
|
||||||
case ZCC_ANDEQ: out << "&= "; break;
|
case ZCC_ANDEQ: out.Add("&=", 2); break;
|
||||||
case ZCC_OREQ: out << "|= "; break;
|
case ZCC_OREQ: out.Add("|=", 2); break;
|
||||||
case ZCC_XOREQ: out << "^= "; break;
|
case ZCC_XOREQ: out.Add("^=", 2); break;
|
||||||
default:
|
default: BadAssignOp(out, snode->AssignOp); break;
|
||||||
out.AppendFormat("assign-op-%d ", snode->AssignOp);
|
|
||||||
}
|
}
|
||||||
PrintNodes(out, snode->Dests);
|
PrintNodes(out, snode->Dests);
|
||||||
PrintNodes(out, snode->Sources, ')');
|
PrintNodes(out, snode->Sources);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintLocalVarStmt(FString &out, ZCC_TreeNode *node)
|
static void PrintLocalVarStmt(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_LocalVarStmt *snode = (ZCC_LocalVarStmt *)node;
|
ZCC_LocalVarStmt *snode = (ZCC_LocalVarStmt *)node;
|
||||||
out << "(local-var-stmt ";
|
out.Open("local-var-stmt");
|
||||||
PrintNodes(out, snode->Type);
|
PrintNodes(out, snode->Type);
|
||||||
PrintNodes(out, snode->Vars);
|
PrintNodes(out, snode->Vars);
|
||||||
PrintNodes(out, snode->Inits, ')');
|
PrintNodes(out, snode->Inits);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintFuncParamDecl(FString &out, ZCC_TreeNode *node)
|
static void PrintFuncParamDecl(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_FuncParamDecl *dnode = (ZCC_FuncParamDecl *)node;
|
ZCC_FuncParamDecl *dnode = (ZCC_FuncParamDecl *)node;
|
||||||
out << "(func-param-decl ";
|
out.Open("func-param-decl");
|
||||||
PrintNodes(out, dnode->Type);
|
PrintNodes(out, dnode->Type);
|
||||||
out.AppendFormat("%s %x)", FName(dnode->Name).GetChars(), dnode->Flags);
|
out.AddName(dnode->Name);
|
||||||
|
out.AddHex(dnode->Flags);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintConstantDef(FString &out, ZCC_TreeNode *node)
|
static void PrintConstantDef(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_ConstantDef *dnode = (ZCC_ConstantDef *)node;
|
ZCC_ConstantDef *dnode = (ZCC_ConstantDef *)node;
|
||||||
out.AppendFormat("(constant-def %s ", FName(dnode->Name).GetChars());
|
out.Open("constant-def");
|
||||||
PrintNodes(out, dnode->Value, ')');
|
out.AddName(dnode->Name);
|
||||||
|
PrintNodes(out, dnode->Value);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintDeclarator(FString &out, ZCC_TreeNode *node)
|
static void PrintDeclarator(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_Declarator *dnode = (ZCC_Declarator *)node;
|
ZCC_Declarator *dnode = (ZCC_Declarator *)node;
|
||||||
out << "(declarator ";
|
out.Open("declarator");
|
||||||
PrintNodes(out, dnode->Type);
|
PrintNodes(out, dnode->Type);
|
||||||
out.AppendFormat("%x)", dnode->Flags);
|
out.AddHex(dnode->Flags);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintVarDeclarator(FString &out, ZCC_TreeNode *node)
|
static void PrintVarDeclarator(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_VarDeclarator *dnode = (ZCC_VarDeclarator *)node;
|
ZCC_VarDeclarator *dnode = (ZCC_VarDeclarator *)node;
|
||||||
out << "\n(var-declarator ";
|
out.Break();
|
||||||
|
out.Open("var-declarator");
|
||||||
PrintNodes(out, dnode->Type);
|
PrintNodes(out, dnode->Type);
|
||||||
out.AppendFormat("%x ", dnode->Flags);
|
out.AddHex(dnode->Flags);
|
||||||
PrintNodes(out, dnode->Names, ')');
|
PrintNodes(out, dnode->Names);
|
||||||
out << '\n';
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrintFuncDeclarator(FString &out, ZCC_TreeNode *node)
|
static void PrintFuncDeclarator(FLispString &out, ZCC_TreeNode *node)
|
||||||
{
|
{
|
||||||
ZCC_FuncDeclarator *dnode = (ZCC_FuncDeclarator *)node;
|
ZCC_FuncDeclarator *dnode = (ZCC_FuncDeclarator *)node;
|
||||||
out << "\n(func-declarator ";
|
out.Break();
|
||||||
|
out.Open("func-declarator");
|
||||||
PrintNodes(out, dnode->Type);
|
PrintNodes(out, dnode->Type);
|
||||||
out.AppendFormat("%x %s ", dnode->Flags, FName(dnode->Name).GetChars());
|
out.AddHex(dnode->Flags);
|
||||||
PrintNodes(out, dnode->Params, ' ');
|
out.AddName(dnode->Name);
|
||||||
PrintNodes(out, dnode->Body, ')');
|
PrintNodes(out, dnode->Params);
|
||||||
out << '\n';
|
PrintNodes(out, dnode->Body);
|
||||||
|
out.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void (* const TreeNodePrinter[NUM_AST_NODE_TYPES])(FString &, ZCC_TreeNode *) =
|
void (* const TreeNodePrinter[NUM_AST_NODE_TYPES])(FLispString &, ZCC_TreeNode *) =
|
||||||
{
|
{
|
||||||
PrintIdentifier,
|
PrintIdentifier,
|
||||||
PrintClass,
|
PrintClass,
|
||||||
|
@ -607,7 +794,7 @@ void (* const TreeNodePrinter[NUM_AST_NODE_TYPES])(FString &, ZCC_TreeNode *) =
|
||||||
|
|
||||||
FString ZCC_PrintAST(ZCC_TreeNode *root)
|
FString ZCC_PrintAST(ZCC_TreeNode *root)
|
||||||
{
|
{
|
||||||
FString out;
|
FLispString out;
|
||||||
PrintNodes(out, root, '\0');
|
PrintNodes(out, root);
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue