From 8d519259ec1eee8119521d6e075fa4a40b033059 Mon Sep 17 00:00:00 2001 From: Allan Blanchard <allan.blanchard@cea.fr> Date: Mon, 12 Sep 2022 16:14:51 +0200 Subject: [PATCH] [wp/doc] adds an index to be completed --- src/plugins/wp/wp.ml | 173 +++++++++++++++++++++++++++++++------------ 1 file changed, 126 insertions(+), 47 deletions(-) diff --git a/src/plugins/wp/wp.ml b/src/plugins/wp/wp.ml index 037fd72723f..8ee6834f276 100644 --- a/src/plugins/wp/wp.ml +++ b/src/plugins/wp/wp.ml @@ -20,64 +20,143 @@ (* *) (**************************************************************************) -module Wp_parameters = Wp_parameters -module Ctypes = Ctypes -module Clabels = Clabels +(** This the API of the WP plug-in *) + +(** {1 WP Core calculus} *) + +module CfgAnnot = CfgAnnot +module CfgCalculus = CfgCalculus +module CfgCompiler = CfgCompiler +module CfgDump = CfgDump +module CfgGenerator = CfgGenerator +module CfgInfos = CfgInfos +module CfgInit = CfgInit +module CfgWP = CfgWP + +(** {1 Memory models}*) + +module MemDebug = MemDebug +module MemEmpty = MemEmpty +module MemLoader = MemLoader +module MemMemory = MemMemory +module MemRegion = MemRegion +module MemTyped = MemTyped +module MemVal = MemVal +module MemVar = MemVar +module MemZeroAlias = MemZeroAlias + +(** {2 Alias analysis and hypotheses}*) + module MemoryContext = MemoryContext -module LogicUsage = LogicUsage module RefUsage = RefUsage -module NormatLabels = NormAtLabels -module WpPropId = WpPropId -module Mcfg = Mcfg -module Context = Context -module Warning = Warning -module Lang = Lang -module Repr = Repr -module Passive = Passive -module Splitter = Splitter -module LogicBuiltins = LogicBuiltins +module WpTarget = WpTarget + +(** {1 Compiler}*) + +module CodeSemantics = CodeSemantics +module Conditions = Conditions module Definitions = Definitions -module Cint = Cint +module LogicAssigns = LogicAssigns +module LogicBuiltins = LogicBuiltins +module LogicCompiler = LogicCompiler +module LogicSemantics = LogicSemantics +module LogicUsage = LogicUsage +module StmtSemantics = StmtSemantics + +module AssignsCompleteness = AssignsCompleteness +module Cache = Cache module Cfloat = Cfloat -module Vset = Vset +module Cint = Cint +module Clabels = Clabels +module Cleaning = Cleaning +module Cmath = Cmath +module Context = Context module Cstring = Cstring -module Sigs = Sigs -module Mstate = Mstate -module Conditions = Conditions +module Ctypes = Ctypes +module Cvalues = Cvalues +module Driver = Driver +module Dyncall = Dyncall +module Factory = Factory +module Filter_axioms = Filter_axioms module Filtering = Filtering -module Plang = Plang +module Footprint = Footprint +module Generator = Generator +module Lang = Lang +module Layout = Layout +module Letify = Letify +module Matrix = Matrix +module Mstate = Mstate +module NormAtLabels = NormAtLabels +module Passive = Passive module Pcfg = Pcfg module Pcond = Pcond -module CodeSemantics = CodeSemantics -module LogicCompiler = LogicCompiler -module LogicSemantics = LogicSemantics +module Plang = Plang +module ProofSession = ProofSession +module Prover = Prover +module ProverScript = ProverScript +module ProverSearch = ProverSearch +module ProverTask = ProverTask +module ProverWhy3 = ProverWhy3 + +module RegionAccess = RegionAccess +module RegionAnalysis = RegionAnalysis +module RegionAnnot = RegionAnnot +module RegionDump = RegionDump +module Region = Region +module Register = Register +module Repr = Repr +module Rformat = Rformat module Sigma = Sigma -module MemVar = MemVar -module MemTyped = MemTyped -module CfgCompiler = CfgCompiler -module StmtSemantics = StmtSemantics -module Factory = Factory -module Driver = Driver -module VCS = VCS -module Tactical = Tactical -module Strategy = Strategy -module Auto = Auto +module Sigs = Sigs +module Splitter = Splitter +module Stats = Stats module VC = VC +module VCS = VCS +module Warning = Warning +module Why3Provers = Why3Provers +module WpContext = WpContext +module Wp_error = Wp_error +module Wp_eva = Wp_eva module Wpo = Wpo -module ProverTask = ProverTask -module Prover = Prover -module AssignsCompleteness = AssignsCompleteness +module Wp_parameters = Wp_parameters +module WpPropId = WpPropId +module WpReached = WpReached +module WpReport = WpReport +module Wprop = Wprop +module WpRTE = WpRTE +module WpTac = WpTac + +(** {1 Interactive proof} *) -(** For gui *) +module Auto = Auto module ProofEngine = ProofEngine module ProofScript = ProofScript -module ProofSession = ProofSession -module ProverScript = ProverScript -module ProverSearch = ProverSearch -module WpRTE = WpRTE -module Rformat = Rformat -module WpContext = WpContext -module Why3Provers = Why3Provers -module ProverWhy3 = ProverWhy3 -module Cache = Cache -module WpTarget = WpTarget +module Script = Script +module Strategy = Strategy +module Tactical = Tactical + +(** {2 Tactics}*) + +module TacArray = TacArray +module TacBitrange = TacBitrange +module TacBittest = TacBittest +module TacBitwised = TacBitwised +module TacChoice = TacChoice +module TacClear = TacClear +module TacCompound = TacCompound +module TacCongruence = TacCongruence +module TacCut = TacCut +module TacFilter = TacFilter +module TacHavoc = TacHavoc +module TacInduction = TacInduction +module TacInstance = TacInstance +module TacLemma = TacLemma +module TacModMask = TacModMask +module TacNormalForm = TacNormalForm +module TacOverflow = TacOverflow +module TacRange = TacRange +module TacRewrite = TacRewrite +module TacSequence = TacSequence +module TacShift = TacShift +module TacSplit = TacSplit +module TacUnfold = TacUnfold -- GitLab