From e6fef2dabcab47f08176828aa753de673bd27b11 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 13 Jun 2015 17:04:00 +0300 Subject: Add parsing node STRING_CST. --- src/Makefile.files | 4 +++- src/includes/nodeincludes.h | 1 + src/includes/nodeshandling.inc | 1 + src/includes/parserdefines.inc | 1 + src/nodes/cst/string_cst.h | 38 ++++++++++++++++++++++++++++++++++++++ src/parsers/cst/string_cst.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 6 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 src/nodes/cst/string_cst.h create mode 100644 src/parsers/cst/string_cst.cpp diff --git a/src/Makefile.files b/src/Makefile.files index a726004..44390ac 100644 --- a/src/Makefile.files +++ b/src/Makefile.files @@ -219,4 +219,6 @@ SRC = analysis/analysis.cpp \ nodes/expr/label_expr.h \ parsers/expr/label_expr.cpp \ nodes/expr/tryfinally_expr.h \ - parsers/expr/tryfinally_expr.cpp \ No newline at end of file + parsers/expr/tryfinally_expr.cpp \ + nodes/cst/string_cst.h \ + parsers/cst/string_cst.cpp \ No newline at end of file diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h index fad2f5b..bec2720 100644 --- a/src/includes/nodeincludes.h +++ b/src/includes/nodeincludes.h @@ -89,3 +89,4 @@ #include "nodes/stmt/for_stmt.h" #include "nodes/expr/label_expr.h" #include "nodes/expr/tryfinally_expr.h" +#include "nodes/cst/string_cst.h" diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc index 04ea110..954fa09 100644 --- a/src/includes/nodeshandling.inc +++ b/src/includes/nodeshandling.inc @@ -88,3 +88,4 @@ handleNodeType(NEGATE_EXPR, NegateExpr) handleNodeType(FOR_STMT, ForStmt) handleNodeType(LABEL_EXPR, LabelExpr) handleNodeType(TRY_FINALLY_EXPR, TryFinallyExpr) +handleNodeType(STRING_CST, StringCst) diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc index c30837b..509f07f 100644 --- a/src/includes/parserdefines.inc +++ b/src/includes/parserdefines.inc @@ -88,3 +88,4 @@ parserDefine(NegateExpr); parserDefine(ForStmt); parserDefine(LabelExpr); parserDefine(TryFinallyExpr); +parserDefine(StringCst); diff --git a/src/nodes/cst/string_cst.h b/src/nodes/cst/string_cst.h new file mode 100644 index 0000000..87bddf4 --- /dev/null +++ b/src/nodes/cst/string_cst.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2015 Andrei Karas + * + * This file is part of AstDumper. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef NODES_CST_STRINGCSTNODE_H +#define NODES_CST_STRINGCSTNODE_H + +#include "nodes/base/cst.h" + +#include + +struct StringCstNode : public CstNode +{ + StringCstNode() : + CstNode(), + stringLength(0) + { + } + + int stringLength; +}; + +#endif // NODES_CST_STRINGCSTNODE_H diff --git a/src/parsers/cst/string_cst.cpp b/src/parsers/cst/string_cst.cpp new file mode 100644 index 0000000..e4bcb58 --- /dev/null +++ b/src/parsers/cst/string_cst.cpp @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2015 Andrei Karas + * + * This file is part of AstDumper. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "includes/parserincludes.h" + +parserDefine(StringCst); + + +#include "nodes/cst/string_cst.h" + +namespace Generic +{ + +void parseStringCstNode(StringCstNode *node) +{ + fillType(node); + node->label = TREE_STRING_POINTER(node->gccNode); + Log::dump(node); + + setPrintField(node, TREE_STRING_LENGTH, stringLength); +} + +} -- cgit v1.2.3-70-g09d2