P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
parser_options.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/* -*-C++-*- */
18
19#ifndef FRONTENDS_COMMON_PARSER_OPTIONS_H_
20#define FRONTENDS_COMMON_PARSER_OPTIONS_H_
21
22#include <cstdio>
23#include <filesystem>
24#include <set>
25
26#include "ir/configuration.h"
27#include "ir/pass_manager.h"
28#include "lib/compile_context.h"
29#include "lib/cstring.h"
30#include "lib/options.h"
31
34extern const char *p4includePath;
35extern const char *p4_14includePath;
36
42 std::set<cstring> disabledAnnotations;
43
45 mutable size_t dump_uid = 0;
46
47 protected:
49 void dumpPass(const char *manager, unsigned seq, const char *pass, const IR::Node *node) const;
50
51 public:
52 explicit ParserOptions(std::string_view defaultMessage = "Parse a P4 program");
53
54 std::vector<const char *> *process(int argc, char *const argv[]) override;
55 enum class FrontendVersion { P4_14, P4_16 };
56
58 static void closeFile(FILE *file);
60 using PreprocessorResult = std::unique_ptr<FILE, decltype(&closeFile)>;
61
65 FrontendVersion langVersion = FrontendVersion::P4_16;
67 cstring preprocessor_options = cstring::empty;
69 std::filesystem::path file;
71 bool doNotCompile = false;
75 bool doNotPreprocess = false;
77 std::vector<cstring> top4;
79 std::filesystem::path dumpFolder = ".";
83 void setInputFile();
85 const char *getIncludePath() const override;
87 std::optional<ParserOptions::PreprocessorResult> preprocess() const;
89 bool isv1() const;
92 DebugHook getDebugHook() const;
94 bool isAnnotationDisabled(const IR::Annotation *a) const;
97 bool searchForIncludePath(const char *&includePathOut, std::vector<cstring> relativePaths,
98 const char *);
101 bool noIncludes = false;
102};
103
107 public:
110 static P4CContext &get();
111
115 static const P4CConfiguration &getConfig();
116
117 P4CContext() {}
118
120 virtual ParserOptions &options() = 0;
121
123 DiagnosticAction getDefaultInfoDiagnosticAction() final {
125 }
126
128 void setDefaultInfoDiagnosticAction(DiagnosticAction action) {
130 }
131
136
138 void setDefaultWarningDiagnosticAction(DiagnosticAction action) {
140 }
141
144 DiagnosticAction getDiagnosticAction(cstring diagnostic, DiagnosticAction defaultAction) final {
145 return errorReporter().getDiagnosticAction(diagnostic, defaultAction);
146 }
147
149 void setDiagnosticAction(std::string_view diagnostic, DiagnosticAction action) {
150 errorReporter().setDiagnosticAction(diagnostic, action);
151 }
152
153 protected:
157 virtual bool isRecognizedDiagnostic(cstring diagnostic);
158
161 virtual const P4CConfiguration &getConfigImpl();
162};
163
167template <typename OptionsType>
168class P4CContextWithOptions final : public P4CContext {
169 public:
175
177
178 template <typename OptionsDerivedType>
180 optionsInstance = context.options();
181 }
182
183 template <typename OptionsDerivedType>
185 optionsInstance = context.options();
186 }
187
189 OptionsType &options() override { return optionsInstance; }
190
191 private:
193 OptionsType optionsInstance;
194};
195#endif /* FRONTENDS_COMMON_PARSER_OPTIONS_H_*/
Definition compile_context.h:83
virtual ErrorReporter & errorReporter()
Definition compile_context.cpp:63
void setDefaultWarningDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to warning().
Definition error_reporter.h:248
void setDefaultInfoDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to info().
Definition error_reporter.h:256
void setDiagnosticAction(std::string_view diagnostic, DiagnosticAction action)
Set the action to take for the given diagnostic.
Definition error_reporter.h:240
DiagnosticAction getDiagnosticAction(cstring diagnostic, DiagnosticAction defaultAction)
Definition error_reporter.h:226
DiagnosticAction getDefaultInfoDiagnosticAction()
Definition error_reporter.h:253
DiagnosticAction getDefaultWarningDiagnosticAction()
Definition error_reporter.h:245
Definition node.h:93
Definition ir/configuration.h:22
Definition parser_options.h:106
DiagnosticAction getDiagnosticAction(cstring diagnostic, DiagnosticAction defaultAction) final
Definition parser_options.h:144
virtual ParserOptions & options()=0
DiagnosticAction getDefaultInfoDiagnosticAction() final
Definition parser_options.h:123
void setDefaultWarningDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to warning().
Definition parser_options.h:138
void setDefaultInfoDiagnosticAction(DiagnosticAction action)
set the default diagnostic action for calls to info().
Definition parser_options.h:128
static P4CContext & get()
Definition parser_options.cpp:530
void setDiagnosticAction(std::string_view diagnostic, DiagnosticAction action)
Set the action to take for the given diagnostic.
Definition parser_options.h:149
virtual bool isRecognizedDiagnostic(cstring diagnostic)
Definition parser_options.cpp:537
DiagnosticAction getDefaultWarningDiagnosticAction() final
Definition parser_options.h:133
static const P4CConfiguration & getConfig()
Definition parser_options.cpp:532
virtual const P4CConfiguration & getConfigImpl()
Definition parser_options.cpp:543
Definition parser_options.h:168
OptionsType & options() override
Definition parser_options.h:189
static P4CContextWithOptions & get()
Definition parser_options.h:172
Definition parser_options.h:40
std::vector< cstring > top4
substrings matched against pass names
Definition parser_options.h:77
DebugHook getDebugHook() const
Definition parser_options.cpp:524
std::optional< ParserOptions::PreprocessorResult > preprocess() const
Returns the output of the preprocessor.
Definition parser_options.cpp:420
FrontendVersion langVersion
Which language to compile.
Definition parser_options.h:65
cstring preprocessor_options
options to pass to preprocessor
Definition parser_options.h:67
bool isAnnotationDisabled(const IR::Annotation *a) const
Check whether this particular annotation was disabled.
Definition parser_options.cpp:516
bool optimizeParserInlining
If false, optimization of callee parsers (subparsers) inlining is disabled.
Definition parser_options.h:81
void setInputFile()
Expect that the only remaining argument is the input file.
Definition parser_options.cpp:339
std::filesystem::path file
file to compile (- for stdin)
Definition parser_options.h:69
std::filesystem::path dumpFolder
debugging dumps of programs written in this folder
Definition parser_options.h:79
bool searchForIncludePath(const char *&includePathOut, std::vector< cstring > relativePaths, const char *)
Definition parser_options.cpp:368
static void closeFile(FILE *file)
Tries to close the input stream associated with the result.
Definition parser_options.cpp:49
std::vector< const char * > * process(int argc, char *const argv[]) override
Definition parser_options.cpp:393
bool doNotCompile
if true preprocess only
Definition parser_options.h:71
void dumpPass(const char *manager, unsigned seq, const char *pass, const IR::Node *node) const
Function that is returned by getDebugHook.
Definition parser_options.cpp:471
const char * getIncludePath() const override
Return target specific include path.
Definition parser_options.cpp:407
bool noIncludes
Definition parser_options.h:101
std::unique_ptr< FILE, decltype(&closeFile)> PreprocessorResult
Records the result of the preprocessor.
Definition parser_options.h:60
cstring compilerVersion
Compiler version.
Definition parser_options.h:73
cstring exe_name
Name of executable that is being run.
Definition parser_options.h:63
bool isv1() const
True if we are compiling a P4 v1.0 or v1.1 program.
Definition parser_options.cpp:469
bool doNotPreprocess
if true skip preprocess
Definition parser_options.h:75
Definition lib/options.h:34
Definition cstring.h:80
static CompileContextType & top()
Definition compile_context.h:46