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

Side by Side Diff: src/globals.h

Issue 1302293002: Remove code.h header and move ParameterCount class. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/code.h ('k') | src/macro-assembler.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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 class JSFunction; 424 class JSFunction;
425 class JSObject; 425 class JSObject;
426 class LargeObjectSpace; 426 class LargeObjectSpace;
427 class MacroAssembler; 427 class MacroAssembler;
428 class Map; 428 class Map;
429 class MapSpace; 429 class MapSpace;
430 class MarkCompactCollector; 430 class MarkCompactCollector;
431 class NewSpace; 431 class NewSpace;
432 class Object; 432 class Object;
433 class OldSpace; 433 class OldSpace;
434 class ParameterCount;
434 class Foreign; 435 class Foreign;
435 class Scope; 436 class Scope;
436 class ScopeInfo; 437 class ScopeInfo;
437 class Script; 438 class Script;
438 class Smi; 439 class Smi;
439 template <typename Config, class Allocator = FreeStoreAllocationPolicy> 440 template <typename Config, class Allocator = FreeStoreAllocationPolicy>
440 class SplayTree; 441 class SplayTree;
441 class String; 442 class String;
442 class Symbol; 443 class Symbol;
443 class Name; 444 class Name;
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { 1010 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) {
1010 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); 1011 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral);
1011 DCHECK(IsValidFunctionKind(kind)); 1012 DCHECK(IsValidFunctionKind(kind));
1012 return kind; 1013 return kind;
1013 } 1014 }
1014 } } // namespace v8::internal 1015 } } // namespace v8::internal
1015 1016
1016 namespace i = v8::internal; 1017 namespace i = v8::internal;
1017 1018
1018 #endif // V8_GLOBALS_H_ 1019 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/code.h ('k') | src/macro-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698