| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 JSGraph* const jsgraph_; | 47 JSGraph* const jsgraph_; |
| 48 | 48 |
| 49 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state, | 49 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state, |
| 50 int parameter_count, | 50 int parameter_count, |
| 51 FrameStateType frame_state_type, | 51 FrameStateType frame_state_type, |
| 52 Handle<SharedFunctionInfo> shared); | 52 Handle<SharedFunctionInfo> shared); |
| 53 | 53 |
| 54 Node* CreateTailCallerFrameState(Node* node, Node* outer_frame_state); | 54 Node* CreateTailCallerFrameState(Node* node, Node* outer_frame_state); |
| 55 | 55 |
| 56 Reduction InlineCall(Node* call, Node* new_target, Node* context, | 56 Reduction InlineCall(Node* call, Node* new_target, Node* context, |
| 57 Node* frame_state, Node* start, Node* end); | 57 Node* frame_state, Node* start, Node* end, |
| 58 Node* exception_target, |
| 59 const NodeVector& uncaught_subcalls); |
| 58 }; | 60 }; |
| 59 | 61 |
| 60 } // namespace compiler | 62 } // namespace compiler |
| 61 } // namespace internal | 63 } // namespace internal |
| 62 } // namespace v8 | 64 } // namespace v8 |
| 63 | 65 |
| 64 #endif // V8_COMPILER_JS_INLINING_H_ | 66 #endif // V8_COMPILER_JS_INLINING_H_ |
| OLD | NEW |