P4C
The P4 Compiler
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
UnparsedConstant Struct Reference

#include <constantParsing.h>

Public Attributes

unsigned base
 An ignored prefix of the numeric constant (e.g. '0x').
 
bool hasWidth
 The base in which the constant is expressed.
 
unsigned skip
 Raw P4 text which was recognized as a numeric constant.
 
cstring text
 

Detailed Description

An unparsed numeric constant. We produce these as token values during lexing. The parser is responsible for actually interpreting the raw text as a numeric value and transforming it into an IR::Constant using parseConstant().

To illustrate how a numeric constant is represented using this struct, here is a breakdown of '16w0x12':

     ___
    /                                    ___
    |                                   /
    |   bitwidth (if @hasWidth)        |       16
    |                                   \___
    |
    |                                    ___
    |                                   /
    |   separator (if @hasWidth)       |       w
    |                                   \___

@text | | ___ | / | ignored prefix of length

| ___ | | ___ | / | numeric value in base @base | w | ___ ___

Simple numeric constants like '5' are specified by setting @hasWidth to false and providing a

Member Data Documentation

◆ base

unsigned UnparsedConstant::base

An ignored prefix of the numeric constant (e.g. '0x').

◆ hasWidth

bool UnparsedConstant::hasWidth

The base in which the constant is expressed.

◆ skip

unsigned UnparsedConstant::skip

Raw P4 text which was recognized as a numeric constant.

◆ text

cstring UnparsedConstant::text