P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
has_side_effects.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 MIDEND_HAS_SIDE_EFFECTS_H_
18#define MIDEND_HAS_SIDE_EFFECTS_H_
19
20#include "frontends/common/resolveReferences/referenceMap.h"
21#include "frontends/p4/methodInstance.h"
22#include "ir/ir.h"
23
24/* Should this be a method on IR::Expression? Maybe after the refMap/typeMap go away */
25
26class hasSideEffects : public Inspector {
27 P4::ReferenceMap *refMap = nullptr;
28 P4::TypeMap *typeMap = nullptr;
29
30 bool result = false;
31 bool preorder(const IR::AssignmentStatement *) override {
32 result = true;
33 return false;
34 }
35 bool preorder(const IR::MethodCallExpression *mc) override {
36 if (result) {
37 return false;
38 }
39 /* assume has side effects if we can't look it up */
40 if (refMap && typeMap) {
41 auto *mi = P4::MethodInstance::resolve(mc, refMap, typeMap, true);
42 if (auto *bm = mi->to<P4::BuiltInMethod>()) {
43 if (bm->name == "isValid") {
44 return true;
45 }
46 }
47 if (auto *em = mi->to<P4::ExternMethod>()) {
48 if (em->method->getAnnotation(IR::Annotation::noSideEffectsAnnotation)) return true;
49 }
50 }
51 result = true;
52 return false;
53 }
54
55 bool preorder(const IR::Primitive *) override {
56 result = true;
57 return false;
58 }
59 bool preorder(const IR::Expression *) override { return !result; }
60
61 public:
62 explicit hasSideEffects(const IR::Expression *e) { e->apply(*this); }
63 hasSideEffects(P4::ReferenceMap *rm, P4::TypeMap *tm) : refMap(rm), typeMap(tm) {}
64 hasSideEffects(P4::ReferenceMap *rm, P4::TypeMap *tm, const IR::Expression *e)
65 : refMap(rm), typeMap(tm) {
66 e->apply(*this);
67 }
68 bool operator()(const IR::Expression *e) {
69 result = false;
70 e->apply(*this);
71 return result;
72 }
73 explicit operator bool() { return result; }
74};
75
76#endif /* MIDEND_HAS_SIDE_EFFECTS_H_ */
Definition visitor.h:396
Definition methodInstance.h:254
Definition methodInstance.h:149
static MethodInstance * resolve(const IR::MethodCallExpression *mce, const DeclarationLookup *refMap, TypeMap *typeMap, bool useExpressionType=false, const Visitor::Context *ctxt=nullptr, bool incomplete=false)
Definition methodInstance.cpp:27
Class used to encode maps from paths to declarations.
Definition referenceMap.h:66
Definition typeMap.h:41
Definition has_side_effects.h:26