summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 01:02:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 01:02:44 +0300
commit2c5859a64a45c76d615d04e181ae713a001a2beb (patch)
treea60b497cb39c76d48152a4cbedc6a38fc3cc027a
parentdfae8dcdc38abcb15def61fcfacd9ae62fa4a8a0 (diff)
downloadparanucker-2c5859a64a45c76d615d04e181ae713a001a2beb.tar.gz
paranucker-2c5859a64a45c76d615d04e181ae713a001a2beb.tar.bz2
paranucker-2c5859a64a45c76d615d04e181ae713a001a2beb.tar.xz
paranucker-2c5859a64a45c76d615d04e181ae713a001a2beb.zip
Add parsing node TARGET_EXPR.
-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/expr/target_expr.h35
-rw-r--r--src/parsers/expr/target_expr.cpp44
6 files changed, 85 insertions, 1 deletions
diff --git a/src/Makefile.files b/src/Makefile.files
index 3c2a378..f55beb9 100644
--- a/src/Makefile.files
+++ b/src/Makefile.files
@@ -121,4 +121,6 @@ SRC = analysis/analysis.cpp \
nodes/type/nullptr_type.h \
parsers/type/nullptr_type.cpp \
nodes/type/record_type.h \
- parsers/type/record_type.cpp \ No newline at end of file
+ parsers/type/record_type.cpp \
+ nodes/expr/target_expr.h \
+ parsers/expr/target_expr.cpp \ No newline at end of file
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index d7eeaa2..62e21d1 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -42,3 +42,4 @@
#include "nodes/type/boolean_type.h"
#include "nodes/type/nullptr_type.h"
#include "nodes/type/record_type.h"
+#include "nodes/expr/target_expr.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index 8393cc8..9667cd7 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -41,3 +41,4 @@ handleNodeType(POINTER_PLUS_EXPR, PointerPlusExpr)
handleNodeType(BOOLEAN_TYPE, BooleanType)
handleNodeType(NULLPTR_TYPE, NullPtrType)
handleNodeType(RECORD_TYPE, RecordType)
+handleNodeType(TARGET_EXPR, TargetExpr)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index 3dfc119..ccd51c4 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -41,3 +41,4 @@ parserDefine(PointerPlusExpr);
parserDefine(BooleanType);
parserDefine(NullPtrType);
parserDefine(RecordType);
+parserDefine(TargetExpr);
diff --git a/src/nodes/expr/target_expr.h b/src/nodes/expr/target_expr.h
new file mode 100644
index 0000000..c30968d
--- /dev/null
+++ b/src/nodes/expr/target_expr.h
@@ -0,0 +1,35 @@
+/*
+ * 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_EXPR_TARGETEXPRNODE_H
+#define NODES_EXPR_TARGETEXPRNODE_H
+
+#include "nodes/base/expr.h"
+
+#include <string>
+
+struct TargetExprNode : public ExprNode
+{
+ TargetExprNode() :
+ ExprNode()
+ {
+ }
+};
+
+#endif // NODES_EXPR_TARGETEXPRNODE_H
diff --git a/src/parsers/expr/target_expr.cpp b/src/parsers/expr/target_expr.cpp
new file mode 100644
index 0000000..7b4fb58
--- /dev/null
+++ b/src/parsers/expr/target_expr.cpp
@@ -0,0 +1,44 @@
+/*
+ * 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(TargetExpr);
+
+#include "parsers/base/expr.h"
+
+#include "nodes/expr/target_expr.h"
+
+namespace Generic
+{
+
+void parseTargetExprNode(TargetExprNode *node)
+{
+ fillType(node);
+ fillExprLocation(node);
+ Log::dump(node);
+
+ fillExprOperands(node);
+
+ // args 0 VAR_DECL for temp var
+ // args 1 initializer
+ // args 2 cleanup (destructor)
+}
+
+}