17#ifndef BACKENDS_BMV2_PNA_NIC_PNANIC_H_
18#define BACKENDS_BMV2_PNA_NIC_PNANIC_H_
20#include "backends/bmv2/portable_common/portable.h"
21#include "pnaProgramStructure.h"
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);
36 Util::IJson *convertParam(UNUSED
const IR::Parameter *param,
cstring fieldName)
override {
37 cstring ptName = param->type->toString();
40 jsn->emplace(
"name"_cs, param->toString());
41 jsn->emplace(
"type"_cs,
"hexstr");
42 auto bitwidth = param->type->width_bits();
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);
55 modelError(
"%1%: Exptected a PNA_CounterType_t", fieldName);
63 jsn->emplace(
"type"_cs,
"field");
64 auto a = mkArrayField(jsn,
"value"_cs);
65 a->append(ptName.exceptLast(2));
91 const IR::ToplevelBlock *toplevel;
97 const IR::ToplevelBlock *toplevel,
JsonObjects *json,
99 : refMap(refMap), typeMap(typeMap), toplevel(toplevel), json(json), structure(structure) {
102 CHECK_NULL(toplevel);
104 CHECK_NULL(structure);
106 CHECK_NULL(codeGenerator);
109 void postorder(UNUSED
const IR::P4Program *program)
override {
110 cstring scalarsName =
"scalars"_cs;
113 auto ctxt =
new ConversionContext(refMap, typeMap, toplevel, structure, conv, json);
114 codeGenerator->create(ctxt, structure);
122 void convert(
const IR::ToplevelBlock *tlb)
override;
124 P4::ConvertEnums::EnumMapping *enumMap)
125 :
Backend(options, refMap, typeMap, enumMap), options(options) {}
128EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(Hash)
129EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(InternetChecksum)
130EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(Register)
Definition backends/bmv2/common/options.h:26
Backend is a the base class for SimpleSwitchBackend and PortableSwitchBackend.
Definition bmv2/common/backend.h:59
Definition expression.h:51
Definition JsonObjects.h:27
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 portableProgramStructure.h:29
Definition backends/common/programStructure.h:32
Class used to encode maps from paths to declarations.
Definition referenceMap.h:66
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition action.cpp:21