forked from qmonnet/rbpf
-
Notifications
You must be signed in to change notification settings - Fork 178
/
elf_loader.rs
82 lines (75 loc) · 2.27 KB
/
elf_loader.rs
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
// Copyright 2020 Solana Maintainers <[email protected]>
//
// Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
// the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
#![feature(test)]
extern crate solana_rbpf;
extern crate test;
extern crate test_utils;
use solana_rbpf::{
elf::Executable,
syscalls::{BpfSyscallContext, BpfSyscallU64},
user_error::UserError,
vm::{Config, SyscallObject, SyscallRegistry, TestInstructionMeter},
};
use std::{fs::File, io::Read};
use test::Bencher;
fn syscall_registry() -> SyscallRegistry {
let mut syscall_registry = SyscallRegistry::default();
syscall_registry
.register_syscall_by_name(
b"log_64",
BpfSyscallU64::init::<BpfSyscallContext, UserError>,
BpfSyscallU64::call,
)
.unwrap();
syscall_registry
}
#[bench]
fn bench_load_elf(bencher: &mut Bencher) {
let mut file = File::open("tests/elfs/noro.so").unwrap();
let mut elf = Vec::new();
file.read_to_end(&mut elf).unwrap();
bencher.iter(|| {
Executable::<UserError, TestInstructionMeter>::from_elf(
&elf,
None,
Config::default(),
syscall_registry(),
)
.unwrap()
});
}
#[bench]
fn bench_load_elf_without_syscall(bencher: &mut Bencher) {
let mut file = File::open("tests/elfs/noro.so").unwrap();
let mut elf = Vec::new();
file.read_to_end(&mut elf).unwrap();
bencher.iter(|| {
let executable = Executable::<UserError, TestInstructionMeter>::from_elf(
&elf,
None,
Config::default(),
syscall_registry(),
)
.unwrap();
executable
});
}
#[bench]
fn bench_load_elf_with_syscall(bencher: &mut Bencher) {
let mut file = File::open("tests/elfs/noro.so").unwrap();
let mut elf = Vec::new();
file.read_to_end(&mut elf).unwrap();
bencher.iter(|| {
let executable = Executable::<UserError, TestInstructionMeter>::from_elf(
&elf,
None,
Config::default(),
syscall_registry(),
)
.unwrap();
executable
});
}