ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Node.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef __NEST_STMT_NODE_H__
18#define __NEST_STMT_NODE_H__
19
20#include "nest/stmt/Macro.h"
21#include "nest/stmt/Forward.h"
22#include "nest/stmt/Visitor.h"
23
24#include <stdexcept>
25
26namespace nest
27{
28namespace stmt
29{
30
31struct Node
32{
33 virtual ~Node() = default;
34
35#define STMT(Tag) \
36 virtual const NEST_STMT_CLASS_NAME(Tag) * NEST_STMT_CAST_METHOD_NAME(Tag)(void) const \
37 { \
38 return nullptr; \
39 }
40#include "nest/stmt/Node.def"
41#undef STMT
42
43 template <typename T> T accept(Visitor<T> *v)
44 {
45#define STMT(Tag) \
46 if (auto s = NEST_STMT_CAST_METHOD_NAME(Tag)()) \
47 { \
48 return v->visit(s); \
49 }
50#include "nest/stmt/Node.def"
51#undef STMT
52
53 throw std::runtime_error{"unreachable"};
54 }
55
56 template <typename T> T accept(Visitor<T> &v) { return accept(&v); }
57};
58
59} // namespace stmt
60} // namespace nest
61
62#endif // __NEST_STMT_NODE_H__
Definition Block.h:27
T accept(Visitor< T > *v)
Definition Node.h:43
virtual ~Node()=default
T accept(Visitor< T > &v)
Definition Node.h:56