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
use crate::{
dataflow_domains::{AbstractDomain, JoinResult},
stackless_bytecode::Bytecode,
stackless_control_flow_graph::{BlockId, StacklessControlFlowGraph},
};
use move_binary_format::file_format::CodeOffset;
use std::{
collections::{BTreeMap, VecDeque},
fmt::Debug,
};
#[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct BlockState<State: Clone> {
pub pre: State,
pub post: State,
}
pub type StateMap<State> = BTreeMap<BlockId, BlockState<State>>;
pub trait TransferFunctions {
type State: AbstractDomain + Clone;
const BACKWARD: bool;
fn execute_block(
&self,
block_id: BlockId,
mut state: Self::State,
instrs: &[Bytecode],
cfg: &StacklessControlFlowGraph,
) -> Self::State {
if cfg.is_dummmy(block_id) {
return state;
}
let instr_inds = cfg.instr_indexes(block_id).unwrap();
if Self::BACKWARD {
for offset in instr_inds.rev() {
let instr = &instrs[offset as usize];
self.execute(&mut state, instr, offset);
}
} else {
for offset in instr_inds {
let instr = &instrs[offset as usize];
self.execute(&mut state, instr, offset);
}
}
state
}
fn execute(&self, state: &mut Self::State, instr: &Bytecode, offset: CodeOffset);
}
pub trait DataflowAnalysis: TransferFunctions {
fn analyze_function(
&self,
initial_state: Self::State,
instrs: &[Bytecode],
cfg: &StacklessControlFlowGraph,
) -> StateMap<Self::State> {
let mut state_map: StateMap<Self::State> = StateMap::new();
let mut work_list = VecDeque::new();
work_list.push_back(cfg.entry_block());
state_map.insert(
cfg.entry_block(),
BlockState {
pre: initial_state.clone(),
post: initial_state.clone(),
},
);
while let Some(block_id) = work_list.pop_front() {
let pre = state_map.get(&block_id).expect("basic block").pre.clone();
let post = self.execute_block(block_id, pre, instrs, cfg);
for next_block_id in cfg.successors(block_id) {
match state_map.get_mut(next_block_id) {
Some(next_block_res) => {
let join_result = next_block_res.pre.join(&post);
match join_result {
JoinResult::Unchanged => {
continue;
}
JoinResult::Changed => {
work_list.push_back(*next_block_id);
}
}
}
None => {
state_map.insert(
*next_block_id,
BlockState {
pre: post.clone(),
post: initial_state.clone(),
},
);
work_list.push_back(*next_block_id);
}
}
}
state_map.get_mut(&block_id).expect("basic block").post = post;
}
state_map
}
fn state_per_instruction<A, F>(
&self,
state_map: StateMap<Self::State>,
instrs: &[Bytecode],
cfg: &StacklessControlFlowGraph,
mut f: F,
) -> BTreeMap<CodeOffset, A>
where
F: FnMut(&Self::State, &Self::State) -> A,
{
let mut result = BTreeMap::new();
for (block_id, block_state) in state_map {
let mut state = block_state.pre;
if !cfg.is_dummmy(block_id) {
let instr_inds = cfg.instr_indexes(block_id).unwrap();
if Self::BACKWARD {
for offset in instr_inds.rev() {
let after = state.clone();
self.execute(&mut state, &instrs[offset as usize], offset);
result.insert(offset, f(&state, &after));
}
} else {
for offset in instr_inds {
let before = state.clone();
self.execute(&mut state, &instrs[offset as usize], offset);
result.insert(offset, f(&before, &state));
}
}
}
}
result
}
}