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

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

Issue 1689573004: [interpreter] Support for ES6 super keyword. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase 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
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 #include "src/interpreter/interpreter.h" 5 #include "src/interpreter/interpreter.h"
6 6
7 #include "src/ast/prettyprinter.h" 7 #include "src/ast/prettyprinter.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/compiler.h" 9 #include "src/compiler.h"
10 #include "src/factory.h" 10 #include "src/factory.h"
(...skipping 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 // CallJSRuntimeWide <context_index> <receiver> <arg_count> 1159 // CallJSRuntimeWide <context_index> <receiver> <arg_count>
1160 // 1160 //
1161 // Call the JS runtime function that has the |context_index| with the receiver 1161 // Call the JS runtime function that has the |context_index| with the receiver
1162 // in register |receiver| and |arg_count| arguments in subsequent registers. 1162 // in register |receiver| and |arg_count| arguments in subsequent registers.
1163 void Interpreter::DoCallJSRuntimeWide(InterpreterAssembler* assembler) { 1163 void Interpreter::DoCallJSRuntimeWide(InterpreterAssembler* assembler) {
1164 DoCallJSRuntimeCommon(assembler); 1164 DoCallJSRuntimeCommon(assembler);
1165 } 1165 }
1166 1166
1167 void Interpreter::DoCallConstruct(InterpreterAssembler* assembler) { 1167 void Interpreter::DoCallConstruct(InterpreterAssembler* assembler) {
1168 Callable ic = CodeFactory::InterpreterPushArgsAndConstruct(isolate_); 1168 Callable ic = CodeFactory::InterpreterPushArgsAndConstruct(isolate_);
1169 Node* new_target = __ GetAccumulator();
1169 Node* constructor_reg = __ BytecodeOperandReg(0); 1170 Node* constructor_reg = __ BytecodeOperandReg(0);
1170 Node* constructor = __ LoadRegister(constructor_reg); 1171 Node* constructor = __ LoadRegister(constructor_reg);
1171 Node* first_arg_reg = __ BytecodeOperandReg(1); 1172 Node* first_arg_reg = __ BytecodeOperandReg(1);
1172 Node* first_arg = __ RegisterLocation(first_arg_reg); 1173 Node* first_arg = __ RegisterLocation(first_arg_reg);
1173 Node* args_count = __ BytecodeOperandCount(2); 1174 Node* args_count = __ BytecodeOperandCount(2);
1174 Node* context = __ GetContext(); 1175 Node* context = __ GetContext();
1175 Node* result = __ CallConstruct(constructor, context, constructor, first_arg, 1176 Node* result =
1176 args_count); 1177 __ CallConstruct(constructor, context, new_target, first_arg, args_count);
1177 __ SetAccumulator(result); 1178 __ SetAccumulator(result);
1178 __ Dispatch(); 1179 __ Dispatch();
1179 } 1180 }
1180 1181
1181 1182
1182 // New <constructor> <first_arg> <arg_count> 1183 // New <constructor> <first_arg> <arg_count>
1183 // 1184 //
1184 // Call operator new with |constructor| and the first argument in 1185 // Call operator new with |constructor| and the first argument in
1185 // register |first_arg| and |arg_count| arguments in subsequent 1186 // register |first_arg| and |arg_count| arguments in subsequent
1187 // registers. The new.target is in the accumulator.
1186 // 1188 //
1187 void Interpreter::DoNew(InterpreterAssembler* assembler) { 1189 void Interpreter::DoNew(InterpreterAssembler* assembler) {
1188 DoCallConstruct(assembler); 1190 DoCallConstruct(assembler);
1189 } 1191 }
1190 1192
1191 1193
1192 // NewWide <constructor> <first_arg> <arg_count> 1194 // NewWide <constructor> <first_arg> <arg_count>
1193 // 1195 //
1194 // Call operator new with |constructor| and the first argument in 1196 // Call operator new with |constructor| and the first argument in
1195 // register |first_arg| and |arg_count| arguments in subsequent 1197 // register |first_arg| and |arg_count| arguments in subsequent
1198 // registers. The new.target is in the accumulator.
1196 // 1199 //
1197 void Interpreter::DoNewWide(InterpreterAssembler* assembler) { 1200 void Interpreter::DoNewWide(InterpreterAssembler* assembler) {
1198 DoCallConstruct(assembler); 1201 DoCallConstruct(assembler);
1199 } 1202 }
1200 1203
1201 1204
1202 // TestEqual <src> 1205 // TestEqual <src>
1203 // 1206 //
1204 // Test if the value in the <src> register equals the accumulator. 1207 // Test if the value in the <src> register equals the accumulator.
1205 void Interpreter::DoTestEqual(InterpreterAssembler* assembler) { 1208 void Interpreter::DoTestEqual(InterpreterAssembler* assembler) {
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 Node* index = __ LoadRegister(index_reg); 1890 Node* index = __ LoadRegister(index_reg);
1888 Node* context = __ GetContext(); 1891 Node* context = __ GetContext();
1889 Node* result = __ CallRuntime(Runtime::kForInStep, context, index); 1892 Node* result = __ CallRuntime(Runtime::kForInStep, context, index);
1890 __ SetAccumulator(result); 1893 __ SetAccumulator(result);
1891 __ Dispatch(); 1894 __ Dispatch();
1892 } 1895 }
1893 1896
1894 } // namespace interpreter 1897 } // namespace interpreter
1895 } // namespace internal 1898 } // namespace internal
1896 } // namespace v8 1899 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698