debug: Naming schemes for frames, functions, globals, and registers · Issue #1294 · GaloisInc/crucible · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Various commands might want to refer to an active frame, function, global, or register. For example:
frame
could take the name of an active frame as an argumentreg
could further qualify value names by the frame they are in, so that it could print values in previous framescall
could take value names and use those values as arguments when calling the CFGHere's a sketch of a syntax that would preserve the ability to easily distinguish between such names when parsing:
@
, just like incrucible-syntax
.$$
, just like incrucible-syntax
.-0
for the current frame,-1
for the parent frame, etc.!
<frame-name>:<N>
for a nonnegative numeralN
, or justN
for the current frame.The text was updated successfully, but these errors were encountered: