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

Side by Side Diff: src/compiler/js-inlining.h

Issue 905293002: Remove dependency on v8.h from TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add DEPS file. 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 | « src/compiler/js-context-specialization.h ('k') | src/compiler/mips/linkage-mips.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_INLINING_H_ 5 #ifndef V8_COMPILER_JS_INLINING_H_
6 #define V8_COMPILER_JS_INLINING_H_ 6 #define V8_COMPILER_JS_INLINING_H_
7 7
8 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
9 #include "src/v8.h"
10 9
11 namespace v8 { 10 namespace v8 {
12 namespace internal { 11 namespace internal {
13 namespace compiler { 12 namespace compiler {
14 13
15 class JSCallFunctionAccessor; 14 class JSCallFunctionAccessor;
16 15
17 class JSInliner { 16 class JSInliner {
18 public: 17 public:
19 JSInliner(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph) 18 JSInliner(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph)
(...skipping 12 matching lines...) Expand all
32 Handle<JSFunction> jsfunction, 31 Handle<JSFunction> jsfunction,
33 Zone* temp_zone); 32 Zone* temp_zone);
34 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction); 33 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction);
35 static void UnifyReturn(Graph* graph); 34 static void UnifyReturn(Graph* graph);
36 }; 35 };
37 } 36 }
38 } 37 }
39 } // namespace v8::internal::compiler 38 } // namespace v8::internal::compiler
40 39
41 #endif // V8_COMPILER_JS_INLINING_H_ 40 #endif // V8_COMPILER_JS_INLINING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-context-specialization.h ('k') | src/compiler/mips/linkage-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698