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/p4/parameterSubstitution.h"
24#include "frontends/p4/typeChecking/typeSubstitutionVisitor.h"
25#include "ir/ir.h"
26
27namespace P4 {
28
30 protected:
31 // When a PathExpression is cloned, it is added to the RefMap.
32 // It is set to point to the same declaration as the original path.
33 // But running this pass may change some declaration nodes - so
34 // in general the refMap won't be up-to-date at the end.
35 ReferenceMap *refMap; // input and output
36 const ParameterSubstitution *subst; // input
37 public:
39 const TypeVariableSubstitution *tvs)
40 : TypeVariableSubstitutionVisitor(tvs), refMap(refMap), subst(subst) {
41 CHECK_NULL(refMap);
42 CHECK_NULL(subst);
43 CHECK_NULL(tvs);
44 visitDagOnce = true;
45 setName("SubstituteParameters");
46 LOG1("Will substitute " << std::endl << subst << bindings);
47 }
48 using TypeVariableSubstitutionVisitor::postorder;
49 const IR::Node *postorder(IR::PathExpression *expr) override;
50 const IR::Node *postorder(IR::Type_Name *type) override;
51 const IR::Node *postorder(IR::This *t) override;
52};
53
54} // namespace P4
55
56#endif /* EVALUATOR_SUBSTITUTEPARAMETERS_H_ */
Definition parameterSubstitution.h:31
Class used to encode maps from paths to declarations.
Definition referenceMap.h:66
Definition substituteParameters.h:29
Definition typeSubstitution.h:73
Definition typeSubstitutionVisitor.h:45
Definition applyOptionsPragmas.cpp:24