File: HeapAnalysis.cs

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (254 lines) | stat: -rw-r--r-- 8,178 bytes parent folder | download | duplicates (9)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// 
// HeapAnalysis.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.Collections.Generic;
using System.IO;
using Mono.CodeContracts.Static.AST;
using Mono.CodeContracts.Static.AST.Visitors;
using Mono.CodeContracts.Static.Analysis.HeapAnalysis.SymbolicGraph;
using Mono.CodeContracts.Static.ControlFlow;
using Mono.CodeContracts.Static.DataFlowAnalysis;
using Mono.CodeContracts.Static.DataStructures;
using Mono.CodeContracts.Static.Providers;

namespace Mono.CodeContracts.Static.Analysis.HeapAnalysis {
	class HeapAnalysis : IAnalysis<APC, Domain, IILVisitor<APC, int, int, Domain, Domain>, Dummy> {
		private readonly Dictionary<Pair<APC, APC>, IImmutableMap<SymbolicValue, Sequence<SymbolicValue>>> forwardRenamings =
			new Dictionary<Pair<APC, APC>, IImmutableMap<SymbolicValue, Sequence<SymbolicValue>>> ();

		public readonly Dictionary<APC, IMergeInfo> MergeInfoCache = new Dictionary<APC, IMergeInfo> ();
		public readonly DoubleDictionary<APC, APC, Dummy> RenamePoints = new DoubleDictionary<APC, APC, Dummy> ();
		private readonly ICodeLayer<int, int, IStackContextProvider, Dummy> stackLayer;
		private IFixPointInfo<APC, Domain> fixPointInfo;

		public HeapAnalysis (ICodeLayer<int, int, IStackContextProvider, Dummy> stackLayer)
		{
			this.stackLayer = stackLayer;
		}

		public IStackContextProvider StackContextProvider
		{
			get { return this.stackLayer.ILDecoder.ContextProvider; }
		}

		public IMetaDataProvider MetaDataProvider
		{
			get { return this.stackLayer.MetaDataProvider; }
		}

		public IContractProvider ContractProvider
		{
			get { return this.stackLayer.ContractProvider; }
		}

		public Method CurrentMethod
		{
			get { return this.StackContextProvider.MethodContext.CurrentMethod; }
		}

		IILVisitor<APC, int, int, Domain, Domain> IAnalysis<APC, Domain, IILVisitor<APC, int, int, Domain, Domain>, Dummy>.
			GetVisitor ()
		{
			return GetVisitor ();
		}

		public Domain Join (Pair<APC, APC> edge, Domain newstate, Domain prevstate, out bool weaker, bool widen)
		{
			if (DebugOptions.Debug)
			{
				Console.WriteLine ("-----OPT Join at {0}", edge);
				Console.WriteLine ("-----Existing state:");
				prevstate.Dump (Console.Out);
				Console.WriteLine ("-----New state:");
				newstate.Dump (Console.Out);
			}

			IMergeInfo mi;
			Domain domain = prevstate.Join (newstate, widen, out weaker, out mi);
			if (weaker) {
				IMergeInfo mi2;
				if (this.MergeInfoCache.TryGetValue (edge.Value, out mi2) && mi2 == null)
					this.MergeInfoCache [edge.Value] = mi;
			} else
				this.MergeInfoCache [edge.Value] = mi;

			if (DebugOptions.Debug)
			{
				Console.WriteLine ("-----Result state: changed = {0} (widen = {1})", weaker ? 1 : 0, widen ? 1 : 0);
				domain.Dump (Console.Out);
				Console.WriteLine ("----------------------------------------------");
			}

			return domain;
		}

		public Domain ImmutableVersion (Domain arg)
		{
			return arg.ImmutableVersion ();
		}

		public Domain MutableVersion (Domain arg)
		{
			if (arg.IsBottom)
				return arg;
			return arg.Clone ();
		}

		public Domain EdgeConversion (APC @from, APC to, bool isJoinPoint, Dummy data, Domain state)
		{
			if (isJoinPoint) {
				this.RenamePoints [from, to] = Dummy.Value;
				if (!this.MergeInfoCache.ContainsKey (to))
					this.MergeInfoCache.Add (to, null);
			}

			if (DebugOptions.Debug)
			{
				Console.WriteLine ("----Edge conversion on {0}->{1}------", from, to);
				state.Dump (Console.Out);
				Console.WriteLine ("-------------------------------------");
			}

			return state;
		}

