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

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

Issue 2216353002: [turbofan] Also inline into try blocks. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@p5-base
Patch Set: Depend on changelist 2245263003 which consists of only the tests. Created 4 years, 4 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
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/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 JSGraph* const jsgraph_; 46 JSGraph* const jsgraph_;
47 47
48 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state, 48 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state,
49 int parameter_count, 49 int parameter_count,
50 FrameStateType frame_state_type, 50 FrameStateType frame_state_type,
51 Handle<SharedFunctionInfo> shared); 51 Handle<SharedFunctionInfo> shared);
52 52
53 Node* CreateTailCallerFrameState(Node* node, Node* outer_frame_state); 53 Node* CreateTailCallerFrameState(Node* node, Node* outer_frame_state);
54 54
55 Reduction InlineCall(Node* call, Node* new_target, Node* context, 55 Reduction InlineCall(Node* call, Node* new_target, Node* context,
56 Node* frame_state, Node* start, Node* end); 56 Node* frame_state, Node* start, Node* end,
57 Node* exception_target,
58 const NodeVector& uncaught_subcalls);
57 }; 59 };
58 60
59 } // namespace compiler 61 } // namespace compiler
60 } // namespace internal 62 } // namespace internal
61 } // namespace v8 63 } // namespace v8
62 64
63 #endif // V8_COMPILER_JS_INLINING_H_ 65 #endif // V8_COMPILER_JS_INLINING_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698