From: Gabriele Monaco <gmonaco@redhat.com>
To: linux-kernel@vger.kernel.org,
Steven Rostedt <rostedt@goodmis.org>,
Nam Cao <namcao@linutronix.de>, Juri Lelli <jlelli@redhat.com>,
Gabriele Monaco <gmonaco@redhat.com>,
linux-trace-kernel@vger.kernel.org
Cc: Tomas Glozar <tglozar@redhat.com>,
Clark Williams <williams@redhat.com>,
John Kacur <jkacur@redhat.com>
Subject: [PATCH v5 03/15] verification/rvgen: Allow spaces in and events strings
Date: Thu, 22 Jan 2026 16:54:48 +0100 [thread overview]
Message-ID: <20260122155500.362683-4-gmonaco@redhat.com> (raw)
In-Reply-To: <20260122155500.362683-1-gmonaco@redhat.com>
Currently the automata parser assumes event strings don't have any
space, this stands true for event names, but can be a wrong assumption
if we want to store other information in the event strings (e.g.
constraints for hybrid automata).
Adapt the parser logic to allow spaces in the event strings.
Reviewed-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
---
tools/verification/rvgen/rvgen/automata.py | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/tools/verification/rvgen/rvgen/automata.py b/tools/verification/rvgen/rvgen/automata.py
index 3f06aef8d4fd..977ba859c34e 100644
--- a/tools/verification/rvgen/rvgen/automata.py
+++ b/tools/verification/rvgen/rvgen/automata.py
@@ -127,14 +127,13 @@ class Automata:
# ------------ event is here ------------^^^^^
if self.__dot_lines[cursor].split()[1] == "->":
line = self.__dot_lines[cursor].split()
- event = line[-2].replace('"','')
+ event = "".join(line[line.index("label")+2:-1]).replace('"','')
# when a transition has more than one lables, they are like this
# "local_irq_enable\nhw_local_irq_enable_n"
# so split them.
- event = event.replace("\\n", " ")
- for i in event.split():
+ for i in event.split("\\n"):
events.append(i)
cursor += 1
@@ -167,8 +166,8 @@ class Automata:
line = self.__dot_lines[cursor].split()
origin_state = line[0].replace('"','').replace(',','_')
dest_state = line[2].replace('"','').replace(',','_')
- possible_events = line[-2].replace('"','').replace("\\n", " ")
- for event in possible_events.split():
+ possible_events = "".join(line[line.index("label")+2:-1]).replace('"','')
+ for event in possible_events.split("\\n"):
matrix[states_dict[origin_state]][events_dict[event]] = dest_state
cursor += 1
--
2.52.0
next prev parent reply other threads:[~2026-01-22 15:55 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-22 15:54 [PATCH v5 00/15] rv: Add Hybrid Automata monitor type, per-object and deadline monitors Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 01/15] rv: Unify DA event handling functions across monitor types Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 02/15] rv: Add Hybrid Automata monitor type Gabriele Monaco
2026-01-22 15:54 ` Gabriele Monaco [this message]
2026-01-22 15:54 ` [PATCH v5 04/15] verification/rvgen: Add support for Hybrid Automata Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 05/15] Documentation/rv: Add documentation about hybrid automata Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 06/15] rv: Add sample hybrid monitors stall Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 07/15] rv: Convert the opid monitor to a hybrid automaton Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 08/15] sched: Add deadline tracepoints Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 09/15] sched: Add task enqueue/dequeue trace points Gabriele Monaco
2026-01-27 9:10 ` Gabriele Monaco
2026-02-03 11:06 ` Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 10/15] rv: Add enqueue/dequeue to snroc monitor Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 11/15] rv: Add support for per-object monitors in DA/HA Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 12/15] verification/rvgen: Add support for per-obj monitors Gabriele Monaco
2026-01-22 15:54 ` [PATCH v5 13/15] sched/deadline: Move some utility functions to deadline.h Gabriele Monaco
2026-01-23 13:00 ` Juri Lelli
2026-01-22 15:54 ` [PATCH v5 14/15] rv: Add deadline monitors Gabriele Monaco
2026-01-23 13:03 ` Juri Lelli
2026-01-22 15:55 ` [PATCH v5 15/15] rv: Add dl_server specific monitors Gabriele Monaco
2026-01-23 13:04 ` Juri Lelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260122155500.362683-4-gmonaco@redhat.com \
--to=gmonaco@redhat.com \
--cc=jkacur@redhat.com \
--cc=jlelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=namcao@linutronix.de \
--cc=rostedt@goodmis.org \
--cc=tglozar@redhat.com \
--cc=williams@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox