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/referenceMap.h"
23#include "frontends/common/resolveReferences/resolveReferences.h"
24#include "frontends/p4/parameterSubstitution.h"
25#include "frontends/p4/typeChecking/typeSubstitutionVisitor.h"
26#include "ir/ir.h"
27
28namespace P4 {
29
31 protected:
32 const DeclarationLookup *refMap; // input
33 const ParameterSubstitution *subst; // input
34 public:
36 const TypeVariableSubstitution *tvs)
37 : TypeVariableSubstitutionVisitor(tvs), refMap(refMap), subst(subst) {
38 CHECK_NULL(subst);
39 CHECK_NULL(tvs);
40 visitDagOnce = true;
41 setName("SubstituteParameters");
42 LOG1("Will substitute " << std::endl << subst << bindings);
43 }
44 using TypeVariableSubstitutionVisitor::postorder;
45 const IR::Node *postorder(IR::PathExpression *expr) override;
46 const IR::Node *postorder(IR::Type_Name *type) override;
47 const IR::Node *postorder(IR::This *t) override;
48};
49
50} // namespace P4
51
52#endif /* EVALUATOR_SUBSTITUTEPARAMETERS_H_ */
Definition referenceMap.h:57
Definition node.h:95
Definition parameterSubstitution.h:30
Visitor mixin for looking up names in enclosing scopes from the Visitor::Context.
Definition resolveReferences.h:33
Definition substituteParameters.h:30
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