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

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: Remove failing test that depends on changing Turbofan internals. Created 4 years, 3 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
« no previous file with comments | « src/compiler/all-nodes.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/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
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_
OLDNEW
« no previous file with comments | « src/compiler/all-nodes.cc ('k') | src/compiler/js-inlining.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698