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

Side by Side Diff: src/flags.cc

Issue 1322883002: Make isolate.h usable without objects-inl.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-frames-2
Patch Set: Rebased. Created 5 years, 3 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/factory.cc ('k') | src/full-codegen/full-codegen.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/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
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
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698