1 / 4

Separation Logic Prover

Separation Logic Prover. Goal. Assertion Language Assert :: Formula  Formula Formula :: ( pureF ‘|’ spaF ) | Formula / Formula pureF :: term / term | true spaF :: sterm * sterm term :: exp relop exp | id( explist ) sterm :: exp  exp | id( explist ) | emp

odetta
Download Presentation

Separation Logic Prover

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Separation Logic Prover

  2. Goal • Assertion Language • Assert :: Formula  Formula • Formula :: (pureF ‘|’ spaF) | Formula \/ Formula • pureF :: term /\ term | true • spaF :: sterm * sterm • term :: exp relop exp | id(explist) • sterm :: exp  exp | id(explist) | emp • Example • p=q | head -> v * head+4->p * lseg(q,NULL)  • true | list(head) * emp • Proof given assertion and generate Coq checkable proof term

  3. Status • Demo • list_alloclist_dealloclist_insert • function call • proof term of a small step in prover • Combine with Simplex Prover • Embedded “data structure” • lseg list clist • more… • Single assumption frame inference • Proof term generation • Coq library • Coding …

  4. Difficulties • User-defined data structure • hard to discover inductive axiom from definition • e.g. lseg(p,q)*lseg(q,r)  lseg(p,r) • Multi assumption frame inference • (A\/B) -> (C\/D) • what is a “frame” in this case?

More Related