Skip to content

Commit

Permalink
Update Submodules (#743)
Browse files Browse the repository at this point in the history
* Updates submodules

* changes to fit with new version of chopper

* removed entry from penalty config that will is going to be necessary for the next submodule update

---------

Co-authored-by: jcp19 <[email protected]>
Co-authored-by: Felix A. Wolf <[email protected]>
  • Loading branch information
3 people authored Mar 15, 2024
1 parent 131f8f4 commit 072c62a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
17 changes: 10 additions & 7 deletions src/main/scala/viper/gobra/reporting/StatsCollector.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import viper.gobra.frontend.Config
import viper.gobra.frontend.info.{Info, TypeInfo}
import viper.gobra.util.Violation
import viper.silver.ast.{Function, Member, Method, Predicate}
import viper.silver.ast.utility.Chopper.{Edges, Vertex}
import viper.silver.ast.utility.chopper.{Edges, Vertices}
import viper.silver.ast.utility.chopper.Vertices.Vertex
import viper.silver.reporter.Time

import scala.collection.concurrent.{Map, TrieMap}
Expand Down Expand Up @@ -162,7 +163,7 @@ case class StatsCollector(reporter: GobraReporter) extends GobraReporter {
taskName,
time,
ViperNodeType.withName(viperMember.getClass.getSimpleName),
Edges.dependencies(viperMember).flatMap(edge => vertexToName(edge._2)).toSet,
EdgesImpl.dependencies(viperMember).flatMap(edge => vertexToName(edge._2)).toSet,
success,
cached,
memberInfo.isImported,
Expand Down Expand Up @@ -193,6 +194,8 @@ case class StatsCollector(reporter: GobraReporter) extends GobraReporter {
reporter.report(msg)
}

private object EdgesImpl extends Edges with Vertices

private def gobraMemberKey(pkgId: String,memberName: String, args: String): String = pkgId + "." + memberName + args

private def viperMemberKey(taskName: String, viperMemberName: String): String = taskName + "-" + viperMemberName
Expand Down Expand Up @@ -241,11 +244,11 @@ case class StatsCollector(reporter: GobraReporter) extends GobraReporter {
* for the statistics
*/
private def vertexToName(vertex: Vertex): Option[String] = vertex match {
case Vertex.Method(name) => Some(name)
case Vertex.MethodSpec(name) => Some(name)
case Vertex.Function(name) => Some(name)
case Vertex.PredicateBody(name) => Some(name)
case Vertex.PredicateSig(name) => Some(name)
case Vertices.Method(name) => Some(name)
case Vertices.MethodSpec(name) => Some(name)
case Vertices.Function(name) => Some(name)
case Vertices.PredicateBody(name) => Some(name)
case Vertices.PredicateSig(name) => Some(name)
case _ => None
}

Expand Down
10 changes: 5 additions & 5 deletions src/main/scala/viper/gobra/util/ChopperUtil.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.nio.file.Files
import java.util.Properties
import viper.silver.{ast => vpr}
import viper.silver.ast.SourcePosition
import viper.silver.ast.utility.Chopper
import viper.silver.ast.utility.chopper
import viper.gobra.frontend.{Config, PackageInfo}
import viper.gobra.reporting.ChoppedViperMessage
import viper.gobra.backend.BackendVerifier.Task
Expand All @@ -25,7 +25,7 @@ object ChopperUtil {
def computeChoppedPrograms(task: Task, pkgInfo: PackageInfo)(config: Config): Vector[vpr.Program] = {


val programs = Chopper.chop(task.program)(
val programs = chopper.Chopper.chop(task.program)(
selection = computeIsolateMap(config, pkgInfo),
bound = Some(config.choppingUpperBound),
penalty = getPenalty
Expand Down Expand Up @@ -71,9 +71,9 @@ object ChopperUtil {
* then a penalty object using this configuration is created and returned.
* Otherwise, if no configuration is present, the default configuration is returned.
* */
def getPenalty: Chopper.Penalty[Chopper.Vertex] = {
def getPenalty: chopper.Penalty[chopper.Vertices.Vertex] = {
import scala.io.Source
import viper.silver.ast.utility.Chopper.Penalty
import viper.silver.ast.utility.chopper.Penalty

val file = new File(GobraChopperFileLocation)
if (!file.exists()) {
Expand All @@ -90,7 +90,7 @@ object ChopperUtil {
val penaltyConf = Penalty.PenaltyConfig(
method = get("method_body", dfltConf.method),
methodSpec = get("method_spec", dfltConf.methodSpec),
function = get("function", dfltConf.function),
function = get("function_body", dfltConf.function),
predicate = get("predicate_body", dfltConf.predicate),
predicateSig = get("predicate_spec", dfltConf.predicateSig),
field = get("field", dfltConf.field),
Expand Down
2 changes: 1 addition & 1 deletion viperserver
Submodule viperserver updated 2 files
+1 −1 carbon
+1 −1 silicon

0 comments on commit 072c62a

Please sign in to comment.