1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
//
// ForwardAnalysis.cs
//
// Authors:
// Alexander Chebaturkin (chebaturkin@gmail.com)
//
// Copyright (C) 2011 Alexander Chebaturkin
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.IO;
using Mono.CodeContracts.Static.AST.Visitors;
using Mono.CodeContracts.Static.Analysis;
using Mono.CodeContracts.Static.ControlFlow;
using Mono.CodeContracts.Static.DataStructures;
using Mono.CodeContracts.Static.Providers;
namespace Mono.CodeContracts.Static.DataFlowAnalysis {
class ForwardAnalysis<AbstractState, EdgeData> :
ForwardDataFlowAnalysisBase<AbstractState>,
IFixPointInfo<APC, AbstractState> {
private readonly Action<Pair<AbstractState, TextWriter>> dumper;
private readonly EdgeConverter<APC, AbstractState, EdgeData> edge_converter;
private readonly Func<APC, APC, EdgeData> edge_data_getter;
private readonly Func<AbstractState, AbstractState> immutable_version;
private readonly Func<APC, AbstractState, bool> is_bottom;
private readonly Joiner<APC, AbstractState> joiner;
private readonly Func<AbstractState, AbstractState> mutable_version;
private readonly Func<APC, AbstractState, AbstractState> transfer;
public ForwardAnalysis (ICFG cfg,
Func<APC, AbstractState, AbstractState> transfer,
Joiner<APC, AbstractState> joiner,
Func<AbstractState, AbstractState> immutableVersion,
Func<AbstractState, AbstractState> mutableVersion,
EdgeConverter<APC, AbstractState, EdgeData> edgeConverter,
Func<APC, APC, EdgeData> edgeDataGetter,
Func<APC, AbstractState, bool> isBottom,
Action<Pair<AbstractState, TextWriter>> dumper) : base (cfg)
{
this.transfer = transfer;
this.joiner = joiner;
this.immutable_version = immutableVersion;
this.mutable_version = mutableVersion;
this.edge_converter = edgeConverter;
this.edge_data_getter = edgeDataGetter;
this.is_bottom = isBottom;
this.dumper = dumper;
}
#region IFixPointInfo<APC,AbstractState> Members
public bool PreStateLookup (APC pc, out AbstractState state)
{
return GetPreState (pc, out state);
}
public bool PostStateLookup (APC pc, out AbstractState state)
{
return GetPostState (pc, out state);
}
#endregion
public static ForwardAnalysis<AbstractState, EdgeData> Make<Source, Dest, Context> (
IILDecoder<APC, Source, Dest, Context, EdgeData> decoder,
IAnalysis<APC, AbstractState, IILVisitor<APC, Source, Dest, AbstractState, AbstractState>, EdgeData> analysis)
where Context : IMethodContextProvider
{
IILVisitor<APC, Source, Dest, AbstractState, AbstractState> visitor = analysis.GetVisitor ();
var forwardAnalysisSolver = new ForwardAnalysis<AbstractState, EdgeData> (
decoder.ContextProvider.MethodContext.CFG,
(pc, state) => decoder.ForwardDecode<AbstractState, AbstractState, IILVisitor<APC, Source, Dest, AbstractState, AbstractState>> (pc, visitor, state),
analysis.Join,
analysis.ImmutableVersion,
analysis.MutableVersion,
analysis.EdgeConversion,
decoder.EdgeData,
(pc, state) => {
if (!decoder.IsUnreachable (pc))
return analysis.IsBottom (pc, state);
return true;
},
analysis.Dump
);
analysis.SaveFixPointInfo (forwardAnalysisSolver);
return forwardAnalysisSolver;
}
protected override void Dump (AbstractState state)
{
this.dumper (new Pair<AbstractState, TextWriter> (state, Console.Out));
}
protected override void PushState (APC from, APC next, AbstractState state)
{
EdgeData data = this.edge_data_getter (from, next);
AbstractState pushState = this.edge_converter (from, next, RequiresJoining (next), data, state);
base.PushState (from, next, pushState);
}
protected override bool Join (Pair<APC, APC> edge, AbstractState newState, AbstractState existingState, out AbstractState joinedState, bool widen)
{
bool weaker;
joinedState = this.joiner (edge, newState, existingState, out weaker, widen);
return weaker;
}
protected override bool IsBottom (APC pc, AbstractState state)
{
return this.is_bottom (pc, state);
}
protected override AbstractState Transfer (APC pc, AbstractState state)
{
AbstractState resultState = this.transfer (pc, state);
return resultState;
}
protected override AbstractState MutableVersion (AbstractState state, APC at)
{
return this.mutable_version (state);
}
protected override AbstractState ImmutableVersion (AbstractState state, APC at)
{
return this.immutable_version (state);
}
}
}
|