| 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" |
| 6 |
| 5 #include <cctype> | 7 #include <cctype> |
| 6 #include <cstdlib> | 8 #include <cstdlib> |
| 7 #include <sstream> | 9 #include <sstream> |
| 8 | 10 |
| 9 #include "src/v8.h" | 11 #include "src/allocation.h" |
| 10 | |
| 11 #include "src/assembler.h" | 12 #include "src/assembler.h" |
| 12 #include "src/base/functional.h" | 13 #include "src/base/functional.h" |
| 13 #include "src/base/platform/platform.h" | 14 #include "src/base/platform/platform.h" |
| 15 #include "src/objects-inl.h" // TODO(mstarzinger): Temporary cycle breaker! |
| 14 #include "src/ostreams.h" | 16 #include "src/ostreams.h" |
| 17 #include "src/utils.h" |
| 15 | 18 |
| 16 namespace v8 { | 19 namespace v8 { |
| 17 namespace internal { | 20 namespace internal { |
| 18 | 21 |
| 19 // Define all of our flags. | 22 // Define all of our flags. |
| 20 #define FLAG_MODE_DEFINE | 23 #define FLAG_MODE_DEFINE |
| 21 #include "src/flag-definitions.h" // NOLINT | 24 #include "src/flag-definitions.h" // NOLINT |
| 22 | 25 |
| 23 // Define all of our flags default values. | 26 // Define all of our flags default values. |
| 24 #define FLAG_MODE_DEFINE_DEFAULTS | 27 #define FLAG_MODE_DEFINE_DEFAULTS |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 #define FLAG_MODE_DEFINE_IMPLICATIONS | 572 #define FLAG_MODE_DEFINE_IMPLICATIONS |
| 570 #include "src/flag-definitions.h" | 573 #include "src/flag-definitions.h" |
| 571 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 574 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 572 ComputeFlagListHash(); | 575 ComputeFlagListHash(); |
| 573 } | 576 } |
| 574 | 577 |
| 575 | 578 |
| 576 uint32_t FlagList::Hash() { return flag_hash; } | 579 uint32_t FlagList::Hash() { return flag_hash; } |
| 577 } // namespace internal | 580 } // namespace internal |
| 578 } // namespace v8 | 581 } // namespace v8 |
| OLD | NEW |