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

Side by Side Diff: src/globals.h

Issue 722873004: Revert "TransitionArray now uses <is_data_property, name, attributes> tuple as a key, which allows … (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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/hydrogen.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 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 class Foreign; 354 class Foreign;
355 class Scope; 355 class Scope;
356 class ScopeInfo; 356 class ScopeInfo;
357 class Script; 357 class Script;
358 class Smi; 358 class Smi;
359 template <typename Config, class Allocator = FreeStoreAllocationPolicy> 359 template <typename Config, class Allocator = FreeStoreAllocationPolicy>
360 class SplayTree; 360 class SplayTree;
361 class String; 361 class String;
362 class Name; 362 class Name;
363 class Struct; 363 class Struct;
364 class Symbol;
365 class Variable; 364 class Variable;
366 class RelocInfo; 365 class RelocInfo;
367 class Deserializer; 366 class Deserializer;
368 class MessageLocation; 367 class MessageLocation;
369 368
370 typedef bool (*WeakSlotCallback)(Object** pointer); 369 typedef bool (*WeakSlotCallback)(Object** pointer);
371 370
372 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); 371 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer);
373 372
374 // ----------------------------------------------------------------------------- 373 // -----------------------------------------------------------------------------
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 825
827 inline bool IsDefaultConstructorCallSuper(FunctionKind kind) { 826 inline bool IsDefaultConstructorCallSuper(FunctionKind kind) {
828 DCHECK(IsValidFunctionKind(kind)); 827 DCHECK(IsValidFunctionKind(kind));
829 return kind & FunctionKind::kDefaultConstructorCallSuper; 828 return kind & FunctionKind::kDefaultConstructorCallSuper;
830 } 829 }
831 } } // namespace v8::internal 830 } } // namespace v8::internal
832 831
833 namespace i = v8::internal; 832 namespace i = v8::internal;
834 833
835 #endif // V8_GLOBALS_H_ 834 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698