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

Side by Side Diff: src/globals.h

Issue 1163673003: Introducing GlobalDictionary, a backing store for global objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments Created 5 years, 6 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 | « no previous file | src/objects.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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 class Descriptor; 370 class Descriptor;
371 class DescriptorArray; 371 class DescriptorArray;
372 class TransitionArray; 372 class TransitionArray;
373 class ExternalReference; 373 class ExternalReference;
374 class FixedArray; 374 class FixedArray;
375 class FunctionTemplateInfo; 375 class FunctionTemplateInfo;
376 class MemoryChunk; 376 class MemoryChunk;
377 class SeededNumberDictionary; 377 class SeededNumberDictionary;
378 class UnseededNumberDictionary; 378 class UnseededNumberDictionary;
379 class NameDictionary; 379 class NameDictionary;
380 class GlobalDictionary;
380 template <typename T> class MaybeHandle; 381 template <typename T> class MaybeHandle;
381 template <typename T> class Handle; 382 template <typename T> class Handle;
382 class Heap; 383 class Heap;
383 class HeapObject; 384 class HeapObject;
384 class IC; 385 class IC;
385 class InterceptorInfo; 386 class InterceptorInfo;
386 class Isolate; 387 class Isolate;
387 class JSReceiver; 388 class JSReceiver;
388 class JSArray; 389 class JSArray;
389 class JSFunction; 390 class JSFunction;
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { 940 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) {
940 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); 941 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral);
941 DCHECK(IsValidFunctionKind(kind)); 942 DCHECK(IsValidFunctionKind(kind));
942 return kind; 943 return kind;
943 } 944 }
944 } } // namespace v8::internal 945 } } // namespace v8::internal
945 946
946 namespace i = v8::internal; 947 namespace i = v8::internal;
947 948
948 #endif // V8_GLOBALS_H_ 949 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698