forked from p4lang/p4c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidateProperties.h
53 lines (43 loc) · 1.61 KB
/
validateProperties.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
Copyright 2016 VMware, 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.
*/
#ifndef MIDEND_VALIDATEPROPERTIES_H_
#define MIDEND_VALIDATEPROPERTIES_H_
#include "frontends/p4/typeMap.h"
#include "ir/ir.h"
#include "ir/visitor.h"
namespace P4 {
/**
* Checks to see if there are any unknown properties.
*
* @pre none
* @post raise an error if there are invalid table properties in P4 program.
*/
class ValidateTableProperties : public Inspector {
std::set<cstring> legalProperties;
public:
ValidateTableProperties(const std::initializer_list<cstring> legal) {
setName("ValidateTableProperties");
legalProperties.emplace("actions");
legalProperties.emplace("default_action");
legalProperties.emplace("key");
legalProperties.emplace("entries");
for (auto l : legal) {
legalProperties.emplace(l);
}
}
void postorder(const IR::Property *property) override;
// don't check properties in externs (Declaration_Instances)
bool preorder(const IR::Declaration_Instance * /*instance*/) override { return false; }
};
} // namespace P4
#endif /* MIDEND_VALIDATEPROPERTIES_H_ */