summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 17:04:00 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 17:04:00 +0300
commite6fef2dabcab47f08176828aa753de673bd27b11 (patch)
tree8216398d30d95928c8133c84baea7b763b613390
parent29888f1893c82c29d6aa1e5045625cdf7a73ba18 (diff)
downloadparanucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.gz
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.bz2
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.xz
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.zip
Add parsing node STRING_CST.
-rw-r--r--src/Makefile.files4
-rw-r--r--src/includes/nodeincludes.h1
-rw-r--r--src/includes/nodeshandling.inc1
-rw-r--r--src/includes/parserdefines.inc1
-rw-r--r--src/nodes/cst/string_cst.h38
-rw-r--r--src/parsers/cst/string_cst.cpp39
6 files changed, 83 insertions, 1 deletions
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 <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NODES_CST_STRINGCSTNODE_H
+#define NODES_CST_STRINGCSTNODE_H
+
+#include "nodes/base/cst.h"
+
+#include <string>
+
+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 <http://www.gnu.org/licenses/>.
+ */
+
+#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);
+}
+
+}