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

Side by Side Diff: src/flags.cc

Issue 2648223004: [wasm] Change the constant kV8MaxWasmTableSize to a command line flag. (Closed)
Patch Set: Use the wasm-limits.h values in flag-definitions.h Created 3 years, 11 months 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/flag-definitions.h ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/flags.h" 5 #include "src/flags.h"
6 6
7 #include <cctype> 7 #include <cctype>
8 #include <cstdlib> 8 #include <cstdlib>
9 #include <sstream> 9 #include <sstream>
10 10
11 #include "src/allocation.h" 11 #include "src/allocation.h"
12 #include "src/assembler.h" 12 #include "src/assembler.h"
13 #include "src/base/functional.h" 13 #include "src/base/functional.h"
14 #include "src/base/platform/platform.h" 14 #include "src/base/platform/platform.h"
15 #include "src/list-inl.h" 15 #include "src/list-inl.h"
16 #include "src/ostreams.h" 16 #include "src/ostreams.h"
17 #include "src/utils.h" 17 #include "src/utils.h"
18 #include "src/wasm/wasm-limits.h"
18 19
19 namespace v8 { 20 namespace v8 {
20 namespace internal { 21 namespace internal {
21 22
22 // Define all of our flags. 23 // Define all of our flags.
23 #define FLAG_MODE_DEFINE 24 #define FLAG_MODE_DEFINE
24 #include "src/flag-definitions.h" // NOLINT(build/include) 25 #include "src/flag-definitions.h" // NOLINT(build/include)
25 26
26 // Define all of our flags default values. 27 // Define all of our flags default values.
27 #define FLAG_MODE_DEFINE_DEFAULTS 28 #define FLAG_MODE_DEFINE_DEFAULTS
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 #define FLAG_MODE_DEFINE_IMPLICATIONS 622 #define FLAG_MODE_DEFINE_IMPLICATIONS
622 #include "src/flag-definitions.h" // NOLINT(build/include) 623 #include "src/flag-definitions.h" // NOLINT(build/include)
623 #undef FLAG_MODE_DEFINE_IMPLICATIONS 624 #undef FLAG_MODE_DEFINE_IMPLICATIONS
624 ComputeFlagListHash(); 625 ComputeFlagListHash();
625 } 626 }
626 627
627 628
628 uint32_t FlagList::Hash() { return flag_hash; } 629 uint32_t FlagList::Hash() { return flag_hash; }
629 } // namespace internal 630 } // namespace internal
630 } // namespace v8 631 } // namespace v8
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698