Skip to content
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

Merged
merged 16 commits into from
Sep 14, 2022
Merged

Construct KCFGs for Foundry proof obligations #1372

merged 16 commits into from
Sep 14, 2022

Conversation

ehildenb
Copy link
Member

@ehildenb ehildenb commented Sep 13, 2022

Fixes: #1358

Instead of storing K claims for each Foundry test, we store KCFGs with the proof obligations.

  • Add options --reparse and --reinit to foundry-kompile, which enables re-parsing foundry.k to spec.json, and regenerating kcfgs.json from spec.json, respectively. This requires pulling in several downstream functions from ksummarize: KCFG_from_claim and sanitize_config.
  • Implements read_kast_flatmodulelist for reading the output of kprove --emit-json-spec ....
  • Removes a few unused methods from utils.py (which have been upstreamed/replaced): get_productions, get_production_for_klabel, and get_label_for_cell_sorts.
  • Adjusts the unparsing of .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.

@ehildenb ehildenb self-assigned this Sep 13, 2022
@ehildenb ehildenb marked this pull request as ready for review September 13, 2022 06:10
Copy link
Contributor

@tothtamas28 tothtamas28 left a 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.

Comment on lines +229 to +234
kevm.prove(
foundry_main_file,
spec_module_name=spec_module,
dry_run=True,
args=(['--emit-json-spec', str(parsed_spec)] + prove_args),
)
Copy link
Contributor

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?

Copy link
Member Author

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.

Copy link
Member Author

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.

Copy link
Member Author

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))
Copy link
Contributor

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?)

Copy link
Member Author

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.

Comment on lines 194 to 195
foundry_definition_dir = foundry_out / 'kompiled'
foundry_main_file = foundry_definition_dir / 'foundry.k'
Copy link
Contributor

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.

Copy link
Member Author

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
Copy link
Contributor

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).

Copy link
Member Author

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.

Copy link
Member Author

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.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RaoulSchaffranek
Copy link
Member

This is the first time I have seen this "KCFG"-mode. Is it documented somewhere?

@ehildenb
Copy link
Member Author

@RaoulSchaffranek no it's not documented anywhere, implementation here: https://github.com/runtimeverification/pyk/blob/master/src/pyk/kcfg.py

@rv-jenkins rv-jenkins merged commit cf2eecc into master Sep 14, 2022
@rv-jenkins rv-jenkins deleted the foundry-cfgs branch September 14, 2022 04:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Construct KCFGs for each foundry spec instead of a K spec file
4 participants