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

Side by Side Diff: src/globals.h

Issue 2212383003: Revert of Separate Scope into DeclarationScope and Scope (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/full-codegen/x87/full-codegen-x87.cc ('k') | src/interpreter/bytecode-generator.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_GLOBALS_H_ 5 #ifndef V8_GLOBALS_H_
6 #define V8_GLOBALS_H_ 6 #define V8_GLOBALS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 class MacroAssembler; 422 class MacroAssembler;
423 class Map; 423 class Map;
424 class MapSpace; 424 class MapSpace;
425 class MarkCompactCollector; 425 class MarkCompactCollector;
426 class NewSpace; 426 class NewSpace;
427 class Object; 427 class Object;
428 class OldSpace; 428 class OldSpace;
429 class ParameterCount; 429 class ParameterCount;
430 class Foreign; 430 class Foreign;
431 class Scope; 431 class Scope;
432 class DeclarationScope;
433 class ScopeInfo; 432 class ScopeInfo;
434 class Script; 433 class Script;
435 class Smi; 434 class Smi;
436 template <typename Config, class Allocator = FreeStoreAllocationPolicy> 435 template <typename Config, class Allocator = FreeStoreAllocationPolicy>
437 class SplayTree; 436 class SplayTree;
438 class String; 437 class String;
439 class Symbol; 438 class Symbol;
440 class Name; 439 class Name;
441 class Struct; 440 class Struct;
442 class TypeFeedbackVector; 441 class TypeFeedbackVector;
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> 1148 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >>
1150 kPointerSizeLog2); 1149 kPointerSizeLog2);
1151 } 1150 }
1152 1151
1153 } // namespace internal 1152 } // namespace internal
1154 } // namespace v8 1153 } // namespace v8
1155 1154
1156 namespace i = v8::internal; 1155 namespace i = v8::internal;
1157 1156
1158 #endif // V8_GLOBALS_H_ 1157 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/full-codegen/x87/full-codegen-x87.cc ('k') | src/interpreter/bytecode-generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698