blob: 77a5d2c615ef4baff8004a4bc7adcc58f1423975 (
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
|
#include <ostream>
#include <wasm.h>
using namespace wasm;
int main() {
// A module with a function with a division by zero in the body
Module module;
Function func;
func.name = "func";
Binary div;
div.op = BinaryOp::DivS;
Const left;
left.value = 5;
Const right;
right.value = 0;
div.left = &left;
div.right = &right;
div.finalize();
func.body = ÷
module.addFunction(&func);
// Print it out
std::cout << module;
// Search it for divisions by zero: Walk the module, looking for
// that operation.
struct DivZeroSeeker : public WasmWalker {
void visitBinary(Binary* curr) {
// In every Binary, look for integer divisions
if (curr->op == BinaryOp::DivS || curr->op == BinaryOp::DivU) {
// Check if the right operand is a constant, and if it is 0
auto right = curr->right->dyn_cast<Const>();
if (right && right->value.getInteger() == 0) {
std::cout << "We found that " << curr->left << " is divided by zero\n";
}
}
}
};
DivZeroSeeker seeker;
seeker.startWalk(&module);
}
|