summaryrefslogtreecommitdiffstats
path: root/org.eclipse.cdt.codan.extension/src/org/eclipse/cdt/codan/extension/PropertySimulator.java
blob: 1cd69119fab3f96dedb0a85daefaeb539ebcf5fd (plain)
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*******************************************************************************
 * Copyright (c) 2009 Elliott Baron
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Elliott Baron - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.codan.extension;

import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import java.util.Map.Entry;

import org.eclipse.cdt.core.dom.ast.IASTBinaryExpression;
import org.eclipse.cdt.core.dom.ast.IASTExpression;
import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
import org.eclipse.cdt.core.dom.ast.IASTIdExpression;
import org.eclipse.cdt.core.dom.ast.IASTLiteralExpression;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IASTUnaryExpression;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IVariable;
import org.eclipse.ptp.pldt.mpi.analysis.cdt.graphs.IBlock;
import org.eclipse.ptp.pldt.mpi.analysis.cdt.graphs.IControlFlowEdge;
import org.eclipse.ptp.pldt.mpi.analysis.cdt.graphs.IControlFlowGraph;

public class PropertySimulator {
	// Property simulation state info for CFG's edges
	private Map<IControlFlowEdge, Set<SymbolicState>> edgeInfo;
	private Queue<IBlock> worklist;
	private IControlFlowGraph cfg;
	private IPropertyFSM fsm;
	
	//XXX
	private Map<IBlock, Integer> exploreCount; 
	public PropertySimulator(IControlFlowGraph cfg, IPropertyFSM fsm) {
		this.cfg = cfg;
		this.fsm = fsm;
		worklist = new LinkedList<IBlock>();
		edgeInfo = new HashMap<IControlFlowEdge, Set<SymbolicState>>();
		exploreCount = new HashMap<IBlock, Integer>();
		for (IBlock blk : cfg.getBlocks()) {
			exploreCount.put(blk, 0);
		}
		solve();
		for (Entry<IBlock, Integer> entry : exploreCount.entrySet()) {
			if (entry.getValue().equals(0)) {
				IBlock blk = entry.getKey();
				System.out.println("Unprocessed block " + blk.getID() + ": ");
				blk.print();
			}
		}
	}

	private void solve() {
		for (IControlFlowEdge edge : cfg.getEdges()) {
			// Initialize edgeInfo for each edge
			Set<SymbolicState> set = new HashSet<SymbolicState>();
			edgeInfo.put(edge, set);
		}

		// Create edgeInfo for entry edge
		IControlFlowEdge entryEdge = cfg.getEntry().getOutEdges()[0];
		Set<SymbolicState> symStates = edgeInfo.get(entryEdge);
		Set<PropertyState> propStates = new HashSet<PropertyState>();
		propStates.add(fsm.getUninitState());
		symStates.add(new SymbolicState(propStates, new ExecutionState()));

		worklist.add(entryEdge.getTo());
		// XXX Debug
		System.out.println(printStates(entryEdge, symStates));

		while (!worklist.isEmpty()) {
			IBlock blk = worklist.remove();
			if (!blk.equals(cfg.getEntry()) && !blk.equals(cfg.getExit())) {
				Integer count = exploreCount.get(blk);
				exploreCount.put(blk, ++count);
			}
			
			if (isMerge(blk)) {
				// Apply flow function for a merge block
				Set<SymbolicState> newStates = flowMerge(blk, edgeInfo.get(blk.getInEdges()[0]), edgeInfo.get(blk.getInEdges()[1]));
				
				// Don't process the null exit block
				if (!blk.equals(cfg.getExit())) {
					add(blk.getOutEdges()[0], newStates);

					// XXX Debug
					System.out.println("MRG: " + printStates(blk.getOutEdges()[0], newStates));
				}
			}
			else if (isBranch(blk)) {
				// Apply flow function for a branch block
				Set<SymbolicState> oldStates = edgeInfo.get(blk.getInEdges()[0]);
				Set<SymbolicState> newStatesTrue = flowBranch(blk, oldStates, true);
				Set<SymbolicState> newStatesFalse = flowBranch(blk, oldStates, false);

				// Assumes 0th out-edge is true branch, 1st out-edge is false branch 
				add(blk.getOutEdges()[0], newStatesTrue);
				add(blk.getOutEdges()[1], newStatesFalse);
				
				// XXX Debug
				System.out.println("BR (T): " + printStates(blk.getOutEdges()[0], newStatesTrue));
				System.out.println("BR (F): " + printStates(blk.getOutEdges()[1], newStatesFalse));
			}
			else {
				// Apply flow function for a normal block
				Set<SymbolicState> newStates = flowOther(blk, edgeInfo.get(blk.getInEdges()[0]));
				
				// Don't process the null exit block
				if (!blk.equals(cfg.getExit())) {
					add(blk.getOutEdges()[0], newStates);
					// XXX Debug
					System.out.println("OTH: " + printStates(blk.getOutEdges()[0], newStates));
				}
			}
		}
	}

