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

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

Issue 1634153002: [Interpreter] Adds support for const/let variables to interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Refactored VisitVariableAssignment. 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 #ifndef V8_INTERPRETER_BYTECODES_H_ 5 #ifndef V8_INTERPRETER_BYTECODES_H_
6 #define V8_INTERPRETER_BYTECODES_H_ 6 #define V8_INTERPRETER_BYTECODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Clients of this interface shouldn't depend on lots of interpreter internals. 10 // Clients of this interface shouldn't depend on lots of interpreter internals.
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 V(JumpIfToBooleanTrueConstantWide, OperandType::kIdx16) \ 241 V(JumpIfToBooleanTrueConstantWide, OperandType::kIdx16) \
242 V(JumpIfToBooleanFalse, OperandType::kImm8) \ 242 V(JumpIfToBooleanFalse, OperandType::kImm8) \
243 V(JumpIfToBooleanFalseConstant, OperandType::kIdx8) \ 243 V(JumpIfToBooleanFalseConstant, OperandType::kIdx8) \
244 V(JumpIfToBooleanFalseConstantWide, OperandType::kIdx16) \ 244 V(JumpIfToBooleanFalseConstantWide, OperandType::kIdx16) \
245 V(JumpIfNull, OperandType::kImm8) \ 245 V(JumpIfNull, OperandType::kImm8) \
246 V(JumpIfNullConstant, OperandType::kIdx8) \ 246 V(JumpIfNullConstant, OperandType::kIdx8) \
247 V(JumpIfNullConstantWide, OperandType::kIdx16) \ 247 V(JumpIfNullConstantWide, OperandType::kIdx16) \
248 V(JumpIfUndefined, OperandType::kImm8) \ 248 V(JumpIfUndefined, OperandType::kImm8) \
249 V(JumpIfUndefinedConstant, OperandType::kIdx8) \ 249 V(JumpIfUndefinedConstant, OperandType::kIdx8) \
250 V(JumpIfUndefinedConstantWide, OperandType::kIdx16) \ 250 V(JumpIfUndefinedConstantWide, OperandType::kIdx16) \
251 /* TODO(mythria): Replace with opcodes that throw on a hole */ \
252 V(JumpIfHole, OperandType::kImm8) \
253 V(JumpIfNotHole, OperandType::kImm8) \
251 \ 254 \
252 /* Complex flow control For..in */ \ 255 /* Complex flow control For..in */ \
253 V(ForInPrepare, OperandType::kRegOutTriple8) \ 256 V(ForInPrepare, OperandType::kRegOutTriple8) \
254 V(ForInPrepareWide, OperandType::kRegOutTriple16) \ 257 V(ForInPrepareWide, OperandType::kRegOutTriple16) \
255 V(ForInDone, OperandType::kReg8, OperandType::kReg8) \ 258 V(ForInDone, OperandType::kReg8, OperandType::kReg8) \
256 V(ForInNext, OperandType::kReg8, OperandType::kReg8, OperandType::kRegPair8) \ 259 V(ForInNext, OperandType::kReg8, OperandType::kReg8, OperandType::kRegPair8) \
257 V(ForInNextWide, OperandType::kReg16, OperandType::kReg16, \ 260 V(ForInNextWide, OperandType::kReg16, OperandType::kReg16, \
258 OperandType::kRegPair16) \ 261 OperandType::kRegPair16) \
259 V(ForInStep, OperandType::kReg8) \ 262 V(ForInStep, OperandType::kReg8) \
260 \ 263 \
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 475
473 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode); 476 std::ostream& operator<<(std::ostream& os, const Bytecode& bytecode);
474 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type); 477 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
475 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type); 478 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
476 479
477 } // namespace interpreter 480 } // namespace interpreter
478 } // namespace internal 481 } // namespace internal
479 } // namespace v8 482 } // namespace v8
480 483
481 #endif // V8_INTERPRETER_BYTECODES_H_ 484 #endif // V8_INTERPRETER_BYTECODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698