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

Side by Side Diff: src/interpreter/interpreter.h

Issue 1698273003: [es6] [interpreter] Add tail calls support to Ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@tco-turbo-2
Patch Set: Fixed Bytecodes::IsCallOrNew() Created 4 years, 10 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/interpreter/bytecodes.cc ('k') | src/interpreter/interpreter.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_INTERPRETER_INTERPRETER_H_ 5 #ifndef V8_INTERPRETER_INTERPRETER_H_
6 #define V8_INTERPRETER_INTERPRETER_H_ 6 #define V8_INTERPRETER_INTERPRETER_H_
7 7
8 // Clients of this interface shouldn't depend on lots of interpreter internals. 8 // Clients of this interface shouldn't depend on lots of interpreter internals.
9 // Do not include anything from src/interpreter other than 9 // Do not include anything from src/interpreter other than
10 // src/interpreter/bytecodes.h here! 10 // src/interpreter/bytecodes.h here!
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // Generates code to perform a keyed property load via |ic|. 79 // Generates code to perform a keyed property load via |ic|.
80 void DoKeyedLoadIC(Callable ic, InterpreterAssembler* assembler); 80 void DoKeyedLoadIC(Callable ic, InterpreterAssembler* assembler);
81 81
82 // Generates code to perform a namedproperty store via |ic|. 82 // Generates code to perform a namedproperty store via |ic|.
83 void DoStoreIC(Callable ic, InterpreterAssembler* assembler); 83 void DoStoreIC(Callable ic, InterpreterAssembler* assembler);
84 84
85 // Generates code to perform a keyed property store via |ic|. 85 // Generates code to perform a keyed property store via |ic|.
86 void DoKeyedStoreIC(Callable ic, InterpreterAssembler* assembler); 86 void DoKeyedStoreIC(Callable ic, InterpreterAssembler* assembler);
87 87
88 // Generates code to perform a JS call. 88 // Generates code to perform a JS call.
89 void DoJSCall(InterpreterAssembler* assembler); 89 void DoJSCall(InterpreterAssembler* assembler, TailCallMode tail_call_mode);
90 90
91 // Generates code to perform a runtime call. 91 // Generates code to perform a runtime call.
92 void DoCallRuntimeCommon(InterpreterAssembler* assembler); 92 void DoCallRuntimeCommon(InterpreterAssembler* assembler);
93 93
94 // Generates code to perform a runtime call returning a pair. 94 // Generates code to perform a runtime call returning a pair.
95 void DoCallRuntimeForPairCommon(InterpreterAssembler* assembler); 95 void DoCallRuntimeForPairCommon(InterpreterAssembler* assembler);
96 96
97 // Generates code to perform a JS runtime call. 97 // Generates code to perform a JS runtime call.
98 void DoCallJSRuntimeCommon(InterpreterAssembler* assembler); 98 void DoCallJSRuntimeCommon(InterpreterAssembler* assembler);
99 99
(...skipping 24 matching lines...) Expand all
124 Object* dispatch_table_[kDispatchTableSize]; 124 Object* dispatch_table_[kDispatchTableSize];
125 125
126 DISALLOW_COPY_AND_ASSIGN(Interpreter); 126 DISALLOW_COPY_AND_ASSIGN(Interpreter);
127 }; 127 };
128 128
129 } // namespace interpreter 129 } // namespace interpreter
130 } // namespace internal 130 } // namespace internal
131 } // namespace v8 131 } // namespace v8
132 132
133 #endif // V8_INTERPRETER_INTERPRETER_H_ 133 #endif // V8_INTERPRETER_INTERPRETER_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecodes.cc ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698