	private void add(IControlFlowEdge edge,
			Set<SymbolicState> ss) {
		//XXX
//		IBlock from = edge.getFrom();
//		if (from.getContent() != null
//				&& from.getContent().getRawSignature().contains("nextarg (\">\")")
//				&& edgeInfo.get(edge).size() > 0) {
//			System.out.println(printStates(edge, ss));
//			SymbolicState oldInfo = edgeInfo.get(edge).iterator().next();
//			SymbolicState newInfo = ss.iterator().next();
//			System.out.println("equals: " + oldInfo.equals(newInfo));
//			System.out.println("hashCode: " + (oldInfo.hashCode() == newInfo.hashCode()));
//		}
		if (!edgeInfo.get(edge).equals(ss)) {
			edgeInfo.put(edge, ss);
			worklist.add(edge.getTo());
		}
	}

	public Set<SymbolicState> getEndStates() {
		IControlFlowEdge exitEdge = cfg.getExit().getInEdges()[0];
		return edgeInfo.get(exitEdge);
	}
	
	private String printStates(IControlFlowEdge edge, Set<SymbolicState> states) {
		StringBuffer buf = new StringBuffer();
		IASTNode from = edge.getFrom().getContent();
		IASTNode to = edge.getTo().getContent();
		if (from != null) {
			IASTFileLocation loc = from.getFileLocation();
			if (loc != null) {
				int start = loc.getStartingLineNumber();
				int end = loc.getEndingLineNumber();
				if (start != end) {
					buf.append("lines " + start + " - " + end);
				}
				else {
					buf.append("line " + start);
				}
				buf.append(" ");
			}
		}
		buf.append("{");
		buf.append(from == null ? from : from.getRawSignature());
		buf.append(" -> ");
		buf.append(to == null ? to : to.getRawSignature());
		buf.append("} = ");
		buf.append(states);
		return buf.toString();		
	}

	private Set<SymbolicState> flowMerge(IBlock blk, Set<SymbolicState> ss1,
			Set<SymbolicState> ss2) {
		Set<SymbolicState> ret = new HashSet<SymbolicState>();
		ret.addAll(filterTruthAssignments(blk, ss1));
		ret.addAll(filterTruthAssignments(blk, ss2));
		return group(ret);
	}

	private Set<SymbolicState> filterTruthAssignments(IBlock blk, Set<SymbolicState> ss) {
		Set<SymbolicState> ret = new HashSet<SymbolicState>(ss.size());
		for (SymbolicState s : ss) {
			SymbolicState copy = s.copy();
			Set<IVariable> toRemove = new HashSet<IVariable>();
			Map<IVariable, TruthAssignment> truthAssignments = copy.getExecutionState().getTruthAssignments();
			for (Entry<IVariable, TruthAssignment> ta : truthAssignments.entrySet()) {
				// FIXME could be better
				// Remove truth assignments that were added by a block that doesn't dominate this one
				List<IBlock> dominators = blk.getDOM();
				IBlock origin = ta.getValue().getOrigin();
				if (!dominators.contains(origin)) {
					// Schedule removal
					toRemove.add(ta.getKey());
				}
			}
			// Actually remove
			for (IVariable var : toRemove) {
				truthAssignments.remove(var);
			}
			ret.add(copy);
		}
		return ret;
	}

	private Set<SymbolicState> flowBranch(IBlock blk, Set<SymbolicState> ss, boolean value) {
		Set<SymbolicState> ret = new HashSet<SymbolicState>();
		for (SymbolicState s : ss) {
			SymbolicState s0 = transferBranch(blk, s, value);
			if (!s0.getExecutionState().isBottom()) {
				ret.add(s0);
			}
		}
		return group(ret);
	}

