mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
LibWasm: Tweak the implementation-defined limits a bit
This commit is contained in:
parent
5636f8143d
commit
2fc0040ceb
1 changed files with 4 additions and 3 deletions
|
@ -36,8 +36,9 @@ static constexpr auto extern_global_tag = 0x03;
|
|||
|
||||
static constexpr auto page_size = 64 * KiB;
|
||||
|
||||
// Limits
|
||||
static constexpr auto max_allowed_call_stack_depth = 1000;
|
||||
static constexpr auto max_allowed_executed_instructions_per_call = 1024 * 1024 * 1024;
|
||||
// Implementation-defined limits
|
||||
// These are not concretely defined by the spec, so the values are only defined by us.
|
||||
static constexpr auto max_allowed_call_stack_depth = 512;
|
||||
static constexpr auto max_allowed_executed_instructions_per_call = 256 * 1024 * 1024;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue