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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
#![forbid(unsafe_code)]
use crate::coverage_map::{
ExecCoverageMap, ExecCoverageMapWithModules, ModuleCoverageMap, TraceMap,
};
use move_binary_format::{
access::ModuleAccess,
control_flow_graph::{BlockId, ControlFlowGraph, VMControlFlowGraph},
file_format::{Bytecode, CodeOffset},
CompiledModule,
};
use move_core_types::{identifier::Identifier, language_storage::ModuleId};
use petgraph::{algo::tarjan_scc, Graph};
use serde::{Deserialize, Serialize};
use std::{
collections::{BTreeMap, BTreeSet},
io::{self, Write},
};
#[derive(Debug, Serialize, Deserialize)]
pub struct ModuleSummary {
pub module_name: ModuleId,
pub function_summaries: BTreeMap<Identifier, FunctionSummary>,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct FunctionSummary {
pub fn_is_native: bool,
pub total: u64,
pub covered: u64,
}
pub struct FunctionInfo {
pub fn_name: Identifier,
pub fn_entry: CodeOffset,
pub fn_returns: BTreeSet<CodeOffset>,
pub fn_branches: BTreeMap<CodeOffset, BTreeSet<CodeOffset>>,
pub fn_num_paths: u64,
}
impl ModuleSummary {
pub fn summarize_csv<W: Write>(&self, summary_writer: &mut W) -> io::Result<()> {
let module = format!(
"{}::{}",
self.module_name.address(),
self.module_name.name()
);
let mut format_line = |fn_name, covered, uncovered| {
writeln!(
summary_writer,
"{},{},{},{}",
module, fn_name, covered, uncovered
)
};
for (fn_name, fn_summary) in self
.function_summaries
.iter()
.filter(|(_, summary)| !summary.fn_is_native)
{
format_line(fn_name, fn_summary.covered, fn_summary.total)?;
}
Ok(())
}
pub fn summarize_human<W: Write>(
&self,
summary_writer: &mut W,
summarize_function_coverage: bool,
) -> io::Result<(u64, u64)> {
let mut all_total = 0;
let mut all_covered = 0;
writeln!(
summary_writer,
"Module {}::{}",
self.module_name.address(),
self.module_name.name()
)?;
for (fn_name, fn_summary) in self.function_summaries.iter() {
all_total += fn_summary.total;
all_covered += fn_summary.covered;
if summarize_function_coverage {
let native = if fn_summary.fn_is_native {
"native "
} else {
""
};
writeln!(summary_writer, "\t{}fun {}", native, fn_name)?;
writeln!(summary_writer, "\t\ttotal: {}", fn_summary.total)?;
writeln!(summary_writer, "\t\tcovered: {}", fn_summary.covered)?;
writeln!(
summary_writer,
"\t\t% coverage: {:.2}",
fn_summary.percent_coverage()
)?;
}
}
let covered_percentage = (all_covered as f64) / (all_total as f64) * 100f64;
writeln!(
summary_writer,
">>> % Module coverage: {:.2}",
covered_percentage
)?;
Ok((all_total, all_covered))
}
}
impl FunctionSummary {
pub fn percent_coverage(&self) -> f64 {
(self.covered as f64) / (self.total as f64) * 100f64
}
}
pub fn summarize_inst_cov_by_module(
module: &CompiledModule,
module_map: Option<&ModuleCoverageMap>,
) -> ModuleSummary {
let module_name = module.self_id();
let function_summaries: BTreeMap<_, _> = module
.function_defs()
.iter()
.map(|function_def| {
let fn_handle = module.function_handle_at(function_def.function);
let fn_name = module.identifier_at(fn_handle.name).to_owned();
let fn_summmary = match &function_def.code {
None => FunctionSummary {
fn_is_native: true,
total: 0,
covered: 0,
},
Some(code_unit) => {
let total_number_of_instructions = code_unit.code.len() as u64;
let covered_instructions = module_map
.and_then(|fn_map| {
fn_map
.function_maps
.get(&fn_name)
.map(|function_map| function_map.len())
})
.unwrap_or(0) as u64;
FunctionSummary {
fn_is_native: false,
total: total_number_of_instructions,
covered: covered_instructions,
}
}
};
(fn_name, fn_summmary)
})
.collect();
ModuleSummary {
module_name,
function_summaries,
}
}
pub fn summarize_inst_cov(
module: &CompiledModule,
coverage_map: &ExecCoverageMap,
) -> ModuleSummary {
let module_name = module.self_id();
let module_map = coverage_map
.module_maps
.get(&(*module_name.address(), module_name.name().to_owned()));
summarize_inst_cov_by_module(module, module_map)
}
pub fn summarize_path_cov(module: &CompiledModule, trace_map: &TraceMap) -> ModuleSummary {
let module_name = module.self_id();
let func_info: BTreeMap<_, _> = module
.function_defs()
.iter()
.filter_map(|function_def| {
match &function_def.code {
None => None,
Some(code_unit) => {
let fn_cfg = VMControlFlowGraph::new(code_unit.code.as_slice());
let fn_entry = fn_cfg.block_start(fn_cfg.entry_block_id());
let mut fn_returns: BTreeSet<CodeOffset> = BTreeSet::new();
for block_id in fn_cfg.blocks().into_iter() {
for i in fn_cfg.block_start(block_id)..=fn_cfg.block_end(block_id) {
if let Bytecode::Ret = &code_unit.code[i as usize] {
fn_returns.insert(i);
}
}
}
let mut fn_dgraph: Graph<BlockId, ()> = Graph::new();
let block_to_node: BTreeMap<_, _> = fn_cfg
.blocks()
.into_iter()
.map(|block_id| (block_id, fn_dgraph.add_node(block_id)))
.collect();
for block_id in fn_cfg.blocks().into_iter() {
for succ_block_id in fn_cfg.successors(block_id).iter() {
fn_dgraph.add_edge(
*block_to_node.get(&block_id).unwrap(),
*block_to_node.get(succ_block_id).unwrap(),
(),
);
}
}
let scc_iter = tarjan_scc(&fn_dgraph).into_iter();
let mut fn_branches: BTreeMap<CodeOffset, BTreeSet<CodeOffset>> =
BTreeMap::new();
let mut path_nums: BTreeMap<usize, BTreeMap<usize, usize>> = BTreeMap::new();
let mut inst_locs: BTreeMap<CodeOffset, usize> = BTreeMap::new();
for (scc_idx, scc) in scc_iter.enumerate() {
for node_idx in scc.iter() {
let block_id = *fn_dgraph.node_weight(*node_idx).unwrap();
for i in fn_cfg.block_start(block_id)..=fn_cfg.block_end(block_id) {
assert!(inst_locs.insert(i, scc_idx).is_none());
}
}
let mut exits: BTreeSet<(CodeOffset, CodeOffset)> = BTreeSet::new();
for node_idx in scc.iter() {
let block_id = *fn_dgraph.node_weight(*node_idx).unwrap();
let term_inst_id = fn_cfg.block_end(block_id);
for dest in
Bytecode::get_successors(term_inst_id, code_unit.code.as_slice())
.into_iter()
{
if *inst_locs.get(&dest).unwrap() != scc_idx {
assert!(exits.insert((term_inst_id, dest)));
}
}
}
if exits.is_empty() {
assert!(path_nums.insert(scc_idx, BTreeMap::new()).is_none());
path_nums.get_mut(&scc_idx).unwrap().insert(scc_idx, 1);
} else {
let mut reachability: BTreeMap<usize, usize> = BTreeMap::new();
for (_, dst) in exits.iter() {
let dst_scc_idx = inst_locs.get(dst).unwrap();
for (path_end_scc, path_end_reach_set) in path_nums.iter() {
let reach_from_dst =
if let Some(v) = path_end_reach_set.get(dst_scc_idx) {
*v
} else {
0
};
let reach_from_scc =
reachability.entry(*path_end_scc).or_insert(0);
*reach_from_scc += reach_from_dst;
}
}
for (path_end_scc, path_end_reachability) in reachability.into_iter() {
assert!(path_nums
.get_mut(&path_end_scc)
.unwrap()
.insert(scc_idx, path_end_reachability)
.is_none());
}
if exits.len() > 1 {
for (src, dst) in exits.into_iter() {
fn_branches
.entry(src)
.or_insert_with(BTreeSet::new)
.insert(dst);
}
}
}
}
let entry_scc = inst_locs
.get(&fn_cfg.block_start(fn_cfg.entry_block_id()))
.unwrap();
let mut fn_num_paths: u64 = 0;
for (_, path_end_reachability) in path_nums {
fn_num_paths += if let Some(v) = path_end_reachability.get(entry_scc) {
*v as u64
} else {
0
};
}
let fn_name = module
.identifier_at(module.function_handle_at(function_def.function).name)
.to_owned();
Some((
fn_name.clone(),
FunctionInfo {
fn_name,
fn_entry,
fn_returns,
fn_branches,
fn_num_paths,
},
))
}
}
})
.collect();
let mut func_path_cov_stats: BTreeMap<
Identifier,
BTreeMap<BTreeSet<(CodeOffset, CodeOffset)>, u64>,
> = BTreeMap::new();
for (_, trace) in trace_map.exec_maps.iter() {
let mut call_stack: Vec<&FunctionInfo> = Vec::new();
let mut path_stack: Vec<BTreeSet<(CodeOffset, CodeOffset)>> = Vec::new();
let mut path_store: Vec<(Identifier, BTreeSet<(CodeOffset, CodeOffset)>)> = Vec::new();
for (index, record) in trace.iter().enumerate().filter(|(_, e)| {
e.module_addr == *module_name.address()
&& e.module_name.as_ident_str() == module_name.name()
}) {
let (info, is_call) = if let Some(last) = call_stack.last() {
if last.fn_name.as_ident_str() != record.func_name.as_ident_str() {
(func_info.get(&record.func_name).unwrap(), true)
} else if last.fn_entry == record.func_pc {
(*last, true)
} else {
(*last, false)
}
} else {
(func_info.get(&record.func_name).unwrap(), true)
};
if is_call {
assert_eq!(info.fn_entry, record.func_pc);
call_stack.push(info);
path_stack.push(BTreeSet::new());
}
let path = path_stack.last_mut().unwrap();
if let Some(dests) = info.fn_branches.get(&record.func_pc) {
let next_record = trace.get(index + 1).unwrap();
assert_eq!(record.func_name, next_record.func_name);
if dests.contains(&next_record.func_pc) {
assert!(path.insert((record.func_pc, next_record.func_pc)));
}
}
if info.fn_returns.contains(&record.func_pc) {
call_stack.pop().unwrap();
path_store.push((record.func_name.clone(), path_stack.pop().unwrap()));
}
}
if !call_stack.is_empty() {
call_stack.clear();
path_stack.clear();
path_store.clear();
} else {
for (func_name, path) in path_store.into_iter() {
let path_count = func_path_cov_stats
.entry(func_name)
.or_insert_with(BTreeMap::new)
.entry(path)
.or_insert(0);
*path_count += 1;
}
}
}
let function_summaries: BTreeMap<_, _> = module
.function_defs()
.iter()
.map(|function_def| {
let fn_handle = module.function_handle_at(function_def.function);
let fn_name = module.identifier_at(fn_handle.name).to_owned();
let fn_summmary = match &function_def.code {
None => FunctionSummary {
fn_is_native: true,
total: 0,
covered: 0,
},
Some(_) => FunctionSummary {
fn_is_native: false,
total: func_info.get(&fn_name).unwrap().fn_num_paths,
covered: match func_path_cov_stats.get(&fn_name) {
None => 0,
Some(pathset) => pathset.len() as u64,
},
},
};
(fn_name, fn_summmary)
})
.collect();
ModuleSummary {
module_name,
function_summaries,
}
}
impl ExecCoverageMapWithModules {
pub fn into_module_summaries(self) -> BTreeMap<String, ModuleSummary> {
let compiled_modules = self.compiled_modules;
self.module_maps
.into_iter()
.map(|((module_path, _, _), module_cov)| {
let module_summary = summarize_inst_cov_by_module(
compiled_modules.get(&module_path).unwrap(),
Some(&module_cov),
);
(module_path, module_summary)
})
.collect()
}
}