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

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

Issue 663333003: [turbofan] use ZonePool in most places in the compiler pipeline a temp zone is used. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/js-inlining.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" 9 #include "src/v8.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 namespace compiler { 13 namespace compiler {
14 14
15 class JSCallFunctionAccessor; 15 class JSCallFunctionAccessor;
16 16
17 class JSInliner { 17 class JSInliner {
18 public: 18 public:
19 JSInliner(CompilationInfo* info, JSGraph* jsgraph) 19 JSInliner(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph)
20 : info_(info), jsgraph_(jsgraph) {} 20 : local_zone_(local_zone), info_(info), jsgraph_(jsgraph) {}
21 21
22 void Inline(); 22 void Inline();
23 void TryInlineJSCall(Node* node); 23 void TryInlineJSCall(Node* node);
24 void TryInlineRuntimeCall(Node* node); 24 void TryInlineRuntimeCall(Node* node);
25 25
26 private: 26 private:
27 friend class InlinerVisitor; 27 friend class InlinerVisitor;
28 Zone* local_zone_;
28 CompilationInfo* info_; 29 CompilationInfo* info_;
29 JSGraph* jsgraph_; 30 JSGraph* jsgraph_;
30 31
31 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, 32 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call,
32 Handle<JSFunction> jsfunction, 33 Handle<JSFunction> jsfunction,
33 Zone* temp_zone); 34 Zone* temp_zone);
34 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction); 35 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction);
35 static void UnifyReturn(Graph* graph); 36 static void UnifyReturn(Graph* graph);
36 }; 37 };
37 } 38 }
38 } 39 }
39 } // namespace v8::internal::compiler 40 } // namespace v8::internal::compiler
40 41
41 #endif // V8_COMPILER_JS_INLINING_H_ 42 #endif // V8_COMPILER_JS_INLINING_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/js-inlining.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698