344 lines
9.7 KiB
Rust
344 lines
9.7 KiB
Rust
use crate::*;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item(s: Span) -> IResult<Span, ClassItem> {
|
|
alt((
|
|
class_item_property,
|
|
class_item_method,
|
|
class_item_constraint,
|
|
class_item_declaration,
|
|
class_item_covergroup,
|
|
map(pair(local_parameter_declaration, symbol(";")), |x| {
|
|
ClassItem::LocalParameterDeclaration(Box::new(x))
|
|
}),
|
|
map(pair(parameter_declaration, symbol(";")), |x| {
|
|
ClassItem::ParameterDeclaration(Box::new(x))
|
|
}),
|
|
map(symbol(";"), |x| ClassItem::Empty(Box::new(x))),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_property(s: Span) -> IResult<Span, ClassItem> {
|
|
let (s, a) = many0(attribute_instance)(s)?;
|
|
let (s, b) = class_property(s)?;
|
|
Ok((
|
|
s,
|
|
ClassItem::Property(Box::new(ClassItemProperty { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_method(s: Span) -> IResult<Span, ClassItem> {
|
|
let (s, a) = many0(attribute_instance)(s)?;
|
|
let (s, b) = class_method(s)?;
|
|
Ok((
|
|
s,
|
|
ClassItem::Method(Box::new(ClassItemMethod { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_constraint(s: Span) -> IResult<Span, ClassItem> {
|
|
let (s, a) = many0(attribute_instance)(s)?;
|
|
let (s, b) = class_constraint(s)?;
|
|
Ok((
|
|
s,
|
|
ClassItem::Constraint(Box::new(ClassItemConstraint { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_declaration(s: Span) -> IResult<Span, ClassItem> {
|
|
let (s, a) = many0(attribute_instance)(s)?;
|
|
let (s, b) = class_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassItem::Declaration(Box::new(ClassItemDeclaration { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_covergroup(s: Span) -> IResult<Span, ClassItem> {
|
|
let (s, a) = many0(attribute_instance)(s)?;
|
|
let (s, b) = covergroup_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassItem::Covergroup(Box::new(ClassItemCovergroup { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_property(s: Span) -> IResult<Span, ClassProperty> {
|
|
alt((class_property_non_const, class_property_const))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_property_non_const(s: Span) -> IResult<Span, ClassProperty> {
|
|
let (s, a) = many0(property_qualifier)(s)?;
|
|
let (s, b) = data_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassProperty::NonConst(Box::new(ClassPropertyNonConst { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_property_const(s: Span) -> IResult<Span, ClassProperty> {
|
|
let (s, a) = keyword("const")(s)?;
|
|
let (s, b) = many0(class_item_qualifier)(s)?;
|
|
let (s, c) = data_type(s)?;
|
|
let (s, d) = const_identifier(s)?;
|
|
// BNF-WA
|
|
//let (s, e) = opt(pair(symbol("="), constant_expression))(s)?;
|
|
let (s, e) = opt(pair(symbol("="), class_property_const_expression))(s)?;
|
|
let (s, f) = symbol(";")(s)?;
|
|
Ok((
|
|
s,
|
|
ClassProperty::Const(Box::new(ClassPropertyConst {
|
|
nodes: (a, b, c, d, e, f),
|
|
})),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_property_const_expression(
|
|
s: Span,
|
|
) -> IResult<Span, ClassPropertyConstExpression> {
|
|
alt((
|
|
map(constant_expression, |x| {
|
|
ClassPropertyConstExpression::ConstantExpression(Box::new(x))
|
|
}),
|
|
map(class_new, |x| {
|
|
ClassPropertyConstExpression::ClassNew(Box::new(x))
|
|
}),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method(s: Span) -> IResult<Span, ClassMethod> {
|
|
alt((
|
|
class_method_task,
|
|
class_method_function,
|
|
class_method_pure_virtual,
|
|
class_method_extern_method,
|
|
class_method_constructor,
|
|
class_method_extern_constructor,
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_task(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = many0(method_qualifier)(s)?;
|
|
let (s, b) = task_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::Task(Box::new(ClassMethodTask { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_function(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = many0(method_qualifier)(s)?;
|
|
let (s, b) = function_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::Function(Box::new(ClassMethodFunction { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_pure_virtual(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = keyword("pure")(s)?;
|
|
let (s, b) = keyword("virtual")(s)?;
|
|
let (s, c) = many0(class_item_qualifier)(s)?;
|
|
let (s, d) = method_prototype(s)?;
|
|
let (s, e) = symbol(";")(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::PureVirtual(Box::new(ClassMethodPureVirtual {
|
|
nodes: (a, b, c, d, e),
|
|
})),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_extern_method(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = keyword("extern")(s)?;
|
|
let (s, b) = many0(method_qualifier)(s)?;
|
|
let (s, c) = method_prototype(s)?;
|
|
let (s, d) = symbol(";")(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::ExternMethod(Box::new(ClassMethodExternMethod {
|
|
nodes: (a, b, c, d),
|
|
})),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_constructor(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = many0(method_qualifier)(s)?;
|
|
let (s, b) = class_constructor_declaration(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::Constructor(Box::new(ClassMethodConstructor { nodes: (a, b) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_method_extern_constructor(s: Span) -> IResult<Span, ClassMethod> {
|
|
let (s, a) = keyword("extern")(s)?;
|
|
let (s, b) = many0(method_qualifier)(s)?;
|
|
let (s, c) = class_constructor_prototype(s)?;
|
|
Ok((
|
|
s,
|
|
ClassMethod::ExternConstructor(Box::new(ClassMethodExternConstructor { nodes: (a, b, c) })),
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_constructor_prototype(s: Span) -> IResult<Span, ClassConstructorPrototype> {
|
|
let (s, a) = keyword("function")(s)?;
|
|
let (s, b) = keyword("new")(s)?;
|
|
let (s, c) = opt(paren(opt(tf_port_list)))(s)?;
|
|
let (s, d) = symbol(";")(s)?;
|
|
Ok((
|
|
s,
|
|
ClassConstructorPrototype {
|
|
nodes: (a, b, c, d),
|
|
},
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_constraint(s: Span) -> IResult<Span, ClassConstraint> {
|
|
alt((
|
|
map(constraint_prototype, |x| {
|
|
ClassConstraint::ConstraintPrototype(Box::new(x))
|
|
}),
|
|
map(constraint_declaration, |x| {
|
|
ClassConstraint::ConstraintDeclaration(Box::new(x))
|
|
}),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_item_qualifier(s: Span) -> IResult<Span, ClassItemQualifier> {
|
|
alt((
|
|
map(keyword("static"), |x| {
|
|
ClassItemQualifier::Static(Box::new(x))
|
|
}),
|
|
map(keyword("protected"), |x| {
|
|
ClassItemQualifier::Protected(Box::new(x))
|
|
}),
|
|
map(keyword("local"), |x| ClassItemQualifier::Local(Box::new(x))),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn property_qualifier(s: Span) -> IResult<Span, PropertyQualifier> {
|
|
alt((
|
|
map(random_qualifier, |x| {
|
|
PropertyQualifier::RandomQualifier(Box::new(x))
|
|
}),
|
|
map(class_item_qualifier, |x| {
|
|
PropertyQualifier::ClassItemQualifier(Box::new(x))
|
|
}),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn random_qualifier(s: Span) -> IResult<Span, RandomQualifier> {
|
|
alt((
|
|
map(keyword("randc"), |x| RandomQualifier::Randc(Box::new(x))),
|
|
map(keyword("rand"), |x| RandomQualifier::Rand(Box::new(x))),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn method_qualifier(s: Span) -> IResult<Span, MethodQualifier> {
|
|
alt((
|
|
map(pair(keyword("pure"), keyword("virtual")), |x| {
|
|
MethodQualifier::PureVirtual(Box::new(x))
|
|
}),
|
|
map(keyword("virtual"), |x| {
|
|
MethodQualifier::Virtual(Box::new(x))
|
|
}),
|
|
map(class_item_qualifier, |x| {
|
|
MethodQualifier::ClassItemQualifier(Box::new(x))
|
|
}),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn method_prototype(s: Span) -> IResult<Span, MethodPrototype> {
|
|
alt((
|
|
map(task_prototype, |x| {
|
|
MethodPrototype::TaskPrototype(Box::new(x))
|
|
}),
|
|
map(function_prototype, |x| {
|
|
MethodPrototype::FunctionPrototype(Box::new(x))
|
|
}),
|
|
))(s)
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn class_constructor_declaration(s: Span) -> IResult<Span, ClassConstructorDeclaration> {
|
|
let (s, a) = keyword("function")(s)?;
|
|
let (s, b) = opt(class_scope)(s)?;
|
|
let (s, c) = keyword("new")(s)?;
|
|
let (s, d) = opt(paren(opt(tf_port_list)))(s)?;
|
|
let (s, e) = symbol(";")(s)?;
|
|
let (s, f) = many0(block_item_declaration)(s)?;
|
|
let (s, g) = opt(tuple((
|
|
keyword("super"),
|
|
symbol("."),
|
|
keyword("new"),
|
|
opt(paren(list_of_arguments)),
|
|
symbol(";"),
|
|
)))(s)?;
|
|
let (s, (h, i)) = many_till(function_statement_or_null, keyword("endfunction"))(s)?;
|
|
let (s, j) = opt(pair(symbol(":"), new))(s)?;
|
|
Ok((
|
|
s,
|
|
ClassConstructorDeclaration {
|
|
nodes: (a, b, c, d, e, f, g, h, i, j),
|
|
},
|
|
))
|
|
}
|
|
|
|
#[tracable_parser]
|
|
#[packrat_parser]
|
|
pub(crate) fn new(s: Span) -> IResult<Span, New> {
|
|
let (s, a) = keyword("new")(s)?;
|
|
Ok((s, New { nodes: (a,) }))
|
|
}
|