use crate::*; // ----------------------------------------------------------------------------- #[tracable_parser] #[packrat_parser] pub(crate) fn path_delay_value(s: Span) -> IResult { alt(( map(list_of_path_delay_expressions, |x| { PathDelayValue::ListOfPathDelayExpressions(Box::new(x)) }), path_delay_value_paren, ))(s) } #[tracable_parser] #[packrat_parser] pub(crate) fn path_delay_value_paren(s: Span) -> IResult { let (s, a) = paren(list_of_path_delay_expressions)(s)?; Ok(( s, PathDelayValue::Paren(Box::new(PathDelayValueParen { nodes: (a,) })), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn list_of_path_delay_expressions(s: Span) -> IResult { let (s, a) = list(symbol(","), t_path_delay_expression)(s)?; Ok((s, ListOfPathDelayExpressions { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn t_path_delay_expression(s: Span) -> IResult { let (s, a) = path_delay_expression(s)?; Ok((s, TPathDelayExpression { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn path_delay_expression(s: Span) -> IResult { let (s, a) = constant_mintypmax_expression(s)?; Ok((s, PathDelayExpression { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn edge_sensitive_path_declaration( s: Span, ) -> IResult { alt(( edge_sensitive_path_declaration_parallel, edge_sensitive_path_declaration_full, ))(s) } #[tracable_parser] #[packrat_parser] pub(crate) fn edge_sensitive_path_declaration_parallel( s: Span, ) -> IResult { let (s, a) = parallel_edge_sensitive_path_description(s)?; let (s, b) = symbol("=")(s)?; let (s, c) = path_delay_value(s)?; Ok(( s, EdgeSensitivePathDeclaration::Parallel(Box::new(EdgeSensitivePathDeclarationParallel { nodes: (a, b, c), })), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn edge_sensitive_path_declaration_full( s: Span, ) -> IResult { let (s, a) = full_edge_sensitive_path_description(s)?; let (s, b) = symbol("=")(s)?; let (s, c) = path_delay_value(s)?; Ok(( s, EdgeSensitivePathDeclaration::Full(Box::new(EdgeSensitivePathDeclarationFull { nodes: (a, b, c), })), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn parallel_edge_sensitive_path_description( s: Span, ) -> IResult { let (s, a) = paren(tuple(( opt(edge_identifier), specify_input_terminal_descriptor, opt(polarity_operator), symbol("=>"), paren(tuple(( specify_output_terminal_descriptor, opt(polarity_operator), symbol(":"), data_source_expression, ))), )))(s)?; Ok((s, ParallelEdgeSensitivePathDescription { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn full_edge_sensitive_path_description( s: Span, ) -> IResult { let (s, a) = paren(tuple(( opt(edge_identifier), list_of_path_inputs, opt(polarity_operator), symbol("*>"), paren(tuple(( list_of_path_outputs, opt(polarity_operator), symbol(":"), data_source_expression, ))), )))(s)?; Ok((s, FullEdgeSensitivePathDescription { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn data_source_expression(s: Span) -> IResult { let (s, a) = expression(s)?; Ok((s, DataSourceExpression { nodes: (a,) })) } #[tracable_parser] #[packrat_parser] pub(crate) fn edge_identifier(s: Span) -> IResult { alt(( map(keyword("posedge"), |x| EdgeIdentifier::Posedge(Box::new(x))), map(keyword("negedge"), |x| EdgeIdentifier::Negedge(Box::new(x))), map(keyword("edge"), |x| EdgeIdentifier::Edge(Box::new(x))), ))(s) } #[tracable_parser] #[packrat_parser] pub(crate) fn state_dependent_path_declaration( s: Span, ) -> IResult { alt(( state_dependent_path_declaration_if_simple, state_dependent_path_declaration_if_edge_sensitive, state_dependent_path_declaration_if_none, ))(s) } #[tracable_parser] #[packrat_parser] pub(crate) fn state_dependent_path_declaration_if_simple( s: Span, ) -> IResult { let (s, a) = keyword("if")(s)?; let (s, b) = paren(module_path_expression)(s)?; let (s, c) = simple_path_declaration(s)?; Ok(( s, StateDependentPathDeclaration::IfSimple(Box::new(StateDependentPathDeclarationIfSimple { nodes: (a, b, c), })), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn state_dependent_path_declaration_if_edge_sensitive( s: Span, ) -> IResult { let (s, a) = keyword("if")(s)?; let (s, b) = paren(module_path_expression)(s)?; let (s, c) = edge_sensitive_path_declaration(s)?; Ok(( s, StateDependentPathDeclaration::IfEdgeSensitive(Box::new( StateDependentPathDeclarationIfEdgeSensitive { nodes: (a, b, c) }, )), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn state_dependent_path_declaration_if_none( s: Span, ) -> IResult { let (s, a) = keyword("ifnone")(s)?; let (s, b) = simple_path_declaration(s)?; Ok(( s, StateDependentPathDeclaration::IfNone(Box::new(StateDependentPathDeclarationIfNone { nodes: (a, b), })), )) } #[tracable_parser] #[packrat_parser] pub(crate) fn polarity_operator(s: Span) -> IResult { alt(( map(symbol("+"), |x| PolarityOperator { nodes: (x,) }), map(symbol("-"), |x| PolarityOperator { nodes: (x,) }), ))(s) }