Skip to content

Commit

Permalink
Merge branch 'develop' into _update-deps/runtimeverification/llvm-bac…
Browse files Browse the repository at this point in the history
…kend
  • Loading branch information
theo25 authored Sep 25, 2024
2 parents 5e64411 + 315cf79 commit 758135a
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 62 deletions.
8 changes: 8 additions & 0 deletions pyk/src/pyk/kcfg/semantics.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def abstract_node(self, c: CTerm) -> CTerm: ...

"""Implement an abstraction mechanism."""

@abstractmethod
def is_loop(self, c: CTerm) -> bool: ...

"""Check whether or not the given ``CTerm`` represents a loop head."""

@abstractmethod
def same_loop(self, c1: CTerm, c2: CTerm) -> bool: ...

Expand Down Expand Up @@ -47,6 +52,9 @@ def is_terminal(self, c: CTerm) -> bool:
def abstract_node(self, c: CTerm) -> CTerm:
return c

def is_loop(self, c: CTerm) -> bool:
return False

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
return False

Expand Down
2 changes: 1 addition & 1 deletion pyk/src/pyk/proof/reachability.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ def _check_subsume(self, node: KCFG.Node, target_node: KCFG.Node, proof_id: str)
def step_proof(self, step: APRProofStep) -> list[APRProofResult]:
# Check if the current node should be bounded
prior_loops: tuple[int, ...] = ()
if step.bmc_depth is not None:
if step.bmc_depth is not None and self.kcfg_explore.kcfg_semantics.is_loop(step.node.cterm):
for node in step.shortest_path_to_node:
if self.kcfg_explore.kcfg_semantics.same_loop(node.cterm, step.node.cterm):
if node.id in step.prior_loops_cache:
Expand Down
11 changes: 10 additions & 1 deletion pyk/src/tests/integration/ktool/test_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,19 @@ def is_terminal(self, c: CTerm) -> bool:
def abstract_node(self, c: CTerm) -> CTerm:
return c

def is_loop(self, c: CTerm) -> bool:
k_cell = c.cell('K_CELL')
return (
type(k_cell) is KSequence
and type(k_cell[0]) is KApply
and len(k_cell) > 0
and k_cell[0].label.name == 'while(_)_'
)

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
k_cell_1 = c1.cell('K_CELL')
k_cell_2 = c2.cell('K_CELL')
if k_cell_1 == k_cell_2 and type(k_cell_1) is KSequence and type(k_cell_1[0]) is KApply:
if k_cell_1 == k_cell_2 and type(k_cell_1) is KSequence and len(k_cell_1) > 0 and type(k_cell_1[0]) is KApply:
return k_cell_1[0].label.name == 'while(_)_'
return False

Expand Down
12 changes: 0 additions & 12 deletions pyk/src/tests/integration/proof/test_custom_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,6 @@ def is_terminal(self, c: CTerm) -> bool:
return True
return False

def abstract_node(self, c: CTerm) -> CTerm:
return c

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
return False

def can_make_custom_step(self, c: CTerm) -> bool:
return False

def custom_step(self, c: CTerm) -> KCFGExtendResult | None:
return None


class CustomStepSemanticsWithStep(CustomStepSemanticsWithoutStep):
def can_make_custom_step(self, c: CTerm) -> bool:
Expand Down
20 changes: 8 additions & 12 deletions pyk/src/tests/integration/proof/test_goto.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,21 @@
from pyk.cterm import CTerm
from pyk.kast.outer import KDefinition
from pyk.kcfg import KCFGExplore
from pyk.kcfg.kcfg import KCFGExtendResult
from pyk.kcfg.semantics import KCFGSemantics
from pyk.ktool.kprove import KProve

_LOGGER: Final = logging.getLogger(__name__)


class GotoSemantics(DefaultSemantics):
def is_terminal(self, c: CTerm) -> bool:
return False

def abstract_node(self, c: CTerm) -> CTerm:
return c
def is_loop(self, c: CTerm) -> bool:
k_cell = c.cell('K_CELL')
return (
type(k_cell) is KSequence
and len(k_cell) > 0
and type(k_cell[0]) is KApply
and k_cell[0].label.name == 'jumpi'
)

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
k_cell = c1.cell('K_CELL')
Expand All @@ -45,12 +47,6 @@ def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
return k_cell[0].label.name == 'jumpi'
return False

