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

Minor Xcfa pass & oc checker fixes #316

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {

allprojects {
group = "hu.bme.mit.theta"
version = "6.7.0"
version = "6.7.1"

apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ class XcfaOcChecker(
val condWithConsts = stmt.cond.with(consts)
val asAssign =
consts.size == 1 &&
consts.keys.first().let { it is VarDecl<*> && it !in lastWrites }
consts.keys.first().let {
it is VarDecl<*> && it.threadVar(pid) !in lastWrites
}
if (edge.source.outgoingEdges.size > 1 || !asAssign) {
guard = guard + condWithConsts
if (firstLabel) {
Expand All @@ -320,6 +322,7 @@ class XcfaOcChecker(

is HavocStmt<*> -> {
last = event(stmt.varDecl, EventType.WRITE)
last.first().assignment = True()
}

is MemoryAssignStmt<*, *, *> -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ data class XcfaEdge(
fun withTarget(target: XcfaLocation): XcfaEdge = XcfaEdge(source, target, label, metadata)

fun withSource(source: XcfaLocation): XcfaEdge = XcfaEdge(source, target, label, metadata)

fun withMetadata(metadata: MetaData): XcfaEdge = XcfaEdge(source, target, label, metadata)
}

data class XcfaGlobalVar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package hu.bme.mit.theta.xcfa.passes

import hu.bme.mit.theta.core.stmt.Stmts.Assume
import hu.bme.mit.theta.core.type.booltype.BoolExprs.False
import hu.bme.mit.theta.core.type.booltype.BoolExprs.True
import hu.bme.mit.theta.xcfa.model.*

Expand All @@ -24,37 +25,54 @@ class EmptyEdgeRemovalPass : ProcedurePass {

override fun run(builder: XcfaProcedureBuilder): XcfaProcedureBuilder {
while (true) {
builder.getEdges().filter { it.label.isSureStuck() }.forEach { builder.removeEdge(it) }

val edge =
builder.getEdges().find {
it.label.isNop() &&
!it.target.error &&
!it.target.final &&
!it.source.initial &&
(it.source.outgoingEdges.size == 1 || it.target.incomingEdges.size == 1) &&
it.metadata is EmptyMetaData
(it.source.outgoingEdges.size == 1 || it.target.incomingEdges.size == 1)
} ?: return builder
val collapseBefore = edge.source.outgoingEdges.size == 1
builder.removeEdge(edge)
if (collapseBefore) {
val incomingEdges = edge.source.incomingEdges.toList()
incomingEdges.forEach { builder.removeEdge(it) }
incomingEdges.forEach { builder.addEdge(it.withTarget(edge.target)) }
incomingEdges.forEach {
builder.addEdge(
it.withTarget(edge.target).withMetadata(it.metadata.combine(edge.metadata))
)
}
builder.removeLoc(edge.source)
} else {
val outgoingEdges = edge.target.outgoingEdges.toList()
outgoingEdges.forEach { builder.removeEdge(it) }
outgoingEdges.forEach { builder.addEdge(it.withSource(edge.source)) }
outgoingEdges.forEach {
builder.addEdge(
it.withSource(edge.source).withMetadata(edge.metadata.combine(it.metadata))
)
}
builder.removeLoc(edge.target)
}
}
}

private fun XcfaLabel.isSureStuck(): Boolean =
when (this) {
is SequenceLabel -> labels.any { it.isSureStuck() }
is NondetLabel -> labels.all { it.isSureStuck() }
is StmtLabel -> stmt == Assume(False())
else -> false
}

private fun XcfaLabel.isNop(): Boolean =
when (this) {
is NondetLabel -> labels.all { it.isNop() }
is SequenceLabel -> labels.all { it.isNop() }
is NopLabel -> true
is StmtLabel -> stmt == Assume(True())
else -> false
}.and(metadata is EmptyMetaData)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ class UnusedVarPass(private val uniqueWarningLogger: Logger) : ProcedurePass {
} while (lastEdges != edges)

val allVars =
Sets.union(builder.getVars(), builder.parent.getVars().map { it.wrappedVar }.toSet())
Sets.union(
builder.parent.getProcedures().flatMap { it.getVars() }.toSet(),
builder.parent.getVars().map { it.wrappedVar }.toSet(),
)
val varsAndParams = Sets.union(allVars, builder.getParams().map { it.first }.toSet())
if (!varsAndParams.containsAll(usedVars)) {
uniqueWarningLogger.writeln(
Expand Down
Loading