forked from rubinius/rubinius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytecode_verification.hpp
53 lines (40 loc) · 982 Bytes
/
bytecode_verification.hpp
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
#ifndef RBX_BYTECODE_VERIFICATION
#define RBX_BYTECODE_VERIFICATION
#include <stdint.h>
#include <list>
namespace rubinius {
class CompiledMethod;
class VM;
class Tuple;
class BytecodeVerification {
CompiledMethod* method_;
Tuple* ops_;
native_int total_;
int max_stack_allowed_;
int max_stack_seen_;
int32_t* stack_;
native_int locals_;
int max_stack_local_;
const char* fail_reason_;
int fail_ip_;
void fail(const char* reason, int ip) {
fail_reason_ = reason;
fail_ip_ = ip;
}
struct Section {
int sp;
int ip;
Section(int sp, int ip)
: sp(sp), ip(ip)
{}
};
public:
BytecodeVerification(CompiledMethod* cm);
~BytecodeVerification();
bool verify(VM* state);
bool verify_from(VM* state, int sp, int ip, std::list<Section>& ips);
const char* failure_reason() { return fail_reason_; }
int failure_ip() { return fail_ip_; }
};
}
#endif