1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:37:34 +00:00

LibWasm: Move the vector size limit to Constants.h and increase it a bit

This commit is contained in:
Ali Mohammad Pur 2021-09-02 13:08:12 +04:30 committed by Ali Mohammad Pur
parent 566c5d1e99
commit d52a26de3f
2 changed files with 2 additions and 1 deletions

View file

@ -40,6 +40,7 @@ static constexpr auto page_size = 64 * KiB;
// These are not concretely defined by the spec, so the values are only defined by us.
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_vector_size = 2 * MiB;
static constexpr auto max_allowed_function_locals_per_type = 420; // Note: VERY arbitrary.
}