P4C
The P4 Compiler
Loading...
Searching...
No Matches
constantParsing.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_COMMON_CONSTANTPARSING_H_
18#define FRONTENDS_COMMON_CONSTANTPARSING_H_
19
20#include "lib/cstring.h"
21
22namespace IR {
23class Constant;
24} // namespace IR
25
26namespace Util {
27class SourceInfo;
28} // namespace Util
29
64 cstring text;
65 unsigned skip;
66 unsigned base;
67 bool hasWidth;
68};
69
70std::ostream &operator<<(std::ostream &out, const UnparsedConstant &constant);
71
80IR::Constant *parseConstant(const Util::SourceInfo &srcInfo, const UnparsedConstant &constant,
81 long defaultValue);
82
87int parseConstantChecked(const Util::SourceInfo &srcInfo, const UnparsedConstant &constant);
88
89#endif /* FRONTENDS_COMMON_CONSTANTPARSING_H_ */
Definition source_file.h:123
Definition cstring.h:80
Definition constantParsing.h:63
bool hasWidth
The base in which the constant is expressed.
Definition constantParsing.h:67
unsigned base
An ignored prefix of the numeric constant (e.g. '0x').
Definition constantParsing.h:66
unsigned skip
Raw P4 text which was recognized as a numeric constant.
Definition constantParsing.h:65