| OLD | NEW |
| 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/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.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 FINAL : public Reducer { | 17 class JSInliner FINAL : public Reducer { |
| 18 public: | 18 public: |
| 19 JSInliner(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph) | 19 JSInliner(Zone* local_zone, CompilationInfo* info, JSGraph* jsgraph) |
| 20 : local_zone_(local_zone), info_(info), jsgraph_(jsgraph) {} | 20 : local_zone_(local_zone), info_(info), jsgraph_(jsgraph) {} |
| 21 | 21 |
| 22 Reduction Reduce(Node* node) FINAL; | 22 Reduction Reduce(Node* node) OVERRIDE; |
| 23 | 23 |
| 24 private: | 24 private: |
| 25 friend class InlinerVisitor; |
| 25 Zone* local_zone_; | 26 Zone* local_zone_; |
| 26 CompilationInfo* info_; | 27 CompilationInfo* info_; |
| 27 JSGraph* jsgraph_; | 28 JSGraph* jsgraph_; |
| 28 | 29 |
| 29 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, | 30 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, |
| 30 Handle<JSFunction> jsfunction, | 31 Handle<JSFunction> jsfunction, |
| 31 Zone* temp_zone); | 32 Zone* temp_zone); |
| 32 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction); | 33 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction); |
| 34 Reduction TryInlineJSCall(Node* node, Handle<JSFunction> jsfunction); |
| 35 static void UnifyReturn(Graph* graph); |
| 33 }; | 36 }; |
| 34 | 37 } |
| 35 } // namespace compiler | 38 } |
| 36 } // namespace internal | 39 } // namespace v8::internal::compiler |
| 37 } // namespace v8 | |
| 38 | 40 |
| 39 #endif // V8_COMPILER_JS_INLINING_H_ | 41 #endif // V8_COMPILER_JS_INLINING_H_ |
| OLD | NEW |