		public bool IsBottom (APC pc, Domain state)
		{
			return state.IsBottom;
		}

		public Predicate<APC> SaveFixPointInfo (IFixPointInfo<APC, Domain> fixPointInfo)
		{
			this.fixPointInfo = fixPointInfo;
			return pc => true;
		}

		public void Dump (Pair<Domain, TextWriter> pair)
		{
			pair.Key.Dump (pair.Value);
		}

		private IILVisitor<APC, int, int, Domain, Domain> GetVisitor ()
		{
			return new AnalysisDecoder (this);
		}

		public Domain InitialValue ()
		{
			return new Domain (this);
		}

		public IILDecoder<APC, SymbolicValue, SymbolicValue, IValueContextProvider<SymbolicValue>, IImmutableMap<SymbolicValue, Sequence<SymbolicValue>>> 
			GetDecoder<Context>(IILDecoder<APC, int, int, Context, Dummy> underlying)
			where Context : IStackContextProvider
		{
			return new ValueDecoder<Context> (this, underlying);
		}

		public bool IsUnreachable (APC pc)
		{
			Domain domain;
			if (!this.fixPointInfo.PreStateLookup (pc, out domain) || domain.IsBottom)
				return true;

			return false;
		}

		public IImmutableMap<SymbolicValue, Sequence<SymbolicValue>> EdgeRenaming (Pair<APC, APC> edge, bool isJoinPoint)
		{
			IImmutableMap<SymbolicValue, Sequence<SymbolicValue>> forwardRenaming;

			if (this.forwardRenamings.TryGetValue (edge, out forwardRenaming))
				return forwardRenaming;

			IImmutableMap<SymbolicValue, Sequence<SymbolicValue>> renaming = null;
			Domain afterBegin;
			PostStateLookup (edge.Key, out afterBegin);
			if (afterBegin == null || afterBegin.IsBottom)
				return null;
			Domain beforeEnd;
			PreStateLookup (edge.Value, out beforeEnd);
			if (beforeEnd != null) {
				IImmutableMap<SymValue, Sequence<SymValue>> forward;
				if (!TryComputeFromJoinCache (afterBegin, beforeEnd, edge.Value, out forward)) {
					IImmutableMap<SymValue, SymValue> backward;
					if (!afterBegin.LessEqual (beforeEnd, out forward, out backward))
						throw new InvalidOperationException ("Should never happen");
					if (isJoinPoint && forward == null)
						forward = afterBegin.GetForwardIdentityMap ();
				}
				if (forward != null) {
					renaming = ImmutableIntKeyMap<SymbolicValue, Sequence<SymbolicValue>>.Empty (SymbolicValue.GetUniqueKey);
					foreach (SymValue sv in forward.Keys) {
						Sequence<SymbolicValue> targets = null;
						foreach (SymValue target in forward [sv].AsEnumerable ())
							targets = targets.Cons (new SymbolicValue (target));
						if (targets != null)
							renaming = renaming.Add (new SymbolicValue (sv), targets);
					}
				}
			}
			this.forwardRenamings.Add (edge, renaming);
			return renaming;
		}

		private bool TryComputeFromJoinCache (Domain inDomain, Domain outDomain, APC joinPoint, out IImmutableMap<SymValue, Sequence<SymValue>> forward)
		{
			forward = null;
			IMergeInfo mi;
			if (this.MergeInfoCache.TryGetValue (joinPoint, out mi) && mi != null && outDomain.IsResultEGraph (mi)) {
				if (inDomain.IsGraph1 (mi)) {
					forward = mi.ForwardG1Map;
					return true;
				}
				if (inDomain.IsGraph2 (mi)) {
					forward = mi.ForwardG2Map;
					return true;
				}
			}
			return false;
		}

		public Domain GetPreState (APC pc)
		{
			Domain domain;
			PreStateLookup (pc, out domain);
			return domain;
		}

		public bool PreStateLookup (APC pc, out Domain ifFound)
		{
			return this.fixPointInfo.PreStateLookup (pc, out ifFound);
		}

		public bool PostStateLookup (APC pc, out Domain ifFound)
		{
			return this.fixPointInfo.PostStateLookup (pc, out ifFound);
		}
	}
}