P4C
The P4 Compiler
Loading...
Searching...
No Matches
simplifyParsers.h
1/*
2Copyright 2016 VMware, 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_SIMPLIFYPARSERS_H_
18#define FRONTENDS_P4_SIMPLIFYPARSERS_H_
19
20#include "frontends/common/resolveReferences/resolveReferences.h"
21#include "frontends/p4/parserCallGraph.h"
22#include "ir/ir.h"
23#include "ir/pass_manager.h"
24
25namespace P4 {
26
37 ReferenceMap *refMap;
38
39 public:
40 explicit DoSimplifyParsers(ReferenceMap *refMap) : refMap(refMap) {
41 CHECK_NULL(refMap);
42 setName("DoSimplifyParsers");
43 }
44
45 const IR::Node *preorder(IR::P4Parser *parser) override;
46 const IR::Node *preorder(IR::P4Control *control) override {
47 prune();
48 return control;
49 }
50};
51
53 public:
54 explicit SimplifyParsers(ReferenceMap *refMap) {
55 passes.push_back(new ResolveReferences(refMap));
56 passes.push_back(new DoSimplifyParsers(refMap));
57 setName("SimplifyParsers");
58 }
59};
60
61} // namespace P4
62
63#endif /* FRONTENDS_P4_SIMPLIFYPARSERS_H_ */
Remove unreachable parser states, and collapse simple chains of states.
Definition simplifyParsers.h:36
Definition node.h:95
Definition pass_manager.h:40
Class used to encode maps from paths to declarations.
Definition referenceMap.h:66
Definition resolveReferences.h:121
Definition simplifyParsers.h:52
Definition visitor.h:424
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24