OLD | NEW |
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 Loading... |
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 |
OLD | NEW |