Skip to content

decoder.py: allowing to use it live #9108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Mar 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
per review: hide duplicate system log, remove previous dup management
  • Loading branch information
d-a-v committed Mar 28, 2024
commit 7c5366bb8f5f6e9420c4981197da6b10f4270173
15 changes: 7 additions & 8 deletions tools/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ def decode_lines(format_addresses, elf, lines):

STACK_LINE_RE = re.compile(r"^[0-9a-f]{8}:\s\s+")

IGNORE_DUP = re.compile(r"^(epc1=0x........,|Fatal exception )")

CUT_HERE_STRING = "CUT HERE FOR EXCEPTION DECODER"
DECODE_IT = "DECODE IT"
EXCEPTION_STRING = "Exception ("
Expand All @@ -127,14 +129,15 @@ def print_all_addresses(addresses):
def format_address(address):
return "\n".join(format_addresses(elf, [address]))

lastaddr = {}
for line in lines:
# ctx could happen multiple times. for the 2nd one, reset list
# ctx: bearssl *or* ctx: cont *or* ctx: sys *or* ctx: whatever
if in_stack and "ctx:" in line:
stack_addresses = print_all_addresses(stack_addresses)
last_stack = line.strip()
# 3fffffb0: feefeffe feefeffe 3ffe85d8 401004ed
elif IGNORE_DUP.match(line):
continue
elif in_stack and STACK_LINE_RE.match(line):
_, addrs = line.split(":")
addrs = ANY_ADDR_RE.findall(addrs)
Expand All @@ -146,13 +149,9 @@ def format_address(address):
for pair in pairs:
name, addr = pair.split("=")
if name in ["epc1", "excvaddr"]:
addr = addr.rstrip(',')
if not name in lastaddr or lastaddr[name] != addr:
if addr != '0x00000000':
lastaddr[name] = addr
output = format_address(addr)
if output:
print(f"{name}={output}")
output = format_address(addr)
if output:
print(f"{name}={output}")
# Exception (123):
# Other reasons coming before the guard shown as-is
elif EXCEPTION_STRING in line:
Expand Down