Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: src/wasm/wasm-limits.h

Issue 2551463002: [wasm] Move all V8-specific limitations to wasm-limits.h (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/wasm/wasm-js.cc ('k') | src/wasm/wasm-module.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_WASM_WASM_LIMITS_H_
6 #define V8_WASM_WASM_LIMITS_H_
7
8 namespace v8 {
9 namespace internal {
10 namespace wasm {
11
12 const size_t kV8MaxWasmSignatures = 10000000;
13 const size_t kV8MaxWasmFunctions = 10000000;
14 const size_t kV8MaxWasmMemoryPages = 16384; // = 1 GiB
15 const size_t kV8MaxWasmStringSize = 256;
16 const size_t kV8MaxWasmModuleSize = 1024 * 1024 * 1024; // = 1 GiB
17 const size_t kV8MaxWasmFunctionSize = 128 * 1024;
18 const size_t kV8MaxWasmFunctionLocals = 50000;
19 const size_t kV8MaxWasmTableSize = 16 * 1024 * 1024;
20
21 const size_t kSpecMaxWasmMemoryPages = 65536;
22
23 const uint64_t kWasmMaxHeapOffset =
24 static_cast<uint64_t>(
25 std::numeric_limits<uint32_t>::max()) // maximum base value
26 + std::numeric_limits<uint32_t>::max(); // maximum index value
27
28 } // namespace wasm
29 } // namespace internal
30 } // namespace v8
31
32 #endif // V8_WASM_WASM_LIMITS_H_
OLDNEW
« no previous file with comments | « src/wasm/wasm-js.cc ('k') | src/wasm/wasm-module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698