P4C
The P4 Compiler
Loading...
Searching...
No Matches
reassociation.h
1/*
2Copyright 2020 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 P4_REASSOCIATION_H_
18#define P4_REASSOCIATION_H_
19
20#include "ir/ir.h"
21#include "ir/visitor.h"
22
23namespace P4 {
24
25using namespace literals;
26
30class Reassociation final : public Transform {
31 public:
33 visitDagOnce = true;
34 setName("Reassociation");
35 }
36 using Transform::postorder;
37
38 const IR::Node *reassociate(IR::Operation_Binary *root);
39
40 const IR::Node *postorder(IR::Add *expr) override { return reassociate(expr); }
41 const IR::Node *postorder(IR::Mul *expr) override { return reassociate(expr); }
42 const IR::Node *postorder(IR::BOr *expr) override { return reassociate(expr); }
43 const IR::Node *postorder(IR::BAnd *expr) override { return reassociate(expr); }
44 const IR::Node *postorder(IR::BXor *expr) override { return reassociate(expr); }
45 const IR::BlockStatement *preorder(IR::BlockStatement *bs) override {
46 if (bs->annotations->getSingle("disable_optimization"_cs)) prune();
47 return bs;
48 }
49};
50
51} // namespace P4
52
53#endif /* P4_REASSOCIATION_H_ */
Definition node.h:95
Definition reassociation.h:30
Definition visitor.h:424
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24