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

Side by Side Diff: src/globals.h

Issue 935033003: Move LookupResult into crankshaft as that's now the only place where it's still used (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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/hydrogen.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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 class Heap; 366 class Heap;
367 class HeapObject; 367 class HeapObject;
368 class IC; 368 class IC;
369 class InterceptorInfo; 369 class InterceptorInfo;
370 class Isolate; 370 class Isolate;
371 class JSReceiver; 371 class JSReceiver;
372 class JSArray; 372 class JSArray;
373 class JSFunction; 373 class JSFunction;
374 class JSObject; 374 class JSObject;
375 class LargeObjectSpace; 375 class LargeObjectSpace;
376 class LookupResult;
377 class MacroAssembler; 376 class MacroAssembler;
378 class Map; 377 class Map;
379 class MapSpace; 378 class MapSpace;
380 class MarkCompactCollector; 379 class MarkCompactCollector;
381 class NewSpace; 380 class NewSpace;
382 class Object; 381 class Object;
383 class OldSpace; 382 class OldSpace;
384 class Foreign; 383 class Foreign;
385 class Scope; 384 class Scope;
386 class ScopeInfo; 385 class ScopeInfo;
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 DCHECK(IsValidFunctionKind(kind)); 886 DCHECK(IsValidFunctionKind(kind));
888 return kind & 887 return kind &
889 (FunctionKind::kBaseConstructor | FunctionKind::kSubclassConstructor | 888 (FunctionKind::kBaseConstructor | FunctionKind::kSubclassConstructor |
890 FunctionKind::kDefaultConstructor); 889 FunctionKind::kDefaultConstructor);
891 } 890 }
892 } } // namespace v8::internal 891 } } // namespace v8::internal
893 892
894 namespace i = v8::internal; 893 namespace i = v8::internal;
895 894
896 #endif // V8_GLOBALS_H_ 895 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698