P4C
The P4 Compiler
Loading...
Searching...
No Matches
coreLibrary.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#ifndef FRONTENDS_P4_CORELIBRARY_H_
18#define FRONTENDS_P4_CORELIBRARY_H_
19
20#include "frontends/common/model.h"
21#include "ir/ir.h"
22#include "lib/cstring.h"
23
24namespace P4 {
25enum class StandardExceptions {
26 NoError,
27 PacketTooShort,
28 NoMatch,
29 StackOutOfBounds,
30 HeaderTooShort,
31 ParserTimeout,
32};
33} // namespace P4
34
35inline std::ostream &operator<<(std::ostream &out, P4::StandardExceptions e) {
36 switch (e) {
37 case P4::StandardExceptions::NoError:
38 out << "NoError";
39 break;
40 case P4::StandardExceptions::PacketTooShort:
41 out << "PacketTooShort";
42 break;
43 case P4::StandardExceptions::NoMatch:
44 out << "NoMatch";
45 break;
46 case P4::StandardExceptions::StackOutOfBounds:
47 out << "StackOutOfBounds";
48 break;
49 case P4::StandardExceptions::HeaderTooShort:
50 out << "HeaderTooShort";
51 break;
52 case P4::StandardExceptions::ParserTimeout:
53 out << "ParserTimeout";
54 break;
55 default:
56 BUG("Unhandled case");
57 }
58 return out;
59}
60
61namespace P4 {
62
63using namespace literals;
64
66 public:
67 PacketIn()
68 : Extern_Model("packet_in"_cs),
69 extract("extract"_cs),
70 lookahead("lookahead"_cs),
71 advance("advance"_cs),
72 length("length"_cs) {}
73 Model::Elem extract;
74 Model::Elem lookahead;
75 Model::Elem advance;
76 Model::Elem length;
77 int extractSecondArgSize = 32;
78};
79
81 public:
82 PacketOut() : Extern_Model("packet_out"_cs), emit("emit"_cs) {}
83 Model::Elem emit;
84};
85
87 public:
88 const StandardExceptions exc;
89 explicit P4Exception_Model(StandardExceptions exc) : ::Model::Elem(cstring::empty), exc(exc) {
90 std::stringstream str;
91 str << exc;
92 name = str.str();
93 }
94};
95
96// Model of P4 core library
97// To be kept in sync with core.p4
99 protected:
100 // NOLINTBEGIN(bugprone-throw-keyword-missing)
102 : noAction("NoAction"_cs),
103 exactMatch("exact"_cs),
104 ternaryMatch("ternary"_cs),
105 lpmMatch("lpm"_cs),
106 noError(StandardExceptions::NoError),
107 packetTooShort(StandardExceptions::PacketTooShort),
108 noMatch(StandardExceptions::NoMatch),
109 stackOutOfBounds(StandardExceptions::StackOutOfBounds),
110 headerTooShort(StandardExceptions::HeaderTooShort) {}
111 // NOLINTEND(bugprone-throw-keyword-missing)
112
113 public:
114 static P4CoreLibrary &instance() {
115 static P4CoreLibrary *corelib = new P4CoreLibrary();
116 return *corelib;
117 }
118 ::Model::Elem noAction;
119
120 ::Model::Elem exactMatch;
121 ::Model::Elem ternaryMatch;
122 ::Model::Elem lpmMatch;
123
124 PacketIn packetIn;
125 PacketOut packetOut;
126
127 P4Exception_Model noError;
128 P4Exception_Model packetTooShort;
129 P4Exception_Model noMatch;
130 P4Exception_Model stackOutOfBounds;
131 P4Exception_Model headerTooShort;
132};
133
134} // namespace P4
135
136#endif /* FRONTENDS_P4_CORELIBRARY_H_ */
Definition frontends/common/model.h:64
Definition coreLibrary.h:98
Definition coreLibrary.h:86
Definition coreLibrary.h:65
Definition coreLibrary.h:80
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24
Definition frontends/common/model.h:28
Extern_Model : Type_Model.
Definition frontends/common/model.h:52