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

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

Issue 1768263004: [turbofan] [deoptimizer] Support inlining of ES6 tail calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments, StandardFrameConstants -> CommonFrameConstants Created 4 years, 9 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/frame-states.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 27 matching lines...) Expand all
38 private: 38 private:
39 Zone* local_zone_; 39 Zone* local_zone_;
40 CompilationInfo* info_; 40 CompilationInfo* info_;
41 JSGraph* jsgraph_; 41 JSGraph* jsgraph_;
42 42
43 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state, 43 Node* CreateArtificialFrameState(Node* node, Node* outer_frame_state,
44 int parameter_count, 44 int parameter_count,
45 FrameStateType frame_state_type, 45 FrameStateType frame_state_type,
46 Handle<SharedFunctionInfo> shared); 46 Handle<SharedFunctionInfo> shared);
47 47
48 Node* CreateTailCallerFrameState(Node* node, Node* outer_frame_state);
49
48 Reduction InlineCall(Node* call, Node* new_target, Node* context, 50 Reduction InlineCall(Node* call, Node* new_target, Node* context,
49 Node* frame_state, Node* start, Node* end); 51 Node* frame_state, Node* start, Node* end);
50 }; 52 };
51 53
52 } // namespace compiler 54 } // namespace compiler
53 } // namespace internal 55 } // namespace internal
54 } // namespace v8 56 } // namespace v8
55 57
56 #endif // V8_COMPILER_JS_INLINING_H_ 58 #endif // V8_COMPILER_JS_INLINING_H_
OLDNEW
« no previous file with comments | « src/compiler/frame-states.cc ('k') | src/compiler/js-inlining.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698