def can_make_custom_step(self, c: CTerm) -> bool:
return False

def custom_step(self, c: CTerm) -> KCFGExtendResult | None:
return None


APRBMC_PROVE_TEST_DATA: Iterable[
tuple[str, Path, str, str, int | None, int | None, int, Iterable[str], Iterable[str], ProofStatus, int]
Expand Down
19 changes: 9 additions & 10 deletions pyk/src/tests/integration/proof/test_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
from pyk.kast.inner import KInner
from pyk.kast.outer import KDefinition
from pyk.kcfg import KCFGExplore
from pyk.kcfg.kcfg import KCFGExtendResult
from pyk.kcfg.semantics import KCFGSemantics
from pyk.ktool.kprint import KPrint, SymbolTable
from pyk.ktool.kprove import KProve
Expand Down Expand Up @@ -65,22 +64,22 @@ def is_terminal(self, c: CTerm) -> bool:
return True
return False

def abstract_node(self, c: CTerm) -> CTerm:
return c
def is_loop(self, c: CTerm) -> bool:
k_cell = c.cell('K_CELL')
return (
type(k_cell) is KSequence
and len(k_cell) > 0
and type(k_cell[0]) is KApply
and k_cell[0].label.name == 'while(_)_'
)

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
k_cell_1 = c1.cell('K_CELL')
k_cell_2 = c2.cell('K_CELL')
if k_cell_1 == k_cell_2 and type(k_cell_1) is KSequence and type(k_cell_1[0]) is KApply:
if k_cell_1 == k_cell_2 and type(k_cell_1) is KSequence and len(k_cell_1) > 0 and type(k_cell_1[0]) is KApply:
return k_cell_1[0].label.name == 'while(_)_'
return False

def can_make_custom_step(self, c: CTerm) -> bool:
return False

def custom_step(self, c: CTerm) -> KCFGExtendResult | None:
return None


EMPTY_STATES: Final[list[tuple[str, str]]] = []
EXECUTE_TEST_DATA: Final = (
Expand Down
13 changes: 0 additions & 13 deletions pyk/src/tests/integration/proof/test_refute_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
from pyk.kast.inner import KInner
from pyk.kast.outer import KDefinition
from pyk.kcfg import KCFGExplore
from pyk.kcfg.kcfg import KCFGExtendResult
from pyk.kcfg.semantics import KCFGSemantics
from pyk.ktool.kprove import KProve

Expand Down Expand Up @@ -59,18 +58,6 @@ def is_terminal(self, c: CTerm) -> bool:
return True
return False

def abstract_node(self, c: CTerm) -> CTerm:
return c

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
return False

def can_make_custom_step(self, c: CTerm) -> bool:
return False

def custom_step(self, c: CTerm) -> KCFGExtendResult | None:
return None


REFUTE_NODE_TEST_DATA: Iterable[tuple[str, Iterable[KInner], ProofStatus]] = (
('refute-node-fail', (leInt(KVariable('N'), intToken(0)),), ProofStatus.FAILED),
Expand Down
13 changes: 0 additions & 13 deletions pyk/src/tests/integration/proof/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
from pyk.cterm import CTerm
from pyk.kast.outer import KDefinition
from pyk.kcfg import KCFGExplore
from pyk.kcfg.kcfg import KCFGExtendResult
from pyk.kcfg.semantics import KCFGSemantics
from pyk.ktool.kprove import KProve

Expand All @@ -31,18 +30,6 @@ def is_terminal(self, c: CTerm) -> bool:
return True
return False

def abstract_node(self, c: CTerm) -> CTerm:
return c

def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
return False

def can_make_custom_step(self, c: CTerm) -> bool:
return False

def custom_step(self, c: CTerm) -> KCFGExtendResult | None:
return None


class TestSimpleProof(KCFGExploreTest, KProveTest):
KOMPILE_MAIN_FILE = K_FILES / 'simple-proofs.k'
Expand Down

0 comments on commit 758135a

Please sign in to comment.