-
Notifications
You must be signed in to change notification settings - Fork 151
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
Construct KCFGs for Foundry proof obligations #1372
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Added some comments for potential follow-up tasks.
kevm.prove( | ||
foundry_main_file, | ||
spec_module_name=spec_module, | ||
dry_run=True, | ||
args=(['--emit-json-spec', str(parsed_spec)] + prove_args), | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we should emit the JSON spec (or the CFGs) directly. Is that feasible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's feasible. I thought of it after opening this PR, but figured it could wait.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can change it though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_LOGGER.info(f'Producting KCFG: {cfg_label}') | ||
cfgs[cfg_label] = KCFG_from_claim(kevm.definition, claim).to_dict() | ||
with open(kcfgs_file, 'w') as kf: | ||
kf.write(json.dumps(cfgs)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the advantage of having a single file for all the specs? (I guess we have a single main file because kompiling all modules at once is more efficient than kompiling them separately. But for the specs it shouldn't matter, right?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean a single file for all the KCFGs? I think that it's actually a disadvantage, but it matched more closely what the summarizer expects as input, so I figured I would stick to that. I can change it though.
foundry_definition_dir = foundry_out / 'kompiled' | ||
foundry_main_file = foundry_definition_dir / 'foundry.k' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated to this PR: I think we should have a separate folder for the K specs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps. I don't think ti matters to much where it goes. But I do want to put it in the Foundry output directory, to keep it in snyc with the other artifacts there.
return _flat_module_list | ||
|
||
|
||
def KCFG_from_claim(defn: KDefinition, claim: KClaim) -> KCFG: # noqa: N802 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this following section copy-pasted from ksummarize
? We should probably upstream this to pyk
(with unit tests).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's directly from KSummarize.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, not quite actually. Directly from KSummarize, then minor refactor.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's recorded here: https://github.com/runtimeverification/ksummarize/issues/82
This is the first time I have seen this "KCFG"-mode. Is it documented somewhere? |
@RaoulSchaffranek no it's not documented anywhere, implementation here: https://github.com/runtimeverification/pyk/blob/master/src/pyk/kcfg.py |
Co-authored-by: Tamás Tóth <[email protected]>
Fixes: #1358
Instead of storing K claims for each Foundry test, we store KCFGs with the proof obligations.
--reparse
and--reinit
tofoundry-kompile
, which enables re-parsingfoundry.k
tospec.json
, and regeneratingkcfgs.json
fromspec.json
, respectively. This requires pulling in several downstream functions from ksummarize:KCFG_from_claim
andsanitize_config
.read_kast_flatmodulelist
for reading the output ofkprove --emit-json-spec ...
.utils.py
(which have been upstreamed/replaced):get_productions
,get_production_for_klabel
, andget_label_for_cell_sorts
..AccountCellMap
to be as.Bag
instead of empty. When there are 1 or more accounts, it's ok to unparse.AccountCellMap
as empty, but when there are no accounts, you get things like( => ?_ACCOUNTS_FINAL)
. In both cases (no accounts, some accounts), it's safe to use.Bag
.