	private Set<SymbolicState> flowOther(IBlock blk, Set<SymbolicState> ss) {
		Set<SymbolicState> ret = new HashSet<SymbolicState>();
		for (SymbolicState s : ss) {
			SymbolicState s0 = transferOther(blk, s);
			ret.add(s0);
		}
		return group(ret);
	}

	private Set<SymbolicState> group(Set<SymbolicState> ss) {
		return groupPropSim(ss);
	}
	
	private Set<SymbolicState> groupPSA(Set<SymbolicState> ss) {
		return ss;
	}
	
	private Set<SymbolicState> groupPropSim(Set<SymbolicState> ss) {
		Set<SymbolicState> ret = new HashSet<SymbolicState>();
		
		// Group SymbolicStates by PropertyState
		Map<PropertyState, Set<SymbolicState>> statesPerProperty = new HashMap<PropertyState, Set<SymbolicState>>();
		for (SymbolicState s : ss) {
			for (PropertyState ps : s.getPropertyStates()) {
				if (!statesPerProperty.containsKey(ps)) {
					statesPerProperty.put(ps, new HashSet<SymbolicState>());
				}
				Set<SymbolicState> states = statesPerProperty.get(ps);
				states.add(s);
			}
		}
		
		// Iterate through result and create SymbolicStates per PropertyState with ExecutionStates joined
		for (PropertyState p : statesPerProperty.keySet()) {
			Set<PropertyState> ps = new HashSet<PropertyState>();
			ps.add(p);
			Set<SymbolicState> ssForProperty = statesPerProperty.get(p);
			Set<ExecutionState> esForProperty = new HashSet<ExecutionState>();
			for (SymbolicState s : ssForProperty) {
				esForProperty.add(s.getExecutionState());
			}
			if (ssForProperty.size() > 1) {
				// Join execution states in this set
				ESTruthTable tt = new ESTruthTable(esForProperty);
				ESSimplifier simp = new ESSimplifier(tt);
				esForProperty = simp.getExecutionStateCover();
				
				for (ExecutionState e : esForProperty) {
					SymbolicState newState = new SymbolicState(ps, e);
					// Join corresponding error conditions
					if (p.equals(fsm.getErrorState())) {
						// Get original ExecutionStates implied by this prime implicant
						Set<ExecutionState> implied = simp.getImplications(e);
						// Find the appropriate SymbolicState
						for (ExecutionState orig : implied) {
							SymbolicState s = findSymbolicState(ssForProperty, orig);
							// Add its error cause to the joined state
							newState.getErrorCauses().addAll(s.getErrorCauses());
						}
					}
					ret.add(newState);
				}
			}
			else {
				// Nothing to do
				SymbolicState s = ssForProperty.iterator().next();
				ret.add(s);
			}
			
		}		
		
		return ret;
	}

	private SymbolicState findSymbolicState(Set<SymbolicState> ss, ExecutionState es) {
		for (SymbolicState s : ss) {
			if (s.getExecutionState().equals(es)) {
				return s;
			}
		}
		return null;
	}

	private SymbolicState transferBranch(IBlock blk, SymbolicState s, boolean value) {
		IASTNode node = blk.getContent();
		
		SymbolicState ret = s.copy();
		if (node != null) {			
			ConditionalVisitor visitor = new ConditionalVisitor(ret.getExecutionState(), value);
			node.accept(visitor);
		}
		
		return ret;
	}

	private SymbolicState transferOther(IBlock blk, SymbolicState s) {
		IASTNode node = blk.getContent();		
		
		if (node != null) {
			// Process property state transition
			Set<PropertyState> oldStates = s.getPropertyStates();
			Set<PropertyState> newStates = new HashSet<PropertyState>();
			for (PropertyState state : oldStates) {
				PropertyState dest = state.transition(node);
				// If we transition to from non-error to error, store the node that caused it
				if (!state.equals(fsm.getErrorState()) && dest.equals(fsm.getErrorState())) {
					s.getErrorCauses().add(node);
				}
				newStates.add(dest);
			}
			s.setPropertyStates(newStates);
			
			// Modify execution state according to variable assignments
			node.accept(new VariableAssignmentVisitor(blk, s.getExecutionState()));
		}
		return s;
	}

	private boolean isBranch(IBlock blk) {
		return blk.getOutEdges().length > 1;
	}

	private boolean isMerge(IBlock blk) {
		return blk.getInEdges().length > 1;
	}
	
}