OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |