115 lines
2.1 KiB
Plaintext

/*
Copyright 2013-present Barefoot Networks, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// to test direct meters
// #define USE_DIRECT_METER
header_type ethernet_t {
fields {
dstAddr : 48;
srcAddr : 48;
etherType : 16;
}
}
header_type intrinsic_metadata_t {
fields {
mcast_grp : 4;
egress_rid : 4;
mcast_hash : 16;
lf_field_list: 32;
}
}
header_type meta_t {
fields {
meter_tag : 32;
}
}
metadata meta_t meta;
parser start {
return parse_ethernet;
}
header ethernet_t ethernet;
metadata intrinsic_metadata_t intrinsic_metadata;
parser parse_ethernet {
extract(ethernet);
return ingress;
}
action _drop() {
drop();
}
action _nop() {
}
#ifdef USE_DIRECT_METER
meter my_meter {
type: packets; // or bytes
direct: m_table;
result: meta.meter_tag;
}
#else
meter my_meter {
type: packets; // or bytes
static: m_table;
instance_count: 16384;
}
#endif
action m_action(meter_idx) {
#ifdef USE_DIRECT_METER
// just a hack to ensure that meter_idx is not removed by compiler
modify_field(standard_metadata.egress_spec, meter_idx);
#else
execute_meter(my_meter, meter_idx, meta.meter_tag);
#endif
modify_field(standard_metadata.egress_spec, 1);
}
table m_table {
reads {
ethernet.srcAddr : exact;
}
actions {
m_action; _nop;
}
size : 16384;
}
table m_filter {
reads {
meta.meter_tag : exact;
}
actions {
_drop; _nop;
}
size: 16;
}
control ingress {
apply(m_table);
apply(m_filter);
}
control egress {
}