P4C
The P4 Compiler
Loading...
Searching...
No Matches
pnaNic.h
1/*
2Copyright 2024 Marvell Technology, 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 BACKENDS_BMV2_PNA_NIC_PNANIC_H_
18#define BACKENDS_BMV2_PNA_NIC_PNANIC_H_
19
20#include "backends/bmv2/portable_common/portable.h"
21#include "pnaProgramStructure.h"
22
23namespace BMV2 {
24
26 public:
28 P4::ProgramStructure *structure, cstring scalarsName)
29 : BMV2::ExpressionConverter(refMap, typeMap, structure, scalarsName) {}
30
31 void modelError(const char *format, const cstring field) {
32 ::error(ErrorType::ERR_MODEL,
33 (cstring(format) + "\nInvalid metadata parameter value for PNA").c_str(), field);
34 }
35
36 Util::IJson *convertParam(UNUSED const IR::Parameter *param, cstring fieldName) override {
37 cstring ptName = param->type->toString();
38 if (PnaProgramStructure::isCounterMetadata(ptName)) { // check if its counter metadata
39 auto jsn = new Util::JsonObject();
40 jsn->emplace("name"_cs, param->toString());
41 jsn->emplace("type"_cs, "hexstr");
42 auto bitwidth = param->type->width_bits();
43
44 // encode the counter type from enum -> int
45 if (fieldName == "BYTES") {
46 cstring repr = BMV2::stringRepr(0, ROUNDUP(bitwidth, 32));
47 jsn->emplace("value"_cs, repr);
48 } else if (fieldName == "PACKETS") {
49 cstring repr = BMV2::stringRepr(1, ROUNDUP(bitwidth, 32));
50 jsn->emplace("value"_cs, repr);
51 } else if (fieldName == "PACKETS_AND_BYTES") {
52 cstring repr = BMV2::stringRepr(2, ROUNDUP(bitwidth, 32));
53 jsn->emplace("value"_cs, repr);
54 } else {
55 modelError("%1%: Exptected a PNA_CounterType_t", fieldName);
56 return nullptr;
57 }
58 return jsn;
59 } else if (PnaProgramStructure::isStandardMetadata(ptName)) { // check if its pna metadata
60 auto jsn = new Util::JsonObject();
61
62 // encode the metadata type and field in json
63 jsn->emplace("type"_cs, "field");
64 auto a = mkArrayField(jsn, "value"_cs);
65 a->append(ptName.exceptLast(2));
66 a->append(fieldName);
67 return jsn;
68 } else {
69 // not a special type
70 return nullptr;
71 }
72 return nullptr;
73 }
74};
75
77 public:
78 // PnaCodeGenerator(P4::ReferenceMap *refMap, P4::TypeMap *typeMap)
79 // : PortableCodeGenerator(refMap, typeMap) {}
80
81 void create(ConversionContext *ctxt, P4::PortableProgramStructure *structure);
82 void createParsers(ConversionContext *ctxt, P4::PortableProgramStructure *structure);
83 void createControls(ConversionContext *ctxt, P4::PortableProgramStructure *structure);
84 void createDeparsers(ConversionContext *ctxt, P4::PortableProgramStructure *structure);
85};
86
88 public:
89 P4::ReferenceMap *refMap;
90 P4::TypeMap *typeMap;
91 const IR::ToplevelBlock *toplevel;
92 JsonObjects *json;
93 PnaProgramStructure *structure;
94 PnaCodeGenerator *codeGenerator;
95
97 const IR::ToplevelBlock *toplevel, JsonObjects *json,
98 PnaProgramStructure *structure)
99 : refMap(refMap), typeMap(typeMap), toplevel(toplevel), json(json), structure(structure) {
100 CHECK_NULL(refMap);
101 CHECK_NULL(typeMap);
102 CHECK_NULL(toplevel);
103 CHECK_NULL(json);
104 CHECK_NULL(structure);
105 codeGenerator = new PnaCodeGenerator();
106 CHECK_NULL(codeGenerator);
107 }
108
109 void postorder(UNUSED const IR::P4Program *program) override {
110 cstring scalarsName = "scalars"_cs;
111 // This visitor is used in multiple passes to convert expression to json
112 auto conv = new PnaNicExpressionConverter(refMap, typeMap, structure, scalarsName);
113 auto ctxt = new ConversionContext(refMap, typeMap, toplevel, structure, conv, json);
114 codeGenerator->create(ctxt, structure);
115 }
116};
117
118class PnaNicBackend : public Backend {
119 BMV2Options &options;
120
121 public:
122 void convert(const IR::ToplevelBlock *tlb) override;
123 PnaNicBackend(BMV2Options &options, P4::ReferenceMap *refMap, P4::TypeMap *typeMap,
124 P4::ConvertEnums::EnumMapping *enumMap)
125 : Backend(options, refMap, typeMap, enumMap), options(options) {}
126};
127
128EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(Hash)
129EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(InternetChecksum)
130EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(Register)
131
132} // namespace BMV2
133
134#endif /* BACKENDS_BMV2_PNA_NIC_PNANIC_H_ */
Definition backends/bmv2/common/options.h:26
Backend is a the base class for SimpleSwitchBackend and PortableSwitchBackend.
Definition bmv2/common/backend.h:59
Definition pnaNic.h:87
Definition expression.h:51
Definition JsonObjects.h:27
Definition pnaNic.h:76
Definition pnaNic.h:118
Definition pnaNic.h:25
Definition bmv2/pna_nic/pnaProgramStructure.h:31
static bool isCounterMetadata(cstring ptName)
Definition bmv2/pna_nic/pnaProgramStructure.h:42
static bool isStandardMetadata(cstring ptName)
Definition bmv2/pna_nic/pnaProgramStructure.h:46
Definition portable.h:46
Definition visitor.h:396
Definition portableProgramStructure.h:29
Definition backends/common/programStructure.h:32
Class used to encode maps from paths to declarations.
Definition referenceMap.h:66
Definition typeMap.h:41
Definition json.h:40
Definition json.h:164
Definition cstring.h:80
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition action.cpp:21
Definition helpers.h:297