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/objects-inl.h" // TODO(mstarzinger): Temporary cycle breaker! | 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 | 18 |
19 namespace v8 { | 19 namespace v8 { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 // Define all of our flags. | 22 // Define all of our flags. |
23 #define FLAG_MODE_DEFINE | 23 #define FLAG_MODE_DEFINE |
24 #include "src/flag-definitions.h" // NOLINT | 24 #include "src/flag-definitions.h" // NOLINT |
25 | 25 |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 #define FLAG_MODE_DEFINE_IMPLICATIONS | 572 #define FLAG_MODE_DEFINE_IMPLICATIONS |
573 #include "src/flag-definitions.h" | 573 #include "src/flag-definitions.h" |
574 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 574 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
575 ComputeFlagListHash(); | 575 ComputeFlagListHash(); |
576 } | 576 } |
577 | 577 |
578 | 578 |
579 uint32_t FlagList::Hash() { return flag_hash; } | 579 uint32_t FlagList::Hash() { return flag_hash; } |
580 } // namespace internal | 580 } // namespace internal |
581 } // namespace v8 | 581 } // namespace v8 |
OLD | NEW |