![]() |
P4C
The P4 Compiler
|
TODO: this is not really specific to BMV2, it should reside somewhere else. More...
Namespaces | |
namespace | ControlPlaneAPI |
TODO(antonin): High level goals of the generator go here!! | |
namespace | Coverage |
namespace | literals |
Typedefs | |
using | ActionCallInfo = SimpleCallInfo<IR::P4Action, IR::MethodCallStatement> |
using | ActionsInlineList = SimpleInlineList<IR::P4Action, ActionCallInfo, AInlineWorkList> |
using | AInlineWorkList = SimpleInlineWorkList<ActionCallInfo> |
using | FunctionCallInfo = SimpleCallInfo<IR::Node, IR::Statement> |
using | FunctionsInlineList = SimpleInlineList<IR::Node, FunctionCallInfo, FunctionsInlineWorkList> |
using | FunctionsInlineWorkList = SimpleInlineWorkList<FunctionCallInfo> |
using | GeneratedVariablesMap = std::map<cstring, const IR::PathExpression *> |
typedef InlineDriver< ActionsInlineList, AInlineWorkList > | InlineActionsDriver |
typedef InlineDriver< FunctionsInlineList, FunctionsInlineWorkList > | InlineFunctionsDriver |
typedef CallGraph< const IR::ParserState * > | ParserCallGraph |
using | ResourceMap = ordered_map<const IR::Node *, const IR::CompileTimeValue *> |
typedef std::unordered_map< StackVariable, const IR::Expression *, StackVariableHash > | StackVariableIndexMap |
typedef std::unordered_map< StackVariable, size_t, StackVariableHash > | StackVariableMap |
typedef CallGraph< const IR::ParserState * > | StateCallGraph |
using | TypeLogMsgParams = std::pair<IR::IndexedVector<IR::NamedExpression>, std::string> |
Enumerations | |
enum | block_t { PARSER , PIPELINE , DEPARSER } |
enum | gress_t { INGRESS , EGRESS } |
enum class | P4RuntimeFormat { BINARY , JSON , TEXT , TEXT_PROTOBUF } |
P4Runtime serialization formats. | |
enum class | ResolutionType { Any , Type , TypeVariable } |
Helper class to indicate types of nodes that may be returned during resolution. | |
enum class | StandardExceptions { NoError , PacketTooShort , NoMatch , StackOutOfBounds , HeaderTooShort , ParserTimeout } |
enum class | TernaryBool { Yes , No , Maybe } |
Functions | |
cstring | cgMakeString (char c) |
cstring | cgMakeString (const IR::INode *node) |
cstring | cgMakeString (const IR::Node *node) |
cstring | cgMakeString (cstring s) |
void | checkParametersForMap (const IR::ParameterList *params, std::map< cstring, const IR::Expression * > *vars) |
void | compareValuesInMaps (std::map< cstring, const IR::Expression * > *oldValues, std::map< cstring, const IR::Expression * > *newValues) |
const IR::Expression * | convert (const IR::Expression *expression, const IR::Type *type) |
void | dump (P4::TypeVariableSubstitution &tvs) |
void | dump (P4::TypeVariableSubstitution *tvs) |
void | dumpP4 (const IR::INode *node) |
P4RuntimeAPI | generateP4Runtime (const IR::P4Program *program, cstring arch) |
const IR::Expression * | getConstant (const ScalarValue *constant) |
DebugHook | getDiagnosticCountInPassHook (BaseCompileContext &ctxt=BaseCompileContext::get()) |
This creates a debug hook that prints information about the number of diagnostics of different levels (error, warning, info) printed by each of the pass after it ended. This is intended to help in debuggig and testing. | |
bool | hasVarbitsOrUnions (const TypeMap *typeMap, const IR::Type *type) |
True if the type contains any varbit or header_union subtypes. | |
bool | isAsync (const IR::Vector< IR::Method > methods, cstring callee, cstring caller) |
bool | isTerminalState (IR::ID id) |
bool | names_overlap (cstring name1, cstring name2) |
Test to see if names denote overlapping locations. | |
std::ostream & | operator<< (std::ostream &out, const ComputeDefUse::defuse_t &du) |
std::ostream & | operator<< (std::ostream &out, const ComputeDefUse::loc_t &loc) |
std::ostream & | operator<< (std::ostream &out, const hvec_set< const ComputeDefUse::loc_t * > &s) |
std::ostream & | operator<< (std::ostream &out, const std::pair< const IR::Node *, const hvec_set< const ComputeDefUse::loc_t * > > &p) |
const IR::Expression * | optimizeExpression (const IR::Expression *node) |
template<typename C = P4V1::Converter> | |
const IR::P4Program * | parseP4File (const ParserOptions &options) |
const IR::P4Program * | parseP4String (const char *sourceFile, unsigned sourceLine, const std::string &input, CompilerOptions::FrontendVersion version) |
const IR::P4Program * | parseP4String (const std::string &input, CompilerOptions::FrontendVersion version) |
void | removeVarsContaining (std::map< cstring, const IR::Expression * > *vars, cstring name) |
void | serializeP4RuntimeIfRequired (const IR::P4Program *program, const CompilerOptions &options) |
std::string | toP4 (const IR::INode *node) |
cstring | toString (const TernaryBool &c) |
template<typename... Args> | |
void | typeError (const char *format, Args &&...args) |
UnparsedConstant | unparsedConstant (const IR::AnnotationToken *token) |
Variables | |
const char * | DIAGNOSTIC_COUNT_IN_PASS_TAG = "diagnosticCountInPass" |
const char | outOfBoundsStateName [] = "stateOutOfBound" |
Name of out of bound state. | |
const std::set< cstring > | reservedWords |
TODO: this is not really specific to BMV2, it should reside somewhere else.
This file has common data structures used for inlining functions and actions. Inlining these is simpler than inlining controls and parsers
Shouldn't happen as cmake will not try to build this backend if the boost graph headers couldn't be found.
class P4::TableInsertions |
const IR::Expression * P4::convert | ( | const IR::Expression * | expression, |
const IR::Type * | type ) |
Given an expression and a destination type, convert ListExpressions that occur within expression to StructExpression if the destination type matches.
DebugHook P4::getDiagnosticCountInPassHook | ( | BaseCompileContext & | ctxt = BaseCompileContext::get() | ) |
This creates a debug hook that prints information about the number of diagnostics of different levels (error, warning, info) printed by each of the pass after it ended. This is intended to help in debuggig and testing.
NOTE: You either need to use one DiagnosticCountInfo object (and its getPassManagerHook) for the entire compilation, create one pass and use its copies in all the pass managers in the compilation, or create each of the following hooks only after the previous compilations steps had already run. Otherwise, you can get spurious logs for a first pass of a pass manager running after some diagnostics were emitted.
It logs the messages if the log level for "diagnosticCountInPass" is at least 1. If the log level is at least 4, the logs also include the sequence number of the pass that printed the message in the pass manager.
ctxt | Optionally, you can provide a compilation context to take the diagnostic counts from. If not provied BaseCompileContext::get() is used. |
bool P4::isTerminalState | ( | IR::ID | id | ) |
Checks for terminal state.
|
inline |
Applies expression optimizations to the input node. Currently, performs constant folding and strength reduction.
const IR::P4Program * P4::parseP4File | ( | const ParserOptions & | options | ) |
Parse P4 source from a file. The filename and language version are specified by @options. If the language version is not P4-16, then the program is converted to P4-16 before being returned.
const IR::P4Program * P4::parseP4String | ( | const char * | sourceFile, |
unsigned | sourceLine, | ||
const std::string & | input, | ||
CompilerOptions::FrontendVersion | version ) |
Parse P4 source from the string @input, interpreting it as having language version
const std::set< cstring > P4::reservedWords |