P4C
The P4 Compiler
Loading...
Searching...
No Matches
inline_control_flow.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef FRONTENDS_P4_14_INLINE_CONTROL_FLOW_H_
18#define FRONTENDS_P4_14_INLINE_CONTROL_FLOW_H_
19
20#include "frontends/p4/evaluator/evaluator.h"
21#include "ir/ir.h"
22
24 public:
25 explicit InlineControlFlow(const IR::V1Program *gl) : global(gl) {
26 setName("InlineControlFlow");
27 }
28
29 private:
30 const IR::V1Program *global;
31
32 const IR::Node *preorder(IR::Apply *a) override {
33 if (global && !global->get<IR::V1Table>(a->name))
34 error("%s: No table named %s", a->srcInfo, a->name);
35 return a;
36 }
37 const IR::Node *preorder(IR::Primitive *p) override {
38 if (auto cf = global ? global->get<IR::V1Control>(p->name) : 0) {
39 const IR::V1Control *control;
40 if (auto act = findContext<IR::ActionFunction>())
41 error("%s: Trying to call control flow %s in action %s", p->srcInfo, p->name,
42 act->name);
43 else if (auto table = findContext<IR::V1Table>())
44 error("%s: Trying to call control flow %s in table %s", p->srcInfo, p->name,
45 table->name);
46 else if ((control = findContext<IR::V1Control>()) && control->name == p->name)
47 error("%s: Recursive call to control flow %s", p->srcInfo, p->name);
48 else
49 return cf->code;
50 }
51 return p;
52 }
53};
54
55#endif /* FRONTENDS_P4_14_INLINE_CONTROL_FLOW_H_ */
Definition node.h:93
Definition inline_control_flow.h:23
Definition visitor.h:420