mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
LibWasm: Increase the arbitrary local value count per type limit
It was arbitrary, it's still arbitrary, but now it's funny too :^)
This commit is contained in:
parent
a6c4b6848b
commit
82a515a748
1 changed files with 1 additions and 1 deletions
|
@ -41,6 +41,6 @@ static constexpr auto page_size = 64 * KiB;
|
||||||
static constexpr auto minimum_stack_space_to_keep_free = 256 * KiB; // Note: Value is arbitrary and chosen by testing with ASAN
|
static constexpr auto minimum_stack_space_to_keep_free = 256 * KiB; // Note: Value is arbitrary and chosen by testing with ASAN
|
||||||
static constexpr auto max_allowed_executed_instructions_per_call = 256 * 1024 * 1024;
|
static constexpr auto max_allowed_executed_instructions_per_call = 256 * 1024 * 1024;
|
||||||
static constexpr auto max_allowed_vector_size = 2 * MiB;
|
static constexpr auto max_allowed_vector_size = 2 * MiB;
|
||||||
static constexpr auto max_allowed_function_locals_per_type = 420; // Note: VERY arbitrary.
|
static constexpr auto max_allowed_function_locals_per_type = 42069; // Note: VERY arbitrary.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue