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 |
(...skipping 20 matching lines...) Expand all Loading... |
31 private: | 31 private: |
32 Mode const mode_; | 32 Mode const mode_; |
33 Zone* local_zone_; | 33 Zone* local_zone_; |
34 CompilationInfo* info_; | 34 CompilationInfo* info_; |
35 JSGraph* jsgraph_; | 35 JSGraph* jsgraph_; |
36 | 36 |
37 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, | 37 Node* CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, |
38 Handle<SharedFunctionInfo> shared_info, | 38 Handle<SharedFunctionInfo> shared_info, |
39 Zone* temp_zone); | 39 Zone* temp_zone); |
40 | 40 |
41 Reduction InlineCall(Node* call, Node* frame_state, Node* start, Node* end); | 41 Reduction InlineCall(Node* call, Node* context, Node* frame_state, |
| 42 Node* start, Node* end); |
42 }; | 43 }; |
43 | 44 |
44 } // namespace compiler | 45 } // namespace compiler |
45 } // namespace internal | 46 } // namespace internal |
46 } // namespace v8 | 47 } // namespace v8 |
47 | 48 |
48 #endif // V8_COMPILER_JS_INLINING_H_ | 49 #endif // V8_COMPILER_JS_INLINING_H_ |
OLD | NEW |