mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
431 B
11 lines
431 B
3 years ago
|
# Boa Benchmarks
|
||
4 years ago
|
|
||
3 years ago
|
For each js script in the `bench_scripts` folder, we create three benchmarks:
|
||
4 years ago
|
|
||
3 years ago
|
- Parser => lexing and parsing of the source code
|
||
|
- Compiler => compilation of the parsed statement list into bytecode
|
||
|
- Execution => execution of the bytecode in the vm
|
||
4 years ago
|
|
||
3 years ago
|
The idea is to check the performance of Boa in different scenarios.
|
||
|
Different parts of Boa are benchmarked separately to make the impact of local changes visible.
|