diff options
-rw-r--r-- | cpp.cpp | 8 | ||||
-rw-r--r-- | cpp.h | 6 |
2 files changed, 11 insertions, 3 deletions
@@ -405,7 +405,8 @@ std::unordered_map<std::string, std::function<std::any(index_t)>> CPP::getNodeEv FlowGraph::Data value0 {std::any_cast<FlowGraph::Data>(getValue(index, 0))}; FlowGraph::Data value1 {std::any_cast<FlowGraph::Data>(getValue(index, 1))}; - return std::make_shared<FlowGraph::BinaryOperation>(FlowGraph::BinaryOperationType::Add, destination, value0, value1); + std::shared_ptr<FlowGraph::Node> node {std::make_shared<FlowGraph::BinaryOperation>(FlowGraph::BinaryOperationType::Add, destination, value0, value1)}; + return node; } throw std::runtime_error("ICE: Unsupported childs: "s + ruleString(index)); // TODO } @@ -499,8 +500,11 @@ std::unordered_map<std::string, std::function<std::any(index_t)>> CPP::getNodeEv }, { "expression", [&](index_t index) -> std::any { - if (childTypesOfNodeMatch(index, {"assignment-expression", ""}) && !getValue(index, 1).has_value()) + if (childTypesOfNodeMatch(index, {"assignment-expression", ""}) && !getValue(index, 1).has_value()) { + std::shared_ptr<FlowGraph::Node> node {std::any_cast<std::shared_ptr<FlowGraph::Node>>(getValue(index, 0))}; + mCPPContext.graph.push_back(node); return getValue(index, 0); + } throw std::runtime_error("ICE: Unsupported childs: "s + ruleString(index)); // TODO } }, @@ -1,5 +1,6 @@ #pragma once +#include "flowgraph/graph.h" #include "grammer.h" #include "minicc.h" @@ -13,6 +14,8 @@ struct CPPContext { // global variable definitions // functions declarations // functions definitions + + FlowGraph::Graph graph; }; class CPP { @@ -62,7 +65,8 @@ private: std::unordered_map<std::string, std::function<std::any(index_t)>> getNodeEvalMap(); std::unordered_map<std::string, std::function<std::any(index_t)>> node_eval_map; - CPPContext mContext; + CPPContext mCPPContext; + void getValueOfToken(index_t index); void getValueOfNode(index_t index); void visitRecursive(index_t node_id); |