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

Side by Side Diff: src/compiler/js-native-context-specialization.h

Issue 2803853005: Inline Array.prototype.forEach in TurboFan (Closed)
Patch Set: fix v8heapconst.py Created 3 years, 7 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ 5 #ifndef V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_
6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ 6 #define V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/builtins/builtins.h"
Michael Starzinger 2017/05/24 13:54:59 nit: Seems like a left-over. Can we drop this one?
danno 2017/06/06 12:04:52 Done.
9 #include "src/compiler/graph-reducer.h" 10 #include "src/compiler/graph-reducer.h"
10 #include "src/deoptimize-reason.h" 11 #include "src/deoptimize-reason.h"
11 #include "src/objects/map.h" 12 #include "src/objects/map.h"
12 13
13 namespace v8 { 14 namespace v8 {
14 namespace internal { 15 namespace internal {
15 16
16 // Forward declarations. 17 // Forward declarations.
17 class CompilationDependencies; 18 class CompilationDependencies;
18 class Factory; 19 class Factory;
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization); 213 DISALLOW_COPY_AND_ASSIGN(JSNativeContextSpecialization);
213 }; 214 };
214 215
215 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags) 216 DEFINE_OPERATORS_FOR_FLAGS(JSNativeContextSpecialization::Flags)
216 217
217 } // namespace compiler 218 } // namespace compiler
218 } // namespace internal 219 } // namespace internal
219 } // namespace v8 220 } // namespace v8
220 221
221 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_ 222 #endif // V8_COMPILER_JS_NATIVE_CONTEXT_SPECIALIZATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698