P4C
The P4 Compiler
Loading...
Searching...
No Matches
substituteParameters.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/* -*-C++-*- */
18
19#ifndef EVALUATOR_SUBSTITUTEPARAMETERS_H_
20#define EVALUATOR_SUBSTITUTEPARAMETERS_H_
21
22#include "frontends/common/resolveReferences/resolveReferences.h"
23#include "frontends/p4/parameterSubstitution.h"
24#include "frontends/p4/typeChecking/typeSubstitutionVisitor.h"
25#include "ir/ir.h"
26
27namespace P4 {
28
30 protected:
31 const DeclarationLookup *refMap; // input
32 const ParameterSubstitution *subst; // input
33 public:
35 const TypeVariableSubstitution *tvs)
36 : TypeVariableSubstitutionVisitor(tvs), refMap(refMap), subst(subst) {
37 CHECK_NULL(subst);
38 CHECK_NULL(tvs);
39 visitDagOnce = true;
40 setName("SubstituteParameters");
41 LOG1("Will substitute " << std::endl << subst << bindings);
42 }
43 using TypeVariableSubstitutionVisitor::postorder;
44 const IR::Node *postorder(IR::PathExpression *expr) override;
45 const IR::Node *postorder(IR::Type_Name *type) override;
46 const IR::Node *postorder(IR::This *t) override;
47};
48
49} // namespace P4
50
51#endif /* EVALUATOR_SUBSTITUTEPARAMETERS_H_ */
Definition referenceMap.h:57
Definition node.h:94
Definition parameterSubstitution.h:30
Visitor mixin for looking up names in enclosing scopes from the Visitor::Context.
Definition resolveReferences.h:35
Definition substituteParameters.h:29
Definition typeSubstitution.h:73
Definition typeSubstitutionVisitor.h:45
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24