17#ifndef BACKENDS_BMV2_PSA_SWITCH_PSASWITCH_H_
18#define BACKENDS_BMV2_PSA_SWITCH_PSASWITCH_H_
20#include "backends/bmv2/portable_common/portable.h"
21#include "backends/common/psaProgramStructure.h"
31 void modelError(
const char *format,
const cstring field) {
32 ::error(ErrorType::ERR_MODEL,
33 (
cstring(format) +
"\nInvalid metadata parameter value for PSA").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", param->toString());
41 jsn->emplace(
"type",
"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", repr);
48 }
else if (fieldName ==
"PACKETS") {
49 cstring repr = BMV2::stringRepr(1, ROUNDUP(bitwidth, 32));
50 jsn->emplace(
"value", repr);
51 }
else if (fieldName ==
"PACKETS_AND_BYTES") {
52 cstring repr = BMV2::stringRepr(2, ROUNDUP(bitwidth, 32));
53 jsn->emplace(
"value", repr);
55 modelError(
"%1%: Exptected a PSA_CounterType_t", fieldName);
64 jsn->emplace(
"type",
"field");
65 auto a = mkArrayField(jsn,
"value"_cs);
66 a->append(ptName.exceptLast(2));
92 const IR::ToplevelBlock *toplevel;
98 const IR::ToplevelBlock *toplevel,
JsonObjects *json,
100 : refMap(refMap), typeMap(typeMap), toplevel(toplevel), json(json), structure(structure) {
103 CHECK_NULL(toplevel);
105 CHECK_NULL(structure);
107 CHECK_NULL(codeGenerator);
110 void postorder(UNUSED
const IR::P4Program *program)
override {
111 cstring scalarsName =
"scalars"_cs;
114 auto ctxt =
new ConversionContext(refMap, typeMap, toplevel, structure, conv, json);
115 codeGenerator->create(ctxt, structure);
123 void convert(
const IR::ToplevelBlock *tlb)
override;
125 P4::ConvertEnums::EnumMapping *enumMap)
126 :
Backend(options, refMap, typeMap, enumMap), options(options) {}
129EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(Hash)
130EXTERN_CONVERTER_W_OBJECT_AND_INSTANCE(InternetChecksum)
131EXTERN_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 psaSwitch.h:88
Definition expression.h:51
Definition JsonObjects.h:27
Definition psaSwitch.h:77
Definition psaSwitch.h:119
Definition psaSwitch.h:25
Definition portableProgramStructure.h:29
Definition backends/common/programStructure.h:32
Definition psaProgramStructure.h:32
static bool isCounterMetadata(cstring ptName)
Definition psaProgramStructure.h:43
static bool isStandardMetadata(cstring ptName)
Definition psaProgramStructure.h:47
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